diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2013-11-07 17:11:14 +0100 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2013-11-13 19:07:28 +0100 |
commit | 4ee296051b51a3d31fa6cbb66488c9de8f720625 (patch) | |
tree | 76d0081d0806c078cefb84647c33c3cc703b5e72 /apps/user_ldap/css | |
parent | 15c4e4ed091622d97fb5c6eef1038108cbbdc633 (diff) | |
download | nextcloud-server-4ee296051b51a3d31fa6cbb66488c9de8f720625.tar.gz nextcloud-server-4ee296051b51a3d31fa6cbb66488c9de8f720625.zip |
LDAP Wizard: introduce configuration status indicator, fixes #5741
Diffstat (limited to 'apps/user_ldap/css')
-rw-r--r-- | apps/user_ldap/css/settings.css | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/apps/user_ldap/css/settings.css b/apps/user_ldap/css/settings.css index be03419c2de..127ce817ac1 100644 --- a/apps/user_ldap/css/settings.css +++ b/apps/user_ldap/css/settings.css @@ -108,4 +108,18 @@ select[multiple=multiple] + button { padding-top: 6px !important; min-width: 40%; max-width: 40%; -}
\ No newline at end of file +} + +.ldap_config_state_indicator_sign { + display: inline-block; + height: 16px; + 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; +} |