xinyb
2024-03-12 a724cc9cb339f5ec0a13d5fae58e3edecfd6ff4b
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
@charset "utf-8";
 
.hide {
    display: none;
}
.margin-center{
    margin: 20px;
    /*width: 360px;*/
}
.flex{
    display: flex;
}
.flex-jc-around{
    justify-content: space-around;
}
.flex-jc-between{
    justify-content: space-between;
}
.flex-ai-center{
    align-items: center;
}
.flex-jc-center{
    justify-content: center;
}
.flex-column{
    flex-direction: column;
}
.flex-row{
    flex-direction: row;
}
.flex-1{
    flex: 1;
}
/*修改layer默认样式*/
.text-edit-layer .layui-layer.layui-layer-page{
    border-radius: 20px;
}
.text-edit-layer .layui-input-inline{
    max-width: 220px;
    flex: 1;
}
.font-row .layui-input-inline{
    max-width: 160px;
}
.layui-form-item .layui-input-inline{
    margin: 0;
}
/*.layui-form-item .font-input{*/
/*    width: 200px;*/
/*}*/
 
.layui-form-item .font-size-input{
    width: 120px; 
}
.text-edit-layer .layui-form-select .layui-input{
    background-color: #f2f5fa;
    border-color: #f2f5fa;
    color: #333;
    border-width: 5px;
}
.text-edit-layer .layui-form-item:after{
    content: none;
}
.layui-icon.layui-icon-ok{
    display: none;
}
.layui-form-item .layui-form-checkbox{
    margin: 0;
    padding: 0;
}
.text-edit-layer .layui-form-label{
    text-align: left;
}
 
.color-input dd{
    color: #fff;
    text-shadow: 0.5px 0.5px 1px #333;
}
.text-edit-layer .layui-form-select .layui-input{
    text-shadow: 0.5px 0.5px 1px #fff;
}
.layui-form-select dl dd.layui-this{
    text-shadow: 0.5px 0.5px 1px #fff;
    color: #333;
}
.color-input .layui-form-select dl dd.layui-select-tips{
    /*color: #333;*/
    text-shadow: none;
}
.text-edit-layer .layui-form-checkbox>div{
    padding: 0 7px;
    background-color: transparent;
    display: flex;
    align-items: center;
}
.text-edit-layer .layui-form-checkbox{
    background-color: transparent;
    display: flex;
    height: 34px;
    line-height: 34px;
}
.text-edit-layer .layui-form-checked, .text-edit-layer .layui-form-checked:hover{
    background-color: #fff;
}
.text-edit-layer .layui-form-checkbox:hover{
    background-color: #fff;
}
 
.text-edit-layer .layui-icon{
    font-size: 20px;
    color: #333;
}
.layui-icon.layui-icon-fonts-del{
    font-size: 24px;
}
.layui-input:focus, .layui-textarea:focus{
    border-color: #f2f5fa!important;
    box-shadow: none;
}
 
 
.layui-edge.layui-icon-down {
    top: 14px;
    border-width: 0;
    width: 16px;
    height: 22px;
    font-size: 16px;
}
 
.text-edit-layer .layui-form-select dl.last-select{
    max-height: 260px;
}
 
 
/**/
.text-edit-header{
    padding: 20px 20px;
    border-bottom: 1px solid #e6e6e6;
    height: 100px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.text-edit-preview-div{
    flex: 1;
    max-width: 340px;
    /*height: 100%;*/
    overflow: auto;
    white-space: nowrap;
    /*text-overflow: ellipsis;*/
    position: relative;
    /*display: flex;*/
    /*align-items: center;*/
    text-align: center;
}
.text-edit-preview{
    border-width: 0px;
    display: inline-block;
}
.desc{
    width: 40px;
    font-size: 16px;
}
 
.text-edit-container-content{
    /*overflow: hidden;*/
}
.layui-layer ::-webkit-scrollbar {
    /*width: 0; !* 隐藏滚动条 *!*/
}
 
.text-edit-layer *::-webkit-scrollbar{/*滚动条整体样式*/
    width: 6px;     /*高宽分别对应横竖滚动条的尺寸*/
    height: 6px;
}
 
.text-edit-layer *::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.1);
    background: #9a9a9a;
}
 
.text-edit-layer *::-webkit-scrollbar-track {/*滚动条里面轨道*/
    background: transparent;
}
.font-style-row,.border-style-row{
    background-color: #f2f5fa;
    padding: 8px;
}
.border-style-row{
    width: 300px;
    /*font-weight: bold;*/
}
.border-style-row .iconfont,.font-style-checkbox .iconfont{
    font-size: 22px;
    color: #000;
}
/*样式结果部分*/
.css-result-title{
    padding-bottom:15px;
    border-bottom: 1px solid #e6e6e6;
    box-sizing: border-box;
}
.css-result-container{
    padding-bottom: 15px;
}
.css-result{
    padding: 15px 0px;
    box-sizing: border-box;
    height: 150px;
    font-size: 15px;
    color: #333;
    overflow-y: auto;
}