diff options
author | Revanshu Paliwal <revanshu.paliwal@sonarsource.com> | 2022-11-01 16:22:22 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2022-11-04 20:03:11 +0000 |
commit | 910b43f5a002352292f2159f93928dc56e7b1b99 (patch) | |
tree | 06febe7ac6f7d06675a97f6c24c8ae76ec384fc4 | |
parent | 0be0c1cc73b4012b82314713d17d1fc812c7e4d4 (diff) | |
download | sonarqube-910b43f5a002352292f2159f93928dc56e7b1b99.tar.gz sonarqube-910b43f5a002352292f2159f93928dc56e7b1b99.zip |
SONAR-17494 Apply the new accessible style to old links
-rw-r--r-- | server/sonar-web/src/main/js/components/controls/buttons.css | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/components/controls/buttons.css b/server/sonar-web/src/main/js/components/controls/buttons.css index aa468fb4648..8a22524a6ce 100644 --- a/server/sonar-web/src/main/js/components/controls/buttons.css +++ b/server/sonar-web/src/main/js/components/controls/buttons.css @@ -125,7 +125,7 @@ border-radius: 0; background: transparent; color: var(--darkBlue); - border-bottom: 1px solid var(--lightBlue); + border-bottom: 1px solid var(--primarya40); font-weight: 400; font-size: inherit; transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, border-bottom 0.2s ease; @@ -137,7 +137,8 @@ .button-link:hover { background: transparent; - color: var(--blue); + color: var(--darkBlue); + border-bottom-color: var(--primary); } .button-link.disabled { |