diff options
author | szaimen <szaimen@e.mail.de> | 2021-07-15 02:38:35 +0200 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2021-07-16 09:02:36 +0000 |
commit | 27dccb5a66dc7985067eab628de1a84e3df7e3af (patch) | |
tree | bbb6defc10d7c80e2e693c7f9bc5309c245c884b /apps/files/css | |
parent | efa2a751d0f839ed6075c71e98beafb3c418d1fa (diff) | |
download | nextcloud-server-27dccb5a66dc7985067eab628de1a84e3df7e3af.tar.gz nextcloud-server-27dccb5a66dc7985067eab628de1a84e3df7e3af.zip |
Improve notcreatable permissions hint
Signed-off-by: szaimen <szaimen@e.mail.de>
Diffstat (limited to 'apps/files/css')
-rw-r--r-- | apps/files/css/files.scss | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/apps/files/css/files.scss b/apps/files/css/files.scss index 74770bf58ea..1bee9677874 100644 --- a/apps/files/css/files.scss +++ b/apps/files/css/files.scss @@ -826,9 +826,23 @@ table.dragshadow td.size { } .notCreatable { - padding-left: 12px; - padding-top: 12px; - color: var(--color-text-lighter); + margin-left: 12px; + margin-right: 44px; + margin-top: 12px; + color: var(--color-main-text); + overflow: auto; + min-width: 160px; + height: 54px; + + &:not(.hidden) { + display: flex; + } + + .icon-alert-outline { + top: -15px; + position: relative; + margin-right: 4px; + } } #quota { |