diff options
author | Wouter Admiraal <wouter.admiraal@sonarsource.com> | 2022-09-13 11:31:44 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2022-09-15 20:03:03 +0000 |
commit | 33cfd7169e114513fc946796d4222f1be0b592f1 (patch) | |
tree | 2715fc31126f9bf08527708ab83d0b0baaf25504 /server/sonar-web/src/main/js/app | |
parent | 54d4643679ddb567c2c9c7bdfd86ba076954fa4c (diff) | |
download | sonarqube-33cfd7169e114513fc946796d4222f1be0b592f1.tar.gz sonarqube-33cfd7169e114513fc946796d4222f1be0b592f1.zip |
[NO JIRA] Fix focus color
Diffstat (limited to 'server/sonar-web/src/main/js/app')
-rw-r--r-- | server/sonar-web/src/main/js/app/styles/init/base.css | 2 | ||||
-rw-r--r-- | server/sonar-web/src/main/js/app/theme.js | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/app/styles/init/base.css b/server/sonar-web/src/main/js/app/styles/init/base.css index 0f3ed5eea43..f4fbf14f318 100644 --- a/server/sonar-web/src/main/js/app/styles/init/base.css +++ b/server/sonar-web/src/main/js/app/styles/init/base.css @@ -25,7 +25,7 @@ } *:focus-visible { - outline: 2px dotted var(--blue) !important; + outline: 2px dotted var(--primary400) !important; } html, diff --git a/server/sonar-web/src/main/js/app/theme.js b/server/sonar-web/src/main/js/app/theme.js index 4d8b86bdbf0..6bfe13d93b9 100644 --- a/server/sonar-web/src/main/js/app/theme.js +++ b/server/sonar-web/src/main/js/app/theme.js @@ -146,6 +146,7 @@ module.exports = { // value of the alpha channel. primary: '#236a97', primarya40: 'rgba(35, 107, 151, 0.40)', + primary400: '#297BAE', info500: '#0271B9', |