diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2018-04-18 15:38:30 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2018-04-18 15:38:30 +0200 |
commit | 0d675eca568fabc9dba1a682c32f2da2554332f7 (patch) | |
tree | cf9c2444a903b843e864a2120b7bdfe9b8b36cbf /apps/files/css/files.scss | |
parent | df3c1ac283d6ba665b0d761d5b47a15e544da990 (diff) | |
download | nextcloud-server-0d675eca568fabc9dba1a682c32f2da2554332f7.tar.gz nextcloud-server-0d675eca568fabc9dba1a682c32f2da2554332f7.zip |
Ensure proper color contrast according to WCAG AA
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'apps/files/css/files.scss')
-rw-r--r-- | apps/files/css/files.scss | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/apps/files/css/files.scss b/apps/files/css/files.scss index f2d2e7d54f3..3568e2f3a67 100644 --- a/apps/files/css/files.scss +++ b/apps/files/css/files.scss @@ -148,10 +148,9 @@ table tr.mouseOver td { tbody a { color: $color-main-text; } span.conflict-path, span.extension, span.uploading, td.date { - color: #999; + color: $color-text-details; } span.conflict-path, span.extension { - opacity: .7; -webkit-transition: opacity 300ms; -moz-transition: opacity 300ms; -o-transition: opacity 300ms; @@ -163,11 +162,11 @@ tr:focus span.conflict-path, tr:hover span.extension, tr:focus span.extension { opacity: 1; - color: #777; + color: $color-text-details; } table th, table th a { - color: #999; + color: $color-text-details; } table.multiselect th a { color: #000; |