aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Davis <jeremy.davis@sonarsource.com>2022-08-05 15:43:41 +0200
committersonartech <sonartech@sonarsource.com>2022-08-08 20:03:03 +0000
commitef13264ccbe3b9f03ceeaccab2b4366cb126bb24 (patch)
tree0f8f19ffa34babc5a4fb781f739f81ee3dc8d7e1
parentcac34d458c84e1412f8efa1c151798cfccc2985c (diff)
downloadsonarqube-ef13264ccbe3b9f03ceeaccab2b4366cb126bb24.tar.gz
sonarqube-ef13264ccbe3b9f03ceeaccab2b4366cb126bb24.zip
SONAR-16731 [891652] An icon lacks 3 to 1 contrast ratio
-rw-r--r--server/sonar-web/src/main/js/components/controls/SearchBox.css2
-rw-r--r--server/sonar-web/src/main/js/components/controls/Select.tsx2
2 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/components/controls/SearchBox.css b/server/sonar-web/src/main/js/components/controls/SearchBox.css
index 105c31ead18..25fbe9de8f6 100644
--- a/server/sonar-web/src/main/js/components/controls/SearchBox.css
+++ b/server/sonar-web/src/main/js/components/controls/SearchBox.css
@@ -77,7 +77,7 @@
position: absolute;
top: 4px;
left: 4px;
- color: var(--gray60);
+ color: var(--gray52);
transition: color 0.3s ease;
}
diff --git a/server/sonar-web/src/main/js/components/controls/Select.tsx b/server/sonar-web/src/main/js/components/controls/Select.tsx
index d6de185293f..bb80725f6e6 100644
--- a/server/sonar-web/src/main/js/components/controls/Select.tsx
+++ b/server/sonar-web/src/main/js/components/controls/Select.tsx
@@ -40,7 +40,7 @@ import { colors, others, sizes, zIndexes } from '../../app/theme';
import { ClearButton } from './buttons';
const ArrowSpan = styled.span`
- border-color: #999 transparent transparent;
+ border-color: ${colors.gray52} transparent transparent;
border-style: solid;
border-width: 4px 4px 2px;
display: inline-block;