padding: 0;
- -webkit-appearance: none;
- -moz-appearance: none;
+ appearance: none;
border: 0;
border-radius: $global-radius;
background: transparent;
height: $meter-height;
margin-bottom: 1rem;
- -webkit-appearance: none;
- -moz-appearance: none;
+ appearance: none;
@if has-value($meter-radius) {
border-radius: $meter-radius;
height: $progress-height;
margin-bottom: $progress-margin-bottom;
- -webkit-appearance: none;
- -moz-appearance: none;
+ appearance: none;
@if hasvalue($progress-radius) {
border-radius: $progress-radius;
margin-top: $margin;
margin-bottom: $margin;
- -webkit-appearance: none;
- -moz-appearance: none;
-
+ appearance: none;
border: 0;
line-height: 1;
cursor: pointer;
opacity: $slider-opacity-disabled;
}
+ // sass-lint:disable no-vendor-prefix
+
// Chrome/Safari
&::-webkit-slider-runnable-track {
height: $slider-height;
margin: 0 0 $form-spacing;
padding: ($form-spacing / 2);
- -webkit-appearance: none;
- -moz-appearance: none;
+ appearance: none;
border: $input-border;
border-radius: $select-radius;
background-color: $select-background;
#{text-inputs()},
textarea {
@include form-element;
- -webkit-appearance: none;
- -moz-appearance: none;
+ appearance: none;
}
// Text areas
// Reset styles on button-like inputs
[type='submit'],
[type='button'] {
- -webkit-appearance: none;
- -moz-appearance: none;
+ appearance: none;
border-radius: $form-button-radius;
}
// Number input styles
[type='number'] {
@if not $input-number-spinners {
- -moz-appearance: textfield;
+ -moz-appearance: textfield; // sass-lint:disable-line no-vendor-prefix
&::-webkit-inner-spin-button,
&::-webkit-outer-spin-button {
- -webkit-appearance: none;
+ -webkit-appearance: none; // sass-lint:disable-line no-vendor-prefix
margin: 0;
}
}