@opendesign-plus-test/components 0.0.1-rc.42 → 0.0.1-rc.45
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 +132 -112
- package/dist/components/OHeaderSearch.vue.d.ts +824 -506
- package/dist/components/OSourceCode.vue.d.ts +4 -6
- package/dist/components/activity/OActivityApproval.vue.d.ts +6 -10
- package/dist/components/activity/OActivityForm.vue.d.ts +3 -5
- package/dist/components/activity/OMyActivityCalendar.vue.d.ts +100 -46
- package/dist/components/activity/index.d.ts +56 -33
- package/dist/components/activity/types.d.ts +8 -1
- package/dist/components/events/config.d.ts +5 -18
- package/dist/components/events/types.d.ts +4 -1
- package/dist/components/header/OHeaderMobile.vue.d.ts +18 -11
- package/dist/components/header/components/HeaderNavMobile.vue.d.ts +4 -1
- package/dist/components/header/index.d.ts +12 -5
- package/dist/components/header/types.d.ts +4 -0
- package/dist/components/meeting/OMeetingCalendar.vue.d.ts +8 -12
- package/dist/components/meeting/OMeetingForm.vue.d.ts +3 -5
- package/dist/components/meeting/OMeetingPlayback.vue.d.ts +45 -0
- package/dist/components/meeting/OMyMeetingCalendar.vue.d.ts +100 -46
- package/dist/components/meeting/components/OMeetingCalendarList.vue.d.ts +1 -1
- package/dist/components/meeting/index.d.ts +817 -0
- package/dist/components/meeting/types.d.ts +82 -17
- package/dist/components/meeting/utils.d.ts +1 -1
- package/dist/components/search/OSearchInput.vue.d.ts +1003 -0
- package/dist/components/search/composables/useImageSearch.d.ts +48 -0
- package/dist/components/search/composables/useKeywordHighlight.d.ts +2 -0
- package/dist/components/search/composables/useSearchHistory.d.ts +14 -0
- package/dist/components/search/index.d.ts +590 -0
- package/dist/components/search/internal/HighlightText.vue.d.ts +9 -0
- package/dist/components/search/internal/SearchImageInput.vue.d.ts +716 -0
- package/dist/components/search/internal/SearchPanel.vue.d.ts +100 -0
- package/dist/components/search/types.d.ts +20 -0
- package/dist/components.cjs.js +43 -43
- package/dist/components.css +1 -1
- package/dist/components.es.js +11681 -10636
- package/dist/index.d.ts +1 -0
- package/package.json +3 -3
- package/src/assets/svg-icons/icon-delete-hover.svg +4 -0
- package/src/assets/svg-icons/icon-delete.svg +5 -1
- package/src/assets/svg-icons/icon-image-close.svg +4 -0
- package/src/assets/svg-icons/icon-image-upload.svg +3 -0
- package/src/assets/svg-icons/icon-image-zoomin.svg +3 -0
- package/src/assets/svg-icons/icon-refresh.svg +3 -0
- package/src/components/OBanner.vue +18 -18
- package/src/components/OCookieNotice.vue +21 -21
- package/src/components/OFooter.vue +18 -17
- package/src/components/OHeaderSearch.vue +402 -420
- package/src/components/OHeaderUser.vue +3 -2
- package/src/components/OSection.vue +4 -4
- package/src/components/OSourceCode.vue +8 -10
- package/src/components/activity/OActivityApproval.vue +32 -32
- package/src/components/activity/OActivityForm.vue +5 -5
- package/src/components/activity/OMyActivityCalendar.vue +66 -50
- package/src/components/activity/config.ts +1 -1
- package/src/components/activity/types.ts +8 -1
- package/src/components/common/ContentWrapper.vue +3 -3
- package/src/components/common/MoreText.vue +1 -1
- package/src/components/common/ThFilter.vue +7 -7
- package/src/components/element-plus/OElCookieNotice.vue +27 -27
- package/src/components/events/OEventsApply.vue +44 -44
- package/src/components/events/OEventsCalendar.vue +14 -14
- package/src/components/events/OEventsList.vue +53 -26
- package/src/components/events/config.ts +1 -1
- package/src/components/events/types.ts +4 -1
- package/src/components/header/OHeader.vue +2 -2
- package/src/components/header/OHeaderMobile.vue +8 -1
- package/src/components/header/components/HeaderContent.vue +67 -63
- package/src/components/header/components/HeaderNav.vue +4 -4
- package/src/components/header/components/HeaderNavMobile.vue +8 -5
- package/src/components/header/types.ts +4 -0
- package/src/components/meeting/OMeetingCalendar.vue +66 -54
- package/src/components/meeting/OMeetingForm.vue +70 -51
- package/src/components/meeting/OMeetingPlayback.vue +8 -8
- package/src/components/meeting/OMyMeetingCalendar.vue +56 -45
- package/src/components/meeting/OSigMeetingCalendar.vue +31 -28
- package/src/components/meeting/components/OMeetingCalendarList.vue +31 -26
- package/src/components/meeting/components/OMeetingCalendarSelector.vue +10 -6
- package/src/components/meeting/components/OMeetingDetail.vue +32 -18
- package/src/components/meeting/components/OMeetingPlaybackSubtitles.vue +1 -1
- package/src/components/meeting/components/OMeetingPlaybackVideo.vue +12 -12
- package/src/components/meeting/components/OSigMeetingAside.vue +8 -9
- package/src/components/meeting/types.ts +88 -17
- package/src/components/search/OSearchInput.vue +463 -0
- package/src/components/search/composables/useImageSearch.ts +157 -0
- package/src/components/search/composables/useKeywordHighlight.ts +30 -0
- package/src/components/search/composables/useSearchHistory.ts +75 -0
- package/src/components/search/index.ts +23 -0
- package/src/components/search/internal/HighlightText.vue +37 -0
- package/src/components/search/internal/SearchImageInput.vue +488 -0
- package/src/components/search/internal/SearchPanel.vue +430 -0
- package/src/components/search/types.ts +25 -0
- package/src/draft/Banner.vue +6 -6
- package/src/draft/ButtonCards.vue +1 -1
- package/src/draft/Feature.vue +6 -6
- package/src/draft/Footer.vue +29 -22
- package/src/draft/HorizontalAnchor.vue +4 -4
- package/src/draft/ItemSwiper.vue +2 -2
- package/src/draft/Logo.vue +3 -3
- package/src/draft/LogoCard.vue +2 -2
- package/src/draft/MultiCard.vue +1 -1
- package/src/draft/MultiIconCard.vue +1 -1
- package/src/draft/OInfoCard.vue +4 -4
- package/src/draft/Section.vue +4 -4
- package/src/draft/SingleTabCard.vue +1 -1
- package/src/draft/SliderCard.vue +4 -3
- package/src/i18n/en.ts +10 -0
- package/src/i18n/zh.ts +10 -0
- package/src/index.ts +1 -0
- package/vite.config.ts +4 -3
|
@@ -25,7 +25,7 @@ const emits = defineEmits<{
|
|
|
25
25
|
(e: 'update:visible', value: boolean): void;
|
|
26
26
|
}>();
|
|
27
27
|
|
|
28
|
-
const { lePadV
|
|
28
|
+
const { lePadV } = useScreen();
|
|
29
29
|
const { locale, t } = useI18n();
|
|
30
30
|
const isZh = computed(() => locale.value === 'zh');
|
|
31
31
|
|
|
@@ -291,7 +291,7 @@ defineExpose({
|
|
|
291
291
|
}
|
|
292
292
|
|
|
293
293
|
.cookie-notice-content {
|
|
294
|
-
background-color: rgba(var(--o-
|
|
294
|
+
background-color: rgba(var(--o-grey-1), 0.9);
|
|
295
295
|
backdrop-filter: blur(5px);
|
|
296
296
|
box-shadow: var(--o-shadow-1);
|
|
297
297
|
}
|
|
@@ -304,13 +304,13 @@ defineExpose({
|
|
|
304
304
|
@media (1680px >= width >= 1201px) {
|
|
305
305
|
padding: 12px var(--layout-content-padding);
|
|
306
306
|
}
|
|
307
|
-
@include respond
|
|
307
|
+
@include respond('pad_h') {
|
|
308
308
|
padding: 8px var(--layout-content-padding);
|
|
309
309
|
}
|
|
310
310
|
@media (max-width: 840px) {
|
|
311
311
|
padding: 16px var(--layout-content-padding);
|
|
312
312
|
}
|
|
313
|
-
@include respond
|
|
313
|
+
@include respond('phone') {
|
|
314
314
|
padding: 16px var(--layout-content-padding);
|
|
315
315
|
}
|
|
316
316
|
&:not([type='zh']) {
|
|
@@ -327,13 +327,13 @@ defineExpose({
|
|
|
327
327
|
@media (1680px >= width >= 1201px) {
|
|
328
328
|
padding: 12px 0;
|
|
329
329
|
}
|
|
330
|
-
@include respond
|
|
330
|
+
@include respond('pad_h') {
|
|
331
331
|
padding: 8px 0;
|
|
332
332
|
}
|
|
333
333
|
@media (max-width: 840px) {
|
|
334
334
|
padding: 16px 0;
|
|
335
335
|
}
|
|
336
|
-
@include respond
|
|
336
|
+
@include respond('phone') {
|
|
337
337
|
padding: 16px 0;
|
|
338
338
|
}
|
|
339
339
|
&:not([type='zh']) {
|
|
@@ -353,13 +353,13 @@ defineExpose({
|
|
|
353
353
|
@media (max-width: 1680px) {
|
|
354
354
|
font-size: 14px;
|
|
355
355
|
}
|
|
356
|
-
@include respond
|
|
356
|
+
@include respond('<=pad_v') {
|
|
357
357
|
text-align: center;
|
|
358
358
|
}
|
|
359
359
|
}
|
|
360
360
|
|
|
361
361
|
.cookie-en-title {
|
|
362
|
-
@include respond
|
|
362
|
+
@include respond('<=pad_v') {
|
|
363
363
|
margin-left: auto;
|
|
364
364
|
}
|
|
365
365
|
}
|
|
@@ -369,7 +369,7 @@ defineExpose({
|
|
|
369
369
|
line-height: 22px;
|
|
370
370
|
margin-right: 8px;
|
|
371
371
|
text-align: start;
|
|
372
|
-
@include respond
|
|
372
|
+
@include respond('<=pad_v') {
|
|
373
373
|
font-size: 12px;
|
|
374
374
|
line-height: 18px;
|
|
375
375
|
}
|
|
@@ -379,7 +379,7 @@ defineExpose({
|
|
|
379
379
|
display: flex;
|
|
380
380
|
width: 100%;
|
|
381
381
|
margin-top: 8px;
|
|
382
|
-
@include respond
|
|
382
|
+
@include respond('<=pad_v') {
|
|
383
383
|
flex-direction: column;
|
|
384
384
|
}
|
|
385
385
|
}
|
|
@@ -394,10 +394,10 @@ defineExpose({
|
|
|
394
394
|
@media (1680px >= width >= 1201px) {
|
|
395
395
|
margin-right: 40px;
|
|
396
396
|
}
|
|
397
|
-
@include respond
|
|
397
|
+
@include respond('pad') {
|
|
398
398
|
margin-right: 24px;
|
|
399
399
|
}
|
|
400
|
-
@include respond
|
|
400
|
+
@include respond('<=pad_v') {
|
|
401
401
|
margin: 0;
|
|
402
402
|
}
|
|
403
403
|
}
|
|
@@ -411,7 +411,7 @@ defineExpose({
|
|
|
411
411
|
@media (1680px >= width >= 1201px) {
|
|
412
412
|
margin-left: 12px;
|
|
413
413
|
}
|
|
414
|
-
@include respond
|
|
414
|
+
@include respond('pad_h') {
|
|
415
415
|
margin-left: 8px;
|
|
416
416
|
}
|
|
417
417
|
@media (min-width: 841px) {
|
|
@@ -419,7 +419,7 @@ defineExpose({
|
|
|
419
419
|
}
|
|
420
420
|
}
|
|
421
421
|
|
|
422
|
-
@include respond
|
|
422
|
+
@include respond('<=pad_v') {
|
|
423
423
|
margin-top: 16px;
|
|
424
424
|
width: 100%;
|
|
425
425
|
display: grid;
|
|
@@ -464,7 +464,7 @@ defineExpose({
|
|
|
464
464
|
@media (1680px >= width >= 1201px) {
|
|
465
465
|
margin-top: 16px;
|
|
466
466
|
}
|
|
467
|
-
@include respond
|
|
467
|
+
@include respond('<=pad') {
|
|
468
468
|
margin-top: 12px;
|
|
469
469
|
}
|
|
470
470
|
&:nth-child(2) {
|
|
@@ -485,7 +485,7 @@ defineExpose({
|
|
|
485
485
|
@media (1680px >= width >= 1201px) {
|
|
486
486
|
font-size: 18px;
|
|
487
487
|
}
|
|
488
|
-
@include respond
|
|
488
|
+
@include respond('<=pad') {
|
|
489
489
|
font-size: 16px;
|
|
490
490
|
}
|
|
491
491
|
}
|
|
@@ -494,7 +494,7 @@ defineExpose({
|
|
|
494
494
|
font-size: 14px;
|
|
495
495
|
color: var(--o-color-info3);
|
|
496
496
|
margin-left: 24px;
|
|
497
|
-
@include respond
|
|
497
|
+
@include respond('<=pad') {
|
|
498
498
|
font-size: 12px;
|
|
499
499
|
}
|
|
500
500
|
}
|
|
@@ -508,7 +508,7 @@ defineExpose({
|
|
|
508
508
|
margin-top: 12px;
|
|
509
509
|
font-size: 14px;
|
|
510
510
|
}
|
|
511
|
-
@include respond
|
|
511
|
+
@include respond('<=pad') {
|
|
512
512
|
margin-top: 8px;
|
|
513
513
|
}
|
|
514
514
|
@media (max-width: 840px) {
|
|
@@ -524,7 +524,7 @@ defineExpose({
|
|
|
524
524
|
@media (1680px >= width >= 1201px) {
|
|
525
525
|
font-size: 20px;
|
|
526
526
|
}
|
|
527
|
-
@include respond
|
|
527
|
+
@include respond('<=pad') {
|
|
528
528
|
font-size: 18px;
|
|
529
529
|
}
|
|
530
530
|
}
|
|
@@ -550,29 +550,29 @@ defineExpose({
|
|
|
550
550
|
}
|
|
551
551
|
|
|
552
552
|
:deep(.el-dialog) {
|
|
553
|
-
@include respond
|
|
553
|
+
@include respond('<=pad_v') {
|
|
554
554
|
--el-dialog-width: 100vw;
|
|
555
555
|
}
|
|
556
556
|
&.grid-width-dlg {
|
|
557
|
-
@include respond
|
|
557
|
+
@include respond('>pad') {
|
|
558
558
|
--el-dialog-width: var(--grid-14);
|
|
559
559
|
}
|
|
560
|
-
@include respond
|
|
560
|
+
@include respond('pad_h') {
|
|
561
561
|
--el-dialog-width: var(--grid-8);
|
|
562
562
|
}
|
|
563
563
|
}
|
|
564
564
|
}
|
|
565
565
|
|
|
566
566
|
:deep(.el-dialog) {
|
|
567
|
-
--el-bg-color: var(--o-color-
|
|
567
|
+
--el-bg-color: var(--o-color-control5-light);
|
|
568
568
|
--el-dialog-padding-primary: 32px;
|
|
569
|
-
@include respond
|
|
569
|
+
@include respond('laptop') {
|
|
570
570
|
--el-dialog-padding-primary: 24px;
|
|
571
571
|
}
|
|
572
|
-
@include respond
|
|
572
|
+
@include respond('pad_h') {
|
|
573
573
|
--el-dialog-padding-primary: 16px;
|
|
574
574
|
}
|
|
575
|
-
@include respond
|
|
575
|
+
@include respond('phone') {
|
|
576
576
|
--el-dialog-padding-primary: 16px 24px;
|
|
577
577
|
}
|
|
578
578
|
.el-dialog__header {
|
|
@@ -586,7 +586,7 @@ defineExpose({
|
|
|
586
586
|
@media (1680px >= width >= 1201px) {
|
|
587
587
|
margin-top: 16px;
|
|
588
588
|
}
|
|
589
|
-
@include respond
|
|
589
|
+
@include respond('<=pad_h') {
|
|
590
590
|
margin-top: 12px;
|
|
591
591
|
}
|
|
592
592
|
.el-button+.el-button {
|
|
@@ -71,7 +71,7 @@ defineProps<EventsApplyPropsT>();
|
|
|
71
71
|
// 移动端时间线序号
|
|
72
72
|
.timeline-number {
|
|
73
73
|
display: none; // 桌面端隐藏
|
|
74
|
-
@include respond
|
|
74
|
+
@include respond('<=pad_v') {
|
|
75
75
|
display: flex;
|
|
76
76
|
align-items: flex-start;
|
|
77
77
|
padding-top: var(--o-gap-3); // 与 step-title 的 padding 对齐
|
|
@@ -118,7 +118,7 @@ defineProps<EventsApplyPropsT>();
|
|
|
118
118
|
gap: var(--o-gap-6);
|
|
119
119
|
|
|
120
120
|
// 移动端:2列布局(序号列 + 内容列)
|
|
121
|
-
@include respond
|
|
121
|
+
@include respond('<=pad_v') {
|
|
122
122
|
grid-template-columns: auto 1fr; // 第1列自适应,第2列占满
|
|
123
123
|
grid-template-rows: auto; // 行数自动
|
|
124
124
|
gap: var(--o-gap-3); // 列间距12px,行间距12px
|
|
@@ -132,7 +132,7 @@ defineProps<EventsApplyPropsT>();
|
|
|
132
132
|
--idx-size: 20px;
|
|
133
133
|
--idx-gap: var(--o-gap-3);
|
|
134
134
|
// 移动端:强制在第2列显示
|
|
135
|
-
@include respond
|
|
135
|
+
@include respond('<=pad_v') {
|
|
136
136
|
grid-column: 2 !important;
|
|
137
137
|
grid-row: auto !important;
|
|
138
138
|
}
|
|
@@ -145,13 +145,13 @@ defineProps<EventsApplyPropsT>();
|
|
|
145
145
|
display: flex;
|
|
146
146
|
align-items: center;
|
|
147
147
|
@include h2;
|
|
148
|
-
@include respond
|
|
148
|
+
@include respond('pad_v') {
|
|
149
149
|
margin-bottom: 0;
|
|
150
150
|
padding: var(--o-gap-3) var(--o-gap-4);
|
|
151
151
|
border-bottom: 1px solid var(--o-color-control4);
|
|
152
152
|
@include text1;
|
|
153
153
|
}
|
|
154
|
-
@include respond
|
|
154
|
+
@include respond('phone') {
|
|
155
155
|
margin-bottom: 0;
|
|
156
156
|
padding: var(--o-gap-3) var(--o-gap-4);
|
|
157
157
|
border-bottom: 1px solid var(--o-color-control4);
|
|
@@ -169,10 +169,10 @@ defineProps<EventsApplyPropsT>();
|
|
|
169
169
|
color: #fff;
|
|
170
170
|
text-align: center;
|
|
171
171
|
font-weight: 400;
|
|
172
|
-
@include respond
|
|
172
|
+
@include respond('pad_v') {
|
|
173
173
|
display: none;
|
|
174
174
|
}
|
|
175
|
-
@include respond
|
|
175
|
+
@include respond('phone') {
|
|
176
176
|
display: none;
|
|
177
177
|
}
|
|
178
178
|
}
|
|
@@ -182,10 +182,10 @@ defineProps<EventsApplyPropsT>();
|
|
|
182
182
|
color: var(--o-color-info2);
|
|
183
183
|
padding: 0 var(--o-gap-6) var(--o-gap-4) var(--o-gap-6);
|
|
184
184
|
@include tip1;
|
|
185
|
-
@include respond
|
|
185
|
+
@include respond('pad_v') {
|
|
186
186
|
padding: var(--o-gap-3) var(--o-gap-4);
|
|
187
187
|
}
|
|
188
|
-
@include respond
|
|
188
|
+
@include respond('phone') {
|
|
189
189
|
padding: var(--o-gap-3) var(--o-gap-4);
|
|
190
190
|
}
|
|
191
191
|
|
|
@@ -195,7 +195,7 @@ defineProps<EventsApplyPropsT>();
|
|
|
195
195
|
|
|
196
196
|
.desc-list-title {
|
|
197
197
|
padding-left: calc(var(--idx-size) + var(--idx-gap));
|
|
198
|
-
@include respond
|
|
198
|
+
@include respond('<=pad_v') {
|
|
199
199
|
display: none;
|
|
200
200
|
}
|
|
201
201
|
}
|
|
@@ -214,10 +214,10 @@ defineProps<EventsApplyPropsT>();
|
|
|
214
214
|
font-size: 16px;
|
|
215
215
|
margin-right: var(--o-gap-4);
|
|
216
216
|
color: #fff;
|
|
217
|
-
@include respond
|
|
217
|
+
@include respond('pad_v') {
|
|
218
218
|
margin-right: var(--o-gap-2);
|
|
219
219
|
}
|
|
220
|
-
@include respond
|
|
220
|
+
@include respond('phone') {
|
|
221
221
|
margin-right: var(--o-gap-2);
|
|
222
222
|
}
|
|
223
223
|
|
|
@@ -236,13 +236,11 @@ defineProps<EventsApplyPropsT>();
|
|
|
236
236
|
--padding-left: var(--o-gap-4);
|
|
237
237
|
padding-left: calc(var(--o-gap-4) + var(--o-gap-4));
|
|
238
238
|
color: rgba(255, 255, 255, 0.8);
|
|
239
|
-
@include respond
|
|
239
|
+
@include respond('pad_v') {
|
|
240
240
|
padding-left: var(--o-gap-5);
|
|
241
|
-
color: var(--o-color-info2);
|
|
242
241
|
}
|
|
243
|
-
@include respond
|
|
242
|
+
@include respond('phone') {
|
|
244
243
|
padding-left: var(--o-gap-5);
|
|
245
|
-
color: var(--o-color-info2);
|
|
246
244
|
}
|
|
247
245
|
}
|
|
248
246
|
}
|
|
@@ -257,20 +255,20 @@ defineProps<EventsApplyPropsT>();
|
|
|
257
255
|
}
|
|
258
256
|
|
|
259
257
|
.img-wrapper {
|
|
260
|
-
@include respond
|
|
258
|
+
@include respond('<=pad_v') {
|
|
261
259
|
display: none;
|
|
262
260
|
}
|
|
263
261
|
}
|
|
264
262
|
|
|
265
263
|
.img-wrapper-phone {
|
|
266
|
-
@include respond
|
|
264
|
+
@include respond('>pad_v') {
|
|
267
265
|
display: none;
|
|
268
266
|
}
|
|
269
267
|
}
|
|
270
268
|
|
|
271
269
|
&.step-1 {
|
|
272
270
|
.step-desc {
|
|
273
|
-
@include respond
|
|
271
|
+
@include respond('>pad_v') {
|
|
274
272
|
padding-bottom: 0;
|
|
275
273
|
}
|
|
276
274
|
}
|
|
@@ -288,7 +286,7 @@ defineProps<EventsApplyPropsT>();
|
|
|
288
286
|
|
|
289
287
|
&.step-2 {
|
|
290
288
|
.step-desc {
|
|
291
|
-
@include respond
|
|
289
|
+
@include respond('>pad_v') {
|
|
292
290
|
padding-bottom: 0;
|
|
293
291
|
}
|
|
294
292
|
}
|
|
@@ -305,31 +303,33 @@ defineProps<EventsApplyPropsT>();
|
|
|
305
303
|
}
|
|
306
304
|
|
|
307
305
|
&.step-3 {
|
|
308
|
-
|
|
306
|
+
background: linear-gradient(
|
|
307
|
+
142.13deg,
|
|
308
|
+
color-mix(in srgb, transparent 0%, transparent) 0%,
|
|
309
|
+
color-mix(in srgb, rgba(var(--o-white), 0.6) 60%, transparent) 100%
|
|
310
|
+
),
|
|
311
|
+
var(--o-color-primary1);
|
|
312
|
+
|
|
313
|
+
&.is-dark {
|
|
309
314
|
background: linear-gradient(
|
|
310
315
|
142.13deg,
|
|
311
|
-
color-mix(in srgb,
|
|
312
|
-
color-mix(in srgb,
|
|
316
|
+
color-mix(in srgb, var(--o-color-primary1) 40%, transparent) 0%,
|
|
317
|
+
color-mix(in srgb, var(--o-color-primary1) 16%, transparent) 100%
|
|
313
318
|
),
|
|
314
|
-
var(--o-color-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
color: #fff;
|
|
329
|
-
}
|
|
330
|
-
.step-desc {
|
|
331
|
-
color: #fff;
|
|
332
|
-
}
|
|
319
|
+
var(--o-color-fill2);
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
.step-idx {
|
|
323
|
+
background-color: #fff;
|
|
324
|
+
color: #000;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
.step-title {
|
|
328
|
+
color: #fff;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
.step-desc {
|
|
332
|
+
color: #fff;
|
|
333
333
|
}
|
|
334
334
|
|
|
335
335
|
.img-wrapper {
|
|
@@ -349,10 +349,10 @@ defineProps<EventsApplyPropsT>();
|
|
|
349
349
|
&.step-4 {
|
|
350
350
|
position: relative;
|
|
351
351
|
padding-right: 292px;
|
|
352
|
-
@include respond
|
|
352
|
+
@include respond('pad_h') {
|
|
353
353
|
padding-right: 192px;
|
|
354
354
|
}
|
|
355
|
-
@include respond
|
|
355
|
+
@include respond('<=pad_v') {
|
|
356
356
|
padding-right: var(--o-gap-4);
|
|
357
357
|
}
|
|
358
358
|
|
|
@@ -248,10 +248,10 @@ const getIcon = (item: CalendarItemT) => {
|
|
|
248
248
|
height: var(--header-height);
|
|
249
249
|
line-height: var(--header-height);
|
|
250
250
|
text-align: center;
|
|
251
|
-
@include respond
|
|
251
|
+
@include respond('laptop') {
|
|
252
252
|
--header-height: 40px;
|
|
253
253
|
}
|
|
254
|
-
@include respond
|
|
254
|
+
@include respond('pad_h') {
|
|
255
255
|
--header-height: 38px;
|
|
256
256
|
}
|
|
257
257
|
}
|
|
@@ -260,10 +260,10 @@ const getIcon = (item: CalendarItemT) => {
|
|
|
260
260
|
.o-collapse {
|
|
261
261
|
--collapse-padding: 0;
|
|
262
262
|
--collapse-radius: 0 0 var(--o-radius_control-l) var(--o-radius_control-l);
|
|
263
|
-
@include respond
|
|
263
|
+
@include respond('pad_v') {
|
|
264
264
|
--collapse-radius: var(--o-radius_control-l);
|
|
265
265
|
}
|
|
266
|
-
@include respond
|
|
266
|
+
@include respond('phone') {
|
|
267
267
|
--collapse-radius: var(--o-radius_control-l);
|
|
268
268
|
}
|
|
269
269
|
|
|
@@ -271,7 +271,7 @@ const getIcon = (item: CalendarItemT) => {
|
|
|
271
271
|
.o-collapse-item-header {
|
|
272
272
|
padding: var(--o-gap-4) var(--o-gap-6);
|
|
273
273
|
align-items: center;
|
|
274
|
-
@include respond
|
|
274
|
+
@include respond('<=pad_v') {
|
|
275
275
|
padding: var(--o-gap-2) var(--o-gap-3);
|
|
276
276
|
}
|
|
277
277
|
|
|
@@ -298,7 +298,7 @@ const getIcon = (item: CalendarItemT) => {
|
|
|
298
298
|
align-items: center;
|
|
299
299
|
justify-content: space-between;
|
|
300
300
|
margin-right: var(--o-gap-4);
|
|
301
|
-
@include respond
|
|
301
|
+
@include respond('<=pad_v') {
|
|
302
302
|
flex-direction: column;
|
|
303
303
|
align-items: flex-start;
|
|
304
304
|
}
|
|
@@ -317,7 +317,7 @@ const getIcon = (item: CalendarItemT) => {
|
|
|
317
317
|
justify-content: center;
|
|
318
318
|
margin-right: var(--o-gap-4);
|
|
319
319
|
background-color: rgb(var(--bg-color));
|
|
320
|
-
@include respond
|
|
320
|
+
@include respond('<=pad_v') {
|
|
321
321
|
margin-right: var(--o-gap-2);
|
|
322
322
|
}
|
|
323
323
|
}
|
|
@@ -325,10 +325,10 @@ const getIcon = (item: CalendarItemT) => {
|
|
|
325
325
|
.o-icon {
|
|
326
326
|
font-size: 20px;
|
|
327
327
|
color: var(--o-white);
|
|
328
|
-
@include respond
|
|
328
|
+
@include respond('laptop') {
|
|
329
329
|
font-size: 16px;
|
|
330
330
|
}
|
|
331
|
-
@include respond
|
|
331
|
+
@include respond('pad_h') {
|
|
332
332
|
font-size: 16px;
|
|
333
333
|
}
|
|
334
334
|
|
|
@@ -350,7 +350,7 @@ const getIcon = (item: CalendarItemT) => {
|
|
|
350
350
|
color: var(--o-color-info3);
|
|
351
351
|
white-space: normal;
|
|
352
352
|
@include text1;
|
|
353
|
-
@include respond
|
|
353
|
+
@include respond('<=pad_v') {
|
|
354
354
|
margin-top: var(--o-gap-1);
|
|
355
355
|
font-size: 12px;
|
|
356
356
|
}
|
|
@@ -364,7 +364,7 @@ const getIcon = (item: CalendarItemT) => {
|
|
|
364
364
|
.month-content {
|
|
365
365
|
padding: var(--o-gap-3) 0;
|
|
366
366
|
position: relative;
|
|
367
|
-
@include respond
|
|
367
|
+
@include respond('pad_h') {
|
|
368
368
|
padding: var(--o-gap-2) 0;
|
|
369
369
|
}
|
|
370
370
|
background-image: linear-gradient(
|
|
@@ -446,7 +446,7 @@ const getIcon = (item: CalendarItemT) => {
|
|
|
446
446
|
);
|
|
447
447
|
|
|
448
448
|
--event-gap: 6px;
|
|
449
|
-
@include respond
|
|
449
|
+
@include respond('pad_h') {
|
|
450
450
|
--event-gap: var(--o-gap-1);
|
|
451
451
|
}
|
|
452
452
|
// 跨月事件布局:Grid
|
|
@@ -507,7 +507,7 @@ const getIcon = (item: CalendarItemT) => {
|
|
|
507
507
|
--link-gap: 2px;
|
|
508
508
|
display: flex;
|
|
509
509
|
@include tip1;
|
|
510
|
-
@include respond
|
|
510
|
+
@include respond('pad_v') {
|
|
511
511
|
color: var(--o-color-info1);
|
|
512
512
|
}
|
|
513
513
|
|
|
@@ -549,7 +549,7 @@ const getIcon = (item: CalendarItemT) => {
|
|
|
549
549
|
color: var(--o-color-info2);
|
|
550
550
|
font-weight: 400;
|
|
551
551
|
@include tip1;
|
|
552
|
-
@include respond
|
|
552
|
+
@include respond('<=pad_v') {
|
|
553
553
|
@include text2;
|
|
554
554
|
}
|
|
555
555
|
}
|