diff options
Diffstat (limited to 'server/sonar-web/src/main/js/components/controls/react-select.css')
-rw-r--r-- | server/sonar-web/src/main/js/components/controls/react-select.css | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/server/sonar-web/src/main/js/components/controls/react-select.css b/server/sonar-web/src/main/js/components/controls/react-select.css index a8bc7eac879..bac1d66a0b8 100644 --- a/server/sonar-web/src/main/js/components/controls/react-select.css +++ b/server/sonar-web/src/main/js/components/controls/react-select.css @@ -33,16 +33,22 @@ } .Select.is-disabled > .Select-control { - background-color: #f9f9f9; + background-color: var(--disableGrayBg) !important; + border-color: var(--disableGrayBorder) !important; } .Select.is-disabled > .Select-control:hover { - box-shadow: none; + box-shadow: none !important; } .Select.is-disabled .Select-arrow-zone { - cursor: default; - pointer-events: none; + cursor: not-allowed !important; + pointer-events: none !important; +} + +.Select.is-disabled .Select-placeholder, +.Select.is-disabled .Select-value { + color: var(--disableGrayText) !important; } .Select-control { |