summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2018-04-18 15:38:30 +0200
committerJan-Christoph Borchardt <hey@jancborchardt.net>2018-04-18 15:38:30 +0200
commit0d675eca568fabc9dba1a682c32f2da2554332f7 (patch)
treecf9c2444a903b843e864a2120b7bdfe9b8b36cbf /apps
parentdf3c1ac283d6ba665b0d761d5b47a15e544da990 (diff)
downloadnextcloud-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')
-rw-r--r--apps/files/css/detailsView.scss2
-rw-r--r--apps/files/css/files.scss7
-rw-r--r--apps/files/js/filelist.js12
3 files changed, 12 insertions, 9 deletions
diff --git a/apps/files/css/detailsView.scss b/apps/files/css/detailsView.scss
index 7393a459b8d..334fc0c8fd8 100644
--- a/apps/files/css/detailsView.scss
+++ b/apps/files/css/detailsView.scss
@@ -100,7 +100,7 @@
}
#app-sidebar .file-details {
- color: #999;
+ color: $color-text-details;
}
#app-sidebar .action-favorite {
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;
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js
index 4ef45a16b49..307147076b2 100644
--- a/apps/files/js/filelist.js
+++ b/apps/files/js/filelist.js
@@ -1328,7 +1328,9 @@
// size column
if (typeof(fileData.size) !== 'undefined' && fileData.size >= 0) {
simpleSize = humanFileSize(parseInt(fileData.size, 10), true);
- sizeColor = Math.round(160-Math.pow((fileData.size/(1024*1024)),2));
+ // rgb(118, 118, 118) / #767676
+ // min. color contrast for normal text on white background according to WCAG AA
+ sizeColor = Math.round(118-Math.pow((fileData.size/(1024*1024)),2));
} else {
simpleSize = t('files', 'Pending');
}
@@ -1343,8 +1345,10 @@
// difference in days multiplied by 5 - brightest shade for files older than 32 days (160/5)
var modifiedColor = Math.round(((new Date()).getTime() - mtime )/1000/60/60/24*5 );
// ensure that the brightest color is still readable
- if (modifiedColor >= '160') {
- modifiedColor = 160;
+ // rgb(118, 118, 118) / #767676
+ // min. color contrast for normal text on white background according to WCAG AA
+ if (modifiedColor >= '118') {
+ modifiedColor = 118;
}
var formatted;
var text;
@@ -2387,7 +2391,7 @@
input.blur(function() {
if(input.hasClass('error')) {
restore();
- } else {
+ } else {
form.trigger('submit');
}
});