diff options
author | Morris Jobke <hey@morrisjobke.de> | 2014-11-11 15:14:04 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2014-11-17 17:50:20 +0100 |
commit | 68e77f46598429e1d8a96f668e5065e5fce362ce (patch) | |
tree | 8db88612a8d73efd730447384d46e181fbe04d29 | |
parent | f530865b3d952e10c5c295f6dbe1138a667fa659 (diff) | |
download | nextcloud-server-68e77f46598429e1d8a96f668e5065e5fce362ce.tar.gz nextcloud-server-68e77f46598429e1d8a96f668e5065e5fce362ce.zip |
fix unreadable label in warning box
-rw-r--r-- | core/css/styles.css | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index c45588cece6..2859399b59e 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -353,6 +353,12 @@ input[type="submit"].enabled { filter: alpha(opacity=60); opacity: .6; } +/* overrides another !important statement that sets this to unreadable black */ +#body-login form .warning input[type="checkbox"]:hover+label, +#body-login form .warning input[type="checkbox"]:focus+label, +#body-login form .warning input[type="checkbox"]+label { + color: #fff !important; +} #body-login .update h2 { font-size: 20px; |