diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2016-12-02 22:10:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-02 22:10:15 +0100 |
commit | 5a3a776af92060f82e4f07fdd53a4aa821419416 (patch) | |
tree | aae1b2d5e332edda4095120c4b9e98856f685fc0 /core/css | |
parent | 2bc931dd102cb51b0838e306f2277a00dcdc3051 (diff) | |
parent | b5392b864247e26f1997ea54ae5eb75ce2428804 (diff) | |
download | nextcloud-server-5a3a776af92060f82e4f07fdd53a4aa821419416.tar.gz nextcloud-server-5a3a776af92060f82e4f07fdd53a4aa821419416.zip |
Merge pull request #2482 from nextcloud/fix-loading-icon-size
Fix loader size to 32px and 16px
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/icons.css | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/core/css/icons.css b/core/css/icons.css index 7618491cf90..a2869dfac1c 100644 --- a/core/css/icons.css +++ b/core/css/icons.css @@ -30,9 +30,9 @@ .icon-loading-small-dark:after { z-index: 2; content: ""; - height: 32px; - width: 32px; - margin: -17px 0 0 -17px; + height: 30px; + width: 30px; + margin: -16px 0 0 -16px; position: absolute; top: 50%; left: 50%; @@ -61,9 +61,9 @@ .icon-loading-small:after, .icon-loading-small-dark:after { - height: 16px; - width: 16px; - margin: -9px 0 0 -9px; + height: 14px; + width: 14px; + margin: -8px 0 0 -8px; } /* Css replaced elements don't have ::after nor ::before */ |