Merge pull request #3192 from nextcloud/fix-app-settings-layout-minor

Fix gap by filter svg and empty search message overflow
This commit is contained in:
Morris Jobke 2017-01-23 18:29:36 -06:00 committed by GitHub
commit c0341f3459
2 changed files with 11 additions and 1 deletions

View File

@ -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;

View File

@ -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>