@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
|
@@ -165,8 +165,8 @@ const computedList = computed<any[]>(() => {
|
|
|
165
165
|
<div class="meet-title" :title="item.topic || item.name">
|
|
166
166
|
<OIcon
|
|
167
167
|
:style="{
|
|
168
|
-
|
|
169
|
-
|
|
168
|
+
backgroundColor: `${getConfig(item.type, 'color')}`
|
|
169
|
+
}"
|
|
170
170
|
>
|
|
171
171
|
<component :is="getConfig(item.type, 'icon')" />
|
|
172
172
|
</OIcon>
|
|
@@ -251,13 +251,13 @@ const computedList = computed<any[]>(() => {
|
|
|
251
251
|
.o-collapse {
|
|
252
252
|
--icon-size2: 24px;
|
|
253
253
|
--icon-right: 12px;
|
|
254
|
-
@include respond
|
|
254
|
+
@include respond('<=pad') {
|
|
255
255
|
--icon-size2: 20px;
|
|
256
256
|
}
|
|
257
|
-
@include respond
|
|
257
|
+
@include respond('<=pad_v') {
|
|
258
258
|
--icon-right: 8px;
|
|
259
259
|
}
|
|
260
|
-
@include respond
|
|
260
|
+
@include respond('phone') {
|
|
261
261
|
--icon-right: 4px;
|
|
262
262
|
}
|
|
263
263
|
|
|
@@ -285,7 +285,7 @@ const computedList = computed<any[]>(() => {
|
|
|
285
285
|
color: var(--o-color-primary1);
|
|
286
286
|
}
|
|
287
287
|
}
|
|
288
|
-
@include respond
|
|
288
|
+
@include respond('<=pad_v') {
|
|
289
289
|
&::after {
|
|
290
290
|
width: calc(100% - 2 * 16px);
|
|
291
291
|
}
|
|
@@ -320,7 +320,7 @@ const computedList = computed<any[]>(() => {
|
|
|
320
320
|
padding: var(--o-gap-4) var(--o-gap-5);
|
|
321
321
|
position: relative;
|
|
322
322
|
|
|
323
|
-
@include respond
|
|
323
|
+
@include respond('>pad_v') {
|
|
324
324
|
&:hover {
|
|
325
325
|
.o-collapse-item-title {
|
|
326
326
|
.copy-icon {
|
|
@@ -330,7 +330,7 @@ const computedList = computed<any[]>(() => {
|
|
|
330
330
|
}
|
|
331
331
|
}
|
|
332
332
|
}
|
|
333
|
-
@include respond
|
|
333
|
+
@include respond('<=pad_v') {
|
|
334
334
|
padding: 12px 16px;
|
|
335
335
|
}
|
|
336
336
|
|
|
@@ -389,14 +389,14 @@ const computedList = computed<any[]>(() => {
|
|
|
389
389
|
flex-direction: column;
|
|
390
390
|
background-color: color-mix(in srgb, var(--o-color-control2-light) 40%, transparent);
|
|
391
391
|
padding: 16px 16px 16px calc(var(--icon-right) + var(--icon-size2) + var(--o-gap-5) - 12px);
|
|
392
|
-
border-radius: var(--
|
|
392
|
+
border-radius: var(--meeting-card-radius);
|
|
393
393
|
@include tip1;
|
|
394
394
|
|
|
395
|
-
@include respond
|
|
395
|
+
@include respond('<=pad_v') {
|
|
396
396
|
padding: 16px 16px 16px calc(var(--icon-right) + var(--icon-size2) + 16px - 12px);
|
|
397
397
|
|
|
398
398
|
}
|
|
399
|
-
@include respond
|
|
399
|
+
@include respond('phone') {
|
|
400
400
|
padding: 12px 16px;
|
|
401
401
|
}
|
|
402
402
|
|
|
@@ -446,7 +446,7 @@ const computedList = computed<any[]>(() => {
|
|
|
446
446
|
color: var(--o-color-info2);
|
|
447
447
|
@include text2;
|
|
448
448
|
|
|
449
|
-
@include respond
|
|
449
|
+
@include respond('<=pad_v') {
|
|
450
450
|
@include h3;
|
|
451
451
|
}
|
|
452
452
|
|
|
@@ -173,7 +173,7 @@ const removeTag = (val: number) => {
|
|
|
173
173
|
justify-content: center;
|
|
174
174
|
background-color: var(--o-color-fill2);
|
|
175
175
|
color: var(--o-color-info1);
|
|
176
|
-
border-radius: var(--
|
|
176
|
+
border-radius: var(--meeting-cell-radius);
|
|
177
177
|
|
|
178
178
|
&:hover,
|
|
179
179
|
&.is-checked {
|
|
@@ -156,7 +156,7 @@ defineExpose({ copyInfo });
|
|
|
156
156
|
font-size: 14px;
|
|
157
157
|
gap: var(--o-gap-5);
|
|
158
158
|
|
|
159
|
-
@include respond
|
|
159
|
+
@include respond('<=pad_v') {
|
|
160
160
|
font-size: 12px;
|
|
161
161
|
gap: var(--o-gap-2);
|
|
162
162
|
}
|
|
@@ -233,7 +233,7 @@ defineExpose({ copyInfo });
|
|
|
233
233
|
justify-content: flex-end;
|
|
234
234
|
gap: var(--o-gap-2);
|
|
235
235
|
|
|
236
|
-
@include respond
|
|
236
|
+
@include respond('phone') {
|
|
237
237
|
border-top: 1px solid var(--o-color-control4);
|
|
238
238
|
padding-top: var(--o-gap-2);
|
|
239
239
|
position: static;
|
|
@@ -363,7 +363,7 @@ watch(
|
|
|
363
363
|
height: 100%;
|
|
364
364
|
min-height: calc(var(--layout-content-min-height) - 104px);
|
|
365
365
|
background-color: var(--o-color-fill2);
|
|
366
|
-
border-radius: var(--
|
|
366
|
+
border-radius: var(--meeting-card-radius);
|
|
367
367
|
|
|
368
368
|
.search-captions {
|
|
369
369
|
display: flex;
|
|
@@ -371,8 +371,8 @@ watch(
|
|
|
371
371
|
gap: var(--o-gap-4);
|
|
372
372
|
|
|
373
373
|
.input-captions {
|
|
374
|
-
--input-radius: var(--
|
|
375
|
-
--_box-radius: var(--
|
|
374
|
+
--input-radius: var(--meeting-input-radius);
|
|
375
|
+
--_box-radius: var(--meeting-input-radius);
|
|
376
376
|
flex-grow: 1;
|
|
377
377
|
|
|
378
378
|
.o-icon {
|
|
@@ -443,6 +443,7 @@ watch(
|
|
|
443
443
|
.o-tab {
|
|
444
444
|
margin-top: var(--o-gap-5);
|
|
445
445
|
height: calc(100% - 64px);
|
|
446
|
+
--tab-nav-justify: flex-start;
|
|
446
447
|
|
|
447
448
|
.o-tab-navs {
|
|
448
449
|
justify-content: flex-start;
|
|
@@ -456,7 +457,7 @@ watch(
|
|
|
456
457
|
height: calc(100% - var(--o-line_height-text2) - var(--o-gap-4));
|
|
457
458
|
.o-tab-pane {
|
|
458
459
|
height: 100%;
|
|
459
|
-
padding-top: var(--o-gap-
|
|
460
|
+
padding-top: var(--o-gap-5);
|
|
460
461
|
|
|
461
462
|
.o-scroller {
|
|
462
463
|
height: 100%;
|
|
@@ -475,7 +476,7 @@ watch(
|
|
|
475
476
|
|
|
476
477
|
.captions-tab {
|
|
477
478
|
.captions-scroller {
|
|
478
|
-
@include respond
|
|
479
|
+
@include respond('<=pad_v') {
|
|
479
480
|
max-height: 600px;
|
|
480
481
|
}
|
|
481
482
|
}
|
|
@@ -483,7 +484,7 @@ watch(
|
|
|
483
484
|
.captions-item {
|
|
484
485
|
padding: 4px 8px;
|
|
485
486
|
cursor: pointer;
|
|
486
|
-
border-radius: var(--
|
|
487
|
+
border-radius: var(--meeting-cell-radius);
|
|
487
488
|
@include hover {
|
|
488
489
|
background-color: rgba(var(--o-blue-6), 0.1);
|
|
489
490
|
}
|
|
@@ -500,7 +501,7 @@ watch(
|
|
|
500
501
|
width: 18px;
|
|
501
502
|
height: 18px;
|
|
502
503
|
border-radius: 50%;
|
|
503
|
-
background-color: var(--o-color-
|
|
504
|
+
background-color: var(--o-color-primary1);
|
|
504
505
|
color: var(--o-color-info1-inverse);
|
|
505
506
|
display: flex;
|
|
506
507
|
justify-content: center;
|
|
@@ -509,13 +510,13 @@ watch(
|
|
|
509
510
|
}
|
|
510
511
|
|
|
511
512
|
.speaker {
|
|
512
|
-
color: var(--o-color-
|
|
513
|
+
color: var(--o-color-info3);
|
|
513
514
|
margin-left: 4px;
|
|
514
515
|
@include tip2;
|
|
515
516
|
}
|
|
516
517
|
|
|
517
518
|
.start-time {
|
|
518
|
-
color: var(--o-color-
|
|
519
|
+
color: var(--o-color-info3);
|
|
519
520
|
margin-left: 16px;
|
|
520
521
|
@include tip2;
|
|
521
522
|
}
|
|
@@ -534,7 +535,7 @@ watch(
|
|
|
534
535
|
.text {
|
|
535
536
|
color: var(--o-color-info2);
|
|
536
537
|
margin-top: 8px;
|
|
537
|
-
@include
|
|
538
|
+
@include text1;
|
|
538
539
|
|
|
539
540
|
.light-keyword {
|
|
540
541
|
background-color: rgba(var(--o-blue-6), 0.2);
|
|
@@ -264,7 +264,7 @@ defineExpose({
|
|
|
264
264
|
min-height: calc(var(--layout-content-min-height) - 104px);
|
|
265
265
|
background-color: var(--o-color-fill2);
|
|
266
266
|
position: relative;
|
|
267
|
-
border-radius: var(--
|
|
267
|
+
border-radius: var(--meeting-card-radius);
|
|
268
268
|
overflow: hidden;
|
|
269
269
|
|
|
270
270
|
.video-placeholder {
|
|
@@ -443,7 +443,7 @@ defineExpose({
|
|
|
443
443
|
width: calc(100% + 5em);
|
|
444
444
|
max-height: 22em;
|
|
445
445
|
padding: 8px 16px;
|
|
446
|
-
border-radius: var(--
|
|
446
|
+
border-radius: var(--meeting-cell-radius);
|
|
447
447
|
margin-left: -2.5em;
|
|
448
448
|
background-color: var(--o-color-info2);
|
|
449
449
|
box-shadow: 0 3px 9px 0 rgba(var(--o-kleinblue-10), 0.08);
|
|
@@ -509,7 +509,7 @@ defineExpose({
|
|
|
509
509
|
input {
|
|
510
510
|
order: 1;
|
|
511
511
|
margin-right: 12px;
|
|
512
|
-
border-radius:
|
|
512
|
+
border-radius: var(--meeting-input-radius);
|
|
513
513
|
cursor: inherit;
|
|
514
514
|
position: relative;
|
|
515
515
|
top: -1px;
|
|
@@ -598,7 +598,7 @@ defineExpose({
|
|
|
598
598
|
}
|
|
599
599
|
|
|
600
600
|
.vjs-volume-control {
|
|
601
|
-
border-radius: var(--
|
|
601
|
+
border-radius: var(--meeting-cell-radius);
|
|
602
602
|
background-color: var(--o-color-info2);
|
|
603
603
|
box-shadow: 0 3px 9px 0 rgba(var(--o-kleinblue-10), 0.08);
|
|
604
604
|
backdrop-filter: blur(13.59);
|
|
@@ -647,17 +647,17 @@ defineExpose({
|
|
|
647
647
|
left: 0;
|
|
648
648
|
|
|
649
649
|
div {
|
|
650
|
-
border-radius:
|
|
650
|
+
border-radius: var(--meeting-cell-radius);
|
|
651
651
|
}
|
|
652
652
|
|
|
653
653
|
.vjs-progress-holder {
|
|
654
654
|
margin: 0;
|
|
655
|
-
background: rgba(var(--o-
|
|
655
|
+
background: rgba(var(--o-grey-1), 0.3);
|
|
656
656
|
}
|
|
657
657
|
|
|
658
658
|
.vjs-load-progress {
|
|
659
659
|
div {
|
|
660
|
-
background: rgba(var(--o-
|
|
660
|
+
background: rgba(var(--o-grey-1), 0.5);
|
|
661
661
|
}
|
|
662
662
|
}
|
|
663
663
|
|
|
@@ -692,7 +692,7 @@ defineExpose({
|
|
|
692
692
|
width: fit-content !important;
|
|
693
693
|
color: var(--o-color-info1-inverse) !important;
|
|
694
694
|
background-color: rgba(0, 0, 0, 0.4) !important;
|
|
695
|
-
border-radius: var(--
|
|
695
|
+
border-radius: var(--meeting-cell-radius);
|
|
696
696
|
display: block !important;
|
|
697
697
|
padding: var(--o-gap-1) var(--o-gap-4);
|
|
698
698
|
@include tip1;
|
|
@@ -724,7 +724,7 @@ defineExpose({
|
|
|
724
724
|
background-repeat: no-repeat;
|
|
725
725
|
background-size: cover;
|
|
726
726
|
border: 0.5px solid rgba(var(--o-white), 0.6);
|
|
727
|
-
background-color: rgba(var(--o-
|
|
727
|
+
background-color: rgba(var(--o-grey-1), 0.2);
|
|
728
728
|
|
|
729
729
|
.vjs-icon-placeholder::before {
|
|
730
730
|
content: none;
|
|
@@ -733,8 +733,8 @@ defineExpose({
|
|
|
733
733
|
|
|
734
734
|
@include hover {
|
|
735
735
|
.vjs-big-play-button {
|
|
736
|
-
border: 0.5px solid rgba(var(--o-
|
|
737
|
-
background-color: rgba(var(--o-
|
|
736
|
+
border: 0.5px solid rgba(var(--o-grey-1), 0.6);
|
|
737
|
+
background-color: rgba(var(--o-grey-1), 0.2);
|
|
738
738
|
}
|
|
739
739
|
}
|
|
740
740
|
}
|
|
@@ -84,17 +84,17 @@ const changeMonth = (step: number) => {
|
|
|
84
84
|
display: flex;
|
|
85
85
|
flex-direction: column;
|
|
86
86
|
border-right: 1px solid var(--o-color-control4);
|
|
87
|
-
@include respond
|
|
87
|
+
@include respond('<=pad') {
|
|
88
88
|
padding: var(--o-gap-4);
|
|
89
89
|
border-right: none;
|
|
90
90
|
}
|
|
91
|
-
@include respond
|
|
91
|
+
@include respond('phone') {
|
|
92
92
|
padding: 16px;
|
|
93
93
|
.title {
|
|
94
94
|
margin-bottom: var(--o-gap-2);
|
|
95
95
|
}
|
|
96
96
|
}
|
|
97
|
-
@include respond
|
|
97
|
+
@include respond('<=pad_v') {
|
|
98
98
|
width: 100%;
|
|
99
99
|
}
|
|
100
100
|
|
|
@@ -112,13 +112,13 @@ const changeMonth = (step: number) => {
|
|
|
112
112
|
display: grid;
|
|
113
113
|
grid-template-columns: repeat(2, 1fr);
|
|
114
114
|
|
|
115
|
-
@include respond
|
|
115
|
+
@include respond('<=pad_v') {
|
|
116
116
|
display: flex;
|
|
117
117
|
}
|
|
118
118
|
|
|
119
119
|
.day-item {
|
|
120
120
|
height: 64px;
|
|
121
|
-
border-radius:
|
|
121
|
+
border-radius: var(--meeting-cell-radius);
|
|
122
122
|
background-color: var(--o-color-control2-light);
|
|
123
123
|
padding: 8px 12px;
|
|
124
124
|
cursor: pointer;
|
|
@@ -185,11 +185,11 @@ const changeMonth = (step: number) => {
|
|
|
185
185
|
}
|
|
186
186
|
}
|
|
187
187
|
|
|
188
|
-
@include respond
|
|
188
|
+
@include respond('<=pad_v') {
|
|
189
189
|
.day-item {
|
|
190
190
|
}
|
|
191
191
|
}
|
|
192
|
-
@include respond
|
|
192
|
+
@include respond('<=pad_v') {
|
|
193
193
|
.day-item {
|
|
194
194
|
width: min(128px, calc((100% - var(--o-gap-2)) / 2));
|
|
195
195
|
}
|
|
@@ -7,7 +7,7 @@ import IconSummit from '~icons/meeting/icon-summit.svg';
|
|
|
7
7
|
export const TYPE_COLOR_MAP = {
|
|
8
8
|
summit: 'rgba(var(--o-orange-6))',
|
|
9
9
|
events: 'rgba(var(--o-cyan-6))',
|
|
10
|
-
meeting: 'rgba(var(--o-
|
|
10
|
+
meeting: 'rgba(var(--o-deepblue-6))',
|
|
11
11
|
};
|
|
12
12
|
|
|
13
13
|
export const INTERVAL_DAY = 0;
|
|
@@ -2,8 +2,8 @@ import type { App } from 'vue';
|
|
|
2
2
|
import _OMeetingCalendar from './OMeetingCalendar.vue';
|
|
3
3
|
import _OMeetingForm from './OMeetingForm.vue';
|
|
4
4
|
import _OMeetingPlayback from './OMeetingPlayback.vue';
|
|
5
|
-
import
|
|
6
|
-
import
|
|
5
|
+
import _OMeetingSigCalendar from './OMeetingSigCalendar.vue';
|
|
6
|
+
import _OMeetingMyCalendar from './OMeetingMyCalendar.vue';
|
|
7
7
|
|
|
8
8
|
const OMeetingCalendar = Object.assign(_OMeetingCalendar, {
|
|
9
9
|
install(app: App) {
|
|
@@ -22,15 +22,15 @@ const OMeetingPlayback = Object.assign(_OMeetingPlayback, {
|
|
|
22
22
|
},
|
|
23
23
|
});
|
|
24
24
|
|
|
25
|
-
const OSigMeetingCalendar = Object.assign(
|
|
25
|
+
const OSigMeetingCalendar = Object.assign(_OMeetingSigCalendar, {
|
|
26
26
|
install(app: App) {
|
|
27
|
-
app.component('OSigMeetingCalendar',
|
|
27
|
+
app.component('OSigMeetingCalendar', _OMeetingMyCalendar);
|
|
28
28
|
},
|
|
29
29
|
});
|
|
30
30
|
|
|
31
|
-
const OMyMeetingCalendar = Object.assign(
|
|
31
|
+
const OMyMeetingCalendar = Object.assign(_OMeetingSigCalendar, {
|
|
32
32
|
install(app: App) {
|
|
33
|
-
app.component('OMyMeetingCalendar',
|
|
33
|
+
app.component('OMyMeetingCalendar', _OMeetingMyCalendar);
|
|
34
34
|
},
|
|
35
35
|
});
|
|
36
36
|
|
package/src/draft/Banner.vue
CHANGED
|
@@ -128,7 +128,7 @@ onMounted(() => {
|
|
|
128
128
|
}
|
|
129
129
|
}
|
|
130
130
|
|
|
131
|
-
@include respond
|
|
131
|
+
@include respond('pad_h') {
|
|
132
132
|
height: 180px;
|
|
133
133
|
|
|
134
134
|
.banner-title {
|
|
@@ -141,7 +141,7 @@ onMounted(() => {
|
|
|
141
141
|
}
|
|
142
142
|
}
|
|
143
143
|
|
|
144
|
-
@include respond
|
|
144
|
+
@include respond('<=pad_v') {
|
|
145
145
|
display: none;
|
|
146
146
|
}
|
|
147
147
|
}
|
|
@@ -176,7 +176,7 @@ onMounted(() => {
|
|
|
176
176
|
}
|
|
177
177
|
}
|
|
178
178
|
|
|
179
|
-
@include respond
|
|
179
|
+
@include respond('pad_h') {
|
|
180
180
|
height: 220px;
|
|
181
181
|
|
|
182
182
|
.banner-title {
|
|
@@ -189,7 +189,7 @@ onMounted(() => {
|
|
|
189
189
|
}
|
|
190
190
|
}
|
|
191
191
|
|
|
192
|
-
@include respond
|
|
192
|
+
@include respond('<=pad_v') {
|
|
193
193
|
height: 120px;
|
|
194
194
|
|
|
195
195
|
.banner-title {
|
|
@@ -234,7 +234,7 @@ onMounted(() => {
|
|
|
234
234
|
}
|
|
235
235
|
}
|
|
236
236
|
|
|
237
|
-
@include respond
|
|
237
|
+
@include respond('pad_h') {
|
|
238
238
|
height: 320px;
|
|
239
239
|
|
|
240
240
|
.banner-title {
|
|
@@ -247,7 +247,7 @@ onMounted(() => {
|
|
|
247
247
|
}
|
|
248
248
|
}
|
|
249
249
|
|
|
250
|
-
@include respond
|
|
250
|
+
@include respond('<=pad_v') {
|
|
251
251
|
height: 184px;
|
|
252
252
|
|
|
253
253
|
.banner-title {
|
|
@@ -96,7 +96,7 @@ const getAction = (action: OperationAction) => {
|
|
|
96
96
|
margin-left: var(--grid-column-gutter);
|
|
97
97
|
}
|
|
98
98
|
|
|
99
|
-
@include respond
|
|
99
|
+
@include respond("phone") {
|
|
100
100
|
--card-header-text-size: 16px;
|
|
101
101
|
--card-header-text-height: 24px;
|
|
102
102
|
--card-content-text-size: 14px;
|
package/src/draft/Feature.vue
CHANGED
|
@@ -37,7 +37,7 @@ const props = defineProps<{
|
|
|
37
37
|
row-gap: var(--o3-gap-7);
|
|
38
38
|
border-radius: var(--o3-radius-l);
|
|
39
39
|
|
|
40
|
-
|
|
40
|
+
@include respond('phone') {
|
|
41
41
|
gap: 0;
|
|
42
42
|
display: flex;
|
|
43
43
|
white-space: nowrap;
|
|
@@ -62,7 +62,7 @@ const props = defineProps<{
|
|
|
62
62
|
background-color: rgba(0, 0, 0, 0.1);
|
|
63
63
|
width: 1px;
|
|
64
64
|
|
|
65
|
-
|
|
65
|
+
@include respond('<=pad_v') {
|
|
66
66
|
top: 16px;
|
|
67
67
|
height: 36px;
|
|
68
68
|
}
|
|
@@ -79,13 +79,13 @@ const props = defineProps<{
|
|
|
79
79
|
.feature-content {
|
|
80
80
|
max-width: 288px;
|
|
81
81
|
|
|
82
|
-
|
|
82
|
+
@include respond('<=laptop') {
|
|
83
83
|
max-width: 252px;
|
|
84
84
|
}
|
|
85
85
|
}
|
|
86
86
|
}
|
|
87
87
|
|
|
88
|
-
|
|
88
|
+
@include respond('phone') {
|
|
89
89
|
&::after {
|
|
90
90
|
display: none;
|
|
91
91
|
}
|
|
@@ -98,7 +98,7 @@ const props = defineProps<{
|
|
|
98
98
|
display: inline-block;
|
|
99
99
|
max-width: 320px;
|
|
100
100
|
|
|
101
|
-
|
|
101
|
+
@include respond('phone') {
|
|
102
102
|
flex: 0 0 auto;
|
|
103
103
|
width: 25vw;
|
|
104
104
|
padding: 0 24px;
|
|
@@ -117,7 +117,7 @@ const props = defineProps<{
|
|
|
117
117
|
margin-bottom: var(--o3-gap-2);
|
|
118
118
|
color: var(--o-color-info1);
|
|
119
119
|
|
|
120
|
-
|
|
120
|
+
@include respond('phone') {
|
|
121
121
|
white-space: pre-wrap;
|
|
122
122
|
|
|
123
123
|
@include tip2;
|
package/src/draft/Footer.vue
CHANGED
|
@@ -176,7 +176,7 @@ $color: #fff;
|
|
|
176
176
|
.atom-logo {
|
|
177
177
|
height: 32px;
|
|
178
178
|
margin-top: 12px;
|
|
179
|
-
@include respond
|
|
179
|
+
@include respond('<=pad_v') {
|
|
180
180
|
margin-top: 16px;
|
|
181
181
|
height: 30px;
|
|
182
182
|
}
|
|
@@ -186,7 +186,7 @@ $color: #fff;
|
|
|
186
186
|
.footer-content {
|
|
187
187
|
@include tip1;
|
|
188
188
|
background: url('@/assets/category/footer/footer-bg.png') no-repeat bottom center;
|
|
189
|
-
@include respond
|
|
189
|
+
@include respond('<=pad_v') {
|
|
190
190
|
background: url('@/assets/category/footer/footer-bg-mo.png') no-repeat bottom center;
|
|
191
191
|
}
|
|
192
192
|
.quick-nav {
|
|
@@ -194,7 +194,7 @@ $color: #fff;
|
|
|
194
194
|
display: flex;
|
|
195
195
|
justify-content: space-between;
|
|
196
196
|
max-width: 1140px;
|
|
197
|
-
@include respond
|
|
197
|
+
@include respond('<=pad_v') {
|
|
198
198
|
display: none;
|
|
199
199
|
}
|
|
200
200
|
.category {
|
|
@@ -229,7 +229,7 @@ $color: #fff;
|
|
|
229
229
|
@include tip2;
|
|
230
230
|
//TODO: 颜色变量
|
|
231
231
|
border-bottom: 1px solid rgba(229, 229, 229, 0.12);
|
|
232
|
-
@include respond
|
|
232
|
+
@include respond('<=pad_v') {
|
|
233
233
|
flex-direction: column;
|
|
234
234
|
padding-bottom: 16px;
|
|
235
235
|
.friendship-link-box {
|
|
@@ -239,7 +239,7 @@ $color: #fff;
|
|
|
239
239
|
.friendship-link-title {
|
|
240
240
|
color: var(--o-color-white);
|
|
241
241
|
margin-right: 38px;
|
|
242
|
-
@include respond
|
|
242
|
+
@include respond('<=pad') {
|
|
243
243
|
margin-right: 24px;
|
|
244
244
|
min-width: 48px;
|
|
245
245
|
}
|
|
@@ -248,7 +248,7 @@ $color: #fff;
|
|
|
248
248
|
white-space: nowrap;
|
|
249
249
|
&:not(:last-of-type) {
|
|
250
250
|
margin-right: 24px;
|
|
251
|
-
@include respond
|
|
251
|
+
@include respond('<=pad') {
|
|
252
252
|
margin-right: 12px;
|
|
253
253
|
}
|
|
254
254
|
}
|
|
@@ -264,7 +264,7 @@ $color: #fff;
|
|
|
264
264
|
justify-content: space-between;
|
|
265
265
|
padding: 8px 0 32px;
|
|
266
266
|
position: relative;
|
|
267
|
-
@include respond
|
|
267
|
+
@include respond('<=pad_v') {
|
|
268
268
|
margin: 0 auto;
|
|
269
269
|
padding: 12px 0 24px;
|
|
270
270
|
flex-direction: column;
|
|
@@ -284,7 +284,8 @@ $color: #fff;
|
|
|
284
284
|
.show-mo {
|
|
285
285
|
display: none;
|
|
286
286
|
}
|
|
287
|
-
|
|
287
|
+
|
|
288
|
+
@include respond('<=pad_v') {
|
|
288
289
|
text-align: center;
|
|
289
290
|
margin: 16px 0;
|
|
290
291
|
.show-pc {
|
|
@@ -306,11 +307,11 @@ $color: #fff;
|
|
|
306
307
|
display: flex;
|
|
307
308
|
gap: var(--o-gap-2);
|
|
308
309
|
|
|
309
|
-
@include respond
|
|
310
|
+
@include respond('<=pad') {
|
|
310
311
|
flex-direction: column;
|
|
311
312
|
gap: 6px;
|
|
312
313
|
}
|
|
313
|
-
@include respond
|
|
314
|
+
@include respond('<=pad_v') {
|
|
314
315
|
margin-top: 4px;
|
|
315
316
|
gap: 4px;
|
|
316
317
|
}
|
|
@@ -338,7 +339,8 @@ $color: #fff;
|
|
|
338
339
|
span {
|
|
339
340
|
color: rgba(255, 255, 255, 0.6);
|
|
340
341
|
}
|
|
341
|
-
|
|
342
|
+
|
|
343
|
+
@include respond('<=pad_v') {
|
|
342
344
|
margin-top: 4px;
|
|
343
345
|
}
|
|
344
346
|
}
|
|
@@ -353,7 +355,8 @@ $color: #fff;
|
|
|
353
355
|
.footer-option-item {
|
|
354
356
|
align-items: center;
|
|
355
357
|
}
|
|
356
|
-
|
|
358
|
+
|
|
359
|
+
@include respond('<=pad_v') {
|
|
357
360
|
order: -1;
|
|
358
361
|
}
|
|
359
362
|
}
|
|
@@ -400,7 +403,8 @@ $color: #fff;
|
|
|
400
403
|
transform: translateX(-50%);
|
|
401
404
|
display: block;
|
|
402
405
|
}
|
|
403
|
-
|
|
406
|
+
|
|
407
|
+
@include respond('<=pad_v') {
|
|
404
408
|
display: block;
|
|
405
409
|
position: initial;
|
|
406
410
|
background: none;
|
|
@@ -419,17 +423,18 @@ $color: #fff;
|
|
|
419
423
|
display: block;
|
|
420
424
|
}
|
|
421
425
|
}
|
|
422
|
-
@include respond
|
|
426
|
+
@include respond('pad_h') {
|
|
423
427
|
height: 18px;
|
|
424
428
|
}
|
|
425
|
-
@include respond
|
|
429
|
+
@include respond('<=pad_v') {
|
|
426
430
|
height: auto;
|
|
427
431
|
> img {
|
|
428
432
|
display: none;
|
|
429
433
|
}
|
|
430
434
|
}
|
|
431
435
|
}
|
|
432
|
-
|
|
436
|
+
|
|
437
|
+
@include respond('<=pad_v') {
|
|
433
438
|
justify-content: space-between;
|
|
434
439
|
}
|
|
435
440
|
}
|
|
@@ -446,11 +451,11 @@ $color: #fff;
|
|
|
446
451
|
padding: 0 14px;
|
|
447
452
|
background-color: #2b2b2f;
|
|
448
453
|
border-radius: var(--o-radius-xs);
|
|
449
|
-
@include respond
|
|
454
|
+
@include respond('pad_h') {
|
|
450
455
|
height: 26px;
|
|
451
456
|
padding: 0 8px;
|
|
452
457
|
}
|
|
453
|
-
@include respond
|
|
458
|
+
@include respond('<=pad_v') {
|
|
454
459
|
height: 26px;
|
|
455
460
|
padding: 0 8px;
|
|
456
461
|
}
|
|
@@ -458,10 +463,11 @@ $color: #fff;
|
|
|
458
463
|
object-fit: cover;
|
|
459
464
|
}
|
|
460
465
|
}
|
|
461
|
-
|
|
466
|
+
|
|
467
|
+
@include respond('pad_h') {
|
|
462
468
|
margin-left: 32px;
|
|
463
469
|
}
|
|
464
|
-
@include respond
|
|
470
|
+
@include respond('<=pad_v') {
|
|
465
471
|
justify-content: center;
|
|
466
472
|
display: flex;
|
|
467
473
|
text-align: center;
|
|
@@ -474,7 +480,8 @@ $color: #fff;
|
|
|
474
480
|
padding: 0 9px;
|
|
475
481
|
height: 20px;
|
|
476
482
|
}
|
|
477
|
-
|
|
483
|
+
|
|
484
|
+
@include respond('<=pad') {
|
|
478
485
|
display: flex;
|
|
479
486
|
flex-wrap: wrap;
|
|
480
487
|
text-align: center;
|
|
@@ -497,7 +504,7 @@ $color: #fff;
|
|
|
497
504
|
.footer {
|
|
498
505
|
.footer-content {
|
|
499
506
|
.inner {
|
|
500
|
-
@include respond
|
|
507
|
+
@include respond('<=pad_v') {
|
|
501
508
|
margin: 0 auto;
|
|
502
509
|
max-width: fit-content;
|
|
503
510
|
padding: 14px 0 24px;
|