diff options
author | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2021-11-29 19:26:57 +0100 |
---|---|---|
committer | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2021-12-07 18:02:17 +0100 |
commit | 45e66458ff73753353dfe7f0b828f17cda050a5f (patch) | |
tree | f1e747daf2334fab04866c2bc555bfe90a7be205 /apps/settings/css | |
parent | 2594d9ec356169d747478afeef7e4c300698f8af (diff) | |
download | nextcloud-server-45e66458ff73753353dfe7f0b828f17cda050a5f.tar.gz nextcloud-server-45e66458ff73753353dfe7f0b828f17cda050a5f.zip |
Fix input for groups validation in new user form
The hidden input used for form validation was not actually hidden since
Nextcloud 22, as the DOM structure changed to show a dialog rather than
adding a row on top of the list when adding new users, so the CSS rules
no longer matched.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'apps/settings/css')
-rw-r--r-- | apps/settings/css/settings.scss | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/apps/settings/css/settings.scss b/apps/settings/css/settings.scss index f65fbdabd97..6b79040ce9e 100644 --- a/apps/settings/css/settings.scss +++ b/apps/settings/css/settings.scss @@ -1566,15 +1566,6 @@ doesnotexist:-o-prefocus, .strengthify-wrapper { &.sticky { box-shadow: 0 -2px 10px 1px var(--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: 50px |