diff options
author | Felix Epp <work@felixepp.de> | 2016-09-10 17:01:24 +0200 |
---|---|---|
committer | Felix A. Epp <work@felixepp.de> | 2016-10-25 18:04:20 +0200 |
commit | e169bb06363a81054aa8ecba59bad88e734501c9 (patch) | |
tree | 7431f67de0e3ca110fea5737162fc7ca51016309 | |
parent | 392a29328619d9712bf8fd933a9f13b7a3f35442 (diff) | |
download | nextcloud-server-e169bb06363a81054aa8ecba59bad88e734501c9.tar.gz nextcloud-server-e169bb06363a81054aa8ecba59bad88e734501c9.zip |
Limit to apps list, add proper flex attributes
Let app-name headline break, increase padding on the right for more visual clearance.
Make experimental header full width
Signed-off-by: Felix A. Epp <work@felixepp.de>
-rw-r--r-- | settings/css/settings.css | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/settings/css/settings.css b/settings/css/settings.css index 7bd71e5df1f..fa8c20a70db 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -384,14 +384,21 @@ span.version { position: relative; height: 100%; display: flex; - flex-flow: row wrap; + flex-wrap: wrap; + align-content: flex-start; } -.section { +#apps-list .section { position: relative; - width: 300px; + flex: 1 0 330px; + margin: 0; + padding-right: 50px; +} +#apps-list .section.apps-experimental { + flex-basis: 90%; } .section h2.app-name { margin-bottom: 8px; + display: inline; } .followupsection { display: block; |