summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-06-02 10:45:13 +0200
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2020-06-10 08:57:21 +0000
commit0e94a968ef57344b162ab7e388497267d2095003 (patch)
treece03675fde3b09de4ae9a79dbe8e6535b8c68f6b /apps
parentf40f7abbafd8d5648df1b3cb42c7c3882f1a73f3 (diff)
downloadnextcloud-server-0e94a968ef57344b162ab7e388497267d2095003.tar.gz
nextcloud-server-0e94a968ef57344b162ab7e388497267d2095003.zip
Reflect unreadable state in the UI
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps')
-rw-r--r--apps/files/css/files.scss9
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);
+ }
+ }
}
}