fmartingr
/
shelfzilla
Archived
1
0
Fork 0
This repository has been archived on 2021-06-29. You can view files and clone it, but cannot push or open issues or pull requests.
shelfzilla/shelfzilla/themes/bootflat/static/libs/bootflat/scss/bootflat/_tooltip.scss

43 lines
951 B
SCSS
Executable File

// Variables
//------------------------------------------------------
$tooltip-background-color: $darkgray-dark !default;
$tooltip-font-color: $white !default;
// Exports
//------------------------------------------------------
@include exports("tooltip") {
/**
* tooltip
* --------------------------------------------------
*/
.tooltip {
@at-root &-inner {
color: $tooltip-font-color;
background-color: $tooltip-background-color;
}
&.top &-arrow,
&.top-left &-arrow,
&.top-right &-arrow {
border-top-color: $tooltip-background-color;
}
&.right &-arrow {
border-right-color: $tooltip-background-color;
}
&.left &-arrow {
border-left-color: $tooltip-background-color;
}
&.bottom &-arrow,
&.bottom-left &-arrow,
&.bottom-right &-arrow {
border-bottom-color: $tooltip-background-color;
}
}
}