diff options
author | Joas Schilling <coding@schilljs.com> | 2020-06-02 10:45:13 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2020-06-10 09:35:36 +0200 |
commit | 31e9ab49613a463a7172d422eb7836f03bc7f2be (patch) | |
tree | f27a3c1479f8de7c4a8af4f6c9708f841acdecfd /apps/files | |
parent | 9806dec9b3f985ce8a05c9852064e38fa7b199a5 (diff) | |
download | nextcloud-server-31e9ab49613a463a7172d422eb7836f03bc7f2be.tar.gz nextcloud-server-31e9ab49613a463a7172d422eb7836f03bc7f2be.zip |
Reflect unreadable state in the UI
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/css/files.scss | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/files/css/files.scss b/apps/files/css/files.scss index b826f305d14..e875e0da29a 100644 --- a/apps/files/css/files.scss +++ b/apps/files/css/files.scss @@ -84,6 +84,15 @@ tbody { display: table; width: 100%; + + tr[data-permissions="0"], + tr[data-permissions="16"] { + background-color: var(--color-background-dark); + + td.filename .nametext .innernametext { + color: var(--color-text-maxcontrast); + } + } } } |