From 31e9ab49613a463a7172d422eb7836f03bc7f2be Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Tue, 2 Jun 2020 10:45:13 +0200 Subject: [PATCH] Reflect unreadable state in the UI Signed-off-by: Joas Schilling --- apps/files/css/files.scss | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/apps/files/css/files.scss b/apps/files/css/files.scss index b826f305d1..e875e0da29 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); + } + } } }