diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-01-23 18:29:36 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-23 18:29:36 -0600 |
commit | c0341f3459c30286a36e36196f58dfd5f4e787a2 (patch) | |
tree | 6e6b64a7debdc700d48da11e52c3fd96b722c782 /settings | |
parent | d4d116503cdb5538f544e47de9d2ec7d1698c8cd (diff) | |
parent | 927f04418d4d29eed3885bbc078867477650c01f (diff) | |
download | nextcloud-server-c0341f3459c30286a36e36196f58dfd5f4e787a2.tar.gz nextcloud-server-c0341f3459c30286a36e36196f58dfd5f4e787a2.zip |
Merge pull request #3192 from nextcloud/fix-app-settings-layout-minor
Fix gap by filter svg and empty search message overflow
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 bdeca980781..72e740d9a01 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -492,6 +492,12 @@ input.userFilter {width: 200px;} /* APPS */ +#app-content > svg.app-filter { + 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..80689237e60 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 class="app-filter"> <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> |