diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2015-08-13 12:19:51 +0200 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2015-08-13 12:19:51 +0200 |
commit | 81af0278a57bc0b2801bcd4962a87c62ad197b36 (patch) | |
tree | 99907df75450e538d3d54015c2c62c545b4a5d13 | |
parent | 91e29d47a06b3f5c7dd48bd19447a639b3b7de4c (diff) | |
download | sonarqube-81af0278a57bc0b2801bcd4962a87c62ad197b36.tar.gz sonarqube-81af0278a57bc0b2801bcd4962a87c62ad197b36.zip |
SONAR-6765 update the style of issue location message
-rw-r--r-- | server/sonar-web/src/main/less/components/source.less | 20 |
1 files changed, 4 insertions, 16 deletions
diff --git a/server/sonar-web/src/main/less/components/source.less b/server/sonar-web/src/main/less/components/source.less index 24f587f1ea5..bddf7ae5786 100644 --- a/server/sonar-web/src/main/less/components/source.less +++ b/server/sonar-web/src/main/less/components/source.less @@ -455,27 +455,15 @@ .source-viewer-flow-location { position: absolute; top: 0; - right: 0; - line-height: @source-line-height - 2px; - margin: 1px 0; + right: 10px; + height: @source-line-height - 1px; + line-height: @source-line-height - 1px; padding: 0 10px; + border-radius: 3px; background-color: @red; color: #fff; font-size: 12px; z-index: @issue-flow-location-z-index; - - &:before { - @arrow-size: (@source-line-height - 2px) / 2; - content: " "; - position: absolute; - top: 0; - right: 100%; - display: block; - .square(0); - border-top: @arrow-size solid transparent; - border-bottom: @arrow-size solid transparent; - border-right: @arrow-size solid @red; - } } .source-viewer-flow-location + .source-viewer-flow-location { |