openxiangda-cli 2.0.0-alpha.67 → 2.0.0-alpha.69

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.
@@ -3,14 +3,14 @@ body,
3
3
  #root {
4
4
  min-height: 100%;
5
5
  margin: 0;
6
- background: #f3f7fd;
6
+ background: var(--oxa-shell-bg, #f5f5f5);
7
7
  }
8
8
 
9
9
  body {
10
- color: #172033;
11
- font-family:
12
- Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
13
- "Microsoft YaHei", sans-serif;
10
+ color: var(--oxa-shell-text, #1f1f1f);
11
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
12
+ "Helvetica Neue", Arial, "Noto Sans", "PingFang SC", "Microsoft YaHei",
13
+ sans-serif;
14
14
  }
15
15
 
16
16
  * {
@@ -26,26 +26,38 @@ body {
26
26
 
27
27
  .oxa-global-request-loading {
28
28
  position: fixed;
29
- z-index: 1200;
30
- top: 14px;
31
- left: 50%;
32
- display: inline-flex;
33
- align-items: center;
34
- gap: 8px;
35
- padding: 7px 13px;
36
- border: 1px solid #dbe7f7;
37
- border-radius: 999px;
38
- background: rgba(255, 255, 255, 0.96);
39
- box-shadow: 0 8px 24px rgba(31, 59, 102, 0.15);
40
- color: #355070;
41
- font-size: 13px;
29
+ z-index: 1300;
30
+ top: 0;
31
+ right: 0;
32
+ left: 0;
33
+ height: 2px;
34
+ overflow: hidden;
42
35
  pointer-events: none;
43
- transform: translateX(-50%);
36
+ }
37
+
38
+ .oxa-global-request-loading span {
39
+ position: absolute;
40
+ width: 38%;
41
+ height: 100%;
42
+ border-radius: 2px;
43
+ background: var(--oxa-shell-primary, #1677ff);
44
+ animation: oxa-request-progress 1.1s ease-in-out infinite;
45
+ box-shadow: 0 0 8px var(--oxa-shell-primary, #1677ff);
46
+ }
47
+
48
+ @keyframes oxa-request-progress {
49
+ from {
50
+ transform: translateX(-120%);
51
+ }
52
+
53
+ to {
54
+ transform: translateX(380%);
55
+ }
44
56
  }
45
57
 
46
58
  .oxa-app-layout {
47
59
  min-height: 100vh;
48
- background: #f3f7fd;
60
+ background: var(--oxa-shell-bg, #f5f5f5);
49
61
  }
50
62
 
51
63
  .oxa-sider {
@@ -53,8 +65,8 @@ body {
53
65
  top: 0;
54
66
  z-index: 20;
55
67
  height: 100vh;
56
- border-right: 1px solid #e5eaf2;
57
- background: #fff !important;
68
+ border-right: 1px solid var(--oxa-shell-border, #f0f0f0);
69
+ background: var(--oxa-shell-surface, #fff) !important;
58
70
  box-shadow: none;
59
71
  }
60
72
 
@@ -66,17 +78,18 @@ body {
66
78
 
67
79
  .oxa-brand {
68
80
  display: flex;
69
- min-height: 104px;
81
+ min-height: 64px;
70
82
  align-items: center;
71
- gap: 14px;
72
- padding: 20px 22px;
83
+ gap: 12px;
84
+ border-bottom: 1px solid var(--oxa-shell-border, #f0f0f0);
85
+ padding: 12px 18px;
73
86
  }
74
87
 
75
88
  .oxa-brand-mark {
76
89
  position: relative;
77
- width: 38px;
78
- min-width: 38px;
79
- height: 44px;
90
+ width: 32px;
91
+ min-width: 32px;
92
+ height: 36px;
80
93
  }
81
94
 
82
95
  .oxa-brand-mark::before,
@@ -84,31 +97,31 @@ body {
84
97
  position: absolute;
85
98
  bottom: 2px;
86
99
  width: 10px;
87
- height: 42px;
100
+ height: 34px;
88
101
  border-radius: 3px 3px 1px 1px;
89
- background: linear-gradient(180deg, #1f78ff, #315eea);
102
+ background: var(--oxa-shell-primary, #1677ff);
90
103
  content: "";
91
104
  transform-origin: bottom;
92
105
  }
93
106
 
94
107
  .oxa-brand-mark::before {
95
- left: 6px;
108
+ left: 5px;
96
109
  transform: rotate(27deg);
97
110
  }
98
111
 
99
112
  .oxa-brand-mark::after {
100
- right: 6px;
113
+ right: 5px;
101
114
  transform: rotate(-27deg);
102
115
  }
103
116
 
104
117
  .oxa-brand-mark span {
105
118
  position: absolute;
106
119
  z-index: 1;
107
- right: 5px;
120
+ right: 4px;
108
121
  bottom: 3px;
109
122
  width: 15px;
110
123
  height: 9px;
111
- background: #fff;
124
+ background: var(--oxa-shell-surface, #fff);
112
125
  transform: skewX(-27deg);
113
126
  }
114
127
 
@@ -120,8 +133,8 @@ body {
120
133
 
121
134
  .oxa-brand-copy strong {
122
135
  overflow: hidden;
123
- color: #101828;
124
- font-size: 19px;
136
+ color: var(--oxa-shell-text, #1f1f1f);
137
+ font-size: 16px;
125
138
  line-height: 1.2;
126
139
  text-overflow: ellipsis;
127
140
  white-space: nowrap;
@@ -129,8 +142,8 @@ body {
129
142
 
130
143
  .oxa-brand-copy span {
131
144
  overflow: hidden;
132
- color: #667792;
133
- font-size: 13px;
145
+ color: var(--oxa-shell-text-secondary, #595959);
146
+ font-size: 12px;
134
147
  text-overflow: ellipsis;
135
148
  white-space: nowrap;
136
149
  }
@@ -148,7 +161,7 @@ body {
148
161
  min-height: 44px;
149
162
  margin-inline: 0;
150
163
  margin-block: 4px;
151
- color: #47566f;
164
+ color: var(--oxa-shell-text-secondary, #595959);
152
165
  font-weight: 600;
153
166
  }
154
167
 
@@ -157,8 +170,8 @@ body {
157
170
  }
158
171
 
159
172
  .oxa-menu .ant-menu-item-selected {
160
- color: #1677ff;
161
- background: #eaf3ff !important;
173
+ color: var(--oxa-shell-primary, #1677ff);
174
+ background: var(--oxa-shell-primary-bg, #e6f4ff) !important;
162
175
  }
163
176
 
164
177
  .oxa-sider-footer {
@@ -166,21 +179,21 @@ body {
166
179
  right: 12px;
167
180
  bottom: 16px;
168
181
  left: 12px;
169
- border-top: 1px solid #edf0f5;
170
- background: #fff;
182
+ border-top: 1px solid var(--oxa-shell-border, #f0f0f0);
183
+ background: var(--oxa-shell-surface, #fff);
171
184
  padding-top: 12px;
172
185
  }
173
186
 
174
187
  .oxa-sider-footer .ant-btn {
175
188
  min-height: 42px;
176
189
  justify-content: flex-start;
177
- color: #52627a;
190
+ color: var(--oxa-shell-text-secondary, #595959);
178
191
  font-weight: 600;
179
192
  }
180
193
 
181
194
  .oxa-workspace {
182
195
  min-width: 0;
183
- background: #f3f7fd;
196
+ background: var(--oxa-shell-bg, #f5f5f5);
184
197
  }
185
198
 
186
199
  .oxa-topbar {
@@ -188,59 +201,156 @@ body {
188
201
  top: 0;
189
202
  z-index: 15;
190
203
  display: flex;
191
- height: 92px;
204
+ height: 52px;
192
205
  align-items: center;
193
206
  justify-content: space-between;
194
- border-bottom: 1px solid #edf0f5;
195
- background: #fff !important;
196
- padding: 14px 28px !important;
207
+ border-bottom: 1px solid var(--oxa-shell-border, #f0f0f0);
208
+ background: var(--oxa-shell-surface, #fff) !important;
209
+ padding: 0 20px !important;
197
210
  line-height: normal;
198
211
  }
199
212
 
200
- .oxa-topbar-page {
201
- display: grid;
202
- gap: 8px;
203
- }
204
-
205
- .oxa-topbar-page .ant-breadcrumb {
206
- color: #64748b;
213
+ .oxa-topbar .ant-breadcrumb {
214
+ color: var(--oxa-shell-text-secondary, #595959);
207
215
  font-weight: 500;
208
216
  }
209
217
 
210
- .oxa-topbar-page .ant-typography {
211
- margin: 0;
212
- color: #101828;
213
- font-size: 22px;
218
+ .oxa-topbar .ant-breadcrumb-link {
219
+ cursor: pointer;
214
220
  }
215
221
 
216
222
  .oxa-current-user {
217
- min-width: 180px;
223
+ display: inline-flex;
224
+ min-width: 0;
225
+ height: 36px;
226
+ align-items: center;
227
+ gap: 8px;
218
228
  justify-content: flex-end;
229
+ border: 0;
230
+ border-radius: 6px;
231
+ background: transparent;
232
+ padding: 3px 6px;
233
+ color: var(--oxa-shell-text, #1f1f1f);
234
+ cursor: pointer;
235
+ transition: background 0.2s;
236
+ }
237
+
238
+ .oxa-current-user:hover,
239
+ .oxa-current-user:focus-visible {
240
+ background: var(--oxa-shell-hover, rgb(0 0 0 / 6%));
241
+ outline: 0;
219
242
  }
220
243
 
221
244
  .oxa-current-user-avatar {
222
- background: linear-gradient(135deg, #2868f0, #2ea8f2);
245
+ background: var(--oxa-shell-primary, #1677ff);
223
246
  }
224
247
 
225
- .oxa-current-user-copy {
248
+ .oxa-current-user strong {
249
+ max-width: 96px;
250
+ overflow: hidden;
251
+ font-size: 13px;
252
+ font-weight: 600;
253
+ text-overflow: ellipsis;
254
+ white-space: nowrap;
255
+ }
256
+
257
+ .oxa-current-user-chevron {
258
+ color: var(--oxa-shell-text-tertiary, #8c8c8c);
259
+ font-size: 10px;
260
+ }
261
+
262
+ .oxa-user-dropdown {
263
+ width: 292px;
264
+ overflow: hidden;
265
+ border: 1px solid var(--oxa-shell-border, #f0f0f0);
266
+ border-radius: 8px;
267
+ background: var(--oxa-shell-elevated, #fff);
268
+ box-shadow: var(--oxa-shell-shadow, 0 1px 6px rgb(0 0 0 / 8%));
269
+ padding-top: 4px;
270
+ }
271
+
272
+ .oxa-user-dropdown-profile {
273
+ display: flex;
274
+ align-items: center;
275
+ gap: 12px;
276
+ padding: 14px 16px 10px;
277
+ }
278
+
279
+ .oxa-user-dropdown-profile > div:last-child {
226
280
  display: grid;
227
- gap: 4px;
281
+ min-width: 0;
282
+ flex: 1;
283
+ gap: 2px;
228
284
  }
229
285
 
230
- .oxa-current-user-copy strong {
231
- color: #101828;
232
- font-size: 15px;
286
+ .oxa-user-dropdown-profile strong,
287
+ .oxa-user-dropdown-profile span,
288
+ .oxa-user-dropdown-profile small {
289
+ overflow: hidden;
290
+ text-overflow: ellipsis;
291
+ white-space: nowrap;
233
292
  }
234
293
 
235
- .oxa-current-user-copy span {
236
- color: #75839a;
294
+ .oxa-user-dropdown-profile span,
295
+ .oxa-user-dropdown-profile small,
296
+ .oxa-user-dropdown-roles > span,
297
+ .oxa-user-dropdown-theme > span {
298
+ color: var(--oxa-shell-text-secondary, #595959);
237
299
  font-size: 12px;
238
300
  }
239
301
 
302
+ .oxa-user-dropdown-roles,
303
+ .oxa-user-dropdown-theme {
304
+ display: grid;
305
+ gap: 7px;
306
+ margin: 0 12px;
307
+ border-top: 1px solid var(--oxa-shell-border, #f0f0f0);
308
+ padding: 10px 4px;
309
+ }
310
+
311
+ .oxa-user-dropdown > .ant-dropdown-menu {
312
+ border-top: 1px solid var(--oxa-shell-border, #f0f0f0);
313
+ border-radius: 0;
314
+ box-shadow: none;
315
+ }
316
+
317
+ .oxa-route-history {
318
+ position: sticky;
319
+ z-index: 14;
320
+ top: 52px;
321
+ height: 36px;
322
+ overflow: hidden;
323
+ border-bottom: 1px solid var(--oxa-shell-border, #f0f0f0);
324
+ background: var(--oxa-shell-surface, #fff);
325
+ padding: 0 12px;
326
+ }
327
+
328
+ .oxa-route-history .ant-tabs,
329
+ .oxa-route-history .ant-tabs-nav {
330
+ height: 35px;
331
+ margin: 0;
332
+ }
333
+
334
+ .oxa-route-history .ant-tabs-content-holder {
335
+ display: none;
336
+ }
337
+
338
+ .oxa-route-history .ant-tabs-tab {
339
+ border: 0 !important;
340
+ border-right: 1px solid var(--oxa-shell-border, #f0f0f0) !important;
341
+ border-radius: 0 !important;
342
+ background: transparent !important;
343
+ padding: 5px 12px !important;
344
+ }
345
+
346
+ .oxa-route-history .ant-tabs-tab-active {
347
+ background: var(--oxa-shell-primary-bg, #e6f4ff) !important;
348
+ }
349
+
240
350
  .oxa-mobile-page {
241
351
  min-height: 100vh;
242
352
  box-sizing: border-box;
243
- background: #f3f7fd;
353
+ background: var(--oxa-shell-bg, #f5f5f5);
244
354
  padding: 16px;
245
355
  }
246
356
 
@@ -266,17 +376,18 @@ body {
266
376
  width: 100%;
267
377
  min-height: 42px;
268
378
  box-sizing: border-box;
269
- border: 1px solid #d9e2f0;
379
+ border: 1px solid var(--oxa-shell-border-strong, #d9d9d9);
270
380
  border-radius: 8px;
271
- background: #fff;
381
+ background: var(--oxa-shell-surface, #fff);
272
382
  padding: 9px 11px;
273
- color: #172033;
383
+ color: var(--oxa-shell-text, #1f1f1f);
274
384
  font: inherit;
275
385
  }
276
386
 
277
387
  .oxa-mobile-input:focus {
278
- border-color: #1677ff;
279
- outline: 2px solid rgb(22 119 255 / 15%);
388
+ border-color: var(--oxa-shell-primary, #1677ff);
389
+ outline: 2px solid
390
+ color-mix(in srgb, var(--oxa-shell-primary, #1677ff) 15%, transparent);
280
391
  }
281
392
 
282
393
  .oxa-mobile-filter,
@@ -298,7 +409,7 @@ body {
298
409
  }
299
410
 
300
411
  .oxa-mobile-record-card {
301
- border-color: #dfe6ef;
412
+ border-color: var(--oxa-shell-border, #f0f0f0);
302
413
  }
303
414
 
304
415
  .oxa-mobile-record-heading {
@@ -308,7 +419,7 @@ body {
308
419
 
309
420
  .oxa-mobile-record-heading a {
310
421
  overflow: hidden;
311
- color: #1677ff;
422
+ color: var(--oxa-shell-primary, #1677ff);
312
423
  font-size: 16px;
313
424
  font-weight: 650;
314
425
  text-overflow: ellipsis;
@@ -334,32 +445,27 @@ body {
334
445
  justify-self: end;
335
446
  }
336
447
 
337
- .oxa-current-user-chevron {
338
- color: #65748a;
339
- font-size: 12px;
340
- }
341
-
342
448
  .oxa-content {
343
449
  min-width: 0;
344
- background: #f3f7fd;
450
+ background: var(--oxa-shell-bg, #f5f5f5);
345
451
  }
346
452
 
347
453
  .oxa-main {
348
454
  width: 100%;
349
455
  max-width: 1680px;
350
- min-height: calc(100vh - 92px);
456
+ min-height: calc(100vh - 88px);
351
457
  margin: 0 auto;
352
- padding: 24px 28px 48px;
458
+ padding: 20px 24px 48px;
353
459
  }
354
460
 
355
461
  .oxa-title {
356
462
  margin: 0;
357
- color: #172033;
463
+ color: var(--oxa-shell-text, #1f1f1f);
358
464
  font-size: 19px;
359
465
  }
360
466
 
361
467
  .oxa-muted {
362
- color: #7b879b;
468
+ color: var(--oxa-shell-text-secondary, #595959);
363
469
  }
364
470
 
365
471
  .oxa-page-heading {
@@ -375,36 +481,101 @@ body {
375
481
  .oxa-section-card,
376
482
  .oxa-detail-hero,
377
483
  .oxa-edit-hero {
378
- border-color: #dfe6ef;
379
- box-shadow: 0 1px 3px rgb(28 44 72 / 5%);
484
+ border-color: var(--oxa-shell-border, #f0f0f0);
485
+ background: var(--oxa-shell-surface, #fff);
486
+ box-shadow: var(--oxa-shell-shadow, 0 1px 6px rgb(0 0 0 / 8%));
380
487
  }
381
488
 
382
489
  .oxa-list-card > .ant-card-body {
383
- padding: 22px;
490
+ padding: 0;
491
+ }
492
+
493
+ .oxa-list-surface {
494
+ display: grid;
495
+ }
496
+
497
+ .oxa-search-panel {
498
+ display: grid;
499
+ grid-template-columns: minmax(0, 1fr) auto;
500
+ align-items: start;
501
+ gap: 12px;
502
+ border-bottom: 1px solid var(--oxa-shell-border, #f0f0f0);
503
+ padding: 16px;
384
504
  }
385
505
 
386
506
  .oxa-filter-grid {
387
507
  display: grid;
388
508
  grid-template-columns: repeat(4, minmax(170px, 1fr));
389
509
  gap: 12px;
390
- border: 1px solid #e5eaf1;
391
- border-radius: 8px;
392
- background: #fbfcfe;
393
- padding: 16px;
510
+ }
511
+
512
+ .oxa-filter-item > .ant-select,
513
+ .oxa-filter-item > .ant-picker {
514
+ width: 100%;
515
+ }
516
+
517
+ .oxa-filter-item.is-collapsed {
518
+ display: none;
519
+ }
520
+
521
+ .oxa-filter-actions,
522
+ .oxa-list-toolbar,
523
+ .oxa-list-toolbar-primary,
524
+ .oxa-list-toolbar-secondary {
525
+ display: flex;
526
+ align-items: center;
527
+ gap: 8px;
528
+ }
529
+
530
+ .oxa-filter-actions {
531
+ align-items: flex-start;
532
+ }
533
+
534
+ .oxa-list-toolbar {
535
+ min-height: 56px;
536
+ justify-content: space-between;
537
+ border-bottom: 1px solid var(--oxa-shell-border, #f0f0f0);
538
+ padding: 10px 16px;
539
+ }
540
+
541
+ .oxa-list-toolbar-secondary .ant-btn {
542
+ color: var(--oxa-shell-text-secondary, #595959);
543
+ }
544
+
545
+ .oxa-batch-bar {
546
+ display: flex;
547
+ min-height: 52px;
548
+ align-items: center;
549
+ justify-content: space-between;
550
+ gap: 12px;
551
+ border-bottom: 1px solid var(--oxa-shell-border, #f0f0f0);
552
+ background: var(--ant-color-primary-bg, #e6f4ff);
553
+ padding: 8px 16px;
554
+ }
555
+
556
+ .oxa-import-errors {
557
+ max-height: 180px;
558
+ margin: 8px 0 0;
559
+ overflow: auto;
560
+ padding-left: 20px;
394
561
  }
395
562
 
396
563
  .oxa-list-card .ant-table-wrapper {
397
- border: 1px solid #e5eaf1;
398
- border-radius: 8px;
564
+ border: 0;
565
+ border-radius: 0;
399
566
  overflow: hidden;
400
567
  }
401
568
 
402
569
  .oxa-list-card .ant-table-thead > tr > th {
403
- background: #fafbfd;
404
- color: #27364d;
570
+ background: var(--oxa-shell-subtle, #fafafa);
571
+ color: var(--oxa-shell-text, #1f1f1f);
405
572
  font-weight: 600;
406
573
  }
407
574
 
575
+ .oxa-list-card .ant-table-pagination {
576
+ margin: 16px !important;
577
+ }
578
+
408
579
  .oxa-sections {
409
580
  display: grid;
410
581
  gap: 16px;
@@ -441,8 +612,12 @@ body {
441
612
  display: flex;
442
613
  justify-content: flex-end;
443
614
  gap: 10px;
444
- border-top: 1px solid #e7ebf1;
445
- background: rgb(255 255 255 / 96%);
615
+ border-top: 1px solid var(--oxa-shell-border, #f0f0f0);
616
+ background: color-mix(
617
+ in srgb,
618
+ var(--oxa-shell-surface, #fff) 96%,
619
+ transparent
620
+ );
446
621
  padding: 14px 0;
447
622
  backdrop-filter: blur(8px);
448
623
  }
@@ -450,7 +625,7 @@ body {
450
625
  .oxa-form-full .oxa-actions {
451
626
  margin-top: 4px;
452
627
  padding-inline: 18px;
453
- box-shadow: 0 -3px 12px rgb(25 43 70 / 4%);
628
+ box-shadow: 0 -3px 12px color-mix(in srgb, var(--oxa-shell-text, #1f1f1f) 4%, transparent);
454
629
  }
455
630
 
456
631
  .oxa-authoritative-selector {
@@ -480,7 +655,7 @@ body {
480
655
  .oxa-selector-option-copy small,
481
656
  .oxa-selector-tag small,
482
657
  .oxa-resolved-item small {
483
- color: #7b879b;
658
+ color: var(--oxa-shell-text-secondary, #595959);
484
659
  font-size: 11px;
485
660
  }
486
661
 
@@ -490,14 +665,14 @@ body {
490
665
  height: 28px;
491
666
  place-items: center;
492
667
  border-radius: 7px;
493
- background: #eaf3ff;
494
- color: #1677ff;
668
+ background: var(--oxa-shell-primary-bg, #e6f4ff);
669
+ color: var(--oxa-shell-primary, #1677ff);
495
670
  font-size: 14px;
496
671
  }
497
672
 
498
673
  .oxa-selector-avatar {
499
- background: #eaf3ff;
500
- color: #1677ff;
674
+ background: var(--oxa-shell-primary-bg, #e6f4ff);
675
+ color: var(--oxa-shell-primary, #1677ff);
501
676
  font-size: 12px;
502
677
  }
503
678
 
@@ -506,8 +681,8 @@ body {
506
681
  height: 26px;
507
682
  align-items: center;
508
683
  gap: 5px;
509
- border-color: #dbe5f2;
510
- background: #f6f9fd;
684
+ border-color: var(--oxa-shell-border, #f0f0f0);
685
+ background: var(--oxa-shell-subtle, #fafafa);
511
686
  padding-inline: 4px 7px;
512
687
  }
513
688
 
@@ -530,9 +705,9 @@ body {
530
705
  min-height: 30px;
531
706
  align-items: center;
532
707
  gap: 7px;
533
- border: 1px solid #dce5f0;
708
+ border: 1px solid var(--oxa-shell-border, #f0f0f0);
534
709
  border-radius: 7px;
535
- background: #f8faff;
710
+ background: var(--oxa-shell-subtle, #fafafa);
536
711
  padding: 4px 8px;
537
712
  }
538
713
 
@@ -542,9 +717,9 @@ body {
542
717
  }
543
718
 
544
719
  .oxa-resolved-resource .oxa-resolved-item {
545
- border-color: #cfe1ff;
546
- background: #eff6ff;
547
- color: #155fc7;
720
+ border-color: var(--oxa-shell-primary-border, #91caff);
721
+ background: var(--oxa-shell-primary-bg, #e6f4ff);
722
+ color: var(--oxa-shell-primary, #1677ff);
548
723
  }
549
724
 
550
725
  .oxa-directory-trigger {
@@ -552,9 +727,10 @@ body {
552
727
  min-height: 38px;
553
728
  align-items: center;
554
729
  gap: 8px;
555
- border: 1px solid #d9d9d9;
730
+ border: 1px solid var(--oxa-shell-border-strong, #d9d9d9);
556
731
  border-radius: 8px;
557
- background: #fff;
732
+ background: var(--oxa-shell-surface, #fff);
733
+ color: var(--oxa-shell-text, #1f1f1f);
558
734
  padding: 3px 5px 3px 10px;
559
735
  cursor: pointer;
560
736
  transition: border-color 0.2s, box-shadow 0.2s;
@@ -562,20 +738,21 @@ body {
562
738
 
563
739
  .oxa-directory-trigger:hover,
564
740
  .oxa-directory-trigger:focus-visible {
565
- border-color: #1677ff;
566
- box-shadow: 0 0 0 2px rgb(22 119 255 / 10%);
741
+ border-color: var(--oxa-shell-primary, #1677ff);
742
+ box-shadow: 0 0 0 2px
743
+ color-mix(in srgb, var(--oxa-shell-primary, #1677ff) 10%, transparent);
567
744
  outline: 0;
568
745
  }
569
746
 
570
747
  .oxa-directory-trigger.is-disabled {
571
- border-color: #d9d9d9;
572
- background: #f5f5f5;
573
- color: rgb(0 0 0 / 25%);
748
+ border-color: var(--oxa-shell-border-strong, #d9d9d9);
749
+ background: var(--oxa-shell-subtle, #fafafa);
750
+ color: var(--oxa-shell-text-disabled, rgb(0 0 0 / 25%));
574
751
  cursor: not-allowed;
575
752
  }
576
753
 
577
754
  .oxa-directory-trigger-icon {
578
- color: #1677ff;
755
+ color: var(--oxa-shell-primary, #1677ff);
579
756
  }
580
757
 
581
758
  .oxa-directory-trigger-values {
@@ -588,7 +765,7 @@ body {
588
765
  }
589
766
 
590
767
  .oxa-directory-placeholder {
591
- color: rgb(0 0 0 / 25%);
768
+ color: var(--oxa-shell-text-disabled, rgb(0 0 0 / 25%));
592
769
  }
593
770
 
594
771
  .oxa-directory-panel {
@@ -601,9 +778,9 @@ body {
601
778
  min-height: 460px;
602
779
  grid-template-columns: 220px minmax(280px, 1fr) 240px;
603
780
  overflow: hidden;
604
- border: 1px solid #e5eaf1;
781
+ border: 1px solid var(--oxa-shell-border, #f0f0f0);
605
782
  border-radius: 8px;
606
- background: #fff;
783
+ background: var(--oxa-shell-surface, #fff);
607
784
  }
608
785
 
609
786
  .oxa-directory-tree-pane,
@@ -614,8 +791,8 @@ body {
614
791
  }
615
792
 
616
793
  .oxa-directory-tree-pane {
617
- border-right: 1px solid #edf0f5;
618
- background: #fafbfd;
794
+ border-right: 1px solid var(--oxa-shell-border, #f0f0f0);
795
+ background: var(--oxa-shell-subtle, #fafafa);
619
796
  }
620
797
 
621
798
  .oxa-directory-member-pane {
@@ -632,7 +809,7 @@ body {
632
809
 
633
810
  .oxa-directory-member-row {
634
811
  min-height: 58px;
635
- border-bottom: 1px solid #edf0f5;
812
+ border-bottom: 1px solid var(--oxa-shell-border, #f0f0f0);
636
813
  padding: 8px 4px;
637
814
  }
638
815
 
@@ -654,8 +831,8 @@ body {
654
831
 
655
832
  .oxa-directory-department-row:hover,
656
833
  .oxa-directory-department-row:focus-visible {
657
- border-color: #cfe1ff;
658
- background: #f2f7ff;
834
+ border-color: var(--oxa-shell-primary-border, #91caff);
835
+ background: var(--oxa-shell-primary-bg, #e6f4ff);
659
836
  outline: 0;
660
837
  }
661
838
 
@@ -667,13 +844,13 @@ body {
667
844
  }
668
845
 
669
846
  .oxa-directory-department-row small {
670
- color: #7b879b;
847
+ color: var(--oxa-shell-text-secondary, #595959);
671
848
  font-size: 11px;
672
849
  }
673
850
 
674
851
  .oxa-directory-selected-pane {
675
- border-left: 1px solid #edf0f5;
676
- background: #fafbfd;
852
+ border-left: 1px solid var(--oxa-shell-border, #f0f0f0);
853
+ background: var(--oxa-shell-subtle, #fafafa);
677
854
  }
678
855
 
679
856
  .oxa-directory-pane-title,
@@ -688,7 +865,7 @@ body {
688
865
  .oxa-directory-pane-title {
689
866
  min-height: 32px;
690
867
  margin-bottom: 10px;
691
- color: #27364d;
868
+ color: var(--oxa-shell-text, #1f1f1f);
692
869
  font-weight: 600;
693
870
  }
694
871
 
@@ -711,7 +888,7 @@ body {
711
888
  .oxa-directory-member-row small,
712
889
  .oxa-directory-selected-item small {
713
890
  overflow: hidden;
714
- color: #7b879b;
891
+ color: var(--oxa-shell-text-secondary, #595959);
715
892
  font-size: 11px;
716
893
  text-overflow: ellipsis;
717
894
  white-space: nowrap;
@@ -726,9 +903,9 @@ body {
726
903
  display: flex;
727
904
  align-items: center;
728
905
  gap: 8px;
729
- border: 1px solid #e1e7f0;
906
+ border: 1px solid var(--oxa-shell-border, #f0f0f0);
730
907
  border-radius: 7px;
731
- background: #fff;
908
+ background: var(--oxa-shell-surface, #fff);
732
909
  padding: 7px;
733
910
  }
734
911
 
@@ -738,7 +915,7 @@ body {
738
915
 
739
916
  .oxa-directory-footer {
740
917
  justify-content: flex-end;
741
- border-top: 1px solid #edf0f5;
918
+ border-top: 1px solid var(--oxa-shell-border, #f0f0f0);
742
919
  padding-top: 14px;
743
920
  }
744
921
 
@@ -749,28 +926,28 @@ body {
749
926
 
750
927
  .oxa-file-dropzone .ant-upload-drag {
751
928
  min-height: 72px;
752
- border-color: #dbe3ee;
753
- background: #fbfcfe;
929
+ border-color: var(--oxa-shell-border-strong, #d9d9d9);
930
+ background: var(--oxa-shell-subtle, #fafafa);
754
931
  padding: 12px;
755
932
  }
756
933
 
757
934
  .oxa-file-dropzone .ant-upload-drag-container {
758
935
  display: grid;
759
936
  gap: 5px;
760
- color: #52627a;
937
+ color: var(--oxa-shell-text-secondary, #595959);
761
938
  }
762
939
 
763
940
  .oxa-file-dropzone small {
764
- color: #8a96a9;
941
+ color: var(--oxa-shell-text-tertiary, #8c8c8c);
765
942
  }
766
943
 
767
944
  .oxa-file-dropzone kbd {
768
- border: 1px solid #d8dee8;
945
+ border: 1px solid var(--oxa-shell-border-strong, #d9d9d9);
769
946
  border-bottom-width: 2px;
770
947
  border-radius: 4px;
771
- background: #fff;
948
+ background: var(--oxa-shell-surface, #fff);
772
949
  padding: 1px 5px;
773
- color: #35445b;
950
+ color: var(--oxa-shell-text, #1f1f1f);
774
951
  font-family: inherit;
775
952
  }
776
953
 
@@ -785,9 +962,9 @@ body {
785
962
  min-height: 50px;
786
963
  align-items: center;
787
964
  gap: 10px;
788
- border: 1px solid #e2e8f0;
965
+ border: 1px solid var(--oxa-shell-border, #f0f0f0);
789
966
  border-radius: 8px;
790
- background: #fff;
967
+ background: var(--oxa-shell-surface, #fff);
791
968
  padding: 7px 9px;
792
969
  }
793
970
 
@@ -797,8 +974,8 @@ body {
797
974
  height: 32px;
798
975
  place-items: center;
799
976
  border-radius: 7px;
800
- background: #edf5ff;
801
- color: #1677ff;
977
+ background: var(--oxa-shell-primary-bg, #e6f4ff);
978
+ color: var(--oxa-shell-primary, #1677ff);
802
979
  }
803
980
 
804
981
  .oxa-file-meta {
@@ -819,7 +996,7 @@ body {
819
996
  }
820
997
 
821
998
  .oxa-file-name-button:hover strong {
822
- color: #1677ff;
999
+ color: var(--oxa-shell-primary, #1677ff);
823
1000
  }
824
1001
 
825
1002
  .oxa-file-name-button:disabled {
@@ -835,14 +1012,14 @@ body {
835
1012
 
836
1013
  .oxa-file-meta small,
837
1014
  .oxa-file-empty {
838
- color: #7b879b;
1015
+ color: var(--oxa-shell-text-secondary, #595959);
839
1016
  font-size: 12px;
840
1017
  }
841
1018
 
842
1019
  .oxa-file-error {
843
- border-color: #ffccc7;
844
- background: #fff2f0;
845
- color: #cf1322;
1020
+ border-color: var(--oxa-shell-error-border, #ffccc7);
1021
+ background: var(--oxa-shell-error-bg, #fff2f0);
1022
+ color: var(--oxa-shell-error, #ff4d4f);
846
1023
  }
847
1024
 
848
1025
  .oxa-file-error > span {
@@ -850,7 +1027,7 @@ body {
850
1027
  }
851
1028
 
852
1029
  .oxa-file-empty {
853
- border: 1px dashed #dbe3ee;
1030
+ border: 1px dashed var(--oxa-shell-border-strong, #d9d9d9);
854
1031
  border-radius: 8px;
855
1032
  padding: 10px;
856
1033
  text-align: center;
@@ -881,7 +1058,7 @@ body {
881
1058
 
882
1059
  .oxa-file-preview-page {
883
1060
  min-height: 100vh;
884
- background: #eef2f7;
1061
+ background: var(--oxa-shell-bg, #f5f5f5);
885
1062
  }
886
1063
 
887
1064
  .oxa-file-preview-toolbar {
@@ -893,10 +1070,14 @@ body {
893
1070
  align-items: center;
894
1071
  justify-content: space-between;
895
1072
  gap: 20px;
896
- border-bottom: 1px solid #dfe5ee;
897
- background: rgb(255 255 255 / 96%);
1073
+ border-bottom: 1px solid var(--oxa-shell-border, #f0f0f0);
1074
+ background: color-mix(
1075
+ in srgb,
1076
+ var(--oxa-shell-surface, #fff) 96%,
1077
+ transparent
1078
+ );
898
1079
  padding: 10px 20px;
899
- box-shadow: 0 2px 12px rgb(26 45 75 / 6%);
1080
+ box-shadow: var(--oxa-shell-shadow, 0 1px 6px rgb(0 0 0 / 8%));
900
1081
  backdrop-filter: blur(12px);
901
1082
  }
902
1083
 
@@ -913,7 +1094,7 @@ body {
913
1094
  }
914
1095
 
915
1096
  .oxa-file-preview-title > .anticon {
916
- color: #1677ff;
1097
+ color: var(--oxa-shell-primary, #1677ff);
917
1098
  font-size: 26px;
918
1099
  }
919
1100
 
@@ -931,7 +1112,7 @@ body {
931
1112
  }
932
1113
 
933
1114
  .oxa-file-preview-title span {
934
- color: #7b879b;
1115
+ color: var(--oxa-shell-text-secondary, #595959);
935
1116
  font-size: 12px;
936
1117
  }
937
1118
 
@@ -947,7 +1128,7 @@ body {
947
1128
  height: calc(100vh - 106px);
948
1129
  border: 0;
949
1130
  border-radius: 8px;
950
- background: #fff;
1131
+ background: var(--oxa-shell-surface, #fff);
951
1132
  box-shadow: 0 8px 32px rgb(24 42 72 / 10%);
952
1133
  }
953
1134
 
@@ -965,13 +1146,13 @@ body {
965
1146
  height: calc(100vh - 106px);
966
1147
  overflow: auto;
967
1148
  border-radius: 8px;
968
- background: #fff;
1149
+ background: var(--oxa-shell-surface, #fff);
969
1150
  box-shadow: 0 8px 32px rgb(24 42 72 / 10%);
970
1151
  }
971
1152
 
972
1153
  .oxa-docx-preview .docx-wrapper {
973
1154
  min-height: 100%;
974
- background: #dfe4eb;
1155
+ background: var(--oxa-shell-subtle, #fafafa);
975
1156
  padding: 24px;
976
1157
  }
977
1158
 
@@ -989,7 +1170,7 @@ body {
989
1170
  min-height: 0;
990
1171
  flex: 1;
991
1172
  overflow: auto;
992
- border-top: 1px solid #e5eaf1;
1173
+ border-top: 1px solid var(--oxa-shell-border, #f0f0f0);
993
1174
  }
994
1175
 
995
1176
  .oxa-spreadsheet-scroll table {
@@ -1003,10 +1184,10 @@ body {
1003
1184
  .oxa-spreadsheet-scroll td {
1004
1185
  min-width: 96px;
1005
1186
  max-width: 360px;
1006
- border-right: 1px solid #e5eaf1;
1007
- border-bottom: 1px solid #e5eaf1;
1187
+ border-right: 1px solid var(--oxa-shell-border, #f0f0f0);
1188
+ border-bottom: 1px solid var(--oxa-shell-border, #f0f0f0);
1008
1189
  padding: 7px 9px;
1009
- background: #fff;
1190
+ background: var(--oxa-shell-surface, #fff);
1010
1191
  text-align: left;
1011
1192
  vertical-align: top;
1012
1193
  white-space: pre-wrap;
@@ -1018,8 +1199,8 @@ body {
1018
1199
  z-index: 1;
1019
1200
  left: 0;
1020
1201
  min-width: 52px;
1021
- background: #f5f7fa;
1022
- color: #7b879b;
1202
+ background: var(--oxa-shell-subtle, #fafafa);
1203
+ color: var(--oxa-shell-text-secondary, #595959);
1023
1204
  text-align: center;
1024
1205
  }
1025
1206
 
@@ -1054,7 +1235,7 @@ body {
1054
1235
  }
1055
1236
 
1056
1237
  .oxa-record-meta {
1057
- color: #7b879b;
1238
+ color: var(--oxa-shell-text-secondary, #595959);
1058
1239
  font-size: 12px;
1059
1240
  }
1060
1241
 
@@ -1069,10 +1250,7 @@ body {
1069
1250
  }
1070
1251
 
1071
1252
  .oxa-detail-layout {
1072
- display: grid;
1073
- grid-template-columns: minmax(0, 1fr) 320px;
1074
- align-items: start;
1075
- gap: 16px;
1253
+ display: block;
1076
1254
  }
1077
1255
 
1078
1256
  .oxa-detail-main,
@@ -1088,14 +1266,51 @@ body {
1088
1266
 
1089
1267
  .oxa-detail-main .ant-descriptions-item-label,
1090
1268
  .oxa-detail-aside .ant-descriptions-item-label {
1091
- color: #7b879b;
1269
+ color: var(--oxa-shell-text-secondary, #595959);
1270
+ }
1271
+
1272
+ .oxa-audit-collapse {
1273
+ overflow: hidden;
1274
+ border: 1px solid var(--oxa-shell-border, #f0f0f0);
1275
+ border-radius: 8px;
1276
+ background: var(--oxa-shell-surface, #fff);
1277
+ }
1278
+
1279
+ .oxa-audit-collapse > .ant-collapse-item > .ant-collapse-header {
1280
+ min-height: 52px;
1281
+ align-items: center;
1282
+ padding: 14px 18px;
1283
+ }
1284
+
1285
+ .oxa-audit-collapse .ant-collapse-content-box {
1286
+ padding: 0 18px 12px !important;
1287
+ }
1288
+
1289
+ .oxa-audit-collapse-heading {
1290
+ display: flex;
1291
+ min-width: 0;
1292
+ flex: 1;
1293
+ align-items: center;
1294
+ justify-content: space-between;
1295
+ gap: 16px;
1296
+ }
1297
+
1298
+ .oxa-audit-collapse-heading span {
1299
+ color: var(--oxa-shell-text-secondary, #595959);
1300
+ font-size: 12px;
1301
+ }
1302
+
1303
+ .oxa-audit-loading {
1304
+ padding: 18px 0;
1305
+ color: var(--oxa-shell-text-secondary, #595959);
1306
+ text-align: center;
1092
1307
  }
1093
1308
 
1094
1309
  .oxa-audit-entry {
1095
1310
  display: grid;
1096
1311
  gap: 4px;
1097
1312
  padding: 10px 0;
1098
- border-bottom: 1px solid #edf0f5;
1313
+ border-bottom: 1px solid var(--oxa-shell-border, #f0f0f0);
1099
1314
  }
1100
1315
 
1101
1316
  .oxa-audit-entry:last-child {
@@ -1116,7 +1331,7 @@ body {
1116
1331
 
1117
1332
  .oxa-audit-meta {
1118
1333
  flex-wrap: wrap;
1119
- color: #7b879b;
1334
+ color: var(--oxa-shell-text-secondary, #595959);
1120
1335
  font-size: 12px;
1121
1336
  }
1122
1337
 
@@ -1135,12 +1350,12 @@ body {
1135
1350
  gap: 3px;
1136
1351
  padding: 7px 8px;
1137
1352
  border-radius: 6px;
1138
- background: #f7f9fc;
1353
+ background: var(--oxa-shell-subtle, #fafafa);
1139
1354
  }
1140
1355
 
1141
1356
  .oxa-audit-change-values {
1142
1357
  min-width: 0;
1143
- color: #47566f;
1358
+ color: var(--oxa-shell-text-secondary, #595959);
1144
1359
  font-size: 12px;
1145
1360
  }
1146
1361
 
@@ -1152,7 +1367,7 @@ body {
1152
1367
  }
1153
1368
 
1154
1369
  .oxa-audit-entry > span {
1155
- color: #7b879b;
1370
+ color: var(--oxa-shell-text-secondary, #595959);
1156
1371
  font-size: 12px;
1157
1372
  }
1158
1373
 
@@ -1164,21 +1379,21 @@ body {
1164
1379
  justify-content: space-between;
1165
1380
  gap: 8px;
1166
1381
  padding: 9px 12px;
1167
- border: 1px solid #d9dfe9;
1382
+ border: 1px solid var(--oxa-shell-border-strong, #d9d9d9);
1168
1383
  border-radius: 8px;
1169
- background: #fff;
1170
- color: #1f2b3d;
1384
+ background: var(--oxa-shell-surface, #fff);
1385
+ color: var(--oxa-shell-text, #1f1f1f);
1171
1386
  font: inherit;
1172
1387
  text-align: left;
1173
1388
  }
1174
1389
 
1175
1390
  .oxa-mobile-reference-trigger:disabled {
1176
- background: #f5f7fa;
1177
- color: #9aa5b5;
1391
+ background: var(--oxa-shell-subtle, #fafafa);
1392
+ color: var(--oxa-shell-text-disabled, rgb(0 0 0 / 25%));
1178
1393
  }
1179
1394
 
1180
1395
  .oxa-mobile-reference-placeholder {
1181
- color: #9aa5b5;
1396
+ color: var(--oxa-shell-text-disabled, rgb(0 0 0 / 25%));
1182
1397
  }
1183
1398
 
1184
1399
  .oxa-mobile-reference-backdrop {
@@ -1187,7 +1402,7 @@ body {
1187
1402
  inset: 0;
1188
1403
  display: flex;
1189
1404
  align-items: flex-end;
1190
- background: rgb(15 23 42 / 42%);
1405
+ background: var(--oxa-shell-mask, rgb(0 0 0 / 45%));
1191
1406
  }
1192
1407
 
1193
1408
  .oxa-mobile-reference-sheet {
@@ -1198,7 +1413,7 @@ body {
1198
1413
  padding: 16px 16px max(16px, env(safe-area-inset-bottom));
1199
1414
  overflow: auto;
1200
1415
  border-radius: 16px 16px 0 0;
1201
- background: #fff;
1416
+ background: var(--oxa-shell-elevated, #fff);
1202
1417
  box-shadow: 0 -8px 32px rgb(15 23 42 / 18%);
1203
1418
  }
1204
1419
 
@@ -1206,7 +1421,7 @@ body {
1206
1421
  display: flex;
1207
1422
  align-items: center;
1208
1423
  justify-content: space-between;
1209
- color: #1f2b3d;
1424
+ color: var(--oxa-shell-text, #1f1f1f);
1210
1425
  }
1211
1426
 
1212
1427
  .oxa-mobile-reference-header button,
@@ -1214,7 +1429,7 @@ body {
1214
1429
  .oxa-mobile-reference-confirm {
1215
1430
  border: 0;
1216
1431
  background: transparent;
1217
- color: #2d6cdf;
1432
+ color: var(--oxa-shell-primary, #1677ff);
1218
1433
  font: inherit;
1219
1434
  }
1220
1435
 
@@ -1236,17 +1451,17 @@ body {
1236
1451
  border: 0;
1237
1452
  border-radius: 8px;
1238
1453
  background: transparent;
1239
- color: #1f2b3d;
1454
+ color: var(--oxa-shell-text, #1f1f1f);
1240
1455
  font: inherit;
1241
1456
  text-align: left;
1242
1457
  }
1243
1458
 
1244
1459
  .oxa-mobile-reference-option.is-selected {
1245
- background: #edf4ff;
1460
+ background: var(--oxa-shell-primary-bg, #e6f4ff);
1246
1461
  }
1247
1462
 
1248
1463
  .oxa-mobile-reference-option:disabled {
1249
- color: #aab3c0;
1464
+ color: var(--oxa-shell-text-disabled, rgb(0 0 0 / 25%));
1250
1465
  opacity: 0.7;
1251
1466
  }
1252
1467
 
@@ -1259,7 +1474,7 @@ body {
1259
1474
 
1260
1475
  .oxa-mobile-reference-option-copy small {
1261
1476
  overflow: hidden;
1262
- color: #7b879b;
1477
+ color: var(--oxa-shell-text-secondary, #595959);
1263
1478
  font-size: 12px;
1264
1479
  text-overflow: ellipsis;
1265
1480
  white-space: nowrap;
@@ -1269,26 +1484,26 @@ body {
1269
1484
  .oxa-mobile-reference-empty,
1270
1485
  .oxa-mobile-reference-error {
1271
1486
  padding: 12px 4px;
1272
- color: #7b879b;
1487
+ color: var(--oxa-shell-text-secondary, #595959);
1273
1488
  font-size: 13px;
1274
1489
  text-align: center;
1275
1490
  }
1276
1491
 
1277
1492
  .oxa-mobile-reference-error {
1278
- color: #cf3c46;
1493
+ color: var(--oxa-shell-error, #ff4d4f);
1279
1494
  }
1280
1495
 
1281
1496
  .oxa-mobile-reference-more,
1282
1497
  .oxa-mobile-reference-confirm {
1283
1498
  min-height: 42px;
1284
1499
  border-radius: 8px;
1285
- background: #f0f5ff;
1500
+ background: var(--oxa-shell-primary-bg, #e6f4ff);
1286
1501
  font-weight: 600;
1287
1502
  text-align: center;
1288
1503
  }
1289
1504
 
1290
1505
  .oxa-mobile-reference-confirm {
1291
- background: #2d6cdf;
1506
+ background: var(--oxa-shell-primary, #1677ff);
1292
1507
  color: #fff;
1293
1508
  }
1294
1509
 
@@ -1303,16 +1518,16 @@ body {
1303
1518
  min-height: 42px;
1304
1519
  align-items: center;
1305
1520
  justify-content: center;
1306
- border: 1px solid #d9dfe9 !important;
1521
+ border: 1px solid var(--oxa-shell-border-strong, #d9d9d9) !important;
1307
1522
  border-radius: 8px;
1308
- background: #fff !important;
1309
- color: #2d6cdf;
1523
+ background: var(--oxa-shell-surface, #fff) !important;
1524
+ color: var(--oxa-shell-primary, #1677ff);
1310
1525
  font-weight: 600;
1311
1526
  }
1312
1527
 
1313
1528
  .oxa-mobile-file-button.ant-btn:disabled {
1314
- background: #f5f7fa;
1315
- color: #9aa5b5;
1529
+ background: var(--oxa-shell-subtle, #fafafa);
1530
+ color: var(--oxa-shell-text-disabled, rgb(0 0 0 / 25%));
1316
1531
  }
1317
1532
 
1318
1533
  .oxa-mobile-pending-files {
@@ -1326,9 +1541,9 @@ body {
1326
1541
  align-items: center;
1327
1542
  gap: 8px;
1328
1543
  padding: 7px 9px;
1329
- border: 1px solid #dbe3ee;
1544
+ border: 1px solid var(--oxa-shell-border, #f0f0f0);
1330
1545
  border-radius: 8px;
1331
- background: #fbfcfe;
1546
+ background: var(--oxa-shell-subtle, #fafafa);
1332
1547
  font-size: 13px;
1333
1548
  }
1334
1549
 
@@ -1347,19 +1562,19 @@ body {
1347
1562
  }
1348
1563
 
1349
1564
  .oxa-mobile-pending-file-copy small {
1350
- color: #7b879b;
1565
+ color: var(--oxa-shell-text-secondary, #595959);
1351
1566
  font-size: 12px;
1352
1567
  }
1353
1568
 
1354
1569
  .oxa-mobile-pending-status {
1355
- color: #2d6cdf;
1570
+ color: var(--oxa-shell-primary, #1677ff);
1356
1571
  white-space: nowrap;
1357
1572
  }
1358
1573
 
1359
1574
  .oxa-mobile-pending-error {
1360
1575
  max-width: 42%;
1361
1576
  overflow: hidden;
1362
- color: #cf3c46;
1577
+ color: var(--oxa-shell-error, #ff4d4f);
1363
1578
  text-overflow: ellipsis;
1364
1579
  white-space: nowrap;
1365
1580
  }
@@ -1370,10 +1585,6 @@ body {
1370
1585
  grid-template-columns: repeat(2, minmax(0, 1fr));
1371
1586
  }
1372
1587
 
1373
- .oxa-detail-layout {
1374
- grid-template-columns: 1fr;
1375
- }
1376
-
1377
1588
  .oxa-detail-aside {
1378
1589
  position: static;
1379
1590
  grid-template-columns: repeat(2, minmax(0, 1fr));
@@ -1382,23 +1593,23 @@ body {
1382
1593
 
1383
1594
  @media (max-width: 900px) {
1384
1595
  .oxa-topbar {
1385
- height: 80px;
1386
- padding: 12px 16px !important;
1387
- }
1388
-
1389
- .oxa-topbar-page .ant-breadcrumb {
1390
- display: none;
1596
+ height: 52px;
1597
+ padding: 0 12px !important;
1391
1598
  }
1392
1599
 
1393
1600
  .oxa-current-user {
1394
1601
  min-width: 0;
1395
1602
  }
1396
1603
 
1397
- .oxa-current-user-copy,
1604
+ .oxa-current-user strong,
1398
1605
  .oxa-current-user-chevron {
1399
1606
  display: none;
1400
1607
  }
1401
1608
 
1609
+ .oxa-route-history {
1610
+ top: 52px;
1611
+ }
1612
+
1402
1613
  .oxa-main {
1403
1614
  padding: 16px;
1404
1615
  }
@@ -1409,6 +1620,22 @@ body {
1409
1620
  grid-template-columns: 1fr;
1410
1621
  }
1411
1622
 
1623
+ .oxa-search-panel {
1624
+ grid-template-columns: 1fr;
1625
+ }
1626
+
1627
+ .oxa-filter-actions,
1628
+ .oxa-list-toolbar,
1629
+ .oxa-batch-bar {
1630
+ align-items: stretch;
1631
+ flex-direction: column;
1632
+ }
1633
+
1634
+ .oxa-list-toolbar-primary,
1635
+ .oxa-list-toolbar-secondary {
1636
+ flex-wrap: wrap;
1637
+ }
1638
+
1412
1639
  .oxa-detail-hero-main,
1413
1640
  .oxa-detail-hero-top,
1414
1641
  .oxa-edit-hero-title,
@@ -1430,7 +1657,7 @@ body {
1430
1657
  .oxa-directory-tree-pane,
1431
1658
  .oxa-directory-selected-pane {
1432
1659
  border: 0;
1433
- border-bottom: 1px solid #edf0f5;
1660
+ border-bottom: 1px solid var(--oxa-shell-border, #f0f0f0);
1434
1661
  }
1435
1662
 
1436
1663
  .oxa-directory-tree-pane,
@@ -1440,3 +1667,11 @@ body {
1440
1667
  overflow: auto;
1441
1668
  }
1442
1669
  }
1670
+
1671
+ @media (prefers-reduced-motion: reduce) {
1672
+ .oxa-global-request-loading span {
1673
+ width: 100%;
1674
+ animation: none;
1675
+ transform: none;
1676
+ }
1677
+ }