@omnia/runtime 8.0.18-vnext → 8.0.20-vnext
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.
|
@@ -2379,6 +2379,133 @@ html.v-overlay-scroll-blocked {
|
|
|
2379
2379
|
font-size: 12px;
|
|
2380
2380
|
transition-duration: 150ms;
|
|
2381
2381
|
}
|
|
2382
|
+
.v-table {
|
|
2383
|
+
background: rgb(var(--v-theme-surface));
|
|
2384
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
2385
|
+
}
|
|
2386
|
+
.v-table .v-table-divider {
|
|
2387
|
+
border-right: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
|
2388
|
+
}
|
|
2389
|
+
.v-table .v-table__wrapper > table > thead > tr > th {
|
|
2390
|
+
border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
|
2391
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
|
2392
|
+
}
|
|
2393
|
+
.v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > td,
|
|
2394
|
+
.v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > th {
|
|
2395
|
+
border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
|
2396
|
+
}
|
|
2397
|
+
.v-table .v-table__wrapper > table > tfoot > tr > td,
|
|
2398
|
+
.v-table .v-table__wrapper > table > tfoot > tr > th {
|
|
2399
|
+
border-top: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
|
2400
|
+
}
|
|
2401
|
+
.v-table.v-table--hover > .v-table__wrapper > table > tbody > tr:hover {
|
|
2402
|
+
background: rgba(var(--v-border-color), var(--v-hover-opacity));
|
|
2403
|
+
}
|
|
2404
|
+
.v-table.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
|
|
2405
|
+
background: rgb(var(--v-theme-surface));
|
|
2406
|
+
box-shadow: inset 0 -1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
|
|
2407
|
+
z-index: 1;
|
|
2408
|
+
}
|
|
2409
|
+
.v-table.v-table--fixed-footer > tfoot > tr > th,
|
|
2410
|
+
.v-table.v-table--fixed-footer > tfoot > tr > td {
|
|
2411
|
+
background: rgb(var(--v-theme-surface));
|
|
2412
|
+
box-shadow: inset 0 1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
|
|
2413
|
+
}
|
|
2414
|
+
|
|
2415
|
+
.v-table {
|
|
2416
|
+
--v-table-header-height: 56px;
|
|
2417
|
+
border-radius: inherit;
|
|
2418
|
+
line-height: 1.5;
|
|
2419
|
+
max-width: 100%;
|
|
2420
|
+
}
|
|
2421
|
+
.v-table > .v-table__wrapper > table {
|
|
2422
|
+
width: 100%;
|
|
2423
|
+
border-spacing: 0;
|
|
2424
|
+
}
|
|
2425
|
+
.v-table > .v-table__wrapper > table > tbody > tr > td,
|
|
2426
|
+
.v-table > .v-table__wrapper > table > tbody > tr > th,
|
|
2427
|
+
.v-table > .v-table__wrapper > table > thead > tr > td,
|
|
2428
|
+
.v-table > .v-table__wrapper > table > thead > tr > th,
|
|
2429
|
+
.v-table > .v-table__wrapper > table > tfoot > tr > td,
|
|
2430
|
+
.v-table > .v-table__wrapper > table > tfoot > tr > th {
|
|
2431
|
+
padding: 0 16px;
|
|
2432
|
+
transition: height cubic-bezier(0.4, 0, 0.2, 1);
|
|
2433
|
+
}
|
|
2434
|
+
.v-table > .v-table__wrapper > table > tbody > tr > th,
|
|
2435
|
+
.v-table > .v-table__wrapper > table > thead > tr > th,
|
|
2436
|
+
.v-table > .v-table__wrapper > table > tfoot > tr > th {
|
|
2437
|
+
font-weight: 500;
|
|
2438
|
+
user-select: none;
|
|
2439
|
+
text-align: start;
|
|
2440
|
+
}
|
|
2441
|
+
.v-table--density-default > .v-table__wrapper > table > tbody > tr > th,
|
|
2442
|
+
.v-table--density-default > .v-table__wrapper > table > thead > tr > th,
|
|
2443
|
+
.v-table--density-default > .v-table__wrapper > table > tfoot > tr > th {
|
|
2444
|
+
height: calc(var(--v-table-header-height) + 0px);
|
|
2445
|
+
}
|
|
2446
|
+
.v-table--density-default > .v-table__wrapper > table > tbody > tr > td,
|
|
2447
|
+
.v-table--density-default > .v-table__wrapper > table > thead > tr > td,
|
|
2448
|
+
.v-table--density-default > .v-table__wrapper > table > tfoot > tr > td {
|
|
2449
|
+
height: calc(var(--v-table-row-height, 52px) + 0px);
|
|
2450
|
+
}
|
|
2451
|
+
|
|
2452
|
+
.v-table--density-comfortable > .v-table__wrapper > table > tbody > tr > th,
|
|
2453
|
+
.v-table--density-comfortable > .v-table__wrapper > table > thead > tr > th,
|
|
2454
|
+
.v-table--density-comfortable > .v-table__wrapper > table > tfoot > tr > th {
|
|
2455
|
+
height: calc(var(--v-table-header-height) - 8px);
|
|
2456
|
+
}
|
|
2457
|
+
.v-table--density-comfortable > .v-table__wrapper > table > tbody > tr > td,
|
|
2458
|
+
.v-table--density-comfortable > .v-table__wrapper > table > thead > tr > td,
|
|
2459
|
+
.v-table--density-comfortable > .v-table__wrapper > table > tfoot > tr > td {
|
|
2460
|
+
height: calc(var(--v-table-row-height, 52px) - 8px);
|
|
2461
|
+
}
|
|
2462
|
+
|
|
2463
|
+
.v-table--density-compact > .v-table__wrapper > table > tbody > tr > th,
|
|
2464
|
+
.v-table--density-compact > .v-table__wrapper > table > thead > tr > th,
|
|
2465
|
+
.v-table--density-compact > .v-table__wrapper > table > tfoot > tr > th {
|
|
2466
|
+
height: calc(var(--v-table-header-height) - 16px);
|
|
2467
|
+
}
|
|
2468
|
+
.v-table--density-compact > .v-table__wrapper > table > tbody > tr > td,
|
|
2469
|
+
.v-table--density-compact > .v-table__wrapper > table > thead > tr > td,
|
|
2470
|
+
.v-table--density-compact > .v-table__wrapper > table > tfoot > tr > td {
|
|
2471
|
+
height: calc(var(--v-table-row-height, 52px) - 16px);
|
|
2472
|
+
}
|
|
2473
|
+
|
|
2474
|
+
.v-table__wrapper {
|
|
2475
|
+
border-radius: inherit;
|
|
2476
|
+
overflow: auto;
|
|
2477
|
+
}
|
|
2478
|
+
|
|
2479
|
+
.v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:first-child {
|
|
2480
|
+
border-top-left-radius: 0;
|
|
2481
|
+
}
|
|
2482
|
+
.v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:last-child {
|
|
2483
|
+
border-top-right-radius: 0;
|
|
2484
|
+
}
|
|
2485
|
+
|
|
2486
|
+
.v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:first-child {
|
|
2487
|
+
border-bottom-left-radius: 0;
|
|
2488
|
+
}
|
|
2489
|
+
.v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:last-child {
|
|
2490
|
+
border-bottom-right-radius: 0;
|
|
2491
|
+
}
|
|
2492
|
+
|
|
2493
|
+
.v-table--fixed-height > .v-table__wrapper {
|
|
2494
|
+
overflow-y: auto;
|
|
2495
|
+
}
|
|
2496
|
+
|
|
2497
|
+
.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
|
|
2498
|
+
border-bottom: 0px !important;
|
|
2499
|
+
position: sticky;
|
|
2500
|
+
top: 0;
|
|
2501
|
+
}
|
|
2502
|
+
|
|
2503
|
+
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
|
|
2504
|
+
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
|
|
2505
|
+
border-top: 0px !important;
|
|
2506
|
+
position: sticky;
|
|
2507
|
+
bottom: 0;
|
|
2508
|
+
}
|
|
2382
2509
|
/* region INPUT */
|
|
2383
2510
|
.v-field {
|
|
2384
2511
|
display: grid;
|