@opendesign-plus/components 0.0.1-rc.21 → 0.0.1-rc.23
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 +3 -3
- package/dist/components/OHeaderSearch.vue.d.ts +58 -14
- package/dist/components/OThemeSwitcher.vue.d.ts +2 -5
- package/dist/components/activity/{OMyActivityCalendar.vue.d.ts → OActivityMyCalendar.vue.d.ts} +86 -24
- package/dist/components/activity/index.d.ts +45 -14
- package/dist/components/meeting/{OMyMeetingCalendar.vue.d.ts → OMeetingMyCalendar.vue.d.ts} +86 -24
- package/dist/components/meeting/index.d.ts +15 -301
- package/dist/components.cjs.js +36 -36
- package/dist/components.css +1 -1
- package/dist/components.es.js +7156 -7126
- package/package.json +3 -3
- package/src/assets/styles/element-plus.scss +204 -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 +19 -19
- package/src/components/OHeaderUser.vue +3 -2
- package/src/components/OSection.vue +4 -4
- package/src/components/OThemeSwitcher.vue +51 -27
- package/src/components/activity/OActivityApproval.vue +14 -10
- package/src/components/activity/OActivityForm.vue +7 -5
- package/src/components/activity/{OMyActivityCalendar.vue → OActivityMyCalendar.vue} +69 -47
- package/src/components/activity/config.ts +1 -1
- package/src/components/activity/index.ts +4 -4
- package/src/components/common/ContentWrapper.vue +3 -3
- package/src/components/element-plus/OElCookieNotice.vue +26 -26
- package/src/components/events/OEventsApply.vue +46 -45
- package/src/components/events/OEventsCalendar.vue +21 -19
- package/src/components/events/OEventsList.vue +22 -20
- package/src/components/header/OHeader.vue +2 -2
- package/src/components/header/components/HeaderContent.vue +60 -60
- package/src/components/header/components/HeaderNav.vue +4 -4
- package/src/components/header/components/HeaderNavMobile.vue +3 -3
- package/src/components/meeting/OMeetingCalendar.vue +42 -39
- package/src/components/meeting/OMeetingForm.vue +32 -26
- package/src/components/meeting/{OMyMeetingCalendar.vue → OMeetingMyCalendar.vue} +97 -62
- package/src/components/meeting/OMeetingPlayback.vue +36 -12
- package/src/components/meeting/{OSigMeetingCalendar.vue → OMeetingSigCalendar.vue} +9 -6
- package/src/components/meeting/components/OMeetingCalendarList.vue +12 -12
- package/src/components/meeting/components/OMeetingCalendarSelector.vue +1 -1
- package/src/components/meeting/components/OMeetingDetail.vue +2 -2
- package/src/components/meeting/components/OMeetingPlaybackSubtitles.vue +11 -10
- package/src/components/meeting/components/OMeetingPlaybackVideo.vue +11 -11
- package/src/components/meeting/components/{OSigMeetingAside.vue → OMeetingSigAside.vue} +7 -7
- package/src/components/meeting/config.ts +1 -1
- package/src/components/meeting/index.ts +6 -6
- 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 +2 -2
- package/vite.config.ts +2 -2
- /package/dist/components/meeting/{OSigMeetingCalendar.vue.d.ts → OMeetingSigCalendar.vue.d.ts} +0 -0
- /package/dist/components/meeting/components/{OSigMeetingAside.vue.d.ts → OMeetingSigAside.vue.d.ts} +0 -0
|
@@ -402,11 +402,14 @@ const checkSelectedDay = (type: CalendarDataType, date: string) => {
|
|
|
402
402
|
</template>
|
|
403
403
|
<style lang="scss">
|
|
404
404
|
.o-meeting-calendar {
|
|
405
|
+
--meeting-card-radius: var(--o-radius-xs);
|
|
406
|
+
--meeting-input-radius: var(--o-radius-xs);
|
|
407
|
+
--meeting-cell-radius: var(--o-radius-xs);
|
|
405
408
|
|
|
406
409
|
.o-select {
|
|
407
410
|
flex-grow: 1;
|
|
408
411
|
max-width: 320px;
|
|
409
|
-
--select-radius: var(--
|
|
412
|
+
--select-radius: var(--meeting-input-radius);
|
|
410
413
|
}
|
|
411
414
|
|
|
412
415
|
.el-calendar-table {
|
|
@@ -417,10 +420,10 @@ const checkSelectedDay = (type: CalendarDataType, date: string) => {
|
|
|
417
420
|
|
|
418
421
|
.calendar-body {
|
|
419
422
|
display: flex;
|
|
420
|
-
border-radius: var(--
|
|
423
|
+
border-radius: var(--meeting-card-radius);
|
|
421
424
|
background-color: var(--o-color-fill2);
|
|
422
425
|
overflow: hidden;
|
|
423
|
-
@include respond
|
|
426
|
+
@include respond('<=pad_v') {
|
|
424
427
|
background-color: transparent;
|
|
425
428
|
flex-direction: column;
|
|
426
429
|
}
|
|
@@ -429,11 +432,11 @@ const checkSelectedDay = (type: CalendarDataType, date: string) => {
|
|
|
429
432
|
width: 56%;
|
|
430
433
|
--el-calendar-borde: none;
|
|
431
434
|
--el-calendar-selected-bg-color: none;
|
|
432
|
-
@include respond
|
|
435
|
+
@include respond('<=pad_v') {
|
|
433
436
|
width: 100%;
|
|
434
437
|
flex-direction: column;
|
|
435
438
|
background-color: var(--o-color-fill2);
|
|
436
|
-
border-radius: var(--
|
|
439
|
+
border-radius: var(--meeting-card-radius);
|
|
437
440
|
}
|
|
438
441
|
|
|
439
442
|
.el-calendar__header {
|
|
@@ -445,7 +448,7 @@ const checkSelectedDay = (type: CalendarDataType, date: string) => {
|
|
|
445
448
|
gap: var(--o-gap-6);
|
|
446
449
|
border-bottom: 1px solid var(--o-color-control4);
|
|
447
450
|
background: var(--o-color-fill2);
|
|
448
|
-
@include respond
|
|
451
|
+
@include respond('<=pad_v') {
|
|
449
452
|
justify-content: center;
|
|
450
453
|
border-bottom: none;
|
|
451
454
|
height: 52px;
|
|
@@ -459,7 +462,7 @@ const checkSelectedDay = (type: CalendarDataType, date: string) => {
|
|
|
459
462
|
|
|
460
463
|
.o-select {
|
|
461
464
|
max-width: 240px;
|
|
462
|
-
@include respond
|
|
465
|
+
@include respond('<=pad_v') {
|
|
463
466
|
display: none;
|
|
464
467
|
}
|
|
465
468
|
}
|
|
@@ -471,7 +474,7 @@ const checkSelectedDay = (type: CalendarDataType, date: string) => {
|
|
|
471
474
|
flex-shrink: 0;
|
|
472
475
|
color: var(--o-color-info1);
|
|
473
476
|
@include text2;
|
|
474
|
-
@include respond
|
|
477
|
+
@include respond('<=pad_v') {
|
|
475
478
|
@include h3;
|
|
476
479
|
}
|
|
477
480
|
|
|
@@ -492,7 +495,7 @@ const checkSelectedDay = (type: CalendarDataType, date: string) => {
|
|
|
492
495
|
color: var(--o-color-info2);
|
|
493
496
|
word-break: keep-all;
|
|
494
497
|
@include text2;
|
|
495
|
-
@include respond
|
|
498
|
+
@include respond('<=pad_v') {
|
|
496
499
|
display: none;
|
|
497
500
|
}
|
|
498
501
|
}
|
|
@@ -512,7 +515,7 @@ const checkSelectedDay = (type: CalendarDataType, date: string) => {
|
|
|
512
515
|
background: none;
|
|
513
516
|
border: none;
|
|
514
517
|
@include text1;
|
|
515
|
-
@include respond
|
|
518
|
+
@include respond('<=pad_v') {
|
|
516
519
|
padding: 0;
|
|
517
520
|
text-align: center;
|
|
518
521
|
}
|
|
@@ -536,7 +539,7 @@ const checkSelectedDay = (type: CalendarDataType, date: string) => {
|
|
|
536
539
|
}
|
|
537
540
|
}
|
|
538
541
|
|
|
539
|
-
@include respond
|
|
542
|
+
@include respond('<=pad_v') {
|
|
540
543
|
border: none;
|
|
541
544
|
padding: 0 16px 16px;
|
|
542
545
|
thead {
|
|
@@ -548,13 +551,13 @@ const checkSelectedDay = (type: CalendarDataType, date: string) => {
|
|
|
548
551
|
}
|
|
549
552
|
|
|
550
553
|
th:first-child {
|
|
551
|
-
border-top-left-radius: var(--
|
|
552
|
-
border-bottom-left-radius: var(--
|
|
554
|
+
border-top-left-radius: var(--meeting-cell-radius);
|
|
555
|
+
border-bottom-left-radius: var(--meeting-cell-radius);
|
|
553
556
|
}
|
|
554
557
|
|
|
555
558
|
th:last-child {
|
|
556
|
-
border-top-right-radius: var(--
|
|
557
|
-
border-bottom-right-radius: var(--
|
|
559
|
+
border-top-right-radius: var(--meeting-cell-radius);
|
|
560
|
+
border-bottom-right-radius: var(--meeting-cell-radius);
|
|
558
561
|
}
|
|
559
562
|
}
|
|
560
563
|
tr:last-child {
|
|
@@ -575,7 +578,7 @@ const checkSelectedDay = (type: CalendarDataType, date: string) => {
|
|
|
575
578
|
margin-bottom: var(--o-gap-2);
|
|
576
579
|
height: 64px;
|
|
577
580
|
color: var(--o-color-info1);
|
|
578
|
-
@include respond
|
|
581
|
+
@include respond('<=pad_v') {
|
|
579
582
|
display: flex;
|
|
580
583
|
justify-content: center;
|
|
581
584
|
padding: 0;
|
|
@@ -584,7 +587,7 @@ const checkSelectedDay = (type: CalendarDataType, date: string) => {
|
|
|
584
587
|
|
|
585
588
|
.out-box {
|
|
586
589
|
position: relative;
|
|
587
|
-
border-radius: var(--
|
|
590
|
+
border-radius: var(--meeting-cell-radius);
|
|
588
591
|
padding: 8px 12px;
|
|
589
592
|
width: 100%;
|
|
590
593
|
height: 100%;
|
|
@@ -593,7 +596,7 @@ const checkSelectedDay = (type: CalendarDataType, date: string) => {
|
|
|
593
596
|
@include tip1;
|
|
594
597
|
@include hover {
|
|
595
598
|
background-color: var(--o-color-control3-light);
|
|
596
|
-
@include respond
|
|
599
|
+
@include respond('<=pad_v') {
|
|
597
600
|
@include hover {
|
|
598
601
|
background-color: inherit;
|
|
599
602
|
border: 1px solid transparent;
|
|
@@ -624,7 +627,7 @@ const checkSelectedDay = (type: CalendarDataType, date: string) => {
|
|
|
624
627
|
font-size: 12px;
|
|
625
628
|
margin-left: -4px;
|
|
626
629
|
margin-top: 0;
|
|
627
|
-
@include respond
|
|
630
|
+
@include respond('<=pad_v') {
|
|
628
631
|
height: 6px;
|
|
629
632
|
width: 6px;
|
|
630
633
|
margin-left: -2px;
|
|
@@ -642,7 +645,7 @@ const checkSelectedDay = (type: CalendarDataType, date: string) => {
|
|
|
642
645
|
}
|
|
643
646
|
}
|
|
644
647
|
|
|
645
|
-
@include respond
|
|
648
|
+
@include respond('<=pad_v') {
|
|
646
649
|
background-color: transparent;
|
|
647
650
|
padding: 0;
|
|
648
651
|
margin: 6px 8px;
|
|
@@ -697,7 +700,7 @@ const checkSelectedDay = (type: CalendarDataType, date: string) => {
|
|
|
697
700
|
.out-box {
|
|
698
701
|
background-color: var(--o-color-control3-light);
|
|
699
702
|
border: 1px solid var(--o-color-primary1);
|
|
700
|
-
@include respond
|
|
703
|
+
@include respond('<=pad_v') {
|
|
701
704
|
background-color: transparent;
|
|
702
705
|
border: 1px solid transparent;
|
|
703
706
|
.date-calender {
|
|
@@ -709,7 +712,7 @@ const checkSelectedDay = (type: CalendarDataType, date: string) => {
|
|
|
709
712
|
height: 24px;
|
|
710
713
|
width: 40px;
|
|
711
714
|
background-color: var(--o-color-control3-light);
|
|
712
|
-
border-radius: var(--
|
|
715
|
+
border-radius: var(--meeting-cell-radius);
|
|
713
716
|
border: 1px solid var(--o-color-primary1);
|
|
714
717
|
}
|
|
715
718
|
}
|
|
@@ -734,7 +737,7 @@ const checkSelectedDay = (type: CalendarDataType, date: string) => {
|
|
|
734
737
|
border-radius: 50%;
|
|
735
738
|
}
|
|
736
739
|
|
|
737
|
-
@include respond
|
|
740
|
+
@include respond('<=pad_v') {
|
|
738
741
|
height: auto;
|
|
739
742
|
width: auto;
|
|
740
743
|
&::after {
|
|
@@ -745,7 +748,7 @@ const checkSelectedDay = (type: CalendarDataType, date: string) => {
|
|
|
745
748
|
transform: translate(-50%, -50%);
|
|
746
749
|
height: 24px;
|
|
747
750
|
width: 40px;
|
|
748
|
-
border-radius: var(--
|
|
751
|
+
border-radius: var(--meeting-cell-radius);
|
|
749
752
|
z-index: -1;
|
|
750
753
|
}
|
|
751
754
|
}
|
|
@@ -757,14 +760,14 @@ const checkSelectedDay = (type: CalendarDataType, date: string) => {
|
|
|
757
760
|
width: 44%;
|
|
758
761
|
|
|
759
762
|
|
|
760
|
-
@include respond
|
|
763
|
+
@include respond('<=pad_v') {
|
|
761
764
|
margin-top: 12px;
|
|
762
765
|
padding-top: 16px;
|
|
763
766
|
background-color: var(--o-color-fill2);
|
|
764
767
|
width: 100%;
|
|
765
|
-
border-radius: var(--
|
|
768
|
+
border-radius: var(--meeting-card-radius);
|
|
766
769
|
}
|
|
767
|
-
@include respond
|
|
770
|
+
@include respond('phone') {
|
|
768
771
|
|
|
769
772
|
margin-top: 16px;
|
|
770
773
|
padding-top: 12px;
|
|
@@ -772,15 +775,15 @@ const checkSelectedDay = (type: CalendarDataType, date: string) => {
|
|
|
772
775
|
|
|
773
776
|
.current-day {
|
|
774
777
|
color: var(--o-color-info2);
|
|
775
|
-
@include respond
|
|
778
|
+
@include respond('>pad_v') {
|
|
776
779
|
display: none;
|
|
777
780
|
}
|
|
778
|
-
@include respond
|
|
781
|
+
@include respond('<=pad_v') {
|
|
779
782
|
display: flex;
|
|
780
783
|
margin: 16px 16px 12px;
|
|
781
784
|
padding: 7px 12px;
|
|
782
785
|
justify-content: center;
|
|
783
|
-
border-radius: var(--
|
|
786
|
+
border-radius: var(--meeting-card-radius);
|
|
784
787
|
background-color: var(--o-color-control4-light);
|
|
785
788
|
@include text2;
|
|
786
789
|
}
|
|
@@ -794,14 +797,14 @@ const checkSelectedDay = (type: CalendarDataType, date: string) => {
|
|
|
794
797
|
position: relative;
|
|
795
798
|
height: 60px;
|
|
796
799
|
|
|
797
|
-
@include respond
|
|
800
|
+
@include respond('<=pad_v') {
|
|
798
801
|
justify-content: space-between;
|
|
799
802
|
padding: 0 16px;
|
|
800
803
|
gap: 24px;
|
|
801
804
|
height: auto;
|
|
802
805
|
align-items: flex-start;
|
|
803
806
|
}
|
|
804
|
-
@include respond
|
|
807
|
+
@include respond('phone') {
|
|
805
808
|
flex-direction: column;
|
|
806
809
|
align-items: center;
|
|
807
810
|
gap: 8px;
|
|
@@ -819,10 +822,10 @@ const checkSelectedDay = (type: CalendarDataType, date: string) => {
|
|
|
819
822
|
|
|
820
823
|
.o-select {
|
|
821
824
|
display: none;
|
|
822
|
-
@include respond
|
|
825
|
+
@include respond('<=pad_v') {
|
|
823
826
|
display: inline-flex;
|
|
824
827
|
}
|
|
825
|
-
@include respond
|
|
828
|
+
@include respond('phone') {
|
|
826
829
|
display: flex;
|
|
827
830
|
width: 100%;
|
|
828
831
|
max-width: 100%;
|
|
@@ -845,10 +848,10 @@ const checkSelectedDay = (type: CalendarDataType, date: string) => {
|
|
|
845
848
|
}
|
|
846
849
|
}
|
|
847
850
|
|
|
848
|
-
@include respond
|
|
851
|
+
@include respond('pad_v-laptop') {
|
|
849
852
|
--tab-nav-padding: 0 0 14px;
|
|
850
853
|
}
|
|
851
|
-
@include respond
|
|
854
|
+
@include respond('<=pad_v') {
|
|
852
855
|
border-bottom: none;
|
|
853
856
|
height: auto;
|
|
854
857
|
.o-icon {
|
|
@@ -862,7 +865,7 @@ const checkSelectedDay = (type: CalendarDataType, date: string) => {
|
|
|
862
865
|
}
|
|
863
866
|
}
|
|
864
867
|
}
|
|
865
|
-
@include respond
|
|
868
|
+
@include respond('phone') {
|
|
866
869
|
.o-tab-navs-wrap {
|
|
867
870
|
height: auto;
|
|
868
871
|
}
|
|
@@ -871,7 +874,7 @@ const checkSelectedDay = (type: CalendarDataType, date: string) => {
|
|
|
871
874
|
.o-tab-nav-anchor {
|
|
872
875
|
.o-tab-nav-anchor-line {
|
|
873
876
|
width: 100%;
|
|
874
|
-
@include respond
|
|
877
|
+
@include respond('<=pad_v') {
|
|
875
878
|
width: 16px;
|
|
876
879
|
}
|
|
877
880
|
}
|
|
@@ -881,7 +884,7 @@ const checkSelectedDay = (type: CalendarDataType, date: string) => {
|
|
|
881
884
|
|
|
882
885
|
.meeting-list {
|
|
883
886
|
height: var(--height);
|
|
884
|
-
@include respond
|
|
887
|
+
@include respond('<=pad_v') {
|
|
885
888
|
height: auto;
|
|
886
889
|
}
|
|
887
890
|
}
|
|
@@ -704,6 +704,9 @@ defineExpose({
|
|
|
704
704
|
|
|
705
705
|
<style lang="scss">
|
|
706
706
|
.o-meeting-form {
|
|
707
|
+
--meeting-card-radius: var(--o-radius-xs);
|
|
708
|
+
--meeting-input-radius: var(--o-radius-xs);
|
|
709
|
+
--meeting-cell-radius: var(--o-radius-xs);
|
|
707
710
|
.form-wrapper {
|
|
708
711
|
& > .o-form-item {
|
|
709
712
|
max-width: 592px;
|
|
@@ -733,7 +736,7 @@ defineExpose({
|
|
|
733
736
|
}
|
|
734
737
|
|
|
735
738
|
.o-textarea {
|
|
736
|
-
--_box-radius: var(--
|
|
739
|
+
--_box-radius: var(--meeting-input-radius);
|
|
737
740
|
}
|
|
738
741
|
|
|
739
742
|
input,
|
|
@@ -741,8 +744,17 @@ defineExpose({
|
|
|
741
744
|
color: var(--o-input-color);
|
|
742
745
|
@include text1;
|
|
743
746
|
|
|
747
|
+
@include respond('phone') {
|
|
748
|
+
@include text2;
|
|
749
|
+
}
|
|
750
|
+
|
|
744
751
|
&::placeholder {
|
|
745
752
|
color: var(--o-placeholder-color);
|
|
753
|
+
@include text1;
|
|
754
|
+
|
|
755
|
+
@include respond('phone') {
|
|
756
|
+
font-size: 14px !important;
|
|
757
|
+
}
|
|
746
758
|
}
|
|
747
759
|
}
|
|
748
760
|
|
|
@@ -760,7 +772,7 @@ defineExpose({
|
|
|
760
772
|
align-items: center;
|
|
761
773
|
--form-label-gap-top: 0;
|
|
762
774
|
color: var(--o-color-info2);
|
|
763
|
-
@include respond
|
|
775
|
+
@include respond('<=pad_v') {
|
|
764
776
|
height: fit-content;
|
|
765
777
|
@include text2;
|
|
766
778
|
}
|
|
@@ -774,13 +786,13 @@ defineExpose({
|
|
|
774
786
|
align-items: center;
|
|
775
787
|
|
|
776
788
|
.o-form-item-main-wrap {
|
|
777
|
-
@include respond
|
|
789
|
+
@include respond('<=pad_v') {
|
|
778
790
|
@include text2;
|
|
779
791
|
}
|
|
780
792
|
}
|
|
781
793
|
}
|
|
782
794
|
.record-item {
|
|
783
|
-
@include respond
|
|
795
|
+
@include respond('<=pad_v') {
|
|
784
796
|
display: flex;
|
|
785
797
|
align-items: center;
|
|
786
798
|
justify-content: space-between;
|
|
@@ -793,7 +805,7 @@ defineExpose({
|
|
|
793
805
|
}
|
|
794
806
|
|
|
795
807
|
.o-form-item-main {
|
|
796
|
-
@include respond
|
|
808
|
+
@include respond('<=pad_v') {
|
|
797
809
|
flex-grow: 0;
|
|
798
810
|
}
|
|
799
811
|
}
|
|
@@ -805,7 +817,7 @@ defineExpose({
|
|
|
805
817
|
column-gap: var(--o-gap-4);
|
|
806
818
|
row-gap: var(--o-gap-2);
|
|
807
819
|
|
|
808
|
-
@include respond
|
|
820
|
+
@include respond('<=pad_v') {
|
|
809
821
|
margin-bottom: var(--o-gap-3);
|
|
810
822
|
flex-direction: column;
|
|
811
823
|
align-items: flex-start;
|
|
@@ -854,11 +866,8 @@ defineExpose({
|
|
|
854
866
|
align-items: center;
|
|
855
867
|
|
|
856
868
|
.o-btn {
|
|
857
|
-
height: 40px !important;
|
|
858
|
-
font-size: 16px !important;
|
|
859
|
-
line-height: 24px !important;
|
|
860
|
-
border-radius: 20px !important;
|
|
861
869
|
--btn-min-width: 90px;
|
|
870
|
+
--btn-radius: calc(var(--btn-height) / 2);
|
|
862
871
|
}
|
|
863
872
|
}
|
|
864
873
|
|
|
@@ -867,7 +876,7 @@ defineExpose({
|
|
|
867
876
|
display: flex;
|
|
868
877
|
align-items: center;
|
|
869
878
|
border: 1px solid var(--o-color-control1);
|
|
870
|
-
border-radius: var(--
|
|
879
|
+
border-radius: var(--meeting-card-radius);
|
|
871
880
|
padding: 0 15px;
|
|
872
881
|
background-color: var(--o-color-fill2);
|
|
873
882
|
|
|
@@ -879,7 +888,7 @@ defineExpose({
|
|
|
879
888
|
border-color: var(--o-color-primary2);
|
|
880
889
|
}
|
|
881
890
|
|
|
882
|
-
@include respond
|
|
891
|
+
@include respond('phone') {
|
|
883
892
|
background-color: var(--o-color-fill2);
|
|
884
893
|
}
|
|
885
894
|
|
|
@@ -899,9 +908,6 @@ defineExpose({
|
|
|
899
908
|
gap: 0;
|
|
900
909
|
}
|
|
901
910
|
|
|
902
|
-
.el-select__placeholder {
|
|
903
|
-
@include text1;
|
|
904
|
-
}
|
|
905
911
|
|
|
906
912
|
.el-select__caret,
|
|
907
913
|
.el-input__prefix-icon {
|
|
@@ -910,7 +916,7 @@ defineExpose({
|
|
|
910
916
|
|
|
911
917
|
div.o-form-item-main {
|
|
912
918
|
margin-left: 0;
|
|
913
|
-
@include respond
|
|
919
|
+
@include respond('phone') {
|
|
914
920
|
margin-top: 0;
|
|
915
921
|
}
|
|
916
922
|
}
|
|
@@ -923,7 +929,7 @@ defineExpose({
|
|
|
923
929
|
}
|
|
924
930
|
}
|
|
925
931
|
|
|
926
|
-
@include respond
|
|
932
|
+
@include respond('phone') {
|
|
927
933
|
width: auto;
|
|
928
934
|
.o-form {
|
|
929
935
|
.o-form-item-main {
|
|
@@ -944,10 +950,10 @@ defineExpose({
|
|
|
944
950
|
margin-left: 0;
|
|
945
951
|
}
|
|
946
952
|
|
|
947
|
-
@include respond
|
|
953
|
+
@include respond('pad_v') {
|
|
948
954
|
margin-bottom: var(--o-gap-4);
|
|
949
955
|
}
|
|
950
|
-
@include respond
|
|
956
|
+
@include respond('phone') {
|
|
951
957
|
margin-bottom: var(--o-gap-3);
|
|
952
958
|
}
|
|
953
959
|
}
|
|
@@ -955,8 +961,8 @@ defineExpose({
|
|
|
955
961
|
.repeat-config {
|
|
956
962
|
background-color: color-mix(in srgb, var(--o-color-control2-light) 40%, transparent);
|
|
957
963
|
padding: var(--o-gap-5);
|
|
958
|
-
border-radius: var(--
|
|
959
|
-
@include respond
|
|
964
|
+
border-radius: var(--meeting-card-radius);
|
|
965
|
+
@include respond('<=pad_v') {
|
|
960
966
|
padding: var(--o-gap-4);
|
|
961
967
|
}
|
|
962
968
|
|
|
@@ -974,10 +980,10 @@ defineExpose({
|
|
|
974
980
|
|
|
975
981
|
.o-form-item-main {
|
|
976
982
|
margin-left: var(--o-gap-6);
|
|
977
|
-
@include respond
|
|
983
|
+
@include respond('pad_v') {
|
|
978
984
|
margin-left: 0;
|
|
979
985
|
}
|
|
980
|
-
@include respond
|
|
986
|
+
@include respond('phone') {
|
|
981
987
|
margin-left: 0;
|
|
982
988
|
max-width: 100%;
|
|
983
989
|
}
|
|
@@ -1025,8 +1031,8 @@ defineExpose({
|
|
|
1025
1031
|
--el-color-primary: var(--o-color-primary1);
|
|
1026
1032
|
--el-datepicker-active-color: var(--o-color-primary1);
|
|
1027
1033
|
--el-fill-color-light: var(--o-color-control2-light);
|
|
1028
|
-
--el-input-bg-color: var(--o-color-
|
|
1029
|
-
--el-fill-color-blank: var(--o-color-
|
|
1034
|
+
--el-input-bg-color: var(--o-color-control5-light);
|
|
1035
|
+
--el-fill-color-blank: var(--o-color-control5-light);
|
|
1030
1036
|
}
|
|
1031
1037
|
|
|
1032
1038
|
.o-meeting-form-popover-content {
|
|
@@ -1051,7 +1057,7 @@ defineExpose({
|
|
|
1051
1057
|
}
|
|
1052
1058
|
|
|
1053
1059
|
.o-meeting-form-date-picker-popper {
|
|
1054
|
-
@include respond
|
|
1060
|
+
@include respond('phone') {
|
|
1055
1061
|
.el-picker-panel {
|
|
1056
1062
|
width: min(var(--grid-content-width), 400px);
|
|
1057
1063
|
|