correctif(liste-numerotés): surcharge le style des listes numéroté du DSFR qui empechent l'usage que peuvent en faire nos usagers
This commit is contained in:
parent
2daee794bc
commit
fe712d6659
3 changed files with 12 additions and 2 deletions
|
@ -150,7 +150,7 @@ linters:
|
||||||
properties: {}
|
properties: {}
|
||||||
|
|
||||||
PseudoElement:
|
PseudoElement:
|
||||||
enabled: true
|
enabled: false # otherwise rules on ::marker fails
|
||||||
|
|
||||||
# To enable later
|
# To enable later
|
||||||
QualifyingElement:
|
QualifyingElement:
|
||||||
|
|
|
@ -1,5 +1,15 @@
|
||||||
@import "colors";
|
@import "colors";
|
||||||
|
|
||||||
|
// overwrite DSFR style for SimpleFormatComponent, some user use markdown with
|
||||||
|
// ordered list having paragraph between list item
|
||||||
|
.fr-ol-content--override {
|
||||||
|
list-style-type: decimal;
|
||||||
|
|
||||||
|
li::marker {
|
||||||
|
content: inherit;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// override default transparent background on inputs & font-size to 16px by default
|
// override default transparent background on inputs & font-size to 16px by default
|
||||||
input,
|
input,
|
||||||
textarea,
|
textarea,
|
||||||
|
|
|
@ -51,7 +51,7 @@ class SimpleFormatComponent < ApplicationComponent
|
||||||
end.join.lstrip
|
end.join.lstrip
|
||||||
|
|
||||||
@renderer = Redcarpet::Markdown.new(
|
@renderer = Redcarpet::Markdown.new(
|
||||||
Redcarpet::BareRenderer.new(class_names_map:),
|
Redcarpet::BareRenderer.new(class_names_map: { list: 'fr-ol-content--override' }),
|
||||||
REDCARPET_EXTENSIONS.merge(autolink: @allow_a)
|
REDCARPET_EXTENSIONS.merge(autolink: @allow_a)
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue