diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2020-06-10 10:54:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-10 10:54:51 +0200 |
commit | 83303ef9dfbdc07ff5bddd0ee64abdda4cf35647 (patch) | |
tree | 43c3c9f17f4354fbf462763a82d13eb91289c531 /apps | |
parent | 3000148e2756e397dbba6944f2452a1dfd6a015f (diff) | |
parent | 31e9ab49613a463a7172d422eb7836f03bc7f2be (diff) | |
download | nextcloud-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.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); + } + } } } |