You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
575 B
27 lines
575 B
6 years ago
|
/**
|
||
|
* @file
|
||
|
* Styles for Magazine+'s tooltips.
|
||
|
*/
|
||
|
.tooltip-inner {
|
||
|
color: #ffffff;
|
||
|
font-size: 12px;
|
||
|
padding: 3px 10px 2px;
|
||
|
border-radius: 0;
|
||
|
}
|
||
|
.tooltip--white + .tooltip .tooltip-inner {
|
||
|
background-color: #ffffff;
|
||
|
color: #2d2d2d;
|
||
|
}
|
||
|
.tooltip--white + .tooltip.right .tooltip-arrow {
|
||
|
border-right-color: #ffffff;
|
||
|
}
|
||
|
.tooltip--white + .tooltip.left .tooltip-arrow {
|
||
|
border-left-color: #ffffff;
|
||
|
}
|
||
|
.tooltip--white + .tooltip.bottom .tooltip-arrow {
|
||
|
border-bottom-color: #ffffff;
|
||
|
}
|
||
|
.tooltip--white + .tooltip.top .tooltip-arrow {
|
||
|
border-top-color: #ffffff;
|
||
|
}
|