open-consul/ui/packages/consul-ui/app/components/tooltip/index.scss

120 lines
2.2 KiB
SCSS
Raw Normal View History

2020-11-30 16:52:13 +00:00
[data-tippy-root] {
@extend %tooltip-layer;
}
.tippy-box[data-theme~=tooltip] {
& {
@extend %tooltip-bubble;
}
&[data-placement^=bottom] > .tippy-arrow {
@extend %tooltip-tail-bottom;
}
&[data-placement^=top] > .tippy-arrow {
@extend %tooltip-tail-top;
}
&[data-placement^=left] > .tippy-arrow {
@extend %tooltip-tail-left;
}
&[data-placement^=right] > .tippy-arrow {
@extend %tooltip-tail-right;
}
.tippy-arrow {
@extend %tooltip-tail;
}
.tippy-content {
@extend %tooltip-content;
}
}
%tooltip-layer {
max-width: calc(100vw - 10px);
}
%tooltip-bubble {
& {
position: relative;
outline: 0;
background-color: $gray-700;
color: $white;
border-radius: $decor-radius-100;
box-shadow: $decor-elevation-400;
transition-property: transform, visibility, opacity;
}
&[data-animation=fade][data-state=hidden] {
opacity: 0;
}
&[data-inertia][data-state=visible] {
transition-timing-function: cubic-bezier(.54, 1.5, .38, 1.11);
}
}
%tooltip-tail {
--size: 5px;
& {
color: $gray-700;
width: calc(var(--size) * 2);
height: calc(var(--size) * 2);
}
&::before {
content: "";
position: absolute;
border-color: $transparent;
border-style: solid;
}
}
%tooltip-tail-top {
& {
bottom: 0;
}
&::before {
bottom: calc(0px - var(--size));
left: 0;
border-width: var(--size) var(--size) 0;
border-top-color: initial;
transform-origin: center top;
}
}
%tooltip-tail-bottom {
& {
top: 0
}
&::before {
top: calc(0px - var(--size));
left: 0;
border-width: 0 var(--size) var(--size);
border-bottom-color: initial;
transform-origin: center bottom;
}
}
%tooltip-tail-left {
& {
right: 0;
}
&::before {
right: calc(0px - var(--size));
border-width: var(--size) 0 var(--size) var(--size);
border-left-color: initial;
transform-origin: center left;
}
}
%tooltip-tail-right {
& {
left: 0
}
&::before {
left: calc(0px - var(--size));
border-width: var(--size) var(--size) var(--size) 0;
border-right-color: initial;
transform-origin: center right;
}
}
%tooltip-content {
@extend %p3;
padding: 12px;
max-width: 192px;
position: relative;
z-index: 1;
}