diff options
author | GretaD <gretadoci@gmail.com> | 2020-02-28 15:27:31 +0100 |
---|---|---|
committer | npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com> | 2020-03-09 20:16:38 +0000 |
commit | b201121e62a09518ab21ab7fd2733af8de85c75c (patch) | |
tree | a8def123ec9c8f485400447bace7e5613ac512dd /apps/files/css | |
parent | 0d613cd2f03e7d683a782fbb161026db6e4cb3d1 (diff) | |
download | nextcloud-server-b201121e62a09518ab21ab7fd2733af8de85c75c.tar.gz nextcloud-server-b201121e62a09518ab21ab7fd2733af8de85c75c.zip |
Fix default action for deleted shares
Signed-off-by: GretaD <gretadoci@gmail.com>
Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
Diffstat (limited to 'apps/files/css')
-rw-r--r-- | apps/files/css/files.scss | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/apps/files/css/files.scss b/apps/files/css/files.scss index 9d9daabc279..b826f305d14 100644 --- a/apps/files/css/files.scss +++ b/apps/files/css/files.scss @@ -320,7 +320,8 @@ table td.fileaction { width: 32px; text-align: center; } -table td.filename a.name { +table td.filename a.name, +table td.filename p.name { display: flex; position:relative; /* Firefox needs to explicitly have this default set … */ -moz-box-sizing: border-box; @@ -356,6 +357,9 @@ table td.filename .thumbnail { position: absolute; z-index: 4; } +table td.filename p.name .thumbnail { + cursor: default; +} // Show slight border around previews for images, txt, etc. table tr[data-has-preview='true'] .thumbnail { @@ -477,7 +481,8 @@ table td.selection { -webkit-transition:background-image 500ms; -moz-transition:background-image 500ms; -o-transition:background-image 500ms; transition:background-image 500ms; } -#fileList tr td.filename a.name label { +#fileList tr td.filename a.name label, +#fileList tr td.filename p.name label { position: absolute; width: 80%; height: 50px; |