Browse Source

Fixed select element appearance in firefox

master
Hedgehog 10 years ago
parent
commit
a58f06a47d
  1. 39
      css/style.css

39
css/style.css

@ -1538,27 +1538,28 @@ input.userMenu-search-field:focus::-ms-input-placeholder {
background: #fff; background: #fff;
transition: background-color 100ms linear; transition: background-color 100ms linear;
} }
.login .module select, .optionsPage select{ @media screen and (-webkit-min-device-pixel-ratio:0) {
height: 30px; .login .module select, .optionsPage select{
font: 13px/24px "Open sans"; height: 30px;
text-align: center; font: 13px/24px "Open sans";
padding: 3px 30px 3px 10px; text-align: center;
margin: 0; padding: 3px 30px 3px 10px;
background: #fff url(../img/form-arrow-down-black.png) no-repeat right center; margin: 0;
border: 1px solid #ccc; background: #fff url(../img/form-arrow-down-black.png) no-repeat right center;
-webkit-border-radius: 4px; border: 1px solid #ccc;
-moz-border-radius: 4px; -webkit-border-radius: 4px;
border-radius: 4px; -moz-border-radius: 4px;
border-radius: 4px;
/* hide default apperance select element and arrow in firefox */ /* hide default apperance select element and arrow in firefox */
-webkit-appearance:none; -webkit-appearance:none;
-moz-appearance:none; -moz-appearance:none;
appearance:none; appearance:none;
text-indent: 0.01px; text-indent: 0.01px;
text-overflow: ''; text-overflow: '';
/* end */ /* end */
}
} }
.login .module span.availability { .login .module span.availability {
margin-left: 10px; margin-left: 10px;
font: italic 16px "Open sans"; font: italic 16px "Open sans";

Loading…
Cancel
Save