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
|
@ -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 New Issue