diff options
author | blizzz <blizzz@arthur-schiwon.de> | 2022-04-01 10:36:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-01 10:36:40 +0200 |
commit | 3395a5e1b932b9745e4e17f349be79be73c5b257 (patch) | |
tree | 30a4080dac4458200309490c37133fd21041d619 | |
parent | 4b8b73ed21d406d487aa341701ca0ab6d65ac748 (diff) | |
parent | 3890081997fbbcbb2b3699f4a001c072f3254ced (diff) | |
download | nextcloud-server-3395a5e1b932b9745e4e17f349be79be73c5b257.tar.gz nextcloud-server-3395a5e1b932b9745e4e17f349be79be73c5b257.zip |
Merge pull request #31782 from nextcloud/fix/31780_31778/fix-ldap-wizard
Fix ldap wizard styling
-rw-r--r-- | apps/user_ldap/css/settings.css | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/apps/user_ldap/css/settings.css b/apps/user_ldap/css/settings.css index 54d0e2dbb0c..f99310118a9 100644 --- a/apps/user_ldap/css/settings.css +++ b/apps/user_ldap/css/settings.css @@ -9,7 +9,8 @@ } .tablerow { - display: table-row; + display: flex; + align-items: center; white-space: nowrap; text-align: left; } @@ -226,3 +227,8 @@ select[multiple=multiple] + button { #ldapSettings div.ui-accordion-content { background: white; } + +ul.ui-multiselect-checkboxes label { + display: flex; + align-items: center; +} |