rich-text.css
637 Bytes
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
.qx-rich-text-body {
color: #333;
font-size: 14px;
}
.qx-rich-text-body p {
margin-top: 10px;
margin-bottom: 10px;
}
.qx-rich-text-body ol {
list-style-type: decimal;
margin-block-start: 1em;
margin-block-end: 1em;
margin-inline-start: 0;
margin-inline-end: 0;
padding-inline-start: 40px;
}
.qx-rich-text-body ol ol {
margin-block-start: 0;
margin-block-end: 0;
}
.qx-rich-text-body ul {
list-style-type: disc;
padding-inline-start: 40px;
}
.qx-rich-text-body ul ul {
list-style-type: circle;
margin-block-start: 0;
margin-block-end: 0;
}
.qx-rich-text-body ul ul ul {
list-style-type: square;
}