@jx3box/jx3box-ui 2.0.2 → 2.0.4

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.
Files changed (128) hide show
  1. package/README.md +101 -2
  2. package/assets/css/bread/admin.less +32 -0
  3. package/assets/css/bread/breadcrumb.less +38 -0
  4. package/assets/css/bread/crumb.less +6 -0
  5. package/assets/css/comment/quick-reply.less +12 -1
  6. package/assets/css/common/bottom.less +4 -0
  7. package/assets/css/common/footer.less +23 -0
  8. package/assets/css/common/left-sidebar.less +28 -0
  9. package/assets/css/common/main.less +21 -0
  10. package/assets/css/common/right-sidebar.less +31 -0
  11. package/assets/css/common/suspend-common.less +51 -0
  12. package/assets/css/editor/combo.less +51 -0
  13. package/assets/css/editor/resource.less +64 -0
  14. package/assets/css/editor/tinymce.less +20 -0
  15. package/assets/css/editor/upload.less +25 -0
  16. package/assets/css/filters/client-by.less +6 -0
  17. package/assets/css/header/box.less +34 -0
  18. package/assets/css/interact/like2.less +4 -0
  19. package/assets/css/interact/share2.less +17 -0
  20. package/assets/css/mixin.less +3 -0
  21. package/assets/css/module/author.less +41 -0
  22. package/assets/css/module/buff.less +10 -0
  23. package/assets/css/module/directory.less +22 -0
  24. package/assets/css/module/icon.less +4 -0
  25. package/assets/css/module/item.less +50 -0
  26. package/assets/css/module/item_simple.less +7 -0
  27. package/assets/css/module/jx3_element.less +2 -1
  28. package/assets/css/module/macro.less +17 -0
  29. package/assets/css/module/npc.less +46 -1
  30. package/assets/css/module/resource.less +13 -0
  31. package/assets/css/module/skill.less +9 -0
  32. package/assets/css/module/talent.less +71 -0
  33. package/assets/css/single/author.less +24 -10
  34. package/assets/css/single/cms-single.less +16 -0
  35. package/assets/css/single/thx.less +51 -0
  36. package/assets/css/tinymce/_.less +7 -1
  37. package/assets/css/tinymce/a.less +5 -0
  38. package/assets/css/tinymce/code.less +22 -0
  39. package/assets/css/tinymce/combo.less +12 -0
  40. package/assets/css/tinymce/fold.less +12 -0
  41. package/assets/css/tinymce/h.less +10 -0
  42. package/assets/css/tinymce/hr.less +2 -0
  43. package/assets/css/tinymce/img.less +3 -0
  44. package/assets/css/tinymce/imgpreview.less +6 -1
  45. package/assets/css/tinymce/latex.less +7 -1
  46. package/assets/css/tinymce/list.less +12 -0
  47. package/assets/css/tinymce/macro.less +7 -1
  48. package/assets/css/tinymce/nextpage.less +14 -0
  49. package/assets/css/tinymce/p.less +2 -0
  50. package/assets/css/tinymce/pz.less +6 -0
  51. package/assets/css/tinymce/qixue.less +6 -0
  52. package/assets/css/tinymce/quote.less +2 -0
  53. package/assets/css/tinymce/table.less +13 -1
  54. package/assets/css/tinymce/video.less +18 -0
  55. package/assets/img/author/rss.svg +1 -0
  56. package/assets/img/common/logo-v2.svg +14 -0
  57. package/i18n/messages/en-US.js +1 -0
  58. package/i18n/messages/vi.js +1 -0
  59. package/i18n/messages/zh-CN.js +1 -0
  60. package/i18n/messages/zh-TW.js +1 -0
  61. package/index.js +2 -0
  62. package/package.json +1 -1
  63. package/service/comment.js +56 -96
  64. package/src/App.vue +31 -31
  65. package/src/Breadcrumb.vue +16 -20
  66. package/src/Icon.vue +53 -0
  67. package/src/author/AuthorFans.vue +15 -5
  68. package/src/author/AuthorFollow.vue +1 -1
  69. package/src/author/AuthorGift.vue +9 -9
  70. package/src/author/AuthorHonor.vue +9 -8
  71. package/src/author/AuthorInfo.vue +10 -1
  72. package/src/author/AuthorLink.vue +8 -1
  73. package/src/author/AuthorPosts.vue +14 -8
  74. package/src/author/AuthorRss.vue +28 -34
  75. package/src/bread/Admin.vue +19 -6
  76. package/src/bread/Crumb.vue +7 -2
  77. package/src/bread/DesignTask.vue +44 -37
  78. package/src/comment/Avatar.vue +26 -8
  79. package/src/comment/CommentContent.vue +62 -17
  80. package/src/comment/CommentContentSimple.vue +54 -15
  81. package/src/comment/CommentWithReply.vue +22 -1
  82. package/src/comment/ReplyForReply.vue +14 -1
  83. package/src/comment/ReplyItem.vue +10 -1
  84. package/src/comment/ReplyList.vue +19 -1
  85. package/src/editor/BoxResource.vue +2 -2
  86. package/src/editor/Resource.vue +6 -6
  87. package/src/filters/clientBy.vue +14 -1
  88. package/src/filters/menuBy.vue +14 -1
  89. package/src/filters/orderBy.vue +1 -1
  90. package/src/filters/tagBy.vue +10 -1
  91. package/src/filters/versionBy.vue +6 -1
  92. package/src/filters/zlpBy.vue +6 -1
  93. package/src/footer/resource.vue +3 -1
  94. package/src/header/alternate.vue +2 -2
  95. package/src/header/asset.vue +13 -1
  96. package/src/header/box.vue +10 -5
  97. package/src/header/box2.vue +279 -247
  98. package/src/header/client.vue +6 -1
  99. package/src/header/lang.vue +1 -2
  100. package/src/header/logo.vue +3 -3
  101. package/src/header/manage.vue +0 -1
  102. package/src/header/nav.vue +1 -1
  103. package/src/header/userInfo.vue +18 -5
  104. package/src/interact/BoxcoinAdmin.vue +46 -5
  105. package/src/interact/BoxcoinRecords.vue +22 -1
  106. package/src/interact/BoxcoinUser.vue +49 -8
  107. package/src/interact/Contributors.vue +7 -11
  108. package/src/interact/Fav.vue +22 -1
  109. package/src/interact/Like.vue +10 -1
  110. package/src/interact/Share.vue +18 -1
  111. package/src/interact/WatchLater.vue +3 -3
  112. package/src/main.js +3 -1
  113. package/src/single/Author.vue +15 -10
  114. package/src/single/{cms-single.vue → CmsSingle.vue} +10 -1
  115. package/src/single/Collection.vue +10 -1
  116. package/src/single/Comment.vue +20 -3
  117. package/src/single/Creators.vue +10 -1
  118. package/src/single/PostDirectory.vue +1 -1
  119. package/src/single/PostHeader.vue +18 -1
  120. package/src/single/SimpleThx.vue +2 -2
  121. package/src/single/Thx.vue +45 -27
  122. package/assets/img/author/msg.svg +0 -55
  123. package/src/Bottom.vue +0 -23
  124. package/src/Box.vue +0 -149
  125. package/src/author/AuthorMsg.vue +0 -25
  126. package/src/bread/AdminButton.vue +0 -31
  127. package/src/header/bus.js +0 -9
  128. /package/docs/{README.md → i18n.md} +0 -0
@@ -3,6 +3,7 @@
3
3
  @color2: #24292e;
4
4
 
5
5
  .p-suspend {
6
+ /* assets/css/common/suspend-common.less */
6
7
  .pf;
7
8
  .lb(0);
8
9
  .z(1994);
@@ -19,23 +20,28 @@
19
20
  .m-home-box,
20
21
  .m-pin-box,
21
22
  .m-icon-box {
23
+ /* assets/css/common/suspend-common.less */
22
24
  .flex;
23
25
  .flex(o);
24
26
  }
25
27
 
26
28
  .m-pin-box {
29
+ /* assets/css/common/suspend-common.less */
27
30
  gap: 1.125rem;
28
31
 
29
32
  .u-item {
33
+ /* assets/css/common/suspend-common.less */
30
34
  .flex;
31
35
  .flex(o);
32
36
 
33
37
  img {
38
+ /* assets/css/common/suspend-common.less */
34
39
  .size(1.5rem);
35
40
  .r(50%);
36
41
  }
37
42
 
38
43
  .u-text-r {
44
+ /* assets/css/common/suspend-common.less */
39
45
  .size(1.5rem);
40
46
  .r(50%);
41
47
  background-color: #d9d9d9;
@@ -46,6 +52,7 @@
46
52
  }
47
53
 
48
54
  .m-btn-box {
55
+ /* assets/css/common/suspend-common.less */
49
56
  .flex;
50
57
  align-items: center;
51
58
  justify-content: space-between;
@@ -54,12 +61,15 @@
54
61
  padding: 0 1.25rem;
55
62
 
56
63
  .u-icon-d {
64
+ /* assets/css/common/suspend-common.less */
57
65
  .flex;
58
66
  .flex(o);
59
67
  .size(1.5rem);
60
68
 
61
69
  .u-icon {
70
+ /* assets/css/common/suspend-common.less */
62
71
  &.active {
72
+ /* assets/css/common/suspend-common.less */
63
73
  fill: #fedaa3;
64
74
  stroke: #fedaa3;
65
75
  }
@@ -68,6 +78,7 @@
68
78
  }
69
79
 
70
80
  .m-more {
81
+ /* assets/css/common/suspend-common.less */
71
82
  .w(7.5rem);
72
83
  .flex;
73
84
  .flex(o);
@@ -78,10 +89,12 @@
78
89
  }
79
90
 
80
91
  .p-drawer-suspend {
92
+ /* assets/css/common/suspend-common.less */
81
93
  .size(100%);
82
94
  .lt(0);
83
95
 
84
96
  .u-drawer {
97
+ /* assets/css/common/suspend-common.less */
85
98
  border-radius: 1.25rem 1.25rem 0 0;
86
99
  position: fixed !important;
87
100
  bottom: 0;
@@ -98,12 +111,14 @@
98
111
  // .el-drawer__body {}
99
112
 
100
113
  .p-drawer-suspend_box {
114
+ /* assets/css/common/suspend-common.less */
101
115
  .flex;
102
116
  flex-direction: column;
103
117
  gap: 0.75rem;
104
118
  }
105
119
 
106
120
  .u-drawer-box {
121
+ /* assets/css/common/suspend-common.less */
107
122
  .flex;
108
123
  .w(100%);
109
124
  align-items: center;
@@ -111,6 +126,7 @@
111
126
  gap: 0.75rem;
112
127
 
113
128
  .u-item {
129
+ /* assets/css/common/suspend-common.less */
114
130
  border-radius: 12px;
115
131
  background: rgba(255, 255, 255, 0.05);
116
132
  .flex;
@@ -122,19 +138,23 @@
122
138
  box-sizing: border-box;
123
139
 
124
140
  &.top {
141
+ /* assets/css/common/suspend-common.less */
125
142
  .h(6.875rem);
126
143
  }
127
144
 
128
145
  &.report {
146
+ /* assets/css/common/suspend-common.less */
129
147
  max-width: 50%;
130
148
  }
131
149
 
132
150
  .u-icon {
151
+ /* assets/css/common/suspend-common.less */
133
152
  .flex;
134
153
  .flex(o);
135
154
  }
136
155
 
137
156
  .u-self {
157
+ /* assets/css/common/suspend-common.less */
138
158
  .h(2.5rem);
139
159
 
140
160
  .flex;
@@ -142,21 +162,25 @@
142
162
  .flex(o);
143
163
 
144
164
  img {
165
+ /* assets/css/common/suspend-common.less */
145
166
  .size(1.5rem);
146
167
  .r(50%);
147
168
  }
148
169
 
149
170
  .u-circle-top {
171
+ /* assets/css/common/suspend-common.less */
150
172
  .pr;
151
173
  bottom: -0.75rem;
152
174
  }
153
175
 
154
176
  .u-circle-bottom {
177
+ /* assets/css/common/suspend-common.less */
155
178
  .flex;
156
179
  gap: 0;
157
180
  }
158
181
 
159
182
  .u-text-r {
183
+ /* assets/css/common/suspend-common.less */
160
184
  .size(1.5rem);
161
185
  .r(50%);
162
186
  background-color: #d9d9d9;
@@ -166,17 +190,20 @@
166
190
  }
167
191
 
168
192
  .u-text {
193
+ /* assets/css/common/suspend-common.less */
169
194
  color: #acaeaf;
170
195
  .fz(0.875rem, 1.25rem);
171
196
  .bold(700);
172
197
 
173
198
  &.search,
174
199
  &.fix {
200
+ /* assets/css/common/suspend-common.less */
175
201
  color: #fedaa3;
176
202
  }
177
203
  }
178
204
 
179
205
  .u-author {
206
+ /* assets/css/common/suspend-common.less */
180
207
  //作者名字最多显示8个中文字符,超出后,第八个中文字符用...代替
181
208
 
182
209
  .fz(0.875rem, 1.25rem);
@@ -190,6 +217,7 @@
190
217
  .w(100%);
191
218
 
192
219
  .u-avatar {
220
+ /* assets/css/common/suspend-common.less */
193
221
  .size(1.25rem);
194
222
  overflow: hidden;
195
223
  .r(50%);
@@ -197,6 +225,7 @@
197
225
  }
198
226
 
199
227
  .u-author-name {
228
+ /* assets/css/common/suspend-common.less */
200
229
  flex: auto;
201
230
  overflow: hidden;
202
231
  text-overflow: ellipsis;
@@ -209,9 +238,11 @@
209
238
 
210
239
  .p-drawer-fix,
211
240
  .p-drawer-collect {
241
+ /* assets/css/common/suspend-common.less */
212
242
  color: rgba(255, 255, 255, 0.4);
213
243
 
214
244
  .u-collect-icon {
245
+ /* assets/css/common/suspend-common.less */
215
246
  .flex;
216
247
  .flex(o);
217
248
  flex-direction: column;
@@ -219,17 +250,20 @@
219
250
  .mb(1.25rem);
220
251
 
221
252
  .u-text {
253
+ /* assets/css/common/suspend-common.less */
222
254
  .fz(0.875rem, 1.25rem);
223
255
  }
224
256
  }
225
257
 
226
258
  .u-collect-tips {
259
+ /* assets/css/common/suspend-common.less */
227
260
  .fz(0.75rem, 1rem);
228
261
  text-align: center;
229
262
 
230
263
  .mb(1.25rem);
231
264
 
232
265
  &.edit {
266
+ /* assets/css/common/suspend-common.less */
233
267
  .flex;
234
268
  align-items: center;
235
269
  .fz(0.875rem, 1.25rem);
@@ -237,12 +271,14 @@
237
271
  }
238
272
 
239
273
  .u-btn-box {
274
+ /* assets/css/common/suspend-common.less */
240
275
  .flex;
241
276
  .flex(o);
242
277
  gap: 0.75rem;
243
278
  .mb(1.25rem);
244
279
 
245
280
  .u-btn {
281
+ /* assets/css/common/suspend-common.less */
246
282
  .flex;
247
283
  .flex(o);
248
284
  .fz(1rem, 1.5rem);
@@ -254,6 +290,7 @@
254
290
  flex: auto;
255
291
 
256
292
  &.collect {
293
+ /* assets/css/common/suspend-common.less */
257
294
  background-color: @color;
258
295
  color: @color2;
259
296
  }
@@ -262,7 +299,9 @@
262
299
  }
263
300
 
264
301
  .p-drawer-fix {
302
+ /* assets/css/common/suspend-common.less */
265
303
  .u-edit-title {
304
+ /* assets/css/common/suspend-common.less */
266
305
  .mb(1.25rem);
267
306
  color: rgba(255, 255, 255, 0.6);
268
307
  .fz(0.875rem, 1.25rem);
@@ -270,12 +309,14 @@
270
309
  }
271
310
 
272
311
  .u-pin-box {
312
+ /* assets/css/common/suspend-common.less */
273
313
  .mb(1.25rem);
274
314
  .flex;
275
315
  flex-direction: column;
276
316
  gap: 0.75rem;
277
317
 
278
318
  .u-item {
319
+ /* assets/css/common/suspend-common.less */
279
320
  .flex;
280
321
  align-items: center;
281
322
  gap: 0.75rem;
@@ -286,12 +327,14 @@
286
327
 
287
328
  .u-text-r,
288
329
  .u-icon {
330
+ /* assets/css/common/suspend-common.less */
289
331
  .size(1.875rem);
290
332
  .r(50%);
291
333
  flex-shrink: 0;
292
334
  }
293
335
 
294
336
  .u-text-r {
337
+ /* assets/css/common/suspend-common.less */
295
338
  .flex;
296
339
  .flex(o);
297
340
  background-color: #d9d9d9;
@@ -299,6 +342,7 @@
299
342
  }
300
343
 
301
344
  .u-text {
345
+ /* assets/css/common/suspend-common.less */
302
346
  flex: auto;
303
347
  overflow: hidden;
304
348
  text-overflow: ellipsis;
@@ -308,6 +352,7 @@
308
352
  }
309
353
 
310
354
  .u-slash {
355
+ /* assets/css/common/suspend-common.less */
311
356
  .flex;
312
357
  .flex(o);
313
358
  .size(1.875rem);
@@ -318,25 +363,31 @@
318
363
  }
319
364
 
320
365
  .p-drawer-fixData {
366
+ /* assets/css/common/suspend-common.less */
321
367
  .h(70vh);
322
368
  .pr;
323
369
  .u-icon {
370
+ /* assets/css/common/suspend-common.less */
324
371
  .pa;
325
372
  .z(3);
326
373
  right: 1.25rem;
327
374
  }
328
375
  span {
376
+ /* assets/css/common/suspend-common.less */
329
377
  color: #fff;
330
378
  }
331
379
  .u-iframe {
380
+ /* assets/css/common/suspend-common.less */
332
381
  border-radius: 1.25rem 1.25rem 0 0;
333
382
  }
334
383
  }
335
384
  .slide-up-enter-active,
336
385
  .slide-up-leave-active {
386
+ /* assets/css/common/suspend-common.less */
337
387
  transition: transform 0.3s ease-in-out;
338
388
  }
339
389
  .slide-up-enter, .slide-up-leave-to /* .slide-up-leave-active in <2.1.8 */ {
390
+ /* assets/css/common/suspend-common.less */
340
391
  transform: translateY(100%);
341
392
  }
342
393
  }
@@ -1,30 +1,38 @@
1
1
  .scrollbar() {
2
+ /* assets/css/editor/combo.less */
2
3
  &::-webkit-scrollbar {
4
+ /* assets/css/editor/combo.less */
3
5
  width: 4px;
4
6
  }
5
7
  &::-webkit-scrollbar-track,
6
8
  &::-webkit-scrollbar-track-piece {
9
+ /* assets/css/editor/combo.less */
7
10
  background-color: #fafafa;
8
11
  border-radius: 6px;
9
12
  }
10
13
  &::-webkit-scrollbar-thumb {
14
+ /* assets/css/editor/combo.less */
11
15
  background-color: #eee;
12
16
  border-radius: 6px;
13
17
  }
14
18
  &::-webkit-scrollbar-button,
15
19
  &::-webkit-scrollbar-corner,
16
20
  &::-webkit-resizer {
21
+ /* assets/css/editor/combo.less */
17
22
  display: none;
18
23
  }
19
24
  }
20
25
 
21
26
  .m-resource-combo {
27
+ /* assets/css/editor/combo.less */
22
28
  .m-combo-list {
29
+ /* assets/css/editor/combo.less */
23
30
  max-height: 230px;
24
31
  overflow: auto;
25
32
  .scrollbar();
26
33
  }
27
34
  .m-database-search {
35
+ /* assets/css/editor/combo.less */
28
36
  position: sticky;
29
37
  z-index: 100;
30
38
  top: 0;
@@ -33,16 +41,19 @@
33
41
  .pr;
34
42
 
35
43
  .u-client {
44
+ /* assets/css/editor/combo.less */
36
45
  // .pa;.lt(20px,10px);
37
46
  margin-right: 15px;
38
47
  }
39
48
  .u-input {
49
+ /* assets/css/editor/combo.less */
40
50
  flex: 1;
41
51
  }
42
52
  display: flex;
43
53
  }
44
54
 
45
55
  .m-database-tip {
56
+ /* assets/css/editor/combo.less */
46
57
  .x;
47
58
  // .fz(12px);
48
59
  color: #aaa;
@@ -54,23 +65,27 @@
54
65
 
55
66
  // 加载更多
56
67
  .m-archive-more {
68
+ /* assets/css/editor/combo.less */
57
69
  .none;
58
70
  margin: 0 20px 10px 20px;
59
71
  box-sizing: border-box;
60
72
  width: calc(100% - 40px);
61
73
  }
62
74
  .m-archive-more.show {
75
+ /* assets/css/editor/combo.less */
63
76
  .db;
64
77
  }
65
78
 
66
79
  // 分页
67
80
  .m-archive-pages {
81
+ /* assets/css/editor/combo.less */
68
82
  overflow-x: auto;
69
83
  margin: 0 20px;
70
84
  .x;
71
85
  }
72
86
 
73
87
  .m-resource-count {
88
+ /* assets/css/editor/combo.less */
74
89
  .mt(0);
75
90
  .mb(10px);
76
91
 
@@ -80,12 +95,14 @@
80
95
  }
81
96
 
82
97
  .m-resource-list {
98
+ /* assets/css/editor/combo.less */
83
99
  .mt(10px);
84
100
  padding: 0;
85
101
  margin: 0;
86
102
  .scrollbar();
87
103
 
88
104
  .u-item {
105
+ /* assets/css/editor/combo.less */
89
106
  .db;
90
107
  border: 2px solid @border-hr;
91
108
  background: #fafbfc;
@@ -94,9 +111,11 @@
94
111
  min-height: 60px;
95
112
  .r(6px);
96
113
  &:hover {
114
+ /* assets/css/editor/combo.less */
97
115
  background-color: #e7f9ff;
98
116
  }
99
117
  &.on {
118
+ /* assets/css/editor/combo.less */
100
119
  border-color: #34d058;
101
120
  background-color: #fff;
102
121
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
@@ -109,10 +128,12 @@
109
128
  .pointer;
110
129
  }
111
130
  .u-link {
131
+ /* assets/css/editor/combo.less */
112
132
  .db;
113
133
  color: @color;
114
134
  }
115
135
  .u-pic {
136
+ /* assets/css/editor/combo.less */
116
137
  .db;
117
138
  .pa;
118
139
  .lt(10px);
@@ -121,6 +142,7 @@
121
142
  box-shadow: 0 0 1px inset rgba(0, 0, 0, 0.2);
122
143
  }
123
144
  .u-id {
145
+ /* assets/css/editor/combo.less */
124
146
  .fz(10px);
125
147
  color: #555;
126
148
  .pa;
@@ -128,21 +150,26 @@
128
150
  .x(right);
129
151
  }
130
152
  .u-detach {
153
+ /* assets/css/editor/combo.less */
131
154
  .mt(4px);
132
155
  .db;
133
156
  }
134
157
  .u-primary {
158
+ /* assets/css/editor/combo.less */
135
159
  .pr;
136
160
  }
137
161
  .u-raw {
162
+ /* assets/css/editor/combo.less */
138
163
  .pa;
139
164
  .rb(0);
140
165
  }
141
166
  .u-name {
167
+ /* assets/css/editor/combo.less */
142
168
  .fz(14px, 2);
143
169
  .bold;
144
170
  .db;
145
171
  em {
172
+ /* assets/css/editor/combo.less */
146
173
  .fz(12px);
147
174
  color: #999;
148
175
  font-weight: normal;
@@ -150,21 +177,25 @@
150
177
  }
151
178
  }
152
179
  .u-content {
180
+ /* assets/css/editor/combo.less */
153
181
  .fz(13px, 1.8);
154
182
  .mb(5px);
155
183
  .db;
156
184
 
157
185
  .u-map,
158
186
  .u-life {
187
+ /* assets/css/editor/combo.less */
159
188
  .mr(20px);
160
189
  }
161
190
  }
162
191
  .u-remark {
192
+ /* assets/css/editor/combo.less */
163
193
  .fz(12px, 1.8);
164
194
  color: #aaa;
165
195
  .db;
166
196
 
167
197
  em {
198
+ /* assets/css/editor/combo.less */
168
199
  background-color: #eee;
169
200
  padding: 0 5px;
170
201
  margin: 0 3px;
@@ -172,12 +203,14 @@
172
203
  }
173
204
  }
174
205
  .u-desc {
206
+ /* assets/css/editor/combo.less */
175
207
  .fz(12px, 1.8);
176
208
  .db;
177
209
  white-space: pre-wrap;
178
210
  margin: 4px 0;
179
211
 
180
212
  em {
213
+ /* assets/css/editor/combo.less */
181
214
  background-color: #f3f3f3;
182
215
  padding: 2px 5px;
183
216
  margin-right: 5px;
@@ -188,37 +221,44 @@
188
221
  }
189
222
 
190
223
  sub {
224
+ /* assets/css/editor/combo.less */
191
225
  font-size: 100%;
192
226
  .ps;
193
227
  }
194
228
  }
195
229
  .u-props {
230
+ /* assets/css/editor/combo.less */
196
231
  .mt(10px);
197
232
  border-top: 1px dashed #ddd;
198
233
  padding: 10px 0;
199
234
  .clearfix;
200
235
  .u-desc {
236
+ /* assets/css/editor/combo.less */
201
237
  .w(50%);
202
238
  .fl;
203
239
  }
204
240
  .none;
205
241
  &.on {
242
+ /* assets/css/editor/combo.less */
206
243
  .db;
207
244
  }
208
245
  }
209
246
  }
210
247
  .m-select-content {
248
+ /* assets/css/editor/combo.less */
211
249
  height: calc(100% - 200px);
212
250
  overflow: auto;
213
251
  }
214
252
  // 已选数据
215
253
  .m-selected-skills {
254
+ /* assets/css/editor/combo.less */
216
255
  height: 70px;
217
256
  border: 1px solid #ddd;
218
257
  padding: 10px;
219
258
  .scrollbar();
220
259
  overflow-y: auto;
221
260
  .m-skills-list {
261
+ /* assets/css/editor/combo.less */
222
262
  .flex;
223
263
  gap: 30px;
224
264
  list-style: none;
@@ -228,12 +268,14 @@
228
268
  flex-wrap: wrap;
229
269
  }
230
270
  .m-skill {
271
+ /* assets/css/editor/combo.less */
231
272
  // position: relative;
232
273
  // display: flex;
233
274
  // justify-content: center;
234
275
  .pr;
235
276
 
236
277
  &:not(:last-of-type)::after {
278
+ /* assets/css/editor/combo.less */
237
279
  content: "▲";
238
280
  .pa;
239
281
  right: -25px;
@@ -242,6 +284,7 @@
242
284
  }
243
285
 
244
286
  .u-remove-icon {
287
+ /* assets/css/editor/combo.less */
245
288
  .pa;
246
289
  right: -4px;
247
290
  top: -4px;
@@ -253,16 +296,19 @@
253
296
  .r(50%);
254
297
  .db;
255
298
  i{
299
+ /* assets/css/editor/combo.less */
256
300
  color:#fff;
257
301
  .fz(12px);
258
302
  .db;
259
303
  }
260
304
  &:hover {
305
+ /* assets/css/editor/combo.less */
261
306
  background-color:#f00;
262
307
  }
263
308
  }
264
309
 
265
310
  .u-gcd-icon {
311
+ /* assets/css/editor/combo.less */
266
312
  .pa;
267
313
  // 左上角
268
314
  left: -4px;
@@ -274,6 +320,7 @@
274
320
  .db;
275
321
 
276
322
  i{
323
+ /* assets/css/editor/combo.less */
277
324
  color:#fff;
278
325
  .fz(12px, 1);
279
326
  .db;
@@ -281,10 +328,12 @@
281
328
  }
282
329
 
283
330
  .u-skill-icon {
331
+ /* assets/css/editor/combo.less */
284
332
  .size(48px, 48px);
285
333
  }
286
334
 
287
335
  .u-name {
336
+ /* assets/css/editor/combo.less */
288
337
  display: block;
289
338
  font-size: 12px;
290
339
  text-align: center;
@@ -294,6 +343,7 @@
294
343
  }
295
344
 
296
345
  .u-mask {
346
+ /* assets/css/editor/combo.less */
297
347
  .pa;
298
348
  .lt(0);
299
349
  .size(48px, 48px);
@@ -304,6 +354,7 @@
304
354
  }
305
355
 
306
356
  &:hover {
357
+ /* assets/css/editor/combo.less */
307
358
  cursor: move;
308
359
  }
309
360
  }