Skip to content

Commit

Permalink
Reset select:disabled opacity for Chrome
Browse files Browse the repository at this point in the history
Fixes #33089
  • Loading branch information
mdo committed Feb 16, 2021
1 parent 8f0fb39 commit edd82eb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion scss/_reboot.scss
Original file line number Diff line number Diff line change
Expand Up @@ -420,12 +420,16 @@ textarea {
}

// Remove the inheritance of text transform in Firefox

button,
select {
text-transform: none;
}

// Undo the opacity change from Chrome
select:disabled {
opacity: 1;
}

// Set the cursor for non-`<button>` buttons
//
// Details at https://github.com/twbs/bootstrap/pull/30562
Expand Down

0 comments on commit edd82eb

Please sign in to comment.