summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2020-06-10 10:54:51 +0200
committerGitHub <noreply@github.com>2020-06-10 10:54:51 +0200
commit83303ef9dfbdc07ff5bddd0ee64abdda4cf35647 (patch)
tree43c3c9f17f4354fbf462763a82d13eb91289c531 /apps
parent3000148e2756e397dbba6944f2452a1dfd6a015f (diff)
parent31e9ab49613a463a7172d422eb7836f03bc7f2be (diff)
downloadnextcloud-server-83303ef9dfbdc07ff5bddd0ee64abdda4cf35647.tar.gz
nextcloud-server-83303ef9dfbdc07ff5bddd0ee64abdda4cf35647.zip
Merge pull request #21185 from nextcloud/bugfix/noid/reflect-unreadable-state-in-ui
Reflect unreadable state in the UI
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);
+ }
+ }
}
}