diff options
author | Wouter Admiraal <wouter.admiraal@sonarsource.com> | 2022-08-03 15:58:28 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2022-08-04 20:03:08 +0000 |
commit | 30b4940d3567dfa3fc4502f11018d1a348ed3779 (patch) | |
tree | 7a7a18a6ec00c5c2c8c8c9b1e0a29a26f49482d1 | |
parent | 1afdf6868b618a06fd95d2e713491c30d6b8c6d8 (diff) | |
download | sonarqube-30b4940d3567dfa3fc4502f11018d1a348ed3779.tar.gz sonarqube-30b4940d3567dfa3fc4502f11018d1a348ed3779.zip |
SONAR-16760 [893166] Focus indicator is missing
-rw-r--r-- | server/sonar-web/src/main/js/app/styles/init/base.css | 4 |
1 files changed, 4 insertions, 0 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 8a56cbe7b5d..79a225a83d5 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 @@ -24,6 +24,10 @@ padding: 0; } +*:focus-visible { + outline: 2px dotted var(--blue); +} + html, body { background-color: var(--barBackgroundColor); |