mirror of
https://github.com/ankitects/anki.git
synced 2025-09-23 00:12:25 -04:00
fix deck button not clickable in stats screen (#3602)
Changed z-index of the underlying spinner
This commit is contained in:
parent
87ccd24efd
commit
f6a3e98ac3
2 changed files with 3 additions and 0 deletions
|
@ -197,6 +197,7 @@ twwn <github.com/twwn>
|
|||
Cy Pokhrel <cy@cy7.sh>
|
||||
Park Hyunwoo <phu54321@naver.com>
|
||||
Tomas Fabrizio Orsi <torsi@fi.uba.ar>
|
||||
Sawan Sunar <sawansunar24072002@gmail.com>
|
||||
|
||||
********************
|
||||
|
||||
|
|
|
@ -144,11 +144,13 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|||
animation: spin;
|
||||
animation-duration: 1s;
|
||||
animation-iteration-count: infinite;
|
||||
z-index: -1;
|
||||
|
||||
opacity: 0;
|
||||
|
||||
&.loading {
|
||||
opacity: 0.5;
|
||||
z-index: 1;
|
||||
transition: opacity var(--transition-slow);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue