blob: 8db1109e328cbd5ef91f6e35d227bcea4b1e580e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
.ckeditor5-toolbar-button-bold {
background-image: url(../icons/bold.svg);
}
.ckeditor5-toolbar-button-italic {
background-image: url(../icons/italic.svg);
}
.ckeditor5-toolbar-button-underline {
background-image: url(../icons/underline.svg);
}
.ckeditor5-toolbar-button-code {
background-image: url(../icons/code.svg);
}
.ckeditor5-toolbar-button-strikethrough {
background-image: url(../icons/strikethrough.svg);
}
.ckeditor5-toolbar-button-subscript {
background-image: url(../icons/subscript.svg);
}
.ckeditor5-toolbar-button-superscript {
background-image: url(../icons/superscript.svg);
}
|