@opendesign-plus-test/components 0.0.1-rc.154 → 0.0.1-rc.155
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/dist/chunk-OElCookieNotice.cjs.js +1 -1
- package/dist/chunk-OElCookieNotice.es.js +2 -2
- package/dist/components/meeting/OMeetingMinutes.vue.d.ts +348 -2
- package/dist/components/meeting/index.d.ts +174 -1
- package/dist/components/meeting/types.d.ts +1 -0
- package/dist/components/sig/OSigDetail.vue.d.ts +1 -1
- package/dist/components/sig/OSigList.vue.d.ts +0 -2
- package/dist/components/sig/components/OSigItem.vue.d.ts +1 -4
- package/dist/components.cjs.js +37 -37
- package/dist/components.css +1 -1
- package/dist/components.es.js +7533 -7527
- package/dist/treeshaking/components/activity/OActivityApproval.css +8 -8
- package/dist/treeshaking/components/footer/components/FooterList.css +96 -109
- package/dist/treeshaking/components/footer/components/FooterList.vue.mjs +1 -1
- package/dist/treeshaking/components/header/OHeader.css +15 -25
- package/dist/treeshaking/components/header/OHeader.vue.mjs +1 -1
- package/dist/treeshaking/components/header/components/HeaderContent.css +185 -185
- package/dist/treeshaking/components/header/components/HeaderContent.vue.mjs +1 -1
- package/dist/treeshaking/components/header/components/HeaderFlatten.css +75 -74
- package/dist/treeshaking/components/header/components/HeaderFlatten.vue.mjs +1 -1
- package/dist/treeshaking/components/meeting/OMeetingMinutes.css +201 -223
- package/dist/treeshaking/components/meeting/OMeetingMinutes.vue.d.ts +348 -2
- package/dist/treeshaking/components/meeting/OMeetingMinutes.vue.mjs +392 -6
- package/dist/treeshaking/components/meeting/OMeetingMinutes.vue3.mjs +5 -0
- package/dist/treeshaking/components/meeting/components/OMeetingSendMinutesDialog.css +53 -53
- package/dist/treeshaking/components/meeting/components/OMeetingSendMinutesDialog.vue.mjs +1 -1
- package/dist/treeshaking/components/meeting/index.d.ts +174 -1
- package/dist/treeshaking/components/meeting/index.mjs +13 -12
- package/dist/treeshaking/components/meeting/types.d.ts +1 -0
- package/dist/treeshaking/components/sig/OSigDetail.css +3 -7
- package/dist/treeshaking/components/sig/OSigDetail.vue.d.ts +1 -1
- package/dist/treeshaking/components/sig/OSigDetail.vue.mjs +3 -6
- package/dist/treeshaking/components/sig/OSigList.css +134 -165
- package/dist/treeshaking/components/sig/OSigList.vue.d.ts +0 -2
- package/dist/treeshaking/components/sig/OSigList.vue.mjs +103 -118
- package/dist/treeshaking/components/sig/components/OSigDetailInfoCard.css +1 -1
- package/dist/treeshaking/components/sig/components/OSigItem.css +367 -31
- package/dist/treeshaking/components/sig/components/OSigItem.vue.d.ts +1 -4
- package/dist/treeshaking/components/sig/components/OSigItem.vue.mjs +4 -6
- package/dist/treeshaking/components/sig/components/OSigMember.css +1 -1
- package/dist/treeshaking/components/sig/components/OSigRepo.css +2 -15
- package/dist/treeshaking/components/sig/components/OSigUserContribute.css +0 -7
- package/dist/treeshaking/components/video/OVideoDetail.css +7 -7
- package/dist/treeshaking/i18n/en.mjs +1 -1
- package/dist/treeshaking/i18n/zh.mjs +1 -1
- package/package.json +1 -1
- package/dist/treeshaking/components/meeting/OMeetingMinutes.vue2.mjs +0 -356
- package/dist/treeshaking/components/meeting/OMeetingMinutes2.css +0 -11
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
height: 100%;
|
|
11
11
|
background-color: var(--o-color-fill2);
|
|
12
12
|
padding: var(--o-gap-5) var(--o-gap-6);
|
|
13
|
-
border-radius: var(--
|
|
13
|
+
border-radius: var(--o-radius-xs);
|
|
14
14
|
}
|
|
15
15
|
@media (min-width: 1201px) and (max-width: 1680px) {
|
|
16
16
|
.o-sig-item {
|
|
@@ -25,67 +25,55 @@
|
|
|
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
30
|
.o-sig-item .o-sig-item-header {
|
|
32
31
|
display: flex;
|
|
33
32
|
justify-content: space-between;
|
|
34
33
|
align-items: center;
|
|
35
|
-
flex-wrap: nowrap;
|
|
36
|
-
gap: var(--o-r-gap-4);
|
|
37
34
|
}
|
|
38
|
-
.o-sig-item .o-sig-
|
|
35
|
+
.o-sig-item .o-sig-name {
|
|
39
36
|
cursor: pointer;
|
|
40
37
|
color: var(--o-color-info1);
|
|
41
38
|
font-weight: 600;
|
|
42
|
-
min-width: 0;
|
|
43
|
-
flex: 1;
|
|
44
|
-
overflow: hidden;
|
|
45
|
-
text-overflow: ellipsis;
|
|
46
|
-
word-break: break-all;
|
|
47
|
-
display: -webkit-box;
|
|
48
|
-
-webkit-box-orient: vertical;
|
|
49
|
-
-webkit-line-clamp: 1;
|
|
50
39
|
font-size: 22px;
|
|
51
40
|
line-height: 30px;
|
|
52
41
|
}
|
|
53
42
|
@media (min-width: 1201px) and (max-width: 1680px) {
|
|
54
|
-
.o-sig-item .o-sig-
|
|
43
|
+
.o-sig-item .o-sig-name {
|
|
55
44
|
font-size: 18px;
|
|
56
45
|
line-height: 26px;
|
|
57
46
|
}
|
|
58
47
|
}
|
|
59
48
|
@media (min-width: 841px) and (max-width: 1200px) {
|
|
60
|
-
.o-sig-item .o-sig-
|
|
49
|
+
.o-sig-item .o-sig-name {
|
|
61
50
|
font-size: 16px;
|
|
62
51
|
line-height: 24px;
|
|
63
52
|
}
|
|
64
53
|
}
|
|
65
54
|
@media (min-width: 601px) and (max-width: 840px) {
|
|
66
|
-
.o-sig-item .o-sig-
|
|
55
|
+
.o-sig-item .o-sig-name {
|
|
67
56
|
font-size: 16px;
|
|
68
57
|
line-height: 24px;
|
|
69
58
|
}
|
|
70
59
|
}
|
|
71
60
|
@media (max-width: 600px) {
|
|
72
|
-
.o-sig-item .o-sig-
|
|
61
|
+
.o-sig-item .o-sig-name {
|
|
73
62
|
font-size: 16px;
|
|
74
63
|
line-height: 24px;
|
|
75
64
|
}
|
|
76
65
|
}
|
|
77
66
|
@media (hover: hover) {
|
|
78
|
-
.o-sig-item .o-sig-
|
|
67
|
+
.o-sig-item .o-sig-name:hover {
|
|
79
68
|
color: var(--o-color-primary1);
|
|
80
69
|
}
|
|
81
70
|
}
|
|
82
|
-
.o-sig-item .o-sig-
|
|
71
|
+
.o-sig-item .o-sig-type-tag {
|
|
83
72
|
--tag-bd-color: var(--o-color-control4);
|
|
84
73
|
--tag-height: 24px;
|
|
85
|
-
flex-shrink: 0;
|
|
86
74
|
}
|
|
87
75
|
@media (max-width: 1680px) {
|
|
88
|
-
.o-sig-item .o-sig-
|
|
76
|
+
.o-sig-item .o-sig-type-tag {
|
|
89
77
|
--tag-height: 20px;
|
|
90
78
|
}
|
|
91
79
|
}
|
|
@@ -94,11 +82,6 @@
|
|
|
94
82
|
align-items: center;
|
|
95
83
|
margin-top: var(--o-gap-2);
|
|
96
84
|
}
|
|
97
|
-
@media (max-width: 840px) {
|
|
98
|
-
.o-sig-item .o-sig-link a:first-child {
|
|
99
|
-
height: 20px;
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
85
|
.o-sig-item .o-sig-link .o-sig-source-icon {
|
|
103
86
|
font-size: 24px;
|
|
104
87
|
}
|
|
@@ -228,6 +211,7 @@
|
|
|
228
211
|
@media (max-width: 840px) {
|
|
229
212
|
.o-sig-item .o-sig-description {
|
|
230
213
|
margin-top: var(--o-gap-2);
|
|
214
|
+
order: 1;
|
|
231
215
|
font-size: 16px;
|
|
232
216
|
line-height: 24px;
|
|
233
217
|
}
|
|
@@ -293,7 +277,7 @@
|
|
|
293
277
|
margin-top: var(--o-gap-3);
|
|
294
278
|
}
|
|
295
279
|
}
|
|
296
|
-
@media (
|
|
280
|
+
@media (min-width: ) {
|
|
297
281
|
.o-sig-item .o-sig-bottom {
|
|
298
282
|
margin-top: var(--o-gap-2);
|
|
299
283
|
}
|
|
@@ -343,11 +327,361 @@
|
|
|
343
327
|
display: flex;
|
|
344
328
|
align-items: center;
|
|
345
329
|
}
|
|
330
|
+
@media (max-width: 840px) {
|
|
331
|
+
.o-sig-item {
|
|
332
|
+
position: relative;
|
|
333
|
+
}
|
|
334
|
+
.o-sig-item .o-sig-item-header {
|
|
335
|
+
display: flex;
|
|
336
|
+
justify-content: space-between;
|
|
337
|
+
align-items: center;
|
|
338
|
+
}
|
|
339
|
+
.o-sig-item .o-sig-name {
|
|
340
|
+
cursor: pointer;
|
|
341
|
+
color: var(--o-color-info1);
|
|
342
|
+
font-weight: 600;
|
|
343
|
+
font-size: 22px;
|
|
344
|
+
line-height: 30px;
|
|
345
|
+
}
|
|
346
|
+
}
|
|
347
|
+
@media (max-width: 840px) and (min-width: 1201px) and (max-width: 1680px) {
|
|
348
|
+
.o-sig-item .o-sig-name {
|
|
349
|
+
font-size: 18px;
|
|
350
|
+
line-height: 26px;
|
|
351
|
+
}
|
|
352
|
+
}
|
|
353
|
+
@media (max-width: 840px) and (min-width: 841px) and (max-width: 1200px) {
|
|
354
|
+
.o-sig-item .o-sig-name {
|
|
355
|
+
font-size: 16px;
|
|
356
|
+
line-height: 24px;
|
|
357
|
+
}
|
|
358
|
+
}
|
|
359
|
+
@media (max-width: 840px) and (min-width: 601px) and (max-width: 840px) {
|
|
360
|
+
.o-sig-item .o-sig-name {
|
|
361
|
+
font-size: 16px;
|
|
362
|
+
line-height: 24px;
|
|
363
|
+
}
|
|
364
|
+
}
|
|
365
|
+
@media (max-width: 840px) and (max-width: 600px) {
|
|
366
|
+
.o-sig-item .o-sig-name {
|
|
367
|
+
font-size: 16px;
|
|
368
|
+
line-height: 24px;
|
|
369
|
+
}
|
|
370
|
+
}
|
|
371
|
+
@media (max-width: 840px) and (hover: hover) {
|
|
372
|
+
.o-sig-item .o-sig-name:hover {
|
|
373
|
+
color: var(--o-color-primary1);
|
|
374
|
+
}
|
|
375
|
+
}
|
|
376
|
+
@media (max-width: 840px) {
|
|
377
|
+
.o-sig-item .o-sig-type-tag {
|
|
378
|
+
--tag-bd-color: var(--o-color-control4);
|
|
379
|
+
--tag-height: 24px;
|
|
380
|
+
}
|
|
381
|
+
}
|
|
382
|
+
@media (max-width: 840px) and (max-width: 1680px) {
|
|
383
|
+
.o-sig-item .o-sig-type-tag {
|
|
384
|
+
--tag-height: 20px;
|
|
385
|
+
}
|
|
386
|
+
}
|
|
387
|
+
@media (max-width: 840px) and (max-width: 840px) {
|
|
388
|
+
.o-sig-item .o-sig-type-tag {
|
|
389
|
+
position: absolute;
|
|
390
|
+
top: 8px;
|
|
391
|
+
right: 4px;
|
|
392
|
+
}
|
|
393
|
+
}
|
|
394
|
+
@media (max-width: 840px) {
|
|
395
|
+
.o-sig-item .o-sig-link {
|
|
396
|
+
display: flex;
|
|
397
|
+
align-items: center;
|
|
398
|
+
margin-top: var(--o-gap-2);
|
|
399
|
+
}
|
|
400
|
+
.o-sig-item .o-sig-link a:first-child {
|
|
401
|
+
height: 24px;
|
|
402
|
+
}
|
|
403
|
+
}
|
|
404
|
+
@media (max-width: 840px) and (max-width: 1680px) {
|
|
405
|
+
.o-sig-item .o-sig-link a:first-child {
|
|
406
|
+
height: 20px;
|
|
407
|
+
}
|
|
408
|
+
}
|
|
409
|
+
@media (max-width: 840px) {
|
|
410
|
+
.o-sig-item .o-sig-link .o-sig-source-icon {
|
|
411
|
+
font-size: 24px;
|
|
412
|
+
}
|
|
413
|
+
}
|
|
414
|
+
@media (max-width: 840px) and (max-width: 1680px) {
|
|
415
|
+
.o-sig-item .o-sig-link .o-sig-source-icon {
|
|
416
|
+
font-size: 20px;
|
|
417
|
+
}
|
|
418
|
+
}
|
|
419
|
+
@media (max-width: 840px) {
|
|
420
|
+
.o-sig-item .o-sig-link .o-sig-source-icon svg {
|
|
421
|
+
fill: none;
|
|
422
|
+
}
|
|
423
|
+
.o-sig-item .o-sig-link .o-divider {
|
|
424
|
+
--o-divider-label-gap: 0 8px;
|
|
425
|
+
}
|
|
426
|
+
.o-sig-item .o-sig-link .o-btn {
|
|
427
|
+
margin-left: var(--o-gap-2);
|
|
428
|
+
}
|
|
429
|
+
.o-sig-item .o-sig-link .mail-link {
|
|
430
|
+
min-width: 0;
|
|
431
|
+
flex: 0 1 auto;
|
|
432
|
+
}
|
|
433
|
+
.o-sig-item .o-sig-link .mail-link .tooltip-text-wrapper {
|
|
434
|
+
min-width: 0;
|
|
435
|
+
flex: 1;
|
|
436
|
+
}
|
|
437
|
+
}
|
|
438
|
+
@media (max-width: 840px) and (max-width: 840px) {
|
|
439
|
+
.o-sig-item .o-sig-link {
|
|
440
|
+
margin-top: 8px;
|
|
441
|
+
}
|
|
442
|
+
}
|
|
443
|
+
@media (max-width: 840px) {
|
|
444
|
+
.o-sig-item .o-link {
|
|
445
|
+
padding: 0;
|
|
446
|
+
font-size: 16px;
|
|
447
|
+
line-height: 24px;
|
|
448
|
+
}
|
|
449
|
+
}
|
|
450
|
+
@media (max-width: 840px) and (min-width: 1201px) and (max-width: 1680px) {
|
|
451
|
+
.o-sig-item .o-link {
|
|
452
|
+
font-size: 14px;
|
|
453
|
+
line-height: 22px;
|
|
454
|
+
}
|
|
455
|
+
}
|
|
456
|
+
@media (max-width: 840px) and (min-width: 841px) and (max-width: 1200px) {
|
|
457
|
+
.o-sig-item .o-link {
|
|
458
|
+
font-size: 14px;
|
|
459
|
+
line-height: 22px;
|
|
460
|
+
}
|
|
461
|
+
}
|
|
462
|
+
@media (max-width: 840px) and (min-width: 601px) and (max-width: 840px) {
|
|
463
|
+
.o-sig-item .o-link {
|
|
464
|
+
font-size: 14px;
|
|
465
|
+
line-height: 22px;
|
|
466
|
+
}
|
|
467
|
+
}
|
|
468
|
+
@media (max-width: 840px) and (max-width: 600px) {
|
|
469
|
+
.o-sig-item .o-link {
|
|
470
|
+
font-size: 12px;
|
|
471
|
+
line-height: 18px;
|
|
472
|
+
}
|
|
473
|
+
}
|
|
474
|
+
@media (max-width: 840px) {
|
|
475
|
+
.o-sig-item .o-link .o-link-label {
|
|
476
|
+
display: flex;
|
|
477
|
+
}
|
|
478
|
+
}
|
|
479
|
+
@media (max-width: 840px) and (max-width: 840px) {
|
|
480
|
+
.o-sig-item .o-link {
|
|
481
|
+
font-size: 18px;
|
|
482
|
+
line-height: 26px;
|
|
483
|
+
}
|
|
484
|
+
}
|
|
485
|
+
@media (max-width: 840px) and (max-width: 840px) and (min-width: 1201px) and (max-width: 1680px) {
|
|
486
|
+
.o-sig-item .o-link {
|
|
487
|
+
font-size: 16px;
|
|
488
|
+
line-height: 24px;
|
|
489
|
+
}
|
|
490
|
+
}
|
|
491
|
+
@media (max-width: 840px) and (max-width: 840px) and (min-width: 841px) and (max-width: 1200px) {
|
|
492
|
+
.o-sig-item .o-link {
|
|
493
|
+
font-size: 14px;
|
|
494
|
+
line-height: 22px;
|
|
495
|
+
}
|
|
496
|
+
}
|
|
497
|
+
@media (max-width: 840px) and (max-width: 840px) and (min-width: 601px) and (max-width: 840px) {
|
|
498
|
+
.o-sig-item .o-link {
|
|
499
|
+
font-size: 14px;
|
|
500
|
+
line-height: 22px;
|
|
501
|
+
}
|
|
502
|
+
}
|
|
503
|
+
@media (max-width: 840px) and (max-width: 840px) and (max-width: 600px) {
|
|
504
|
+
.o-sig-item .o-link {
|
|
505
|
+
font-size: 14px;
|
|
506
|
+
line-height: 22px;
|
|
507
|
+
}
|
|
508
|
+
}
|
|
509
|
+
@media (max-width: 840px) {
|
|
510
|
+
.o-sig-item .o-sig-description {
|
|
511
|
+
margin-top: var(--o-gap-2);
|
|
512
|
+
color: var(--o-color-info2);
|
|
513
|
+
height: 44px;
|
|
514
|
+
font-weight: 400;
|
|
515
|
+
overflow: hidden;
|
|
516
|
+
text-overflow: ellipsis;
|
|
517
|
+
word-break: break-all;
|
|
518
|
+
display: -webkit-box;
|
|
519
|
+
-webkit-box-orient: vertical;
|
|
520
|
+
-webkit-line-clamp: 2;
|
|
521
|
+
font-size: 14px;
|
|
522
|
+
line-height: 22px;
|
|
523
|
+
}
|
|
524
|
+
}
|
|
525
|
+
@media (max-width: 840px) and (min-width: 1201px) and (max-width: 1680px) {
|
|
526
|
+
.o-sig-item .o-sig-description {
|
|
527
|
+
font-size: 14px;
|
|
528
|
+
line-height: 18px;
|
|
529
|
+
}
|
|
530
|
+
}
|
|
531
|
+
@media (max-width: 840px) and (min-width: 841px) and (max-width: 1200px) {
|
|
532
|
+
.o-sig-item .o-sig-description {
|
|
533
|
+
font-size: 12px;
|
|
534
|
+
line-height: 18px;
|
|
535
|
+
}
|
|
536
|
+
}
|
|
537
|
+
@media (max-width: 840px) and (min-width: 601px) and (max-width: 840px) {
|
|
538
|
+
.o-sig-item .o-sig-description {
|
|
539
|
+
font-size: 12px;
|
|
540
|
+
line-height: 18px;
|
|
541
|
+
}
|
|
542
|
+
}
|
|
543
|
+
@media (max-width: 840px) and (max-width: 600px) {
|
|
544
|
+
.o-sig-item .o-sig-description {
|
|
545
|
+
font-size: 12px;
|
|
546
|
+
line-height: 18px;
|
|
547
|
+
}
|
|
548
|
+
}
|
|
549
|
+
@media (max-width: 840px) and (max-width: 1680px) {
|
|
550
|
+
.o-sig-item .o-sig-description {
|
|
551
|
+
height: 36px;
|
|
552
|
+
}
|
|
553
|
+
}
|
|
554
|
+
@media (max-width: 840px) and (max-width: 840px) {
|
|
555
|
+
.o-sig-item .o-sig-description {
|
|
556
|
+
margin-top: 6px;
|
|
557
|
+
order: 1;
|
|
558
|
+
height: auto;
|
|
559
|
+
font-size: 16px;
|
|
560
|
+
line-height: 24px;
|
|
561
|
+
}
|
|
562
|
+
}
|
|
563
|
+
@media (max-width: 840px) and (max-width: 840px) and (min-width: 1201px) and (max-width: 1680px) {
|
|
564
|
+
.o-sig-item .o-sig-description {
|
|
565
|
+
font-size: 14px;
|
|
566
|
+
line-height: 22px;
|
|
567
|
+
}
|
|
568
|
+
}
|
|
569
|
+
@media (max-width: 840px) and (max-width: 840px) and (min-width: 841px) and (max-width: 1200px) {
|
|
570
|
+
.o-sig-item .o-sig-description {
|
|
571
|
+
font-size: 14px;
|
|
572
|
+
line-height: 22px;
|
|
573
|
+
}
|
|
574
|
+
}
|
|
575
|
+
@media (max-width: 840px) and (max-width: 840px) and (min-width: 601px) and (max-width: 840px) {
|
|
576
|
+
.o-sig-item .o-sig-description {
|
|
577
|
+
font-size: 14px;
|
|
578
|
+
line-height: 22px;
|
|
579
|
+
}
|
|
580
|
+
}
|
|
581
|
+
@media (max-width: 840px) and (max-width: 840px) and (max-width: 600px) {
|
|
582
|
+
.o-sig-item .o-sig-description {
|
|
583
|
+
font-size: 12px;
|
|
584
|
+
line-height: 18px;
|
|
585
|
+
}
|
|
586
|
+
}
|
|
587
|
+
@media (max-width: 840px) {
|
|
588
|
+
.o-sig-item .o-sig-description .o-sig-repo {
|
|
589
|
+
display: flex;
|
|
590
|
+
}
|
|
591
|
+
.o-sig-item .o-sig-description .o-sig-repo .o-sig-repo-label {
|
|
592
|
+
color: var(--o-color-info1);
|
|
593
|
+
font-weight: 500;
|
|
594
|
+
margin-right: 8px;
|
|
595
|
+
}
|
|
596
|
+
.o-sig-item .o-sig-bottom {
|
|
597
|
+
display: flex;
|
|
598
|
+
align-items: center;
|
|
599
|
+
margin-top: var(--o-gap-2);
|
|
600
|
+
color: var(--o-color-info3);
|
|
601
|
+
font-size: 12px;
|
|
602
|
+
line-height: 18px;
|
|
603
|
+
}
|
|
604
|
+
}
|
|
605
|
+
@media (max-width: 840px) and (min-width: 1201px) and (max-width: 1680px) {
|
|
606
|
+
.o-sig-item .o-sig-bottom {
|
|
607
|
+
font-size: 12px;
|
|
608
|
+
line-height: 18px;
|
|
609
|
+
}
|
|
610
|
+
}
|
|
611
|
+
@media (max-width: 840px) and (min-width: 841px) and (max-width: 1200px) {
|
|
612
|
+
.o-sig-item .o-sig-bottom {
|
|
613
|
+
font-size: 12px;
|
|
614
|
+
line-height: 18px;
|
|
615
|
+
}
|
|
616
|
+
}
|
|
617
|
+
@media (max-width: 840px) and (min-width: 601px) and (max-width: 840px) {
|
|
618
|
+
.o-sig-item .o-sig-bottom {
|
|
619
|
+
font-size: 12px;
|
|
620
|
+
line-height: 18px;
|
|
621
|
+
}
|
|
622
|
+
}
|
|
623
|
+
@media (max-width: 840px) and (max-width: 600px) {
|
|
624
|
+
.o-sig-item .o-sig-bottom {
|
|
625
|
+
font-size: 12px;
|
|
626
|
+
line-height: 18px;
|
|
627
|
+
}
|
|
628
|
+
}
|
|
629
|
+
@media (max-width: 840px) {
|
|
630
|
+
.o-sig-item .o-sig-bottom .o-icon {
|
|
631
|
+
--icon-size: 16px;
|
|
632
|
+
margin-right: 4px;
|
|
633
|
+
}
|
|
634
|
+
.o-sig-item .o-sig-bottom .o-icon svg path {
|
|
635
|
+
fill: currentColor;
|
|
636
|
+
}
|
|
637
|
+
.o-sig-item .o-sig-bottom .o-sig-meta-text {
|
|
638
|
+
cursor: pointer;
|
|
639
|
+
margin-bottom: 0;
|
|
640
|
+
}
|
|
641
|
+
}
|
|
642
|
+
@media (max-width: 840px) and (max-width: 840px) {
|
|
643
|
+
.o-sig-item .o-sig-bottom {
|
|
644
|
+
font-size: 16px;
|
|
645
|
+
line-height: 24px;
|
|
646
|
+
}
|
|
647
|
+
}
|
|
648
|
+
@media (max-width: 840px) and (max-width: 840px) and (min-width: 1201px) and (max-width: 1680px) {
|
|
649
|
+
.o-sig-item .o-sig-bottom {
|
|
650
|
+
font-size: 14px;
|
|
651
|
+
line-height: 22px;
|
|
652
|
+
}
|
|
653
|
+
}
|
|
654
|
+
@media (max-width: 840px) and (max-width: 840px) and (min-width: 841px) and (max-width: 1200px) {
|
|
655
|
+
.o-sig-item .o-sig-bottom {
|
|
656
|
+
font-size: 14px;
|
|
657
|
+
line-height: 22px;
|
|
658
|
+
}
|
|
659
|
+
}
|
|
660
|
+
@media (max-width: 840px) and (max-width: 840px) and (min-width: 601px) and (max-width: 840px) {
|
|
661
|
+
.o-sig-item .o-sig-bottom {
|
|
662
|
+
font-size: 14px;
|
|
663
|
+
line-height: 22px;
|
|
664
|
+
}
|
|
665
|
+
}
|
|
666
|
+
@media (max-width: 840px) and (max-width: 840px) and (max-width: 600px) {
|
|
667
|
+
.o-sig-item .o-sig-bottom {
|
|
668
|
+
font-size: 12px;
|
|
669
|
+
line-height: 18px;
|
|
670
|
+
}
|
|
671
|
+
}
|
|
672
|
+
@media (max-width: 840px) {
|
|
673
|
+
.o-sig-item .o-sig-meta {
|
|
674
|
+
display: flex;
|
|
675
|
+
align-items: center;
|
|
676
|
+
}
|
|
677
|
+
}
|
|
346
678
|
.o-sig-popup-repos {
|
|
347
|
-
|
|
348
|
-
min-width: 160px;
|
|
679
|
+
width: 272px;
|
|
349
680
|
--popup-padding: 9px 0;
|
|
350
681
|
}
|
|
682
|
+
.o-sig-popup-repos .o-sig-popup-content {
|
|
683
|
+
max-height: 176px;
|
|
684
|
+
}
|
|
351
685
|
.o-sig-popup-repos .o-scroller {
|
|
352
686
|
max-height: 176px;
|
|
353
687
|
padding: 0 var(--o-gap-4);
|
|
@@ -363,10 +697,12 @@
|
|
|
363
697
|
}
|
|
364
698
|
}
|
|
365
699
|
.o-sig-popup-maintainers {
|
|
366
|
-
|
|
367
|
-
min-width: 120px;
|
|
700
|
+
width: 168px;
|
|
368
701
|
--popup-padding: 9px 0;
|
|
369
702
|
}
|
|
703
|
+
.o-sig-popup-maintainers .o-sig-popup-content {
|
|
704
|
+
max-height: 112px;
|
|
705
|
+
}
|
|
370
706
|
.o-sig-popup-maintainers .o-scroller {
|
|
371
707
|
max-height: 112px;
|
|
372
708
|
padding: 0 16px;
|
|
@@ -2,13 +2,10 @@ import { GroupInfoT, SigListItemT } from '../types';
|
|
|
2
2
|
type SigMergedItemT = SigListItemT & Partial<GroupInfoT>;
|
|
3
3
|
type __VLS_Props = {
|
|
4
4
|
sig: SigMergedItemT;
|
|
5
|
-
showFeature?: boolean;
|
|
6
5
|
};
|
|
7
6
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
8
7
|
"to-sig-detail": (sigName: string) => any;
|
|
9
8
|
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
10
9
|
"onTo-sig-detail"?: ((sigName: string) => any) | undefined;
|
|
11
|
-
}>, {
|
|
12
|
-
showFeature: boolean;
|
|
13
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
10
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
14
11
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent, openBlock, createElementBlock, createElementVNode, toDisplayString,
|
|
1
|
+
import { defineComponent, openBlock, createElementBlock, createElementVNode, toDisplayString, createVNode, unref, withCtx, createTextVNode, createBlock, createCommentVNode, Fragment, renderList } from "vue";
|
|
2
2
|
import { OTag, OLink, OIcon, ODivider, OButton, OPopover, OScroller } from "@opensig/opendesign";
|
|
3
3
|
import { useI18n } from "../../../i18n/index.mjs";
|
|
4
4
|
import IconAtomGit from "../../../_virtual/icon-atomgit.mjs";
|
|
@@ -21,8 +21,7 @@ const _hoisted_11 = { class: "o-sig-popup-content" };
|
|
|
21
21
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
22
22
|
__name: "OSigItem",
|
|
23
23
|
props: {
|
|
24
|
-
sig: {}
|
|
25
|
-
showFeature: { type: Boolean, default: true }
|
|
24
|
+
sig: {}
|
|
26
25
|
},
|
|
27
26
|
emits: ["to-sig-detail"],
|
|
28
27
|
setup(__props, { emit: __emit }) {
|
|
@@ -36,8 +35,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
36
35
|
class: "o-sig-name",
|
|
37
36
|
onClick: _cache[0] || (_cache[0] = ($event) => emit("to-sig-detail", __props.sig.name))
|
|
38
37
|
}, toDisplayString(__props.sig.name), 1),
|
|
39
|
-
|
|
40
|
-
key: 0,
|
|
38
|
+
createVNode(unref(OTag), {
|
|
41
39
|
variant: "outline",
|
|
42
40
|
class: "o-sig-type-tag"
|
|
43
41
|
}, {
|
|
@@ -45,7 +43,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
45
43
|
createTextVNode(toDisplayString((unref(locale) === "zh" ? __props.sig.feature_zh : __props.sig.feature_en) || unref(t)("sig.other")), 1)
|
|
46
44
|
]),
|
|
47
45
|
_: 1
|
|
48
|
-
})
|
|
46
|
+
})
|
|
49
47
|
]),
|
|
50
48
|
createElementVNode("div", _hoisted_3, [
|
|
51
49
|
createVNode(unref(OLink), {
|
|
@@ -10,21 +10,8 @@
|
|
|
10
10
|
--link-color: var(--o-color-primary1);
|
|
11
11
|
}
|
|
12
12
|
.o-sig-detail-repo .o-sig-detail-repo-table {
|
|
13
|
-
margin-top:
|
|
14
|
-
--table-
|
|
15
|
-
}
|
|
16
|
-
@media (min-width: 1201px) and (max-width: 1680px) {
|
|
17
|
-
.o-sig-detail-repo .o-sig-detail-repo-table {
|
|
18
|
-
margin-top: var(--o-gap-4);
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
@media (max-width: 1200px) {
|
|
22
|
-
.o-sig-detail-repo .o-sig-detail-repo-table {
|
|
23
|
-
margin-top: var(--o-gap-2);
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
.o-sig-detail-repo .o-sig-detail-repo-table .o-table-cell.o-cell-first-col .o-table-cell__inner {
|
|
27
|
-
padding-left: 16px;
|
|
13
|
+
margin-top: 24px;
|
|
14
|
+
--table-edge-padding: calc(var(--table-cell-padding) * 2);
|
|
28
15
|
}
|
|
29
16
|
.o-sig-detail-repo .o-sig-detail-repo-table .o-scroller-container {
|
|
30
17
|
min-width: 0;
|
|
@@ -10,7 +10,6 @@
|
|
|
10
10
|
--_box-bg-color: var(--o-color-fill2);
|
|
11
11
|
--_box-bg-color-hover: var(--o-color-fill2);
|
|
12
12
|
--_box-bg-color-focus: var(--o-color-fill2);
|
|
13
|
-
--_box-radius: var(--sig-input-radius);
|
|
14
13
|
}
|
|
15
14
|
.o-sig-detail-contribute .o-sig-detail-contribute-title {
|
|
16
15
|
font-weight: 600;
|
|
@@ -72,9 +71,6 @@
|
|
|
72
71
|
line-height: 18px;
|
|
73
72
|
}
|
|
74
73
|
}
|
|
75
|
-
.o-sig-detail-contribute .o-card {
|
|
76
|
-
--card-radius: var(--sig-card-radius);
|
|
77
|
-
}
|
|
78
74
|
.o-sig-detail-contribute .o-card + .o-card {
|
|
79
75
|
margin-top: var(--o-gap-4);
|
|
80
76
|
}
|
|
@@ -203,9 +199,6 @@
|
|
|
203
199
|
.o-sig-detail-contribute .o-table {
|
|
204
200
|
margin-top: var(--o-gap-3);
|
|
205
201
|
}
|
|
206
|
-
.o-sig-detail-contribute .o-table .o-table-cell.o-cell-first-col .o-table-cell__inner {
|
|
207
|
-
padding-left: 16px;
|
|
208
|
-
}
|
|
209
202
|
.o-sig-detail-contribute .o-table .o-scroller-container {
|
|
210
203
|
min-width: 0;
|
|
211
204
|
}
|
|
@@ -140,7 +140,7 @@
|
|
|
140
140
|
margin-bottom: var(--o-gap-4);
|
|
141
141
|
}
|
|
142
142
|
}
|
|
143
|
-
@media (
|
|
143
|
+
@media (min-width: ) {
|
|
144
144
|
.o-video-detail-content-wrapper .o-video-card-video-list .o-card-header {
|
|
145
145
|
margin-bottom: var(--o-gap-3);
|
|
146
146
|
}
|
|
@@ -337,7 +337,7 @@
|
|
|
337
337
|
padding: var(--o-gap-3) var(--o-gap-4);
|
|
338
338
|
}
|
|
339
339
|
}
|
|
340
|
-
@media (
|
|
340
|
+
@media (min-width: ) {
|
|
341
341
|
.o-video-detail-content-wrapper .o-video-card-video-list .o-video-course-info-wrapper .o-video-material-download-wrapper {
|
|
342
342
|
margin-top: var(--o-gap-3);
|
|
343
343
|
padding: var(--o-gap-2) var(--o-gap-3);
|
|
@@ -436,7 +436,7 @@
|
|
|
436
436
|
margin-left: var(--o-gap-5);
|
|
437
437
|
}
|
|
438
438
|
}
|
|
439
|
-
@media (
|
|
439
|
+
@media (min-width: ) {
|
|
440
440
|
.o-video-detail-content-wrapper .o-video-card-video-list .o-video-course-info-wrapper .o-video-material-download-wrapper .o-video-material-download-size {
|
|
441
441
|
margin-left: var(--o-gap-4);
|
|
442
442
|
}
|
|
@@ -488,7 +488,7 @@
|
|
|
488
488
|
margin-bottom: var(--o-gap-3);
|
|
489
489
|
}
|
|
490
490
|
}
|
|
491
|
-
@media (
|
|
491
|
+
@media (min-width: ) {
|
|
492
492
|
.o-video-detail-content-wrapper .o-video-card-video-list .o-video-course-info-wrapper .o-video-course-info-title {
|
|
493
493
|
margin-bottom: var(--o-gap-2);
|
|
494
494
|
}
|
|
@@ -535,7 +535,7 @@
|
|
|
535
535
|
margin-left: var(--o-gap-3);
|
|
536
536
|
}
|
|
537
537
|
}
|
|
538
|
-
@media (
|
|
538
|
+
@media (min-width: ) {
|
|
539
539
|
.o-video-detail-content-wrapper .o-video-card-video-list .o-video-course-info-wrapper .o-video-course-info-avatar .o-video-info-detail-wrapper {
|
|
540
540
|
margin-left: var(--o-gap-2);
|
|
541
541
|
}
|
|
@@ -647,7 +647,7 @@
|
|
|
647
647
|
margin-top: var(--o-gap-4);
|
|
648
648
|
}
|
|
649
649
|
}
|
|
650
|
-
@media (
|
|
650
|
+
@media (min-width: ) {
|
|
651
651
|
.o-video-detail-content-wrapper .o-video-card-video-list .o-video-course-info-wrapper .o-video-course-info-content-title {
|
|
652
652
|
margin-top: var(--o-gap-3);
|
|
653
653
|
}
|
|
@@ -663,7 +663,7 @@
|
|
|
663
663
|
margin-top: var(--o-gap-3);
|
|
664
664
|
}
|
|
665
665
|
}
|
|
666
|
-
@media (
|
|
666
|
+
@media (min-width: ) {
|
|
667
667
|
.o-video-detail-content-wrapper .o-video-card-video-list .o-video-course-info-wrapper .o-video-course-info-content {
|
|
668
668
|
margin-top: var(--o-gap-2);
|
|
669
669
|
}
|
|
@@ -154,7 +154,7 @@ const en = {
|
|
|
154
154
|
"meeting.meetingEtherpad": "Meeting Minutes",
|
|
155
155
|
"meeting.meetingReplay": "Playback",
|
|
156
156
|
"meeting.searchSubtitlePlaceholder": "Enter",
|
|
157
|
-
"meeting.detailHalfYearMeetings": "
|
|
157
|
+
"meeting.detailHalfYearMeetings": "默认显示近半年的会议。",
|
|
158
158
|
"meeting.tencent": "Tencent",
|
|
159
159
|
"meeting.etherpad": "Meeting Minutes",
|
|
160
160
|
"common.confirm": "Confirm",
|
|
@@ -153,7 +153,7 @@ const zh = {
|
|
|
153
153
|
"meeting.meetingEtherpad": "会议纪要",
|
|
154
154
|
"meeting.meetingReplay": "智能回放",
|
|
155
155
|
"meeting.searchSubtitlePlaceholder": "请输入搜索内容",
|
|
156
|
-
"meeting.detailHalfYearMeetings": "
|
|
156
|
+
"meeting.detailHalfYearMeetings": "默认显示近半年的会议。",
|
|
157
157
|
"meeting.tencent": "腾讯会议",
|
|
158
158
|
"meeting.etherpad": "会议纪要",
|
|
159
159
|
"common.confirm": "确认",
|