diff options
author | Stas Vilchik <stas-vilchik@users.noreply.github.com> | 2017-03-07 09:08:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-07 09:08:11 +0100 |
commit | b03c9e1d4d673a994da1a37b55b4d64c4df03d26 (patch) | |
tree | 84a3552ec29af449bc99bc48101579fc87be03dc /server/sonar-web/src/main/less/components | |
parent | f3c798e5ec60ba64594a906eaee45d52b7f46f76 (diff) | |
download | sonarqube-b03c9e1d4d673a994da1a37b55b4d64c4df03d26.tar.gz sonarqube-b03c9e1d4d673a994da1a37b55b4d64c4df03d26.zip |
MMF-703 More efficient UX for issue multiple locations (#1749)
Diffstat (limited to 'server/sonar-web/src/main/less/components')
-rw-r--r-- | server/sonar-web/src/main/less/components/source.less | 16 | ||||
-rw-r--r-- | server/sonar-web/src/main/less/components/ui.less | 5 |
2 files changed, 2 insertions, 19 deletions
diff --git a/server/sonar-web/src/main/less/components/source.less b/server/sonar-web/src/main/less/components/source.less index 9a89d87959a..07485b239d2 100644 --- a/server/sonar-web/src/main/less/components/source.less +++ b/server/sonar-web/src/main/less/components/source.less @@ -127,15 +127,6 @@ background-position: bottom; } -.source-line-code-secondary-issue { - display: inline-block; - background-color: @issueBackgroundColor; - - &.highlighted { - background-color: mix(#B3D4FF, @issueBackgroundColor, 40%); - } -} - .source-meta { vertical-align: top; width: 1px; @@ -461,14 +452,8 @@ } .source-viewer-issue-location { - float: right; max-width: 200px; - height: @source-line-height - 1px; - line-height: @source-line-height - 1px; margin-right: 10px; - padding: 0 10px; - background-color: #ffeaea; - font-size: 12px; .text-ellipsis; } @@ -479,7 +464,6 @@ .source-line-issue-locations { float: right; margin-right: -10px; - padding-bottom: 1px; &:empty { display: none; diff --git a/server/sonar-web/src/main/less/components/ui.less b/server/sonar-web/src/main/less/components/ui.less index a0a852de9ad..357e37ebb9f 100644 --- a/server/sonar-web/src/main/less/components/ui.less +++ b/server/sonar-web/src/main/less/components/ui.less @@ -95,7 +95,7 @@ display: inline-block; min-width: 24px; height: 24px; - line-height: 24px; + line-height: 21px; padding: 0 4px; box-sizing: border-box; border: 1px solid #ccc; @@ -103,8 +103,7 @@ background-image: linear-gradient(to bottom, #f5f5f5, #eee); box-shadow: inset 0 1px 0 #fff, 0 1px 0 #ccc; color: @secondFontColor; - font-size: @baseFontSize; - font-weight: 600; + font-size: 11px; text-align: center; } |