Skip to content

Commit

Permalink
fix #1273
Browse files Browse the repository at this point in the history
a width of < 0.5px was causing the HTML5 validation message to flicker
in Chrome
  • Loading branch information
caseyjhol committed Feb 17, 2016
1 parent c711c8c commit 201bd7e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion less/bootstrap-select.less
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ select.selectpicker {
bottom: 0;
left: 50%;
display: block !important;
width: 0.11px !important;
width: 0.5px !important;
height: 100% !important;
padding: 0 !important;
opacity: 0 !important;
Expand Down
2 changes: 1 addition & 1 deletion sass/bootstrap-select.scss
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ select.selectpicker {
bottom: 0;
left: 50%;
display: block !important;
width: 0.11px !important;
width: 0.5px !important;
height: 100% !important;
padding: 0 !important;
opacity: 0 !important;
Expand Down

0 comments on commit 201bd7e

Please sign in to comment.