45 lines
938 B
SCSS
45 lines
938 B
SCSS
@import "colors";
|
|
|
|
// override default transparent background on inputs & font-size to 16px by default
|
|
input,
|
|
textarea,
|
|
select {
|
|
background: $white;
|
|
font-size: 1em;
|
|
}
|
|
|
|
// with Marianne font, weight of font is less bolder, so bold it up
|
|
.button.primary {
|
|
font-weight: bold;
|
|
}
|
|
|
|
// Fix firefox < 80, Safari < 15.4, Chrome < 83 not supporting "appearance: auto" on inputs
|
|
// This rule was set by DSFR for DSFR design, but broke our legacy forms.
|
|
// scss-lint:disable DuplicateProperty
|
|
input[type="checkbox"] {
|
|
-moz-appearance: checkbox;
|
|
-moz-appearance: auto;
|
|
|
|
-webkit-appearance: checkbox;
|
|
-webkit-appearance: auto;
|
|
}
|
|
|
|
input[type="radio"] {
|
|
-moz-appearance: radio;
|
|
-moz-appearance: auto;
|
|
|
|
-webkit-appearance: radio;
|
|
-webkit-appearance: auto;
|
|
}
|
|
// scss-lint:enable DuplicateProperty
|
|
|
|
// remove pointer cursor on textarea
|
|
textarea {
|
|
cursor: auto;
|
|
}
|
|
|
|
fieldset {
|
|
border: none;
|
|
padding-left: 0;
|
|
padding-bottom: 0;
|
|
}
|