[Frontend Bug] Fixed CSS for selects to correct Firefox display problem

WTD-954
This commit is contained in:
Charles Hacskaylo
2015-03-05 12:43:48 -08:00
parent 93debb4abe
commit 1304084f7a
3 changed files with 21 additions and 6 deletions

View File

@@ -3,6 +3,7 @@
cursor: pointer;
display: inline-block;
margin: 0 0 2px 2px; // Needed to avoid dropshadow from being clipped by parent containers
overflow: hidden;
position: relative;
select {
@include appearance(none);
@@ -12,6 +13,10 @@
border: none !important;
cursor: pointer;
padding: 4px 25px 2px 5px;
width: 120%;
option {
margin: $interiorMargin 0; // Firefox
}
}
&:after {
color: $colorKey;