2022-09-01 16:29:39 +02:00
|
|
|
@import "colors";
|
|
|
|
// override default text underline of dsfr
|
2022-09-08 15:46:47 +02:00
|
|
|
body [href]:not([class^="fr-"]):not(.fr-footer__bottom-copy *) {
|
2022-08-31 14:49:53 +02:00
|
|
|
background-image: none;
|
|
|
|
}
|
2022-09-01 16:29:39 +02:00
|
|
|
|
|
|
|
// override default transparent background on inputs
|
|
|
|
input,
|
|
|
|
textarea,
|
|
|
|
select {
|
|
|
|
background: $white;
|
|
|
|
}
|
|
|
|
|
2022-09-08 15:46:47 +02:00
|
|
|
#footer a {
|
|
|
|
color: #333333;
|
|
|
|
}
|
2022-09-01 16:29:39 +02:00
|
|
|
// with Marianne font, weight of font is less bolder, so bold it up
|
|
|
|
.button.primary {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2022-09-07 19:00:56 +02:00
|
|
|
|
|
|
|
// 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
|
2022-09-09 12:07:10 +02:00
|
|
|
|
|
|
|
// remove pointer cursor on textarea
|
|
|
|
textarea {
|
|
|
|
cursor: auto;
|
|
|
|
}
|