Browse Source

SONAR-12504 More consistent color for selected secondary locations badges

tags/8.0
Grégoire Aubert 4 years ago
parent
commit
e12bb8ee4e

+ 1
- 0
server/sonar-web/src/main/js/app/theme.js View File

@@ -39,6 +39,7 @@ module.exports = {
purple: '#9139d4',

conciseIssueRed: '#d18582',
conciseIssueRedSelected: '#a4030f',

gray94: '#efefef',
gray80: '#cdcdcd',

+ 2
- 2
server/sonar-web/src/main/js/components/common/LocationIndex.css View File

@@ -25,7 +25,7 @@
padding-left: 6px;
padding-right: 6px;
border-radius: 2px;
background-color: #d18582;
background-color: var(--conciseIssueRed);
color: #fff;
font-family: var(--baseFontFamily);
font-size: var(--smallFontSize);
@@ -34,7 +34,7 @@
}

.location-index.selected {
background-color: #8f3030;
background-color: var(--conciseIssueRedSelected);
}

.location-index.muted {

Loading…
Cancel
Save