diff options
author | Julius Härtl <jus@bitgrid.net> | 2018-07-18 15:10:11 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2018-07-20 14:37:42 +0200 |
commit | 0a14157c3b89bed878528bcbf66a145fb2f5455f (patch) | |
tree | 017cd5798a46239d246130320ef6dbb069c29c8a /settings/css | |
parent | a28a8f1ccb85e67420a4680cdddc4ff95ecd2b5e (diff) | |
download | nextcloud-server-0a14157c3b89bed878528bcbf66a145fb2f5455f.tar.gz nextcloud-server-0a14157c3b89bed878528bcbf66a145fb2f5455f.zip |
Add some responsiveness to the user management
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'settings/css')
-rw-r--r-- | settings/css/settings.scss | 28 |
1 files changed, 10 insertions, 18 deletions
diff --git a/settings/css/settings.scss b/settings/css/settings.scss index 34afc6f6a41..4bba5afa788 100644 --- a/settings/css/settings.scss +++ b/settings/css/settings.scss @@ -1404,8 +1404,7 @@ doesnotexist:-o-prefocus, .strengthify-wrapper { align-items: center; /* let's define the column until storage path, what follows will be manually defined */ - grid-template-columns: 44px; - grid-auto-columns: min-content; + grid-template-columns: 44px minmax(150px, 1fr) repeat(auto-fit, minmax(120px, 1fr)) 44px; border-top: var(--color-border) 1px solid; &.disabled { opacity: .5; @@ -1414,31 +1413,24 @@ doesnotexist:-o-prefocus, .strengthify-wrapper { /* grid col width */ .name, .displayName, - .password { - width: 150px; - } + .password, .mailAddress, .groups, - .subadmins { - width: 200px; - } - .quota { - width: 150px; - } - .languages { - width: 200px; - } - .storageLocation { - width: 250px; - } + .subadmins, + .quota, + .languages, + .storageLocation, .userBackend, .lastLogin { - width: 100px; + min-width: 120px; } .obfuscated { width: 400px; opacity: .7; } + .userActions { + min-width: 44px; + } /* various */ &#grid-header, |