platform specific styling to inputs and select are removed

This commit is contained in:
Gaelle Morin 2018-12-11 15:42:51 +01:00
parent 5a6b3f8398
commit c8564fb76c
2 changed files with 6 additions and 3 deletions

View File

@ -1,7 +1,7 @@
#offers-list > sib-form > form { #offers-list > sib-form > form {
border-bottom: 1px solid $color-grey1; border-bottom: 1px solid $color-grey1;
display: grid; display: grid;
grid-gap: 0px 24px; grid-gap: 0px 30px;
grid-template-columns: 33% auto; grid-template-columns: 33% auto;
padding-bottom: 3em; padding-bottom: 3em;
@ -25,8 +25,6 @@
padding: 0.5em 12.5em 0.5em 1em; padding: 0.5em 12.5em 0.5em 1em;
box-sizing: border-box; box-sizing: border-box;
-webkit-appearance: none;
-moz-appearance: none;
background-image: background-image:
linear-gradient(45deg, transparent 50%, $color-grey 50%), linear-gradient(45deg, transparent 50%, $color-grey 50%),

View File

@ -60,6 +60,11 @@ h4 {
font-size: 0.68em; font-size: 0.68em;
} }
input, select {
-webkit-appearance: none;
-moz-appearance: none;
}
.debug { .debug {
outline: 2px dotted red; outline: 2px dotted red;
} }