22 lines
332 B
SCSS
22 lines
332 B
SCSS
|
%tooltip-panel {
|
||
|
margin: 0 !important;
|
||
|
}
|
||
|
%tooltip-panel dd > div {
|
||
|
top: auto !important;
|
||
|
}
|
||
|
%tooltip-panel dt {
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
%tooltip-panel dd {
|
||
|
display: none;
|
||
|
position: relative;
|
||
|
padding-top: 10px;
|
||
|
margin-bottom: -10px;
|
||
|
}
|
||
|
%tooltip-panel:hover dd {
|
||
|
display: block;
|
||
|
}
|
||
|
%tooltip-panel dd > div {
|
||
|
width: 250px;
|
||
|
}
|