diff options
author | Grégoire Aubert <gregoire.aubert@sonarsource.com> | 2019-04-05 10:58:53 +0200 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2019-04-23 20:21:09 +0200 |
commit | 4f885e88db04134cea9d500e89f28e6a09b65db2 (patch) | |
tree | 35909428587fcc68ccbcb14453f9c1da996769ce /server/sonar-web/src/main/js/app/theme.js | |
parent | 867949e745986a6113051381267edf25ed462968 (diff) | |
download | sonarqube-4f885e88db04134cea9d500e89f28e6a09b65db2.tar.gz sonarqube-4f885e88db04134cea9d500e89f28e6a09b65db2.zip |
SONAR-11886 Highlight Hotspots in issues page
* Update see rule button style in issues
* Update selected and hover styling of concise issues
* Update issues selected and hover styling
* Issues type facet don't filter out hotspots by default anymore
* Update issue box styling for hotspots
* Automatically open severity & standard facet based on the issue type
* Add security hotspots newsbox on issues page
* Update clear icon and close buttons
* Allow to dismiss hotspots newsbox on issues page
* Display help tooltip on hotspots entry of the types facet
Diffstat (limited to 'server/sonar-web/src/main/js/app/theme.js')
-rw-r--r-- | server/sonar-web/src/main/js/app/theme.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/server/sonar-web/src/main/js/app/theme.js b/server/sonar-web/src/main/js/app/theme.js index 22869b60a77..62053ce4d4d 100644 --- a/server/sonar-web/src/main/js/app/theme.js +++ b/server/sonar-web/src/main/js/app/theme.js @@ -64,6 +64,10 @@ module.exports = { snippetFontColor: '#f0f0f0', + //issues + issueBgColor: '#ffeaea', + hotspotBgColor: '#eeeff4', + // alerts warningIconColor: '#e2bf41', |