tona-vite 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +50 -0
- package/dist/index.cjs +94 -0
- package/dist/index.d.cts +27 -0
- package/dist/index.d.cts.map +1 -0
- package/dist/index.d.mts +27 -0
- package/dist/index.d.mts.map +1 -0
- package/dist/index.mjs +69 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +62 -0
- package/public/css/atom-one-dark.css +96 -0
- package/public/css/atom-one-light.css +96 -0
- package/public/css/blog-common.min.css +5049 -0
- package/public/css/font-awesome-5.css +4586 -0
- package/public/css/mobile-common.min.css +226 -0
- package/public/images/1-20210309211744338-647771178.jpg +0 -0
- package/public/images/20.png +0 -0
- package/public/images/avatar-default.svg +1 -0
- package/public/images/bannerbar-aws-bg.png +0 -0
- package/public/images/cnblogs.png +0 -0
- package/public/images/default-avatar.png +0 -0
- package/public/images/downdown.gif +0 -0
- package/public/images/favicon.png +0 -0
- package/public/images/icon_addcomment.gif +0 -0
- package/public/images/icon_form.gif +0 -0
- package/public/images/icon_voice.gif +0 -0
- package/public/images/icon_weibo_24.png +0 -0
- package/public/images/lite-mode-check.svg +1 -0
- package/public/images/logo.gif +0 -0
- package/public/images/logo.svg +1 -0
- package/public/images/message.svg +4 -0
- package/public/images/myblog.svg +4 -0
- package/public/images/newpost.svg +4 -0
- package/public/images/search.svg +1 -0
- package/public/images/upup.gif +0 -0
- package/public/images/wechat.png +0 -0
- package/public/index.html +168 -0
- package/public/js/blog.common.min.js +15934 -0
- package/public/js/highlight.min.js +1488 -0
- package/public/js/highlightjs-line-numbers.min.js +134 -0
- package/public/js/jquery.min.js +4119 -0
- package/public/js/mockAPI.js +3 -0
- package/public/templates/catalog.html +842 -0
- package/public/templates/category.html +903 -0
- package/public/templates/home.html +962 -0
- package/public/templates/photos.html +898 -0
- package/public/templates/photoview.html +814 -0
- package/public/templates/post-markdown.html +2722 -0
- package/public/templates/post-tinymce.html +1891 -0
- package/public/templates/post-tinymce5.html +2304 -0
- package/public/templates/postarchive.html +1127 -0
- package/public/templates/tags.html +2281 -0
|
@@ -0,0 +1,5049 @@
|
|
|
1
|
+
.navbar a:link,.navbar a:active,.navbar a:visited {
|
|
2
|
+
color: #666;
|
|
3
|
+
text-decoration: none
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.navbar a:hover {
|
|
7
|
+
color: #666;
|
|
8
|
+
text-decoration: underline
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.navbar>nav .navbar-avatar {
|
|
12
|
+
border-radius: 50%
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.post-item .avatar {
|
|
16
|
+
border-radius: 0;
|
|
17
|
+
padding: 1px;
|
|
18
|
+
border: 1px solid #ccc;
|
|
19
|
+
float: left;
|
|
20
|
+
margin-right: 5px;
|
|
21
|
+
margin-top: 3px
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.dropdown {
|
|
25
|
+
display: inline-flex;
|
|
26
|
+
position: relative
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.dropdown .hidden {
|
|
30
|
+
display: none
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
@media screen and (min-width: 769px) {
|
|
34
|
+
.dropdown:hover .dropdown-menu.quick-search-menu {
|
|
35
|
+
max-height:0
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.dropdown:hover .dropdown-menu,.dropdown:focus-within .dropdown-menu.quick-search-menu {
|
|
39
|
+
max-height: 1000px;
|
|
40
|
+
z-index: 1000
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.dropdown:focus-within .focus-hidden {
|
|
44
|
+
display: none
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.dropdown:focus-within .focus-visible {
|
|
48
|
+
display: block
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.dropdown>.dropdown-button {
|
|
53
|
+
display: flex;
|
|
54
|
+
flex-direction: row;
|
|
55
|
+
align-items: center;
|
|
56
|
+
white-space: nowrap
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.dropdown>.dropdown-button>*:not(:first-child) {
|
|
60
|
+
margin-left: 10px
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.dropdown>.dropdown-menu {
|
|
64
|
+
padding-left: 10px;
|
|
65
|
+
padding-right: 10px;
|
|
66
|
+
-webkit-transition: all .5s ease,max-height .5s ease;
|
|
67
|
+
-o-transition: all .5s ease,max-height .5s ease;
|
|
68
|
+
transition: all .5s ease,max-height .5s ease;
|
|
69
|
+
max-height: 0;
|
|
70
|
+
overflow: hidden;
|
|
71
|
+
left: unset;
|
|
72
|
+
display: block;
|
|
73
|
+
position: absolute;
|
|
74
|
+
top: 100%;
|
|
75
|
+
border-radius: 5px;
|
|
76
|
+
min-width: 5em;
|
|
77
|
+
-webkit-box-shadow: 2px 2px 13px 0 rgba(212,212,212,.5);
|
|
78
|
+
box-shadow: 2px 2px 13px 0 rgba(212,212,212,.5);
|
|
79
|
+
background-color: #f9f9f9
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.dropdown>.dropdown-menu>*:not(:first-child) {
|
|
83
|
+
margin-top: 10px
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.dropdown>.dropdown-menu>* {
|
|
87
|
+
display: block
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.dropdown>.dropdown-menu>*:first-child {
|
|
91
|
+
margin-top: 10px
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.dropdown>.dropdown-menu>*:last-child {
|
|
95
|
+
margin-bottom: 10px
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.navbar {
|
|
99
|
+
display: flex;
|
|
100
|
+
flex-direction: column;
|
|
101
|
+
align-items: center;
|
|
102
|
+
background-color: #fff;
|
|
103
|
+
padding-left: 40px;
|
|
104
|
+
padding-right: 40px;
|
|
105
|
+
padding-top: 5px;
|
|
106
|
+
padding-bottom: 5px
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.navbar>.navbar-mobile {
|
|
110
|
+
display: none
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.navbar>nav {
|
|
114
|
+
display: flex;
|
|
115
|
+
font-size: 15px;
|
|
116
|
+
color: #666;
|
|
117
|
+
flex-direction: row;
|
|
118
|
+
flex-wrap: nowrap;
|
|
119
|
+
align-items: center;
|
|
120
|
+
justify-content: space-between;
|
|
121
|
+
width: 100%
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.navbar>nav .navbar-branding {
|
|
125
|
+
width: 80px;
|
|
126
|
+
flex-shrink: 0;
|
|
127
|
+
margin-right: 5px
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.navbar>nav .navbar-branding img {
|
|
131
|
+
display: block;
|
|
132
|
+
max-height: 28px;
|
|
133
|
+
height: 28px;
|
|
134
|
+
margin-left: 10px
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.navbar-branding svg {
|
|
138
|
+
height: 40px;
|
|
139
|
+
font-weight: normal;
|
|
140
|
+
max-height: 40px
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.navbar>nav .navbar-left>*:not(:first-child) {
|
|
144
|
+
margin-left: 24px
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
@media screen and (min-width: 768px) and (max-width:1023px) {
|
|
148
|
+
.navbar>nav .navbar-left>*:not(:first-child) {
|
|
149
|
+
margin-left:16px
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.navbar>nav .navbar-right>*:not(:first-child),.navbar>nav #navbar_login_status>*:not(:first-child) {
|
|
154
|
+
margin-left: 16px
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.navbar>nav #navbar_login_status {
|
|
158
|
+
min-width: 120px
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.navbar>nav .navbar-list {
|
|
162
|
+
display: flex;
|
|
163
|
+
flex-direction: row;
|
|
164
|
+
align-items: center;
|
|
165
|
+
flex-wrap: nowrap;
|
|
166
|
+
list-style: none;
|
|
167
|
+
white-space: nowrap;
|
|
168
|
+
transition: width .5s ease
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.navbar>nav .navbar-list>* {
|
|
172
|
+
flex-shrink: 0
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.navbar>nav .navbar-search {
|
|
176
|
+
padding-left: 20px;
|
|
177
|
+
padding-right: 20px;
|
|
178
|
+
display: flex;
|
|
179
|
+
flex-direction: row;
|
|
180
|
+
align-items: center;
|
|
181
|
+
border-radius: 6px;
|
|
182
|
+
background-color: #f4f4f4;
|
|
183
|
+
height: 32px
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.navbar>nav .navbar-search:focus-within {
|
|
187
|
+
border-bottom-left-radius: 0;
|
|
188
|
+
border-bottom-right-radius: 0
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.navbar>nav .navbar-anonymous,.navbar>nav .navbar-user-info {
|
|
192
|
+
display: none
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.navbar>nav .navbar-search img {
|
|
196
|
+
width: 16px;
|
|
197
|
+
height: 16px
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.navbar>nav .navbar-search>input {
|
|
201
|
+
border: none;
|
|
202
|
+
outline: none;
|
|
203
|
+
background: none;
|
|
204
|
+
width: 160px;
|
|
205
|
+
font-size: inherit
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
@media(min-width: 768px) and (max-width:1023px) {
|
|
209
|
+
.navbar>nav .navbar-search>input {
|
|
210
|
+
width:100px
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.navbar>nav .navbar-search>button {
|
|
215
|
+
background: none;
|
|
216
|
+
border: none;
|
|
217
|
+
cursor: pointer
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.navbar>nav .navbar-search>input::-webkit-input-placeholder {
|
|
221
|
+
color: #afafaf;
|
|
222
|
+
opacity: 1
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.navbar>nav .navbar-search>input::-moz-placeholder {
|
|
226
|
+
color: #afafaf;
|
|
227
|
+
opacity: 1
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.navbar>nav .navbar-search>input:-ms-input-placeholder {
|
|
231
|
+
color: #afafaf;
|
|
232
|
+
opacity: 1
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.navbar>nav .navbar-search>input::-ms-input-placeholder {
|
|
236
|
+
color: #afafaf;
|
|
237
|
+
opacity: 1
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.navbar>nav .navbar-search>input::placeholder {
|
|
241
|
+
color: #afafaf;
|
|
242
|
+
opacity: 1
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.navbar>nav .navbar-icon {
|
|
246
|
+
display: block;
|
|
247
|
+
width: 24px;
|
|
248
|
+
height: 24px;
|
|
249
|
+
flex-shrink: 0
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.navbar #new_post_icon {
|
|
253
|
+
width: 20px;
|
|
254
|
+
height: 20px
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.navbar>nav .navbar-icon-wrapper {
|
|
258
|
+
position: relative
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.navbar #msg_count {
|
|
262
|
+
display: inline-block;
|
|
263
|
+
position: absolute;
|
|
264
|
+
bottom: -3px;
|
|
265
|
+
right: -6px;
|
|
266
|
+
width: 11px;
|
|
267
|
+
height: 11px;
|
|
268
|
+
line-height: 11px;
|
|
269
|
+
border-radius: 50%;
|
|
270
|
+
color: #fff;
|
|
271
|
+
background: #f00;
|
|
272
|
+
font-size: 8px;
|
|
273
|
+
text-align: center;
|
|
274
|
+
white-space: nowrap
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.navbar #msg_icon {
|
|
278
|
+
width: 24px;
|
|
279
|
+
height: 24px
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
.navbar #user_icon {
|
|
283
|
+
width: 24px;
|
|
284
|
+
height: 24px
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.navbar>nav .navbar-avatar {
|
|
288
|
+
display: block;
|
|
289
|
+
width: 24px;
|
|
290
|
+
height: 24px;
|
|
291
|
+
flex-shrink: 0
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
.navbar-right .dropdown-menu {
|
|
295
|
+
right: 0
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
.dropdown {
|
|
299
|
+
display: -ms-inline-flexbox;
|
|
300
|
+
display: inline-flex;
|
|
301
|
+
position: relative
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
@media screen and (min-width: 769px) {
|
|
305
|
+
.dropdown:hover .dropdown-menu,.dropdown:focus-within .dropdown-menu,.dropdown:active .dropdown-menu {
|
|
306
|
+
max-height:1000px;
|
|
307
|
+
z-index: 1000
|
|
308
|
+
}
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.dropdown>.dropdown-button {
|
|
312
|
+
display: flex;
|
|
313
|
+
flex-direction: row;
|
|
314
|
+
align-items: center;
|
|
315
|
+
white-space: nowrap
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
.dropdown>.dropdown-button>*:not(:first-child) {
|
|
319
|
+
margin-left: 10px
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
.dropdown>.dropdown-menu.quick-search-menu {
|
|
323
|
+
left: 0;
|
|
324
|
+
padding-left: 0;
|
|
325
|
+
padding-right: 0;
|
|
326
|
+
border-top-left-radius: 0;
|
|
327
|
+
border-top-right-radius: 0
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
.dropdown>.dropdown-menu.quick-search-menu>* {
|
|
331
|
+
display: flex;
|
|
332
|
+
align-items: center;
|
|
333
|
+
justify-content: space-between
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.dropdown>.dropdown-menu.quick-search-menu .search-area {
|
|
337
|
+
font-size: 12px;
|
|
338
|
+
padding: 2px 4px;
|
|
339
|
+
border-radius: 5px;
|
|
340
|
+
border-style: solid;
|
|
341
|
+
border-width: 1px;
|
|
342
|
+
border-color: #ccc
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
.dropdown>.dropdown-menu.quick-search-menu .keyword-wrapper {
|
|
346
|
+
display: flex;
|
|
347
|
+
align-items: center;
|
|
348
|
+
min-width: 0
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
.dropdown>.dropdown-menu.quick-search-menu .keyword-wrapper img {
|
|
352
|
+
width: 1em;
|
|
353
|
+
height: 1em
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
.dropdown>.dropdown-menu.quick-search-menu .keyword {
|
|
357
|
+
min-width: 1px;
|
|
358
|
+
flex-grow: 1;
|
|
359
|
+
overflow-x: hidden;
|
|
360
|
+
text-overflow: ellipsis;
|
|
361
|
+
white-space: nowrap;
|
|
362
|
+
padding: 0 10px
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
.dropdown>.dropdown-menu.quick-search-menu>*:first-child {
|
|
366
|
+
margin-top: 0
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
.dropdown>.dropdown-menu.quick-search-menu>*:not(:first-child) {
|
|
370
|
+
margin-top: 0
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
.dropdown>.dropdown-menu.quick-search-menu>*:last-child {
|
|
374
|
+
margin-bottom: 0;
|
|
375
|
+
padding-bottom: 10px
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
.dropdown>.dropdown-menu.quick-search-menu>* {
|
|
379
|
+
margin-top: 0;
|
|
380
|
+
margin-bottom: 0;
|
|
381
|
+
padding: 5px 10px
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
.quick-search-menu>*:hover {
|
|
385
|
+
background-color: rgba(0,0,0,.01);
|
|
386
|
+
cursor: pointer
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
.quick-search-menu>.active {
|
|
390
|
+
background-color: rgba(0,0,0,.05)
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
.dropdown>.dropdown-menu {
|
|
394
|
+
padding-left: 10px;
|
|
395
|
+
padding-right: 10px;
|
|
396
|
+
-webkit-transition: all .5s ease,max-height .5s ease;
|
|
397
|
+
-o-transition: all .5s ease,max-height .5s ease;
|
|
398
|
+
transition: all .5s ease,max-height .5s ease;
|
|
399
|
+
max-height: 0;
|
|
400
|
+
overflow: hidden;
|
|
401
|
+
position: absolute;
|
|
402
|
+
top: 100%;
|
|
403
|
+
border-radius: 5px;
|
|
404
|
+
min-width: 5em;
|
|
405
|
+
-webkit-box-shadow: 2px 2px 13px 0 rgba(212,212,212,.5);
|
|
406
|
+
box-shadow: 2px 2px 13px 0 rgba(212,212,212,.5);
|
|
407
|
+
background-color: #f9f9f9
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
.dropdown>.dropdown-menu>*:not(:first-child) {
|
|
411
|
+
margin-top: 10px
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
.dropdown>.dropdown-menu>* {
|
|
415
|
+
display: block
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
.dropdown>.dropdown-menu>*:first-child {
|
|
419
|
+
margin-top: 10px
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
.dropdown>.dropdown-menu>*:last-child {
|
|
423
|
+
margin-bottom: 10px
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
.syntaxhighlighter a,.syntaxhighlighter div,.syntaxhighlighter code,.syntaxhighlighter table,.syntaxhighlighter table td,.syntaxhighlighter table tr,.syntaxhighlighter table tbody,.syntaxhighlighter table thead,.syntaxhighlighter table caption,.syntaxhighlighter textarea,pre[class*="brush:"][class*="language-"],pre[class*="brush:"] {
|
|
427
|
+
-moz-border-radius: 0 0 0 0 !important;
|
|
428
|
+
-webkit-border-radius: 0 0 0 0 !important;
|
|
429
|
+
background: none !important;
|
|
430
|
+
border: 0 !important;
|
|
431
|
+
bottom: auto !important;
|
|
432
|
+
float: none !important;
|
|
433
|
+
height: auto !important;
|
|
434
|
+
left: auto !important;
|
|
435
|
+
line-height: 1.1em !important;
|
|
436
|
+
margin: 0 !important;
|
|
437
|
+
outline: 0 !important;
|
|
438
|
+
overflow: visible !important;
|
|
439
|
+
padding: 0 !important;
|
|
440
|
+
position: static !important;
|
|
441
|
+
right: auto !important;
|
|
442
|
+
text-align: left !important;
|
|
443
|
+
top: auto !important;
|
|
444
|
+
vertical-align: baseline !important;
|
|
445
|
+
width: auto !important;
|
|
446
|
+
box-sizing: content-box !important;
|
|
447
|
+
font-family: "Consolas","Bitstream Vera Sans Mono","Courier New",Courier,monospace !important;
|
|
448
|
+
font-weight: normal !important;
|
|
449
|
+
font-style: normal !important;
|
|
450
|
+
font-size: 1em !important;
|
|
451
|
+
min-height: inherit !important;
|
|
452
|
+
min-height: auto !important
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
pre[class*="brush:"][class*="language-"],pre[class*="brush:"] {
|
|
456
|
+
color: inherit;
|
|
457
|
+
font-size: 12px !important;
|
|
458
|
+
line-height: 1.8em !important
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
pre[class*="brush:"][class*="language-"]>code {
|
|
462
|
+
white-space: pre-wrap
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
pre[class*="gutter:true"] {
|
|
466
|
+
padding-left: 35px
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
.syntaxhighlighter {
|
|
470
|
+
width: 100% !important;
|
|
471
|
+
margin: 1em 0 1em 0 !important;
|
|
472
|
+
position: relative !important;
|
|
473
|
+
overflow: auto !important;
|
|
474
|
+
font-size: 1em !important
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
.syntaxhighlighter.source {
|
|
478
|
+
overflow: hidden !important
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
.syntaxhighlighter .bold {
|
|
482
|
+
font-weight: bold !important
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
.syntaxhighlighter .italic {
|
|
486
|
+
font-style: italic !important
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
.syntaxhighlighter .line {
|
|
490
|
+
white-space: pre !important
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
.syntaxhighlighter table {
|
|
494
|
+
width: 100% !important
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
.syntaxhighlighter table caption {
|
|
498
|
+
text-align: left !important;
|
|
499
|
+
padding: .5em 0 .5em 1em !important
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
.syntaxhighlighter table td.code {
|
|
503
|
+
width: 100% !important
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
.syntaxhighlighter table td.code .container {
|
|
507
|
+
position: relative !important;
|
|
508
|
+
z-index: 1
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
.syntaxhighlighter table td.code .container textarea {
|
|
512
|
+
box-sizing: border-box !important;
|
|
513
|
+
position: absolute !important;
|
|
514
|
+
left: 0 !important;
|
|
515
|
+
top: 0 !important;
|
|
516
|
+
width: 100% !important;
|
|
517
|
+
height: 100% !important;
|
|
518
|
+
border: none !important;
|
|
519
|
+
background: #fff !important;
|
|
520
|
+
padding-left: 1em !important;
|
|
521
|
+
overflow: hidden !important;
|
|
522
|
+
white-space: pre !important
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
.syntaxhighlighter table td.gutter .line {
|
|
526
|
+
text-align: right !important;
|
|
527
|
+
padding: 0 .5em 0 1em !important
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
.syntaxhighlighter table td.code .line {
|
|
531
|
+
padding: 0 1em !important
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
.syntaxhighlighter.nogutter td.code .container textarea,.syntaxhighlighter.nogutter td.code .line {
|
|
535
|
+
padding-left: 0 !important
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
.syntaxhighlighter.show {
|
|
539
|
+
display: block !important
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
.syntaxhighlighter.collapsed table {
|
|
543
|
+
display: none !important
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
.syntaxhighlighter.collapsed .toolbar {
|
|
547
|
+
padding: .1em .8em 0 .8em !important;
|
|
548
|
+
font-size: 1em !important;
|
|
549
|
+
position: static !important;
|
|
550
|
+
width: auto !important;
|
|
551
|
+
height: auto !important
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
.syntaxhighlighter.collapsed .toolbar span {
|
|
555
|
+
display: inline !important;
|
|
556
|
+
margin-right: 1em !important
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
.syntaxhighlighter.collapsed .toolbar span a {
|
|
560
|
+
padding: 0 !important;
|
|
561
|
+
display: none !important
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
.syntaxhighlighter.collapsed .toolbar span a.expandSource {
|
|
565
|
+
display: inline !important
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
.syntaxhighlighter .toolbar {
|
|
569
|
+
position: absolute !important;
|
|
570
|
+
right: 1px !important;
|
|
571
|
+
top: 1px !important;
|
|
572
|
+
width: 11px !important;
|
|
573
|
+
height: 11px !important;
|
|
574
|
+
font-size: 10px !important;
|
|
575
|
+
z-index: 10 !important
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
.syntaxhighlighter .toolbar span.title {
|
|
579
|
+
display: inline !important
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
.syntaxhighlighter .toolbar a {
|
|
583
|
+
display: block !important;
|
|
584
|
+
text-align: center !important;
|
|
585
|
+
text-decoration: none !important;
|
|
586
|
+
padding-top: 1px !important
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
.syntaxhighlighter .toolbar a.expandSource {
|
|
590
|
+
display: none !important
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
.syntaxhighlighter.ie {
|
|
594
|
+
font-size: .9em !important;
|
|
595
|
+
padding: 1px 0 1px 0 !important
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
.syntaxhighlighter.ie .toolbar {
|
|
599
|
+
line-height: 8px !important
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
.syntaxhighlighter.ie .toolbar a {
|
|
603
|
+
padding-top: 0 !important
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
.syntaxhighlighter.printing .line.alt1 .content,.syntaxhighlighter.printing .line.alt2 .content,.syntaxhighlighter.printing .line.highlighted .number,.syntaxhighlighter.printing .line.highlighted.alt1 .content,.syntaxhighlighter.printing .line.highlighted.alt2 .content {
|
|
607
|
+
background: none !important
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
.syntaxhighlighter.printing .line .number {
|
|
611
|
+
color: #bbb !important
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
.syntaxhighlighter.printing .line .content {
|
|
615
|
+
color: #000 !important
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
.syntaxhighlighter.printing .toolbar {
|
|
619
|
+
display: none !important
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
.syntaxhighlighter.printing a {
|
|
623
|
+
text-decoration: none !important
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
.syntaxhighlighter.printing .plain,.syntaxhighlighter.printing .plain a {
|
|
627
|
+
color: #000 !important
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
.syntaxhighlighter.printing .comments,.syntaxhighlighter.printing .comments a {
|
|
631
|
+
color: #008200 !important
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
.syntaxhighlighter.printing .string,.syntaxhighlighter.printing .string a {
|
|
635
|
+
color: #00f !important
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
.syntaxhighlighter.printing .keyword {
|
|
639
|
+
color: #069 !important;
|
|
640
|
+
font-weight: bold !important
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
.syntaxhighlighter.printing .preprocessor {
|
|
644
|
+
color: #808080 !important
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
.syntaxhighlighter.printing .variable {
|
|
648
|
+
color: #a70 !important
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
.syntaxhighlighter.printing .value {
|
|
652
|
+
color: #090 !important
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
.syntaxhighlighter.printing .functions {
|
|
656
|
+
color: #ff1493 !important
|
|
657
|
+
}
|
|
658
|
+
|
|
659
|
+
.syntaxhighlighter.printing .constants {
|
|
660
|
+
color: #06c !important
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
.syntaxhighlighter.printing .script {
|
|
664
|
+
font-weight: bold !important
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
.syntaxhighlighter.printing .color1,.syntaxhighlighter.printing .color1 a {
|
|
668
|
+
color: #808080 !important
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
.syntaxhighlighter.printing .color2,.syntaxhighlighter.printing .color2 a {
|
|
672
|
+
color: #ff1493 !important
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
.syntaxhighlighter.printing .color3,.syntaxhighlighter.printing .color3 a {
|
|
676
|
+
color: #f00 !important
|
|
677
|
+
}
|
|
678
|
+
|
|
679
|
+
.syntaxhighlighter.printing .break,.syntaxhighlighter.printing .break a {
|
|
680
|
+
color: #000 !important
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
.syntaxhighlighter {
|
|
684
|
+
background-color: #fff !important
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
.syntaxhighlighter .line.alt1 {
|
|
688
|
+
background-color: #fff !important
|
|
689
|
+
}
|
|
690
|
+
|
|
691
|
+
.syntaxhighlighter .line.highlighted.alt1,.syntaxhighlighter .line.highlighted.alt2 {
|
|
692
|
+
background-color: #e0e0e0 !important
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
.syntaxhighlighter .line.highlighted.number {
|
|
696
|
+
color: #000 !important
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
.syntaxhighlighter table caption {
|
|
700
|
+
color: #000 !important
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
.syntaxhighlighter .gutter {
|
|
704
|
+
color: #afafaf !important
|
|
705
|
+
}
|
|
706
|
+
|
|
707
|
+
.syntaxhighlighter .gutter .line {
|
|
708
|
+
border-right: 3px solid #6ce26c !important
|
|
709
|
+
}
|
|
710
|
+
|
|
711
|
+
.syntaxhighlighter .gutter .line.highlighted {
|
|
712
|
+
background-color: #6ce26c !important;
|
|
713
|
+
color: #fff !important
|
|
714
|
+
}
|
|
715
|
+
|
|
716
|
+
.syntaxhighlighter.printing .line .content {
|
|
717
|
+
border: none !important
|
|
718
|
+
}
|
|
719
|
+
|
|
720
|
+
.syntaxhighlighter.collapsed {
|
|
721
|
+
overflow: visible !important
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
.syntaxhighlighter.collapsed .toolbar {
|
|
725
|
+
color: #00f !important;
|
|
726
|
+
background: #fff !important;
|
|
727
|
+
border: 1px solid #6ce26c !important
|
|
728
|
+
}
|
|
729
|
+
|
|
730
|
+
.syntaxhighlighter.collapsed .toolbar a {
|
|
731
|
+
color: #00f !important
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
.syntaxhighlighter.collapsed .toolbar a:hover {
|
|
735
|
+
color: #f00 !important
|
|
736
|
+
}
|
|
737
|
+
|
|
738
|
+
.syntaxhighlighter .toolbar {
|
|
739
|
+
color: #fff !important;
|
|
740
|
+
background: #6ce26c !important;
|
|
741
|
+
border: none !important
|
|
742
|
+
}
|
|
743
|
+
|
|
744
|
+
.syntaxhighlighter .toolbar a {
|
|
745
|
+
color: #fff !important
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
.syntaxhighlighter .toolbar a:hover {
|
|
749
|
+
color: #000 !important
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
.syntaxhighlighter .plain,.syntaxhighlighter .plain a {
|
|
753
|
+
color: #000 !important
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
.syntaxhighlighter .comments,.syntaxhighlighter .comments a {
|
|
757
|
+
color: #008200 !important
|
|
758
|
+
}
|
|
759
|
+
|
|
760
|
+
.syntaxhighlighter .string,.syntaxhighlighter .string a {
|
|
761
|
+
color: #00f !important
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
.syntaxhighlighter .keyword {
|
|
765
|
+
color: #069 !important
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
.syntaxhighlighter .preprocessor {
|
|
769
|
+
color: #808080 !important
|
|
770
|
+
}
|
|
771
|
+
|
|
772
|
+
.syntaxhighlighter .variable {
|
|
773
|
+
color: #a70 !important
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
.syntaxhighlighter .value {
|
|
777
|
+
color: #090 !important
|
|
778
|
+
}
|
|
779
|
+
|
|
780
|
+
.syntaxhighlighter .functions {
|
|
781
|
+
color: #ff1493 !important
|
|
782
|
+
}
|
|
783
|
+
|
|
784
|
+
.syntaxhighlighter .constants {
|
|
785
|
+
color: #06c !important
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
.syntaxhighlighter .script {
|
|
789
|
+
font-weight: bold !important;
|
|
790
|
+
color: #069 !important;
|
|
791
|
+
background-color: none !important
|
|
792
|
+
}
|
|
793
|
+
|
|
794
|
+
.syntaxhighlighter .color1,.syntaxhighlighter .color1 a {
|
|
795
|
+
color: #808080 !important
|
|
796
|
+
}
|
|
797
|
+
|
|
798
|
+
.syntaxhighlighter .color2,.syntaxhighlighter .color2 a {
|
|
799
|
+
color: #ff1493 !important
|
|
800
|
+
}
|
|
801
|
+
|
|
802
|
+
.syntaxhighlighter .color3,.syntaxhighlighter .color3 a {
|
|
803
|
+
color: #f00 !important
|
|
804
|
+
}
|
|
805
|
+
|
|
806
|
+
.syntaxhighlighter .keyword {
|
|
807
|
+
font-weight: bold !important
|
|
808
|
+
}
|
|
809
|
+
|
|
810
|
+
.syntaxhighlighter code {
|
|
811
|
+
white-space: pre-wrap;
|
|
812
|
+
white-space: -moz-pre-wrap !important;
|
|
813
|
+
white-space: -pre-wrap;
|
|
814
|
+
white-space: -o-pre-wrap
|
|
815
|
+
}
|
|
816
|
+
|
|
817
|
+
.syntaxhighlighter .line {
|
|
818
|
+
white-space: normal !important;
|
|
819
|
+
line-height: 1.8em !important
|
|
820
|
+
}
|
|
821
|
+
|
|
822
|
+
.syntaxhighlighter code {
|
|
823
|
+
line-height: 1.8em !important
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
.syntaxhighlighter .toolbar {
|
|
827
|
+
display: none
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
.syntaxhighlighter.collapsed .toolbar {
|
|
831
|
+
display: block;
|
|
832
|
+
background: #f5f5f5 !important;
|
|
833
|
+
border: 1px solid #ccc !important;
|
|
834
|
+
padding: .5em .8em .5em .8em !important
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
.syntaxhighlighter table td.code {
|
|
838
|
+
width: auto !important
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
.syntaxhighlighter .line.alt2 {
|
|
842
|
+
background-color: #f4f4f4 !important
|
|
843
|
+
}
|
|
844
|
+
|
|
845
|
+
.syntaxhighlighter .gutter {
|
|
846
|
+
width: 35px !important
|
|
847
|
+
}
|
|
848
|
+
|
|
849
|
+
.syntaxhighlighter .gutter .line {
|
|
850
|
+
border-right: 2px solid #6ce26c !important
|
|
851
|
+
}
|
|
852
|
+
|
|
853
|
+
.syntaxhighlighter table td.gutter .line {
|
|
854
|
+
padding: 0 .5em 0 .5em !important;
|
|
855
|
+
text-align: right !important
|
|
856
|
+
}
|
|
857
|
+
|
|
858
|
+
.syntaxhighlighter .keyword {
|
|
859
|
+
font-weight: normal !important;
|
|
860
|
+
color: #00f !important
|
|
861
|
+
}
|
|
862
|
+
|
|
863
|
+
.syntaxhighlighter a,.syntaxhighlighter div,.syntaxhighlighter code,.syntaxhighlighter table,.syntaxhighlighter table td,.syntaxhighlighter table tr,.syntaxhighlighter table tbody,.syntaxhighlighter table thead,.syntaxhighlighter table caption,.syntaxhighlighter textarea {
|
|
864
|
+
font-size: 12px !important
|
|
865
|
+
}
|
|
866
|
+
|
|
867
|
+
.sh-gutter .line,.sh-gutter code:not([class*="language-"]):not([class~="hljs"]) {
|
|
868
|
+
white-space: nowrap !important
|
|
869
|
+
}
|
|
870
|
+
|
|
871
|
+
body {
|
|
872
|
+
font-family: "PingFang SC","Microsoft YaHei","Helvetica Neue","Helvetica","Arial",sans-serif;
|
|
873
|
+
tab-size: 4
|
|
874
|
+
}
|
|
875
|
+
|
|
876
|
+
input[type="button"] {
|
|
877
|
+
-webkit-appearance: button
|
|
878
|
+
}
|
|
879
|
+
|
|
880
|
+
img {
|
|
881
|
+
border: 0;
|
|
882
|
+
max-width: 100%;
|
|
883
|
+
height: auto
|
|
884
|
+
}
|
|
885
|
+
|
|
886
|
+
.hide {
|
|
887
|
+
display: none !important
|
|
888
|
+
}
|
|
889
|
+
|
|
890
|
+
.blog_topic {
|
|
891
|
+
margin-top: 10px;
|
|
892
|
+
margin-left: 2em
|
|
893
|
+
}
|
|
894
|
+
|
|
895
|
+
#blog_post_info_block {
|
|
896
|
+
margin-top: 20px
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
#BlogPostCategory,#BlogCollection {
|
|
900
|
+
margin-bottom: 10px
|
|
901
|
+
}
|
|
902
|
+
|
|
903
|
+
#EntryTag {
|
|
904
|
+
margin-top: 0 !important
|
|
905
|
+
}
|
|
906
|
+
|
|
907
|
+
.topicListFooter {
|
|
908
|
+
text-align: right;
|
|
909
|
+
margin-right: 10px;
|
|
910
|
+
margin-top: 10px;
|
|
911
|
+
margin-bottom: 10px
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
#divRefreshComments {
|
|
915
|
+
text-align: right;
|
|
916
|
+
margin-right: 10px;
|
|
917
|
+
margin-bottom: 5px;
|
|
918
|
+
font-size: 12px
|
|
919
|
+
}
|
|
920
|
+
|
|
921
|
+
.commentTextBox {
|
|
922
|
+
width: 480px;
|
|
923
|
+
height: 220px
|
|
924
|
+
}
|
|
925
|
+
|
|
926
|
+
.commenttb {
|
|
927
|
+
width: 320px
|
|
928
|
+
}
|
|
929
|
+
|
|
930
|
+
.tb_comment_name {
|
|
931
|
+
width: 200px
|
|
932
|
+
}
|
|
933
|
+
|
|
934
|
+
#MyIng {
|
|
935
|
+
margin-top: 5px
|
|
936
|
+
}
|
|
937
|
+
|
|
938
|
+
.ing_title {
|
|
939
|
+
font-weight: bold;
|
|
940
|
+
text-align: center
|
|
941
|
+
}
|
|
942
|
+
|
|
943
|
+
.ing_body {
|
|
944
|
+
margin-top: 5px;
|
|
945
|
+
margin-bottom: 5px;
|
|
946
|
+
word-break: break-all
|
|
947
|
+
}
|
|
948
|
+
|
|
949
|
+
.ing_date {
|
|
950
|
+
text-align: center;
|
|
951
|
+
color: #808080;
|
|
952
|
+
font-size: 11px
|
|
953
|
+
}
|
|
954
|
+
|
|
955
|
+
.ing_footer {
|
|
956
|
+
text-align: right;
|
|
957
|
+
margin-right: 5px
|
|
958
|
+
}
|
|
959
|
+
|
|
960
|
+
#divNewMsg {
|
|
961
|
+
margin-top: 2px;
|
|
962
|
+
text-align: center
|
|
963
|
+
}
|
|
964
|
+
|
|
965
|
+
.commentform table td input {
|
|
966
|
+
margin: 2px auto
|
|
967
|
+
}
|
|
968
|
+
|
|
969
|
+
.sendMsg2This:link,.sendMsg2This:visited,.sendMsg2This:active {
|
|
970
|
+
font-size: 12px;
|
|
971
|
+
text-decoration: none;
|
|
972
|
+
background: url("/images/icoMsg.gif") no-repeat top left;
|
|
973
|
+
padding-left: 20px
|
|
974
|
+
}
|
|
975
|
+
|
|
976
|
+
.sendMsg2This:hover {
|
|
977
|
+
background: url("/images/icoMsg.gif") no-repeat bottom left
|
|
978
|
+
}
|
|
979
|
+
|
|
980
|
+
#sidebar_news_container :not(pre,div)>code,.cnblogs-markdown :not(pre,div)>code,.blogpost-body:not(.cnblogs-markdown) :not(pre,div,td)>code {
|
|
981
|
+
font-family: ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace,sans-serif;
|
|
982
|
+
font-size: 12px;
|
|
983
|
+
padding: 0 5px;
|
|
984
|
+
line-height: 1.8;
|
|
985
|
+
margin: 0 3px;
|
|
986
|
+
display: inline-block;
|
|
987
|
+
overflow-x: auto;
|
|
988
|
+
vertical-align: middle;
|
|
989
|
+
border-radius: 3px;
|
|
990
|
+
color: #c0341d;
|
|
991
|
+
background-color: rgba(0,0,0,.04);
|
|
992
|
+
border: none !important
|
|
993
|
+
}
|
|
994
|
+
|
|
995
|
+
code {
|
|
996
|
+
font-family: inherit
|
|
997
|
+
}
|
|
998
|
+
|
|
999
|
+
pre,pre code,pre code table,.hljs-engine pre,.hljs-engine pre code {
|
|
1000
|
+
transition-duration: .2s;
|
|
1001
|
+
transition-property: background,font-size,border-color,border-radius,border-width,padding,margin,color
|
|
1002
|
+
}
|
|
1003
|
+
|
|
1004
|
+
pre.cnb-over-length-code-block {
|
|
1005
|
+
transition-property: color,opacity,padding-top,padding-bottom,margin-top,margin-bottom,height,max-height
|
|
1006
|
+
}
|
|
1007
|
+
|
|
1008
|
+
.prismjs-engine pre.line-numbers code span {
|
|
1009
|
+
font-family: inherit
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
.cnblogs-markdown pre code,.blogpost-body pre code {
|
|
1013
|
+
display: block;
|
|
1014
|
+
line-height: 1.5;
|
|
1015
|
+
margin: 0
|
|
1016
|
+
}
|
|
1017
|
+
|
|
1018
|
+
.cnblogs-markdown pre .language-text,.blogpost-body pre code .language-text,.cnblogs-markdown pre .language-plaintext,.blogpost-body pre code .language-plaintext {
|
|
1019
|
+
white-space: pre-wrap
|
|
1020
|
+
}
|
|
1021
|
+
|
|
1022
|
+
.cnblogs_code {
|
|
1023
|
+
background-color: #f5f5f5;
|
|
1024
|
+
font-family: Courier New !important;
|
|
1025
|
+
font-size: 12px !important;
|
|
1026
|
+
border: 1px solid #ccc;
|
|
1027
|
+
padding: 5px;
|
|
1028
|
+
overflow: auto;
|
|
1029
|
+
margin: 5px 0;
|
|
1030
|
+
color: #000
|
|
1031
|
+
}
|
|
1032
|
+
|
|
1033
|
+
.cnblogs_code pre code {
|
|
1034
|
+
background-color: #f5f5f5;
|
|
1035
|
+
color: initial;
|
|
1036
|
+
font-family: inherit
|
|
1037
|
+
}
|
|
1038
|
+
|
|
1039
|
+
span.cnblogs_code {
|
|
1040
|
+
padding: 3px
|
|
1041
|
+
}
|
|
1042
|
+
|
|
1043
|
+
.cnblogs_code div {
|
|
1044
|
+
background-color: #f5f5f5
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1047
|
+
pre {
|
|
1048
|
+
overflow: auto
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1051
|
+
.cnblogs_code pre {
|
|
1052
|
+
font-family: Courier New,serif;
|
|
1053
|
+
font-size: 12px;
|
|
1054
|
+
word-wrap: break-word
|
|
1055
|
+
}
|
|
1056
|
+
|
|
1057
|
+
.cnblogs_code span {
|
|
1058
|
+
font-family: Courier New,serif;
|
|
1059
|
+
font-size: inherit;
|
|
1060
|
+
line-height: 1.5
|
|
1061
|
+
}
|
|
1062
|
+
|
|
1063
|
+
.cnblogs_code_Collapse {
|
|
1064
|
+
border-right: #808080 1px solid;
|
|
1065
|
+
border-top: #808080 1px solid;
|
|
1066
|
+
border-left: #808080 1px solid;
|
|
1067
|
+
border-bottom: #808080 1px solid;
|
|
1068
|
+
background-color: #fff;
|
|
1069
|
+
padding: 2px
|
|
1070
|
+
}
|
|
1071
|
+
|
|
1072
|
+
.cnblogs_code_collapse {
|
|
1073
|
+
border-right: #808080 1px solid;
|
|
1074
|
+
border-top: #808080 1px solid;
|
|
1075
|
+
border-left: #808080 1px solid;
|
|
1076
|
+
border-bottom: #808080 1px solid;
|
|
1077
|
+
background-color: #fff;
|
|
1078
|
+
padding: 2px
|
|
1079
|
+
}
|
|
1080
|
+
|
|
1081
|
+
.cnblogs_code_hide {
|
|
1082
|
+
display: none
|
|
1083
|
+
}
|
|
1084
|
+
|
|
1085
|
+
.code_img_closed {
|
|
1086
|
+
vertical-align: middle;
|
|
1087
|
+
padding-right: 5px
|
|
1088
|
+
}
|
|
1089
|
+
|
|
1090
|
+
.code_img_opened {
|
|
1091
|
+
vertical-align: middle;
|
|
1092
|
+
padding-right: 5px
|
|
1093
|
+
}
|
|
1094
|
+
|
|
1095
|
+
.cnblogs_code_open {
|
|
1096
|
+
margin-top: 5px
|
|
1097
|
+
}
|
|
1098
|
+
|
|
1099
|
+
.codeLineNumber {
|
|
1100
|
+
-moz-user-select: none;
|
|
1101
|
+
color: #008080;
|
|
1102
|
+
padding-right: 10px
|
|
1103
|
+
}
|
|
1104
|
+
|
|
1105
|
+
.cnblogs_code ol {
|
|
1106
|
+
margin-left: 0;
|
|
1107
|
+
color: #008080
|
|
1108
|
+
}
|
|
1109
|
+
|
|
1110
|
+
.cnblogs_code ol li {
|
|
1111
|
+
list-style-image: none
|
|
1112
|
+
}
|
|
1113
|
+
|
|
1114
|
+
.cnblogs_code ol li span {
|
|
1115
|
+
color: #000
|
|
1116
|
+
}
|
|
1117
|
+
|
|
1118
|
+
.cnblogs_code_toolbar a:hover,.cnblogs_code_toolbar a:link,.cnblogs_code_toolbar a:visited,.cnblogs_code_toolbar a:active,.cnblogs_code_toolbar a:link img,.cnblogs_code_toolbar a:visited img {
|
|
1119
|
+
background-color: #f5f5f5 !important;
|
|
1120
|
+
border: none !important
|
|
1121
|
+
}
|
|
1122
|
+
|
|
1123
|
+
.desc_img {
|
|
1124
|
+
float: right;
|
|
1125
|
+
max-height: 200px;
|
|
1126
|
+
width: 135px;
|
|
1127
|
+
height: 76px;
|
|
1128
|
+
object-fit: cover;
|
|
1129
|
+
margin: 0 0 5px 5px
|
|
1130
|
+
}
|
|
1131
|
+
|
|
1132
|
+
.MsoNormal {
|
|
1133
|
+
font-size: 13px;
|
|
1134
|
+
line-height: 150%
|
|
1135
|
+
}
|
|
1136
|
+
|
|
1137
|
+
.div_my_zzk {
|
|
1138
|
+
margin-top: 5px;
|
|
1139
|
+
margin-bottom: 5px;
|
|
1140
|
+
display: flex;
|
|
1141
|
+
align-items: center
|
|
1142
|
+
}
|
|
1143
|
+
|
|
1144
|
+
.input_my_zzk {
|
|
1145
|
+
vertical-align: middle;
|
|
1146
|
+
height: 24px;
|
|
1147
|
+
border-radius: 5px;
|
|
1148
|
+
border-width: 1px;
|
|
1149
|
+
width: 100%
|
|
1150
|
+
}
|
|
1151
|
+
|
|
1152
|
+
input.btn_my_zzk {
|
|
1153
|
+
vertical-align: middle;
|
|
1154
|
+
height: 26px;
|
|
1155
|
+
font-size: 12px;
|
|
1156
|
+
padding-left: 5px;
|
|
1157
|
+
padding-right: 5px;
|
|
1158
|
+
cursor: pointer
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1161
|
+
pre {
|
|
1162
|
+
margin-top: 0;
|
|
1163
|
+
margin-bottom: 0
|
|
1164
|
+
}
|
|
1165
|
+
|
|
1166
|
+
.divPostCommentBox {
|
|
1167
|
+
float: left;
|
|
1168
|
+
width: 500px
|
|
1169
|
+
}
|
|
1170
|
+
|
|
1171
|
+
.CommentBoxNav {
|
|
1172
|
+
width: 100px;
|
|
1173
|
+
float: right;
|
|
1174
|
+
margin-top: 20px;
|
|
1175
|
+
line-height: 120%;
|
|
1176
|
+
font-size: 12px
|
|
1177
|
+
}
|
|
1178
|
+
|
|
1179
|
+
.comment_pager {
|
|
1180
|
+
text-align: left;
|
|
1181
|
+
padding-bottom: 5px
|
|
1182
|
+
}
|
|
1183
|
+
|
|
1184
|
+
.comment_pager_current {
|
|
1185
|
+
color: #f00
|
|
1186
|
+
}
|
|
1187
|
+
|
|
1188
|
+
.dp-highlighter {
|
|
1189
|
+
font-family: "Consolas","Courier New",Courier,mono,serif;
|
|
1190
|
+
font-size: 12px;
|
|
1191
|
+
overflow: auto;
|
|
1192
|
+
margin: 18px 0 18px 0 !important;
|
|
1193
|
+
word-break: break-word
|
|
1194
|
+
}
|
|
1195
|
+
|
|
1196
|
+
.dp-highlighter ol,.dp-highlighter ol li,.dp-highlighter ol li span {
|
|
1197
|
+
margin: 0;
|
|
1198
|
+
padding: 0;
|
|
1199
|
+
border: none
|
|
1200
|
+
}
|
|
1201
|
+
|
|
1202
|
+
.dp-highlighter a,.dp-highlighter a:hover {
|
|
1203
|
+
background: none;
|
|
1204
|
+
border: none;
|
|
1205
|
+
padding: 0;
|
|
1206
|
+
margin: 0
|
|
1207
|
+
}
|
|
1208
|
+
|
|
1209
|
+
.dp-highlighter .bar {
|
|
1210
|
+
display: none
|
|
1211
|
+
}
|
|
1212
|
+
|
|
1213
|
+
.dp-highlighter ol {
|
|
1214
|
+
list-style: decimal;
|
|
1215
|
+
background-color: #fff;
|
|
1216
|
+
margin: 0 0 1px 45px !important;
|
|
1217
|
+
padding: 0 !important;
|
|
1218
|
+
color: #5c5c5c
|
|
1219
|
+
}
|
|
1220
|
+
|
|
1221
|
+
.dp-highlighter.nogutter ol,.dp-highlighter.nogutter ol li {
|
|
1222
|
+
list-style: none !important;
|
|
1223
|
+
margin-left: 0 !important
|
|
1224
|
+
}
|
|
1225
|
+
|
|
1226
|
+
.dp-highlighter ol li,.dp-highlighter .columns div {
|
|
1227
|
+
list-style: decimal-leading-zero;
|
|
1228
|
+
list-style-position: outside !important;
|
|
1229
|
+
border-left: 3px solid #6ce26c;
|
|
1230
|
+
background-color: #f8f8f8;
|
|
1231
|
+
color: #5c5c5c;
|
|
1232
|
+
padding: 0 3px 0 10px !important;
|
|
1233
|
+
margin: 0 !important;
|
|
1234
|
+
line-height: 1.6
|
|
1235
|
+
}
|
|
1236
|
+
|
|
1237
|
+
.dp-highlighter.nogutter ol li,.dp-highlighter.nogutter .columns div {
|
|
1238
|
+
border: 0
|
|
1239
|
+
}
|
|
1240
|
+
|
|
1241
|
+
.dp-highlighter .columns {
|
|
1242
|
+
background-color: #f8f8f8;
|
|
1243
|
+
color: #808080;
|
|
1244
|
+
overflow: hidden;
|
|
1245
|
+
width: 100%
|
|
1246
|
+
}
|
|
1247
|
+
|
|
1248
|
+
.dp-highlighter .columns div {
|
|
1249
|
+
padding-bottom: 5px
|
|
1250
|
+
}
|
|
1251
|
+
|
|
1252
|
+
.dp-highlighter ol li.alt {
|
|
1253
|
+
background-color: #fff;
|
|
1254
|
+
color: inherit
|
|
1255
|
+
}
|
|
1256
|
+
|
|
1257
|
+
.dp-highlighter ol li span {
|
|
1258
|
+
color: #000;
|
|
1259
|
+
background-color: inherit
|
|
1260
|
+
}
|
|
1261
|
+
|
|
1262
|
+
.dp-highlighter.collapsed ol {
|
|
1263
|
+
margin: 0
|
|
1264
|
+
}
|
|
1265
|
+
|
|
1266
|
+
.dp-highlighter.collapsed ol li {
|
|
1267
|
+
display: none
|
|
1268
|
+
}
|
|
1269
|
+
|
|
1270
|
+
.dp-highlighter.printing {
|
|
1271
|
+
border: none
|
|
1272
|
+
}
|
|
1273
|
+
|
|
1274
|
+
.dp-highlighter.printing .tools {
|
|
1275
|
+
display: none !important
|
|
1276
|
+
}
|
|
1277
|
+
|
|
1278
|
+
.dp-highlighter.printing li {
|
|
1279
|
+
display: list-item !important
|
|
1280
|
+
}
|
|
1281
|
+
|
|
1282
|
+
.dp-highlighter .tools {
|
|
1283
|
+
padding: 3px 8px 3px 10px;
|
|
1284
|
+
font: 9px Verdana,Geneva,Arial,Helvetica,sans-serif;
|
|
1285
|
+
color: #c0c0c0;
|
|
1286
|
+
background-color: #f8f8f8;
|
|
1287
|
+
padding-bottom: 10px;
|
|
1288
|
+
border-left: 3px solid #6ce26c
|
|
1289
|
+
}
|
|
1290
|
+
|
|
1291
|
+
.dp-highlighter.nogutter .tools {
|
|
1292
|
+
border-left: 0
|
|
1293
|
+
}
|
|
1294
|
+
|
|
1295
|
+
.dp-highlighter.collapsed .tools {
|
|
1296
|
+
border-bottom: 0
|
|
1297
|
+
}
|
|
1298
|
+
|
|
1299
|
+
.dp-highlighter .tools a {
|
|
1300
|
+
font-size: 9px;
|
|
1301
|
+
color: #a0a0a0;
|
|
1302
|
+
background-color: inherit;
|
|
1303
|
+
text-decoration: none;
|
|
1304
|
+
margin-right: 10px
|
|
1305
|
+
}
|
|
1306
|
+
|
|
1307
|
+
.dp-highlighter .tools a:hover {
|
|
1308
|
+
color: #f00;
|
|
1309
|
+
background-color: inherit;
|
|
1310
|
+
text-decoration: underline
|
|
1311
|
+
}
|
|
1312
|
+
|
|
1313
|
+
.dp-about {
|
|
1314
|
+
background-color: #fff;
|
|
1315
|
+
color: #333;
|
|
1316
|
+
margin: 0;
|
|
1317
|
+
padding: 0
|
|
1318
|
+
}
|
|
1319
|
+
|
|
1320
|
+
.dp-about table {
|
|
1321
|
+
width: 100%;
|
|
1322
|
+
height: 100%;
|
|
1323
|
+
font-size: 11px;
|
|
1324
|
+
font-family: Tahoma,Verdana,Arial,sans-serif !important
|
|
1325
|
+
}
|
|
1326
|
+
|
|
1327
|
+
.dp-about td {
|
|
1328
|
+
padding: 10px;
|
|
1329
|
+
vertical-align: top
|
|
1330
|
+
}
|
|
1331
|
+
|
|
1332
|
+
.dp-about .copy {
|
|
1333
|
+
border-bottom: 1px solid #aca899;
|
|
1334
|
+
height: 95%
|
|
1335
|
+
}
|
|
1336
|
+
|
|
1337
|
+
.dp-about .title {
|
|
1338
|
+
color: #f00;
|
|
1339
|
+
background-color: inherit;
|
|
1340
|
+
font-weight: bold
|
|
1341
|
+
}
|
|
1342
|
+
|
|
1343
|
+
.dp-about .para {
|
|
1344
|
+
margin: 0 0 4px 0
|
|
1345
|
+
}
|
|
1346
|
+
|
|
1347
|
+
.dp-about .footer {
|
|
1348
|
+
background-color: #eceadb;
|
|
1349
|
+
color: #333;
|
|
1350
|
+
border-top: 1px solid #fff;
|
|
1351
|
+
text-align: right
|
|
1352
|
+
}
|
|
1353
|
+
|
|
1354
|
+
.dp-about .close {
|
|
1355
|
+
font-size: 11px;
|
|
1356
|
+
font-family: Tahoma,Verdana,Arial,sans-serif !important;
|
|
1357
|
+
background-color: #eceadb;
|
|
1358
|
+
color: #333;
|
|
1359
|
+
width: 60px;
|
|
1360
|
+
height: 22px
|
|
1361
|
+
}
|
|
1362
|
+
|
|
1363
|
+
.dp-highlighter .comment,.dp-highlighter .comments {
|
|
1364
|
+
color: #008200;
|
|
1365
|
+
background-color: inherit
|
|
1366
|
+
}
|
|
1367
|
+
|
|
1368
|
+
.dp-highlighter .string {
|
|
1369
|
+
color: #00f;
|
|
1370
|
+
background-color: inherit
|
|
1371
|
+
}
|
|
1372
|
+
|
|
1373
|
+
.dp-highlighter .keyword {
|
|
1374
|
+
color: #069;
|
|
1375
|
+
font-weight: bold;
|
|
1376
|
+
background-color: inherit
|
|
1377
|
+
}
|
|
1378
|
+
|
|
1379
|
+
.dp-highlighter .preprocessor {
|
|
1380
|
+
color: #808080;
|
|
1381
|
+
background-color: inherit
|
|
1382
|
+
}
|
|
1383
|
+
|
|
1384
|
+
#digg_block {
|
|
1385
|
+
margin-top: 10px
|
|
1386
|
+
}
|
|
1387
|
+
|
|
1388
|
+
#author_profile {
|
|
1389
|
+
float: left;
|
|
1390
|
+
width: 280px;
|
|
1391
|
+
margin-top: 0;
|
|
1392
|
+
margin-bottom: 10px;
|
|
1393
|
+
color: #000;
|
|
1394
|
+
margin-left: 0;
|
|
1395
|
+
font-size: 12px
|
|
1396
|
+
}
|
|
1397
|
+
|
|
1398
|
+
#author_profile a:link,#author_profile a:visited,#author_profile a:acitve {
|
|
1399
|
+
text-decoration: none
|
|
1400
|
+
}
|
|
1401
|
+
|
|
1402
|
+
#author_profile a:hover {
|
|
1403
|
+
text-decoration: underline
|
|
1404
|
+
}
|
|
1405
|
+
|
|
1406
|
+
.author_avatar {
|
|
1407
|
+
vertical-align: top;
|
|
1408
|
+
float: left;
|
|
1409
|
+
margin-right: 5px;
|
|
1410
|
+
padding-top: 5px;
|
|
1411
|
+
padding-left: 2px;
|
|
1412
|
+
border: 0;
|
|
1413
|
+
width: 48px;
|
|
1414
|
+
height: 48px
|
|
1415
|
+
}
|
|
1416
|
+
|
|
1417
|
+
.author_profile_title {
|
|
1418
|
+
font-weight: bold;
|
|
1419
|
+
color: #666
|
|
1420
|
+
}
|
|
1421
|
+
|
|
1422
|
+
.author_profile_info {
|
|
1423
|
+
float: left;
|
|
1424
|
+
line-height: 18px
|
|
1425
|
+
}
|
|
1426
|
+
|
|
1427
|
+
#div_digg {
|
|
1428
|
+
float: right;
|
|
1429
|
+
margin-bottom: 10px;
|
|
1430
|
+
margin-right: 30px;
|
|
1431
|
+
font-size: 12px;
|
|
1432
|
+
width: 125px;
|
|
1433
|
+
text-align: center;
|
|
1434
|
+
margin-top: 10px
|
|
1435
|
+
}
|
|
1436
|
+
|
|
1437
|
+
.diggit {
|
|
1438
|
+
float: left;
|
|
1439
|
+
width: 46px;
|
|
1440
|
+
height: 52px;
|
|
1441
|
+
background: url("//assets.cnblogs.com/images/upup.gif") no-repeat;
|
|
1442
|
+
text-align: center;
|
|
1443
|
+
cursor: pointer;
|
|
1444
|
+
margin-top: 2px;
|
|
1445
|
+
padding-top: 5px
|
|
1446
|
+
}
|
|
1447
|
+
|
|
1448
|
+
.diggnum {
|
|
1449
|
+
font-size: 14px;
|
|
1450
|
+
color: #075db3;
|
|
1451
|
+
font-family: Verdana
|
|
1452
|
+
}
|
|
1453
|
+
|
|
1454
|
+
.buryit {
|
|
1455
|
+
float: right;
|
|
1456
|
+
margin-left: 20px;
|
|
1457
|
+
width: 46px;
|
|
1458
|
+
height: 52px;
|
|
1459
|
+
background: url("//assets.cnblogs.com/images/downdown.gif") no-repeat;
|
|
1460
|
+
text-align: center;
|
|
1461
|
+
cursor: pointer;
|
|
1462
|
+
margin-top: 2px;
|
|
1463
|
+
padding-top: 5px
|
|
1464
|
+
}
|
|
1465
|
+
|
|
1466
|
+
.burynum {
|
|
1467
|
+
font-size: 14px;
|
|
1468
|
+
color: #075db3;
|
|
1469
|
+
font-family: Verdana
|
|
1470
|
+
}
|
|
1471
|
+
|
|
1472
|
+
.diggword {
|
|
1473
|
+
margin-top: 5px;
|
|
1474
|
+
margin-left: 0;
|
|
1475
|
+
font-size: 12px;
|
|
1476
|
+
color: #808080
|
|
1477
|
+
}
|
|
1478
|
+
|
|
1479
|
+
a.digg_gray:link {
|
|
1480
|
+
color: #808080;
|
|
1481
|
+
text-decoration: underline
|
|
1482
|
+
}
|
|
1483
|
+
|
|
1484
|
+
a.digg_gray:visited {
|
|
1485
|
+
color: #808080;
|
|
1486
|
+
text-decoration: underline
|
|
1487
|
+
}
|
|
1488
|
+
|
|
1489
|
+
a.digg_gray:hover {
|
|
1490
|
+
color: #f00;
|
|
1491
|
+
text-decoration: underline
|
|
1492
|
+
}
|
|
1493
|
+
|
|
1494
|
+
a.digg_gray:active {
|
|
1495
|
+
color: #808080;
|
|
1496
|
+
text-decoration: underline
|
|
1497
|
+
}
|
|
1498
|
+
|
|
1499
|
+
#div_digg a.tip:link,#div_digg a.tip:visited,#div_digg a.tip:hover,#div_digg a.tip:active {
|
|
1500
|
+
color: #075db3;
|
|
1501
|
+
text-decoration: none;
|
|
1502
|
+
border-bottom: none
|
|
1503
|
+
}
|
|
1504
|
+
|
|
1505
|
+
#div_digg a.tip:hover,#div_digg a.tip:active {
|
|
1506
|
+
text-decoration: underline
|
|
1507
|
+
}
|
|
1508
|
+
|
|
1509
|
+
a.site_hot:visited,a.site_hot:active,a.site_hot:link {
|
|
1510
|
+
color: #f00;
|
|
1511
|
+
text-decoration: none
|
|
1512
|
+
}
|
|
1513
|
+
|
|
1514
|
+
a.site_hot:hover {
|
|
1515
|
+
color: #f00;
|
|
1516
|
+
text-decoration: underline
|
|
1517
|
+
}
|
|
1518
|
+
|
|
1519
|
+
.ad_bottom_text {
|
|
1520
|
+
line-height: 150%
|
|
1521
|
+
}
|
|
1522
|
+
|
|
1523
|
+
#profile_block {
|
|
1524
|
+
margin-top: 10px;
|
|
1525
|
+
line-height: 1.5;
|
|
1526
|
+
text-align: left
|
|
1527
|
+
}
|
|
1528
|
+
|
|
1529
|
+
.ing_date {
|
|
1530
|
+
color: #808080
|
|
1531
|
+
}
|
|
1532
|
+
|
|
1533
|
+
.bq_post_comment {
|
|
1534
|
+
margin: 0 0 5px 0;
|
|
1535
|
+
font-style: normal;
|
|
1536
|
+
line-height: 180%;
|
|
1537
|
+
border: 1px solid #ddd;
|
|
1538
|
+
padding: 10px
|
|
1539
|
+
}
|
|
1540
|
+
|
|
1541
|
+
.bq_post_comment img {
|
|
1542
|
+
max-width: 400px;
|
|
1543
|
+
max-height: 300px
|
|
1544
|
+
}
|
|
1545
|
+
|
|
1546
|
+
.bq_post_comment ol {
|
|
1547
|
+
margin-left: 20px;
|
|
1548
|
+
list-style-type: decimal
|
|
1549
|
+
}
|
|
1550
|
+
|
|
1551
|
+
.bq_post_comment ul {
|
|
1552
|
+
margin-left: 20px;
|
|
1553
|
+
list-style-type: disc
|
|
1554
|
+
}
|
|
1555
|
+
|
|
1556
|
+
.blog_comment_body {
|
|
1557
|
+
word-wrap: break-word;
|
|
1558
|
+
overflow-wrap: break-word
|
|
1559
|
+
}
|
|
1560
|
+
|
|
1561
|
+
.blog_comment_body li {
|
|
1562
|
+
margin-left: 28px
|
|
1563
|
+
}
|
|
1564
|
+
|
|
1565
|
+
.blog_comment_body ul>li,.blog_comment_body ol>li {
|
|
1566
|
+
list-style: inherit
|
|
1567
|
+
}
|
|
1568
|
+
|
|
1569
|
+
.blog_comment_body img {
|
|
1570
|
+
max-width: 400px;
|
|
1571
|
+
max-height: 300px
|
|
1572
|
+
}
|
|
1573
|
+
|
|
1574
|
+
.comment-sort {
|
|
1575
|
+
display: flex;
|
|
1576
|
+
align-items: end;
|
|
1577
|
+
font-size: 11px;
|
|
1578
|
+
cursor: pointer;
|
|
1579
|
+
float: right;
|
|
1580
|
+
font-weight: normal
|
|
1581
|
+
}
|
|
1582
|
+
|
|
1583
|
+
.comment-sort svg {
|
|
1584
|
+
margin-left: 5px;
|
|
1585
|
+
width: 16px;
|
|
1586
|
+
height: 16px
|
|
1587
|
+
}
|
|
1588
|
+
|
|
1589
|
+
.comment-sort-item {
|
|
1590
|
+
opacity: .6
|
|
1591
|
+
}
|
|
1592
|
+
|
|
1593
|
+
.comment-sort-item:active,.comment-sort-item:hover {
|
|
1594
|
+
opacity: .85
|
|
1595
|
+
}
|
|
1596
|
+
|
|
1597
|
+
.comment-order-tab {
|
|
1598
|
+
display: flex;
|
|
1599
|
+
align-items: center;
|
|
1600
|
+
column-gap: 2px
|
|
1601
|
+
}
|
|
1602
|
+
|
|
1603
|
+
.comment-order-tab .active {
|
|
1604
|
+
opacity: .85;
|
|
1605
|
+
font-weight: bold
|
|
1606
|
+
}
|
|
1607
|
+
|
|
1608
|
+
img.commenter-vip-logo {
|
|
1609
|
+
height: 14px;
|
|
1610
|
+
vertical-align: middle
|
|
1611
|
+
}
|
|
1612
|
+
|
|
1613
|
+
#post_next_prev {
|
|
1614
|
+
line-height: 1.8;
|
|
1615
|
+
font-size: 12px
|
|
1616
|
+
}
|
|
1617
|
+
|
|
1618
|
+
.post_next_prev_date {
|
|
1619
|
+
color: #808080
|
|
1620
|
+
}
|
|
1621
|
+
|
|
1622
|
+
#post_next_prev a.p_n_p_prefix:link {
|
|
1623
|
+
text-decoration: none
|
|
1624
|
+
}
|
|
1625
|
+
|
|
1626
|
+
#post_next_prev a.p_n_p_prefix:hover {
|
|
1627
|
+
text-decoration: underline
|
|
1628
|
+
}
|
|
1629
|
+
|
|
1630
|
+
#side_ing_block {
|
|
1631
|
+
line-height: 1.5;
|
|
1632
|
+
overflow: hidden
|
|
1633
|
+
}
|
|
1634
|
+
|
|
1635
|
+
#side_ing_block ul li {
|
|
1636
|
+
background-image: url(//assets.cnblogs.com/images/icon_voice.gif);
|
|
1637
|
+
background-repeat: no-repeat;
|
|
1638
|
+
padding: 0 0 0 20px
|
|
1639
|
+
}
|
|
1640
|
+
|
|
1641
|
+
a.ing_lnk:link,a.ing_lnk:active,a.ing_lnk:visited {
|
|
1642
|
+
color: #808080;
|
|
1643
|
+
text-decoration: none;
|
|
1644
|
+
border: 0
|
|
1645
|
+
}
|
|
1646
|
+
|
|
1647
|
+
.itnews {
|
|
1648
|
+
line-height: 150%
|
|
1649
|
+
}
|
|
1650
|
+
|
|
1651
|
+
.job_offer_list {
|
|
1652
|
+
line-height: 150%
|
|
1653
|
+
}
|
|
1654
|
+
|
|
1655
|
+
blockquote {
|
|
1656
|
+
background-image: none;
|
|
1657
|
+
border: 2px solid #efefef;
|
|
1658
|
+
padding-left: 10px;
|
|
1659
|
+
padding-right: 10px;
|
|
1660
|
+
padding-top: 5px;
|
|
1661
|
+
padding-bottom: 5px;
|
|
1662
|
+
margin-top: 10px;
|
|
1663
|
+
margin-bottom: 10px
|
|
1664
|
+
}
|
|
1665
|
+
|
|
1666
|
+
.blogpost-body blockquote {
|
|
1667
|
+
background-image: none;
|
|
1668
|
+
border-left: 3px solid #e2dfdf;
|
|
1669
|
+
border-right: none;
|
|
1670
|
+
border-top: none;
|
|
1671
|
+
border-bottom: none;
|
|
1672
|
+
margin: 10px 0;
|
|
1673
|
+
padding: 5px 10px;
|
|
1674
|
+
color: #555
|
|
1675
|
+
}
|
|
1676
|
+
|
|
1677
|
+
#cnblogs_post_body blockquote {
|
|
1678
|
+
background-image: none
|
|
1679
|
+
}
|
|
1680
|
+
|
|
1681
|
+
#cnblogs_post_body blockquote ul {
|
|
1682
|
+
margin-left: 25px
|
|
1683
|
+
}
|
|
1684
|
+
|
|
1685
|
+
#grade_flag {
|
|
1686
|
+
font-size: 12px
|
|
1687
|
+
}
|
|
1688
|
+
|
|
1689
|
+
.c_b_p_desc {
|
|
1690
|
+
word-wrap: break-word;
|
|
1691
|
+
word-break: break-all;
|
|
1692
|
+
overflow: hidden;
|
|
1693
|
+
line-height: 1.5
|
|
1694
|
+
}
|
|
1695
|
+
|
|
1696
|
+
.c_b_p_desc_readmore {
|
|
1697
|
+
padding-left: 5px
|
|
1698
|
+
}
|
|
1699
|
+
|
|
1700
|
+
.c_b_p_link_desc {
|
|
1701
|
+
margin-top: 2px;
|
|
1702
|
+
word-break: break-word
|
|
1703
|
+
}
|
|
1704
|
+
|
|
1705
|
+
#green_channel {
|
|
1706
|
+
padding: 10px 0;
|
|
1707
|
+
margin-bottom: 20px;
|
|
1708
|
+
margin-top: 10px;
|
|
1709
|
+
border: #c0c0c0 1px dashed;
|
|
1710
|
+
font-size: 12px;
|
|
1711
|
+
width: 350px;
|
|
1712
|
+
text-align: center
|
|
1713
|
+
}
|
|
1714
|
+
|
|
1715
|
+
#green_channel a {
|
|
1716
|
+
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAkCAYAAABIdFAMAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAHhJREFUeNo8zjsOxCAMBFB/KEAUFFR0Cbng3nQPw68ArZdAlOZppPFIBhH5EAB8b+Tlt9MYQ6i1BuqFaq1CKSVcxZ2Acs6406KUgpt5/LCKuVgz5BDCSb13ZO99ZOdcZGvt4mJjzMVKqcha68iIePB86GAiOv8CDADlIUQBs7MD3wAAAABJRU5ErkJggg%3D%3D) repeat-x;
|
|
1717
|
+
display: inline-block;
|
|
1718
|
+
padding: 3px 8px;
|
|
1719
|
+
color: #fff;
|
|
1720
|
+
text-decoration: none;
|
|
1721
|
+
font-weight: bold;
|
|
1722
|
+
cursor: pointer;
|
|
1723
|
+
margin-right: 10px;
|
|
1724
|
+
-moz-border-radius: 5px;
|
|
1725
|
+
-webkit-border-radius: 10px;
|
|
1726
|
+
-moz-box-shadow: 0 1px 3px rgba(0,0,0,.5);
|
|
1727
|
+
-webkit-box-shadow: 0 1px 3px rgba(0,0,0,.5);
|
|
1728
|
+
text-shadow: 0 -1px 1px rgba(0,0,0,.25);
|
|
1729
|
+
vertical-align: middle
|
|
1730
|
+
}
|
|
1731
|
+
|
|
1732
|
+
#green_channel a:hover {
|
|
1733
|
+
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAyCAYAAACd+7GKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAClJREFUeNpi/v//vwMTAwPDfzjBgMpFI/7hFSOT9Y8qRuF3JLoHAQIMAHYtMmRA+CugAAAAAElFTkSuQmCC)
|
|
1734
|
+
}
|
|
1735
|
+
|
|
1736
|
+
#green_channel #green_channel_digg {
|
|
1737
|
+
background-color: #2daebf
|
|
1738
|
+
}
|
|
1739
|
+
|
|
1740
|
+
#green_channel #green_channel_follow {
|
|
1741
|
+
background-color: #e33100
|
|
1742
|
+
}
|
|
1743
|
+
|
|
1744
|
+
#green_channel #green_channel_favorite {
|
|
1745
|
+
background-color: #ffb515
|
|
1746
|
+
}
|
|
1747
|
+
|
|
1748
|
+
#green_channel #green_channel_contact {
|
|
1749
|
+
background-color: #eee;
|
|
1750
|
+
color: #555;
|
|
1751
|
+
display: none
|
|
1752
|
+
}
|
|
1753
|
+
|
|
1754
|
+
#green_channel #green_channel_weibo img {
|
|
1755
|
+
vertical-align: middle;
|
|
1756
|
+
border: none;
|
|
1757
|
+
margin-left: 5px;
|
|
1758
|
+
box-shadow: none
|
|
1759
|
+
}
|
|
1760
|
+
|
|
1761
|
+
#green_channel #green_channel_weibo {
|
|
1762
|
+
background: none;
|
|
1763
|
+
padding: 3px 2px;
|
|
1764
|
+
-moz-border-radius: none;
|
|
1765
|
+
-webkit-border-radius: none;
|
|
1766
|
+
-moz-box-shadow: none;
|
|
1767
|
+
-webkit-box-shadow: none;
|
|
1768
|
+
text-shadow: none
|
|
1769
|
+
}
|
|
1770
|
+
|
|
1771
|
+
#green_channel #green_channel_wechat {
|
|
1772
|
+
background-color: #4eab57
|
|
1773
|
+
}
|
|
1774
|
+
|
|
1775
|
+
#cnblogs_post_body {
|
|
1776
|
+
margin-bottom: 20px
|
|
1777
|
+
}
|
|
1778
|
+
|
|
1779
|
+
#cnblogs_post_body li {
|
|
1780
|
+
list-style: inherit
|
|
1781
|
+
}
|
|
1782
|
+
|
|
1783
|
+
#cnblogs_post_body ul {
|
|
1784
|
+
margin-left: 30px;
|
|
1785
|
+
padding-left: 0;
|
|
1786
|
+
list-style-type: disc
|
|
1787
|
+
}
|
|
1788
|
+
|
|
1789
|
+
#cnblogs_post_body ol {
|
|
1790
|
+
padding-left: 40px;
|
|
1791
|
+
list-style-type: decimal
|
|
1792
|
+
}
|
|
1793
|
+
|
|
1794
|
+
#cnblogs_post_body ul ul {
|
|
1795
|
+
list-style-type: circle
|
|
1796
|
+
}
|
|
1797
|
+
|
|
1798
|
+
#cnblogs_post_body ul ul ul {
|
|
1799
|
+
list-style-type: square
|
|
1800
|
+
}
|
|
1801
|
+
|
|
1802
|
+
ul.contains-task-list {
|
|
1803
|
+
margin-left: 0 !important;
|
|
1804
|
+
padding-left: 0 !important
|
|
1805
|
+
}
|
|
1806
|
+
|
|
1807
|
+
#cnblogs_post_body table,.blogpost-body table {
|
|
1808
|
+
border-collapse: collapse;
|
|
1809
|
+
word-break: break-word
|
|
1810
|
+
}
|
|
1811
|
+
|
|
1812
|
+
#cnblogs_post_body .table-wrapper {
|
|
1813
|
+
display: block;
|
|
1814
|
+
overflow-x: auto
|
|
1815
|
+
}
|
|
1816
|
+
|
|
1817
|
+
#cnblogs_post_body th,.blogpost-body th {
|
|
1818
|
+
background-color: #fafafa
|
|
1819
|
+
}
|
|
1820
|
+
|
|
1821
|
+
.blogpost-body th,.blogpost-body td,.blogpost-body th,.blogpost-body td {
|
|
1822
|
+
border: 1px solid #c0c0c0;
|
|
1823
|
+
border-collapse: collapse;
|
|
1824
|
+
padding: 8px 14px;
|
|
1825
|
+
min-width: 50px
|
|
1826
|
+
}
|
|
1827
|
+
|
|
1828
|
+
#cnblogs_post_body img,.blogpost-body img {
|
|
1829
|
+
max-width: 100% !important;
|
|
1830
|
+
height: auto !important
|
|
1831
|
+
}
|
|
1832
|
+
|
|
1833
|
+
.ad_text_commentbox {
|
|
1834
|
+
margin-top: 5px;
|
|
1835
|
+
margin-bottom: 5px
|
|
1836
|
+
}
|
|
1837
|
+
|
|
1838
|
+
a.comment_uploadimg_a {
|
|
1839
|
+
font-size: 12px
|
|
1840
|
+
}
|
|
1841
|
+
|
|
1842
|
+
#cnblogs_ch {
|
|
1843
|
+
margin-top: 5px;
|
|
1844
|
+
line-height: 1.8
|
|
1845
|
+
}
|
|
1846
|
+
|
|
1847
|
+
cnblogs_ch a {
|
|
1848
|
+
margin-right: 10px
|
|
1849
|
+
}
|
|
1850
|
+
|
|
1851
|
+
#cnblogs_ch:empty {
|
|
1852
|
+
display: none
|
|
1853
|
+
}
|
|
1854
|
+
|
|
1855
|
+
#opt_under_post {
|
|
1856
|
+
line-height: 1.8
|
|
1857
|
+
}
|
|
1858
|
+
|
|
1859
|
+
#opt_under_post a {
|
|
1860
|
+
margin-right: 10px
|
|
1861
|
+
}
|
|
1862
|
+
|
|
1863
|
+
#ad_under_comment2 {
|
|
1864
|
+
margin-bottom: 5px
|
|
1865
|
+
}
|
|
1866
|
+
|
|
1867
|
+
#ad_under_comment2 img {
|
|
1868
|
+
margin-bottom: 5px
|
|
1869
|
+
}
|
|
1870
|
+
|
|
1871
|
+
.recent_comment_author {
|
|
1872
|
+
text-align: right;
|
|
1873
|
+
margin-right: 4px
|
|
1874
|
+
}
|
|
1875
|
+
|
|
1876
|
+
.below-post-card,.c_ad_block,.under-post-card {
|
|
1877
|
+
margin-top: 10px;
|
|
1878
|
+
line-height: 1.5
|
|
1879
|
+
}
|
|
1880
|
+
|
|
1881
|
+
.below-post-card,.under-post-card,#HistoryToday,.recomm-block {
|
|
1882
|
+
max-width: 600px;
|
|
1883
|
+
text-overflow: ellipsis;
|
|
1884
|
+
white-space: nowrap;
|
|
1885
|
+
overflow: hidden
|
|
1886
|
+
}
|
|
1887
|
+
|
|
1888
|
+
.below-post-card {
|
|
1889
|
+
line-height: 1.8;
|
|
1890
|
+
margin-bottom: 10px
|
|
1891
|
+
}
|
|
1892
|
+
|
|
1893
|
+
.below-post-card:empty {
|
|
1894
|
+
display: none
|
|
1895
|
+
}
|
|
1896
|
+
|
|
1897
|
+
.below-post-card header {
|
|
1898
|
+
font-weight: bold;
|
|
1899
|
+
margin: 0;
|
|
1900
|
+
padding: 0
|
|
1901
|
+
}
|
|
1902
|
+
|
|
1903
|
+
.below-post-card ul {
|
|
1904
|
+
margin: 0;
|
|
1905
|
+
padding-left: 10px
|
|
1906
|
+
}
|
|
1907
|
+
|
|
1908
|
+
.below-post-card ul li {
|
|
1909
|
+
list-style-type: "· "
|
|
1910
|
+
}
|
|
1911
|
+
|
|
1912
|
+
.recomm-link {
|
|
1913
|
+
display: block;
|
|
1914
|
+
max-width: 380px;
|
|
1915
|
+
text-overflow: ellipsis;
|
|
1916
|
+
white-space: nowrap;
|
|
1917
|
+
overflow: hidden
|
|
1918
|
+
}
|
|
1919
|
+
|
|
1920
|
+
#cnblogs_t5 {
|
|
1921
|
+
margin-top: 5px
|
|
1922
|
+
}
|
|
1923
|
+
|
|
1924
|
+
.cnblogs_code_toolbar {
|
|
1925
|
+
margin-top: 5px
|
|
1926
|
+
}
|
|
1927
|
+
|
|
1928
|
+
.cnblogs_code_toolbar span {
|
|
1929
|
+
padding-right: 5px
|
|
1930
|
+
}
|
|
1931
|
+
|
|
1932
|
+
input::-moz-focus-inner {
|
|
1933
|
+
border: 0;
|
|
1934
|
+
padding: 0
|
|
1935
|
+
}
|
|
1936
|
+
|
|
1937
|
+
.comment_btn {
|
|
1938
|
+
height: 26px;
|
|
1939
|
+
width: 68px;
|
|
1940
|
+
margin: 0;
|
|
1941
|
+
padding: 0;
|
|
1942
|
+
line-height: 22px
|
|
1943
|
+
}
|
|
1944
|
+
|
|
1945
|
+
#commentbox_opt a {
|
|
1946
|
+
padding-left: 10px
|
|
1947
|
+
}
|
|
1948
|
+
|
|
1949
|
+
#taglist_title {
|
|
1950
|
+
margin-bottom: 10px
|
|
1951
|
+
}
|
|
1952
|
+
|
|
1953
|
+
#taglist td {
|
|
1954
|
+
padding: 5px 20px 5px 10px
|
|
1955
|
+
}
|
|
1956
|
+
|
|
1957
|
+
.Cal {
|
|
1958
|
+
width: 100%
|
|
1959
|
+
}
|
|
1960
|
+
|
|
1961
|
+
.CalTitle {
|
|
1962
|
+
width: 100%
|
|
1963
|
+
}
|
|
1964
|
+
|
|
1965
|
+
.new-comment-block {
|
|
1966
|
+
line-height: 1.5
|
|
1967
|
+
}
|
|
1968
|
+
|
|
1969
|
+
.new-comment-block img {
|
|
1970
|
+
max-width: 400px;
|
|
1971
|
+
max-height: 300px
|
|
1972
|
+
}
|
|
1973
|
+
|
|
1974
|
+
.new-comment-title span {
|
|
1975
|
+
margin-left: 5px
|
|
1976
|
+
}
|
|
1977
|
+
|
|
1978
|
+
.new-comment-title a {
|
|
1979
|
+
margin-left: 5px
|
|
1980
|
+
}
|
|
1981
|
+
|
|
1982
|
+
.pager {
|
|
1983
|
+
font-size: 12px;
|
|
1984
|
+
margin: 10px 0;
|
|
1985
|
+
text-align: center;
|
|
1986
|
+
color: #2e6ab1;
|
|
1987
|
+
line-height: 200%
|
|
1988
|
+
}
|
|
1989
|
+
|
|
1990
|
+
.pager a {
|
|
1991
|
+
border: 1px solid #9aafe5;
|
|
1992
|
+
color: #2e6ab1;
|
|
1993
|
+
margin: 0 2px;
|
|
1994
|
+
padding: 2px 5px;
|
|
1995
|
+
text-decoration: none
|
|
1996
|
+
}
|
|
1997
|
+
|
|
1998
|
+
.pager span.current {
|
|
1999
|
+
background-color: #2e6ab1;
|
|
2000
|
+
border: 1px solid #000080;
|
|
2001
|
+
color: #fff;
|
|
2002
|
+
font-weight: bold;
|
|
2003
|
+
margin: 0 2px;
|
|
2004
|
+
padding: 2px 5px
|
|
2005
|
+
}
|
|
2006
|
+
|
|
2007
|
+
.comment_vote {
|
|
2008
|
+
text-align: right
|
|
2009
|
+
}
|
|
2010
|
+
|
|
2011
|
+
.comment_vote a {
|
|
2012
|
+
text-decoration: none !important;
|
|
2013
|
+
padding-left: 10px
|
|
2014
|
+
}
|
|
2015
|
+
|
|
2016
|
+
.comment_actions a {
|
|
2017
|
+
padding-right: 10px
|
|
2018
|
+
}
|
|
2019
|
+
|
|
2020
|
+
.comment_actions a:last-child {
|
|
2021
|
+
padding-right: 0
|
|
2022
|
+
}
|
|
2023
|
+
|
|
2024
|
+
.recent_comment_body {
|
|
2025
|
+
word-wrap: break-word
|
|
2026
|
+
}
|
|
2027
|
+
|
|
2028
|
+
#taglist_main {
|
|
2029
|
+
margin-top: 20px
|
|
2030
|
+
}
|
|
2031
|
+
|
|
2032
|
+
#taglist_main #taglist .small {
|
|
2033
|
+
font-size: 12px
|
|
2034
|
+
}
|
|
2035
|
+
|
|
2036
|
+
#taglist_title_wrap {
|
|
2037
|
+
margin-left: auto;
|
|
2038
|
+
margin-right: auto;
|
|
2039
|
+
text-align: center
|
|
2040
|
+
}
|
|
2041
|
+
|
|
2042
|
+
.category-block-list {
|
|
2043
|
+
padding: 20px;
|
|
2044
|
+
display: grid;
|
|
2045
|
+
row-gap: 10px;
|
|
2046
|
+
grid-template-columns: repeat(1,minmax(0,1fr))
|
|
2047
|
+
}
|
|
2048
|
+
|
|
2049
|
+
.category-block {
|
|
2050
|
+
display: flex;
|
|
2051
|
+
flex-direction: column;
|
|
2052
|
+
flex-wrap: wrap;
|
|
2053
|
+
margin-top: 10px;
|
|
2054
|
+
margin-bottom: 10px
|
|
2055
|
+
}
|
|
2056
|
+
|
|
2057
|
+
.category-block-title {
|
|
2058
|
+
font-weight: bold;
|
|
2059
|
+
line-height: 1.2em
|
|
2060
|
+
}
|
|
2061
|
+
|
|
2062
|
+
.category-link-list {
|
|
2063
|
+
display: grid;
|
|
2064
|
+
grid-template-columns: repeat(4,minmax(0,1fr));
|
|
2065
|
+
column-gap: .5em;
|
|
2066
|
+
row-gap: .5em;
|
|
2067
|
+
margin-top: 10px
|
|
2068
|
+
}
|
|
2069
|
+
|
|
2070
|
+
.entrylistTitle .category-crumb-item,.entrylistTitle a.category-crumb-item:visited {
|
|
2071
|
+
color: inherit
|
|
2072
|
+
}
|
|
2073
|
+
|
|
2074
|
+
#cnblogs_post_body {
|
|
2075
|
+
word-break: break-word
|
|
2076
|
+
}
|
|
2077
|
+
|
|
2078
|
+
#cnblogs_post_body>pre,#cnblogs_post_body p,.blogpost-body>pre,.blogpost-body p {
|
|
2079
|
+
margin: 10px auto
|
|
2080
|
+
}
|
|
2081
|
+
|
|
2082
|
+
#cnblogs_post_body p,.blogpost-body p {
|
|
2083
|
+
text-indent: 0
|
|
2084
|
+
}
|
|
2085
|
+
|
|
2086
|
+
#cnblogs_post_body h1 {
|
|
2087
|
+
font-size: 28px;
|
|
2088
|
+
font-weight: bold;
|
|
2089
|
+
line-height: 1.5;
|
|
2090
|
+
margin: 10px 0
|
|
2091
|
+
}
|
|
2092
|
+
|
|
2093
|
+
#cnblogs_post_body h2 {
|
|
2094
|
+
font-size: 21px;
|
|
2095
|
+
font-weight: bold;
|
|
2096
|
+
line-height: 1.5;
|
|
2097
|
+
margin: 10px 0
|
|
2098
|
+
}
|
|
2099
|
+
|
|
2100
|
+
#cnblogs_post_body h3 {
|
|
2101
|
+
font-size: 16px;
|
|
2102
|
+
font-weight: bold;
|
|
2103
|
+
line-height: 1.5;
|
|
2104
|
+
margin: 10px 0
|
|
2105
|
+
}
|
|
2106
|
+
|
|
2107
|
+
#cnblogs_post_body h4 {
|
|
2108
|
+
font-size: 14px;
|
|
2109
|
+
font-weight: bold;
|
|
2110
|
+
margin: 10px 0
|
|
2111
|
+
}
|
|
2112
|
+
|
|
2113
|
+
#cnblogs_post_body h5 {
|
|
2114
|
+
font-size: 12px;
|
|
2115
|
+
font-weight: bold;
|
|
2116
|
+
margin: 10px 0
|
|
2117
|
+
}
|
|
2118
|
+
|
|
2119
|
+
#cnblogs_post_body h6 {
|
|
2120
|
+
font-size: 11px;
|
|
2121
|
+
font-weight: bold;
|
|
2122
|
+
margin: 10px 0
|
|
2123
|
+
}
|
|
2124
|
+
|
|
2125
|
+
.blog_comment_body h1,.blog_comment_body h2,.blog_comment_body h3,.blog_comment_body h4,.blog_comment_body h5,.blog_comment_body h6,.recent_comment_body h1,.recent_comment_body h2,.recent_comment_body h3,.recent_comment_body h4,.recent_comment_body h5,.recent_comment_body h6 {
|
|
2126
|
+
font-size: 13px;
|
|
2127
|
+
font-weight: normal;
|
|
2128
|
+
margin: 10px 0
|
|
2129
|
+
}
|
|
2130
|
+
|
|
2131
|
+
#cnblogs_post_body hr {
|
|
2132
|
+
border-top: #ececef;
|
|
2133
|
+
border-color: rgba(0,0,0,.15);
|
|
2134
|
+
margin: 5px 0
|
|
2135
|
+
}
|
|
2136
|
+
|
|
2137
|
+
.recent_comment_body strong {
|
|
2138
|
+
font-weight: normal
|
|
2139
|
+
}
|
|
2140
|
+
|
|
2141
|
+
.blog_comment_body em,.recent_comment_body em {
|
|
2142
|
+
font-style: normal
|
|
2143
|
+
}
|
|
2144
|
+
|
|
2145
|
+
.blog_comment_body hr,.bq_post_comment hr {
|
|
2146
|
+
visibility: hidden
|
|
2147
|
+
}
|
|
2148
|
+
|
|
2149
|
+
#div_digg .diggnum {
|
|
2150
|
+
line-height: 1.5em !important
|
|
2151
|
+
}
|
|
2152
|
+
|
|
2153
|
+
#div_digg .burynum {
|
|
2154
|
+
line-height: 1.5em !important
|
|
2155
|
+
}
|
|
2156
|
+
|
|
2157
|
+
#green_channel a:link,#green_channel a:visited,#green_channel a:active {
|
|
2158
|
+
color: #fff !important;
|
|
2159
|
+
border: none !important
|
|
2160
|
+
}
|
|
2161
|
+
|
|
2162
|
+
#myposts .myposts_title {
|
|
2163
|
+
font-size: 15px
|
|
2164
|
+
}
|
|
2165
|
+
|
|
2166
|
+
#myposts {
|
|
2167
|
+
margin-left: 20px
|
|
2168
|
+
}
|
|
2169
|
+
|
|
2170
|
+
#myposts .pager {
|
|
2171
|
+
text-align: right;
|
|
2172
|
+
margin-right: 10px
|
|
2173
|
+
}
|
|
2174
|
+
|
|
2175
|
+
#myposts .PostList {
|
|
2176
|
+
margin-right: 20px;
|
|
2177
|
+
margin-top: 10px;
|
|
2178
|
+
font-size: 13px
|
|
2179
|
+
}
|
|
2180
|
+
|
|
2181
|
+
#myposts .PostList .comment-body {
|
|
2182
|
+
clear: both;
|
|
2183
|
+
padding-top: 20px;
|
|
2184
|
+
padding-bottom: 10px
|
|
2185
|
+
}
|
|
2186
|
+
|
|
2187
|
+
.vertical-middle>* {
|
|
2188
|
+
vertical-align: middle
|
|
2189
|
+
}
|
|
2190
|
+
|
|
2191
|
+
.text-tail-icon {
|
|
2192
|
+
width: 20px;
|
|
2193
|
+
height: 20px
|
|
2194
|
+
}
|
|
2195
|
+
|
|
2196
|
+
.text-tail-icon-draft {
|
|
2197
|
+
width: 16px;
|
|
2198
|
+
height: 16px
|
|
2199
|
+
}
|
|
2200
|
+
|
|
2201
|
+
#myposts .postTitle2 {
|
|
2202
|
+
font-size: 13px
|
|
2203
|
+
}
|
|
2204
|
+
|
|
2205
|
+
#myposts .postDesc2 {
|
|
2206
|
+
font-size: 12px
|
|
2207
|
+
}
|
|
2208
|
+
|
|
2209
|
+
#myposts .postText2 {
|
|
2210
|
+
font-size: 13px;
|
|
2211
|
+
margin-bottom: 5px
|
|
2212
|
+
}
|
|
2213
|
+
|
|
2214
|
+
#blog-news {
|
|
2215
|
+
overflow: hidden
|
|
2216
|
+
}
|
|
2217
|
+
|
|
2218
|
+
#sidebar_news_content {
|
|
2219
|
+
margin-top: 10px
|
|
2220
|
+
}
|
|
2221
|
+
|
|
2222
|
+
pre.prettyprint code {
|
|
2223
|
+
font-family: "Courier New",sans-serif !important;
|
|
2224
|
+
font-size: 12px !important;
|
|
2225
|
+
line-height: 20px;
|
|
2226
|
+
background-color: #f5f5f5 !important;
|
|
2227
|
+
border: 1px solid #ccc !important;
|
|
2228
|
+
padding: 0 5px !important;
|
|
2229
|
+
border-radius: 3px !important;
|
|
2230
|
+
line-height: 1.8;
|
|
2231
|
+
margin: 1px 5px;
|
|
2232
|
+
vertical-align: middle;
|
|
2233
|
+
display: block;
|
|
2234
|
+
overflow-x: auto
|
|
2235
|
+
}
|
|
2236
|
+
|
|
2237
|
+
.mermaid {
|
|
2238
|
+
white-space: pre-wrap
|
|
2239
|
+
}
|
|
2240
|
+
|
|
2241
|
+
.mermaid>svg {
|
|
2242
|
+
display: block;
|
|
2243
|
+
margin: 0 auto
|
|
2244
|
+
}
|
|
2245
|
+
|
|
2246
|
+
#cnblogs_post_body img[id^="uploading_image_"] {
|
|
2247
|
+
display: none
|
|
2248
|
+
}
|
|
2249
|
+
|
|
2250
|
+
#bigbanner_close {
|
|
2251
|
+
position: absolute;
|
|
2252
|
+
margin-left: 10px;
|
|
2253
|
+
cursor: pointer
|
|
2254
|
+
}
|
|
2255
|
+
|
|
2256
|
+
#sidebar_ad {
|
|
2257
|
+
display: none
|
|
2258
|
+
}
|
|
2259
|
+
|
|
2260
|
+
#sidebar_c3 {
|
|
2261
|
+
max-width: 100% !important;
|
|
2262
|
+
height: auto !important
|
|
2263
|
+
}
|
|
2264
|
+
|
|
2265
|
+
#sidebar_c3 img {
|
|
2266
|
+
max-width: 100% !important;
|
|
2267
|
+
height: auto !important
|
|
2268
|
+
}
|
|
2269
|
+
|
|
2270
|
+
.navbar-custom {
|
|
2271
|
+
display: none
|
|
2272
|
+
}
|
|
2273
|
+
|
|
2274
|
+
.under-comment-nav ul {
|
|
2275
|
+
margin: 0 10px 10px 25px;
|
|
2276
|
+
padding: 0
|
|
2277
|
+
}
|
|
2278
|
+
|
|
2279
|
+
.under-comment-nav ul li {
|
|
2280
|
+
padding: 0 20px 0 0;
|
|
2281
|
+
display: inline
|
|
2282
|
+
}
|
|
2283
|
+
|
|
2284
|
+
.under-comment-box-nav ul {
|
|
2285
|
+
margin-left: 5px
|
|
2286
|
+
}
|
|
2287
|
+
|
|
2288
|
+
.under-comment-nav {
|
|
2289
|
+
margin-bottom: 10px;
|
|
2290
|
+
margin-left: 25px
|
|
2291
|
+
}
|
|
2292
|
+
|
|
2293
|
+
.under-comment-box-nav {
|
|
2294
|
+
margin-bottom: 10px;
|
|
2295
|
+
margin-left: 5px
|
|
2296
|
+
}
|
|
2297
|
+
|
|
2298
|
+
#blog-comments-placeholder:empty {
|
|
2299
|
+
display: none
|
|
2300
|
+
}
|
|
2301
|
+
|
|
2302
|
+
#commentform_title a {
|
|
2303
|
+
font-size: 13px
|
|
2304
|
+
}
|
|
2305
|
+
|
|
2306
|
+
.formobile {
|
|
2307
|
+
display: none
|
|
2308
|
+
}
|
|
2309
|
+
|
|
2310
|
+
.dropdown-menu a:visited,.dropdown-menu a:active {
|
|
2311
|
+
text-decoration: none
|
|
2312
|
+
}
|
|
2313
|
+
|
|
2314
|
+
.dropdown-menu a:hover {
|
|
2315
|
+
text-decoration: underline
|
|
2316
|
+
}
|
|
2317
|
+
|
|
2318
|
+
.bannerbar,.imagebar {
|
|
2319
|
+
line-height: 0;
|
|
2320
|
+
text-align: left
|
|
2321
|
+
}
|
|
2322
|
+
|
|
2323
|
+
.bannerbar img,.imagebar img {
|
|
2324
|
+
width: 100%
|
|
2325
|
+
}
|
|
2326
|
+
|
|
2327
|
+
.gallery img {
|
|
2328
|
+
max-width: 100%
|
|
2329
|
+
}
|
|
2330
|
+
|
|
2331
|
+
.blogpost-body-html pre.codeblock {
|
|
2332
|
+
background-color: #f5f5f5;
|
|
2333
|
+
padding: 10px
|
|
2334
|
+
}
|
|
2335
|
+
|
|
2336
|
+
.bannerbar.aliyun.forpc {
|
|
2337
|
+
background-repeat: repeat-x;
|
|
2338
|
+
height: 32px
|
|
2339
|
+
}
|
|
2340
|
+
|
|
2341
|
+
.bannerbar.aliyun.forpc img {
|
|
2342
|
+
height: 32px;
|
|
2343
|
+
width: auto
|
|
2344
|
+
}
|
|
2345
|
+
|
|
2346
|
+
.bannerbar.forpc,.imagebar.forpc {
|
|
2347
|
+
height: 32px;
|
|
2348
|
+
display: flex
|
|
2349
|
+
}
|
|
2350
|
+
|
|
2351
|
+
.bannerbar.forpc img,.imagebar.forpc img {
|
|
2352
|
+
height: 32px;
|
|
2353
|
+
width: auto
|
|
2354
|
+
}
|
|
2355
|
+
|
|
2356
|
+
.bannerbar.forpc img.right,.imagebar.forpc img.right {
|
|
2357
|
+
margin-left: auto
|
|
2358
|
+
}
|
|
2359
|
+
|
|
2360
|
+
#navbar_lite_mode_on {
|
|
2361
|
+
vertical-align: middle
|
|
2362
|
+
}
|
|
2363
|
+
|
|
2364
|
+
pre.best-text,pre.reply-text {
|
|
2365
|
+
white-space: pre-wrap
|
|
2366
|
+
}
|
|
2367
|
+
|
|
2368
|
+
.blogpost-body-html span[style*="font-size: x-small"],.blogpost-body-html span[style*="font-size:x-small"],.blogpost-body-html span[style*="font-size: xx-small"],.blogpost-body-html span[style*="font-size:xx-small"] {
|
|
2369
|
+
font-size: 13px !important
|
|
2370
|
+
}
|
|
2371
|
+
|
|
2372
|
+
.blogpost-body-html span img {
|
|
2373
|
+
border: none
|
|
2374
|
+
}
|
|
2375
|
+
|
|
2376
|
+
.syntaxhighlighter td {
|
|
2377
|
+
min-width: auto !important
|
|
2378
|
+
}
|
|
2379
|
+
|
|
2380
|
+
.category-item-link {
|
|
2381
|
+
word-break: break-word
|
|
2382
|
+
}
|
|
2383
|
+
|
|
2384
|
+
.category-item-link--indent {
|
|
2385
|
+
padding-left: var(--cnb-category-item-link-indent-size,0)
|
|
2386
|
+
}
|
|
2387
|
+
|
|
2388
|
+
.category-item-link-current {
|
|
2389
|
+
font-weight: bold
|
|
2390
|
+
}
|
|
2391
|
+
|
|
2392
|
+
#blog_c1,#blog_c1 img {
|
|
2393
|
+
width: 300px;
|
|
2394
|
+
height: 250px
|
|
2395
|
+
}
|
|
2396
|
+
|
|
2397
|
+
#cnblogs_c2 img {
|
|
2398
|
+
width: 468px;
|
|
2399
|
+
height: 60px
|
|
2400
|
+
}
|
|
2401
|
+
|
|
2402
|
+
.medium-zoom-overlay {
|
|
2403
|
+
z-index: 98
|
|
2404
|
+
}
|
|
2405
|
+
|
|
2406
|
+
.medium-zoom-image--opened {
|
|
2407
|
+
z-index: 99
|
|
2408
|
+
}
|
|
2409
|
+
|
|
2410
|
+
.sidebar-card-title-a,a.sidebar-card-title-a:link,a.sidebar-card-title-a:visited {
|
|
2411
|
+
font-style: inherit !important;
|
|
2412
|
+
font-weight: inherit !important;
|
|
2413
|
+
font-size: inherit !important;
|
|
2414
|
+
color: inherit !important
|
|
2415
|
+
}
|
|
2416
|
+
|
|
2417
|
+
.sidebar-category-item-count {
|
|
2418
|
+
font-size: 11px;
|
|
2419
|
+
font-weight: normal
|
|
2420
|
+
}
|
|
2421
|
+
|
|
2422
|
+
img.sidebar-vip-logo {
|
|
2423
|
+
height: 14px;
|
|
2424
|
+
vertical-align: middle
|
|
2425
|
+
}
|
|
2426
|
+
|
|
2427
|
+
img.post-footer-vip-logo {
|
|
2428
|
+
height: 14px;
|
|
2429
|
+
vertical-align: middle
|
|
2430
|
+
}
|
|
2431
|
+
|
|
2432
|
+
.hljs-cto .operation_box,.hljs-cto .pre-numbering {
|
|
2433
|
+
display: none
|
|
2434
|
+
}
|
|
2435
|
+
|
|
2436
|
+
a.footer-brand:link,a.footer-brand:visited {
|
|
2437
|
+
color: inherit
|
|
2438
|
+
}
|
|
2439
|
+
|
|
2440
|
+
.footer-icp {
|
|
2441
|
+
line-height: 30px
|
|
2442
|
+
}
|
|
2443
|
+
|
|
2444
|
+
.footer-icp img {
|
|
2445
|
+
vertical-align: middle;
|
|
2446
|
+
margin: 0 5px;
|
|
2447
|
+
width: 18px;
|
|
2448
|
+
height: 18px
|
|
2449
|
+
}
|
|
2450
|
+
|
|
2451
|
+
.footer-icp a:link,.footer-icp a:visited {
|
|
2452
|
+
color: inherit;
|
|
2453
|
+
margin-right: 10px
|
|
2454
|
+
}
|
|
2455
|
+
|
|
2456
|
+
.cnb-code-toolbar {
|
|
2457
|
+
color: inherit
|
|
2458
|
+
}
|
|
2459
|
+
|
|
2460
|
+
.cnb-code-toolbar {
|
|
2461
|
+
--cnb-code-toolbar-spacing: 4px;
|
|
2462
|
+
--cnb-code-toolbar-bg: var(--cnb-code-bg,inherit);
|
|
2463
|
+
--cnb-code-toolbar-initial-opacity: .8;
|
|
2464
|
+
--cnb-code-toolbar-animation-duration: .1s;
|
|
2465
|
+
--cnb-code-toolbar-mix-blend-mode: screen;
|
|
2466
|
+
--cnb-code-toolbar-opacity: var(--cnb-code-toolbar-initial-opacity);
|
|
2467
|
+
--cnb-code-toolbar-font: 'PingFang SC','Microsoft YaHei','Helvetica Neue','Helvetica','Arial',sans-serif;
|
|
2468
|
+
display: flex;
|
|
2469
|
+
position: absolute;
|
|
2470
|
+
right: var(--cnb-code-toolbar-spacing);
|
|
2471
|
+
top: calc(var(--cnb-code-toolbar-spacing) + var(--cnb-code-toolbar-offset-top,0%));
|
|
2472
|
+
text-shadow: none;
|
|
2473
|
+
justify-content: flex-end;
|
|
2474
|
+
transition-property: color,opacity;
|
|
2475
|
+
transition-duration: var(--cnb-code-toolbar-animation-duration);
|
|
2476
|
+
animation: fadeIn;
|
|
2477
|
+
animation-duration: var(--cnb-code-toolbar-animation-duration);
|
|
2478
|
+
font-size: 12px;
|
|
2479
|
+
font-family: var(--cnb-code-toolbar-font);
|
|
2480
|
+
color: var(--cnb-code-color,inherit);
|
|
2481
|
+
margin: 0;
|
|
2482
|
+
padding: 0;
|
|
2483
|
+
border: none;
|
|
2484
|
+
background: transparent
|
|
2485
|
+
}
|
|
2486
|
+
|
|
2487
|
+
pre:not([data-dark-theme]) .cnb-code-toolbar {
|
|
2488
|
+
--cnb-code-toolbar-mix-blend-mode: multiply
|
|
2489
|
+
}
|
|
2490
|
+
|
|
2491
|
+
.cnb-code-toolbar:hover {
|
|
2492
|
+
--cnb-code-toolbar-opacity: 1
|
|
2493
|
+
}
|
|
2494
|
+
|
|
2495
|
+
[has-selection] .cnb-code-toolbar,[has-selection] .cnb-code-toolbar:hover {
|
|
2496
|
+
opacity: 0;
|
|
2497
|
+
display: none;
|
|
2498
|
+
transition-duration: 0s
|
|
2499
|
+
}
|
|
2500
|
+
|
|
2501
|
+
pre[cnb-code-toolbar-active] {
|
|
2502
|
+
position: relative
|
|
2503
|
+
}
|
|
2504
|
+
|
|
2505
|
+
span.cnb-code-toolbar-item {
|
|
2506
|
+
display: inline-flex;
|
|
2507
|
+
align-items: center;
|
|
2508
|
+
justify-content: center;
|
|
2509
|
+
cursor: pointer;
|
|
2510
|
+
user-select: none;
|
|
2511
|
+
border-radius: 3px;
|
|
2512
|
+
padding: 0 4px;
|
|
2513
|
+
-webkit-user-select: none;
|
|
2514
|
+
white-space: pre;
|
|
2515
|
+
position: relative;
|
|
2516
|
+
background: var(--cnb-code-toolbar-bg,inherit);
|
|
2517
|
+
mix-blend-mode: var(--cnb-code-toolbar-mix-blend-mode);
|
|
2518
|
+
opacity: var(--cnb-code-toolbar-opacity)
|
|
2519
|
+
}
|
|
2520
|
+
|
|
2521
|
+
span.cnb-code-toolbar-item:not(:last-child) {
|
|
2522
|
+
margin-right: var(--cnb-code-toolbar-spacing)
|
|
2523
|
+
}
|
|
2524
|
+
|
|
2525
|
+
svg.cnb-code-toolbar-icon {
|
|
2526
|
+
height: 14px;
|
|
2527
|
+
width: 14px;
|
|
2528
|
+
fill: currentColor
|
|
2529
|
+
}
|
|
2530
|
+
|
|
2531
|
+
@keyframes fadeIn {
|
|
2532
|
+
0% {
|
|
2533
|
+
opacity: 0
|
|
2534
|
+
}
|
|
2535
|
+
|
|
2536
|
+
100% {
|
|
2537
|
+
opacity: var(--cnb-code-toolbar-initial-opacity)
|
|
2538
|
+
}
|
|
2539
|
+
}
|
|
2540
|
+
|
|
2541
|
+
pre:fullscreen,pre:fullscreen code {
|
|
2542
|
+
box-sizing: border-box;
|
|
2543
|
+
border-radius: 0;
|
|
2544
|
+
height: 100vh;
|
|
2545
|
+
width: 100vw
|
|
2546
|
+
}
|
|
2547
|
+
|
|
2548
|
+
.code-fullscreen-overlay {
|
|
2549
|
+
position: fixed;
|
|
2550
|
+
transition-property: width,height,left,top,background,opacity;
|
|
2551
|
+
transition-duration: .25s;
|
|
2552
|
+
text-align: left;
|
|
2553
|
+
z-index: 1000
|
|
2554
|
+
}
|
|
2555
|
+
|
|
2556
|
+
.code-fullscreen-overlay pre,.hljs-engine .code-fullscreen-overlay code {
|
|
2557
|
+
position: absolute !important;
|
|
2558
|
+
left: 0;
|
|
2559
|
+
right: 0;
|
|
2560
|
+
top: 0;
|
|
2561
|
+
bottom: 0
|
|
2562
|
+
}
|
|
2563
|
+
|
|
2564
|
+
.code-fullscreen-overlay pre {
|
|
2565
|
+
margin-top: 0 !important;
|
|
2566
|
+
margin-bottom: 0 !important
|
|
2567
|
+
}
|
|
2568
|
+
|
|
2569
|
+
.code-fullscreen-body {
|
|
2570
|
+
overflow: hidden;
|
|
2571
|
+
max-height: 100vh
|
|
2572
|
+
}
|
|
2573
|
+
|
|
2574
|
+
#commentform_title {
|
|
2575
|
+
background-image: url(//assets.cnblogs.com/images/icon_addcomment.gif);
|
|
2576
|
+
background-repeat: no-repeat;
|
|
2577
|
+
padding: 0 0 0 25px;
|
|
2578
|
+
margin-bottom: 10px
|
|
2579
|
+
}
|
|
2580
|
+
|
|
2581
|
+
div.commentform input.author,div.commentform input.email,div.commentform input.url {
|
|
2582
|
+
background-image: url(//assets.cnblogs.com/images/icon_form.gif);
|
|
2583
|
+
background-repeat: no-repeat;
|
|
2584
|
+
border: 1px solid #ccc;
|
|
2585
|
+
padding: 4px 4px 4px 30px;
|
|
2586
|
+
width: 300px;
|
|
2587
|
+
font-size: 13px
|
|
2588
|
+
}
|
|
2589
|
+
|
|
2590
|
+
div.commentform input.author {
|
|
2591
|
+
background-position: 3px -3px
|
|
2592
|
+
}
|
|
2593
|
+
|
|
2594
|
+
div.commentform input.email {
|
|
2595
|
+
background-position: 3px -33px
|
|
2596
|
+
}
|
|
2597
|
+
|
|
2598
|
+
div.commentform input.url {
|
|
2599
|
+
background-position: 3px -63px
|
|
2600
|
+
}
|
|
2601
|
+
|
|
2602
|
+
.comment_textarea {
|
|
2603
|
+
padding: 8px 14px;
|
|
2604
|
+
background-color: #fff;
|
|
2605
|
+
-webkit-box-sizing: border-box;
|
|
2606
|
+
box-sizing: border-box;
|
|
2607
|
+
border: 1px solid #ddd;
|
|
2608
|
+
width: 600px;
|
|
2609
|
+
max-width: 100%;
|
|
2610
|
+
border-radius: 3px;
|
|
2611
|
+
-webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
|
|
2612
|
+
transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
|
|
2613
|
+
-o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
|
|
2614
|
+
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
|
|
2615
|
+
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
|
|
2616
|
+
margin-bottom: 10px
|
|
2617
|
+
}
|
|
2618
|
+
|
|
2619
|
+
div.commentform textarea {
|
|
2620
|
+
line-height: 1.6;
|
|
2621
|
+
width: 100%;
|
|
2622
|
+
height: 250px;
|
|
2623
|
+
resize: vertical;
|
|
2624
|
+
-webkit-box-sizing: border-box;
|
|
2625
|
+
box-sizing: border-box;
|
|
2626
|
+
outline: none;
|
|
2627
|
+
font-size: 13px;
|
|
2628
|
+
border: none;
|
|
2629
|
+
font-family: "PingFang SC","Helvetica Neue","Helvetica","Arial",sans-serif;
|
|
2630
|
+
padding: 8px 0
|
|
2631
|
+
}
|
|
2632
|
+
|
|
2633
|
+
#tbCommentBodyPreview {
|
|
2634
|
+
margin-left: 5px
|
|
2635
|
+
}
|
|
2636
|
+
|
|
2637
|
+
.comment_preview {
|
|
2638
|
+
width: 100%;
|
|
2639
|
+
min-height: 150px;
|
|
2640
|
+
-webkit-box-sizing: border-box;
|
|
2641
|
+
box-sizing: border-box;
|
|
2642
|
+
border: none;
|
|
2643
|
+
padding: 0
|
|
2644
|
+
}
|
|
2645
|
+
|
|
2646
|
+
.comment_preview p,div.commentform p {
|
|
2647
|
+
margin: 10px 0
|
|
2648
|
+
}
|
|
2649
|
+
|
|
2650
|
+
.commentbox_footer,.commentbox_title {
|
|
2651
|
+
width: 100%;
|
|
2652
|
+
display: -webkit-box;
|
|
2653
|
+
display: -webkit-flex;
|
|
2654
|
+
display: -ms-flexbox;
|
|
2655
|
+
display: flex;
|
|
2656
|
+
-webkit-flex-wrap: wrap;
|
|
2657
|
+
-ms-flex-wrap: wrap;
|
|
2658
|
+
flex-wrap: wrap;
|
|
2659
|
+
-webkit-box-pack: justify;
|
|
2660
|
+
-webkit-justify-content: space-between;
|
|
2661
|
+
-ms-flex-pack: justify;
|
|
2662
|
+
justify-content: space-between;
|
|
2663
|
+
-webkit-box-align: center;
|
|
2664
|
+
-webkit-align-items: center;
|
|
2665
|
+
-ms-flex-align: center;
|
|
2666
|
+
align-items: center
|
|
2667
|
+
}
|
|
2668
|
+
|
|
2669
|
+
.commentbox_title {
|
|
2670
|
+
border-bottom: 1px solid #ddd
|
|
2671
|
+
}
|
|
2672
|
+
|
|
2673
|
+
.commentbox_footer {
|
|
2674
|
+
border-top: 1px solid #d2d2d2;
|
|
2675
|
+
padding-top: 10px
|
|
2676
|
+
}
|
|
2677
|
+
|
|
2678
|
+
.commentbox_tab {
|
|
2679
|
+
margin: 0 1rem 0 0;
|
|
2680
|
+
list-style: none;
|
|
2681
|
+
line-height: 28px;
|
|
2682
|
+
cursor: pointer;
|
|
2683
|
+
padding: 0 5px 0 5px;
|
|
2684
|
+
letter-spacing: .1rem;
|
|
2685
|
+
text-align: center;
|
|
2686
|
+
color: #707070
|
|
2687
|
+
}
|
|
2688
|
+
|
|
2689
|
+
.commentbox_tab:hover,.commentbox_tab.active {
|
|
2690
|
+
border-bottom: 2px solid #367cc2;
|
|
2691
|
+
color: #000
|
|
2692
|
+
}
|
|
2693
|
+
|
|
2694
|
+
.commentbox_title_left {
|
|
2695
|
+
display: -webkit-box;
|
|
2696
|
+
display: -webkit-flex;
|
|
2697
|
+
display: -ms-flexbox;
|
|
2698
|
+
display: flex
|
|
2699
|
+
}
|
|
2700
|
+
|
|
2701
|
+
.commentbox_title_right {
|
|
2702
|
+
display: -webkit-box;
|
|
2703
|
+
display: -webkit-flex;
|
|
2704
|
+
display: -ms-flexbox;
|
|
2705
|
+
display: flex;
|
|
2706
|
+
-webkit-box-align: center;
|
|
2707
|
+
-webkit-align-items: center;
|
|
2708
|
+
-ms-flex-align: center;
|
|
2709
|
+
align-items: center;
|
|
2710
|
+
-webkit-box-pack: justify;
|
|
2711
|
+
/* -webkit-justify-content:space-between; */
|
|
2712
|
+
-ms-flex-pack: justify;
|
|
2713
|
+
/* justify-content:space-between; */
|
|
2714
|
+
margin-bottom: 5px
|
|
2715
|
+
}
|
|
2716
|
+
|
|
2717
|
+
textarea#tbCommentBody::-webkit-input-placeholder {
|
|
2718
|
+
color: #a9a9a9
|
|
2719
|
+
}
|
|
2720
|
+
|
|
2721
|
+
textarea#tbCommentBody::-moz-placeholder {
|
|
2722
|
+
color: #a9a9a9
|
|
2723
|
+
}
|
|
2724
|
+
|
|
2725
|
+
textarea#tbCommentBody:-ms-input-placeholder {
|
|
2726
|
+
color: #a9a9a9
|
|
2727
|
+
}
|
|
2728
|
+
|
|
2729
|
+
textarea#tbCommentBody::-ms-input-placeholder {
|
|
2730
|
+
color: #a9a9a9
|
|
2731
|
+
}
|
|
2732
|
+
|
|
2733
|
+
textarea#tbCommentBody::placeholder {
|
|
2734
|
+
color: #a9a9a9
|
|
2735
|
+
}
|
|
2736
|
+
|
|
2737
|
+
.login_tips {
|
|
2738
|
+
background-image: url(//assets.cnblogs.com/images/icon_addcomment.gif);
|
|
2739
|
+
background-repeat: no-repeat;
|
|
2740
|
+
margin-top: 10px;
|
|
2741
|
+
padding: 0 0 10px 25px;
|
|
2742
|
+
font-weight: 400
|
|
2743
|
+
}
|
|
2744
|
+
|
|
2745
|
+
.login_tips a {
|
|
2746
|
+
text-decoration: underline !important
|
|
2747
|
+
}
|
|
2748
|
+
|
|
2749
|
+
.clear {
|
|
2750
|
+
clear: both
|
|
2751
|
+
}
|
|
2752
|
+
|
|
2753
|
+
.comment_quote {
|
|
2754
|
+
padding: 5px 5px 5px 5px;
|
|
2755
|
+
border: 1px solid #ccc
|
|
2756
|
+
}
|
|
2757
|
+
|
|
2758
|
+
.comment_quote legend+br {
|
|
2759
|
+
display: none
|
|
2760
|
+
}
|
|
2761
|
+
|
|
2762
|
+
.comment_icon {
|
|
2763
|
+
cursor: pointer;
|
|
2764
|
+
/* margin:0 0 0 20px; */
|
|
2765
|
+
}
|
|
2766
|
+
|
|
2767
|
+
.comment_option {
|
|
2768
|
+
cursor: pointer;
|
|
2769
|
+
margin-bottom: 4px;
|
|
2770
|
+
background: none;
|
|
2771
|
+
border: none;
|
|
2772
|
+
outline: none;
|
|
2773
|
+
color: #808080;
|
|
2774
|
+
fill: #808080
|
|
2775
|
+
}
|
|
2776
|
+
|
|
2777
|
+
.comment_option svg {
|
|
2778
|
+
display: inline-block;
|
|
2779
|
+
vertical-align: middle;
|
|
2780
|
+
width: 18px;
|
|
2781
|
+
height: 18px
|
|
2782
|
+
}
|
|
2783
|
+
|
|
2784
|
+
.comment_option:hover {
|
|
2785
|
+
fill: #000;
|
|
2786
|
+
color: #000
|
|
2787
|
+
}
|
|
2788
|
+
|
|
2789
|
+
.inline_middle {
|
|
2790
|
+
display: inline-block;
|
|
2791
|
+
vertical-align: middle
|
|
2792
|
+
}
|
|
2793
|
+
|
|
2794
|
+
.comment_svg {
|
|
2795
|
+
display: inline-block;
|
|
2796
|
+
vertical-align: middle;
|
|
2797
|
+
width: 18px;
|
|
2798
|
+
height: 18px;
|
|
2799
|
+
fill: #808080
|
|
2800
|
+
}
|
|
2801
|
+
|
|
2802
|
+
.comment_svg_stroke {
|
|
2803
|
+
stroke: #808080
|
|
2804
|
+
}
|
|
2805
|
+
|
|
2806
|
+
.comment_svg_stroke:hover {
|
|
2807
|
+
stroke: #000
|
|
2808
|
+
}
|
|
2809
|
+
|
|
2810
|
+
.comment_svg:hover {
|
|
2811
|
+
fill: #000
|
|
2812
|
+
}
|
|
2813
|
+
|
|
2814
|
+
#comment_nav {
|
|
2815
|
+
text-align: right;
|
|
2816
|
+
display: flex;
|
|
2817
|
+
align-items: center;
|
|
2818
|
+
width: 100%
|
|
2819
|
+
}
|
|
2820
|
+
|
|
2821
|
+
.comment-nav-left {
|
|
2822
|
+
margin-right: auto;
|
|
2823
|
+
margin-left: 15px
|
|
2824
|
+
}
|
|
2825
|
+
|
|
2826
|
+
.comment-nav-right {
|
|
2827
|
+
margin-left: auto
|
|
2828
|
+
}
|
|
2829
|
+
|
|
2830
|
+
#comment_nav a {
|
|
2831
|
+
padding-left: 10px
|
|
2832
|
+
}
|
|
2833
|
+
|
|
2834
|
+
.ad_commentbox_up {
|
|
2835
|
+
margin-left: 5px
|
|
2836
|
+
}
|
|
2837
|
+
|
|
2838
|
+
.ad_commentbox_up a {
|
|
2839
|
+
padding-left: 10px
|
|
2840
|
+
}
|
|
2841
|
+
|
|
2842
|
+
:root {
|
|
2843
|
+
--highlighted-line-bg: #d1e3c9;
|
|
2844
|
+
--highlighted-line-bg-dark: #264b33
|
|
2845
|
+
}
|
|
2846
|
+
|
|
2847
|
+
pre.hljs-lines-highlighted {
|
|
2848
|
+
--spacing-left: 14px;
|
|
2849
|
+
--spacing-right: 14px
|
|
2850
|
+
}
|
|
2851
|
+
|
|
2852
|
+
pre.hljs-lines-highlighted ::after,pre.hljs-lines-highlighted ::before {
|
|
2853
|
+
box-sizing: border-box
|
|
2854
|
+
}
|
|
2855
|
+
|
|
2856
|
+
pre.hljs-lines-highlighted,pre.hljs-lines-highlighted[class*='language-'] {
|
|
2857
|
+
padding-left: 0;
|
|
2858
|
+
padding-right: 0
|
|
2859
|
+
}
|
|
2860
|
+
|
|
2861
|
+
pre.hljs-lines-highlighted code.hljs[data-lines-highlight],pre.hljs-lines-highlighted code[data-lines-highlight] {
|
|
2862
|
+
position: relative;
|
|
2863
|
+
padding-left: var(--spacing-left);
|
|
2864
|
+
padding-right: var(--spacing-right)
|
|
2865
|
+
}
|
|
2866
|
+
|
|
2867
|
+
pre.hljs-lines-highlighted code.hljs[data-lines-highlight].hljs-line-numbers,pre.hljs-lines-highlighted code[data-lines-highlight].hljs-line-numbers {
|
|
2868
|
+
padding-left: 0
|
|
2869
|
+
}
|
|
2870
|
+
|
|
2871
|
+
pre.hljs-lines-highlighted code.hljs[data-lines-highlight][data-dark-theme],pre.hljs-lines-highlighted code[data-lines-highlight][data-dark-theme] {
|
|
2872
|
+
--highlighted-line-bg: var(--highlighted-line-bg-dark)
|
|
2873
|
+
}
|
|
2874
|
+
|
|
2875
|
+
pre.hljs-lines-highlighted code.hljs[data-lines-highlight] table.hljs-ln,pre.hljs-lines-highlighted code[data-lines-highlight] table.hljs-ln {
|
|
2876
|
+
width: 100%;
|
|
2877
|
+
margin: 0
|
|
2878
|
+
}
|
|
2879
|
+
|
|
2880
|
+
pre.hljs-lines-highlighted code.hljs[data-lines-highlight] table.hljs-ln tbody,pre.hljs-lines-highlighted code[data-lines-highlight] table.hljs-ln tbody {
|
|
2881
|
+
width: 100%
|
|
2882
|
+
}
|
|
2883
|
+
|
|
2884
|
+
pre.hljs-lines-highlighted code.hljs[data-lines-highlight] table.hljs-ln tr:before,pre.hljs-lines-highlighted code[data-lines-highlight] table.hljs-ln tr:before {
|
|
2885
|
+
content: ' ';
|
|
2886
|
+
position: absolute
|
|
2887
|
+
}
|
|
2888
|
+
|
|
2889
|
+
pre.hljs-lines-highlighted code.hljs[data-lines-highlight] table.hljs-ln tr:after,pre.hljs-lines-highlighted code[data-lines-highlight] table.hljs-ln tr:after {
|
|
2890
|
+
margin-right: calc(-1*var(--spacing-right));
|
|
2891
|
+
content: ' ';
|
|
2892
|
+
display: block
|
|
2893
|
+
}
|
|
2894
|
+
|
|
2895
|
+
pre.hljs-lines-highlighted code.hljs[data-lines-highlight] table.hljs-ln tr.highlighted-line,pre.hljs-lines-highlighted code[data-lines-highlight] table.hljs-ln tr.highlighted-line {
|
|
2896
|
+
background: #d1e3c9;
|
|
2897
|
+
background: #d1e3c9;
|
|
2898
|
+
background: var(--highlighted-line-bg);
|
|
2899
|
+
position: relative
|
|
2900
|
+
}
|
|
2901
|
+
|
|
2902
|
+
pre.hljs-lines-highlighted code.hljs[data-lines-highlight] table.hljs-ln tr.highlighted-line td.hljs-ln-line.hljs-ln-numbers,pre.hljs-lines-highlighted code[data-lines-highlight] table.hljs-ln tr.highlighted-line td.hljs-ln-line.hljs-ln-numbers {
|
|
2903
|
+
background: #d1e3c9;
|
|
2904
|
+
background: #d1e3c9;
|
|
2905
|
+
background: var(--highlighted-line-bg)
|
|
2906
|
+
}
|
|
2907
|
+
|
|
2908
|
+
pre.hljs-lines-highlighted code.hljs[data-lines-highlight] table.hljs-ln tr.highlighted-line:before,pre.hljs-lines-highlighted code[data-lines-highlight] table.hljs-ln tr.highlighted-line:before {
|
|
2909
|
+
position: absolute;
|
|
2910
|
+
content: '+';
|
|
2911
|
+
background: #d1e3c9;
|
|
2912
|
+
background: #d1e3c9;
|
|
2913
|
+
background: var(--highlighted-line-bg);
|
|
2914
|
+
left: 4px;
|
|
2915
|
+
display: inline-block;
|
|
2916
|
+
z-index: 1
|
|
2917
|
+
}
|
|
2918
|
+
|
|
2919
|
+
pre.hljs-lines-highlighted code.hljs[data-lines-highlight] table.hljs-ln tr.highlighted-line:after,pre.hljs-lines-highlighted code[data-lines-highlight] table.hljs-ln tr.highlighted-line:after {
|
|
2920
|
+
background: #d1e3c9;
|
|
2921
|
+
background: #d1e3c9;
|
|
2922
|
+
background: var(--highlighted-line-bg)
|
|
2923
|
+
}
|
|
2924
|
+
|
|
2925
|
+
pre.hljs-lines-highlighted code.hljs[data-lines-highlight] table.hljs-ln tr td.hljs-ln-line.hljs-ln-numbers,pre.hljs-lines-highlighted code[data-lines-highlight] table.hljs-ln tr td.hljs-ln-line.hljs-ln-numbers {
|
|
2926
|
+
width: 1px;
|
|
2927
|
+
padding-left: calc(var(--spacing-left) + 4px);
|
|
2928
|
+
padding-right: calc(var(--spacing-left) + 4px)
|
|
2929
|
+
}
|
|
2930
|
+
|
|
2931
|
+
pre.hljs-lines-highlighted code.hljs[data-lines-highlight] table.hljs-ln tr td.hljs-ln-line.hljs-ln-code,pre.hljs-lines-highlighted code[data-lines-highlight] table.hljs-ln tr td.hljs-ln-line.hljs-ln-code {
|
|
2932
|
+
width: 100%
|
|
2933
|
+
}
|
|
2934
|
+
|
|
2935
|
+
pre.hljs-lines-highlighted code.hljs[data-lines-highlight]:not(.hljs-line-numbers) span.hljs-lines-highlight-wrapper,pre.hljs-lines-highlighted code[data-lines-highlight]:not(.hljs-line-numbers) span.hljs-lines-highlight-wrapper {
|
|
2936
|
+
display: inline-block;
|
|
2937
|
+
min-width: 100%
|
|
2938
|
+
}
|
|
2939
|
+
|
|
2940
|
+
pre.hljs-lines-highlighted code.hljs[data-lines-highlight]:not(.hljs-line-numbers) span.hljs-lines-highlight-wrapper span.highlighted-line,pre.hljs-lines-highlighted code[data-lines-highlight]:not(.hljs-line-numbers) span.hljs-lines-highlight-wrapper span.highlighted-line {
|
|
2941
|
+
background: #d1e3c9;
|
|
2942
|
+
background: #d1e3c9;
|
|
2943
|
+
background: var(--highlighted-line-bg);
|
|
2944
|
+
position: relative;
|
|
2945
|
+
display: inline-block;
|
|
2946
|
+
min-width: 100%
|
|
2947
|
+
}
|
|
2948
|
+
|
|
2949
|
+
pre.hljs-lines-highlighted code.hljs[data-lines-highlight]:not(.hljs-line-numbers) span.hljs-lines-highlight-wrapper span.highlighted-line:before,pre.hljs-lines-highlighted code[data-lines-highlight]:not(.hljs-line-numbers) span.hljs-lines-highlight-wrapper span.highlighted-line:before {
|
|
2950
|
+
content: '+';
|
|
2951
|
+
position: absolute;
|
|
2952
|
+
left: calc(-1*var(--spacing-left));
|
|
2953
|
+
width: var(--spacing-left);
|
|
2954
|
+
background: #d1e3c9;
|
|
2955
|
+
background: #d1e3c9;
|
|
2956
|
+
background: var(--highlighted-line-bg);
|
|
2957
|
+
top: 0;
|
|
2958
|
+
bottom: 0;
|
|
2959
|
+
padding-left: calc((var(--spacing-left) - .5px)/3)
|
|
2960
|
+
}
|
|
2961
|
+
|
|
2962
|
+
pre.hljs-lines-highlighted code.hljs[data-lines-highlight]:not(.hljs-line-numbers) span.hljs-lines-highlight-wrapper span.highlighted-line:after,pre.hljs-lines-highlighted code[data-lines-highlight]:not(.hljs-line-numbers) span.hljs-lines-highlight-wrapper span.highlighted-line:after {
|
|
2963
|
+
content: '';
|
|
2964
|
+
position: absolute;
|
|
2965
|
+
left: calc(-1*var(--spacing-left));
|
|
2966
|
+
width: var(--spacing-left);
|
|
2967
|
+
background: #d1e3c9;
|
|
2968
|
+
background: #d1e3c9;
|
|
2969
|
+
background: var(--highlighted-line-bg);
|
|
2970
|
+
top: 0;
|
|
2971
|
+
bottom: 0;
|
|
2972
|
+
padding-left: 0;
|
|
2973
|
+
right: calc(-1*var(--spacing-right));
|
|
2974
|
+
left: initial
|
|
2975
|
+
}
|
|
2976
|
+
|
|
2977
|
+
pre.prismjs-lines-highlighted {
|
|
2978
|
+
--spacing-right: 1em
|
|
2979
|
+
}
|
|
2980
|
+
|
|
2981
|
+
pre.prismjs-lines-highlighted ::after,pre.prismjs-lines-highlighted ::before {
|
|
2982
|
+
box-sizing: border-box
|
|
2983
|
+
}
|
|
2984
|
+
|
|
2985
|
+
pre.prismjs-lines-highlighted,pre.prismjs-lines-highlighted[class*='language-'],pre.prismjs-lines-highlighted.line-numbers {
|
|
2986
|
+
padding-left: var(--spacing-left);
|
|
2987
|
+
padding-right: var(--spacing-right)
|
|
2988
|
+
}
|
|
2989
|
+
|
|
2990
|
+
pre.prismjs-lines-highlighted[class*='language-']:not(.line-numbers) {
|
|
2991
|
+
--spacing-left: 1em
|
|
2992
|
+
}
|
|
2993
|
+
|
|
2994
|
+
pre.prismjs-lines-highlighted[class*='language-'].line-numbers {
|
|
2995
|
+
--spacing-left: 3.8em
|
|
2996
|
+
}
|
|
2997
|
+
|
|
2998
|
+
pre.prismjs-lines-highlighted code.highlighter-prismjs[data-lines-highlight] {
|
|
2999
|
+
position: relative;
|
|
3000
|
+
min-width: 100%;
|
|
3001
|
+
display: inline-block
|
|
3002
|
+
}
|
|
3003
|
+
|
|
3004
|
+
pre.prismjs-lines-highlighted code.highlighter-prismjs[data-lines-highlight][data-dark-theme] {
|
|
3005
|
+
--highlighted-line-bg: var(--highlighted-line-bg-dark)
|
|
3006
|
+
}
|
|
3007
|
+
|
|
3008
|
+
pre.prismjs-lines-highlighted code.highlighter-prismjs[data-lines-highlight] span.highlighted-line {
|
|
3009
|
+
background: #d1e3c9;
|
|
3010
|
+
background: #d1e3c9;
|
|
3011
|
+
background: var(--highlighted-line-bg);
|
|
3012
|
+
display: inline-block;
|
|
3013
|
+
position: relative;
|
|
3014
|
+
min-width: 100%
|
|
3015
|
+
}
|
|
3016
|
+
|
|
3017
|
+
pre.prismjs-lines-highlighted code.highlighter-prismjs[data-lines-highlight] span.highlighted-line:after,pre.prismjs-lines-highlighted code.highlighter-prismjs[data-lines-highlight] span.highlighted-line:before {
|
|
3018
|
+
background: #d1e3c9;
|
|
3019
|
+
background: #d1e3c9;
|
|
3020
|
+
background: var(--highlighted-line-bg);
|
|
3021
|
+
content: ' ';
|
|
3022
|
+
position: absolute;
|
|
3023
|
+
display: inline-block
|
|
3024
|
+
}
|
|
3025
|
+
|
|
3026
|
+
pre.prismjs-lines-highlighted code.highlighter-prismjs[data-lines-highlight] span.highlighted-line:before {
|
|
3027
|
+
content: '+';
|
|
3028
|
+
left: calc(-1*var(--spacing-left));
|
|
3029
|
+
width: var(--spacing-left);
|
|
3030
|
+
padding-left: 4px
|
|
3031
|
+
}
|
|
3032
|
+
|
|
3033
|
+
pre.prismjs-lines-highlighted code.highlighter-prismjs[data-lines-highlight] span.highlighted-line:after {
|
|
3034
|
+
position: absolute;
|
|
3035
|
+
right: calc(-1*var(--spacing-right));
|
|
3036
|
+
width: var(--spacing-right)
|
|
3037
|
+
}
|
|
3038
|
+
|
|
3039
|
+
pre.prismjs-lines-highlighted .line-numbers-rows span {
|
|
3040
|
+
padding-right: 0
|
|
3041
|
+
}
|
|
3042
|
+
|
|
3043
|
+
pre[data-mac-style] {
|
|
3044
|
+
position: relative
|
|
3045
|
+
}
|
|
3046
|
+
|
|
3047
|
+
pre[data-mac-style][class*='language-'].highlighter-prismjs,pre[data-mac-style] code.hljs {
|
|
3048
|
+
padding-top: calc(10px*2 + 12px);
|
|
3049
|
+
padding-top: calc(10px*2 + 12px);
|
|
3050
|
+
padding-top: calc(var(--mac-style-spacing,10px)*2 + 12px);
|
|
3051
|
+
border-radius: 6px;
|
|
3052
|
+
border-radius: 6px;
|
|
3053
|
+
border-radius: var(--mac-style-border-radius,6px)
|
|
3054
|
+
}
|
|
3055
|
+
|
|
3056
|
+
pre[data-mac-style][class*='language-'].highlighter-prismjs::before,pre[data-mac-style] code.hljs::before {
|
|
3057
|
+
content: '';
|
|
3058
|
+
position: absolute;
|
|
3059
|
+
top: 10px;
|
|
3060
|
+
top: 10px;
|
|
3061
|
+
top: var(--mac-style-spacing,10px);
|
|
3062
|
+
left: 10px;
|
|
3063
|
+
left: 10px;
|
|
3064
|
+
left: var(--mac-style-spacing,10px);
|
|
3065
|
+
width: 12px;
|
|
3066
|
+
height: 12px;
|
|
3067
|
+
background: #fe5f59;
|
|
3068
|
+
background: #fe5f59;
|
|
3069
|
+
background: var(--mac-style-color-red,#fe5f59);
|
|
3070
|
+
border-radius: 50%;
|
|
3071
|
+
box-shadow: 20px 0 #febb2c,40px 0 #29c73f;
|
|
3072
|
+
box-shadow: 20px 0 #febb2c,40px 0 #29c73f;
|
|
3073
|
+
box-shadow: 20px 0 var(--mac-style-color-orange,#febb2c),40px 0 var(--mac-style-color-green,#29c73f)
|
|
3074
|
+
}
|
|
3075
|
+
|
|
3076
|
+
.mathjax2 .day .postTitle2 span span.MathJax,.mathjax2 .day .postTitle2 span span.MathJax_Preview {
|
|
3077
|
+
font-size: inherit;
|
|
3078
|
+
order: initial
|
|
3079
|
+
}
|
|
3080
|
+
|
|
3081
|
+
.mathjax2 .day .postTitle2 span span.MathJax::after,.mathjax2 .day .postTitle2 span span.MathJax_Preview::after,.mathjax2 .day .postTitle2 span span.MathJax span::after,.mathjax2 .day .postTitle2 span span.MathJax_Preview span::after {
|
|
3082
|
+
display: none
|
|
3083
|
+
}
|
|
3084
|
+
|
|
3085
|
+
.mathjax2 .day .postTitle2 span span.MathJax {
|
|
3086
|
+
font-size: 100%
|
|
3087
|
+
}
|
|
3088
|
+
|
|
3089
|
+
.mathjax2 .day .postTitle2 span span.MathJax,.mathjax2 .day .postTitle2 span span.MathJax span {
|
|
3090
|
+
display: inline
|
|
3091
|
+
}
|
|
3092
|
+
|
|
3093
|
+
.mathjax2 .day .postTitle2 span span.MathJax span {
|
|
3094
|
+
font-size: inherit
|
|
3095
|
+
}
|
|
3096
|
+
|
|
3097
|
+
.mathjax2 .day .postTitle2 span span.MathJax_Preview {
|
|
3098
|
+
display: inline;
|
|
3099
|
+
display: initial
|
|
3100
|
+
}
|
|
3101
|
+
|
|
3102
|
+
.mathjax2 table td span.math.inline {
|
|
3103
|
+
display: inline-block
|
|
3104
|
+
}
|
|
3105
|
+
|
|
3106
|
+
:root {
|
|
3107
|
+
--cnblogs-current-collection-bg-color: rgba(245,245,245,.98);
|
|
3108
|
+
--cnblogs-current-collection-highlight-color: rgba(255,255,255,.9);
|
|
3109
|
+
--cnblogs-current-collection-hover-color: rgba(255,255,255,.7);
|
|
3110
|
+
--cnblogs-current-collection-active-color: rgba(255,255,255,.8);
|
|
3111
|
+
--cnblogs-current-collection-color: #000
|
|
3112
|
+
}
|
|
3113
|
+
|
|
3114
|
+
.current-collection {
|
|
3115
|
+
max-width: 540px;
|
|
3116
|
+
background: rgba(245,245,245,.98);
|
|
3117
|
+
background: rgba(245,245,245,.98);
|
|
3118
|
+
background: var(--cnblogs-current-collection-bg-color);
|
|
3119
|
+
border-radius: 4px;
|
|
3120
|
+
margin: 20px 0
|
|
3121
|
+
}
|
|
3122
|
+
|
|
3123
|
+
.current-collection.collapsed .current-collection-links {
|
|
3124
|
+
max-height: 0;
|
|
3125
|
+
overflow-y: hidden
|
|
3126
|
+
}
|
|
3127
|
+
|
|
3128
|
+
.current-collection.collapsed .current-collection-title-arrow {
|
|
3129
|
+
transform: rotate(-90deg)
|
|
3130
|
+
}
|
|
3131
|
+
|
|
3132
|
+
.current-collection.collapsed .current-collection-arrow {
|
|
3133
|
+
transform: rotate(0)
|
|
3134
|
+
}
|
|
3135
|
+
|
|
3136
|
+
.current-collection.collapsed .current-collection-footer {
|
|
3137
|
+
display: none
|
|
3138
|
+
}
|
|
3139
|
+
|
|
3140
|
+
#cnblogs_post_body .current-collection a {
|
|
3141
|
+
text-decoration: none;
|
|
3142
|
+
border-bottom: none;
|
|
3143
|
+
color: #000
|
|
3144
|
+
}
|
|
3145
|
+
|
|
3146
|
+
#cnblogs_post_body .current-collection a:link,#cnblogs_post_body .current-collection a:visited,#cnblogs_post_body .current-collection a:hover,#cnblogs_post_body .current-collection a:active {
|
|
3147
|
+
text-decoration: none
|
|
3148
|
+
}
|
|
3149
|
+
|
|
3150
|
+
.current-collection-title {
|
|
3151
|
+
font-weight: bold;
|
|
3152
|
+
font-size: 1.2em;
|
|
3153
|
+
padding: 10px 15px 10px 10px;
|
|
3154
|
+
display: flex;
|
|
3155
|
+
align-items: center;
|
|
3156
|
+
justify-content: space-between
|
|
3157
|
+
}
|
|
3158
|
+
|
|
3159
|
+
.current-collection-title .title-link {
|
|
3160
|
+
padding: 0 5px
|
|
3161
|
+
}
|
|
3162
|
+
|
|
3163
|
+
.current-collection-title .icon-button {
|
|
3164
|
+
height: 1.8em;
|
|
3165
|
+
width: 1.8em;
|
|
3166
|
+
border-radius: 4px;
|
|
3167
|
+
display: flex;
|
|
3168
|
+
align-items: center;
|
|
3169
|
+
justify-content: center
|
|
3170
|
+
}
|
|
3171
|
+
|
|
3172
|
+
.current-collection-title .current-collection-title-buttons {
|
|
3173
|
+
display: flex;
|
|
3174
|
+
align-items: center;
|
|
3175
|
+
row-gap: 5px
|
|
3176
|
+
}
|
|
3177
|
+
|
|
3178
|
+
.current-collection-links {
|
|
3179
|
+
max-height: 300px;
|
|
3180
|
+
overflow-y: auto;
|
|
3181
|
+
overflow-x: hidden;
|
|
3182
|
+
transition-property: max-height;
|
|
3183
|
+
transition-timing-function: cubic-bezier(.4,0,.2,1);
|
|
3184
|
+
transition-duration: 300ms
|
|
3185
|
+
}
|
|
3186
|
+
|
|
3187
|
+
.current-collection-links>.current {
|
|
3188
|
+
font-weight: bold
|
|
3189
|
+
}
|
|
3190
|
+
|
|
3191
|
+
.current-collection-links>.current-collection-item {
|
|
3192
|
+
display: flex;
|
|
3193
|
+
align-items: center;
|
|
3194
|
+
justify-content: space-between;
|
|
3195
|
+
padding: 10px 15px;
|
|
3196
|
+
margin-bottom: 0
|
|
3197
|
+
}
|
|
3198
|
+
|
|
3199
|
+
.current-collection-links>.current-collection-item.current {
|
|
3200
|
+
background: rgba(255,255,255,.9);
|
|
3201
|
+
background: rgba(255,255,255,.9);
|
|
3202
|
+
background: var(--cnblogs-current-collection-highlight-color)
|
|
3203
|
+
}
|
|
3204
|
+
|
|
3205
|
+
.current-collection-links .current-collection-link {
|
|
3206
|
+
text-decoration: none;
|
|
3207
|
+
border-bottom: none;
|
|
3208
|
+
color: #000
|
|
3209
|
+
}
|
|
3210
|
+
|
|
3211
|
+
.current-collection-links .current-collection-link:link,.current-collection-links .current-collection-link:visited,.current-collection-links .current-collection-link:hover,.current-collection-links .current-collection-link:active {
|
|
3212
|
+
text-decoration: none
|
|
3213
|
+
}
|
|
3214
|
+
|
|
3215
|
+
.current-collection-footer {
|
|
3216
|
+
padding: 10px 15px
|
|
3217
|
+
}
|
|
3218
|
+
|
|
3219
|
+
.current-collection-collapse-button-wrapper {
|
|
3220
|
+
display: flex;
|
|
3221
|
+
align-items: center;
|
|
3222
|
+
justify-content: end;
|
|
3223
|
+
cursor: pointer
|
|
3224
|
+
}
|
|
3225
|
+
|
|
3226
|
+
.current-collection-arrow {
|
|
3227
|
+
transition-property: transform;
|
|
3228
|
+
transition-timing-function: cubic-bezier(.4,0,.2,1);
|
|
3229
|
+
transition-duration: 300ms;
|
|
3230
|
+
width: 2em;
|
|
3231
|
+
height: 2em;
|
|
3232
|
+
transform: rotate(180deg)
|
|
3233
|
+
}
|
|
3234
|
+
|
|
3235
|
+
.current-collection-title-arrow {
|
|
3236
|
+
transition-property: transform;
|
|
3237
|
+
transition-timing-function: cubic-bezier(.4,0,.2,1);
|
|
3238
|
+
transition-duration: 300ms
|
|
3239
|
+
}
|
|
3240
|
+
|
|
3241
|
+
.current-collection-collapse-button {
|
|
3242
|
+
display: flex;
|
|
3243
|
+
align-items: center;
|
|
3244
|
+
padding: 0 0 0 10px;
|
|
3245
|
+
border-radius: 4px
|
|
3246
|
+
}
|
|
3247
|
+
|
|
3248
|
+
.clickable {
|
|
3249
|
+
cursor: pointer
|
|
3250
|
+
}
|
|
3251
|
+
|
|
3252
|
+
.clickable:hover {
|
|
3253
|
+
background: rgba(255,255,255,.7);
|
|
3254
|
+
background: rgba(255,255,255,.7);
|
|
3255
|
+
background: var(--cnblogs-current-collection-hover-color)
|
|
3256
|
+
}
|
|
3257
|
+
|
|
3258
|
+
.clickable:active {
|
|
3259
|
+
background: rgba(255,255,255,.8);
|
|
3260
|
+
background: rgba(255,255,255,.8);
|
|
3261
|
+
background: var(--cnblogs-current-collection-active-color)
|
|
3262
|
+
}
|
|
3263
|
+
|
|
3264
|
+
.current-collection-item-serial {
|
|
3265
|
+
white-space: nowrap;
|
|
3266
|
+
margin-right: 5px
|
|
3267
|
+
}
|
|
3268
|
+
|
|
3269
|
+
.current-collection-item-title-prefix {
|
|
3270
|
+
flex-shrink: 1;
|
|
3271
|
+
white-space: nowrap;
|
|
3272
|
+
overflow: hidden;
|
|
3273
|
+
text-overflow: ellipsis
|
|
3274
|
+
}
|
|
3275
|
+
|
|
3276
|
+
.current-collection-item-title {
|
|
3277
|
+
white-space: nowrap;
|
|
3278
|
+
overflow: hidden;
|
|
3279
|
+
text-overflow: ellipsis;
|
|
3280
|
+
margin-right: 5px;
|
|
3281
|
+
flex-grow: 1
|
|
3282
|
+
}
|
|
3283
|
+
|
|
3284
|
+
.current-collection-publish-date {
|
|
3285
|
+
white-space: nowrap
|
|
3286
|
+
}
|
|
3287
|
+
|
|
3288
|
+
.no-shrink {
|
|
3289
|
+
flex-shrink: 0
|
|
3290
|
+
}
|
|
3291
|
+
|
|
3292
|
+
.cnblogs-current-collection-pinned-navigator {
|
|
3293
|
+
color: #000;
|
|
3294
|
+
color: #000;
|
|
3295
|
+
color: var(--cnblogs-current-collection-color);
|
|
3296
|
+
background: transparent;
|
|
3297
|
+
border-radius: 4px
|
|
3298
|
+
}
|
|
3299
|
+
|
|
3300
|
+
.cnblogs-current-collection-pinned-navigator .wb-header {
|
|
3301
|
+
color: #000;
|
|
3302
|
+
color: #000;
|
|
3303
|
+
color: var(--cnblogs-current-collection-color)
|
|
3304
|
+
}
|
|
3305
|
+
|
|
3306
|
+
.cnblogs-current-collection-pinned-navigator .wb-header .wb-icon {
|
|
3307
|
+
-webkit-filter: invert(1);
|
|
3308
|
+
filter: invert(1)
|
|
3309
|
+
}
|
|
3310
|
+
|
|
3311
|
+
.cnblogs-current-collection-pinned-navigator .wb-body {
|
|
3312
|
+
background: transparent
|
|
3313
|
+
}
|
|
3314
|
+
|
|
3315
|
+
.icon-arrow::before {
|
|
3316
|
+
display: block;
|
|
3317
|
+
content: '';
|
|
3318
|
+
background: url("/images/arrow-down.svg");
|
|
3319
|
+
width: 100%;
|
|
3320
|
+
height: 100%
|
|
3321
|
+
}
|
|
3322
|
+
|
|
3323
|
+
.icon-pin::before {
|
|
3324
|
+
display: block;
|
|
3325
|
+
content: '';
|
|
3326
|
+
background: url("/images/push-pin-filled.svg");
|
|
3327
|
+
width: .9em;
|
|
3328
|
+
height: .9em
|
|
3329
|
+
}
|
|
3330
|
+
|
|
3331
|
+
@keyframes collapse {
|
|
3332
|
+
from {
|
|
3333
|
+
max-height: 80vh;
|
|
3334
|
+
max-height: 80vh;
|
|
3335
|
+
max-height: var(--olcb-folder-code-block-scroll-height,80vh)
|
|
3336
|
+
}
|
|
3337
|
+
|
|
3338
|
+
to {
|
|
3339
|
+
max-height: 80vh;
|
|
3340
|
+
max-height: 80vh;
|
|
3341
|
+
max-height: var(--olcb-folder-code-block-max-height,80vh)
|
|
3342
|
+
}
|
|
3343
|
+
}
|
|
3344
|
+
|
|
3345
|
+
@keyframes expand {
|
|
3346
|
+
from {
|
|
3347
|
+
max-height: 80vh;
|
|
3348
|
+
max-height: 80vh;
|
|
3349
|
+
max-height: var(--olcb-folder-code-block-max-height,80vh);
|
|
3350
|
+
overflow-y: hidden
|
|
3351
|
+
}
|
|
3352
|
+
|
|
3353
|
+
to {
|
|
3354
|
+
max-height: '';
|
|
3355
|
+
max-height: '';
|
|
3356
|
+
max-height: var(--olcb-folder-code-block-scroll-height,'');
|
|
3357
|
+
overflow-y: hidden
|
|
3358
|
+
}
|
|
3359
|
+
}
|
|
3360
|
+
|
|
3361
|
+
pre.highlighter-prismjs.cnb-over-length-code-block.cnb-over-length-code-block-collapsed[class*='language-'] {
|
|
3362
|
+
max-height: 80vh;
|
|
3363
|
+
max-height: 80vh;
|
|
3364
|
+
max-height: var(--olcb-folder-code-block-max-height,80vh);
|
|
3365
|
+
overflow-y: hidden;
|
|
3366
|
+
position: relative;
|
|
3367
|
+
animation-duration: .2s;
|
|
3368
|
+
animation-fill-mode: forwards;
|
|
3369
|
+
animation-name: collapse;
|
|
3370
|
+
animation-timing-function: ease-out;
|
|
3371
|
+
align-items: center
|
|
3372
|
+
}
|
|
3373
|
+
|
|
3374
|
+
.cnb-over-length-code-block-collapsed {
|
|
3375
|
+
max-height: 80vh;
|
|
3376
|
+
max-height: 80vh;
|
|
3377
|
+
max-height: var(--olcb-folder-code-block-max-height,80vh);
|
|
3378
|
+
overflow-y: hidden;
|
|
3379
|
+
position: relative;
|
|
3380
|
+
animation-duration: .2s;
|
|
3381
|
+
animation-fill-mode: forwards;
|
|
3382
|
+
animation-name: collapse;
|
|
3383
|
+
animation-timing-function: ease-out;
|
|
3384
|
+
align-items: center
|
|
3385
|
+
}
|
|
3386
|
+
|
|
3387
|
+
.cnb-over-length-code-block-collapsed .cnb-over-length-code-block-toggler {
|
|
3388
|
+
cursor: pointer;
|
|
3389
|
+
width: 100%
|
|
3390
|
+
}
|
|
3391
|
+
|
|
3392
|
+
.cnb-over-length-code-block-collapsed .cnb-over-length-code-block-toggler-hidden {
|
|
3393
|
+
opacity: 0;
|
|
3394
|
+
padding: 0;
|
|
3395
|
+
height: 0;
|
|
3396
|
+
width: 0
|
|
3397
|
+
}
|
|
3398
|
+
|
|
3399
|
+
.cnb-over-length-code-block-collapsed .cnb-over-length-code-block-toggler-title,.cnb-over-length-code-block-collapsed .cnb-over-length-code-block-toggler-icon {
|
|
3400
|
+
opacity: .8
|
|
3401
|
+
}
|
|
3402
|
+
|
|
3403
|
+
.cnb-over-length-code-block-expanded {
|
|
3404
|
+
position: relative;
|
|
3405
|
+
animation-duration: .2s;
|
|
3406
|
+
animation-name: expand;
|
|
3407
|
+
animation-timing-function: ease-in
|
|
3408
|
+
}
|
|
3409
|
+
|
|
3410
|
+
.cnb-over-length-code-block-expanded .cnb-over-length-code-block-toggler {
|
|
3411
|
+
height: auto;
|
|
3412
|
+
padding: 4px;
|
|
3413
|
+
background: transparent none repeat 0 0/auto auto padding-box border-box scroll;
|
|
3414
|
+
background: initial;
|
|
3415
|
+
justify-content: flex-end;
|
|
3416
|
+
color: #5c5e6e;
|
|
3417
|
+
left: auto;
|
|
3418
|
+
left: initial;
|
|
3419
|
+
right: 0;
|
|
3420
|
+
opacity: .8
|
|
3421
|
+
}
|
|
3422
|
+
|
|
3423
|
+
.cnb-over-length-code-block-expanded .cnb-over-length-code-block-toggler-hidden {
|
|
3424
|
+
opacity: 0;
|
|
3425
|
+
padding: 0;
|
|
3426
|
+
height: 0;
|
|
3427
|
+
width: 0
|
|
3428
|
+
}
|
|
3429
|
+
|
|
3430
|
+
.cnb-over-length-code-block-expanded .cnb-over-length-code-block-toggler-title,.cnb-over-length-code-block-expanded .cnb-over-length-code-block-toggler-icon {
|
|
3431
|
+
background: #fff;
|
|
3432
|
+
cursor: pointer;
|
|
3433
|
+
font-size: 12px
|
|
3434
|
+
}
|
|
3435
|
+
|
|
3436
|
+
.cnb-over-length-code-block-expanded .cnb-over-length-code-block-toggler:hover {
|
|
3437
|
+
opacity: 1
|
|
3438
|
+
}
|
|
3439
|
+
|
|
3440
|
+
.cnb-over-length-code-block-expanded .cnb-over-length-code-block-toggler-title {
|
|
3441
|
+
padding: 0 0 0 4px;
|
|
3442
|
+
border-radius: 3px 0 0 3px
|
|
3443
|
+
}
|
|
3444
|
+
|
|
3445
|
+
.cnb-over-length-code-block-expanded .cnb-over-length-code-block-toggler-icon {
|
|
3446
|
+
padding: 0 4px 0 0;
|
|
3447
|
+
border-radius: 0 3px 3px 0
|
|
3448
|
+
}
|
|
3449
|
+
|
|
3450
|
+
.cnb-over-length-code-block.code-theme-dark:not(.cnb-over-length-code-block-expanded) .cnb-over-length-code-block-toggler {
|
|
3451
|
+
color: #fff
|
|
3452
|
+
}
|
|
3453
|
+
|
|
3454
|
+
.cnb-over-length-code-block-toggler {
|
|
3455
|
+
position: absolute;
|
|
3456
|
+
color: #000;
|
|
3457
|
+
left: 0;
|
|
3458
|
+
right: 0;
|
|
3459
|
+
bottom: 0;
|
|
3460
|
+
display: flex;
|
|
3461
|
+
justify-content: center;
|
|
3462
|
+
padding: 16px 0 8px;
|
|
3463
|
+
font-size: 12px;
|
|
3464
|
+
font-size: 12px;
|
|
3465
|
+
font-size: var(--olcb-folder-code-block-toggler-fontsize,12px);
|
|
3466
|
+
background: var(--olcb-folder-code-block-toggler-bg);
|
|
3467
|
+
-webkit-user-select: none;
|
|
3468
|
+
-moz-user-select: none;
|
|
3469
|
+
user-select: none;
|
|
3470
|
+
min-height: 20px;
|
|
3471
|
+
z-index: 9
|
|
3472
|
+
}
|
|
3473
|
+
|
|
3474
|
+
.cnb-over-length-code-block-toggler-hidden {
|
|
3475
|
+
opacity: 0;
|
|
3476
|
+
padding: 0;
|
|
3477
|
+
height: 0;
|
|
3478
|
+
width: 0
|
|
3479
|
+
}
|
|
3480
|
+
|
|
3481
|
+
.cnb-over-length-code-block-toggler-icon,.cnb-over-length-code-block-toggler-title {
|
|
3482
|
+
transition-duration: .2s;
|
|
3483
|
+
transition-property: opacity;
|
|
3484
|
+
transition-timing-function: ease-in;
|
|
3485
|
+
line-height: normal;
|
|
3486
|
+
line-height: initial;
|
|
3487
|
+
display: flex;
|
|
3488
|
+
align-items: center
|
|
3489
|
+
}
|
|
3490
|
+
|
|
3491
|
+
.cnb-over-length-code-block-toggler-icon svg {
|
|
3492
|
+
width: 13px;
|
|
3493
|
+
height: 13px;
|
|
3494
|
+
fill: currentColor
|
|
3495
|
+
}
|
|
3496
|
+
|
|
3497
|
+
.tree-categories-container {
|
|
3498
|
+
padding: 5px 20px 5px 4px;
|
|
3499
|
+
position: relative
|
|
3500
|
+
}
|
|
3501
|
+
|
|
3502
|
+
.tree-categories-container[data-useCloseIcon=true]:before {
|
|
3503
|
+
content: '';
|
|
3504
|
+
-webkit-mask: url("/images/close.svg");
|
|
3505
|
+
mask: url("/images/close.svg");
|
|
3506
|
+
width: 20px;
|
|
3507
|
+
height: 20px;
|
|
3508
|
+
position: absolute;
|
|
3509
|
+
top: 5px;
|
|
3510
|
+
right: 5px
|
|
3511
|
+
}
|
|
3512
|
+
|
|
3513
|
+
.tree-categories-item {
|
|
3514
|
+
padding: 5px 0
|
|
3515
|
+
}
|
|
3516
|
+
|
|
3517
|
+
.tree-categories-item-title {
|
|
3518
|
+
display: flex;
|
|
3519
|
+
align-items: center
|
|
3520
|
+
}
|
|
3521
|
+
|
|
3522
|
+
.tree-categories-item-title-left {
|
|
3523
|
+
display: flex;
|
|
3524
|
+
align-items: center;
|
|
3525
|
+
margin-right: 4px
|
|
3526
|
+
}
|
|
3527
|
+
|
|
3528
|
+
.tree-categories-item-title-left:before {
|
|
3529
|
+
content: '';
|
|
3530
|
+
background: currentColor;
|
|
3531
|
+
-webkit-mask-image: url("/images/folder-close.svg");
|
|
3532
|
+
mask-image: url("/images/folder-close.svg");
|
|
3533
|
+
display: inline-block;
|
|
3534
|
+
width: 14px;
|
|
3535
|
+
height: 14px
|
|
3536
|
+
}
|
|
3537
|
+
|
|
3538
|
+
.tree-categories-item>ul.tree-categories li.tree-categories-item:last-child {
|
|
3539
|
+
padding-bottom: 0
|
|
3540
|
+
}
|
|
3541
|
+
|
|
3542
|
+
.tree-categories-item-container {
|
|
3543
|
+
display: flex;
|
|
3544
|
+
align-items: center
|
|
3545
|
+
}
|
|
3546
|
+
|
|
3547
|
+
.tree-categories-item-toggler-arrow {
|
|
3548
|
+
display: flex;
|
|
3549
|
+
align-items: center;
|
|
3550
|
+
cursor: pointer;
|
|
3551
|
+
width: 20px;
|
|
3552
|
+
height: 20px
|
|
3553
|
+
}
|
|
3554
|
+
|
|
3555
|
+
.tree-categories-item-toggler-arrow:before {
|
|
3556
|
+
-webkit-mask-image: url("/images/arrow-right.svg");
|
|
3557
|
+
mask-image: url("/images/arrow-right.svg");
|
|
3558
|
+
content: '';
|
|
3559
|
+
display: inline-block;
|
|
3560
|
+
width: 20px;
|
|
3561
|
+
height: 20px;
|
|
3562
|
+
background: currentColor
|
|
3563
|
+
}
|
|
3564
|
+
|
|
3565
|
+
.tree-categories-item[data-haschild=false] .tree-categories-item-toggler-arrow {
|
|
3566
|
+
visibility: hidden
|
|
3567
|
+
}
|
|
3568
|
+
|
|
3569
|
+
.tree-categories-item[data-expanded=true]>.tree-categories-item-container .tree-categories-item-toggler-arrow {
|
|
3570
|
+
transform: rotate(90deg)
|
|
3571
|
+
}
|
|
3572
|
+
|
|
3573
|
+
.tree-categories-item[data-expanded=true]>.tree-categories-item-container .tree-categories-item-title-left:before {
|
|
3574
|
+
-webkit-mask-image: url("/images/folder-open.svg");
|
|
3575
|
+
mask-image: url("/images/folder-open.svg")
|
|
3576
|
+
}
|
|
3577
|
+
|
|
3578
|
+
.tree-categories-item[data-loading] .tree-categories-item-toggler-arrow:before {
|
|
3579
|
+
-webkit-mask-image: url("/images/loading.svg");
|
|
3580
|
+
mask-image: url("/images/loading.svg");
|
|
3581
|
+
width: 16px;
|
|
3582
|
+
height: 16px
|
|
3583
|
+
}
|
|
3584
|
+
|
|
3585
|
+
.tree-categories-item-active>.tree-categories-item-container .tree-categories-item-title {
|
|
3586
|
+
font-weight: bold
|
|
3587
|
+
}
|
|
3588
|
+
|
|
3589
|
+
.tree-categories-item>.tree-categories {
|
|
3590
|
+
padding-left: 20px
|
|
3591
|
+
}
|
|
3592
|
+
|
|
3593
|
+
span.entry-list-title-dropdown-prompt {
|
|
3594
|
+
height: 100%;
|
|
3595
|
+
padding-left: 6px;
|
|
3596
|
+
position: relative
|
|
3597
|
+
}
|
|
3598
|
+
|
|
3599
|
+
span.entry-list-title-dropdown-prompt:before {
|
|
3600
|
+
background: currentColor;
|
|
3601
|
+
display: inline-block;
|
|
3602
|
+
-webkit-mask: url("/images/folder-close.svg");
|
|
3603
|
+
mask: url("/images/folder-close.svg");
|
|
3604
|
+
content: "";
|
|
3605
|
+
width: 14px;
|
|
3606
|
+
height: 14px;
|
|
3607
|
+
position: absolute;
|
|
3608
|
+
top: 50%;
|
|
3609
|
+
transform: translateY(-50%)
|
|
3610
|
+
}
|
|
3611
|
+
|
|
3612
|
+
.entrylistTitle[aria-expanded=true] span.entry-list-title-dropdown-prompt:before,.category-block-title[aria-expanded=true] span.entry-list-title-dropdown-prompt:before {
|
|
3613
|
+
-webkit-mask: url("/images/folder-open.svg");
|
|
3614
|
+
mask: url("/images/folder-open.svg")
|
|
3615
|
+
}
|
|
3616
|
+
|
|
3617
|
+
.contains-task-list {
|
|
3618
|
+
margin-left: 0;
|
|
3619
|
+
padding-left: 0
|
|
3620
|
+
}
|
|
3621
|
+
|
|
3622
|
+
.contains-task-list li.task-list-item {
|
|
3623
|
+
display: flex;
|
|
3624
|
+
align-items: center;
|
|
3625
|
+
list-style: none;
|
|
3626
|
+
list-style-type: none
|
|
3627
|
+
}
|
|
3628
|
+
|
|
3629
|
+
.contains-task-list li.task-list-item input.task-list-item-checkbox {
|
|
3630
|
+
margin: 0 6px 0 0
|
|
3631
|
+
}
|
|
3632
|
+
|
|
3633
|
+
:root {
|
|
3634
|
+
--cnblogs-charm-bar-bg-color: rgba(34,34,34,.8);
|
|
3635
|
+
--cnblogs-charm-bar-bg-color-darker: #222;
|
|
3636
|
+
--cnblogs-charm-bar-highlight-color: rgba(255,255,255,.98);
|
|
3637
|
+
--cnblogs-charm-bar-hover-color: rgba(34,34,34,.6);
|
|
3638
|
+
--cnblogs-charm-bar-active-color: rgba(34,34,34,.9);
|
|
3639
|
+
--cnblogs-charm-bar-color: #000
|
|
3640
|
+
}
|
|
3641
|
+
|
|
3642
|
+
.charm-bar-handle {
|
|
3643
|
+
position: fixed;
|
|
3644
|
+
display: flex;
|
|
3645
|
+
bottom: 0;
|
|
3646
|
+
right: 20vw;
|
|
3647
|
+
border-top-left-radius: 8px;
|
|
3648
|
+
border-top-right-radius: 8px;
|
|
3649
|
+
align-items: center;
|
|
3650
|
+
justify-content: center;
|
|
3651
|
+
background: rgba(34,34,34,.8);
|
|
3652
|
+
background: rgba(34,34,34,.8);
|
|
3653
|
+
background: var(--cnblogs-charm-bar-bg-color);
|
|
3654
|
+
color: rgba(255,255,255,.98);
|
|
3655
|
+
color: rgba(255,255,255,.98);
|
|
3656
|
+
color: var(--cnblogs-charm-bar-highlight-color);
|
|
3657
|
+
transition: bottom 100ms ease-in-out;
|
|
3658
|
+
padding: 6px 6px 4px;
|
|
3659
|
+
cursor: pointer;
|
|
3660
|
+
border: 0
|
|
3661
|
+
}
|
|
3662
|
+
|
|
3663
|
+
.charm-bar-handle:active,.charm-bar-handle:hover {
|
|
3664
|
+
background: #222;
|
|
3665
|
+
background: #222;
|
|
3666
|
+
background: var(--cnblogs-charm-bar-bg-color-darker)
|
|
3667
|
+
}
|
|
3668
|
+
|
|
3669
|
+
.charm-bar-handle svg {
|
|
3670
|
+
width: 32px;
|
|
3671
|
+
height: 32px
|
|
3672
|
+
}
|
|
3673
|
+
|
|
3674
|
+
.charm-bar-handle.hidden {
|
|
3675
|
+
bottom: -200px
|
|
3676
|
+
}
|
|
3677
|
+
|
|
3678
|
+
.charm-bar-wrapper {
|
|
3679
|
+
position: fixed;
|
|
3680
|
+
display: flex;
|
|
3681
|
+
align-items: center;
|
|
3682
|
+
justify-content: center;
|
|
3683
|
+
width: 100%;
|
|
3684
|
+
height: 60px;
|
|
3685
|
+
bottom: 20px;
|
|
3686
|
+
left: 0;
|
|
3687
|
+
right: 0;
|
|
3688
|
+
transition: bottom 200ms ease-in-out
|
|
3689
|
+
}
|
|
3690
|
+
|
|
3691
|
+
.charm-bar-wrapper.hidden {
|
|
3692
|
+
bottom: -120px
|
|
3693
|
+
}
|
|
3694
|
+
|
|
3695
|
+
.charm-bar-wrapper .charm-bar-main {
|
|
3696
|
+
display: flex;
|
|
3697
|
+
flex-direction: column;
|
|
3698
|
+
row-gap: 4px;
|
|
3699
|
+
align-items: center;
|
|
3700
|
+
position: relative
|
|
3701
|
+
}
|
|
3702
|
+
|
|
3703
|
+
.charm-bar-wrapper .charm-bar-panel {
|
|
3704
|
+
display: flex;
|
|
3705
|
+
flex-direction: column;
|
|
3706
|
+
row-gap: 8px;
|
|
3707
|
+
height: 300px;
|
|
3708
|
+
width: 100%;
|
|
3709
|
+
transition: all 200ms ease-in-out;
|
|
3710
|
+
position: absolute;
|
|
3711
|
+
bottom: 70px;
|
|
3712
|
+
background: rgba(34,34,34,.8);
|
|
3713
|
+
background: rgba(34,34,34,.8);
|
|
3714
|
+
background: var(--cnblogs-charm-bar-bg-color);
|
|
3715
|
+
opacity: 1;
|
|
3716
|
+
border-radius: 16px
|
|
3717
|
+
}
|
|
3718
|
+
|
|
3719
|
+
.charm-bar-wrapper .charm-bar-panel.inactive {
|
|
3720
|
+
bottom: -500px;
|
|
3721
|
+
opacity: 0
|
|
3722
|
+
}
|
|
3723
|
+
|
|
3724
|
+
.charm-bar-wrapper .charm-bar-panel.hidden {
|
|
3725
|
+
display: none
|
|
3726
|
+
}
|
|
3727
|
+
|
|
3728
|
+
.charm-bar-wrapper .charm-bar {
|
|
3729
|
+
display: flex;
|
|
3730
|
+
align-items: center;
|
|
3731
|
+
min-width: 100px;
|
|
3732
|
+
height: 40px;
|
|
3733
|
+
overflow: hidden;
|
|
3734
|
+
-moz-column-gap: 6px;
|
|
3735
|
+
column-gap: 6px;
|
|
3736
|
+
padding-top: 12px;
|
|
3737
|
+
padding-bottom: 12px
|
|
3738
|
+
}
|
|
3739
|
+
|
|
3740
|
+
.charm-bar-wrapper .charm-bar .charm-bar-item {
|
|
3741
|
+
display: flex;
|
|
3742
|
+
align-items: center;
|
|
3743
|
+
justify-content: center;
|
|
3744
|
+
flex-direction: column;
|
|
3745
|
+
row-gap: 4px;
|
|
3746
|
+
padding: 8px;
|
|
3747
|
+
transition: background-color 100ms ease-in-out;
|
|
3748
|
+
color: rgba(255,255,255,.98);
|
|
3749
|
+
color: rgba(255,255,255,.98);
|
|
3750
|
+
color: var(--cnblogs-charm-bar-highlight-color);
|
|
3751
|
+
background: rgba(34,34,34,.8);
|
|
3752
|
+
background: rgba(34,34,34,.8);
|
|
3753
|
+
background: var(--cnblogs-charm-bar-bg-color);
|
|
3754
|
+
border: 0;
|
|
3755
|
+
border-radius: 16px;
|
|
3756
|
+
cursor: pointer
|
|
3757
|
+
}
|
|
3758
|
+
|
|
3759
|
+
.charm-bar-wrapper .charm-bar .charm-bar-item:hover {
|
|
3760
|
+
background: rgba(34,34,34,.6);
|
|
3761
|
+
background: rgba(34,34,34,.6);
|
|
3762
|
+
background: var(--cnblogs-charm-bar-hover-color)
|
|
3763
|
+
}
|
|
3764
|
+
|
|
3765
|
+
.charm-bar-wrapper .charm-bar .charm-bar-item:active {
|
|
3766
|
+
background-color: #222;
|
|
3767
|
+
background-color: #222;
|
|
3768
|
+
background-color: var(--cnblogs-charm-bar-bg-color-darker)
|
|
3769
|
+
}
|
|
3770
|
+
|
|
3771
|
+
.charm-bar-wrapper .charm-bar .charm-bar-item svg {
|
|
3772
|
+
width: 30px;
|
|
3773
|
+
height: 30px
|
|
3774
|
+
}
|
|
3775
|
+
|
|
3776
|
+
.charm-bar-wrapper .charm-bar .charm-bar-item.charm-bar-item-link,.charm-bar-wrapper .charm-bar .charm-bar-item.tongyi {
|
|
3777
|
+
padding: 8px 16px 8px 12px;
|
|
3778
|
+
display: flex;
|
|
3779
|
+
flex-direction: row;
|
|
3780
|
+
border-radius: 14px
|
|
3781
|
+
}
|
|
3782
|
+
|
|
3783
|
+
.charm-bar-wrapper .charm-bar .charm-bar-item.charm-bar-item-link svg,.charm-bar-wrapper .charm-bar .charm-bar-item.tongyi svg {
|
|
3784
|
+
width: 110px;
|
|
3785
|
+
height: 40px;
|
|
3786
|
+
transform: none;
|
|
3787
|
+
margin-left: 5px
|
|
3788
|
+
}
|
|
3789
|
+
|
|
3790
|
+
.charm-bar-wrapper .charm-bar .charm-bar-item.charm-bar-item-link svg.logo,.charm-bar-wrapper .charm-bar .charm-bar-item.tongyi svg.logo {
|
|
3791
|
+
height: 38px;
|
|
3792
|
+
width: 38px
|
|
3793
|
+
}
|
|
3794
|
+
|
|
3795
|
+
.charm-bar-wrapper .charm-bar .charm-bar-item.charm-bar-item-link svg.arrow,.charm-bar-wrapper .charm-bar .charm-bar-item.tongyi svg.arrow {
|
|
3796
|
+
width: 28px;
|
|
3797
|
+
height: 28px;
|
|
3798
|
+
stroke-width: 2
|
|
3799
|
+
}
|
|
3800
|
+
|
|
3801
|
+
.MathJax_Display,.MJXc-display,.MathJax_SVG_Display,mjx-container[display="true"] {
|
|
3802
|
+
overflow-x: auto;
|
|
3803
|
+
overflow-y: hidden
|
|
3804
|
+
}
|
|
3805
|
+
|
|
3806
|
+
mjx-assistive-mml {
|
|
3807
|
+
right: 0;
|
|
3808
|
+
bottom: 0;
|
|
3809
|
+
max-width: 100%
|
|
3810
|
+
}
|
|
3811
|
+
|
|
3812
|
+
mjx-container:not([display]) {
|
|
3813
|
+
display: inline-flex;
|
|
3814
|
+
max-width: 100%;
|
|
3815
|
+
overflow-x: auto;
|
|
3816
|
+
overflow-y: hidden
|
|
3817
|
+
}
|
|
3818
|
+
|
|
3819
|
+
@media print {
|
|
3820
|
+
.navbar {
|
|
3821
|
+
visibility: hidden
|
|
3822
|
+
}
|
|
3823
|
+
|
|
3824
|
+
#blog_nav_rss_image {
|
|
3825
|
+
display: none
|
|
3826
|
+
}
|
|
3827
|
+
|
|
3828
|
+
.postBody {
|
|
3829
|
+
font-size: 16px
|
|
3830
|
+
}
|
|
3831
|
+
|
|
3832
|
+
.commentform {
|
|
3833
|
+
display: none
|
|
3834
|
+
}
|
|
3835
|
+
|
|
3836
|
+
.footer-icp {
|
|
3837
|
+
display: none
|
|
3838
|
+
}
|
|
3839
|
+
|
|
3840
|
+
.charm-bar-wrapper,.charm-bar-main {
|
|
3841
|
+
display: none
|
|
3842
|
+
}
|
|
3843
|
+
|
|
3844
|
+
#sidebar_c3 {
|
|
3845
|
+
display: none
|
|
3846
|
+
}
|
|
3847
|
+
}
|
|
3848
|
+
|
|
3849
|
+
.cnblogs-overlay-report {
|
|
3850
|
+
position: fixed;
|
|
3851
|
+
display: flex;
|
|
3852
|
+
justify-content: center;
|
|
3853
|
+
align-items: center;
|
|
3854
|
+
top: 0;
|
|
3855
|
+
bottom: 0;
|
|
3856
|
+
left: 0;
|
|
3857
|
+
right: 0;
|
|
3858
|
+
background: rgba(0,0,0,.45);
|
|
3859
|
+
z-index: 1000;
|
|
3860
|
+
user-select: none
|
|
3861
|
+
}
|
|
3862
|
+
|
|
3863
|
+
.cnblogs-overlay-report .cnblogs-report-modal {
|
|
3864
|
+
width: 60vw;
|
|
3865
|
+
background: #fff;
|
|
3866
|
+
border-radius: 3px;
|
|
3867
|
+
overflow-y: hidden;
|
|
3868
|
+
animation: modal-open .3s;
|
|
3869
|
+
animation-fill-mode: forwards
|
|
3870
|
+
}
|
|
3871
|
+
|
|
3872
|
+
.cnblogs-overlay-report .cnblogs-report-modal iframe {
|
|
3873
|
+
border: none;
|
|
3874
|
+
width: 100%;
|
|
3875
|
+
min-height: 500px;
|
|
3876
|
+
max-height: 90vh;
|
|
3877
|
+
overflow-y: auto
|
|
3878
|
+
}
|
|
3879
|
+
|
|
3880
|
+
@keyframes modal-open {
|
|
3881
|
+
0% {
|
|
3882
|
+
height: 0;
|
|
3883
|
+
opacity: 0
|
|
3884
|
+
}
|
|
3885
|
+
|
|
3886
|
+
95% {
|
|
3887
|
+
height: 505px
|
|
3888
|
+
}
|
|
3889
|
+
|
|
3890
|
+
100% {
|
|
3891
|
+
height: auto;
|
|
3892
|
+
opacity: 1
|
|
3893
|
+
}
|
|
3894
|
+
}
|
|
3895
|
+
|
|
3896
|
+
:root {
|
|
3897
|
+
--cnblogs-toc-bg-color: rgba(245,245,245,.98);
|
|
3898
|
+
--cnblogs-toc-highlight-color: rgba(255,255,255,.9);
|
|
3899
|
+
--cnblogs-toc-color: #000
|
|
3900
|
+
}
|
|
3901
|
+
|
|
3902
|
+
.cnblogs-toc {
|
|
3903
|
+
display: flex;
|
|
3904
|
+
flex-direction: column;
|
|
3905
|
+
margin-top: 5px;
|
|
3906
|
+
font-weight: normal;
|
|
3907
|
+
max-height: 80vh;
|
|
3908
|
+
overflow-y: auto;
|
|
3909
|
+
text-shadow: none;
|
|
3910
|
+
font-size: 14px;
|
|
3911
|
+
color: var(--cnblogs-toc-color)
|
|
3912
|
+
}
|
|
3913
|
+
|
|
3914
|
+
*:hover>.cnblogs-toc-button:not(.disabled) {
|
|
3915
|
+
display: inline
|
|
3916
|
+
}
|
|
3917
|
+
|
|
3918
|
+
.cnblogs-toc-pinned-button::before {
|
|
3919
|
+
content: '';
|
|
3920
|
+
background-color: currentColor;
|
|
3921
|
+
-webkit-mask-image: url("/images/pin.svg");
|
|
3922
|
+
mask-image: url("/images/pin.svg");
|
|
3923
|
+
width: 1em;
|
|
3924
|
+
height: 1em;
|
|
3925
|
+
display: block;
|
|
3926
|
+
margin: auto;
|
|
3927
|
+
max-width: 100%
|
|
3928
|
+
}
|
|
3929
|
+
|
|
3930
|
+
.wb-drag .cnblogs-toc-pinned-navigator {
|
|
3931
|
+
opacity: 10%
|
|
3932
|
+
}
|
|
3933
|
+
|
|
3934
|
+
body {
|
|
3935
|
+
min-height: 100vh
|
|
3936
|
+
}
|
|
3937
|
+
|
|
3938
|
+
.cnblogs-toc-pinned-navigator {
|
|
3939
|
+
border-radius: 4px
|
|
3940
|
+
}
|
|
3941
|
+
|
|
3942
|
+
.cnblogs-toc-pinned-navigator .cnblogs-toc-title {
|
|
3943
|
+
padding-top: 5px
|
|
3944
|
+
}
|
|
3945
|
+
|
|
3946
|
+
.cnblogs-toc-pinned-navigator .wb-header {
|
|
3947
|
+
color: var(--cnblogs-toc-color);
|
|
3948
|
+
background: transparent
|
|
3949
|
+
}
|
|
3950
|
+
|
|
3951
|
+
.cnblogs-toc-pinned-navigator .wb-header .wb-icon {
|
|
3952
|
+
filter: invert(1)
|
|
3953
|
+
}
|
|
3954
|
+
|
|
3955
|
+
.cnblogs-toc-pinned-navigator .wb-body {
|
|
3956
|
+
background: transparent
|
|
3957
|
+
}
|
|
3958
|
+
|
|
3959
|
+
.cnblogs-toc-pinned-navigator .cnblogs-toc {
|
|
3960
|
+
overflow: visible
|
|
3961
|
+
}
|
|
3962
|
+
|
|
3963
|
+
.cnblogs-toc-pinned-navigator .cnblogs-toc>.cnblogs-toc-title,.cnblogs-toc-pinned-navigator .cnblogs-toc-tips,.cnblogs-toc-pinned-navigator .cnblogs-toc-pinned-button {
|
|
3964
|
+
display: none
|
|
3965
|
+
}
|
|
3966
|
+
|
|
3967
|
+
.cnblogs-toc-button:active,.cnblogs-toc-button.active {
|
|
3968
|
+
display: inline;
|
|
3969
|
+
opacity: 100%
|
|
3970
|
+
}
|
|
3971
|
+
|
|
3972
|
+
.cnblogs-toc-button.disabled {
|
|
3973
|
+
display: none
|
|
3974
|
+
}
|
|
3975
|
+
|
|
3976
|
+
.cnblogs-toc-collapse-button {
|
|
3977
|
+
outline: none;
|
|
3978
|
+
border: none;
|
|
3979
|
+
-moz-appearance: none;
|
|
3980
|
+
-webkit-appearance: none;
|
|
3981
|
+
appearance: none;
|
|
3982
|
+
background: transparent;
|
|
3983
|
+
border: 0;
|
|
3984
|
+
cursor: pointer;
|
|
3985
|
+
-moz-user-select: none;
|
|
3986
|
+
-ms-user-select: none;
|
|
3987
|
+
-webkit-user-select: none;
|
|
3988
|
+
user-select: none;
|
|
3989
|
+
padding: 0;
|
|
3990
|
+
margin-left: -20px
|
|
3991
|
+
}
|
|
3992
|
+
|
|
3993
|
+
.cnblogs-toc-pinned-button,.cnblogs-toc-button {
|
|
3994
|
+
font-size: inherit;
|
|
3995
|
+
color: inherit;
|
|
3996
|
+
opacity: 50%;
|
|
3997
|
+
outline: none;
|
|
3998
|
+
border: none;
|
|
3999
|
+
-moz-appearance: none;
|
|
4000
|
+
-webkit-appearance: none;
|
|
4001
|
+
appearance: none;
|
|
4002
|
+
background: transparent;
|
|
4003
|
+
border: 0;
|
|
4004
|
+
cursor: pointer;
|
|
4005
|
+
-moz-user-select: none;
|
|
4006
|
+
-ms-user-select: none;
|
|
4007
|
+
-webkit-user-select: none;
|
|
4008
|
+
user-select: none;
|
|
4009
|
+
padding: 0;
|
|
4010
|
+
margin-left: .5rem;
|
|
4011
|
+
text-transform: none;
|
|
4012
|
+
text-decoration: none;
|
|
4013
|
+
vertical-align: middle
|
|
4014
|
+
}
|
|
4015
|
+
|
|
4016
|
+
.cnblogs-toc-button {
|
|
4017
|
+
display: none
|
|
4018
|
+
}
|
|
4019
|
+
|
|
4020
|
+
.cnblogs-toc-button:hover {
|
|
4021
|
+
opacity: 80%
|
|
4022
|
+
}
|
|
4023
|
+
|
|
4024
|
+
.cnblogs-toc-pinned-button {
|
|
4025
|
+
margin-left: 0;
|
|
4026
|
+
width: fit-content;
|
|
4027
|
+
align-self: end;
|
|
4028
|
+
padding: 5px;
|
|
4029
|
+
display: inline;
|
|
4030
|
+
flex: 0 0 auto
|
|
4031
|
+
}
|
|
4032
|
+
|
|
4033
|
+
@media only screen and (max-width: 767px) {
|
|
4034
|
+
.cnblogs-toc-title .cnblogs-toc-pinned-button {
|
|
4035
|
+
display:none
|
|
4036
|
+
}
|
|
4037
|
+
}
|
|
4038
|
+
|
|
4039
|
+
.cnblogs-toc-button::before {
|
|
4040
|
+
content: '';
|
|
4041
|
+
background-color: currentColor;
|
|
4042
|
+
-webkit-mask-image: url("/images/toc.svg");
|
|
4043
|
+
mask-image: url("/images/toc.svg");
|
|
4044
|
+
width: 1em;
|
|
4045
|
+
height: 1em;
|
|
4046
|
+
display: block;
|
|
4047
|
+
margin: auto;
|
|
4048
|
+
max-width: 100%
|
|
4049
|
+
}
|
|
4050
|
+
|
|
4051
|
+
.cnblogs-toc-item .cnblogs-toc-collapse-button::before {
|
|
4052
|
+
content: '';
|
|
4053
|
+
background: currentColor;
|
|
4054
|
+
-webkit-mask-image: url("/images/arrow-down.svg");
|
|
4055
|
+
mask-image: url("/images/arrow-down.svg");
|
|
4056
|
+
width: 20px;
|
|
4057
|
+
height: 20px;
|
|
4058
|
+
display: block;
|
|
4059
|
+
margin: auto;
|
|
4060
|
+
max-width: 100%
|
|
4061
|
+
}
|
|
4062
|
+
|
|
4063
|
+
.cnblogs-toc-item.cnblogs-toc-collapsed .cnblogs-toc-collapse-button::before {
|
|
4064
|
+
-webkit-mask-image: url("/images/arrow-right.svg");
|
|
4065
|
+
mask-image: url("/images/arrow-right.svg")
|
|
4066
|
+
}
|
|
4067
|
+
|
|
4068
|
+
.cnblogs-toc>.cnblogs-toc-bottom-toolbar {
|
|
4069
|
+
display: flex;
|
|
4070
|
+
flex-direction: row;
|
|
4071
|
+
align-items: center;
|
|
4072
|
+
justify-content: flex-end;
|
|
4073
|
+
font-size: 10px;
|
|
4074
|
+
color: var(--cnblogs-toc-color);
|
|
4075
|
+
opacity: .5;
|
|
4076
|
+
font-style: italic;
|
|
4077
|
+
font-weight: normal;
|
|
4078
|
+
padding: 10px;
|
|
4079
|
+
margin: 0
|
|
4080
|
+
}
|
|
4081
|
+
|
|
4082
|
+
.cnblogs-toc>.cnblogs-toc-title {
|
|
4083
|
+
display: flex;
|
|
4084
|
+
align-items: center;
|
|
4085
|
+
justify-content: space-between;
|
|
4086
|
+
margin: 0;
|
|
4087
|
+
padding: 10px 10px 5px 10px;
|
|
4088
|
+
-moz-user-select: none;
|
|
4089
|
+
-ms-user-select: none;
|
|
4090
|
+
-webkit-user-select: none;
|
|
4091
|
+
user-select: none;
|
|
4092
|
+
border-top-left-radius: 4px;
|
|
4093
|
+
border-top-right-radius: 4px
|
|
4094
|
+
}
|
|
4095
|
+
|
|
4096
|
+
.cnblogs-toc-pinned-button:hover,.cnblogs-toc-item:not(.cnblogs-toc-text):hover {
|
|
4097
|
+
background-color: var(--cnblogs-toc-highlight-color);
|
|
4098
|
+
cursor: pointer
|
|
4099
|
+
}
|
|
4100
|
+
|
|
4101
|
+
.cnblogs-toc>.cnblogs-toc-item {
|
|
4102
|
+
display: flex;
|
|
4103
|
+
align-items: center;
|
|
4104
|
+
text-align: left;
|
|
4105
|
+
padding: 5px 15px;
|
|
4106
|
+
margin: 0;
|
|
4107
|
+
flex: 0 0 auto
|
|
4108
|
+
}
|
|
4109
|
+
|
|
4110
|
+
#cnblogs_post_body .cnblogs-toc .cnblogs-toc-text .footnote-item,.cnblogs-toc .cnblogs-toc-text .footnote-item {
|
|
4111
|
+
list-style: none
|
|
4112
|
+
}
|
|
4113
|
+
|
|
4114
|
+
.cnblogs-toc>.cnblogs-toc-item>.cnblogs-toc-content {
|
|
4115
|
+
display: -webkit-box;
|
|
4116
|
+
-webkit-box-orient: vertical;
|
|
4117
|
+
-webkit-line-clamp: 3;
|
|
4118
|
+
overflow: hidden;
|
|
4119
|
+
padding: 0;
|
|
4120
|
+
margin: 0;
|
|
4121
|
+
font-weight: inherit
|
|
4122
|
+
}
|
|
4123
|
+
|
|
4124
|
+
.cnblogs-toc>.cnblogs-toc-bottom-toolbar>.cnblogs-toc-publish-date {
|
|
4125
|
+
font-size: inherit;
|
|
4126
|
+
font-weight: inherit;
|
|
4127
|
+
color: inherit;
|
|
4128
|
+
font-style: inherit
|
|
4129
|
+
}
|
|
4130
|
+
|
|
4131
|
+
.cnblogs-toc>.cnblogs-toc-bottom-toolbar>.cnblogs-toc-tips {
|
|
4132
|
+
margin: 0 0 0 5px
|
|
4133
|
+
}
|
|
4134
|
+
|
|
4135
|
+
.cnblogs-toc>.cnblogs-toc-bottom-toolbar>.cnblogs-toc-tips>a {
|
|
4136
|
+
font-size: inherit;
|
|
4137
|
+
font-weight: inherit;
|
|
4138
|
+
color: inherit;
|
|
4139
|
+
font-style: inherit
|
|
4140
|
+
}
|
|
4141
|
+
|
|
4142
|
+
.cnblogs-toc-item:last-child {
|
|
4143
|
+
padding-bottom: 10px;
|
|
4144
|
+
border-bottom-left-radius: 4px;
|
|
4145
|
+
border-bottom-right-radius: 4px
|
|
4146
|
+
}
|
|
4147
|
+
|
|
4148
|
+
.cnblogs-toc-item[data-level="0"] {
|
|
4149
|
+
font-weight: bold;
|
|
4150
|
+
padding-left: 10px
|
|
4151
|
+
}
|
|
4152
|
+
|
|
4153
|
+
.cnblogs-toc-item[data-level="1"] {
|
|
4154
|
+
font-weight: bold;
|
|
4155
|
+
padding-left: 20px
|
|
4156
|
+
}
|
|
4157
|
+
|
|
4158
|
+
.cnblogs-toc-item[data-level="2"] {
|
|
4159
|
+
font-weight: normal;
|
|
4160
|
+
padding-left: 30px
|
|
4161
|
+
}
|
|
4162
|
+
|
|
4163
|
+
.cnblogs-toc-item[data-level="3"] {
|
|
4164
|
+
font-weight: normal;
|
|
4165
|
+
padding-left: 40px
|
|
4166
|
+
}
|
|
4167
|
+
|
|
4168
|
+
.cnblogs-toc-item[data-level="4"] {
|
|
4169
|
+
font-weight: normal;
|
|
4170
|
+
padding-left: 50px
|
|
4171
|
+
}
|
|
4172
|
+
|
|
4173
|
+
.cnblogs-toc-item[data-level="5"] {
|
|
4174
|
+
font-weight: normal;
|
|
4175
|
+
padding-left: 55px
|
|
4176
|
+
}
|
|
4177
|
+
|
|
4178
|
+
.cnblogs-toc-item[data-level="6"] {
|
|
4179
|
+
font-weight: normal;
|
|
4180
|
+
padding-left: 60px
|
|
4181
|
+
}
|
|
4182
|
+
|
|
4183
|
+
.tippy-box[data-animation=fade][data-state=hidden] {
|
|
4184
|
+
opacity: 0
|
|
4185
|
+
}
|
|
4186
|
+
|
|
4187
|
+
[data-tippy-root] {
|
|
4188
|
+
max-width: calc(100vw - 10px)
|
|
4189
|
+
}
|
|
4190
|
+
|
|
4191
|
+
.tippy-box {
|
|
4192
|
+
position: relative;
|
|
4193
|
+
border-radius: 4px;
|
|
4194
|
+
font-size: 14px;
|
|
4195
|
+
line-height: 1.4;
|
|
4196
|
+
white-space: normal;
|
|
4197
|
+
outline: 0;
|
|
4198
|
+
transition-property: transform,visibility,opacity
|
|
4199
|
+
}
|
|
4200
|
+
|
|
4201
|
+
.tippy-box[data-inertia][data-state=visible] {
|
|
4202
|
+
transition-timing-function: cubic-bezier(.54,1.5,.38,1.11)
|
|
4203
|
+
}
|
|
4204
|
+
|
|
4205
|
+
.tippy-content {
|
|
4206
|
+
padding: 0 0 !important;
|
|
4207
|
+
position: relative;
|
|
4208
|
+
z-index: 1
|
|
4209
|
+
}
|
|
4210
|
+
|
|
4211
|
+
.tippy-box[data-animation=shift-away-subtle][data-state=hidden] {
|
|
4212
|
+
opacity: 0
|
|
4213
|
+
}
|
|
4214
|
+
|
|
4215
|
+
.tippy-box[data-animation=shift-away-subtle][data-state=hidden][data-placement^=top] {
|
|
4216
|
+
transform: translateY(5px)
|
|
4217
|
+
}
|
|
4218
|
+
|
|
4219
|
+
.tippy-box[data-animation=shift-away-subtle][data-state=hidden][data-placement^=bottom] {
|
|
4220
|
+
transform: translateY(-5px)
|
|
4221
|
+
}
|
|
4222
|
+
|
|
4223
|
+
.tippy-box[data-animation=shift-away-subtle][data-state=hidden][data-placement^=left] {
|
|
4224
|
+
transform: translateX(5px)
|
|
4225
|
+
}
|
|
4226
|
+
|
|
4227
|
+
.tippy-box[data-animation=shift-away-subtle][data-state=hidden][data-placement^=right] {
|
|
4228
|
+
transform: translateX(-5px)
|
|
4229
|
+
}
|
|
4230
|
+
|
|
4231
|
+
.tippy-box[data-theme~=cnblogs] {
|
|
4232
|
+
color: var(--cnblogs-toc-color);
|
|
4233
|
+
box-shadow: 0 0 20px 4px rgba(154,161,177,.15),0 4px 80px -8px rgba(36,40,47,.25),0 4px 4px -2px rgba(91,94,105,.15);
|
|
4234
|
+
background-color: var(--cnblogs-toc-bg-color)
|
|
4235
|
+
}
|
|
4236
|
+
|
|
4237
|
+
@keyframes wb-fade-in {
|
|
4238
|
+
0% {
|
|
4239
|
+
opacity: 0
|
|
4240
|
+
}
|
|
4241
|
+
|
|
4242
|
+
to {
|
|
4243
|
+
opacity: .85
|
|
4244
|
+
}
|
|
4245
|
+
}
|
|
4246
|
+
|
|
4247
|
+
.no-move:not(.min) .wb-title,.winbox.max .wb-body~div,.winbox.min .wb-body~div,.winbox.modal .wb-body~div,.winbox.modal .wb-title,body.wb-drag iframe {
|
|
4248
|
+
pointer-events: none
|
|
4249
|
+
}
|
|
4250
|
+
|
|
4251
|
+
.winbox {
|
|
4252
|
+
position: fixed;
|
|
4253
|
+
left: 0;
|
|
4254
|
+
top: 0;
|
|
4255
|
+
background: #0050ff;
|
|
4256
|
+
box-shadow: 0 14px 28px rgba(0,0,0,.25),0 10px 10px rgba(0,0,0,.22);
|
|
4257
|
+
transition: width .3s,height .3s,transform .3s,opacity .3s;
|
|
4258
|
+
transition-timing-function: cubic-bezier(.3,1,.3,1);
|
|
4259
|
+
will-change: transform,width,height,opacity;
|
|
4260
|
+
contain: layout size;
|
|
4261
|
+
text-align: left;
|
|
4262
|
+
touch-action: none;
|
|
4263
|
+
min-height: 35px
|
|
4264
|
+
}
|
|
4265
|
+
|
|
4266
|
+
.wb-header,.wb-icon {
|
|
4267
|
+
height: 35px
|
|
4268
|
+
}
|
|
4269
|
+
|
|
4270
|
+
.wb-n,.wb-s {
|
|
4271
|
+
left: 0;
|
|
4272
|
+
height: 10px;
|
|
4273
|
+
position: absolute
|
|
4274
|
+
}
|
|
4275
|
+
|
|
4276
|
+
.wb-body {
|
|
4277
|
+
top: 35px
|
|
4278
|
+
}
|
|
4279
|
+
|
|
4280
|
+
.wb-header,.winbox iframe {
|
|
4281
|
+
position: absolute;
|
|
4282
|
+
width: 100%
|
|
4283
|
+
}
|
|
4284
|
+
|
|
4285
|
+
.wb-header {
|
|
4286
|
+
left: 0;
|
|
4287
|
+
top: 0;
|
|
4288
|
+
color: #fff;
|
|
4289
|
+
overflow: hidden;
|
|
4290
|
+
z-index: 1
|
|
4291
|
+
}
|
|
4292
|
+
|
|
4293
|
+
.wb-body {
|
|
4294
|
+
position: absolute;
|
|
4295
|
+
left: 0;
|
|
4296
|
+
right: 0;
|
|
4297
|
+
bottom: 0;
|
|
4298
|
+
overflow: auto;
|
|
4299
|
+
-webkit-overflow-scrolling: touch;
|
|
4300
|
+
overflow-scrolling: touch;
|
|
4301
|
+
will-change: contents;
|
|
4302
|
+
background: #fff;
|
|
4303
|
+
margin-top: 0 !important;
|
|
4304
|
+
contain: strict
|
|
4305
|
+
}
|
|
4306
|
+
|
|
4307
|
+
.wb-title {
|
|
4308
|
+
line-height: 35px;
|
|
4309
|
+
font-family: Arial,sans-serif;
|
|
4310
|
+
font-size: 14px;
|
|
4311
|
+
padding-left: 10px;
|
|
4312
|
+
cursor: move;
|
|
4313
|
+
white-space: nowrap;
|
|
4314
|
+
overflow: hidden;
|
|
4315
|
+
text-overflow: ellipsis
|
|
4316
|
+
}
|
|
4317
|
+
|
|
4318
|
+
.wb-n {
|
|
4319
|
+
top: -5px;
|
|
4320
|
+
right: 0;
|
|
4321
|
+
cursor: n-resize
|
|
4322
|
+
}
|
|
4323
|
+
|
|
4324
|
+
.wb-e {
|
|
4325
|
+
position: absolute;
|
|
4326
|
+
top: 0;
|
|
4327
|
+
right: -5px;
|
|
4328
|
+
bottom: 0;
|
|
4329
|
+
width: 10px;
|
|
4330
|
+
cursor: w-resize
|
|
4331
|
+
}
|
|
4332
|
+
|
|
4333
|
+
.wb-s,.wb-se,.wb-sw {
|
|
4334
|
+
bottom: -5px
|
|
4335
|
+
}
|
|
4336
|
+
|
|
4337
|
+
.wb-s {
|
|
4338
|
+
right: 0;
|
|
4339
|
+
cursor: n-resize
|
|
4340
|
+
}
|
|
4341
|
+
|
|
4342
|
+
.wb-w {
|
|
4343
|
+
position: absolute;
|
|
4344
|
+
top: 0;
|
|
4345
|
+
left: -5px;
|
|
4346
|
+
bottom: 0;
|
|
4347
|
+
width: 10px;
|
|
4348
|
+
cursor: w-resize
|
|
4349
|
+
}
|
|
4350
|
+
|
|
4351
|
+
.wb-ne,.wb-nw,.wb-sw {
|
|
4352
|
+
width: 15px;
|
|
4353
|
+
height: 15px;
|
|
4354
|
+
position: absolute
|
|
4355
|
+
}
|
|
4356
|
+
|
|
4357
|
+
.wb-nw {
|
|
4358
|
+
top: -5px;
|
|
4359
|
+
left: -5px;
|
|
4360
|
+
cursor: nw-resize
|
|
4361
|
+
}
|
|
4362
|
+
|
|
4363
|
+
.wb-ne,.wb-sw {
|
|
4364
|
+
cursor: ne-resize
|
|
4365
|
+
}
|
|
4366
|
+
|
|
4367
|
+
.wb-ne {
|
|
4368
|
+
top: -5px;
|
|
4369
|
+
right: -5px
|
|
4370
|
+
}
|
|
4371
|
+
|
|
4372
|
+
.wb-sw {
|
|
4373
|
+
left: -5px
|
|
4374
|
+
}
|
|
4375
|
+
|
|
4376
|
+
.wb-se {
|
|
4377
|
+
position: absolute;
|
|
4378
|
+
right: -5px;
|
|
4379
|
+
width: 15px;
|
|
4380
|
+
height: 15px;
|
|
4381
|
+
cursor: nw-resize
|
|
4382
|
+
}
|
|
4383
|
+
|
|
4384
|
+
.wb-icon {
|
|
4385
|
+
float: right;
|
|
4386
|
+
max-width: 100%;
|
|
4387
|
+
text-align: center
|
|
4388
|
+
}
|
|
4389
|
+
|
|
4390
|
+
.wb-icon * {
|
|
4391
|
+
display: inline-block;
|
|
4392
|
+
width: 30px;
|
|
4393
|
+
height: 100%;
|
|
4394
|
+
background-position: center;
|
|
4395
|
+
background-repeat: no-repeat;
|
|
4396
|
+
cursor: pointer;
|
|
4397
|
+
max-width: 100%
|
|
4398
|
+
}
|
|
4399
|
+
|
|
4400
|
+
.no-close .wb-close,.no-full .wb-full,.no-header .wb-header,.no-max .wb-max,.no-min .wb-min,.no-resize .wb-body~div,.winbox.hide,.winbox.min .wb-body>*,.winbox.min .wb-full,.winbox.min .wb-min,.winbox.modal .wb-full,.winbox.modal .wb-max,.winbox.modal .wb-min {
|
|
4401
|
+
display: none
|
|
4402
|
+
}
|
|
4403
|
+
|
|
4404
|
+
.winbox.max .wb-title,.winbox.min .wb-title {
|
|
4405
|
+
cursor: default
|
|
4406
|
+
}
|
|
4407
|
+
|
|
4408
|
+
.wb-min {
|
|
4409
|
+
background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAyIj48cGF0aCBmaWxsPSIjZmZmIiBkPSJNOCAwaDdhMSAxIDAgMCAxIDAgMkgxYTEgMSAwIDAgMSAwLTJoN3oiLz48L3N2Zz4=);
|
|
4410
|
+
background-size: 14px auto;
|
|
4411
|
+
background-position: center bottom 11px
|
|
4412
|
+
}
|
|
4413
|
+
|
|
4414
|
+
.wb-max {
|
|
4415
|
+
background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9IiNmZmYiIHZpZXdCb3g9IjAgMCA5NiA5NiI+PHBhdGggZD0iTTIwIDcxLjMxMUMxNS4zNCA2OS42NyAxMiA2NS4yMyAxMiA2MFYyMGMwLTYuNjMgNS4zNy0xMiAxMi0xMmg0MGM1LjIzIDAgOS42NyAzLjM0IDExLjMxMSA4SDI0Yy0yLjIxIDAtNCAxLjc5LTQgNHY1MS4zMTF6Ii8+PHBhdGggZD0iTTkyIDc2VjM2YzAtNi42My01LjM3LTEyLTEyLTEySDQwYy02LjYzIDAtMTIgNS4zNy0xMiAxMnY0MGMwIDYuNjMgNS4zNyAxMiAxMiAxMmg0MGM2LjYzIDAgMTItNS4zNyAxMi0xMnptLTUyIDRjLTIuMjEgMC00LTEuNzktNC00VjM2YzAtMi4yMSAxLjc5LTQgNC00aDQwYzIuMjEgMCA0IDEuNzkgNCA0djQwYzAgMi4yMS0xLjc5IDQtNCA0SDQweiIvPjwvc3ZnPg==);
|
|
4416
|
+
background-size: 17px auto
|
|
4417
|
+
}
|
|
4418
|
+
|
|
4419
|
+
.wb-close {
|
|
4420
|
+
background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0xIC0xIDE4IDE4Ij48cGF0aCBmaWxsPSIjZmZmIiBkPSJtMS42MTMuMjEuMDk0LjA4M0w4IDYuNTg1IDE0LjI5My4yOTNsLjA5NC0uMDgzYTEgMSAwIDAgMSAxLjQwMyAxLjQwM2wtLjA4My4wOTRMOS40MTUgOGw2LjI5MiA2LjI5M2ExIDEgMCAwIDEtMS4zMiAxLjQ5N2wtLjA5NC0uMDgzTDggOS40MTVsLTYuMjkzIDYuMjkyLS4wOTQuMDgzQTEgMSAwIDAgMSAuMjEgMTQuMzg3bC4wODMtLjA5NEw2LjU4NSA4IC4yOTMgMS43MDdBMSAxIDAgMCAxIDEuNjEzLjIxeiIvPjwvc3ZnPg==);
|
|
4421
|
+
background-size: 15px auto
|
|
4422
|
+
}
|
|
4423
|
+
|
|
4424
|
+
.wb-full {
|
|
4425
|
+
background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIuNSIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNOCAzSDVhMiAyIDAgMCAwLTIgMnYzbTE4IDBWNWEyIDIgMCAwIDAtMi0yaC0zbTAgMThoM2EyIDIgMCAwIDAgMi0ydi0zTTMgMTZ2M2EyIDIgMCAwIDAgMiAyaDMiLz48L3N2Zz4=);
|
|
4426
|
+
background-size: 16px auto
|
|
4427
|
+
}
|
|
4428
|
+
|
|
4429
|
+
.winbox.hide {
|
|
4430
|
+
visibility: hidden
|
|
4431
|
+
}
|
|
4432
|
+
|
|
4433
|
+
.max {
|
|
4434
|
+
box-shadow: none
|
|
4435
|
+
}
|
|
4436
|
+
|
|
4437
|
+
.max .wb-body {
|
|
4438
|
+
margin: 0 !important
|
|
4439
|
+
}
|
|
4440
|
+
|
|
4441
|
+
.winbox iframe {
|
|
4442
|
+
height: 100%;
|
|
4443
|
+
border: 0
|
|
4444
|
+
}
|
|
4445
|
+
|
|
4446
|
+
.no-animation,body.wb-drag .winbox {
|
|
4447
|
+
transition: none
|
|
4448
|
+
}
|
|
4449
|
+
|
|
4450
|
+
.winbox.modal:before {
|
|
4451
|
+
content: '';
|
|
4452
|
+
position: absolute;
|
|
4453
|
+
top: 0;
|
|
4454
|
+
left: 0;
|
|
4455
|
+
right: 0;
|
|
4456
|
+
bottom: 0;
|
|
4457
|
+
background: inherit;
|
|
4458
|
+
border-radius: inherit
|
|
4459
|
+
}
|
|
4460
|
+
|
|
4461
|
+
.winbox.modal:after {
|
|
4462
|
+
content: '';
|
|
4463
|
+
position: absolute;
|
|
4464
|
+
top: -100vh;
|
|
4465
|
+
left: -100vw;
|
|
4466
|
+
right: -100vw;
|
|
4467
|
+
bottom: -100vh;
|
|
4468
|
+
background: #0d1117;
|
|
4469
|
+
animation: wb-fade-in .2s ease-out forwards;
|
|
4470
|
+
z-index: -1
|
|
4471
|
+
}
|
|
4472
|
+
|
|
4473
|
+
.no-shadow {
|
|
4474
|
+
box-shadow: none
|
|
4475
|
+
}
|
|
4476
|
+
|
|
4477
|
+
.no-header .wb-body {
|
|
4478
|
+
top: 0
|
|
4479
|
+
}
|
|
4480
|
+
|
|
4481
|
+
pre code.hljs {
|
|
4482
|
+
display: block;
|
|
4483
|
+
overflow-x: auto;
|
|
4484
|
+
padding: 1em
|
|
4485
|
+
}
|
|
4486
|
+
|
|
4487
|
+
code.hljs {
|
|
4488
|
+
padding: 1em
|
|
4489
|
+
}
|
|
4490
|
+
|
|
4491
|
+
.hljs {
|
|
4492
|
+
background: #f3f3f3;
|
|
4493
|
+
color: #444;
|
|
4494
|
+
padding: 1em
|
|
4495
|
+
}
|
|
4496
|
+
|
|
4497
|
+
.hljs-comment {
|
|
4498
|
+
color: #697070
|
|
4499
|
+
}
|
|
4500
|
+
|
|
4501
|
+
.hljs-deletion,.hljs-number,.hljs-quote,.hljs-selector-class,.hljs-selector-id,.hljs-string,.hljs-template-tag,.hljs-type {
|
|
4502
|
+
color: #800
|
|
4503
|
+
}
|
|
4504
|
+
|
|
4505
|
+
.hljs-section,.hljs-title {
|
|
4506
|
+
color: #800
|
|
4507
|
+
}
|
|
4508
|
+
|
|
4509
|
+
.hljs-link,.hljs-operator,.hljs-regexp,.hljs-selector-attr,.hljs-selector-pseudo,.hljs-symbol,.hljs-template-variable,.hljs-variable {
|
|
4510
|
+
color: #ab5656
|
|
4511
|
+
}
|
|
4512
|
+
|
|
4513
|
+
.hljs-literal {
|
|
4514
|
+
color: #695
|
|
4515
|
+
}
|
|
4516
|
+
|
|
4517
|
+
.hljs-addition,.hljs-built_in,.hljs-bullet,.hljs-code {
|
|
4518
|
+
color: #397300
|
|
4519
|
+
}
|
|
4520
|
+
|
|
4521
|
+
.hljs-meta {
|
|
4522
|
+
color: #1f7199
|
|
4523
|
+
}
|
|
4524
|
+
|
|
4525
|
+
.hljs-meta .hljs-string {
|
|
4526
|
+
color: #38a
|
|
4527
|
+
}
|
|
4528
|
+
|
|
4529
|
+
.hljs-emphasis {
|
|
4530
|
+
font-style: italic
|
|
4531
|
+
}
|
|
4532
|
+
|
|
4533
|
+
.dropdown-menu a {
|
|
4534
|
+
color: #08c;
|
|
4535
|
+
text-decoration: none
|
|
4536
|
+
}
|
|
4537
|
+
|
|
4538
|
+
.typeahead {
|
|
4539
|
+
z-index: 1051;
|
|
4540
|
+
margin-top: 2px
|
|
4541
|
+
}
|
|
4542
|
+
|
|
4543
|
+
.dropdown-menu {
|
|
4544
|
+
position: absolute;
|
|
4545
|
+
top: 100%;
|
|
4546
|
+
left: 0;
|
|
4547
|
+
z-index: 1000;
|
|
4548
|
+
display: none;
|
|
4549
|
+
padding: 0;
|
|
4550
|
+
float: left;
|
|
4551
|
+
margin: 2px 0 0;
|
|
4552
|
+
list-style: none;
|
|
4553
|
+
background-color: #fff;
|
|
4554
|
+
text-shadow: none
|
|
4555
|
+
}
|
|
4556
|
+
|
|
4557
|
+
.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus {
|
|
4558
|
+
color: #fff;
|
|
4559
|
+
text-decoration: none;
|
|
4560
|
+
outline: 0;
|
|
4561
|
+
background-color: #4078c0;
|
|
4562
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc',endColorstr='#ff0077b3',GradientType=0)
|
|
4563
|
+
}
|
|
4564
|
+
|
|
4565
|
+
.dropdown-menu>li>a {
|
|
4566
|
+
display: block;
|
|
4567
|
+
padding: 3px 10px;
|
|
4568
|
+
clear: both;
|
|
4569
|
+
font-weight: normal;
|
|
4570
|
+
line-height: 20px;
|
|
4571
|
+
color: #333;
|
|
4572
|
+
white-space: nowrap
|
|
4573
|
+
}
|
|
4574
|
+
|
|
4575
|
+
.mention_name {
|
|
4576
|
+
font-size: 12px
|
|
4577
|
+
}
|
|
4578
|
+
|
|
4579
|
+
.mention_username {
|
|
4580
|
+
font-size: 12px;
|
|
4581
|
+
color: #999
|
|
4582
|
+
}
|
|
4583
|
+
|
|
4584
|
+
.mention_image {
|
|
4585
|
+
float: left;
|
|
4586
|
+
margin-right: 5px;
|
|
4587
|
+
-webkit-border-radius: 3px;
|
|
4588
|
+
-moz-border-radius: 3px;
|
|
4589
|
+
border-radius: 3px;
|
|
4590
|
+
width: 20px;
|
|
4591
|
+
height: 20px
|
|
4592
|
+
}
|
|
4593
|
+
|
|
4594
|
+
.active .mention_username {
|
|
4595
|
+
color: #fff
|
|
4596
|
+
}
|
|
4597
|
+
|
|
4598
|
+
.dropdown-menu>.tips {
|
|
4599
|
+
color: #fff;
|
|
4600
|
+
text-decoration: none;
|
|
4601
|
+
outline: 0;
|
|
4602
|
+
background-color: #4078c0;
|
|
4603
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc',endColorstr='#ff0077b3',GradientType=0);
|
|
4604
|
+
font-size: 12px;
|
|
4605
|
+
padding: 3px 5px;
|
|
4606
|
+
clear: both;
|
|
4607
|
+
line-height: 20px
|
|
4608
|
+
}
|
|
4609
|
+
|
|
4610
|
+
/*!
|
|
4611
|
+
* ui-dialog.css
|
|
4612
|
+
* Date: 2014-07-03
|
|
4613
|
+
* https://github.com/aui/artDialog
|
|
4614
|
+
* (c) 2009-2014 TangBin, http://www.planeArt.cn
|
|
4615
|
+
*
|
|
4616
|
+
* This is licensed under the GNU LGPL, version 2.1 or later.
|
|
4617
|
+
* For details, see: http://www.gnu.org/licenses/lgpl-2.1.html
|
|
4618
|
+
*/
|
|
4619
|
+
.ui-dialog {
|
|
4620
|
+
*zoom:1;_float: left;
|
|
4621
|
+
position: relative;
|
|
4622
|
+
background-color: #fff;
|
|
4623
|
+
border: 1px solid #999;
|
|
4624
|
+
border-radius: 6px;
|
|
4625
|
+
outline: 0;
|
|
4626
|
+
background-clip: padding-box;
|
|
4627
|
+
font-family: Helvetica,arial,sans-serif;
|
|
4628
|
+
font-size: 14px;
|
|
4629
|
+
line-height: 1.428571429;
|
|
4630
|
+
color: #333;
|
|
4631
|
+
opacity: 0;
|
|
4632
|
+
-webkit-transform: scale(0);
|
|
4633
|
+
transform: scale(0);
|
|
4634
|
+
-webkit-transition: -webkit-transform .15s ease-in-out,opacity .15s ease-in-out;
|
|
4635
|
+
transition: transform .15s ease-in-out,opacity .15s ease-in-out
|
|
4636
|
+
}
|
|
4637
|
+
|
|
4638
|
+
.ui-popup-show .ui-dialog {
|
|
4639
|
+
opacity: 1;
|
|
4640
|
+
-webkit-transform: scale(1);
|
|
4641
|
+
transform: scale(1)
|
|
4642
|
+
}
|
|
4643
|
+
|
|
4644
|
+
.ui-popup-focus .ui-dialog {
|
|
4645
|
+
box-shadow: 0 0 8px rgba(0,0,0,.1)
|
|
4646
|
+
}
|
|
4647
|
+
|
|
4648
|
+
.ui-popup-modal .ui-dialog {
|
|
4649
|
+
box-shadow: 0 0 8px rgba(0,0,0,.1),0 0 256px rgba(255,255,255,.3)
|
|
4650
|
+
}
|
|
4651
|
+
|
|
4652
|
+
.ui-dialog-grid {
|
|
4653
|
+
width: auto;
|
|
4654
|
+
margin: 0;
|
|
4655
|
+
border: 0 none;
|
|
4656
|
+
border-collapse: collapse;
|
|
4657
|
+
border-spacing: 0;
|
|
4658
|
+
background: transparent
|
|
4659
|
+
}
|
|
4660
|
+
|
|
4661
|
+
.ui-dialog-header,.ui-dialog-body,.ui-dialog-footer {
|
|
4662
|
+
padding: 0;
|
|
4663
|
+
border: 0 none;
|
|
4664
|
+
text-align: left;
|
|
4665
|
+
background: transparent
|
|
4666
|
+
}
|
|
4667
|
+
|
|
4668
|
+
.ui-dialog-header {
|
|
4669
|
+
white-space: nowrap;
|
|
4670
|
+
border-bottom: 1px solid #e5e5e5
|
|
4671
|
+
}
|
|
4672
|
+
|
|
4673
|
+
.ui-dialog-close {
|
|
4674
|
+
position: relative;
|
|
4675
|
+
_position: absolute;
|
|
4676
|
+
float: right;
|
|
4677
|
+
top: 13px;
|
|
4678
|
+
right: 13px;
|
|
4679
|
+
_height: 26px;
|
|
4680
|
+
padding: 0 4px;
|
|
4681
|
+
font-size: 21px;
|
|
4682
|
+
font-weight: bold;
|
|
4683
|
+
line-height: 1;
|
|
4684
|
+
color: #000;
|
|
4685
|
+
text-shadow: 0 1px 0 #fff;
|
|
4686
|
+
opacity: .2;
|
|
4687
|
+
filter: alpha(opacity=20);
|
|
4688
|
+
cursor: pointer;
|
|
4689
|
+
background: transparent;
|
|
4690
|
+
_background: #fff;
|
|
4691
|
+
border: 0;
|
|
4692
|
+
-webkit-appearance: none
|
|
4693
|
+
}
|
|
4694
|
+
|
|
4695
|
+
.ui-dialog-close:hover,.ui-dialog-close:focus {
|
|
4696
|
+
color: #000;
|
|
4697
|
+
text-decoration: none;
|
|
4698
|
+
cursor: pointer;
|
|
4699
|
+
outline: 0;
|
|
4700
|
+
opacity: .5;
|
|
4701
|
+
filter: alpha(opacity=50)
|
|
4702
|
+
}
|
|
4703
|
+
|
|
4704
|
+
.ui-dialog-title {
|
|
4705
|
+
margin: 0;
|
|
4706
|
+
line-height: 1.428571429;
|
|
4707
|
+
min-height: 16.428571429px;
|
|
4708
|
+
padding: 15px;
|
|
4709
|
+
overflow: hidden;
|
|
4710
|
+
white-space: nowrap;
|
|
4711
|
+
text-overflow: ellipsis;
|
|
4712
|
+
font-weight: bold;
|
|
4713
|
+
cursor: default
|
|
4714
|
+
}
|
|
4715
|
+
|
|
4716
|
+
.ui-dialog-body {
|
|
4717
|
+
padding: 20px;
|
|
4718
|
+
text-align: center
|
|
4719
|
+
}
|
|
4720
|
+
|
|
4721
|
+
.ui-dialog-content {
|
|
4722
|
+
display: inline-block;
|
|
4723
|
+
position: relative;
|
|
4724
|
+
vertical-align: middle;
|
|
4725
|
+
*zoom:1;*display: inline;
|
|
4726
|
+
text-align: left
|
|
4727
|
+
}
|
|
4728
|
+
|
|
4729
|
+
.ui-dialog-footer {
|
|
4730
|
+
padding: 0 20px 20px 20px
|
|
4731
|
+
}
|
|
4732
|
+
|
|
4733
|
+
.ui-dialog-statusbar {
|
|
4734
|
+
float: left;
|
|
4735
|
+
margin-right: 20px;
|
|
4736
|
+
padding: 6px 0;
|
|
4737
|
+
line-height: 1.428571429;
|
|
4738
|
+
font-size: 14px;
|
|
4739
|
+
color: #888;
|
|
4740
|
+
white-space: nowrap
|
|
4741
|
+
}
|
|
4742
|
+
|
|
4743
|
+
.ui-dialog-statusbar label:hover {
|
|
4744
|
+
color: #333
|
|
4745
|
+
}
|
|
4746
|
+
|
|
4747
|
+
.ui-dialog-statusbar input,.ui-dialog-statusbar .label {
|
|
4748
|
+
vertical-align: middle
|
|
4749
|
+
}
|
|
4750
|
+
|
|
4751
|
+
.ui-dialog-button {
|
|
4752
|
+
float: right;
|
|
4753
|
+
white-space: nowrap
|
|
4754
|
+
}
|
|
4755
|
+
|
|
4756
|
+
.ui-dialog-footer button+button {
|
|
4757
|
+
margin-bottom: 0;
|
|
4758
|
+
margin-left: 5px
|
|
4759
|
+
}
|
|
4760
|
+
|
|
4761
|
+
.ui-dialog-footer button {
|
|
4762
|
+
width: auto;
|
|
4763
|
+
overflow: visible;
|
|
4764
|
+
display: inline-block;
|
|
4765
|
+
padding: 6px 12px;
|
|
4766
|
+
_margin-left: 5px;
|
|
4767
|
+
margin-bottom: 0;
|
|
4768
|
+
font-size: 14px;
|
|
4769
|
+
font-weight: normal;
|
|
4770
|
+
line-height: 1.428571429;
|
|
4771
|
+
text-align: center;
|
|
4772
|
+
white-space: nowrap;
|
|
4773
|
+
vertical-align: middle;
|
|
4774
|
+
cursor: pointer;
|
|
4775
|
+
background-image: none;
|
|
4776
|
+
border: 1px solid transparent;
|
|
4777
|
+
border-radius: 4px;
|
|
4778
|
+
-webkit-user-select: none;
|
|
4779
|
+
-moz-user-select: none;
|
|
4780
|
+
-ms-user-select: none;
|
|
4781
|
+
-o-user-select: none;
|
|
4782
|
+
user-select: none
|
|
4783
|
+
}
|
|
4784
|
+
|
|
4785
|
+
.ui-dialog-footer button:focus {
|
|
4786
|
+
outline: thin dotted #333;
|
|
4787
|
+
outline: 5px auto -webkit-focus-ring-color;
|
|
4788
|
+
outline-offset: -2px
|
|
4789
|
+
}
|
|
4790
|
+
|
|
4791
|
+
.ui-dialog-footer button:hover,.ui-dialog-footer button:focus {
|
|
4792
|
+
color: #333;
|
|
4793
|
+
text-decoration: none
|
|
4794
|
+
}
|
|
4795
|
+
|
|
4796
|
+
.ui-dialog-footer button:active {
|
|
4797
|
+
background-image: none;
|
|
4798
|
+
outline: 0;
|
|
4799
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
|
|
4800
|
+
box-shadow: inset 0 3px 5px rgba(0,0,0,.125)
|
|
4801
|
+
}
|
|
4802
|
+
|
|
4803
|
+
.ui-dialog-footer button[disabled] {
|
|
4804
|
+
pointer-events: none;
|
|
4805
|
+
cursor: not-allowed;
|
|
4806
|
+
opacity: .65;
|
|
4807
|
+
filter: alpha(opacity=65);
|
|
4808
|
+
-webkit-box-shadow: none;
|
|
4809
|
+
box-shadow: none
|
|
4810
|
+
}
|
|
4811
|
+
|
|
4812
|
+
.ui-dialog-footer button {
|
|
4813
|
+
color: #333;
|
|
4814
|
+
background-color: #fff;
|
|
4815
|
+
border-color: #ccc
|
|
4816
|
+
}
|
|
4817
|
+
|
|
4818
|
+
.ui-dialog-footer button:hover,.ui-dialog-footer button:focus,.ui-dialog-footer button:active {
|
|
4819
|
+
color: #333;
|
|
4820
|
+
background-color: #ebebeb;
|
|
4821
|
+
border-color: #adadad
|
|
4822
|
+
}
|
|
4823
|
+
|
|
4824
|
+
.ui-dialog-footer button:active {
|
|
4825
|
+
background-image: none
|
|
4826
|
+
}
|
|
4827
|
+
|
|
4828
|
+
.ui-dialog-footer button[disabled],.ui-dialog-footer button[disabled]:hover,.ui-dialog-footer button[disabled]:focus,.ui-dialog-footer button[disabled]:active {
|
|
4829
|
+
background-color: #fff;
|
|
4830
|
+
border-color: #ccc
|
|
4831
|
+
}
|
|
4832
|
+
|
|
4833
|
+
.ui-dialog-footer button.ui-dialog-autofocus {
|
|
4834
|
+
color: #fff;
|
|
4835
|
+
background-color: #428bca;
|
|
4836
|
+
border-color: #357ebd
|
|
4837
|
+
}
|
|
4838
|
+
|
|
4839
|
+
.ui-dialog-footer button.ui-dialog-autofocus:hover,.ui-dialog-footer button.ui-dialog-autofocus:focus,.ui-dialog-footer button.ui-dialog-autofocus:active {
|
|
4840
|
+
color: #fff;
|
|
4841
|
+
background-color: #3276b1;
|
|
4842
|
+
border-color: #285e8e
|
|
4843
|
+
}
|
|
4844
|
+
|
|
4845
|
+
.ui-dialog-footer button.ui-dialog-autofocus:active {
|
|
4846
|
+
background-image: none
|
|
4847
|
+
}
|
|
4848
|
+
|
|
4849
|
+
.ui-popup-top-left .ui-dialog,.ui-popup-top .ui-dialog,.ui-popup-top-right .ui-dialog {
|
|
4850
|
+
top: -8px
|
|
4851
|
+
}
|
|
4852
|
+
|
|
4853
|
+
.ui-popup-bottom-left .ui-dialog,.ui-popup-bottom .ui-dialog,.ui-popup-bottom-right .ui-dialog {
|
|
4854
|
+
top: 8px
|
|
4855
|
+
}
|
|
4856
|
+
|
|
4857
|
+
.ui-popup-left-top .ui-dialog,.ui-popup-left .ui-dialog,.ui-popup-left-bottom .ui-dialog {
|
|
4858
|
+
left: -8px
|
|
4859
|
+
}
|
|
4860
|
+
|
|
4861
|
+
.ui-popup-right-top .ui-dialog,.ui-popup-right .ui-dialog,.ui-popup-right-bottom .ui-dialog {
|
|
4862
|
+
left: 8px
|
|
4863
|
+
}
|
|
4864
|
+
|
|
4865
|
+
.ui-dialog-arrow-a,.ui-dialog-arrow-b {
|
|
4866
|
+
position: absolute;
|
|
4867
|
+
display: none;
|
|
4868
|
+
width: 0;
|
|
4869
|
+
height: 0;
|
|
4870
|
+
overflow: hidden;
|
|
4871
|
+
_color: #ff3fff;
|
|
4872
|
+
_filter: chroma(color=#ff3fff);
|
|
4873
|
+
border: 8px dashed transparent
|
|
4874
|
+
}
|
|
4875
|
+
|
|
4876
|
+
.ui-popup-follow .ui-dialog-arrow-a,.ui-popup-follow .ui-dialog-arrow-b {
|
|
4877
|
+
display: block
|
|
4878
|
+
}
|
|
4879
|
+
|
|
4880
|
+
.ui-popup-top-left .ui-dialog-arrow-a,.ui-popup-top .ui-dialog-arrow-a,.ui-popup-top-right .ui-dialog-arrow-a {
|
|
4881
|
+
bottom: -16px;
|
|
4882
|
+
border-top: 8px solid #7c7c7c
|
|
4883
|
+
}
|
|
4884
|
+
|
|
4885
|
+
.ui-popup-top-left .ui-dialog-arrow-b,.ui-popup-top .ui-dialog-arrow-b,.ui-popup-top-right .ui-dialog-arrow-b {
|
|
4886
|
+
bottom: -15px;
|
|
4887
|
+
border-top: 8px solid #fff
|
|
4888
|
+
}
|
|
4889
|
+
|
|
4890
|
+
.ui-popup-top-left .ui-dialog-arrow-a,.ui-popup-top-left .ui-dialog-arrow-b {
|
|
4891
|
+
left: 15px
|
|
4892
|
+
}
|
|
4893
|
+
|
|
4894
|
+
.ui-popup-top .ui-dialog-arrow-a,.ui-popup-top .ui-dialog-arrow-b {
|
|
4895
|
+
left: 50%;
|
|
4896
|
+
margin-left: -8px
|
|
4897
|
+
}
|
|
4898
|
+
|
|
4899
|
+
.ui-popup-top-right .ui-dialog-arrow-a,.ui-popup-top-right .ui-dialog-arrow-b {
|
|
4900
|
+
right: 15px
|
|
4901
|
+
}
|
|
4902
|
+
|
|
4903
|
+
.ui-popup-bottom-left .ui-dialog-arrow-a,.ui-popup-bottom .ui-dialog-arrow-a,.ui-popup-bottom-right .ui-dialog-arrow-a {
|
|
4904
|
+
top: -16px;
|
|
4905
|
+
border-bottom: 8px solid #7c7c7c
|
|
4906
|
+
}
|
|
4907
|
+
|
|
4908
|
+
.ui-popup-bottom-left .ui-dialog-arrow-b,.ui-popup-bottom .ui-dialog-arrow-b,.ui-popup-bottom-right .ui-dialog-arrow-b {
|
|
4909
|
+
top: -15px;
|
|
4910
|
+
border-bottom: 8px solid #fff
|
|
4911
|
+
}
|
|
4912
|
+
|
|
4913
|
+
.ui-popup-bottom-left .ui-dialog-arrow-a,.ui-popup-bottom-left .ui-dialog-arrow-b {
|
|
4914
|
+
left: 15px
|
|
4915
|
+
}
|
|
4916
|
+
|
|
4917
|
+
.ui-popup-bottom .ui-dialog-arrow-a,.ui-popup-bottom .ui-dialog-arrow-b {
|
|
4918
|
+
margin-left: -8px;
|
|
4919
|
+
left: 50%
|
|
4920
|
+
}
|
|
4921
|
+
|
|
4922
|
+
.ui-popup-bottom-right .ui-dialog-arrow-a,.ui-popup-bottom-right .ui-dialog-arrow-b {
|
|
4923
|
+
right: 15px
|
|
4924
|
+
}
|
|
4925
|
+
|
|
4926
|
+
.ui-popup-left-top .ui-dialog-arrow-a,.ui-popup-left .ui-dialog-arrow-a,.ui-popup-left-bottom .ui-dialog-arrow-a {
|
|
4927
|
+
right: -16px;
|
|
4928
|
+
border-left: 8px solid #7c7c7c
|
|
4929
|
+
}
|
|
4930
|
+
|
|
4931
|
+
.ui-popup-left-top .ui-dialog-arrow-b,.ui-popup-left .ui-dialog-arrow-b,.ui-popup-left-bottom .ui-dialog-arrow-b {
|
|
4932
|
+
right: -15px;
|
|
4933
|
+
border-left: 8px solid #fff
|
|
4934
|
+
}
|
|
4935
|
+
|
|
4936
|
+
.ui-popup-left-top .ui-dialog-arrow-a,.ui-popup-left-top .ui-dialog-arrow-b {
|
|
4937
|
+
top: 15px
|
|
4938
|
+
}
|
|
4939
|
+
|
|
4940
|
+
.ui-popup-left .ui-dialog-arrow-a,.ui-popup-left .ui-dialog-arrow-b {
|
|
4941
|
+
margin-top: -8px;
|
|
4942
|
+
top: 50%
|
|
4943
|
+
}
|
|
4944
|
+
|
|
4945
|
+
.ui-popup-left-bottom .ui-dialog-arrow-a,.ui-popup-left-bottom .ui-dialog-arrow-b {
|
|
4946
|
+
bottom: 15px
|
|
4947
|
+
}
|
|
4948
|
+
|
|
4949
|
+
.ui-popup-right-top .ui-dialog-arrow-a,.ui-popup-right .ui-dialog-arrow-a,.ui-popup-right-bottom .ui-dialog-arrow-a {
|
|
4950
|
+
left: -16px;
|
|
4951
|
+
border-right: 8px solid #7c7c7c
|
|
4952
|
+
}
|
|
4953
|
+
|
|
4954
|
+
.ui-popup-right-top .ui-dialog-arrow-b,.ui-popup-right .ui-dialog-arrow-b,.ui-popup-right-bottom .ui-dialog-arrow-b {
|
|
4955
|
+
left: -15px;
|
|
4956
|
+
border-right: 8px solid #fff
|
|
4957
|
+
}
|
|
4958
|
+
|
|
4959
|
+
.ui-popup-right-top .ui-dialog-arrow-a,.ui-popup-right-top .ui-dialog-arrow-b {
|
|
4960
|
+
top: 15px
|
|
4961
|
+
}
|
|
4962
|
+
|
|
4963
|
+
.ui-popup-right .ui-dialog-arrow-a,.ui-popup-right .ui-dialog-arrow-b {
|
|
4964
|
+
margin-top: -8px;
|
|
4965
|
+
top: 50%
|
|
4966
|
+
}
|
|
4967
|
+
|
|
4968
|
+
.ui-popup-right-bottom .ui-dialog-arrow-a,.ui-popup-right-bottom .ui-dialog-arrow-b {
|
|
4969
|
+
bottom: 15px
|
|
4970
|
+
}
|
|
4971
|
+
|
|
4972
|
+
@-webkit-keyframes ui-dialog-loading {
|
|
4973
|
+
0% {
|
|
4974
|
+
-webkit-transform: rotate(0deg)
|
|
4975
|
+
}
|
|
4976
|
+
|
|
4977
|
+
100% {
|
|
4978
|
+
-webkit-transform: rotate(360deg)
|
|
4979
|
+
}
|
|
4980
|
+
}
|
|
4981
|
+
|
|
4982
|
+
@keyframes ui-dialog-loading {
|
|
4983
|
+
0% {
|
|
4984
|
+
transform: rotate(0deg)
|
|
4985
|
+
}
|
|
4986
|
+
|
|
4987
|
+
100% {
|
|
4988
|
+
transform: rotate(360deg)
|
|
4989
|
+
}
|
|
4990
|
+
}
|
|
4991
|
+
|
|
4992
|
+
.ui-dialog-loading {
|
|
4993
|
+
vertical-align: middle;
|
|
4994
|
+
position: relative;
|
|
4995
|
+
display: block;
|
|
4996
|
+
*zoom:1;*display: inline;
|
|
4997
|
+
overflow: hidden;
|
|
4998
|
+
width: 32px;
|
|
4999
|
+
height: 32px;
|
|
5000
|
+
top: 50%;
|
|
5001
|
+
margin: -16px auto 0 auto;
|
|
5002
|
+
font-size: 0;
|
|
5003
|
+
text-indent: -999em;
|
|
5004
|
+
color: #666
|
|
5005
|
+
}
|
|
5006
|
+
|
|
5007
|
+
.ui-dialog-loading {
|
|
5008
|
+
width: 100%\9;
|
|
5009
|
+
text-indent: 0\9;
|
|
5010
|
+
line-height: 32px\9;
|
|
5011
|
+
text-align: center\9;
|
|
5012
|
+
font-size: 12px\9
|
|
5013
|
+
}
|
|
5014
|
+
|
|
5015
|
+
.ui-dialog-loading::after {
|
|
5016
|
+
position: absolute;
|
|
5017
|
+
content: '';
|
|
5018
|
+
width: 3px;
|
|
5019
|
+
height: 3px;
|
|
5020
|
+
margin: 14.5px 0 0 14.5px;
|
|
5021
|
+
border-radius: 100%;
|
|
5022
|
+
box-shadow: 0 -10px 0 1px #ccc,10px 0 #ccc,0 10px #ccc,-10px 0 #ccc,-7px -7px 0 .5px #ccc,7px -7px 0 1.5px #ccc,7px 7px #ccc,-7px 7px #ccc;
|
|
5023
|
+
-webkit-transform: rotate(360deg);
|
|
5024
|
+
-webkit-animation: ui-dialog-loading 1.5s infinite linear;
|
|
5025
|
+
transform: rotate(360deg);
|
|
5026
|
+
animation: ui-dialog-loading 1.5s infinite linear;
|
|
5027
|
+
display: none\9
|
|
5028
|
+
}
|
|
5029
|
+
|
|
5030
|
+
.hljs .hljs-ln .hljs-ln-line {
|
|
5031
|
+
border-collapse: initial;
|
|
5032
|
+
padding: initial;
|
|
5033
|
+
border: none;
|
|
5034
|
+
min-width: initial
|
|
5035
|
+
}
|
|
5036
|
+
|
|
5037
|
+
.hljs .hljs-ln .hljs-ln-line.hljs-ln-numbers {
|
|
5038
|
+
-webkit-touch-callout: none;
|
|
5039
|
+
-webkit-user-select: none;
|
|
5040
|
+
-khtml-user-select: none;
|
|
5041
|
+
-moz-user-select: none;
|
|
5042
|
+
-ms-user-select: none;
|
|
5043
|
+
user-select: none;
|
|
5044
|
+
text-align: center;
|
|
5045
|
+
vertical-align: top;
|
|
5046
|
+
padding: 0 14px;
|
|
5047
|
+
color: #bfbfbf;
|
|
5048
|
+
white-space: nowrap
|
|
5049
|
+
}
|