diff options
| author | Mark Otto <[email protected]> | 2016-05-08 14:20:54 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2016-05-08 14:20:54 -0700 |
| commit | 399fdb8ebe40a2563dcfc3fbf0e459c1889ee24e (patch) | |
| tree | 4f3af6eb533aebcdedf60541d3541a4b32f2128a /scss/_custom-forms.scss | |
| parent | 80341bf70975c8626ffe7f5d9b5037a3ba223462 (diff) | |
| parent | b21750cbb7af6bed960b709ae13f5e810bd32943 (diff) | |
| download | bootstrap-399fdb8ebe40a2563dcfc3fbf0e459c1889ee24e.tar.xz bootstrap-399fdb8ebe40a2563dcfc3fbf0e459c1889ee24e.zip | |
Merge pull request #19735 from MatthewRayfield/v4-custom-select-disabled-styling
Add disabled styling for .custom-select
Diffstat (limited to 'scss/_custom-forms.scss')
| -rw-r--r-- | scss/_custom-forms.scss | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scss/_custom-forms.scss b/scss/_custom-forms.scss index 8222a65b0..a5f0bdfc4 100644 --- a/scss/_custom-forms.scss +++ b/scss/_custom-forms.scss @@ -171,6 +171,12 @@ } } + &:disabled { + color: $custom-select-disabled-color; + cursor: $cursor-disabled; + background-color: $custom-select-disabled-bg; + } + // Hides the default caret in IE11 &::-ms-expand { opacity: 0; |
