diff options
author | Felix A. Epp <work@felixepp.de> | 2017-01-22 00:52:56 +0100 |
---|---|---|
committer | Felix A. Epp <work@felixepp.de> | 2017-01-22 14:46:39 +0100 |
commit | 82bfe3b47948ccb8db48790b88a2ccbb3d1a4ee5 (patch) | |
tree | 016b5183f01a3c8b242fc08170f21f5f60d206e3 /settings | |
parent | d0c6179ec18d1e2c3ce86bdf03f36aaa1501c6e7 (diff) | |
download | nextcloud-server-82bfe3b47948ccb8db48790b88a2ccbb3d1a4ee5.tar.gz nextcloud-server-82bfe3b47948ccb8db48790b88a2ccbb3d1a4ee5.zip |
Fix gap by filter svg and empty search message overflow
Signed-off-by: Felix A. Epp <work@felixepp.de>
Diffstat (limited to 'settings')
-rw-r--r-- | settings/css/settings.css | 10 | ||||
-rw-r--r-- | settings/templates/apps.php | 2 |
2 files changed, 11 insertions, 1 deletions
diff --git a/settings/css/settings.css b/settings/css/settings.css index 557395c5717..0c8dd83a159 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -492,6 +492,12 @@ input.userFilter {width: 200px;} /* APPS */ +#app-content > svg { + float: left; + height: 0; + width: 0; +} + .appinfo { margin: 1em 40px; } #app-navigation .appwarning { background: #fcc; @@ -542,6 +548,10 @@ span.version { flex-wrap: wrap; align-content: flex-start; } +#apps-list.hidden { + display: none; +} + #apps-list .section { position: relative; flex: 0 0 auto; diff --git a/settings/templates/apps.php b/settings/templates/apps.php index a4b08f11693..438b25b5e14 100644 --- a/settings/templates/apps.php +++ b/settings/templates/apps.php @@ -150,7 +150,7 @@ script( </ul> </div> <div id="app-content"> - <svg height="0"> + <svg> <defs><filter id="invertIcon"><feColorMatrix in="SourceGraphic" type="matrix" values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0"></feColorMatrix></filter></defs> </svg> <div id="apps-list" class="icon-loading"></div> |