Merge pull request #2482 from nextcloud/fix-loading-icon-size

Fix loader size to 32px and 16px
This commit is contained in:
Lukas Reschke 2016-12-02 22:10:15 +01:00 committed by GitHub
commit 5a3a776af9
1 changed files with 6 additions and 6 deletions

View File

@ -30,9 +30,9 @@
.icon-loading-small-dark:after { .icon-loading-small-dark:after {
z-index: 2; z-index: 2;
content: ""; content: "";
height: 32px; height: 30px;
width: 32px; width: 30px;
margin: -17px 0 0 -17px; margin: -16px 0 0 -16px;
position: absolute; position: absolute;
top: 50%; top: 50%;
left: 50%; left: 50%;
@ -61,9 +61,9 @@
.icon-loading-small:after, .icon-loading-small:after,
.icon-loading-small-dark:after { .icon-loading-small-dark:after {
height: 16px; height: 14px;
width: 16px; width: 14px;
margin: -9px 0 0 -9px; margin: -8px 0 0 -8px;
} }
/* Css replaced elements don't have ::after nor ::before */ /* Css replaced elements don't have ::after nor ::before */