appearance and user-select cleaning
This commit is contained in:
parent
82851601b7
commit
4f702ecfa1
5 changed files with 8 additions and 19 deletions
|
@ -1937,9 +1937,8 @@ textarea {
|
||||||
transition-property: box-shadow, background-color, color, border;
|
transition-property: box-shadow, background-color, color, border;
|
||||||
transition-property: box-shadow, background-color, color, border, -webkit-box-shadow;
|
transition-property: box-shadow, background-color, color, border, -webkit-box-shadow;
|
||||||
-webkit-appearance: none;
|
-webkit-appearance: none;
|
||||||
-moz-appearance: none;
|
-moz-appearance: none;
|
||||||
-ms-appearance: none;
|
appearance: none;
|
||||||
appearance: none;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
[type="submit"] {
|
[type="submit"] {
|
||||||
|
@ -2012,9 +2011,9 @@ button, .btn--primary,
|
||||||
padding: 1rem 1.5rem;
|
padding: 1rem 1.5rem;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
-ms-user-select: none;
|
-ms-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
-webkit-transition: 0.25s;
|
-webkit-transition: 0.25s;
|
||||||
transition: 0.25s;
|
transition: 0.25s;
|
||||||
-webkit-transition-property: background-color, color, border, -webkit-box-shadow;
|
-webkit-transition-property: background-color, color, border, -webkit-box-shadow;
|
||||||
|
@ -2273,9 +2272,8 @@ button:focus {
|
||||||
.checkbox,
|
.checkbox,
|
||||||
.radio {
|
.radio {
|
||||||
-webkit-appearance: none;
|
-webkit-appearance: none;
|
||||||
-moz-appearance: none;
|
-moz-appearance: none;
|
||||||
-ms-appearance: none;
|
appearance: none;
|
||||||
appearance: none;
|
|
||||||
vertical-align: text-bottom;
|
vertical-align: text-bottom;
|
||||||
outline: 0;
|
outline: 0;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -8,9 +8,6 @@
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
padding: $small-value $small-plus-value;
|
padding: $small-value $small-plus-value;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
-webkit-user-select: none;
|
|
||||||
-moz-user-select: none;
|
|
||||||
-ms-user-select: none;
|
|
||||||
user-select: none;
|
user-select: none;
|
||||||
transition: 0.25s;
|
transition: 0.25s;
|
||||||
transition-property: box-shadow, background-color, color, border;
|
transition-property: box-shadow, background-color, color, border;
|
||||||
|
|
|
@ -12,9 +12,6 @@
|
||||||
.switch,
|
.switch,
|
||||||
.checkbox,
|
.checkbox,
|
||||||
.radio {
|
.radio {
|
||||||
-webkit-appearance: none;
|
|
||||||
-moz-appearance: none;
|
|
||||||
-ms-appearance: none;
|
|
||||||
appearance: none;
|
appearance: none;
|
||||||
vertical-align: text-bottom;
|
vertical-align: text-bottom;
|
||||||
outline: 0;
|
outline: 0;
|
||||||
|
|
|
@ -51,9 +51,6 @@ textarea {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
transition: 0.25s;
|
transition: 0.25s;
|
||||||
transition-property: box-shadow, background-color, color, border;
|
transition-property: box-shadow, background-color, color, border;
|
||||||
-webkit-appearance: none;
|
|
||||||
-moz-appearance: none;
|
|
||||||
-ms-appearance: none;
|
|
||||||
appearance: none;
|
appearance: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue