integarting admin dashboard
This commit is contained in:
28
public/Dashboard/scss/common/dark/mixins/_tooltips.scss
Normal file
28
public/Dashboard/scss/common/dark/mixins/_tooltips.scss
Normal file
@ -0,0 +1,28 @@
|
||||
// Tooltip color variations
|
||||
|
||||
@mixin tooltip-variant($color) {
|
||||
.tooltip-inner {
|
||||
background: theme-color($color);
|
||||
color: $white;
|
||||
}
|
||||
&.bs-tooltip-top {
|
||||
.arrow::before {
|
||||
border-top-color: theme-color($color);
|
||||
}
|
||||
}
|
||||
&.bs-tooltip-right {
|
||||
.arrow::before {
|
||||
border-right-color: theme-color($color);
|
||||
}
|
||||
}
|
||||
&.bs-tooltip-bottom {
|
||||
.arrow::before {
|
||||
border-bottom-color: theme-color($color);
|
||||
}
|
||||
}
|
||||
&.bs-tooltip-left {
|
||||
.arrow::before {
|
||||
border-left-color: theme-color($color);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user