appearance and user-select cleaning

This commit is contained in:
Raphael Goetter 2017-09-27 16:00:07 +02:00
parent 82851601b7
commit 4f702ecfa1
5 changed files with 8 additions and 19 deletions

View File

@ -1938,7 +1938,6 @@ textarea {
transition-property: box-shadow, background-color, color, border, -webkit-box-shadow;
-webkit-appearance: none;
-moz-appearance: none;
-ms-appearance: none;
appearance: none;
}
@ -2274,7 +2273,6 @@ button:focus {
.radio {
-webkit-appearance: none;
-moz-appearance: none;
-ms-appearance: none;
appearance: none;
vertical-align: text-bottom;
outline: 0;

File diff suppressed because one or more lines are too long

View File

@ -8,9 +8,6 @@
display: inline-block;
padding: $small-value $small-plus-value;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
transition: 0.25s;
transition-property: box-shadow, background-color, color, border;

View File

@ -12,9 +12,6 @@
.switch,
.checkbox,
.radio {
-webkit-appearance: none;
-moz-appearance: none;
-ms-appearance: none;
appearance: none;
vertical-align: text-bottom;
outline: 0;

View File

@ -51,9 +51,6 @@ textarea {
margin: 0;
transition: 0.25s;
transition-property: box-shadow, background-color, color, border;
-webkit-appearance: none;
-moz-appearance: none;
-ms-appearance: none;
appearance: none;
}