mirror of
https://github.com/status-im/consul.git
synced 2025-02-23 02:48:19 +00:00
* ui: Add the most basic workspace root in /ui * We already have a LICENSE file in the repository root * Change directory path in build scripts ui-v2 -> ui * Make yarn install flags configurable from elsewhere * Minimal workspace root makefile * Call the new docker specific target * Update yarn in the docker build image * Reconfigure the netlify target and move to the higher makefile * Move ui-v2 -> ui/packages/consul-ui * Change repo root to refleect new folder structure * Temporarily don't hoist consul-api-double * Fixup CI configuration * Fixup lint errors * Fixup Netlify target
33 lines
799 B
SCSS
33 lines
799 B
SCSS
@import './skin';
|
|
@import './layout';
|
|
|
|
%with-pseudo-tooltip,
|
|
%with-tooltip {
|
|
@extend %tooltip;
|
|
}
|
|
%with-pseudo-tooltip::before,
|
|
%with-tooltip [role='tooltip'] {
|
|
@extend %tooltip-bubble;
|
|
}
|
|
%with-pseudo-tooltip::after,
|
|
%with-tooltip [role='tooltip']::after {
|
|
@extend %tooltip-tail;
|
|
}
|
|
|
|
%with-pseudo-tooltip::after,
|
|
%with-pseudo-tooltip::before,
|
|
%with-tooltip [role='tooltip']::after,
|
|
%with-tooltip [role='tooltip'] {
|
|
@extend %blink-in-fade-out;
|
|
}
|
|
%with-pseudo-tooltip:hover::after,
|
|
%with-pseudo-tooltip:hover::before,
|
|
%with-pseudo-tooltip:focus::after,
|
|
%with-pseudo-tooltip:focus::before,
|
|
%with-tooltip:hover [role='tooltip']::after,
|
|
%with-tooltip:hover [role='tooltip'],
|
|
%with-tooltip:focus [role='tooltip']::after,
|
|
%with-tooltip:focus [role='tooltip'] {
|
|
@extend %blink-in-fade-out-active;
|
|
}
|