mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
fix: resolved CSS rendering issue in Chrome browser (#2582)
Co-authored-by: 이광오 <maeryo@hanwha.com>
This commit is contained in:
parent
efd41cc4c1
commit
2a4a46c61a
@ -318,6 +318,8 @@ body.rtl .card .card-title>*:first-child {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
z-index: 9999;
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
animation: .1s show forwards;
|
||||
}
|
||||
|
||||
@ -379,15 +381,15 @@ body.rtl .card .card-title>*:first-child {
|
||||
|
||||
@keyframes show {
|
||||
0% {
|
||||
display: none;
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
}
|
||||
1% {
|
||||
display: block;
|
||||
visibility: visible;
|
||||
opacity: 0;
|
||||
}
|
||||
100% {
|
||||
display: block;
|
||||
visibility: visible;
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
@ -128,7 +128,7 @@ main .spinner .bounce2 {
|
||||
}
|
||||
|
||||
#click-overlay.active {
|
||||
display: block;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.action .counter {
|
||||
|
Loading…
Reference in New Issue
Block a user