Skip to content

Commit

Permalink
Removes min-width for Firefox 4+
Browse files Browse the repository at this point in the history
  • Loading branch information
zachleat committed Mar 1, 2016
1 parent 51d4efd commit 71eca0a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/select-css-compat.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@
min-width: 6em;
width: 130%;
/* Firefox 4-15 */
min-width: -moz-calc(0em);
width: -moz-calc(100% + 2.4em);
/* Firefox 16+ */
min-width: calc(0em);
width: calc(100% + 2.4em);
}

Expand Down

0 comments on commit 71eca0a

Please sign in to comment.