@touchvue/ui 1.0.0-beta.13 → 1.0.0-beta.15

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.
Files changed (46) hide show
  1. package/es/components/tab/src/tab.vue.d.ts +4 -0
  2. package/es/packages/components/cascader/src/cascader.vue2.mjs +1 -1
  3. package/es/packages/components/cascader/src/cascader.vue2.mjs.map +1 -1
  4. package/es/packages/components/icon/index.mjs +3 -3
  5. package/es/packages/components/icon/index.mjs.map +1 -1
  6. package/es/packages/components/icon/src/icon.vue.mjs +2 -2
  7. package/es/packages/components/input/src/input.vue2.mjs +3 -3
  8. package/es/packages/components/input/src/input.vue2.mjs.map +1 -1
  9. package/es/packages/components/page/src/page.vue2.mjs +12 -13
  10. package/es/packages/components/page/src/page.vue2.mjs.map +1 -1
  11. package/es/packages/components/segment/src/segment.vue.mjs +7 -13
  12. package/es/packages/components/segment/src/segment.vue.mjs.map +1 -1
  13. package/es/packages/components/select/src/select.vue2.mjs +0 -6
  14. package/es/packages/components/select/src/select.vue2.mjs.map +1 -1
  15. package/es/packages/components/tab/src/tab.vue2.mjs +8 -1
  16. package/es/packages/components/tab/src/tab.vue2.mjs.map +1 -1
  17. package/es/packages/components/table/src/table.vue2.mjs +3 -8
  18. package/es/packages/components/table/src/table.vue2.mjs.map +1 -1
  19. package/es/packages/components/tip/src/tip.vue2.mjs +6 -6
  20. package/es/packages/components/tip/src/tip.vue2.mjs.map +1 -1
  21. package/es/packages/components/upload/src/upload.vue2.mjs +10 -7
  22. package/es/packages/components/upload/src/upload.vue2.mjs.map +1 -1
  23. package/lib/components/tab/src/tab.vue.d.ts +4 -0
  24. package/lib/packages/components/cascader/src/cascader.vue2.js +1 -1
  25. package/lib/packages/components/cascader/src/cascader.vue2.js.map +1 -1
  26. package/lib/packages/components/icon/src/icon.vue.js +2 -2
  27. package/lib/packages/components/input/src/input.vue2.js +3 -3
  28. package/lib/packages/components/input/src/input.vue2.js.map +1 -1
  29. package/lib/packages/components/page/src/page.vue2.js +12 -13
  30. package/lib/packages/components/page/src/page.vue2.js.map +1 -1
  31. package/lib/packages/components/segment/src/segment.vue.js +6 -12
  32. package/lib/packages/components/segment/src/segment.vue.js.map +1 -1
  33. package/lib/packages/components/select/src/select.vue2.js +0 -6
  34. package/lib/packages/components/select/src/select.vue2.js.map +1 -1
  35. package/lib/packages/components/tab/src/tab.vue2.js +8 -1
  36. package/lib/packages/components/tab/src/tab.vue2.js.map +1 -1
  37. package/lib/packages/components/table/src/table.vue2.js +3 -8
  38. package/lib/packages/components/table/src/table.vue2.js.map +1 -1
  39. package/lib/packages/components/tip/src/tip.vue2.js +5 -5
  40. package/lib/packages/components/tip/src/tip.vue2.js.map +1 -1
  41. package/lib/packages/components/upload/src/upload.vue2.js +10 -7
  42. package/lib/packages/components/upload/src/upload.vue2.js.map +1 -1
  43. package/package.json +1 -1
  44. package/theme/components/index.css +253 -168
  45. package/theme/index.css +253 -168
  46. package/theme/skin/default.css +253 -168
@@ -641,6 +641,8 @@ input.to-align-inherit,
641
641
  }
642
642
  .to-grid > [flex] {
643
643
  flex: 1;
644
+ min-width: 0;
645
+ min-height: 0;
644
646
  white-space: normal;
645
647
  }
646
648
  .to-grid:has(> [flex]) {
@@ -2125,43 +2127,42 @@ input.to-align-inherit,
2125
2127
  background: #3BB346;
2126
2128
  }
2127
2129
  .to-calendar {
2128
- --bg: #fff;
2129
2130
  position: relative;
2130
- background: var(--bg);
2131
+ background: #fff;
2131
2132
  text-align: center;
2132
2133
  user-select: none;
2133
2134
  }
2134
2135
  .to-calendar .header {
2135
- height: calc(1em + 2 * var(--gap));
2136
- line-height: calc(1em + 2 * var(--gap));
2137
- background: var(--primary);
2136
+ height: 3em;
2137
+ line-height: 3em;
2138
+ background: #0077fa;
2138
2139
  display: flex;
2139
2140
  width: 100%;
2140
- color: var(--bg);
2141
+ color: #fff;
2141
2142
  vertical-align: top;
2142
2143
  }
2143
2144
  .to-calendar .header .prevYear,
2144
2145
  .to-calendar .header .nextYear,
2145
2146
  .to-calendar .header .prev,
2146
2147
  .to-calendar .header .next {
2147
- width: calc(1em + 2 * var(--gap));
2148
+ width: 3em;
2148
2149
  cursor: pointer;
2149
2150
  }
2150
2151
  .to-calendar .header .prev:after {
2151
- font-family: 'icon';
2152
- content: '\e009';
2152
+ font-family: "icon";
2153
+ content: "\e009";
2153
2154
  }
2154
2155
  .to-calendar .header .next:after {
2155
- font-family: 'icon';
2156
- content: '\e05a';
2156
+ font-family: "icon";
2157
+ content: "\e05a";
2157
2158
  }
2158
2159
  .to-calendar .header .prevYear:after {
2159
- font-family: 'icon';
2160
- content: '\e035';
2160
+ font-family: "icon";
2161
+ content: "\e035";
2161
2162
  }
2162
2163
  .to-calendar .header .nextYear:after {
2163
- font-family: 'icon';
2164
- content: '\e046';
2164
+ font-family: "icon";
2165
+ content: "\e046";
2165
2166
  }
2166
2167
  .to-calendar .header .info {
2167
2168
  flex: 1;
@@ -2174,16 +2175,16 @@ input.to-align-inherit,
2174
2175
  cursor: pointer;
2175
2176
  }
2176
2177
  .to-calendar .header .info-unfold:after {
2177
- color: var(--primary-light-3);
2178
+ color: #4da0fc;
2178
2179
  font-size: 75%;
2179
- font-family: 'icon';
2180
- content: '\e081';
2180
+ font-family: "icon";
2181
+ content: "\e081";
2181
2182
  }
2182
2183
  .to-calendar .week {
2183
- background: var(--primary);
2184
- height: calc(1em + 2 * var(--gap));
2185
- line-height: calc(1em + 2 * var(--gap));
2186
- color: var(--bg);
2184
+ background: #0077fa;
2185
+ height: 3em;
2186
+ line-height: 3em;
2187
+ color: #fff;
2187
2188
  }
2188
2189
  .to-calendar .week > ul {
2189
2190
  display: flex;
@@ -2192,40 +2193,40 @@ input.to-align-inherit,
2192
2193
  flex: 1;
2193
2194
  }
2194
2195
  .to-calendar .day {
2195
- height: calc((1em + 2 * var(--gap)) * 6 + var(--gap));
2196
+ height: 19em;
2196
2197
  }
2197
2198
  .to-calendar .day > ul {
2198
2199
  overflow: hidden;
2199
- padding: calc(0.5 * var(--gap)) 0;
2200
+ padding: 0.5em 0;
2200
2201
  display: flex;
2201
2202
  flex-wrap: wrap;
2202
2203
  }
2203
2204
  .to-calendar .day > ul > li {
2204
2205
  width: 14.2857%;
2205
2206
  padding: 0;
2206
- height: calc(1em + 2 * var(--gap));
2207
+ height: 3em;
2207
2208
  text-align: center;
2208
2209
  position: relative;
2209
2210
  cursor: pointer;
2210
2211
  }
2211
2212
  .to-calendar .day > ul > li.sat {
2212
- color: var(--danger);
2213
+ color: #F93920;
2213
2214
  }
2214
2215
  .to-calendar .day > ul > li.sun {
2215
- color: var(--danger);
2216
+ color: #F93920;
2216
2217
  }
2217
2218
  .to-calendar .day > ul > li:not(:empty):after {
2218
- content: '';
2219
- width: calc(1em + 2 * var(--gap));
2220
- height: calc(1em + 2 * var(--gap));
2219
+ content: "";
2220
+ width: 3em;
2221
+ height: 3em;
2221
2222
  display: block;
2222
- border-radius: 52%;
2223
+ border-radius: 50%;
2223
2224
  margin: auto;
2224
2225
  }
2225
2226
  .to-calendar .day > ul > li.end:after,
2226
2227
  .to-calendar .day > ul > li.start:after,
2227
2228
  .to-calendar .day > ul > li.on:after {
2228
- background: var(--warning);
2229
+ background: #FC8800;
2229
2230
  }
2230
2231
  .to-calendar .day > ul > li > span.solar {
2231
2232
  position: absolute;
@@ -2234,73 +2235,73 @@ input.to-align-inherit,
2234
2235
  bottom: 0;
2235
2236
  left: 0;
2236
2237
  right: 0;
2237
- line-height: calc(1em + 2 * var(--gap));
2238
+ line-height: 3em;
2238
2239
  }
2239
2240
  .to-calendar .day > ul > li > span.lunar {
2240
2241
  display: none;
2241
2242
  }
2242
2243
  .to-calendar .day > ul > li.dis span {
2243
2244
  cursor: not-allowed;
2244
- color: var(--fg-light-8);
2245
+ color: #cccccc;
2245
2246
  }
2246
2247
  .to-calendar .day > ul > li.cur {
2247
- color: var(--primary);
2248
+ color: #0077fa;
2248
2249
  }
2249
2250
  .to-calendar .day > ul > li.start,
2250
2251
  .to-calendar .day > ul > li.end,
2251
2252
  .to-calendar .day > ul > li.on {
2252
- color: var(--bg);
2253
+ color: #fff;
2253
2254
  }
2254
2255
  .to-calendar .day > ul > li.range {
2255
- background: var(--warning-op-2);
2256
+ background: rgba(252, 136, 0, 0.2);
2256
2257
  }
2257
2258
  .to-calendar .day > ul > li.start {
2258
- background: linear-gradient(to right, var(--warning-op-0) 0%, var(--warning-op-0) 50%, var(--warning-op-2) 50%);
2259
+ background: linear-gradient(to right, rgba(252, 136, 0, 0) 0%, rgba(252, 136, 0, 0) 50%, rgba(252, 136, 0, 0.2) 50%);
2259
2260
  }
2260
2261
  .to-calendar .day > ul > li.end {
2261
- background: linear-gradient(to right, var(--warning-op-2) 0%, var(--warning-op-2) 50%, var(--warning-op-0) 50%);
2262
+ background: linear-gradient(to right, rgba(252, 136, 0, 0.2) 0%, rgba(252, 136, 0, 0.2) 50%, rgba(252, 136, 0, 0) 50%);
2262
2263
  }
2263
2264
  .to-calendar .day > ul > li.start.end {
2264
2265
  background: none;
2265
2266
  }
2266
2267
  .to-calendar .day > ul > li.on:nth-child(7n) > span,
2267
- .to-calendar .day > ul > li.on:nth-child(7n + 1) > span {
2268
- color: var(--bg);
2268
+ .to-calendar .day > ul > li.on:nth-child(7n+1) > span {
2269
+ color: #fff;
2269
2270
  }
2270
2271
  .to-calendar .month > ul > li.end:after,
2271
2272
  .to-calendar .month > ul > li.start:after,
2272
2273
  .to-calendar .month > ul > li.start,
2273
2274
  .to-calendar .month > ul > li.end,
2274
2275
  .to-calendar .month > ul > li.on {
2275
- color: var(--bg);
2276
+ color: #fff;
2276
2277
  }
2277
2278
  .to-calendar .month > ul > li.range {
2278
- background: var(--warning-op-2);
2279
+ background: rgba(252, 136, 0, 0.2);
2279
2280
  }
2280
2281
  .to-calendar .month > ul > li.start {
2281
- background: linear-gradient(to right, var(--warning-op-0) 0%, var(--warning-op-0) 50%, var(--warning-op-2) 50%);
2282
+ background: linear-gradient(to right, rgba(252, 136, 0, 0) 0%, rgba(252, 136, 0, 0) 50%, rgba(252, 136, 0, 0.2) 50%);
2282
2283
  }
2283
2284
  .to-calendar .month > ul > li.end {
2284
- background: linear-gradient(to right, var(--warning-op-2) 0%, var(--warning-op-2) 50%, var(--warning-op-0) 50%);
2285
+ background: linear-gradient(to right, rgba(252, 136, 0, 0.2) 0%, rgba(252, 136, 0, 0.2) 50%, rgba(252, 136, 0, 0) 50%);
2285
2286
  }
2286
2287
  .to-calendar .month > ul > li.end:after,
2287
2288
  .to-calendar .month > ul > li.start:after,
2288
2289
  .to-calendar .month > ul > li.on:after {
2289
- background: var(--warning);
2290
+ background: #FC8800;
2290
2291
  }
2291
2292
  .to-calendar .month > ul > li.start.end {
2292
2293
  background: none;
2293
2294
  }
2294
2295
  .to-calendar .shortcut {
2295
- background: var(--bg);
2296
+ background: #fff;
2296
2297
  position: absolute;
2297
- bottom: calc(1em + 2 * var(--gap));
2298
+ bottom: 3em;
2298
2299
  left: 0;
2299
2300
  width: 100%;
2300
- line-height: calc(1em + 2 * var(--gap));
2301
- color: var(--fg-light-1);
2302
- border-top: 1px var(--fg-light-9-3) solid;
2303
- box-shadow: 0 -3px 10px var(--fg-light-9-3);
2301
+ line-height: 3em;
2302
+ color: #191919;
2303
+ border-top: 1px #ededed solid;
2304
+ box-shadow: 0 -3px 10px #ededed;
2304
2305
  z-index: 2;
2305
2306
  }
2306
2307
  .to-calendar .shortcut li {
@@ -2317,9 +2318,9 @@ input.to-align-inherit,
2317
2318
  position: absolute;
2318
2319
  width: 100%;
2319
2320
  bottom: 0;
2320
- top: calc(1em + 2 * var(--gap));
2321
- background: var(--bg);
2322
- color: var(--bg);
2321
+ top: 3em;
2322
+ background: #fff;
2323
+ color: #fff;
2323
2324
  z-index: 12;
2324
2325
  }
2325
2326
  .to-calendar .select ul {
@@ -2329,17 +2330,17 @@ input.to-align-inherit,
2329
2330
  width: 20%;
2330
2331
  float: left;
2331
2332
  text-align: center;
2332
- height: calc(1em + 2 * var(--gap));
2333
+ height: 3em;
2333
2334
  z-index: 14;
2334
2335
  position: relative;
2335
- line-height: calc(1em + 2 * var(--gap));
2336
+ line-height: 3em;
2336
2337
  cursor: pointer;
2337
2338
  }
2338
2339
  .to-calendar .select ul li:after {
2339
- content: '';
2340
- width: calc(1em + 2 * var(--gap));
2341
- height: calc(1em + 2 * var(--gap));
2342
- border-radius: 52%;
2340
+ content: "";
2341
+ width: 3em;
2342
+ height: 3em;
2343
+ border-radius: 50%;
2343
2344
  z-index: -1;
2344
2345
  position: absolute;
2345
2346
  margin: 0 auto;
@@ -2349,26 +2350,26 @@ input.to-align-inherit,
2349
2350
  bottom: 0;
2350
2351
  }
2351
2352
  .to-calendar .select ul li.on:after {
2352
- background: var(--warning);
2353
+ background: #FC8800;
2353
2354
  }
2354
2355
  .to-calendar .select ul li.on {
2355
- color: var(--bg);
2356
+ color: #fff;
2356
2357
  }
2357
2358
  .to-calendar .select ul li.dis {
2358
2359
  cursor: not-allowed;
2359
- color: var(--fg-light-7);
2360
+ color: #b3b3b3;
2360
2361
  }
2361
2362
  .to-calendar .select ul li.cur {
2362
- color: var(--fg-light-1);
2363
+ color: #191919;
2363
2364
  }
2364
2365
  .to-calendar .select ul li.cur:after {
2365
- background: var(--primary-light-9);
2366
+ background: #e6f1ff;
2366
2367
  }
2367
2368
  .to-calendar .select ul li.on.cur {
2368
- color: var(--bg);
2369
+ color: #fff;
2369
2370
  }
2370
2371
  .to-calendar .select ul li.on.cur:after {
2371
- background: var(--warning);
2372
+ background: #FC8800;
2372
2373
  }
2373
2374
  .to-calendar .select .year {
2374
2375
  width: 100%;
@@ -2376,7 +2377,7 @@ input.to-align-inherit,
2376
2377
  overflow: hidden;
2377
2378
  display: table;
2378
2379
  table-layout: fixed;
2379
- background: var(--primary);
2380
+ background: #0077fa;
2380
2381
  }
2381
2382
  .to-calendar .select .year > ul {
2382
2383
  display: table-cell;
@@ -2387,20 +2388,20 @@ input.to-align-inherit,
2387
2388
  .to-calendar .select .year .next {
2388
2389
  display: table-cell;
2389
2390
  vertical-align: middle;
2390
- width: calc(1em + 2 * var(--gap));
2391
+ width: 3em;
2391
2392
  cursor: pointer;
2392
- color: var(--primary-light-3);
2393
+ color: #4da0fc;
2393
2394
  }
2394
2395
  .to-calendar .select .year .prev:after {
2395
- font-family: 'icon';
2396
- content: '\e009';
2396
+ font-family: "icon";
2397
+ content: "\e009";
2397
2398
  }
2398
2399
  .to-calendar .select .year .next:after {
2399
- font-family: 'icon';
2400
- content: '\e05a';
2400
+ font-family: "icon";
2401
+ content: "\e05a";
2401
2402
  }
2402
2403
  .to-calendar .select .month {
2403
- color: var(--fg-light-1);
2404
+ color: #191919;
2404
2405
  margin-top: 0.5em;
2405
2406
  }
2406
2407
  .to-calendar .select .month > ul > li {
@@ -2412,28 +2413,23 @@ input.to-align-inherit,
2412
2413
  float: none;
2413
2414
  }
2414
2415
  .to-calendar .time {
2415
- background: var(--bg-dark-0-5);
2416
+ background: #f2f2f2;
2416
2417
  display: flex;
2417
2418
  }
2418
2419
  .to-calendar .time .input {
2419
2420
  flex: 1;
2420
2421
  width: 1px;
2421
2422
  }
2422
- .to-calendar .time .to-calendar-time-input .to-input {
2423
- padding-left: 0;
2424
- padding-right: 0;
2425
- width: 100%;
2426
- }
2427
2423
  .to-calendar .time > .text {
2428
- color: var(--fg-light-6);
2429
- padding: 0 calc(0.5 * var(--gap));
2430
- line-height: calc(1em + 2 * var(--gap));
2424
+ color: #999999;
2425
+ padding: 0 0.5em;
2426
+ line-height: 3em;
2431
2427
  }
2432
2428
  .to-calendar .time .option {
2433
- background: var(--bg);
2429
+ background: #fff;
2434
2430
  position: absolute;
2435
2431
  top: 0;
2436
- bottom: calc(1em + 2 * var(--gap));
2432
+ bottom: 3em;
2437
2433
  left: 0;
2438
2434
  width: 100%;
2439
2435
  box-shadow: 0 -0.25em 0.25em rgba(0, 0, 0, 0.1);
@@ -2444,14 +2440,14 @@ input.to-align-inherit,
2444
2440
  .to-calendar .time .option .content {
2445
2441
  display: flex;
2446
2442
  position: absolute;
2447
- top: calc((1em + 2 * var(--gap)) * 1.167);
2443
+ top: 3.501em;
2448
2444
  bottom: 0;
2449
2445
  width: 100%;
2450
2446
  left: 0;
2451
2447
  }
2452
2448
  .to-calendar .time .option .content .to-scroll {
2453
2449
  flex: 1;
2454
- border-right: 1px solid var(--fg-light-9-5);
2450
+ border-right: 1px solid #f2f2f2;
2455
2451
  }
2456
2452
  .to-calendar .time .option .content .to-scroll:last-child {
2457
2453
  border: 0 none;
@@ -2459,11 +2455,11 @@ input.to-align-inherit,
2459
2455
  .to-calendar .time .option .content > ul > li {
2460
2456
  float: left;
2461
2457
  width: 16.6%;
2462
- height: calc(1em + 2 * var(--gap));
2458
+ height: 3em;
2463
2459
  position: relative;
2464
2460
  z-index: 13;
2465
2461
  overflow: hidden;
2466
- line-height: calc(1em + 2 * var(--gap));
2462
+ line-height: 3em;
2467
2463
  cursor: pointer;
2468
2464
  }
2469
2465
  .to-calendar .time .option .content > ul > li:nth-child(6n) {
@@ -2471,10 +2467,10 @@ input.to-align-inherit,
2471
2467
  width: auto;
2472
2468
  }
2473
2469
  .to-calendar .time .option .content > ul > li:after {
2474
- content: '';
2475
- width: calc(1em + 2 * var(--gap));
2476
- height: calc(1em + 2 * var(--gap));
2477
- border-radius: 52%;
2470
+ content: "";
2471
+ width: 3em;
2472
+ height: 3em;
2473
+ border-radius: 50%;
2478
2474
  z-index: -1;
2479
2475
  position: absolute;
2480
2476
  margin: 0 auto;
@@ -2484,20 +2480,20 @@ input.to-align-inherit,
2484
2480
  bottom: 0;
2485
2481
  }
2486
2482
  .to-calendar .time .option .content > ul > li.on:after {
2487
- background: var(--warning) !important;
2483
+ background: #FC8800 !important;
2488
2484
  }
2489
2485
  .to-calendar .time .option .content > ul > li.on {
2490
- color: var(--bg);
2486
+ color: #fff;
2491
2487
  }
2492
2488
  .to-calendar .time .option .content > ul > li.dis {
2493
2489
  cursor: not-allowed;
2494
- color: var(--fg-light-7);
2490
+ color: #b3b3b3;
2495
2491
  }
2496
2492
  .to-calendar .time > .on {
2497
- background: var(--bg);
2493
+ background: #fff;
2498
2494
  }
2499
2495
  .to-calendar .time > .on .text {
2500
- color: var(--fg-light-1);
2496
+ color: #191919;
2501
2497
  }
2502
2498
  .to-calendar .time > .on .option {
2503
2499
  display: block;
@@ -2520,15 +2516,15 @@ input.to-align-inherit,
2520
2516
  .to-calendar-type-month .select {
2521
2517
  position: relative;
2522
2518
  top: auto;
2523
- padding-bottom: calc(6 * var(--gap));
2519
+ padding-bottom: 6em;
2524
2520
  }
2525
2521
  .to-calendar-size-large {
2526
- border: 1px solid var(--fg-light-8-5);
2522
+ border: 1px solid #d9d9d9;
2527
2523
  }
2528
2524
  .to-calendar-size-large .day {
2529
2525
  overflow: hidden;
2530
2526
  height: auto;
2531
- background: var(--bg-dark-0-2);
2527
+ background: #fafafa;
2532
2528
  }
2533
2529
  .to-calendar-size-large .day > ul {
2534
2530
  margin-left: -1px;
@@ -2536,11 +2532,11 @@ input.to-align-inherit,
2536
2532
  padding: 0;
2537
2533
  }
2538
2534
  .to-calendar-size-large .day > ul > li {
2539
- height: calc(5.3em + var(--gap));
2535
+ height: 6.3em;
2540
2536
  box-sizing: border-box;
2541
- padding: calc(0.5 * var(--gap));
2542
- border-left: 1px solid var(--fg-light-8-5);
2543
- border-bottom: 1px solid var(--fg-light-8-5);
2537
+ padding: 0.5em;
2538
+ border-left: 1px solid #d9d9d9;
2539
+ border-bottom: 1px solid #d9d9d9;
2544
2540
  }
2545
2541
  .to-calendar-size-large .day > ul > li:not(:empty):after {
2546
2542
  z-index: -1;
@@ -2557,15 +2553,15 @@ input.to-align-inherit,
2557
2553
  .to-calendar-size-large .day > ul > li > span.solar {
2558
2554
  z-index: 1;
2559
2555
  line-height: 1em;
2560
- left: calc(0.5 * var(--gap));
2561
- top: calc(0.5 * var(--gap));
2556
+ left: 0.5em;
2557
+ top: 0.5em;
2562
2558
  text-align: left;
2563
2559
  }
2564
2560
  .to-calendar-size-large .day > ul > li:not(:empty) {
2565
- background: var(--bg);
2561
+ background: #fff;
2566
2562
  }
2567
2563
  .to-calendar-size-large .day > ul > li:not(:empty):hover {
2568
- background: var(--bg-dark-0-7);
2564
+ background: #ededed;
2569
2565
  }
2570
2566
  .to-calendar-size-large .day > ul > li:empty {
2571
2567
  border-left: 0;
@@ -2574,26 +2570,26 @@ input.to-align-inherit,
2574
2570
  border-right: 0 none;
2575
2571
  }
2576
2572
  .to-calendar-size-large .day > ul > li.on:nth-child(7n) > span,
2577
- .to-calendar-size-large .day > ul > li.on:nth-child(7n + 1) > span {
2578
- color: var(--danger);
2573
+ .to-calendar-size-large .day > ul > li.on:nth-child(7n+1) > span {
2574
+ color: #F93920;
2579
2575
  }
2580
2576
  .to-calendar-size-large .day > ul > li.on {
2581
- color: var(--fg);
2577
+ color: #000;
2582
2578
  z-index: 2;
2583
2579
  }
2584
2580
  .to-calendar-size-large .day > ul > li.on:not(:empty):after {
2585
- background: var(--primary-op-1);
2586
- border: 1px solid var(--primary-light-5);
2581
+ background: rgba(0, 119, 250, 0.1);
2582
+ border: 1px solid #80bbfd;
2587
2583
  }
2588
2584
  .to-calendar-size-large .day > ul > li:last-child:after {
2589
- border-right: 1px solid var(--fg-light-8-5);
2585
+ border-right: 1px solid #d9d9d9;
2590
2586
  }
2591
2587
  .to-calendar-size-large .to-calendar-points {
2592
2588
  transform: scale(0.8);
2593
2589
  z-index: 1;
2594
2590
  left: 0;
2595
2591
  top: auto;
2596
- bottom: calc(0.2 * var(--gap));
2592
+ bottom: 0.2em;
2597
2593
  right: auto;
2598
2594
  text-align: left;
2599
2595
  transform-origin: bottom left;
@@ -2602,99 +2598,99 @@ input.to-align-inherit,
2602
2598
  margin-top: 0;
2603
2599
  }
2604
2600
  .to-calendar-size-large .to-calendar-legend {
2605
- border-top: 1px solid var(--fg-light-8-5);
2606
- padding: calc(0.25 * var(--gap));
2601
+ border-top: 1px solid #d9d9d9;
2602
+ padding: 0.25em;
2607
2603
  }
2608
2604
  .to-calendar-lunar .day > ul > li > span.solar {
2609
2605
  line-height: 1.2;
2610
2606
  font-size: 85.71%;
2611
- top: calc(((1em + 2 * var(--gap))-(1.2 * 0.875)-(1.2 * 0.75))/0.875/2);
2607
+ top: 1.05em/0.875/2;
2612
2608
  }
2613
2609
  .to-calendar-lunar .day > ul > li > span.lunar {
2614
2610
  line-height: 1.2;
2615
2611
  position: absolute;
2616
2612
  margin: 0;
2617
2613
  font-size: 75%;
2618
- bottom: calc(((1em + 2 * var(--gap))-(1.2 * 0.875)-(1.2 * 0.75))/0.75/2);
2614
+ bottom: 1.05em/0.75/2;
2619
2615
  left: 0;
2620
2616
  right: 0;
2621
2617
  text-align: center;
2622
2618
  width: 100%;
2623
2619
  overflow: hidden;
2624
- color: var(--fg-light-6);
2620
+ color: #999999;
2625
2621
  display: inline-block;
2626
2622
  margin: auto;
2627
2623
  white-space: nowrap;
2628
2624
  }
2629
2625
  .to-calendar-lunar .day > ul > li > span.lunar-month {
2630
- color: var(--primary);
2626
+ color: #0077fa;
2631
2627
  }
2632
2628
  .to-calendar-lunar .day > ul > li.on > span.lunar {
2633
- color: var(--bg);
2629
+ color: #fff;
2634
2630
  }
2635
2631
  .to-calendar-lunar.to-calendar-s .day > ul > li > span.solar {
2636
- line-height: calc(1em + 2 * var(--gap));
2632
+ line-height: 3em;
2637
2633
  }
2638
2634
  .to-calendar-lunar.to-calendar-s .day > ul > li > span.lunar {
2639
2635
  display: none;
2640
2636
  }
2641
2637
  .to-calendar-hasTime {
2642
- height: calc(10 * (1em + 2 * var(--gap)) + var(--gap));
2638
+ height: 31em;
2643
2639
  }
2644
2640
  .s_pc .to-calendar .header .prevYear:hover,
2645
2641
  .s_pc .to-calendar .header .nextYear:hover,
2646
2642
  .s_pc .to-calendar .header .info-unfold:hover,
2647
2643
  .s_pc .to-calendar .header .prev:hover,
2648
2644
  .s_pc .to-calendar .header .next:hover {
2649
- background: var(--primary-light-3);
2645
+ background: #4da0fc;
2650
2646
  }
2651
2647
  .s_pc .to-calendar .day > ul > li:not(:empty):hover:after {
2652
- background: var(--bg-dark-0-7);
2648
+ background: #ededed;
2653
2649
  }
2654
2650
  .s_pc .to-calendar .day > ul > li.end:hover:after,
2655
2651
  .s_pc .to-calendar .day > ul > li.start:hover:after,
2656
2652
  .s_pc .to-calendar .day > ul > li.on:hover:after {
2657
- background: var(--warning);
2653
+ background: #FC8800;
2658
2654
  }
2659
2655
  .s_pc .to-calendar .day > ul > li.dis:hover:after {
2660
2656
  background: none;
2661
2657
  }
2662
2658
  .s_pc .to-calendar .select ul li:hover:after {
2663
- background: var(--bg-dark-0-7);
2659
+ background: #ededed;
2664
2660
  }
2665
2661
  .s_pc .to-calendar .select ul li:hover {
2666
- color: var(--fg-light-1);
2662
+ color: #191919;
2667
2663
  }
2668
2664
  .s_pc .to-calendar .select ul li.on:hover:after {
2669
- background: var(--warning);
2665
+ background: #FC8800;
2670
2666
  }
2671
2667
  .s_pc .to-calendar .select ul li.on:hover {
2672
- color: var(--bg);
2668
+ color: #fff;
2673
2669
  }
2674
2670
  .s_pc .to-calendar .select ul li.dis:hover:after {
2675
2671
  background: none;
2676
2672
  }
2677
2673
  .s_pc .to-calendar .select .year .next:hover,
2678
2674
  .s_pc .to-calendar .select .year .prev:hover {
2679
- background: var(--primary-dark-1);
2675
+ background: #006be1;
2680
2676
  }
2681
2677
  .s_pc .to-calendar .shortcut li:hover {
2682
- background: var(--bg-dark-0-7);
2678
+ background: #ededed;
2683
2679
  }
2684
2680
  .s_pc .to-calendar .time .option > ul > li:hover:after {
2685
- background: var(--bg-dark-0-7);
2686
- color: var(--fg-light-1);
2681
+ background: #ededed;
2682
+ color: #191919;
2687
2683
  }
2688
2684
  .s_pc .to-calendar .time .option > ul > li.dis:hover:after {
2689
2685
  background: none;
2690
2686
  }
2691
2687
  .s_pc .to-calendar-size-large .day > ul > li:not(:empty):hover:after {
2692
- background: var(--bg-dark-0-5);
2693
- border: 1px solid var(--fg-light-8-5);
2688
+ background: #f2f2f2;
2689
+ border: 1px solid #d9d9d9;
2694
2690
  }
2695
2691
  .s_pc .to-calendar-size-large .day > ul > li.on:hover:after {
2696
- background: var(--primary-light-9);
2697
- border: 1px solid var(--primary-light-5);
2692
+ background: #e6f1ff;
2693
+ border: 1px solid #80bbfd;
2698
2694
  }
2699
2695
  .s_pc .to-calendar .header .info.active,
2700
2696
  .s_phone .to-calendar .header .info.active,
@@ -2705,17 +2701,17 @@ input.to-align-inherit,
2705
2701
  .s_pc .to-calendar .header .next.active,
2706
2702
  .s_phone .to-calendar .header .next.active,
2707
2703
  .s_pad .to-calendar .header .next.active {
2708
- background: var(--primary-dark-1);
2704
+ background: #006be1;
2709
2705
  }
2710
2706
  .s_pc .to-calendar .day > ul > li:not(:empty).active:after,
2711
2707
  .s_phone .to-calendar .day > ul > li:not(:empty).active:after,
2712
2708
  .s_pad .to-calendar .day > ul > li:not(:empty).active:after {
2713
- background: var(--bg-dark-0-7);
2709
+ background: #ededed;
2714
2710
  }
2715
2711
  .s_pc .to-calendar .day > ul > li.on.active:after,
2716
2712
  .s_phone .to-calendar .day > ul > li.on.active:after,
2717
2713
  .s_pad .to-calendar .day > ul > li.on.active:after {
2718
- background: var(--warning);
2714
+ background: #FC8800;
2719
2715
  }
2720
2716
  .s_pc .to-calendar .day > ul > li.dis.active:after,
2721
2717
  .s_phone .to-calendar .day > ul > li.dis.active:after,
@@ -2725,8 +2721,8 @@ input.to-align-inherit,
2725
2721
  .s_pc .to-calendar .time .option > ul > li.active:after,
2726
2722
  .s_phone .to-calendar .time .option > ul > li.active:after,
2727
2723
  .s_pad .to-calendar .time .option > ul > li.active:after {
2728
- background: var(--bg-dark-0-7);
2729
- color: var(--fg-light-1);
2724
+ background: #ededed;
2725
+ color: #191919;
2730
2726
  }
2731
2727
  .s_pc .to-calendar .time .option > ul > li.dis.active:after,
2732
2728
  .s_phone .to-calendar .time .option > ul > li.dis.active:after,
@@ -2736,22 +2732,22 @@ input.to-align-inherit,
2736
2732
  .s_pc .to-calendar .select ul li.active:after,
2737
2733
  .s_phone .to-calendar .select ul li.active:after,
2738
2734
  .s_pad .to-calendar .select ul li.active:after {
2739
- background: var(--bg-dark-0-7);
2735
+ background: #ededed;
2740
2736
  }
2741
2737
  .s_pc .to-calendar .select ul li.active,
2742
2738
  .s_phone .to-calendar .select ul li.active,
2743
2739
  .s_pad .to-calendar .select ul li.active {
2744
- color: var(--fg-light-1);
2740
+ color: #191919;
2745
2741
  }
2746
2742
  .s_pc .to-calendar .select ul li.on.active:after,
2747
2743
  .s_phone .to-calendar .select ul li.on.active:after,
2748
2744
  .s_pad .to-calendar .select ul li.on.active:after {
2749
- background: var(--warning);
2745
+ background: #FC8800;
2750
2746
  }
2751
2747
  .s_pc .to-calendar .select ul li.on.active,
2752
2748
  .s_phone .to-calendar .select ul li.on.active,
2753
2749
  .s_pad .to-calendar .select ul li.on.active {
2754
- color: var(--bg);
2750
+ color: #fff;
2755
2751
  }
2756
2752
  .s_pc .to-calendar .select ul li.dis.active:after,
2757
2753
  .s_phone .to-calendar .select ul li.dis.active:after,
@@ -2764,23 +2760,17 @@ input.to-align-inherit,
2764
2760
  .s_pc .to-calendar .select .year .prev.active,
2765
2761
  .s_phone .to-calendar .select .year .prev.active,
2766
2762
  .s_pad .to-calendar .select .year .prev.active {
2767
- background: var(--primary-dark-1);
2763
+ background: #006be1;
2768
2764
  }
2769
2765
  .s_pc .to-calendar-size-large .day > ul > li:not(:empty):active:after,
2770
2766
  .s_phone .to-calendar-size-large .day > ul > li:not(:empty):active:after,
2771
2767
  .s_pad .to-calendar-size-large .day > ul > li:not(:empty):active:after {
2772
- background: var(--bg-dark-1);
2768
+ background: #e6e6e6;
2773
2769
  }
2774
2770
  .s_pc .to-calendar-size-large .day > ul > li.on:active:after,
2775
2771
  .s_phone .to-calendar-size-large .day > ul > li.on:active:after,
2776
2772
  .s_pad .to-calendar-size-large .day > ul > li.on:active:after {
2777
- background: var(--primary-op-2);
2778
- }
2779
- .to-calendar-time-input {
2780
- background-color: var(--bg-dark-0-2);
2781
- }
2782
- .to-calendar-time-input .to-input {
2783
- background-color: var(--bg-dark-0-2);
2773
+ background: rgba(0, 119, 250, 0.2);
2784
2774
  }
2785
2775
  .to-select {
2786
2776
  --height: var(--height-fe);
@@ -3164,7 +3154,7 @@ input.to-align-inherit,
3164
3154
  }
3165
3155
  .to-form-value {
3166
3156
  flex: 1;
3167
- overflow: hidden;
3157
+ min-width: 0;
3168
3158
  }
3169
3159
  .to-form-value .to-switch {
3170
3160
  margin-top: calc((var(--item-height) - 1.43em) / 2);
@@ -3184,7 +3174,7 @@ input.to-align-inherit,
3184
3174
  flex: 1;
3185
3175
  width: auto;
3186
3176
  }
3187
- .to-form.submit-position-corner .to-formitem.is-placeholder {
3177
+ .to-form.submit-position-corner .to-form-item.is-placeholder {
3188
3178
  visibility: hidden;
3189
3179
  content: "";
3190
3180
  height: var(--item-height);
@@ -3237,6 +3227,7 @@ input.to-align-inherit,
3237
3227
  }
3238
3228
  .to-header {
3239
3229
  --bg: none;
3230
+ --bg-size: 100% 100%;
3240
3231
  --height: auto;
3241
3232
  --padding: 0;
3242
3233
  --gap: 0;
@@ -3261,6 +3252,7 @@ input.to-align-inherit,
3261
3252
  padding: var(--padding);
3262
3253
  height: var(--height);
3263
3254
  background: var(--bg);
3255
+ background-size: var(--bg-size);
3264
3256
  display: flex;
3265
3257
  overflow: hidden;
3266
3258
  align-items: center;
@@ -5331,6 +5323,13 @@ input.to-align-inherit,
5331
5323
  height: calc(100% - var(--item-height));
5332
5324
  overflow: auto;
5333
5325
  }
5326
+ .to-tab.item-dir-v {
5327
+ --item-height: auto;
5328
+ --item-padding: 1em;
5329
+ }
5330
+ .to-tab.item-dir-v .to-tab-item-content {
5331
+ flex-direction: column;
5332
+ }
5334
5333
  .to-table {
5335
5334
  --border: 0 none;
5336
5335
  --radius: 0;
@@ -5366,6 +5365,15 @@ input.to-align-inherit,
5366
5365
  border-collapse: collapse;
5367
5366
  width: 100%;
5368
5367
  }
5368
+ .to-table-col {
5369
+ min-width: 5em;
5370
+ }
5371
+ .to-table-col.type-index,
5372
+ .to-table-col.type-radio,
5373
+ .to-table-col.type-check {
5374
+ width: 3em;
5375
+ min-width: auto;
5376
+ }
5369
5377
  .to-table-th {
5370
5378
  background: var(--th-bg);
5371
5379
  height: var(--th-height);
@@ -6058,6 +6066,7 @@ input.to-align-inherit,
6058
6066
  --item-bg: var(--color-bg);
6059
6067
  --item-radius: var(--radius-fe);
6060
6068
  --item-shadow: none;
6069
+ --item-gap: 0.5em;
6061
6070
  --check-size: 1em;
6062
6071
  --check-bg: #fff;
6063
6072
  --check-color: #fff;
@@ -6079,10 +6088,34 @@ input.to-align-inherit,
6079
6088
  --hover-item-color: var(--item-color);
6080
6089
  --hover-item-bg: rgba(0, 0, 0, 0.1);
6081
6090
  --hover-item-shadow: var(--item-shadow);
6091
+ --hover-check-bg: var(--check-bg);
6092
+ --hover-check-color: var(--check-color);
6093
+ --hover-check-border: var(--check-border);
6094
+ --hover-radio-border: var(--radio-border);
6082
6095
  --active-item-border: var(--item-border);
6083
6096
  --active-item-color: var(--item-color);
6084
6097
  --active-item-bg: rgba(0, 0, 0, 0.2);
6085
6098
  --active-item-shadow: var(--item-shadow);
6099
+ --active-check-bg: var(--check-bg);
6100
+ --active-check-color: var(--check-color);
6101
+ --active-check-border: var(--check-border);
6102
+ --active-radio-border: var(--radio-border);
6103
+ --on-hover-item-border: var(--on-item-border);
6104
+ --on-hover-item-color: var(--on-item-color);
6105
+ --on-hover-item-bg: rgba(0, 0, 0, 0.1);
6106
+ --on-hover-item-shadow: var(--on-item-shadow);
6107
+ --on-hover-check-bg: var(--on-check-bg);
6108
+ --on-hover-check-color: var(--on-check-color);
6109
+ --on-hover-check-border: var(--on-check-border);
6110
+ --on-hover-radio-border: var(--on-radio-border);
6111
+ --on-active-item-border: var(--on-item-border);
6112
+ --on-active-item-color: var(--on-item-color);
6113
+ --on-active-item-bg: rgba(0, 0, 0, 0.2);
6114
+ --on-active-item-shadow: var(--on-item-shadow);
6115
+ --on-active-check-bg: var(--on-check-bg);
6116
+ --on-active-check-color: var(--on-check-color);
6117
+ --on-active-check-border: var(--on-check-border);
6118
+ --on-active-radio-border: var(--on-radio-border);
6086
6119
  }
6087
6120
  .to-segment {
6088
6121
  position: relative;
@@ -6103,7 +6136,7 @@ input.to-align-inherit,
6103
6136
  box-sizing: border-box;
6104
6137
  border-radius: var(--item-radius);
6105
6138
  border: var(--item-border);
6106
- height: var(--height);
6139
+ min-height: var(--height);
6107
6140
  padding: var(--item-padding);
6108
6141
  gap: 0.5em;
6109
6142
  display: flex;
@@ -6135,18 +6168,37 @@ input.to-align-inherit,
6135
6168
  background: var(--on-item-bg);
6136
6169
  z-index: 1;
6137
6170
  }
6171
+ .to-segment-item.is-on:hover {
6172
+ background: var(--on-hover-item-bg);
6173
+ border: var(--on-hover-item-border);
6174
+ color: var(--on-hover-item-color);
6175
+ box-shadow: var(--on-hover-item-shadow);
6176
+ }
6177
+ .to-segment-item.is-on:active {
6178
+ background: var(--on-active-item-bg);
6179
+ border: var(--on-active-item-border);
6180
+ color: var(--on-active-item-color);
6181
+ box-shadow: var(--on-active-item-shadow);
6182
+ }
6138
6183
  .to-segment-check {
6139
6184
  display: none;
6140
6185
  }
6141
- .to-segment-text {
6186
+ .to-segment-content {
6187
+ display: flex;
6188
+ align-items: center;
6142
6189
  flex: 1;
6143
6190
  overflow: hidden;
6144
6191
  text-overflow: ellipsis;
6145
6192
  white-space: nowrap;
6193
+ gap: var(--item-gap);
6194
+ }
6195
+ .to-segment-icon {
6196
+ --width: 1em;
6197
+ --height: 1em;
6198
+ --size: 1em;
6146
6199
  }
6147
6200
  .to-segment.type-check .to-segment-check {
6148
6201
  display: flex;
6149
- content: '';
6150
6202
  width: var(--check-size);
6151
6203
  height: var(--check-size);
6152
6204
  box-sizing: border-box;
@@ -6157,18 +6209,39 @@ input.to-align-inherit,
6157
6209
  border-radius: var(--check-radius);
6158
6210
  align-items: center;
6159
6211
  justify-content: center;
6212
+ box-shadow: var(--check-shadow);
6160
6213
  }
6161
6214
  .to-segment.type-check .to-segment-check:after {
6162
- content: "\e05c";
6215
+ content: "\e6cd";
6163
6216
  font-family: "icon";
6164
6217
  font-size: var(--check-font-size);
6165
6218
  vertical-align: top;
6166
6219
  }
6220
+ .to-segment.type-check .to-segment-item:hover .to-segment-check {
6221
+ background: var(--hover-check-bg);
6222
+ color: var(--hover-check-color);
6223
+ border: var(--hover-check-border);
6224
+ }
6225
+ .to-segment.type-check .to-segment-item:active .to-segment-check {
6226
+ background: var(--active-check-bg);
6227
+ color: var(--active-check-color);
6228
+ border: var(--active-check-border);
6229
+ }
6167
6230
  .to-segment.type-check .to-segment-item.is-on .to-segment-check {
6168
6231
  color: var(--on-check-color);
6169
6232
  border: var(--on-check-border);
6170
6233
  background: var(--on-check-bg);
6171
6234
  }
6235
+ .to-segment.type-check .to-segment-item.is-on:hover .to-segment-check {
6236
+ background: var(--on-hover-check-bg);
6237
+ color: var(--on-hover-check-color);
6238
+ border: var(--on-hover-check-border);
6239
+ }
6240
+ .to-segment.type-check .to-segment-item.is-on:active .to-segment-check {
6241
+ background: var(--on-active-check-bg);
6242
+ color: var(--on-active-check-color);
6243
+ border: var(--on-active-check-border);
6244
+ }
6172
6245
  .to-segment.type-radio .to-segment-check {
6173
6246
  content: '';
6174
6247
  width: var(--radio-size);
@@ -6179,9 +6252,21 @@ input.to-align-inherit,
6179
6252
  background: #fff;
6180
6253
  display: block;
6181
6254
  }
6255
+ .to-segment.type-radio .to-segment-item:hover .to-segment-check {
6256
+ border: var(--hover-radio-border);
6257
+ }
6258
+ .to-segment.type-radio .to-segment-item:active .to-segment-check {
6259
+ border: var(--active-radio-border);
6260
+ }
6182
6261
  .to-segment.type-radio .to-segment-item.is-on .to-segment-check {
6183
6262
  border: var(--on-radio-border);
6184
6263
  }
6264
+ .to-segment.type-radio .to-segment-item.is-on:hover .to-segment-check {
6265
+ border: var(--on-hover-radio-border);
6266
+ }
6267
+ .to-segment.type-radio .to-segment-item.is-on:active .to-segment-check {
6268
+ border: var(--on-active-radio-border);
6269
+ }
6185
6270
  .to-segment.type-sku {
6186
6271
  --check-color: var(--color-primary);
6187
6272
  --check-size: 0.8;
@@ -6212,7 +6297,7 @@ input.to-align-inherit,
6212
6297
  line-height: 1em;
6213
6298
  vertical-align: top;
6214
6299
  font-family: icon;
6215
- content: '\e05c';
6300
+ content: "\e6cd";
6216
6301
  font-size: calc(0.7em * var(--check-size));
6217
6302
  right: 0.1em;
6218
6303
  bottom: 0.2em;
@@ -6306,7 +6391,7 @@ input.to-align-inherit,
6306
6391
  width: var(--width);
6307
6392
  transform-origin: center;
6308
6393
  transition: transform ease-in-out 0.1s;
6309
- border: 1px solid #fff;
6394
+ border: var(--border);
6310
6395
  background: var(--bg);
6311
6396
  box-shadow: var(--shadow);
6312
6397
  }