blob: 429166121edd5200982b0d748933715ec78d0a80 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
.ckeditor5-toolbar-button-divider {
background-image: url(../icons/divider.svg);
}
.ckeditor5-toolbar-button-wrapping {
background-image: url(../icons/separator.svg);
}
.ckeditor5-toolbar-button-undo {
background-image: url(../icons/undo.svg);
}
.ckeditor5-toolbar-button-redo {
background-image: url(../icons/redo.svg);
}
.ckeditor5-toolbar-button-heading {
display: flex;
align-items: center;
justify-content: space-between;
width: 100px;
color: #000;
}
.ckeditor5-toolbar-button-heading::before {
margin-left: 10px;
/* For browsers which don't support alt content, eg FireFox */
content: "Heading";
content: "Heading" / "";
font-size: 14px;
}
[dir="rtl"] .ckeditor5-toolbar-button-heading::before {
margin-right: 10px;
margin-left: 0;
}
.ckeditor5-toolbar-button-heading::after {
display: inline-block;
width: 7px;
height: 7px;
margin-right: 10px;
content: "";
transform: rotate(135deg);
border-width: 2px 2px 0 0;
border-style: solid;
}
[dir="rtl"] .ckeditor5-toolbar-button-heading::after {
margin-right: 0;
margin-left: 10px;
}
|