diff options
author | Pascal Mugnier <pascal.mugnier@sonarsource.com> | 2018-03-12 09:35:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-12 09:35:05 +0100 |
commit | 49fd8bb0901062db0ac8a2a4cdf7d550f732bf65 (patch) | |
tree | 90e7ccdd8dccac91450e41c73b547d10dd57c98e /server/sonar-web/src/main/js/apps/issues/styles.css | |
parent | 20712b86bfb6183c988c96a893bd67b5526a683b (diff) | |
download | sonarqube-49fd8bb0901062db0ac8a2a4cdf7d550f732bf65.tar.gz sonarqube-49fd8bb0901062db0ac8a2a4cdf7d550f732bf65.zip |
SONAR-10472 Hover effect on issue box is overflowing when dropdown open (#3134)
Diffstat (limited to 'server/sonar-web/src/main/js/apps/issues/styles.css')
-rw-r--r-- | server/sonar-web/src/main/js/apps/issues/styles.css | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/apps/issues/styles.css b/server/sonar-web/src/main/js/apps/issues/styles.css index e6ad09ee7ac..c4ceec2a97d 100644 --- a/server/sonar-web/src/main/js/apps/issues/styles.css +++ b/server/sonar-web/src/main/js/apps/issues/styles.css @@ -139,12 +139,17 @@ } .issues .issue { - outline: 1px dashed transparent; + border: 1px solid transparent; cursor: pointer; } .issues .issue:hover { - outline-color: #dd4040; + border: 1px dashed #dd4040; + transition: all 0.3s ease; +} + +.issues .issue:focus { + outline: none; } @media (max-width: 1320px) { |