diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-07-30 10:44:01 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-07-30 10:44:01 +0200 |
commit | 1a1c100719643c6056541ffd208642e9f1653c95 (patch) | |
tree | a851fac025e5f56d93acc09efc375230e72b81d2 /core/css | |
parent | 33fe24dc3d12868d79f9b137e9e91eba2b3e5028 (diff) | |
download | nextcloud-server-1a1c100719643c6056541ffd208642e9f1653c95.tar.gz nextcloud-server-1a1c100719643c6056541ffd208642e9f1653c95.zip |
fix loading.gif size for both upload and deletion, force visiblity
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/styles.css | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index 365de759fdc..3af1a311585 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -669,7 +669,13 @@ div.crumb:active { background-image: url('../img/actions/delete-hover.svg'); } .edit-icon { background-image: url('../img/actions/rename.svg'); } -.progress-icon { background-image: url('../img/loading.gif'); } +.progress-icon { + background-image: url('../img/loading.gif'); + background-size: 16px; + /* force show the loading icon, not only on hover */ + opacity: 1 !important; + display: inline !important; +} /* buttons */ button.loading { |