blob: cb9997852bfd6d2dff7352c628d79f1677ea6063 (
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
|
.ckeditor5-toolbar-button-textPartLanguage {
display: flex;
align-items: center;
justify-content: space-between;
width: 110px;
color: #000;
}
.ckeditor5-toolbar-button-textPartLanguage::before {
margin-left: 10px;
/* For browsers which don't support alt content, eg FireFox */
content: "Language";
content: "Language" / "";
font-size: 14px;
}
[dir="rtl"] .ckeditor5-toolbar-button-textPartLanguage::before {
margin-right: 10px;
margin-left: 0;
}
.ckeditor5-toolbar-button-textPartLanguage::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-textPartLanguage::after {
margin-right: 0;
margin-left: 10px;
}
|