diff options
author | Morris Jobke <hey@morrisjobke.de> | 2019-05-07 23:54:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-07 23:54:54 +0200 |
commit | 8fadc82bd18b3a2724126df337726755f433c768 (patch) | |
tree | 6b1876c907e109db39c372f361c3ac0a8e7da993 | |
parent | 4cb66fd0b669609d5fcef7ce3ea629e23484b373 (diff) | |
parent | 100b9981b46323bf58a05f2d6f72b3cef1430a7d (diff) | |
download | nextcloud-server-8fadc82bd18b3a2724126df337726755f433c768.tar.gz nextcloud-server-8fadc82bd18b3a2724126df337726755f433c768.zip |
Merge pull request #15301 from nextcloud/fix/select/users-management
Fix multiselect min width
-rw-r--r-- | settings/css/settings.scss | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/settings/css/settings.scss b/settings/css/settings.scss index 8d38e71460f..e0d22e37003 100644 --- a/settings/css/settings.scss +++ b/settings/css/settings.scss @@ -1336,6 +1336,7 @@ doesnotexist:-o-prefocus, .strengthify-wrapper { /* USERS LIST -------------------------------------------------------------- */ #body-settings { $grid-row-height: 46px; + $grid-col-min-width: 120px; #app-content.user-list-grid { display: grid; grid-auto-columns: 1fr; @@ -1351,7 +1352,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 minmax(150px, 1fr) repeat(auto-fit, minmax(120px, 1fr)); + grid-template-columns: 44px minmax($grid-col-min-width + 30px, 1fr) repeat(auto-fit, minmax($grid-col-min-width, 1fr)); border-bottom: var(--color-border) 1px solid; &.disabled { opacity: .5; @@ -1362,14 +1363,18 @@ doesnotexist:-o-prefocus, .strengthify-wrapper { .displayName, .password, .mailAddress, - .groups, - .subadmins, - .quota, .languages, .storageLocation, .userBackend, .lastLogin { - min-width: 120px; + min-width: $grid-col-min-width; + } + .groups, + .subadmins, + .quota { + .multiselect { + min-width: $grid-col-min-width; + } } .obfuscated { width: 400px; |