2ab5fbbb24
Par conséquent on commence à remplacer d'anciens "liens-boutons" (qui auraient récupéré un souligné indésirable), par un vrai boutton dsfr. Le hack fr-underlined n'est aussi plus nécessaire.
38 lines
714 B
SCSS
38 lines
714 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 not supporting "appearance: auto" on inputs
|
|
// scss-lint:disable DuplicateProperty
|
|
input[type="checkbox"] {
|
|
-moz-appearance: checkbox;
|
|
-moz-appearance: auto;
|
|
}
|
|
|
|
input[type="radio"] {
|
|
-moz-appearance: radio;
|
|
-moz-appearance: auto;
|
|
}
|
|
// scss-lint:enable DuplicateProperty
|
|
|
|
// remove pointer cursor on textarea
|
|
textarea {
|
|
cursor: auto;
|
|
}
|
|
|
|
fieldset {
|
|
border: 0;
|
|
padding-left: 0;
|
|
padding-bottom: 0;
|
|
}
|