mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Merge pull request #19671 from nextcloud/fix-loading-icons-on-replaced-elements
Fix loading icons on replaced elements
This commit is contained in:
commit
971e619c89
1 changed files with 5 additions and 5 deletions
|
|
@ -81,17 +81,17 @@
|
|||
}
|
||||
|
||||
/* Css replaced elements don't have ::after nor ::before */
|
||||
img, object, video, button, textarea, input, select, div[contenteditable='true'] {
|
||||
.icon-loading {
|
||||
audio, canvas, embed, iframe, img, input, object, video {
|
||||
&.icon-loading {
|
||||
background-image: url('../img/loading.gif');
|
||||
}
|
||||
.icon-loading-dark {
|
||||
&.icon-loading-dark {
|
||||
background-image: url('../img/loading-dark.gif');
|
||||
}
|
||||
.icon-loading-small {
|
||||
&.icon-loading-small {
|
||||
background-image: url('../img/loading-small.gif');
|
||||
}
|
||||
.icon-loading-small-dark {
|
||||
&.icon-loading-small-dark {
|
||||
background-image: url('../img/loading-small-dark.gif');
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue