Fix tooltip still existing in viewport after hiding them
continuous-integration/drone/push Build is passing Details

This commit is contained in:
kolaente 2020-11-28 15:17:50 +01:00
parent 5827800564
commit 79c8783fdb
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,5 @@
.tooltip {
display: block !important;
visibility: collapse;
z-index: 10000;
font-size: 0.8em;
text-align: center;
@ -17,7 +17,7 @@
&-arrow {
opacity: 0;
content: '';
display: block;
visibility: collapse;
position: absolute;
transition: opacity $transition;
z-index: 10000;
@ -35,6 +35,7 @@
&.visible, &-arrow.visible {
opacity: 1;
visibility: visible;
}
&[x-placement^="top"] {