@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
|
@@ -67,11 +67,12 @@ defineProps<EventsApplyPropsT>();
|
|
|
67
67
|
|
|
68
68
|
<style lang="scss">
|
|
69
69
|
.o-events-apply {
|
|
70
|
+
--events-card-radius: var(--o-radius-xs);
|
|
70
71
|
width: 100%;
|
|
71
72
|
// 移动端时间线序号
|
|
72
73
|
.timeline-number {
|
|
73
74
|
display: none; // 桌面端隐藏
|
|
74
|
-
@include respond
|
|
75
|
+
@include respond('<=pad_v') {
|
|
75
76
|
display: flex;
|
|
76
77
|
align-items: flex-start;
|
|
77
78
|
padding-top: var(--o-gap-3); // 与 step-title 的 padding 对齐
|
|
@@ -118,7 +119,7 @@ defineProps<EventsApplyPropsT>();
|
|
|
118
119
|
gap: var(--o-gap-6);
|
|
119
120
|
|
|
120
121
|
// 移动端:2列布局(序号列 + 内容列)
|
|
121
|
-
@include respond
|
|
122
|
+
@include respond('<=pad_v') {
|
|
122
123
|
grid-template-columns: auto 1fr; // 第1列自适应,第2列占满
|
|
123
124
|
grid-template-rows: auto; // 行数自动
|
|
124
125
|
gap: var(--o-gap-3); // 列间距12px,行间距12px
|
|
@@ -126,13 +127,13 @@ defineProps<EventsApplyPropsT>();
|
|
|
126
127
|
|
|
127
128
|
.step-item {
|
|
128
129
|
background: var(--o-color-fill2);
|
|
129
|
-
border-radius: var(--
|
|
130
|
+
border-radius: var(--events-card-radius);
|
|
130
131
|
display: flex;
|
|
131
132
|
flex-direction: column; // 垂直排列子元素
|
|
132
133
|
--idx-size: 20px;
|
|
133
134
|
--idx-gap: var(--o-gap-3);
|
|
134
135
|
// 移动端:强制在第2列显示
|
|
135
|
-
@include respond
|
|
136
|
+
@include respond('<=pad_v') {
|
|
136
137
|
grid-column: 2 !important;
|
|
137
138
|
grid-row: auto !important;
|
|
138
139
|
}
|
|
@@ -145,13 +146,13 @@ defineProps<EventsApplyPropsT>();
|
|
|
145
146
|
display: flex;
|
|
146
147
|
align-items: center;
|
|
147
148
|
@include h2;
|
|
148
|
-
@include respond
|
|
149
|
+
@include respond('pad_v') {
|
|
149
150
|
margin-bottom: 0;
|
|
150
151
|
padding: var(--o-gap-3) var(--o-gap-4);
|
|
151
152
|
border-bottom: 1px solid var(--o-color-control4);
|
|
152
153
|
@include text1;
|
|
153
154
|
}
|
|
154
|
-
@include respond
|
|
155
|
+
@include respond('phone') {
|
|
155
156
|
margin-bottom: 0;
|
|
156
157
|
padding: var(--o-gap-3) var(--o-gap-4);
|
|
157
158
|
border-bottom: 1px solid var(--o-color-control4);
|
|
@@ -169,10 +170,10 @@ defineProps<EventsApplyPropsT>();
|
|
|
169
170
|
color: #fff;
|
|
170
171
|
text-align: center;
|
|
171
172
|
font-weight: 400;
|
|
172
|
-
@include respond
|
|
173
|
+
@include respond('pad_v') {
|
|
173
174
|
display: none;
|
|
174
175
|
}
|
|
175
|
-
@include respond
|
|
176
|
+
@include respond('phone') {
|
|
176
177
|
display: none;
|
|
177
178
|
}
|
|
178
179
|
}
|
|
@@ -182,10 +183,10 @@ defineProps<EventsApplyPropsT>();
|
|
|
182
183
|
color: var(--o-color-info2);
|
|
183
184
|
padding: 0 var(--o-gap-6) var(--o-gap-4) var(--o-gap-6);
|
|
184
185
|
@include tip1;
|
|
185
|
-
@include respond
|
|
186
|
+
@include respond('pad_v') {
|
|
186
187
|
padding: var(--o-gap-3) var(--o-gap-4);
|
|
187
188
|
}
|
|
188
|
-
@include respond
|
|
189
|
+
@include respond('phone') {
|
|
189
190
|
padding: var(--o-gap-3) var(--o-gap-4);
|
|
190
191
|
}
|
|
191
192
|
|
|
@@ -195,7 +196,7 @@ defineProps<EventsApplyPropsT>();
|
|
|
195
196
|
|
|
196
197
|
.desc-list-title {
|
|
197
198
|
padding-left: calc(var(--idx-size) + var(--idx-gap));
|
|
198
|
-
@include respond
|
|
199
|
+
@include respond('<=pad_v') {
|
|
199
200
|
display: none;
|
|
200
201
|
}
|
|
201
202
|
}
|
|
@@ -214,10 +215,10 @@ defineProps<EventsApplyPropsT>();
|
|
|
214
215
|
font-size: 16px;
|
|
215
216
|
margin-right: var(--o-gap-4);
|
|
216
217
|
color: #fff;
|
|
217
|
-
@include respond
|
|
218
|
+
@include respond('pad_v') {
|
|
218
219
|
margin-right: var(--o-gap-2);
|
|
219
220
|
}
|
|
220
|
-
@include respond
|
|
221
|
+
@include respond('phone') {
|
|
221
222
|
margin-right: var(--o-gap-2);
|
|
222
223
|
}
|
|
223
224
|
|
|
@@ -236,13 +237,11 @@ defineProps<EventsApplyPropsT>();
|
|
|
236
237
|
--padding-left: var(--o-gap-4);
|
|
237
238
|
padding-left: calc(var(--o-gap-4) + var(--o-gap-4));
|
|
238
239
|
color: rgba(255, 255, 255, 0.8);
|
|
239
|
-
@include respond
|
|
240
|
+
@include respond('pad_v') {
|
|
240
241
|
padding-left: var(--o-gap-5);
|
|
241
|
-
color: var(--o-color-info2);
|
|
242
242
|
}
|
|
243
|
-
@include respond
|
|
243
|
+
@include respond('phone') {
|
|
244
244
|
padding-left: var(--o-gap-5);
|
|
245
|
-
color: var(--o-color-info2);
|
|
246
245
|
}
|
|
247
246
|
}
|
|
248
247
|
}
|
|
@@ -257,20 +256,20 @@ defineProps<EventsApplyPropsT>();
|
|
|
257
256
|
}
|
|
258
257
|
|
|
259
258
|
.img-wrapper {
|
|
260
|
-
@include respond
|
|
259
|
+
@include respond('<=pad_v') {
|
|
261
260
|
display: none;
|
|
262
261
|
}
|
|
263
262
|
}
|
|
264
263
|
|
|
265
264
|
.img-wrapper-phone {
|
|
266
|
-
@include respond
|
|
265
|
+
@include respond('>pad_v') {
|
|
267
266
|
display: none;
|
|
268
267
|
}
|
|
269
268
|
}
|
|
270
269
|
|
|
271
270
|
&.step-1 {
|
|
272
271
|
.step-desc {
|
|
273
|
-
@include respond
|
|
272
|
+
@include respond('>pad_v') {
|
|
274
273
|
padding-bottom: 0;
|
|
275
274
|
}
|
|
276
275
|
}
|
|
@@ -288,7 +287,7 @@ defineProps<EventsApplyPropsT>();
|
|
|
288
287
|
|
|
289
288
|
&.step-2 {
|
|
290
289
|
.step-desc {
|
|
291
|
-
@include respond
|
|
290
|
+
@include respond('>pad_v') {
|
|
292
291
|
padding-bottom: 0;
|
|
293
292
|
}
|
|
294
293
|
}
|
|
@@ -305,31 +304,33 @@ defineProps<EventsApplyPropsT>();
|
|
|
305
304
|
}
|
|
306
305
|
|
|
307
306
|
&.step-3 {
|
|
308
|
-
|
|
307
|
+
background: linear-gradient(
|
|
308
|
+
142.13deg,
|
|
309
|
+
color-mix(in srgb, transparent 0%, transparent) 0%,
|
|
310
|
+
color-mix(in srgb, rgba(var(--o-white), 0.6) 60%, transparent) 100%
|
|
311
|
+
),
|
|
312
|
+
var(--o-color-primary1);
|
|
313
|
+
|
|
314
|
+
&.is-dark {
|
|
309
315
|
background: linear-gradient(
|
|
310
316
|
142.13deg,
|
|
311
|
-
color-mix(in srgb,
|
|
312
|
-
color-mix(in srgb,
|
|
317
|
+
color-mix(in srgb, var(--o-color-primary1) 40%, transparent) 0%,
|
|
318
|
+
color-mix(in srgb, var(--o-color-primary1) 16%, transparent) 100%
|
|
313
319
|
),
|
|
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
|
-
}
|
|
320
|
+
var(--o-color-fill2);
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.step-idx {
|
|
324
|
+
background-color: #fff;
|
|
325
|
+
color: #000;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
.step-title {
|
|
329
|
+
color: #fff;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.step-desc {
|
|
333
|
+
color: #fff;
|
|
333
334
|
}
|
|
334
335
|
|
|
335
336
|
.img-wrapper {
|
|
@@ -349,10 +350,10 @@ defineProps<EventsApplyPropsT>();
|
|
|
349
350
|
&.step-4 {
|
|
350
351
|
position: relative;
|
|
351
352
|
padding-right: 292px;
|
|
352
|
-
@include respond
|
|
353
|
+
@include respond('pad_h') {
|
|
353
354
|
padding-right: 192px;
|
|
354
355
|
}
|
|
355
|
-
@include respond
|
|
356
|
+
@include respond('<=pad_v') {
|
|
356
357
|
padding-right: var(--o-gap-4);
|
|
357
358
|
}
|
|
358
359
|
|
|
@@ -236,9 +236,11 @@ const getIcon = (item: CalendarItemT) => {
|
|
|
236
236
|
|
|
237
237
|
<style lang="scss">
|
|
238
238
|
.o-events-calendar {
|
|
239
|
+
--events-card-radius: var(--o-radius-xs);
|
|
240
|
+
--events-name-radius: var(--o-radius-xs);
|
|
239
241
|
.month-list {
|
|
240
242
|
display: flex;
|
|
241
|
-
border-radius: var(--
|
|
243
|
+
border-radius: var(--events-card-radius) var(--events-card-radius) 0 0;
|
|
242
244
|
background-color: var(--o-color-control2-light);
|
|
243
245
|
color: var(--o-color-info1);
|
|
244
246
|
|
|
@@ -248,10 +250,10 @@ const getIcon = (item: CalendarItemT) => {
|
|
|
248
250
|
height: var(--header-height);
|
|
249
251
|
line-height: var(--header-height);
|
|
250
252
|
text-align: center;
|
|
251
|
-
@include respond
|
|
253
|
+
@include respond('laptop') {
|
|
252
254
|
--header-height: 40px;
|
|
253
255
|
}
|
|
254
|
-
@include respond
|
|
256
|
+
@include respond('pad_h') {
|
|
255
257
|
--header-height: 38px;
|
|
256
258
|
}
|
|
257
259
|
}
|
|
@@ -259,19 +261,19 @@ const getIcon = (item: CalendarItemT) => {
|
|
|
259
261
|
|
|
260
262
|
.o-collapse {
|
|
261
263
|
--collapse-padding: 0;
|
|
262
|
-
--collapse-radius: 0 0 var(--
|
|
263
|
-
@include respond
|
|
264
|
-
--collapse-radius: var(--
|
|
264
|
+
--collapse-radius: 0 0 var(--events-card-radius) var(--events-card-radius);
|
|
265
|
+
@include respond('pad_v') {
|
|
266
|
+
--collapse-radius: var(--events-card-radius);
|
|
265
267
|
}
|
|
266
|
-
@include respond
|
|
267
|
-
--collapse-radius: var(--
|
|
268
|
+
@include respond('phone') {
|
|
269
|
+
--collapse-radius: var(--events-card-radius);
|
|
268
270
|
}
|
|
269
271
|
|
|
270
272
|
.o-collapse-item {
|
|
271
273
|
.o-collapse-item-header {
|
|
272
274
|
padding: var(--o-gap-4) var(--o-gap-6);
|
|
273
275
|
align-items: center;
|
|
274
|
-
@include respond
|
|
276
|
+
@include respond('<=pad_v') {
|
|
275
277
|
padding: var(--o-gap-2) var(--o-gap-3);
|
|
276
278
|
}
|
|
277
279
|
|
|
@@ -298,7 +300,7 @@ const getIcon = (item: CalendarItemT) => {
|
|
|
298
300
|
align-items: center;
|
|
299
301
|
justify-content: space-between;
|
|
300
302
|
margin-right: var(--o-gap-4);
|
|
301
|
-
@include respond
|
|
303
|
+
@include respond('<=pad_v') {
|
|
302
304
|
flex-direction: column;
|
|
303
305
|
align-items: flex-start;
|
|
304
306
|
}
|
|
@@ -317,7 +319,7 @@ const getIcon = (item: CalendarItemT) => {
|
|
|
317
319
|
justify-content: center;
|
|
318
320
|
margin-right: var(--o-gap-4);
|
|
319
321
|
background-color: rgb(var(--bg-color));
|
|
320
|
-
@include respond
|
|
322
|
+
@include respond('<=pad_v') {
|
|
321
323
|
margin-right: var(--o-gap-2);
|
|
322
324
|
}
|
|
323
325
|
}
|
|
@@ -325,10 +327,10 @@ const getIcon = (item: CalendarItemT) => {
|
|
|
325
327
|
.o-icon {
|
|
326
328
|
font-size: 20px;
|
|
327
329
|
color: var(--o-white);
|
|
328
|
-
@include respond
|
|
330
|
+
@include respond('laptop') {
|
|
329
331
|
font-size: 16px;
|
|
330
332
|
}
|
|
331
|
-
@include respond
|
|
333
|
+
@include respond('pad_h') {
|
|
332
334
|
font-size: 16px;
|
|
333
335
|
}
|
|
334
336
|
|
|
@@ -350,7 +352,7 @@ const getIcon = (item: CalendarItemT) => {
|
|
|
350
352
|
color: var(--o-color-info3);
|
|
351
353
|
white-space: normal;
|
|
352
354
|
@include text1;
|
|
353
|
-
@include respond
|
|
355
|
+
@include respond('<=pad_v') {
|
|
354
356
|
margin-top: var(--o-gap-1);
|
|
355
357
|
font-size: 12px;
|
|
356
358
|
}
|
|
@@ -364,7 +366,7 @@ const getIcon = (item: CalendarItemT) => {
|
|
|
364
366
|
.month-content {
|
|
365
367
|
padding: var(--o-gap-3) 0;
|
|
366
368
|
position: relative;
|
|
367
|
-
@include respond
|
|
369
|
+
@include respond('pad_h') {
|
|
368
370
|
padding: var(--o-gap-2) 0;
|
|
369
371
|
}
|
|
370
372
|
background-image: linear-gradient(
|
|
@@ -446,7 +448,7 @@ const getIcon = (item: CalendarItemT) => {
|
|
|
446
448
|
);
|
|
447
449
|
|
|
448
450
|
--event-gap: 6px;
|
|
449
|
-
@include respond
|
|
451
|
+
@include respond('pad_h') {
|
|
450
452
|
--event-gap: var(--o-gap-1);
|
|
451
453
|
}
|
|
452
454
|
// 跨月事件布局:Grid
|
|
@@ -493,7 +495,7 @@ const getIcon = (item: CalendarItemT) => {
|
|
|
493
495
|
color: var(--o-color-info1);
|
|
494
496
|
min-height: 32px;
|
|
495
497
|
padding: 2px var(--o-gap-2);
|
|
496
|
-
border-radius:
|
|
498
|
+
border-radius: var(--events-name-radius);
|
|
497
499
|
word-break: normal;
|
|
498
500
|
overflow-wrap: anywhere;
|
|
499
501
|
background: linear-gradient(to right, rgba(var(--bg-color), 0.06) 0%, rgba(var(--bg-color), 0.2) 100%), var(--o-color-fill2); // 底层实色背景遮住分割线
|
|
@@ -507,7 +509,7 @@ const getIcon = (item: CalendarItemT) => {
|
|
|
507
509
|
--link-gap: 2px;
|
|
508
510
|
display: flex;
|
|
509
511
|
@include tip1;
|
|
510
|
-
@include respond
|
|
512
|
+
@include respond('pad_v') {
|
|
511
513
|
color: var(--o-color-info1);
|
|
512
514
|
}
|
|
513
515
|
|
|
@@ -549,7 +551,7 @@ const getIcon = (item: CalendarItemT) => {
|
|
|
549
551
|
color: var(--o-color-info2);
|
|
550
552
|
font-weight: 400;
|
|
551
553
|
@include tip1;
|
|
552
|
-
@include respond
|
|
554
|
+
@include respond('<=pad_v') {
|
|
553
555
|
@include text2;
|
|
554
556
|
}
|
|
555
557
|
}
|
|
@@ -186,17 +186,19 @@ const list = computed(() => {
|
|
|
186
186
|
|
|
187
187
|
<style lang="scss">
|
|
188
188
|
.o-events-list {
|
|
189
|
+
--events-card-radius: var(--o-radius-xs);
|
|
190
|
+
--events-tag-radius: var(--o-radius-xs);
|
|
189
191
|
.filter-wrapper {
|
|
190
192
|
display: flex;
|
|
191
193
|
align-items: center;
|
|
192
194
|
flex-wrap: wrap;
|
|
193
195
|
justify-content: space-between;
|
|
194
196
|
background-color: var(--o-color-fill2);
|
|
195
|
-
border-radius: var(--
|
|
197
|
+
border-radius: var(--events-card-radius);
|
|
196
198
|
padding: var(--o-gap-5) var(--o-gap-6);
|
|
197
199
|
gap: var(--o-gap-3) var(--o-gap-2);
|
|
198
200
|
@include text1;
|
|
199
|
-
@include respond
|
|
201
|
+
@include respond('<=pad_v') {
|
|
200
202
|
padding: var(--o-gap-3) var(--o-gap-4);
|
|
201
203
|
}
|
|
202
204
|
|
|
@@ -210,10 +212,10 @@ const list = computed(() => {
|
|
|
210
212
|
flex-shrink: 0;
|
|
211
213
|
margin-right: var(--o-gap-5);
|
|
212
214
|
font-weight: 500;
|
|
213
|
-
@include respond
|
|
215
|
+
@include respond('pad_v') {
|
|
214
216
|
margin-right: var(--o-gap-4);
|
|
215
217
|
}
|
|
216
|
-
@include respond
|
|
218
|
+
@include respond('phone') {
|
|
217
219
|
margin-right: var(--o-gap-4);
|
|
218
220
|
}
|
|
219
221
|
}
|
|
@@ -221,7 +223,7 @@ const list = computed(() => {
|
|
|
221
223
|
.o-toggle {
|
|
222
224
|
--toggle-size: 32px;
|
|
223
225
|
--toggle-padding: 3px 15px;
|
|
224
|
-
--toggle-radius:
|
|
226
|
+
--toggle-radius: var(--events-tag-radius);
|
|
225
227
|
max-height: 32px;
|
|
226
228
|
--toggle-bg-color: var(--o-color-fill1);
|
|
227
229
|
--toggle-bg-color-hover: var(--o-color-control2-light);
|
|
@@ -236,7 +238,7 @@ const list = computed(() => {
|
|
|
236
238
|
.o-input {
|
|
237
239
|
.o-icon-search {
|
|
238
240
|
font-size: 24px;
|
|
239
|
-
@include respond
|
|
241
|
+
@include respond('<=pad_v') {
|
|
240
242
|
font-size: 16px;
|
|
241
243
|
}
|
|
242
244
|
}
|
|
@@ -247,15 +249,15 @@ const list = computed(() => {
|
|
|
247
249
|
grid-template-columns: repeat(4, 1fr);
|
|
248
250
|
gap: var(--o-gap-6);
|
|
249
251
|
margin-top: var(--o-gap-6);
|
|
250
|
-
@include respond
|
|
252
|
+
@include respond('<=pad_v') {
|
|
251
253
|
grid-template-columns: repeat(1, 1fr);
|
|
252
254
|
container-type: inline-size;
|
|
253
255
|
}
|
|
254
|
-
@include respond
|
|
256
|
+
@include respond('pad_v') {
|
|
255
257
|
margin-top: var(--o-gap-4);
|
|
256
258
|
gap: var(--o-gap-3);
|
|
257
259
|
}
|
|
258
|
-
@include respond
|
|
260
|
+
@include respond('phone') {
|
|
259
261
|
margin-top: var(--o-gap-4);
|
|
260
262
|
gap: var(--o-gap-3);
|
|
261
263
|
}
|
|
@@ -263,7 +265,7 @@ const list = computed(() => {
|
|
|
263
265
|
.o-card {
|
|
264
266
|
aspect-ratio: 1 / 1;
|
|
265
267
|
position: relative;
|
|
266
|
-
@include respond
|
|
268
|
+
@include respond('<=pad_v') {
|
|
267
269
|
aspect-ratio: 1 / 0.4;
|
|
268
270
|
}
|
|
269
271
|
@container (max-width: 300px) {
|
|
@@ -301,10 +303,10 @@ const list = computed(() => {
|
|
|
301
303
|
text-align: center;
|
|
302
304
|
padding: var(--o-gap-6);
|
|
303
305
|
|
|
304
|
-
@include respond
|
|
306
|
+
@include respond('pad_v') {
|
|
305
307
|
margin-top: var(--o-gap-4);
|
|
306
308
|
}
|
|
307
|
-
@include respond
|
|
309
|
+
@include respond('phone') {
|
|
308
310
|
margin-top: var(--o-gap-4);
|
|
309
311
|
}
|
|
310
312
|
|
|
@@ -316,8 +318,8 @@ const list = computed(() => {
|
|
|
316
318
|
position: absolute;
|
|
317
319
|
top: var(--o-gap-3);
|
|
318
320
|
right: var(--o-gap-3);
|
|
319
|
-
border-radius: var(--
|
|
320
|
-
@include respond
|
|
321
|
+
border-radius: var(--events-tag-radius);
|
|
322
|
+
@include respond('<=pad_v') {
|
|
321
323
|
--tag-padding: var(--o-gap-1);
|
|
322
324
|
}
|
|
323
325
|
}
|
|
@@ -328,10 +330,10 @@ const list = computed(() => {
|
|
|
328
330
|
height: 3lh; // 3倍行高
|
|
329
331
|
@include h2;
|
|
330
332
|
@include text-truncate(3);
|
|
331
|
-
@include respond
|
|
333
|
+
@include respond('pad_v') {
|
|
332
334
|
@include h1;
|
|
333
335
|
}
|
|
334
|
-
@include respond
|
|
336
|
+
@include respond('phone') {
|
|
335
337
|
height: 2lh;
|
|
336
338
|
@include text-truncate(2);
|
|
337
339
|
}
|
|
@@ -349,13 +351,13 @@ const list = computed(() => {
|
|
|
349
351
|
}
|
|
350
352
|
|
|
351
353
|
@include text1;
|
|
352
|
-
@include respond
|
|
354
|
+
@include respond('pad_v') {
|
|
353
355
|
margin-top: var(--o-gap-2);
|
|
354
356
|
}
|
|
355
|
-
@include respond
|
|
357
|
+
@include respond('phone') {
|
|
356
358
|
margin-top: var(--o-gap-2);
|
|
357
359
|
}
|
|
358
|
-
@include respond
|
|
360
|
+
@include respond('<=pad_v') {
|
|
359
361
|
display: flex;
|
|
360
362
|
align-items: center;
|
|
361
363
|
.o-divider {
|
|
@@ -368,7 +370,7 @@ const list = computed(() => {
|
|
|
368
370
|
}
|
|
369
371
|
|
|
370
372
|
.event-card {
|
|
371
|
-
border-radius: var(--
|
|
373
|
+
border-radius: var(--events-card-radius);
|
|
372
374
|
color: rgb(var(--o-white));
|
|
373
375
|
background-size: cover;
|
|
374
376
|
background-repeat: no-repeat;
|
|
@@ -149,9 +149,9 @@ const handleMouseleaveSub = (val: string) => {
|
|
|
149
149
|
}
|
|
150
150
|
|
|
151
151
|
.header-wrap-dark {
|
|
152
|
-
box-shadow: 0 3px 9px 0 rgba(var(--o-
|
|
152
|
+
box-shadow: 0 3px 9px 0 rgba(var(--o-grey-4), 0.08);
|
|
153
153
|
.header-nav-content {
|
|
154
|
-
box-shadow: 0 3px 9px 0 rgba(var(--o-
|
|
154
|
+
box-shadow: 0 3px 9px 0 rgba(var(--o-grey-4), 0.08);
|
|
155
155
|
}
|
|
156
156
|
}
|
|
157
157
|
</style>
|