diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2019-10-08 08:08:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-08 08:08:02 +0200 |
commit | e4948f5d86a7df2a683e288e55f6f626d90d7cf0 (patch) | |
tree | 7be20b70b052d73a62ed9c0de236f877b6b9d88c /core | |
parent | 85dbde060d3c6a39b4b33112a32f7b18c9729075 (diff) | |
parent | 11d01319c6e9a5fe25537006c352e836c803c2e0 (diff) | |
download | nextcloud-server-e4948f5d86a7df2a683e288e55f6f626d90d7cf0.tar.gz nextcloud-server-e4948f5d86a7df2a683e288e55f6f626d90d7cf0.zip |
Merge pull request #17414 from gary-kim/enh/15155/delete-icon-in-trashbin
Show Delete Icon in Breadcrumb in Trashbin
Diffstat (limited to 'core')
-rw-r--r-- | core/css/icons.scss | 3 | ||||
-rw-r--r-- | core/css/styles.scss | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/core/css/icons.scss b/core/css/icons.scss index 4b37bad7d2d..ca6314d5001 100644 --- a/core/css/icons.scss +++ b/core/css/icons.scss @@ -165,7 +165,8 @@ img, object, video, button, textarea, input, select, div[contenteditable='true'] .icon-delete { @include icon-color('delete', 'actions', $color-black, 1, true); - &.no-permission { + &.no-permission, + &.no-hover { &:hover, &:focus { @include icon-color('delete', 'actions', $color-black, 1, true); diff --git a/core/css/styles.scss b/core/css/styles.scss index 905cf34aacd..61fb4dcd4a1 100644 --- a/core/css/styles.scss +++ b/core/css/styles.scss @@ -1197,7 +1197,8 @@ div.crumb { // Some sane max-width for each folder name max-width: 200px; - &.icon-home { + &.icon-home, + &.icon-delete { // Hide home text text-indent: -9999px; } |