Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2014-03-05 16:21:33 +0400
committerJan-Christoph Borchardt <hey@jancborchardt.net>2014-03-05 16:21:33 +0400
commit4d679de30bc4911d833ac54ed3bfb5cfeeb763d6 (patch)
treec13f65e27e2b06fa5b07aaccda8b994c25c87d50 /core/css/icons.css
parent2cfd875e616fa0770441a17d6f96a9f5f45e8c3f (diff)
add hover/focus states for star icons to hint at action
Diffstat (limited to 'core/css/icons.css')
-rw-r--r--core/css/icons.css8
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');
}