Milligram: dropwdown with multiple options is not fully usable

Created on 9 May 2018  ·  3Comments  ·  Source: milligram/milligram

I'm using Milligram including directly the css from:

 "//fonts.googleapis.com/css?family=Roboto:300,300italic,700,700italic",
 "//cdn.rawgit.com/necolas/normalize.css/master/normalize.css",
 "//cdn.rawgit.com/milligram/milligram/master/dist/milligram.min.css"

So far I'm loving this library but I've noticed a small issue with <select>. The normal case works fine but the case accepting multiple options, i.e. <select multiple>, looks very crowded and hard to use:

multiple

Hacktoberfest new feature

Most helpful comment

possible solution; just add:

select[multiple] {
  height: auto;
  background: none;
}

to your .css

All 3 comments

possible solution; just add:

select[multiple] {
  height: auto;
  background: none;
}

to your .css

@marcusasplund wouldn't be good to add it on a pr?

@marcusasplund @schirrel Good call 🚀

Was this page helpful?
0 / 5 - 0 ratings