summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--settings/css/settings.css10
-rw-r--r--settings/templates/apps.php2
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>
4' href='#n134'>134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169