6275e13f93
* Table - Lowest (on-hover of table items) * Buttons - Middle * Form-elements - Removed, no box-shadowing in input forms mocks. * Menu-panel -High * Modal-dialog - Highest * Stats-card -Middle/High(Active) * Tooltip - Middle * Card - Middle * Expanded-single-select - Middle * Tabular-details - High * Discovery chain - High
28 lines
667 B
SCSS
28 lines
667 B
SCSS
%tooltip-bubble,
|
|
%tooltip-tail {
|
|
color: $white;
|
|
background-color: $gray-500;
|
|
}
|
|
|
|
/* borders here are used to draw a triangle in CSS */
|
|
/* the are not actual borders */
|
|
|
|
%tooltip-tail {
|
|
background-color: transparent !important;
|
|
border-left: 9px solid transparent;
|
|
border-right: 9px solid transparent;
|
|
|
|
border-top: 18px solid $gray-500;
|
|
}
|
|
%tooltip-bottom::after {
|
|
border-top: 0;
|
|
border-bottom: 18px solid $gray-500;
|
|
}
|
|
%tooltip-bubble {
|
|
border-radius: $decor-radius-200;
|
|
/* this isn't quite like the values in structure */
|
|
/* but this looks closer visually */
|
|
/* TODO: try and get this closer to structure */
|
|
box-shadow: $decor-elevation-400;
|
|
}
|