diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2017-04-25 00:20:12 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2017-04-25 00:22:57 +0200 |
commit | 88bc43182f3352fd5ddb23c01b9b7b3ae4b6b2fd (patch) | |
tree | 74095625de2653a9c22db3d3b3541931d715e658 /settings/css | |
parent | f03e59530a6d766f177330f90d2feb1d6491e5e5 (diff) | |
download | nextcloud-server-88bc43182f3352fd5ddb23c01b9b7b3ae4b6b2fd.tar.gz nextcloud-server-88bc43182f3352fd5ddb23c01b9b7b3ae4b6b2fd.zip |
Fix app icon being inverted for app store apps too
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'settings/css')
-rw-r--r-- | settings/css/settings.css | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/settings/css/settings.css b/settings/css/settings.css index 103dcf26a71..a046148dcc4 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -670,6 +670,7 @@ form.section { position: relative; } .app-image { + position: relative; height: 150px; opacity: 1; overflow: hidden; @@ -757,18 +758,21 @@ form.section { #apps-list.installed .app-image { width: 44px; text-align: right; - opacity: .5; } #apps-list.installed .app-image-icon svg { margin-top: 5px; width: 20px; height: 20px; + opacity: .5; } -#apps-list .app-image-icon svg { - opacity: .3; - margin-top: 50px; +#apps-list:not(.installed) .app-image-icon svg { + position: absolute; + bottom: 43px; /* position halfway vertically */ + width: 64px; + height: 64px; + opacity: .1; } .installed .actions { |