diff options
author | Vincent Petry <pvince81@owncloud.com> | 2016-03-04 10:48:08 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2016-03-04 10:48:08 +0100 |
commit | 3a36163e9187d7a65418350371c7b20303cae671 (patch) | |
tree | 294924352b210df35f4a7d459e6ce96d889dce94 /apps/files/css | |
parent | bcc200cf9bb18ecb385ef617488555bdcc598312 (diff) | |
download | nextcloud-server-3a36163e9187d7a65418350371c7b20303cae671.tar.gz nextcloud-server-3a36163e9187d7a65418350371c7b20303cae671.zip |
Fix download spinner to work with CSS styles
A recent change replaced img elements with CSS icons for file actions.
This fix adjusts the logic to work properly with CSS icons instead of
images.
Diffstat (limited to 'apps/files/css')
-rw-r--r-- | apps/files/css/files.css | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index b65af1fa0f3..bfa5340fe09 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -793,6 +793,19 @@ html.ie8 #controls .button.new { background-size: 16px 16px; } +#filestable .filename .action .icon.hidden, +#filestable .selectedActions a .icon.hidden, +#controls .actions .button .icon.hidden { + display: none; +} + +#filestable .filename .action .icon.loading, +#filestable .selectedActions a .icon.loading, +#controls .actions .button .icon.loading { + width: 15px; + height: 15px; +} + .app-files .actions .button.new .icon { margin-bottom: 2px; } |