diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-05-15 18:22:19 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-05-16 09:50:25 +0200 |
commit | e23e28b3cc311c9820462b38c6a7958027540dd7 (patch) | |
tree | 7e1022ca576dcfc7b9969858c45f6bfca55dd36b /settings/css | |
parent | bcffbab6f8afb29c9e5c8ef9861739febdb06a09 (diff) | |
download | nextcloud-server-e23e28b3cc311c9820462b38c6a7958027540dd7.tar.gz nextcloud-server-e23e28b3cc311c9820462b38c6a7958027540dd7.zip |
Various fixes
* Fixed subadmin group management
* Fixed pass policy prop retrieving
* Fixed fields subadmins were not supposed to see
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'settings/css')
-rw-r--r-- | settings/css/settings.scss | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/settings/css/settings.scss b/settings/css/settings.scss index 27c06565d25..2f0ca08478e 100644 --- a/settings/css/settings.scss +++ b/settings/css/settings.scss @@ -1331,14 +1331,23 @@ doesnotexist:-o-prefocus, .strengthify-wrapper { &.sticky { box-shadow: 0 -2px 10px 1px $color-box-shadow; } + /* fake input for groups validation */ + input#newgroups { + position: absolute; + opacity: 0; + width: 80% !important; + margin: 0 10%; + z-index: 0; + } + } + // separate prop to set initial value to top:0 + &#new-user { + top: $grid-row-height; } &#grid-header { color: nc-lighten($color-main-text, 60%); z-index: 60; /* above new-user */ } - &#new-user { - top: $grid-row-height; - } &:hover { input:not([type='submit']):not(:focus):not(:active) { border-color: nc-darken($color-main-background, 14%) !important; |