diff options
author | Morris Jobke <hey@morrisjobke.de> | 2016-10-26 10:28:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-26 10:28:02 +0200 |
commit | 363618249d09e9003ddc2732d6fea01ec0525d89 (patch) | |
tree | ae7f5133c716b3c09081a17340b7baddc7a4caa5 | |
parent | 0b430a82d49a9141d8e8942496a5b63560026caf (diff) | |
parent | e169bb06363a81054aa8ecba59bad88e734501c9 (diff) | |
download | nextcloud-server-363618249d09e9003ddc2732d6fea01ec0525d89.tar.gz nextcloud-server-363618249d09e9003ddc2732d6fea01ec0525d89.zip |
Merge pull request #1355 from nextcloud/apps_flexbox
Use flexbox on app page
-rw-r--r-- | settings/css/settings.css | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/settings/css/settings.css b/settings/css/settings.css index 2f0f4b23515..0dadf401c04 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -435,12 +435,22 @@ span.version { #apps-list { position: relative; height: 100%; + display: flex; + flex-wrap: wrap; + align-content: flex-start; } -.section { +#apps-list .section { position: relative; + 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; |