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

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