1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-29 11:10:18 +02:00

[ticket/15115] Fix errors

PHPBB3-15115
This commit is contained in:
hanakin
2017-03-09 16:35:28 -05:00
parent 2ca1402476
commit ec71279a77
16 changed files with 340 additions and 176 deletions

View File

@@ -2,6 +2,8 @@
$Plupload
/* -------------------------------------------------------------- */
/* stylelint-disable declaration-property-unit-whitelist */
.attach-panel-multi {
display: none;
margin-bottom: 1em;
@@ -69,15 +71,15 @@
}
.file-status.file-working {
background: url('./images/plupload/throbber.gif');
background: url("./images/plupload/throbber.gif");
}
.file-status.file-uploaded {
background: url('./images/plupload/done.gif');
background: url("./images/plupload/done.gif");
}
.file-status.file-error {
background: url('./images/plupload/error.gif');
background: url("./images/plupload/error.gif");
}
.file-status {
@@ -90,3 +92,5 @@
vertical-align: bottom;
max-width: 65%;
}
/* stylelint-enable declaration-property-unit-whitelist */