diff options
author | Gary Kim <gary@garykim.dev> | 2019-10-05 15:53:07 +0800 |
---|---|---|
committer | Gary Kim <gary@garykim.dev> | 2019-10-07 19:35:23 +0800 |
commit | 11d01319c6e9a5fe25537006c352e836c803c2e0 (patch) | |
tree | cc59167f0e562698981491fe123a5a95d7516206 /core | |
parent | 049628a3f53f3e5e6fe4111b5e28fa90d1a95dd9 (diff) | |
download | nextcloud-server-11d01319c6e9a5fe25537006c352e836c803c2e0.tar.gz nextcloud-server-11d01319c6e9a5fe25537006c352e836c803c2e0.zip |
Show Delete Icon in Breadcrumb in Trashbin
Signed-off-by: Gary Kim <gary@garykim.dev>
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; } |