diff options
author | Morris Jobke <hey@morrisjobke.de> | 2019-03-21 09:59:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-21 09:59:07 +0100 |
commit | 651495e3ae549b4c029e2ca177a696fa9701ba4e (patch) | |
tree | 802690f89ec52be134b535174084c6d8599122e2 /apps | |
parent | 2389b616a3718756bc2731f5c4c57784e3c482d9 (diff) | |
parent | ec09f121af31764455c74277fd049c326ca082fc (diff) | |
download | nextcloud-server-651495e3ae549b4c029e2ca177a696fa9701ba4e.tar.gz nextcloud-server-651495e3ae549b4c029e2ca177a696fa9701ba4e.zip |
Merge pull request #14776 from nextcloud/fix/files/size-color
Use max contrast variable to cap the generated colours
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/js/filelist.js | 37 |
1 files changed, 30 insertions, 7 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 868623d9a8a..44c4c5abec9 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -1532,15 +1532,37 @@ td.append(linkElem); tr.append(td); + try { + var maxContrastHex = window.getComputedStyle(document.documentElement) + .getPropertyValue('--color-text-maxcontrast') + var maxContrast = parseInt(maxContrastHex.substring(1, 3), 16) + } catch(error) { + var maxContrast = OCA.Accessibility + && OCA.Accessibility.theme === 'themedark' + ? '130' + : '118' + } + // size column if (typeof(fileData.size) !== 'undefined' && fileData.size >= 0) { simpleSize = humanFileSize(parseInt(fileData.size, 10), true); // 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)); + sizeColor = Math.round(118-Math.pow((fileData.size/(1024*1024)), 2)); + + // ensure that the brightest color is still readable + // min. color contrast for normal text on white background according to WCAG AA + if (sizeColor >= maxContrast) { + sizeColor = maxContrast; + } if (OCA.Accessibility && OCA.Accessibility.theme === 'themedark') { sizeColor = Math.abs(sizeColor); + // ensure that the dimmest color is still readable + // min. color contrast for normal text on black background according to WCAG AA + if (sizeColor < maxContrast) { + sizeColor = maxContrast; + } } } else { simpleSize = t('files', 'Pending'); @@ -1555,22 +1577,23 @@ // date column (1000 milliseconds to seconds, 60 seconds, 60 minutes, 24 hours) // 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 - // rgb(118, 118, 118) / #767676 // min. color contrast for normal text on white background according to WCAG AA - if (modifiedColor >= '118') { - modifiedColor = 118; + if (modifiedColor >= maxContrast) { + modifiedColor = maxContrast; } + if (OCA.Accessibility && OCA.Accessibility.theme === 'themedark') { modifiedColor = Math.abs(modifiedColor); // ensure that the dimmest color is still readable - // rgb(130, 130, 130) / #828282 // min. color contrast for normal text on black background according to WCAG AA - if (modifiedColor < 130) { - modifiedColor = 130; + if (modifiedColor < maxContrast) { + modifiedColor = maxContrast; } } + var formatted; var text; if (mtime > 0) { |