diff options
author | Morris Jobke <hey@morrisjobke.de> | 2014-08-29 12:25:58 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2014-08-29 12:25:58 +0200 |
commit | 9d6757654085dd3ec396bb9bb12af337e726cbac (patch) | |
tree | 906dc468a22ac38d77ccb457cee00c0882a4a55c | |
parent | 2b63c375a4bcd232635305fd7e93fa256f0307cf (diff) | |
parent | 7d1a0d4739c41098ccc2827cbc3a1715ad93f3e9 (diff) | |
download | nextcloud-server-9d6757654085dd3ec396bb9bb12af337e726cbac.tar.gz nextcloud-server-9d6757654085dd3ec396bb9bb12af337e726cbac.zip |
Merge pull request #10724 from owncloud/min-size-for-icons
define min height/width for icon classes to make sure they show
-rw-r--r-- | core/css/icons.css | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/css/icons.css b/core/css/icons.css index b3a9454b565..095c29b3121 100644 --- a/core/css/icons.css +++ b/core/css/icons.css @@ -1,6 +1,8 @@ [class^="icon-"], [class*=" icon-"] { background-repeat: no-repeat; background-position: center; + min-width: 16px; + min-height: 16px; } |