diff options
author | Raghu Nayyar <me@iraghu.com> | 2014-03-05 19:15:33 +0530 |
---|---|---|
committer | Raghu Nayyar <me@iraghu.com> | 2014-03-05 19:15:33 +0530 |
commit | 859cac197e0284be11f29edda20c10fb5307f4d8 (patch) | |
tree | 7d892f9ea253f3bff283398baa4b3308493f74dc | |
parent | bd866427471ec178602959afdce8851979501c45 (diff) | |
parent | 4d679de30bc4911d833ac54ed3bfb5cfeeb763d6 (diff) | |
download | nextcloud-server-859cac197e0284be11f29edda20c10fb5307f4d8.tar.gz nextcloud-server-859cac197e0284be11f29edda20c10fb5307f4d8.zip |
Merge pull request #7560 from owncloud/icons.css-star-fix
add hover/focus states for star icons to hint at action
-rw-r--r-- | core/css/icons.css | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/core/css/icons.css b/core/css/icons.css index 027a3f8557f..b41c7338612 100644 --- a/core/css/icons.css +++ b/core/css/icons.css @@ -156,11 +156,15 @@ background-image: url('../img/actions/sound-off.svg'); } -.icon-star { +.icon-star, +.icon-starred:hover, +.icon-starred:focus { background-image: url('../img/actions/star.svg'); } -.icon-starred { +.icon-starred, +.icon-star:hover, +.icon-star:focus { background-image: url('../img/actions/starred.svg'); } |