diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2018-10-12 20:04:49 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2018-10-18 13:44:10 +0200 |
commit | d979da3755bc271b6d60c952fd67bd7125a38e92 (patch) | |
tree | 33f3b4f989fb1bb6e6d7a6ed39beb33d26b75db6 | |
parent | bdfece12b2395235eedad6123a0c40bdea65e3a1 (diff) | |
download | nextcloud-server-d979da3755bc271b6d60c952fd67bd7125a38e92.tar.gz nextcloud-server-d979da3755bc271b6d60c952fd67bd7125a38e92.zip |
In "Deleted files", do not show "Restore" text next to icon as there is no space
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
-rw-r--r-- | apps/files/css/files.scss | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/files/css/files.scss b/apps/files/css/files.scss index e3e9481d072..bb6d942f305 100644 --- a/apps/files/css/files.scss +++ b/apps/files/css/files.scss @@ -874,6 +874,13 @@ table.dragshadow td.size { } } + /* In "Deleted files", do not show "Restore" text next to icon as there is no space */ + &.action-restore.permanent span { + &:not(.icon) { + display: none; + } + } + /* If there is a comment, show it instead of the share icon */ &.action-comment ~ .action-share { display: none; |