@opendesign-plus-test/components 0.0.1-rc.136 → 0.0.1-rc.138

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 (41) hide show
  1. package/dist/chunk-OElCookieNotice.cjs.js +1 -1
  2. package/dist/chunk-OElCookieNotice.es.js +2 -4
  3. package/dist/components/logo-swiper/OLogoSwiperItems.vue.d.ts +2 -2
  4. package/dist/components/logo-swiper/index.d.ts +6 -6
  5. package/dist/components/sig/OSigDetail.vue.d.ts +2 -0
  6. package/dist/components/sig/components/OSigItem.vue.d.ts +0 -1
  7. package/dist/components/sig/components/OSigRepo.vue.d.ts +2 -0
  8. package/dist/components/sig/components/utils.d.ts +38 -3
  9. package/dist/components/sig/types.d.ts +7 -2
  10. package/dist/components.cjs.js +38 -38
  11. package/dist/components.css +1 -1
  12. package/dist/components.es.js +8766 -8741
  13. package/dist/treeshaking/components/meeting/OMeetingSigCalendar.css +2 -1
  14. package/dist/treeshaking/components/sig/OSigDetail.css +39 -0
  15. package/dist/treeshaking/components/sig/OSigDetail.vue.d.ts +2 -0
  16. package/dist/treeshaking/components/sig/OSigDetail.vue.mjs +31 -17
  17. package/dist/treeshaking/components/sig/OSigList.css +54 -5
  18. package/dist/treeshaking/components/sig/OSigList.vue.mjs +61 -57
  19. package/dist/treeshaking/components/sig/components/OSigDetailInfoCard.css +11 -1
  20. package/dist/treeshaking/components/sig/components/OSigItem.css +391 -80
  21. package/dist/treeshaking/components/sig/components/OSigItem.vue.d.ts +0 -1
  22. package/dist/treeshaking/components/sig/components/OSigItem.vue.mjs +24 -41
  23. package/dist/treeshaking/components/sig/components/OSigMember.css +0 -60
  24. package/dist/treeshaking/components/sig/components/OSigMember.vue.mjs +12 -17
  25. package/dist/treeshaking/components/sig/components/OSigRepo.css +12 -0
  26. package/dist/treeshaking/components/sig/components/OSigRepo.vue.d.ts +2 -0
  27. package/dist/treeshaking/components/sig/components/OSigRepo.vue.mjs +15 -15
  28. package/dist/treeshaking/components/sig/components/OSigUserContribute.css +24 -0
  29. package/dist/treeshaking/components/sig/components/OSigUserContribute.vue.mjs +12 -10
  30. package/dist/treeshaking/components/sig/components/utils.d.ts +38 -3
  31. package/dist/treeshaking/components/sig/components/utils.mjs +36 -3
  32. package/dist/treeshaking/components/sig/types.d.ts +7 -2
  33. package/dist/treeshaking/i18n/en.mjs +1 -2
  34. package/dist/treeshaking/i18n/zh.mjs +1 -2
  35. package/package.json +3 -3
  36. package/dist/components/sig/components/config-sig.d.ts +0 -1
  37. package/dist/components/video/OVideoDetail.vue.d.ts +0 -7
  38. package/dist/components/video/index.d.ts +0 -27
  39. package/dist/components/video/types.d.ts +0 -24
  40. package/dist/treeshaking/components/sig/components/config-sig.d.ts +0 -1
  41. package/dist/treeshaking/components/sig/components/config-sig.mjs +0 -4
@@ -25,15 +25,14 @@
25
25
  @media (max-width: 840px) {
26
26
  .o-sig-item {
27
27
  padding: var(--o-gap-2) var(--o-gap-3);
28
- position: relative;
29
28
  }
30
29
  }
31
- .o-sig-item .o-sig-item-header {
30
+ .o-sig-item-header {
32
31
  display: flex;
33
32
  justify-content: space-between;
34
33
  align-items: center;
35
34
  }
36
- .o-sig-item .o-sig-name {
35
+ .o-sig-name {
37
36
  cursor: pointer;
38
37
  color: var(--o-color-info1);
39
38
  font-weight: 600;
@@ -41,93 +40,72 @@
41
40
  line-height: 30px;
42
41
  }
43
42
  @media (min-width: 1201px) and (max-width: 1680px) {
44
- .o-sig-item .o-sig-name {
43
+ .o-sig-name {
45
44
  font-size: 18px;
46
45
  line-height: 26px;
47
46
  }
48
47
  }
49
48
  @media (min-width: 841px) and (max-width: 1200px) {
50
- .o-sig-item .o-sig-name {
49
+ .o-sig-name {
51
50
  font-size: 16px;
52
51
  line-height: 24px;
53
52
  }
54
53
  }
55
54
  @media (min-width: 601px) and (max-width: 840px) {
56
- .o-sig-item .o-sig-name {
55
+ .o-sig-name {
57
56
  font-size: 16px;
58
57
  line-height: 24px;
59
58
  }
60
59
  }
61
60
  @media (max-width: 600px) {
62
- .o-sig-item .o-sig-name {
61
+ .o-sig-name {
63
62
  font-size: 16px;
64
63
  line-height: 24px;
65
64
  }
66
65
  }
67
66
  @media (hover: hover) {
68
- .o-sig-item .o-sig-name:hover {
67
+ .o-sig-name:hover {
69
68
  color: var(--o-color-primary1);
70
69
  }
71
70
  }
72
- .o-sig-item .o-sig-type-tag {
71
+ .o-sig-type-tag {
73
72
  --tag-bd-color: var(--o-color-control4);
74
73
  --tag-height: 24px;
75
74
  }
76
75
  @media (max-width: 1680px) {
77
- .o-sig-item .o-sig-type-tag {
76
+ .o-sig-type-tag {
78
77
  --tag-height: 20px;
79
78
  }
80
79
  }
81
- @media (max-width: 840px) {
82
- .o-sig-item .o-sig-type-tag {
83
- position: absolute;
84
- top: 8px;
85
- right: 4px;
86
- }
87
- }
88
- .o-sig-item .o-sig-link {
80
+ .o-sig-link {
89
81
  display: flex;
90
82
  align-items: center;
91
83
  margin-top: var(--o-gap-2);
92
84
  }
93
- .o-sig-item .o-sig-link a:first-child {
94
- height: 24px;
95
- }
96
- @media (max-width: 1680px) {
97
- .o-sig-item .o-sig-link a:first-child {
98
- height: 20px;
99
- }
100
- }
101
- .o-sig-item .o-sig-link .o-sig-source-icon {
85
+ .o-sig-link .o-sig-source-icon {
102
86
  font-size: 24px;
103
87
  }
104
88
  @media (max-width: 1680px) {
105
- .o-sig-item .o-sig-link .o-sig-source-icon {
89
+ .o-sig-link .o-sig-source-icon {
106
90
  font-size: 20px;
107
91
  }
108
92
  }
109
- .o-sig-item .o-sig-link .o-sig-source-icon svg {
93
+ .o-sig-link .o-sig-source-icon svg {
110
94
  fill: none;
111
95
  }
112
- .o-sig-item .o-sig-link .o-divider {
96
+ .o-sig-link .o-divider {
113
97
  --o-divider-label-gap: 0 8px;
114
98
  }
115
- .o-sig-item .o-sig-link .o-btn {
99
+ .o-sig-link .o-btn {
116
100
  margin-left: var(--o-gap-2);
117
101
  }
118
- .o-sig-item .o-sig-link .mail-link {
102
+ .o-sig-link .mail-link {
119
103
  min-width: 0;
120
- flex: 0 1 auto;
121
104
  }
122
- .o-sig-item .o-sig-link .mail-link .tooltip-text-wrapper {
105
+ .o-sig-link .mail-link .tooltip-text-wrapper {
123
106
  min-width: 0;
124
107
  flex: 1;
125
108
  }
126
- @media (max-width: 840px) {
127
- .o-sig-item .o-sig-link {
128
- margin-top: 8px;
129
- }
130
- }
131
109
  .o-sig-item .o-link {
132
110
  padding: 0;
133
111
  font-size: 16px;
@@ -190,10 +168,9 @@
190
168
  line-height: 22px;
191
169
  }
192
170
  }
193
- .o-sig-item .o-sig-description {
194
- margin-top: var(--o-gap-2);
171
+ .o-sig-description {
172
+ margin-top: var(--o-gap-3);
195
173
  color: var(--o-color-info2);
196
- height: 44px;
197
174
  font-weight: 400;
198
175
  overflow: hidden;
199
176
  text-overflow: ellipsis;
@@ -205,76 +182,62 @@
205
182
  line-height: 22px;
206
183
  }
207
184
  @media (min-width: 1201px) and (max-width: 1680px) {
208
- .o-sig-item .o-sig-description {
185
+ .o-sig-description {
209
186
  font-size: 14px;
210
187
  line-height: 18px;
211
188
  }
212
189
  }
213
190
  @media (min-width: 841px) and (max-width: 1200px) {
214
- .o-sig-item .o-sig-description {
191
+ .o-sig-description {
215
192
  font-size: 12px;
216
193
  line-height: 18px;
217
194
  }
218
195
  }
219
196
  @media (min-width: 601px) and (max-width: 840px) {
220
- .o-sig-item .o-sig-description {
197
+ .o-sig-description {
221
198
  font-size: 12px;
222
199
  line-height: 18px;
223
200
  }
224
201
  }
225
202
  @media (max-width: 600px) {
226
- .o-sig-item .o-sig-description {
203
+ .o-sig-description {
227
204
  font-size: 12px;
228
205
  line-height: 18px;
229
206
  }
230
207
  }
231
- @media (max-width: 1680px) {
232
- .o-sig-item .o-sig-description {
233
- height: 36px;
234
- }
235
- }
236
208
  @media (max-width: 840px) {
237
- .o-sig-item .o-sig-description {
238
- margin-top: 6px;
209
+ .o-sig-description {
210
+ margin-top: var(--o-gap-2);
239
211
  order: 1;
240
- height: auto;
241
212
  font-size: 16px;
242
213
  line-height: 24px;
243
214
  }
244
215
  }
245
216
  @media (max-width: 840px) and (min-width: 1201px) and (max-width: 1680px) {
246
- .o-sig-item .o-sig-description {
217
+ .o-sig-description {
247
218
  font-size: 14px;
248
219
  line-height: 22px;
249
220
  }
250
221
  }
251
222
  @media (max-width: 840px) and (min-width: 841px) and (max-width: 1200px) {
252
- .o-sig-item .o-sig-description {
223
+ .o-sig-description {
253
224
  font-size: 14px;
254
225
  line-height: 22px;
255
226
  }
256
227
  }
257
228
  @media (max-width: 840px) and (min-width: 601px) and (max-width: 840px) {
258
- .o-sig-item .o-sig-description {
229
+ .o-sig-description {
259
230
  font-size: 14px;
260
231
  line-height: 22px;
261
232
  }
262
233
  }
263
234
  @media (max-width: 840px) and (max-width: 600px) {
264
- .o-sig-item .o-sig-description {
235
+ .o-sig-description {
265
236
  font-size: 12px;
266
237
  line-height: 18px;
267
238
  }
268
239
  }
269
- .o-sig-item .o-sig-description .o-sig-repo {
270
- display: flex;
271
- }
272
- .o-sig-item .o-sig-description .o-sig-repo .o-sig-repo-label {
273
- color: var(--o-color-info1);
274
- font-weight: 500;
275
- margin-right: 8px;
276
- }
277
- .o-sig-item .o-sig-bottom {
240
+ .o-sig-bottom {
278
241
  display: flex;
279
242
  align-items: center;
280
243
  margin-top: var(--o-gap-2);
@@ -283,74 +246,422 @@
283
246
  line-height: 18px;
284
247
  }
285
248
  @media (min-width: 1201px) and (max-width: 1680px) {
286
- .o-sig-item .o-sig-bottom {
249
+ .o-sig-bottom {
287
250
  font-size: 12px;
288
251
  line-height: 18px;
289
252
  }
290
253
  }
291
254
  @media (min-width: 841px) and (max-width: 1200px) {
292
- .o-sig-item .o-sig-bottom {
255
+ .o-sig-bottom {
293
256
  font-size: 12px;
294
257
  line-height: 18px;
295
258
  }
296
259
  }
297
260
  @media (min-width: 601px) and (max-width: 840px) {
298
- .o-sig-item .o-sig-bottom {
261
+ .o-sig-bottom {
299
262
  font-size: 12px;
300
263
  line-height: 18px;
301
264
  }
302
265
  }
303
266
  @media (max-width: 600px) {
304
- .o-sig-item .o-sig-bottom {
267
+ .o-sig-bottom {
305
268
  font-size: 12px;
306
269
  line-height: 18px;
307
270
  }
308
271
  }
309
- .o-sig-item .o-sig-bottom .o-icon {
272
+ .o-sig-bottom .o-icon {
310
273
  --icon-size: 16px;
311
274
  margin-right: 4px;
312
275
  }
313
- .o-sig-item .o-sig-bottom .o-icon svg path {
276
+ .o-sig-bottom .o-icon svg path {
314
277
  fill: currentColor;
315
278
  }
316
- .o-sig-item .o-sig-bottom .o-sig-meta-text {
279
+ .o-sig-bottom .o-sig-meta-text {
317
280
  cursor: pointer;
318
281
  margin-bottom: 0;
319
282
  }
320
283
  @media (max-width: 840px) {
321
- .o-sig-item .o-sig-bottom {
284
+ .o-sig-bottom {
322
285
  font-size: 16px;
323
286
  line-height: 24px;
324
287
  }
325
288
  }
326
289
  @media (max-width: 840px) and (min-width: 1201px) and (max-width: 1680px) {
327
- .o-sig-item .o-sig-bottom {
290
+ .o-sig-bottom {
328
291
  font-size: 14px;
329
292
  line-height: 22px;
330
293
  }
331
294
  }
332
295
  @media (max-width: 840px) and (min-width: 841px) and (max-width: 1200px) {
333
- .o-sig-item .o-sig-bottom {
296
+ .o-sig-bottom {
334
297
  font-size: 14px;
335
298
  line-height: 22px;
336
299
  }
337
300
  }
338
301
  @media (max-width: 840px) and (min-width: 601px) and (max-width: 840px) {
339
- .o-sig-item .o-sig-bottom {
302
+ .o-sig-bottom {
340
303
  font-size: 14px;
341
304
  line-height: 22px;
342
305
  }
343
306
  }
344
307
  @media (max-width: 840px) and (max-width: 600px) {
345
- .o-sig-item .o-sig-bottom {
308
+ .o-sig-bottom {
346
309
  font-size: 12px;
347
310
  line-height: 18px;
348
311
  }
349
312
  }
350
- .o-sig-item .o-sig-meta {
313
+ .o-sig-meta {
351
314
  display: flex;
352
315
  align-items: center;
353
316
  }
317
+ @media (max-width: 840px) {
318
+ .o-sig-item {
319
+ position: relative;
320
+ }
321
+ .o-sig-item-header {
322
+ display: flex;
323
+ justify-content: space-between;
324
+ align-items: center;
325
+ }
326
+ .o-sig-name {
327
+ cursor: pointer;
328
+ color: var(--o-color-info1);
329
+ font-weight: 600;
330
+ font-size: 22px;
331
+ line-height: 30px;
332
+ }
333
+ }
334
+ @media (max-width: 840px) and (min-width: 1201px) and (max-width: 1680px) {
335
+ .o-sig-name {
336
+ font-size: 18px;
337
+ line-height: 26px;
338
+ }
339
+ }
340
+ @media (max-width: 840px) and (min-width: 841px) and (max-width: 1200px) {
341
+ .o-sig-name {
342
+ font-size: 16px;
343
+ line-height: 24px;
344
+ }
345
+ }
346
+ @media (max-width: 840px) and (min-width: 601px) and (max-width: 840px) {
347
+ .o-sig-name {
348
+ font-size: 16px;
349
+ line-height: 24px;
350
+ }
351
+ }
352
+ @media (max-width: 840px) and (max-width: 600px) {
353
+ .o-sig-name {
354
+ font-size: 16px;
355
+ line-height: 24px;
356
+ }
357
+ }
358
+ @media (max-width: 840px) and (hover: hover) {
359
+ .o-sig-name:hover {
360
+ color: var(--o-color-primary1);
361
+ }
362
+ }
363
+ @media (max-width: 840px) {
364
+ .o-sig-type-tag {
365
+ --tag-bd-color: var(--o-color-control4);
366
+ --tag-height: 24px;
367
+ }
368
+ }
369
+ @media (max-width: 840px) and (max-width: 1680px) {
370
+ .o-sig-type-tag {
371
+ --tag-height: 20px;
372
+ }
373
+ }
374
+ @media (max-width: 840px) and (max-width: 840px) {
375
+ .o-sig-type-tag {
376
+ position: absolute;
377
+ top: 8px;
378
+ right: 4px;
379
+ }
380
+ }
381
+ @media (max-width: 840px) {
382
+ .o-sig-link {
383
+ display: flex;
384
+ align-items: center;
385
+ margin-top: var(--o-gap-2);
386
+ }
387
+ .o-sig-link a:first-child {
388
+ height: 24px;
389
+ }
390
+ }
391
+ @media (max-width: 840px) and (max-width: 1680px) {
392
+ .o-sig-link a:first-child {
393
+ height: 20px;
394
+ }
395
+ }
396
+ @media (max-width: 840px) {
397
+ .o-sig-link .o-sig-source-icon {
398
+ font-size: 24px;
399
+ }
400
+ }
401
+ @media (max-width: 840px) and (max-width: 1680px) {
402
+ .o-sig-link .o-sig-source-icon {
403
+ font-size: 20px;
404
+ }
405
+ }
406
+ @media (max-width: 840px) {
407
+ .o-sig-link .o-sig-source-icon svg {
408
+ fill: none;
409
+ }
410
+ .o-sig-link .o-divider {
411
+ --o-divider-label-gap: 0 8px;
412
+ }
413
+ .o-sig-link .o-btn {
414
+ margin-left: var(--o-gap-2);
415
+ }
416
+ .o-sig-link .mail-link {
417
+ min-width: 0;
418
+ flex: 0 1 auto;
419
+ }
420
+ .o-sig-link .mail-link .tooltip-text-wrapper {
421
+ min-width: 0;
422
+ flex: 1;
423
+ }
424
+ }
425
+ @media (max-width: 840px) and (max-width: 840px) {
426
+ .o-sig-link {
427
+ margin-top: 8px;
428
+ }
429
+ }
430
+ @media (max-width: 840px) {
431
+ .o-link {
432
+ padding: 0;
433
+ font-size: 16px;
434
+ line-height: 24px;
435
+ }
436
+ }
437
+ @media (max-width: 840px) and (min-width: 1201px) and (max-width: 1680px) {
438
+ .o-link {
439
+ font-size: 14px;
440
+ line-height: 22px;
441
+ }
442
+ }
443
+ @media (max-width: 840px) and (min-width: 841px) and (max-width: 1200px) {
444
+ .o-link {
445
+ font-size: 14px;
446
+ line-height: 22px;
447
+ }
448
+ }
449
+ @media (max-width: 840px) and (min-width: 601px) and (max-width: 840px) {
450
+ .o-link {
451
+ font-size: 14px;
452
+ line-height: 22px;
453
+ }
454
+ }
455
+ @media (max-width: 840px) and (max-width: 600px) {
456
+ .o-link {
457
+ font-size: 12px;
458
+ line-height: 18px;
459
+ }
460
+ }
461
+ @media (max-width: 840px) {
462
+ .o-link .o-link-label {
463
+ display: flex;
464
+ }
465
+ }
466
+ @media (max-width: 840px) and (max-width: 840px) {
467
+ .o-link {
468
+ font-size: 18px;
469
+ line-height: 26px;
470
+ }
471
+ }
472
+ @media (max-width: 840px) and (max-width: 840px) and (min-width: 1201px) and (max-width: 1680px) {
473
+ .o-link {
474
+ font-size: 16px;
475
+ line-height: 24px;
476
+ }
477
+ }
478
+ @media (max-width: 840px) and (max-width: 840px) and (min-width: 841px) and (max-width: 1200px) {
479
+ .o-link {
480
+ font-size: 14px;
481
+ line-height: 22px;
482
+ }
483
+ }
484
+ @media (max-width: 840px) and (max-width: 840px) and (min-width: 601px) and (max-width: 840px) {
485
+ .o-link {
486
+ font-size: 14px;
487
+ line-height: 22px;
488
+ }
489
+ }
490
+ @media (max-width: 840px) and (max-width: 840px) and (max-width: 600px) {
491
+ .o-link {
492
+ font-size: 14px;
493
+ line-height: 22px;
494
+ }
495
+ }
496
+ @media (max-width: 840px) {
497
+ .o-sig-description {
498
+ margin-top: var(--o-gap-2);
499
+ color: var(--o-color-info2);
500
+ height: 44px;
501
+ font-weight: 400;
502
+ overflow: hidden;
503
+ text-overflow: ellipsis;
504
+ word-break: break-all;
505
+ display: -webkit-box;
506
+ -webkit-box-orient: vertical;
507
+ -webkit-line-clamp: 2;
508
+ font-size: 14px;
509
+ line-height: 22px;
510
+ }
511
+ }
512
+ @media (max-width: 840px) and (min-width: 1201px) and (max-width: 1680px) {
513
+ .o-sig-description {
514
+ font-size: 14px;
515
+ line-height: 18px;
516
+ }
517
+ }
518
+ @media (max-width: 840px) and (min-width: 841px) and (max-width: 1200px) {
519
+ .o-sig-description {
520
+ font-size: 12px;
521
+ line-height: 18px;
522
+ }
523
+ }
524
+ @media (max-width: 840px) and (min-width: 601px) and (max-width: 840px) {
525
+ .o-sig-description {
526
+ font-size: 12px;
527
+ line-height: 18px;
528
+ }
529
+ }
530
+ @media (max-width: 840px) and (max-width: 600px) {
531
+ .o-sig-description {
532
+ font-size: 12px;
533
+ line-height: 18px;
534
+ }
535
+ }
536
+ @media (max-width: 840px) and (max-width: 1680px) {
537
+ .o-sig-description {
538
+ height: 36px;
539
+ }
540
+ }
541
+ @media (max-width: 840px) and (max-width: 840px) {
542
+ .o-sig-description {
543
+ margin-top: 6px;
544
+ order: 1;
545
+ height: auto;
546
+ font-size: 16px;
547
+ line-height: 24px;
548
+ }
549
+ }
550
+ @media (max-width: 840px) and (max-width: 840px) and (min-width: 1201px) and (max-width: 1680px) {
551
+ .o-sig-description {
552
+ font-size: 14px;
553
+ line-height: 22px;
554
+ }
555
+ }
556
+ @media (max-width: 840px) and (max-width: 840px) and (min-width: 841px) and (max-width: 1200px) {
557
+ .o-sig-description {
558
+ font-size: 14px;
559
+ line-height: 22px;
560
+ }
561
+ }
562
+ @media (max-width: 840px) and (max-width: 840px) and (min-width: 601px) and (max-width: 840px) {
563
+ .o-sig-description {
564
+ font-size: 14px;
565
+ line-height: 22px;
566
+ }
567
+ }
568
+ @media (max-width: 840px) and (max-width: 840px) and (max-width: 600px) {
569
+ .o-sig-description {
570
+ font-size: 12px;
571
+ line-height: 18px;
572
+ }
573
+ }
574
+ @media (max-width: 840px) {
575
+ .o-sig-description .o-sig-repo {
576
+ display: flex;
577
+ }
578
+ .o-sig-description .o-sig-repo .o-sig-repo-label {
579
+ color: var(--o-color-info1);
580
+ font-weight: 500;
581
+ margin-right: 8px;
582
+ }
583
+ .o-sig-bottom {
584
+ display: flex;
585
+ align-items: center;
586
+ margin-top: var(--o-gap-2);
587
+ color: var(--o-color-info3);
588
+ font-size: 12px;
589
+ line-height: 18px;
590
+ }
591
+ }
592
+ @media (max-width: 840px) and (min-width: 1201px) and (max-width: 1680px) {
593
+ .o-sig-bottom {
594
+ font-size: 12px;
595
+ line-height: 18px;
596
+ }
597
+ }
598
+ @media (max-width: 840px) and (min-width: 841px) and (max-width: 1200px) {
599
+ .o-sig-bottom {
600
+ font-size: 12px;
601
+ line-height: 18px;
602
+ }
603
+ }
604
+ @media (max-width: 840px) and (min-width: 601px) and (max-width: 840px) {
605
+ .o-sig-bottom {
606
+ font-size: 12px;
607
+ line-height: 18px;
608
+ }
609
+ }
610
+ @media (max-width: 840px) and (max-width: 600px) {
611
+ .o-sig-bottom {
612
+ font-size: 12px;
613
+ line-height: 18px;
614
+ }
615
+ }
616
+ @media (max-width: 840px) {
617
+ .o-sig-bottom .o-icon {
618
+ --icon-size: 16px;
619
+ margin-right: 4px;
620
+ }
621
+ .o-sig-bottom .o-icon svg path {
622
+ fill: currentColor;
623
+ }
624
+ .o-sig-bottom .o-sig-meta-text {
625
+ cursor: pointer;
626
+ margin-bottom: 0;
627
+ }
628
+ }
629
+ @media (max-width: 840px) and (max-width: 840px) {
630
+ .o-sig-bottom {
631
+ font-size: 16px;
632
+ line-height: 24px;
633
+ }
634
+ }
635
+ @media (max-width: 840px) and (max-width: 840px) and (min-width: 1201px) and (max-width: 1680px) {
636
+ .o-sig-bottom {
637
+ font-size: 14px;
638
+ line-height: 22px;
639
+ }
640
+ }
641
+ @media (max-width: 840px) and (max-width: 840px) and (min-width: 841px) and (max-width: 1200px) {
642
+ .o-sig-bottom {
643
+ font-size: 14px;
644
+ line-height: 22px;
645
+ }
646
+ }
647
+ @media (max-width: 840px) and (max-width: 840px) and (min-width: 601px) and (max-width: 840px) {
648
+ .o-sig-bottom {
649
+ font-size: 14px;
650
+ line-height: 22px;
651
+ }
652
+ }
653
+ @media (max-width: 840px) and (max-width: 840px) and (max-width: 600px) {
654
+ .o-sig-bottom {
655
+ font-size: 12px;
656
+ line-height: 18px;
657
+ }
658
+ }
659
+ @media (max-width: 840px) {
660
+ .o-sig-meta {
661
+ display: flex;
662
+ align-items: center;
663
+ }
664
+ }
354
665
  .o-sig-popup-repos {
355
666
  width: 272px;
356
667
  --popup-padding: 9px 0;
@@ -4,7 +4,6 @@ type __VLS_Props = {
4
4
  sig: SigMergedItemT;
5
5
  locale: 'zh' | 'en';
6
6
  mobile?: boolean;
7
- activeRepo?: string;
8
7
  };
9
8
  declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
10
9
  "to-sig-detail": (sigName: string) => any;