diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2016-03-04 10:41:46 +0100 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2016-03-07 16:10:23 +0100 |
commit | b91bac7f106204167511b593b8a49e433abf9afc (patch) | |
tree | 54afc85a0a455d46c371880f9db90083b1d56500 /server/sonar-web/src/main/less | |
parent | 1d2f7dabab0e8678775ebdaa65e41bebf75bbf26 (diff) | |
download | sonarqube-b91bac7f106204167511b593b8a49e433abf9afc.tar.gz sonarqube-b91bac7f106204167511b593b8a49e433abf9afc.zip |
SONAR-7404 Display history of selected measure on the "Measures" page
Diffstat (limited to 'server/sonar-web/src/main/less')
-rw-r--r-- | server/sonar-web/src/main/less/components/graphics.less | 39 | ||||
-rw-r--r-- | server/sonar-web/src/main/less/pages/overview.less | 31 |
2 files changed, 39 insertions, 31 deletions
diff --git a/server/sonar-web/src/main/less/components/graphics.less b/server/sonar-web/src/main/less/components/graphics.less index c3fff6218e1..f825a84e1b0 100644 --- a/server/sonar-web/src/main/less/components/graphics.less +++ b/server/sonar-web/src/main/less/components/graphics.less @@ -266,3 +266,42 @@ text.max-results-reached-message { .link-no-underline; } } + +.line-chart { + +} + +.line-chart-path { + fill: none; + stroke: @blue; + stroke-width: 2px; +} + +.line-chart-point { + fill: #fff; + stroke: @darkBlue; + stroke-width: 2px; +} + +.line-chart-backdrop { + +} + +.line-chart-tick { + fill: @secondFontColor; + font-size: 12px; + text-anchor: middle; +} + +.line-chart-tick-x { + text-anchor: end; +} + +.line-chart-tick-x-right { + text-anchor: start; +} + +.line-chart-grid { + shape-rendering: crispedges; + stroke: #eee; +} diff --git a/server/sonar-web/src/main/less/pages/overview.less b/server/sonar-web/src/main/less/pages/overview.less index 35a9a7c7a02..e11b40a93c3 100644 --- a/server/sonar-web/src/main/less/pages/overview.less +++ b/server/sonar-web/src/main/less/pages/overview.less @@ -452,40 +452,9 @@ position: absolute; } - .line-chart-path { - fill: none; - stroke: @blue; - stroke-width: 2px; - } - - .line-chart-point { - fill: #fff; - stroke: @darkBlue; - stroke-width: 2px; - } - .line-chart-backdrop { fill: #fbf3d5; } - - .line-chart-tick { - fill: @secondFontColor; - font-size: 12px; - text-anchor: middle; - } - - .line-chart-tick-x { - text-anchor: end; - } - - .line-chart-tick-x-right { - text-anchor: start; - } - - .line-chart-grid { - shape-rendering: crispedges; - stroke: #eee; - } } .overview-timeline-1 { |