Skip to content

Commit

Permalink
fixing multi select on chromium ubuntu by setting background color ex…
Browse files Browse the repository at this point in the history
…plicitly
  • Loading branch information
mdo committed Oct 4, 2011
1 parent 088a9ef commit d74dee5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion bootstrap.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* http://www.apache.org/licenses/LICENSE-2.0
*
* Designed and built with all the love in the world @twitter by @mdo and @fat.
* Date: Tue Oct 4 00:58:05 PDT 2011
* Date: Tue Oct 4 01:16:04 PDT 2011
*/
/* Reset.less
* Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc).
Expand Down Expand Up @@ -677,6 +677,7 @@ select, input[type=file] {
}
select[multiple] {
height: inherit;
background-color: #ffffff;
}
textarea {
height: auto;
Expand Down
2 changes: 1 addition & 1 deletion bootstrap.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions lib/forms.less
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ input[type=file] {
// Make multiple select elements height not fixed
select[multiple] {
height: inherit;
background-color: @white; // Fixes Chromium bug of unreadable items
}

textarea {
Expand Down

0 comments on commit d74dee5

Please sign in to comment.