This repository was archived by the owner on Jul 30, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcustom-toolbar.css
More file actions
115 lines (95 loc) · 2.85 KB
/
custom-toolbar.css
File metadata and controls
115 lines (95 loc) · 2.85 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
.e-rte-custom-tbar-section #special_char,
.e-rte-custom-tbar-section .char_block {
display: inline-block;
}
#custom_tbar,
#custom_tbar div{
cursor: pointer;
}
#rteSpecial_char {
padding: 15px 0 15px 0;
}
.material .e-rte-custom-tbar-section .char_block.e-active {
outline: 1px solid #e3165b;
border-color: #e3165b;
}
.fabric .e-rte-custom-tbar-section .char_block.e-active {
outline: 1px solid #0078d6;
border-color: #0078d6;
}
.bootstrap .e-rte-custom-tbar-section .char_block.e-active {
outline: 1px solid #317ab9;
border-color: #317ab9;
}
.highcontrast .e-rte-custom-tbar-section .char_block.e-active {
outline: 1px solid #ffd939;
border-color: #ffd939;
}
.fabric.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text,
.highcontrast.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text {
padding-right: 10px;
}
.bootstrap.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text,
.bootstrap .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text {
padding-right: 6px;
}
.fabric .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text,
.highcontrast .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text {
padding-right: 8px;
}
.e-rte-custom-tbar-section .char_block {
width: 30px;
height: 30px;
line-height: 30px;
margin: 0 5px 5px 0;
text-align: center;
vertical-align: middle;
border: 1px solid #DDDDDD;
font-size: 20px;
cursor: pointer;
user-select: none;
}
#rteSection {
height: 500px;
}
#rteCustomTool .e-richtexteditor .e-rte-content .e-content {
float: left;
width: 100%;
}
#rteCustomTool {
overflow: hidden;
}
#rteCustomTool .content-wrapper {
width: auto;
margin: 0;
}
#custom_tbar div{
font-size: 16px;
}
.e-bigger #custom_tbar div{
font-size: 18px;
}
@media (min-width: 320px) and (max-width: 480px) {
.fabric.e-bigger #customTbarDlg {
min-width: 281px;
}
.fabric #customTbarDlg {
min-width: 241px;
}
.bootstrap.e-bigger #customTbarDlg,
.bootstrap #customTbarDlg {
min-width: 223px;
}
.highcontrast.e-bigger #customTbarDlg {
min-width: 283px;
}
.highcontrast #customTbarDlg {
min-width: 243px;
}
.material #customTbarDlg {
min-width: 224px;
}
.material.e-bigger #customTbarDlg {
min-width: 236px;
}
}