TYPO3 rich text editor: block styles for lists

raw

pagets-rte.ts

1
2
3
4
RTE.default.buttons.blockstyle.tags.ul.allowedClasses = with-list-points
RTE.default.buttons.blockstyle.tags.ol.allowedClasses = with-list-points
RTE.default.proc.allowedClasses = ... ,with-list-points
 
raw

style.css

1
2
3
4
5
6
7
8
9
ul.with-list-points {
    color: grey;
    list-style-type: circle;
}
 
ol.with-list-points {
    color: grey;
    list-style-type: square;
} 
Christian Weiske Christian Weiske
owner

History