diff options
Diffstat (limited to 'apps/user_ldap/css/settings.css')
-rw-r--r-- | apps/user_ldap/css/settings.css | 54 |
1 files changed, 26 insertions, 28 deletions
diff --git a/apps/user_ldap/css/settings.css b/apps/user_ldap/css/settings.css index 54d0e2dbb0c..a1048031fa2 100644 --- a/apps/user_ldap/css/settings.css +++ b/apps/user_ldap/css/settings.css @@ -1,3 +1,8 @@ +/** + * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors + * SPDX-FileCopyrightText: 2012-2016 ownCloud, Inc. + * SPDX-License-Identifier: AGPL-3.0-only + */ .table { display: table; width: 85%; @@ -9,9 +14,10 @@ } .tablerow { - display: table-row; + display: flex; + align-items: center; white-space: nowrap; - text-align: left; + text-align: start; } .tablerow input, .tablerow textarea { @@ -23,7 +29,7 @@ } #ldap .tablerow label { - margin-left: 3px; + margin-inline-start: 3px; } .ldapIconCopy { @@ -44,7 +50,7 @@ .ldapWizardControls { width: 60%; - text-align: right; + text-align: end; } .ldapWizardInfo { @@ -64,31 +70,30 @@ #ldapWizard1 .hostPortCombinatorSpan { width: 14.5%; display: inline-block; - text-align: right; + text-align: end; } #ldapWizard1 .host { width: 100%; - margin-left: 0; - margin-right: 0; + margin-inline: 0; } .tableCellInput { - margin-left: -40%; + margin-inline-start: -40%; width: 100%; } .tableCellLabel { - text-align: right; - padding-right: 25%; + text-align: end; + padding-inline-end: 25%; } .ldapIndent { - margin-left: 50px; + margin-inline-start: 50px; } .ldapwarning { - margin-left: 22px; + margin-inline-start: 22px; color: #FF3B3B; } @@ -110,9 +115,9 @@ max-width: 200px; display: inline-block; vertical-align: top; - text-align: right; + text-align: end; padding-top: 9px; - padding-right: 5px; + padding-inline-end: 5px; } #ldap fieldset input[type=submit] { @@ -153,7 +158,7 @@ input.ldapVerifyInput { .ldapInputColElement { width: 35%; display: inline-block; - padding-left: 10px; + padding-inline-start: 10px; } .ldapToggle { @@ -184,7 +189,7 @@ select[multiple=multiple] + button { } #ldap .ldap_saving { - margin-right: 15px; + margin-inline-end: 15px; color: orange; font-weight: bold; } @@ -197,10 +202,12 @@ select[multiple=multiple] + button { width: 16px; vertical-align: text-bottom; } + .ldap_config_state_indicator_sign.success { background: #37ce02; border-radius: 8px; } + .ldap_config_state_indicator_sign.error { background: #ce3702; } @@ -210,19 +217,10 @@ select[multiple=multiple] + button { } #ldapSettings { - background-color: white; padding: 0; } -#ldapSettings > fieldset { - background-color: white; -} - -#ldapSettings ul.ui-tabs-nav .ui-tabs-active, -#ldapSettings ul.ui-tabs-nav .ui-tabs-active > a { - background-color: white; -} - -#ldapSettings div.ui-accordion-content { - background: white; +ul.ui-multiselect-checkboxes label { + display: flex; + align-items: center; } |