vikunja-frontend/src/styles/components/tooltip.scss

43 lines
906 B
SCSS
Raw Normal View History

2021-10-18 14:33:59 +02:00
// FIXME: https://www.bram.us/2021/09/13/dont-attach-tooltips-to-document-body/
2018-12-25 16:03:51 +01:00
.tooltip {
visibility: collapse;
2018-12-25 16:03:51 +01:00
z-index: 10000;
font-size: 0.8rem;
2018-12-25 16:03:51 +01:00
text-align: center;
background: $dark;
color: white;
border-radius: 5px;
padding: 5px 10px 5px;
opacity: 0;
transition: opacity $transition;
2018-12-25 16:03:51 +01:00
// If the tooltip is multiline, it would make the height calculations needed to properly position it a lot harder.
white-space: nowrap;
overflow: hidden;
&-arrow {
opacity: 0;
content: '';
visibility: collapse;
position: absolute;
transition: opacity $transition;
z-index: 10000;
2018-12-25 16:03:51 +01:00
width: 0;
height: 0;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-top: 5px solid $dark;
&.bottom {
transform: rotate(180deg);
}
}
&.visible, &-arrow.visible {
opacity: 1;
visibility: visible;
2018-12-25 16:03:51 +01:00
}
}