Skip to content

Commit d74dee5

Browse files
committed
fixing multi select on chromium ubuntu by setting background color explicitly
1 parent 088a9ef commit d74dee5

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

bootstrap.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* http://www.apache.org/licenses/LICENSE-2.0
77
*
88
* Designed and built with all the love in the world @twitter by @mdo and @fat.
9-
* Date: Tue Oct 4 00:58:05 PDT 2011
9+
* Date: Tue Oct 4 01:16:04 PDT 2011
1010
*/
1111
/* Reset.less
1212
* 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).
@@ -677,6 +677,7 @@ select, input[type=file] {
677677
}
678678
select[multiple] {
679679
height: inherit;
680+
background-color: #ffffff;
680681
}
681682
textarea {
682683
height: auto;

bootstrap.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/forms.less

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ input[type=file] {
114114
// Make multiple select elements height not fixed
115115
select[multiple] {
116116
height: inherit;
117+
background-color: @white; // Fixes Chromium bug of unreadable items
117118
}
118119

119120
textarea {

0 commit comments

Comments
 (0)