diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-12-18 16:00:26 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-12-18 16:00:26 +0100 |
commit | bfee3eefbdf73fdaf82d6754b730aa603b78200d (patch) | |
tree | fd5611e918ac9082bd59cca08ac966b56b183455 | |
parent | 137d19f6b123d6697464f740dc1ff02e90a229c6 (diff) | |
download | nextcloud-server-bfee3eefbdf73fdaf82d6754b730aa603b78200d.tar.gz nextcloud-server-bfee3eefbdf73fdaf82d6754b730aa603b78200d.zip |
better color contrast for focused buttons
-rw-r--r-- | core/css/styles.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index 12408c2d76c..3996aade6d4 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -193,8 +193,8 @@ input[type="button"]:hover, input[type="button"]:focus, button:hover, button:focus, .button:hover, .button:focus, select:hover, select:focus, select:active { - background-color:rgba(250,250,250,.9); - color:#333; + background-color: rgba(255, 255, 255, .95); + color: #111; } input[type="submit"] img, input[type="button"] img, button img, .button img { cursor:pointer; } #header .button { |