// We use this mixin to style select elements
@mixin form-select {
-webkit-appearance: none !important;
- -webkit-border-radius: 0px;
+ border-radius: 0px;
background-color: $select-bg-color;
// Hide the dropdown arrow shown in newer IE versions
/* We use this to get basic styling on all basic form elements */
#{text-inputs(all, 'input')} {
-webkit-appearance: none;
- -webkit-border-radius: 0px;
+ border-radius: 0px;
@include form-element;
@if $input-include-glowing-effect == false {
@include single-transition(all, 0.15s, linear);
input[type="submit"] {
-webkit-appearance: none;
- -webkit-border-radius: 0px;
+ border-radius: 0px;
}
/* Respect enforced amount of rows for textarea */