[#204] fixed query string parsing
This commit is contained in:
@@ -456,7 +456,6 @@ a,
|
||||
border-radius: var(--baseRadius);
|
||||
color: var(--txtPrimaryColor);
|
||||
font-size: 1.2rem;
|
||||
overflow: hidden;
|
||||
@include shadowize();
|
||||
i {
|
||||
font-size: inherit;
|
||||
@@ -465,6 +464,7 @@ a,
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border-radius: inherit;
|
||||
overflow: hidden;
|
||||
}
|
||||
&.thumb-sm {
|
||||
--thumbSize: 32px;
|
||||
|
||||
@@ -1,24 +1,3 @@
|
||||
@keyframes tooltipHide {
|
||||
100% {
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transform: scale(0.9);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes tooltipShow {
|
||||
0% {
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transform: scale(0.9);
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
|
||||
.app-tooltip {
|
||||
position: fixed;
|
||||
z-index: 999999;
|
||||
@@ -40,7 +19,7 @@
|
||||
transition: opacity var(--baseAnimationSpeed),
|
||||
visibility var(--baseAnimationSpeed),
|
||||
transform var(--baseAnimationSpeed);
|
||||
transform: scale(0.9);
|
||||
transform: scale(0.94);
|
||||
white-space: pre-line;
|
||||
@include hide();
|
||||
&.active {
|
||||
|
||||
Reference in New Issue
Block a user