diff options
author | Felix A. Epp <work@felixepp.de> | 2017-01-21 17:06:26 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2017-04-25 00:22:01 +0200 |
commit | 91a4676fc0034f63bacc36ea2591599b373e5447 (patch) | |
tree | aebe6d1832521a3bda1ad379fde9dc8777f10ab4 /settings/css | |
parent | d01832ff64652f3e52fa41cccb19f122701af2c8 (diff) | |
download | nextcloud-server-91a4676fc0034f63bacc36ea2591599b373e5447.tar.gz nextcloud-server-91a4676fc0034f63bacc36ea2591599b373e5447.zip |
Make enabled and disabled apps a tabular list
Signed-off-by: Felix A. Epp <work@felixepp.de>
Diffstat (limited to 'settings/css')
-rw-r--r-- | settings/css/settings.css | 38 |
1 files changed, 35 insertions, 3 deletions
diff --git a/settings/css/settings.css b/settings/css/settings.css index 5ca62248c09..b8bf2b26cbf 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -541,9 +541,7 @@ span.version { #app-navigation .app-external, .app-version { - -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; - filter: alpha(opacity=50); - opacity: .5; + color: rgba(85,85,85,.5); } .app-level { @@ -725,6 +723,40 @@ form.section { margin-bottom: 1em; } +#apps-list.installed { + display: table; + width: 100%; + height: auto; +} + +#apps-list.installed .section { + display: table-row; + padding: 0; + margin: 0; +} + +#apps-list.installed .section > *{ + display: table-cell; + width: auto; + height: 3em; + vertical-align: middle; + float: none; + border-bottom: 1px solid #eee; + padding: .5em 1em; + box-sizing: border-box; +} + +#apps-list.installed .app-image { + text-align: center; +} + +.installed .actions { + text-align: right; +} + +#apps-list.installed .groups-enable { + margin-top: 0 +} /* LOG */ #log { |