summaryrefslogtreecommitdiffstats
path: root/sonar-server/src/main/webapp/stylesheets
diff options
context:
space:
mode:
authorStas Vilchik <vilchiks@gmail.com>2013-12-30 12:46:50 +0600
committerStas Vilchik <vilchiks@gmail.com>2013-12-30 12:46:50 +0600
commitffcd349b9abb07107f44817cf19da67fb494820c (patch)
treebe433b37244b647d8f14526e7b03af475fb39864 /sonar-server/src/main/webapp/stylesheets
parentccf011fcdb9a29df02a25a58f45359d4a55f7492 (diff)
downloadsonarqube-ffcd349b9abb07107f44817cf19da67fb494820c.tar.gz
sonarqube-ffcd349b9abb07107f44817cf19da67fb494820c.zip
Highlight pie piece when mouse is hover legend item
Diffstat (limited to 'sonar-server/src/main/webapp/stylesheets')
-rw-r--r--sonar-server/src/main/webapp/stylesheets/style.css7
1 files changed, 5 insertions, 2 deletions
diff --git a/sonar-server/src/main/webapp/stylesheets/style.css b/sonar-server/src/main/webapp/stylesheets/style.css
index 010af9cd09f..0a19f832e44 100644
--- a/sonar-server/src/main/webapp/stylesheets/style.css
+++ b/sonar-server/src/main/webapp/stylesheets/style.css
@@ -2444,11 +2444,13 @@ textarea.width100 {
transition: all 0.2s ease;
}
-.sonar-d3 .plot:hover .arc {
+.sonar-d3 .plot:hover .arc,
+.sonar-d3 .plot.hover .arc {
opacity: 0.4;
}
-.sonar-d3 .plot .arc:hover {
+.sonar-d3 .plot .arc:hover,
+.sonar-d3 .plot .arc.hover {
opacity: 1;
}
@@ -2492,6 +2494,7 @@ textarea.width100 {
.sonar-d3 .legend-text {
font-size: 11px;
+ cursor: default;
}
.sonar-d3 .legend-active .legend-bullet {