@opendesign-plus-test/components 0.0.1-rc.25 → 0.0.1-rc.26

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.
@@ -14,7 +14,7 @@ import {
14
14
  OIconArrowRight,
15
15
  OIconChevronLeft,
16
16
  OIconChevronRight,
17
- DialogActionT,
17
+ DialogActionT, OLink,
18
18
  } from '@opensig/opendesign';
19
19
  import { ElCalendar } from 'element-plus';
20
20
  import dayjs from 'dayjs';
@@ -460,6 +460,7 @@ const revokeActions = computed<DialogActionT[]>(() => {
460
460
  color: 'primary',
461
461
  variant: 'outline',
462
462
  round: 'pill',
463
+ size: 'large',
463
464
  label: '确定',
464
465
  onClick: () => {
465
466
  confirm();
@@ -469,6 +470,7 @@ const revokeActions = computed<DialogActionT[]>(() => {
469
470
  color: 'primary',
470
471
  variant: 'solid',
471
472
  round: 'pill',
473
+ size: 'large',
472
474
  label: '取消',
473
475
  onClick: () => {
474
476
  cancel();
@@ -482,6 +484,7 @@ const deleteActions = computed<DialogActionT[]>(() => {
482
484
  color: 'primary',
483
485
  variant: 'outline',
484
486
  round: 'pill',
487
+ size: 'large',
485
488
  label: '确定',
486
489
  onClick: () => {
487
490
  confirmDelete();
@@ -491,6 +494,7 @@ const deleteActions = computed<DialogActionT[]>(() => {
491
494
  color: 'primary',
492
495
  variant: 'solid',
493
496
  round: 'pill',
497
+ size: 'large',
494
498
  label: '取消',
495
499
  onClick: () => {
496
500
  cancelDelete();
@@ -505,8 +509,8 @@ const deleteActions = computed<DialogActionT[]>(() => {
505
509
  <div v-if="isPhone" class="list-calendar-mb">
506
510
  <span>{{ (selectedDate ? dayjs(new Date(selectedDate)) : dayjs()).format('YYYY MM月') }}</span>
507
511
  <span>
508
- <OIcon @click="changeMonth('prev-month')"><OIconArrowLeft /></OIcon>
509
- <OIcon @click="changeMonth('next-month')"><OIconArrowRight /></OIcon>
512
+ <OIcon @click="changeMonth('prev-month')"><OIconChevronLeft /></OIcon>
513
+ <OIcon @click="changeMonth('next-month')"><OIconChevronRight /></OIcon>
510
514
  </span>
511
515
  </div>
512
516
  <div class="left-calendar">
@@ -515,10 +519,10 @@ const deleteActions = computed<DialogActionT[]>(() => {
515
519
  <span>{{ (selectedDate ? dayjs(new Date(selectedDate)) : dayjs()).format('YYYY MM月') }}</span>
516
520
  <div>
517
521
  <OIcon @click="changeMonth('prev-month')">
518
- <OIconArrowLeft />
522
+ <OIconChevronLeft />
519
523
  </OIcon>
520
524
  <OIcon @click="changeMonth('next-month')">
521
- <OIconArrowRight />
525
+ <OIconChevronRight />
522
526
  </OIcon>
523
527
  </div>
524
528
  </template>
@@ -554,7 +558,7 @@ const deleteActions = computed<DialogActionT[]>(() => {
554
558
  <template v-for="(act, idx) in activityList" :key="act.start_date">
555
559
  <div class="list-month-change prev-month" v-if="idx === 0" @click="changeMonth('prev-month')">
556
560
  <OIcon>
557
- <OIconChevronLeft />
561
+ <OIconArrowLeft />
558
562
  </OIcon>
559
563
  <span>上个月</span>
560
564
  </div>
@@ -589,8 +593,7 @@ const deleteActions = computed<DialogActionT[]>(() => {
589
593
  >
590
594
  <template #title>
591
595
  <div class="item-header-left">
592
- <div class="act-icon"
593
- :class="[`act-icon-${row.is_delete ? 'delete' : statusMap.get(row.status)?.id}`]">
596
+ <div class="act-icon">
594
597
  <OIcon>
595
598
  <IconEvent />
596
599
  </OIcon>
@@ -621,19 +624,31 @@ const deleteActions = computed<DialogActionT[]>(() => {
621
624
  </div>
622
625
  </div>
623
626
  <div class="item-header-right" v-if="!row.is_delete">
624
- <OButton
627
+ <OLink v-if="row.content_url" :href="row.content_url" target="_blank" rel="noopener noreferrer">
628
+ 活动详情
629
+ <template #suffix>
630
+ <OIcon>
631
+ <OIconChevronRight></OIconChevronRight>
632
+ </OIcon>
633
+ </template>
634
+ </OLink>
635
+ <OLink
625
636
  v-if="
626
637
  row.status === 3 ||
627
638
  row.status === 4 ||
628
639
  (row.status === 2 && row.update_activity_id && new Date(row.register_end_date).getTime() > new Date().getTime())
629
640
  "
630
- color="primary"
631
641
  :href="row.register_url"
632
642
  target="_blank"
633
643
  rel="noopener noreferrer"
634
- >我要报名
635
- </OButton
636
644
  >
645
+ 我要报名
646
+ <template #suffix>
647
+ <OIcon>
648
+ <OIconChevronRight></OIconChevronRight>
649
+ </OIcon>
650
+ </template>
651
+ </OLink>
637
652
  </div>
638
653
  </template>
639
654
  <div class="activity-detail">
@@ -643,18 +658,30 @@ const deleteActions = computed<DialogActionT[]>(() => {
643
658
  :ref="(insRef) => getDetailRefs(insRef, row.id)"
644
659
  />
645
660
  <div class="activity-btn" v-if="!row.isExpired && !row.is_delete">
646
- <OButton v-if="row.status === 2" variant="text" @click="handleRevokeItem(row)">撤销审核
661
+ <OButton
662
+ v-if="row.status === 2"
663
+ variant="text"
664
+ @click="handleRevokeItem(row)"
665
+ >
666
+ 撤销审核
647
667
  </OButton>
648
- <OButton v-if="row.status === 1 || row.status === 3 || row.status === 4 || row.status === 7"
649
- variant="text" @click="handleEditItem(row)"
650
- >修改活动
651
- </OButton
668
+ <OButton
669
+ v-if="row.status === 1 || row.status === 3 || row.status === 4 || row.status === 7"
670
+ variant="text" @click="handleEditItem(row)"
652
671
  >
653
- <OButton v-if="row.status === 1 || row.status === 7" variant="text"
654
- @click="handleDeleteItem(row)">删除活动
672
+ 修改活动
655
673
  </OButton>
656
- <OButton v-if="row.status === 1 || row.status === 7" variant="text"
657
- @click="handleSubmitReviewItem(row)">提交审核
674
+ <OButton
675
+ v-if="row.status === 1 || row.status === 7" variant="text"
676
+ @click="handleDeleteItem(row)"
677
+ >
678
+ 删除活动
679
+ </OButton>
680
+ <OButton
681
+ v-if="row.status === 1 || row.status === 7" variant="text"
682
+ @click="handleSubmitReviewItem(row)"
683
+ >
684
+ 提交审核
658
685
  </OButton>
659
686
  </div>
660
687
  </div>
@@ -665,7 +692,7 @@ const deleteActions = computed<DialogActionT[]>(() => {
665
692
  <div class="load-text" v-if="bottomReached">加载中···</div>
666
693
  <div class="list-month-change next-month" @click="changeMonth('next-month')">
667
694
  <OIcon>
668
- <OIconChevronRight />
695
+ <OIconArrowRight />
669
696
  </OIcon>
670
697
  <span>下个月</span>
671
698
  </div>
@@ -719,14 +746,18 @@ const deleteActions = computed<DialogActionT[]>(() => {
719
746
  .activity-list {
720
747
  display: flex;
721
748
  flex-wrap: nowrap;
722
- height: calc(100% - var(--o-gap-6) * 5);
723
- --table-bg: rgba(243, 246, 250);
724
- --cell-bg: rgba(235, 241, 250);
725
- --cell-bg-hover: rgba(213, 227, 253);
726
- @include respond-to('<=pad_v') {
749
+ gap: var(--o-gap-4);
750
+ height: 100%;
751
+ --phone-padding-top: 0;
752
+ @include respond-to('pad_v') {
727
753
  flex-direction: column;
754
+ gap: var(--o-gap-4);
755
+ }
756
+ @include respond-to('phone') {
757
+ flex-direction: column;
758
+ gap: var(--o-gap-3);
759
+ --phone-padding-top: calc(var(--o-gap-5) + var(--o-gap-3) + var(--o-gap-3));
728
760
  }
729
-
730
761
  .o-loading {
731
762
  .o-layer-mask {
732
763
  background-color: transparent;
@@ -780,10 +811,11 @@ const deleteActions = computed<DialogActionT[]>(() => {
780
811
  .left-calendar {
781
812
  width: 336px;
782
813
  flex-shrink: 0;
814
+ --table-bg: var(--o-color-control2-light);
783
815
 
784
816
  .el-calendar {
785
817
  min-height: 460px;
786
- height: 100%;
818
+ height: calc(100% - 54px);
787
819
  background-color: var(--table-bg);
788
820
  border-radius: var(--o-radius-xs);
789
821
 
@@ -814,15 +846,22 @@ const deleteActions = computed<DialogActionT[]>(() => {
814
846
 
815
847
  .el-calendar__body {
816
848
  .el-calendar-table {
849
+ tr {
850
+ background: var(--table-bg) !important;
851
+ }
852
+
817
853
  th {
818
854
  text-align: center;
855
+ background: var(--table-bg) !important;
856
+ border: none;
819
857
  }
820
858
 
821
859
  td {
822
- background-color: var(--table-bg);
860
+ background: var(--table-bg) !important;
823
861
  border: none;
824
862
  text-align: center;
825
863
  transition: none;
864
+ padding: 0;
826
865
 
827
866
  .el-calendar-day {
828
867
  padding: 0;
@@ -865,7 +904,7 @@ const deleteActions = computed<DialogActionT[]>(() => {
865
904
 
866
905
  &:not(.is-selected) {
867
906
  .date-cell-text:hover {
868
- background-color: var(--cell-bg-hover);
907
+ background-color: var(--o-color-control3-light);
869
908
  }
870
909
  }
871
910
  }
@@ -884,7 +923,7 @@ const deleteActions = computed<DialogActionT[]>(() => {
884
923
  &.is-today {
885
924
  .date-cell-text {
886
925
  color: #000;
887
- background-color: var(--cell-bg-hover);
926
+ background-color: var(--o-color-control3-light);
888
927
  }
889
928
  }
890
929
 
@@ -901,7 +940,15 @@ const deleteActions = computed<DialogActionT[]>(() => {
901
940
  }
902
941
 
903
942
  &.approved::after {
904
- background-color: rgba(255, 165, 0, 1);
943
+ background-color: rgba(var(--o-cyan-6));
944
+ }
945
+
946
+ &.expired::after {
947
+ background-color: rgb(var(--o-mixedgray-6));
948
+ }
949
+
950
+ &.all-deleted::after {
951
+ background-color: rgb(var(--o-mixedgray-6));
905
952
  }
906
953
  }
907
954
  }
@@ -943,10 +990,15 @@ const deleteActions = computed<DialogActionT[]>(() => {
943
990
  .right-meeting {
944
991
  flex-grow: 1;
945
992
  background-color: var(--o-color-fill2);
946
- margin-left: 16px;
993
+
947
994
  @include respond-to('phone') {
948
- margin-top: calc(24px + var(--o-gap-7));
949
- margin-left: 0;
995
+ margin-top: calc(var(--phone-padding-top) - var(--o-gap-4));
996
+ }
997
+
998
+ &.is-empty {
999
+ display: flex;
1000
+ align-items: center;
1001
+ justify-content: center;
950
1002
  }
951
1003
 
952
1004
  .o-scroller {
@@ -963,7 +1015,7 @@ const deleteActions = computed<DialogActionT[]>(() => {
963
1015
  }
964
1016
 
965
1017
  .act-item {
966
- padding-left: var(--o-gap-5);
1018
+ padding-left: 24px;
967
1019
  position: relative;
968
1020
 
969
1021
  &.last-item {
@@ -982,7 +1034,7 @@ const deleteActions = computed<DialogActionT[]>(() => {
982
1034
  bottom: 0;
983
1035
  overflow: hidden;
984
1036
 
985
- --active-color: rgb(222, 222, 227);
1037
+ --active-color: var(--o-color-primary1);
986
1038
 
987
1039
  &::before {
988
1040
  content: '';
@@ -1050,7 +1102,7 @@ const deleteActions = computed<DialogActionT[]>(() => {
1050
1102
  }
1051
1103
 
1052
1104
  .approved {
1053
- --active-color: rgba(255, 165, 0, 1);
1105
+ --active-color: var(--o-color-primary1);
1054
1106
  }
1055
1107
 
1056
1108
  .group-title {
@@ -1059,7 +1111,7 @@ const deleteActions = computed<DialogActionT[]>(() => {
1059
1111
  color: var(--o-color-info1);
1060
1112
  @include text2;
1061
1113
  @include respond-to('phone') {
1062
- padding-left: var(--o-gap-4);
1114
+ padding-left: var(--o-gap-5);
1063
1115
  }
1064
1116
 
1065
1117
  &.is-end {
@@ -1119,6 +1171,14 @@ const deleteActions = computed<DialogActionT[]>(() => {
1119
1171
  display: flex;
1120
1172
  flex-direction: column;
1121
1173
 
1174
+ .o-collapse-item {
1175
+ &.last-item {
1176
+ .o-collapse-item-header {
1177
+ border-bottom: none;
1178
+ }
1179
+ }
1180
+ }
1181
+
1122
1182
  .o-collapse-item-expanded + .o-collapse-item-expanded {
1123
1183
  margin-top: var(--o-gap-4);
1124
1184
  }
@@ -1137,13 +1197,31 @@ const deleteActions = computed<DialogActionT[]>(() => {
1137
1197
  border-top: none;
1138
1198
  border-radius: var(--o-radius-xs);
1139
1199
  transition: margin var(--o-easing-standard) var(--o-duration-s);
1200
+ --copy-display: none;
1201
+ --icon-size: 24px;
1202
+ @include respond-to('<=pad_v') {
1203
+ padding: var(--o-gap-3) var(--o-gap-4);
1204
+ }
1205
+
1206
+ &:hover {
1207
+ @include respond-to('>pad_v') {
1208
+ --copy-display: inline-flex;
1209
+ }
1210
+ }
1211
+
1212
+ @include respond-to('phone') {
1213
+ --icon-size: 20px;
1214
+ }
1140
1215
 
1141
1216
  &.o-collapse-item-expanded {
1142
- background-color: var(--table-bg);
1217
+ @include respond-to('<=pad_v') {
1218
+ --copy-display: inline-flex;
1219
+ }
1143
1220
  }
1144
1221
 
1145
- @include respond-to('<=pad_v') {
1146
- padding: 8px 12px;
1222
+
1223
+ &.o-collapse-item-expanded {
1224
+ background-color: var(--o-color-control2-light);
1147
1225
  }
1148
1226
  }
1149
1227
 
@@ -1156,60 +1234,67 @@ const deleteActions = computed<DialogActionT[]>(() => {
1156
1234
  gap: var(--o-gap-4);
1157
1235
 
1158
1236
  .o-collapse-item-icon {
1237
+ position: relative;
1238
+ top: 4px;
1159
1239
  flex-shrink: 0;
1240
+ @include respond-to('phone') {
1241
+ position: absolute;
1242
+ right: 0;
1243
+ width: 20px;
1244
+ height: 20px;
1245
+ font-size: 20px;
1246
+ bottom: var(--o-gap-2);
1247
+ top: revert;
1248
+ }
1160
1249
  }
1161
1250
 
1251
+
1162
1252
  .o-collapse-item-title {
1163
1253
  flex: 1;
1164
1254
  width: 0;
1165
1255
  display: flex;
1166
- align-items: center;
1256
+ flex-direction: column;
1257
+ align-items: flex-start;
1167
1258
  justify-content: space-between;
1168
- flex-wrap: nowrap;
1169
-
1170
1259
  .item-header-left {
1171
1260
  display: flex;
1172
1261
  align-items: flex-start;
1173
1262
  gap: var(--o-gap-3);
1174
- flex: 1;
1175
- width: 0;
1176
-
1263
+ width: 100%;
1264
+ margin-bottom: var(--o-gap-2);
1265
+ @include respond-to('phone') {
1266
+ flex-grow: 1;
1267
+ width: 100%;
1268
+ align-self: stretch;
1269
+ flex-shrink: 0;
1270
+ }
1177
1271
  .act-icon {
1178
- width: 24px;
1179
- height: 24px;
1272
+ width: var(--icon-size);
1273
+ height: var(--icon-size);
1180
1274
  border-radius: 50%;
1181
- background-color: rgba(var(--o-cyan-6));
1275
+ background-color: var(--o-color-primary1);
1182
1276
  color: #fff;
1183
1277
  display: flex;
1184
1278
  align-items: center;
1185
1279
  justify-content: center;
1186
1280
  flex-shrink: 0;
1187
- @include respond-to('phone') {
1188
- width: 20px;
1189
- height: 20px;
1190
- }
1191
1281
 
1192
- svg path {
1193
- fill: currentColor
1282
+ .o-icon {
1283
+ svg path {
1284
+ fill: currentColor;
1285
+ }
1194
1286
  }
1195
- }
1196
-
1197
- .act-icon-registration,
1198
- .act-icon-in-progress {
1199
- background-color: rgba(255, 165, 0, 1);
1200
- }
1201
1287
 
1202
- .act-icon-delete {
1203
- background-color: rgba(222, 222, 227, 1);
1204
1288
  }
1205
1289
 
1206
1290
  .header-info {
1207
- width: calc(100% - var(--o-gap-3) - 24px);
1291
+ width: calc(100% - var(--o-gap-3) - var(--icon-size));
1208
1292
 
1209
1293
  .act-title {
1210
1294
  font-weight: 500;
1211
1295
  display: flex;
1212
1296
  align-items: center;
1297
+ margin-bottom: var(--o-gap-2);
1213
1298
  @include text2;
1214
1299
 
1215
1300
  &.is-delete,
@@ -1268,36 +1353,53 @@ const deleteActions = computed<DialogActionT[]>(() => {
1268
1353
  }
1269
1354
 
1270
1355
  .item-header-right {
1271
- flex-shrink: 0;
1272
1356
  display: flex;
1273
1357
  align-items: center;
1274
- padding-left: var(--o-gap-4);
1275
- }
1276
- }
1358
+ padding-left: calc(var(--o-gap-3) + var(--icon-size));
1359
+ gap: var(--o-gap-5);
1360
+ width: 100%;
1277
1361
 
1278
- @include respond-to('phone') {
1279
- .o-collapse-item-icon {
1280
- align-self: flex-end;
1281
- position: relative;
1282
- bottom: 4px;
1362
+ .o-link {
1363
+ font-size: 14px;
1364
+ line-height: 21px;
1365
+ }
1366
+
1367
+ .o-link + .o-link {
1368
+ margin-left: var(--o-gap-section-6);
1369
+ }
1370
+
1371
+ .o-icon {
1372
+ font-size: 16px;
1373
+ }
1283
1374
  }
1284
- .o-collapse-item-title {
1285
- flex-direction: column;
1286
- align-items: flex-start;
1287
1375
 
1288
- .item-header-left {
1289
- flex-grow: 1;
1290
- width: 100%;
1291
- align-self: stretch;
1292
- flex-shrink: 0;
1376
+ .copy-icon {
1377
+ position: absolute;
1378
+ top: 50%;
1379
+ transform: translateY(-50%);
1380
+ right: calc(var(--collapse-item-icon-size) + var(--o-gap-4));
1381
+ font-size: 18px;
1382
+ height: 18px;
1383
+ width: 18px;
1384
+ display: var(--copy-display);
1385
+ @include respond-to('phone') {
1386
+ bottom: var(--o-gap-2);
1387
+ transform: revert;
1388
+ top: revert;
1389
+ right: calc(20px + var(--o-gap-2))
1390
+ }
1391
+
1392
+ &:hover {
1393
+ color: var(--o-color-primary1);
1293
1394
  }
1294
1395
 
1295
- .item-header-right {
1296
- padding-left: 24px;
1297
- margin-top: 8px;
1396
+
1397
+ svg path {
1398
+ fill: currentColor;
1298
1399
  }
1299
1400
  }
1300
1401
  }
1402
+
1301
1403
  }
1302
1404
 
1303
1405
  .o-collapse-item-body {
@@ -1305,7 +1407,7 @@ const deleteActions = computed<DialogActionT[]>(() => {
1305
1407
  padding: var(--o-gap-4) 0 0;
1306
1408
 
1307
1409
  .activity-detail {
1308
- padding-left: calc(var(--o-gap-5) + var(--o-gap-3));
1410
+ padding-left: calc(var(--o-gap-3) + var(--icon-size));
1309
1411
  @include respond-to('phone') {
1310
1412
  padding-left: 0;
1311
1413
  }
@@ -1317,14 +1419,16 @@ const deleteActions = computed<DialogActionT[]>(() => {
1317
1419
  display: flex;
1318
1420
  align-items: center;
1319
1421
  justify-content: flex-end;
1320
-
1321
- .o-btn + .o-btn {
1322
- margin-left: 16px;
1323
- }
1422
+ gap: var(--o-gap-5);
1324
1423
  }
1325
1424
  }
1326
1425
  }
1327
1426
 
1427
+ .o-btn.o-btn-text {
1428
+ padding-left: 0 !important;
1429
+ padding-right: 0 !important;
1430
+ min-width: auto;
1431
+ }
1328
1432
  .o-btn-text {
1329
1433
  @include hover {
1330
1434
  background-color: transparent;
@@ -1352,7 +1456,7 @@ const deleteActions = computed<DialogActionT[]>(() => {
1352
1456
  <style lang="scss">
1353
1457
  .handle-dialog-active {
1354
1458
  width: 450px;
1355
-
1459
+ --dlg-radius: var(--o-radius-xs);
1356
1460
  .o-dlg-header {
1357
1461
  margin-bottom: var(--o-gap-5);
1358
1462
  }
@@ -1361,5 +1465,9 @@ const deleteActions = computed<DialogActionT[]>(() => {
1361
1465
  display: flex;
1362
1466
  justify-content: center;
1363
1467
  }
1468
+
1469
+ .dialog-content {
1470
+ margin-bottom: var(--o-gap-2);
1471
+ }
1364
1472
  }
1365
1473
  </style>
@@ -29,7 +29,6 @@ export interface ActivityFormPropsT {
29
29
  id: number;
30
30
  name: string;
31
31
  }[];
32
- status?: string | null;
33
32
  }
34
33
 
35
34
  export interface TypeOptionT {
@@ -416,7 +416,7 @@ const confirm = async () => {
416
416
  });
417
417
  }
418
418
  } else {
419
- await props?.creatMeetingRequest({
419
+ await props?.createMeetingRequest({
420
420
  ...params,
421
421
  email_list: form.value.email_list.replaceAll(' ', ''),
422
422
  });
@@ -727,6 +727,10 @@ defineExpose({
727
727
  }
728
728
  }
729
729
 
730
+ .o-textarea {
731
+ --_box-radius: var(--o-radius-xs);
732
+ }
733
+
730
734
  input,
731
735
  textarea {
732
736
  color: var(--o-input-color);
@@ -1011,15 +1011,15 @@ const cancelActions = computed<DialogActionT[]>(() => {
1011
1011
  flex-grow: 1;
1012
1012
  background-color: var(--o-color-fill2);
1013
1013
 
1014
+ @include respond-to('phone') {
1015
+ margin-top: calc(var(--phone-padding-top) - var(--o-gap-4));
1016
+ }
1014
1017
  &.is-empty {
1015
1018
  display: flex;
1016
1019
  align-items: center;
1017
1020
  justify-content: center;
1018
1021
  }
1019
1022
 
1020
- @include respond-to('phone') {
1021
- margin-top: calc(var(--phone-padding-top) - var(--o-gap-4));
1022
- }
1023
1023
 
1024
1024
  .o-scroller {
1025
1025
  .o-scrollbar-rail {
@@ -1227,16 +1227,15 @@ const cancelActions = computed<DialogActionT[]>(() => {
1227
1227
  }
1228
1228
  }
1229
1229
 
1230
+ @include respond-to('phone') {
1231
+ --icon-size: 20px;
1232
+ }
1230
1233
  &.o-collapse-item-expanded {
1231
1234
  @include respond-to('<=pad_v') {
1232
1235
  --copy-display: inline-flex;
1233
1236
  }
1234
1237
  }
1235
1238
 
1236
- @include respond-to('phone') {
1237
- --icon-size: 20px;
1238
- }
1239
-
1240
1239
  &.o-collapse-item-expanded {
1241
1240
  background-color: var(--o-color-control2-light);
1242
1241
  }
@@ -1384,7 +1383,7 @@ const cancelActions = computed<DialogActionT[]>(() => {
1384
1383
  font-size: 18px;
1385
1384
  height: 18px;
1386
1385
  width: 18px;
1387
- //display: var(--copy-display);
1386
+ display: var(--copy-display);
1388
1387
  @include respond-to('phone') {
1389
1388
  bottom: var(--o-gap-2);
1390
1389
  transform: revert;