diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-02-27 12:48:25 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-02-27 12:48:25 +0100 |
commit | 58bc6aee51a5b380ae8943c489f6fdd7434bcc42 (patch) | |
tree | 5577a89e84856ac7518e1633058c86b20177735f /core | |
parent | 577e47e207913554f855a4bfba13e6e7226ccaa9 (diff) | |
download | nextcloud-server-58bc6aee51a5b380ae8943c489f6fdd7434bcc42.tar.gz nextcloud-server-58bc6aee51a5b380ae8943c489f6fdd7434bcc42.zip |
icons: automatically show delete hover instead of using explicit class
Diffstat (limited to 'core')
-rw-r--r-- | core/css/icons.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/css/icons.css b/core/css/icons.css index 814749c5af8..d3d4d7da709 100644 --- a/core/css/icons.css +++ b/core/css/icons.css @@ -66,7 +66,8 @@ .icon-delete { background-image: url('../img/actions/delete.svg'); } -.icon-delete-hover { +.icon-delete:hover, +.icon-delete:focus { background-image: url('../img/actions/delete-hover.svg'); } |