Files
openfoodnetwork/app/webpacker/css/admin/trix.scss
Jean-Baptiste Bellet 34dab4003d Create a mixin that include list of styles for trix editor + content
Will be used elsewhere (in shopfront in particular)
2023-09-04 15:46:54 +02:00

31 lines
654 B
SCSS

trix-toolbar [data-trix-button-group="file-tools"] {
display: none;
}
trix-toolbar .trix-button--icon-hr::before {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 12h18v2H3z'/%3E%3C/svg%3E");
}
// Match the rendering into the shopfront (see ../darkswarm/)
trix-editor {
color: #222;
a {
color: #f27052; // Equivalent to text-angular a
}
@include trix-styles;
}
// Override app/webpacker/css/admin/shared/forms.scss#L81
.field trix-editor ul {
border-top: none;
list-style: disc;
padding-top: 0;
li {
padding-right: 0;
display: list-item;
}
}