@omnia/runtime 8.0.19-vnext → 8.0.21-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.
@@ -98,7 +98,7 @@
98
98
  width: 100%;
99
99
  }
100
100
 
101
- .v-tooltip .v-overlay__content {
101
+ .v-tooltip > .v-overlay__content {
102
102
  background: rgba(var(--v-theme-surface-variant), 0.7);
103
103
  color: rgb(var(--v-theme-on-surface-variant));
104
104
  border-radius: 4px;
@@ -112,11 +112,11 @@
112
112
  pointer-events: none;
113
113
  transition-property: opacity, transform;
114
114
  }
115
- .v-tooltip .v-overlay__content[class*=enter-active] {
115
+ .v-tooltip > .v-overlay__content[class*=enter-active] {
116
116
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
117
117
  transition-duration: 150ms;
118
118
  }
119
- .v-tooltip .v-overlay__content[class*=leave-active] {
119
+ .v-tooltip > .v-overlay__content[class*=leave-active] {
120
120
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
121
121
  transition-duration: 75ms;
122
122
  }
@@ -604,14 +604,14 @@
604
604
  opacity: 0;
605
605
  }
606
606
 
607
- .v-menu .v-overlay__content {
607
+ .v-menu > .v-overlay__content {
608
608
  display: flex;
609
609
  flex-direction: column;
610
610
  border-radius: 4px;
611
611
  }
612
- .v-menu .v-overlay__content > .v-card,
613
- .v-menu .v-overlay__content > .v-sheet,
614
- .v-menu .v-overlay__content > .v-list {
612
+ .v-menu > .v-overlay__content > .v-card,
613
+ .v-menu > .v-overlay__content > .v-sheet,
614
+ .v-menu > .v-overlay__content > .v-list {
615
615
  background: rgb(var(--v-theme-surface));
616
616
  border-radius: inherit;
617
617
  overflow: auto;
@@ -1551,6 +1551,7 @@
1551
1551
 
1552
1552
  .v-badge__badge {
1553
1553
  align-items: center;
1554
+ display: inline-flex;
1554
1555
  border-radius: 10px;
1555
1556
  font-size: 0.75rem;
1556
1557
  font-weight: 500;
@@ -33,6 +33,18 @@
33
33
  .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-end .v-data-table-header__content {
34
34
  flex-direction: row-reverse;
35
35
  }
36
+ .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-center,
37
+ .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-center,
38
+ .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-center,
39
+ .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-center {
40
+ text-align: center;
41
+ }
42
+ .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-center .v-data-table-header__content,
43
+ .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-center .v-data-table-header__content,
44
+ .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-center .v-data-table-header__content,
45
+ .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-center .v-data-table-header__content {
46
+ justify-content: center;
47
+ }
36
48
  .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--no-padding,
37
49
  .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--no-padding,
38
50
  .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--no-padding,
@@ -120,133 +132,6 @@
120
132
  .v-data-table-rows-no-data {
121
133
  text-align: center;
122
134
  }
123
- .v-table {
124
- background: rgb(var(--v-theme-surface));
125
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
126
- }
127
- .v-table .v-table-divider {
128
- border-right: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
129
- }
130
- .v-table .v-table__wrapper > table > thead > tr > th {
131
- border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
132
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
133
- }
134
- .v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > td,
135
- .v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > th {
136
- border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
137
- }
138
- .v-table .v-table__wrapper > table > tfoot > tr > td,
139
- .v-table .v-table__wrapper > table > tfoot > tr > th {
140
- border-top: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
141
- }
142
- .v-table.v-table--hover > .v-table__wrapper > table > tbody > tr:hover {
143
- background: rgba(var(--v-border-color), var(--v-hover-opacity));
144
- }
145
- .v-table.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
146
- background: rgb(var(--v-theme-surface));
147
- box-shadow: inset 0 -1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
148
- z-index: 1;
149
- }
150
- .v-table.v-table--fixed-footer > tfoot > tr > th,
151
- .v-table.v-table--fixed-footer > tfoot > tr > td {
152
- background: rgb(var(--v-theme-surface));
153
- box-shadow: inset 0 1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
154
- }
155
-
156
- .v-table {
157
- --v-table-header-height: 56px;
158
- border-radius: inherit;
159
- line-height: 1.5;
160
- max-width: 100%;
161
- }
162
- .v-table > .v-table__wrapper > table {
163
- width: 100%;
164
- border-spacing: 0;
165
- }
166
- .v-table > .v-table__wrapper > table > tbody > tr > td,
167
- .v-table > .v-table__wrapper > table > tbody > tr > th,
168
- .v-table > .v-table__wrapper > table > thead > tr > td,
169
- .v-table > .v-table__wrapper > table > thead > tr > th,
170
- .v-table > .v-table__wrapper > table > tfoot > tr > td,
171
- .v-table > .v-table__wrapper > table > tfoot > tr > th {
172
- padding: 0 16px;
173
- transition: height cubic-bezier(0.4, 0, 0.2, 1);
174
- }
175
- .v-table > .v-table__wrapper > table > tbody > tr > th,
176
- .v-table > .v-table__wrapper > table > thead > tr > th,
177
- .v-table > .v-table__wrapper > table > tfoot > tr > th {
178
- font-weight: 500;
179
- user-select: none;
180
- text-align: start;
181
- }
182
- .v-table--density-default > .v-table__wrapper > table > tbody > tr > th,
183
- .v-table--density-default > .v-table__wrapper > table > thead > tr > th,
184
- .v-table--density-default > .v-table__wrapper > table > tfoot > tr > th {
185
- height: calc(var(--v-table-header-height) + 0px);
186
- }
187
- .v-table--density-default > .v-table__wrapper > table > tbody > tr > td,
188
- .v-table--density-default > .v-table__wrapper > table > thead > tr > td,
189
- .v-table--density-default > .v-table__wrapper > table > tfoot > tr > td {
190
- height: calc(var(--v-table-row-height, 52px) + 0px);
191
- }
192
-
193
- .v-table--density-comfortable > .v-table__wrapper > table > tbody > tr > th,
194
- .v-table--density-comfortable > .v-table__wrapper > table > thead > tr > th,
195
- .v-table--density-comfortable > .v-table__wrapper > table > tfoot > tr > th {
196
- height: calc(var(--v-table-header-height) - 8px);
197
- }
198
- .v-table--density-comfortable > .v-table__wrapper > table > tbody > tr > td,
199
- .v-table--density-comfortable > .v-table__wrapper > table > thead > tr > td,
200
- .v-table--density-comfortable > .v-table__wrapper > table > tfoot > tr > td {
201
- height: calc(var(--v-table-row-height, 52px) - 8px);
202
- }
203
-
204
- .v-table--density-compact > .v-table__wrapper > table > tbody > tr > th,
205
- .v-table--density-compact > .v-table__wrapper > table > thead > tr > th,
206
- .v-table--density-compact > .v-table__wrapper > table > tfoot > tr > th {
207
- height: calc(var(--v-table-header-height) - 16px);
208
- }
209
- .v-table--density-compact > .v-table__wrapper > table > tbody > tr > td,
210
- .v-table--density-compact > .v-table__wrapper > table > thead > tr > td,
211
- .v-table--density-compact > .v-table__wrapper > table > tfoot > tr > td {
212
- height: calc(var(--v-table-row-height, 52px) - 16px);
213
- }
214
-
215
- .v-table__wrapper {
216
- border-radius: inherit;
217
- overflow: auto;
218
- }
219
-
220
- .v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:first-child {
221
- border-top-left-radius: 0;
222
- }
223
- .v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:last-child {
224
- border-top-right-radius: 0;
225
- }
226
-
227
- .v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:first-child {
228
- border-bottom-left-radius: 0;
229
- }
230
- .v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:last-child {
231
- border-bottom-right-radius: 0;
232
- }
233
-
234
- .v-table--fixed-height > .v-table__wrapper {
235
- overflow-y: auto;
236
- }
237
-
238
- .v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
239
- border-bottom: 0px !important;
240
- position: sticky;
241
- top: 0;
242
- }
243
-
244
- .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
245
- .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
246
- border-top: 0px !important;
247
- position: sticky;
248
- bottom: 0;
249
- }
250
135
  .v-data-table-footer {
251
136
  display: flex;
252
137
  align-items: center;
@@ -3,7 +3,7 @@
3
3
  justify-content: center;
4
4
  margin: auto;
5
5
  }
6
- .v-dialog .v-overlay__content {
6
+ .v-dialog > .v-overlay__content {
7
7
  max-height: calc(100% - 48px);
8
8
  width: calc(100% - 48px);
9
9
  max-width: calc(100% - 48px);
@@ -11,24 +11,24 @@
11
11
  display: flex;
12
12
  flex-direction: column;
13
13
  }
14
- .v-dialog .v-overlay__content > .v-card,
15
- .v-dialog .v-overlay__content > .v-sheet {
14
+ .v-dialog > .v-overlay__content > .v-card,
15
+ .v-dialog > .v-overlay__content > .v-sheet {
16
16
  --v-scrollbar-offset: 0px;
17
17
  border-radius: 4px;
18
18
  overflow-y: auto;
19
19
  box-shadow: 0px 11px 15px -7px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 24px 38px 3px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 9px 46px 8px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
20
20
  }
21
- .v-dialog .v-overlay__content > .v-card {
21
+ .v-dialog > .v-overlay__content > .v-card {
22
22
  display: flex;
23
23
  flex-direction: column;
24
24
  }
25
- .v-dialog .v-overlay__content > .v-card > .v-card-item {
25
+ .v-dialog > .v-overlay__content > .v-card > .v-card-item {
26
26
  padding: 14px 24px 0;
27
27
  }
28
- .v-dialog .v-overlay__content > .v-card > .v-card-item + .v-card-text {
28
+ .v-dialog > .v-overlay__content > .v-card > .v-card-item + .v-card-text {
29
29
  padding-top: 10px;
30
30
  }
31
- .v-dialog .v-overlay__content > .v-card > .v-card-text {
31
+ .v-dialog > .v-overlay__content > .v-card > .v-card-text {
32
32
  font-size: inherit;
33
33
  letter-spacing: 0.03125em;
34
34
  line-height: inherit;
@@ -38,7 +38,7 @@
38
38
  .v-dialog--fullscreen {
39
39
  --v-scrollbar-offset: 0px;
40
40
  }
41
- .v-dialog--fullscreen .v-overlay__content {
41
+ .v-dialog--fullscreen > .v-overlay__content {
42
42
  border-radius: 0;
43
43
  margin: 0;
44
44
  padding: 0;
@@ -50,27 +50,27 @@
50
50
  top: 0;
51
51
  left: 0;
52
52
  }
53
- .v-dialog--fullscreen .v-overlay__content > .v-card,
54
- .v-dialog--fullscreen .v-overlay__content > .v-sheet {
53
+ .v-dialog--fullscreen > .v-overlay__content > .v-card,
54
+ .v-dialog--fullscreen > .v-overlay__content > .v-sheet {
55
55
  min-height: 100%;
56
56
  min-width: 100%;
57
57
  border-radius: 0;
58
58
  }
59
59
 
60
- .v-dialog--scrollable .v-overlay__content,
61
- .v-dialog--scrollable .v-overlay__content > form {
60
+ .v-dialog--scrollable > .v-overlay__content,
61
+ .v-dialog--scrollable > .v-overlay__content > form {
62
62
  display: flex;
63
63
  }
64
- .v-dialog--scrollable .v-overlay__content > .v-card,
65
- .v-dialog--scrollable .v-overlay__content > form > .v-card {
64
+ .v-dialog--scrollable > .v-overlay__content > .v-card,
65
+ .v-dialog--scrollable > .v-overlay__content > form > .v-card {
66
66
  display: flex;
67
67
  flex: 1 1 100%;
68
68
  flex-direction: column;
69
69
  max-height: 100%;
70
70
  max-width: 100%;
71
71
  }
72
- .v-dialog--scrollable .v-overlay__content > .v-card > .v-card-text,
73
- .v-dialog--scrollable .v-overlay__content > form > .v-card > .v-card-text {
72
+ .v-dialog--scrollable > .v-overlay__content > .v-card > .v-card-text,
73
+ .v-dialog--scrollable > .v-overlay__content > form > .v-card > .v-card-text {
74
74
  backface-visibility: hidden;
75
75
  overflow-y: auto;
76
76
  }
@@ -133,6 +133,7 @@
133
133
  flex: 1 1 auto;
134
134
  max-width: 100%;
135
135
  min-height: 100vh;
136
+ min-height: 100dvh;
136
137
  position: relative;
137
138
  }
138
139
  .v-main {
@@ -1598,13 +1599,8 @@
1598
1599
  pointer-events: none;
1599
1600
  }
1600
1601
 
1601
- .v-app-bar .v-btn {
1602
- box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
1603
- }
1604
-
1605
1602
  .v-card-actions .v-btn {
1606
1603
  padding: 0 8px;
1607
- box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
1608
1604
  }
1609
1605
  .v-card-actions .v-btn ~ .v-btn {
1610
1606
  margin-inline-start: 0.5rem;
@@ -1627,43 +1623,6 @@
1627
1623
  .v-snackbar-actions .v-btn {
1628
1624
  padding: 0 8px;
1629
1625
  }
1630
- .v-ripple__container {
1631
- color: inherit;
1632
- border-radius: inherit;
1633
- position: absolute;
1634
- width: 100%;
1635
- height: 100%;
1636
- left: 0;
1637
- top: 0;
1638
- overflow: hidden;
1639
- z-index: 0;
1640
- pointer-events: none;
1641
- contain: strict;
1642
- }
1643
- .v-ripple__animation {
1644
- color: inherit;
1645
- position: absolute;
1646
- top: 0;
1647
- left: 0;
1648
- border-radius: 50%;
1649
- background: currentColor;
1650
- opacity: 0;
1651
- pointer-events: none;
1652
- overflow: hidden;
1653
- will-change: transform, opacity;
1654
- }
1655
- .v-ripple__animation--enter {
1656
- transition: none;
1657
- opacity: 0;
1658
- }
1659
- .v-ripple__animation--in {
1660
- transition: transform 0.25s cubic-bezier(0, 0, 0.2, 1), opacity 0.1s cubic-bezier(0, 0, 0.2, 1);
1661
- opacity: calc(0.25 * var(--v-theme-overlay-multiplier));
1662
- }
1663
- .v-ripple__animation--out {
1664
- transition: opacity 0.3s cubic-bezier(0, 0, 0.2, 1);
1665
- opacity: 0;
1666
- }
1667
1626
  .v-btn-toggle .v-btn.v-btn--selected:not(.v-btn--disabled) .v-btn__overlay {
1668
1627
  opacity: var(--v-activated-opacity);
1669
1628
  }
@@ -1937,6 +1896,43 @@
1937
1896
  background-position-x: var(--v-progress-linear-height);
1938
1897
  }
1939
1898
  }
1899
+ .v-ripple__container {
1900
+ color: inherit;
1901
+ border-radius: inherit;
1902
+ position: absolute;
1903
+ width: 100%;
1904
+ height: 100%;
1905
+ left: 0;
1906
+ top: 0;
1907
+ overflow: hidden;
1908
+ z-index: 0;
1909
+ pointer-events: none;
1910
+ contain: strict;
1911
+ }
1912
+ .v-ripple__animation {
1913
+ color: inherit;
1914
+ position: absolute;
1915
+ top: 0;
1916
+ left: 0;
1917
+ border-radius: 50%;
1918
+ background: currentColor;
1919
+ opacity: 0;
1920
+ pointer-events: none;
1921
+ overflow: hidden;
1922
+ will-change: transform, opacity;
1923
+ }
1924
+ .v-ripple__animation--enter {
1925
+ transition: none;
1926
+ opacity: 0;
1927
+ }
1928
+ .v-ripple__animation--in {
1929
+ transition: transform 0.25s cubic-bezier(0, 0, 0.2, 1), opacity 0.1s cubic-bezier(0, 0, 0.2, 1);
1930
+ opacity: calc(0.25 * var(--v-theme-overlay-multiplier));
1931
+ }
1932
+ .v-ripple__animation--out {
1933
+ transition: opacity 0.3s cubic-bezier(0, 0, 0.2, 1);
1934
+ opacity: 0;
1935
+ }
1940
1936
  .v-progress-circular {
1941
1937
  align-items: center;
1942
1938
  display: inline-flex;
@@ -2243,7 +2239,7 @@ html.v-overlay-scroll-blocked {
2243
2239
  border-radius: inherit;
2244
2240
  bottom: 0;
2245
2241
  left: 0;
2246
- opacity: 32%;
2242
+ opacity: 0.32;
2247
2243
  position: fixed;
2248
2244
  right: 0;
2249
2245
  top: 0;
@@ -2379,6 +2375,133 @@ html.v-overlay-scroll-blocked {
2379
2375
  font-size: 12px;
2380
2376
  transition-duration: 150ms;
2381
2377
  }
2378
+ .v-table {
2379
+ background: rgb(var(--v-theme-surface));
2380
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
2381
+ }
2382
+ .v-table .v-table-divider {
2383
+ border-right: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
2384
+ }
2385
+ .v-table .v-table__wrapper > table > thead > tr > th {
2386
+ border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
2387
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
2388
+ }
2389
+ .v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > td,
2390
+ .v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > th {
2391
+ border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
2392
+ }
2393
+ .v-table .v-table__wrapper > table > tfoot > tr > td,
2394
+ .v-table .v-table__wrapper > table > tfoot > tr > th {
2395
+ border-top: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
2396
+ }
2397
+ .v-table.v-table--hover > .v-table__wrapper > table > tbody > tr:hover {
2398
+ background: rgba(var(--v-border-color), var(--v-hover-opacity));
2399
+ }
2400
+ .v-table.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
2401
+ background: rgb(var(--v-theme-surface));
2402
+ box-shadow: inset 0 -1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
2403
+ z-index: 1;
2404
+ }
2405
+ .v-table.v-table--fixed-footer > tfoot > tr > th,
2406
+ .v-table.v-table--fixed-footer > tfoot > tr > td {
2407
+ background: rgb(var(--v-theme-surface));
2408
+ box-shadow: inset 0 1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
2409
+ }
2410
+
2411
+ .v-table {
2412
+ --v-table-header-height: 56px;
2413
+ border-radius: inherit;
2414
+ line-height: 1.5;
2415
+ max-width: 100%;
2416
+ }
2417
+ .v-table > .v-table__wrapper > table {
2418
+ width: 100%;
2419
+ border-spacing: 0;
2420
+ }
2421
+ .v-table > .v-table__wrapper > table > tbody > tr > td,
2422
+ .v-table > .v-table__wrapper > table > tbody > tr > th,
2423
+ .v-table > .v-table__wrapper > table > thead > tr > td,
2424
+ .v-table > .v-table__wrapper > table > thead > tr > th,
2425
+ .v-table > .v-table__wrapper > table > tfoot > tr > td,
2426
+ .v-table > .v-table__wrapper > table > tfoot > tr > th {
2427
+ padding: 0 16px;
2428
+ transition: height cubic-bezier(0.4, 0, 0.2, 1);
2429
+ }
2430
+ .v-table > .v-table__wrapper > table > tbody > tr > th,
2431
+ .v-table > .v-table__wrapper > table > thead > tr > th,
2432
+ .v-table > .v-table__wrapper > table > tfoot > tr > th {
2433
+ font-weight: 500;
2434
+ user-select: none;
2435
+ text-align: start;
2436
+ }
2437
+ .v-table--density-default > .v-table__wrapper > table > tbody > tr > th,
2438
+ .v-table--density-default > .v-table__wrapper > table > thead > tr > th,
2439
+ .v-table--density-default > .v-table__wrapper > table > tfoot > tr > th {
2440
+ height: calc(var(--v-table-header-height) + 0px);
2441
+ }
2442
+ .v-table--density-default > .v-table__wrapper > table > tbody > tr > td,
2443
+ .v-table--density-default > .v-table__wrapper > table > thead > tr > td,
2444
+ .v-table--density-default > .v-table__wrapper > table > tfoot > tr > td {
2445
+ height: calc(var(--v-table-row-height, 52px) + 0px);
2446
+ }
2447
+
2448
+ .v-table--density-comfortable > .v-table__wrapper > table > tbody > tr > th,
2449
+ .v-table--density-comfortable > .v-table__wrapper > table > thead > tr > th,
2450
+ .v-table--density-comfortable > .v-table__wrapper > table > tfoot > tr > th {
2451
+ height: calc(var(--v-table-header-height) - 8px);
2452
+ }
2453
+ .v-table--density-comfortable > .v-table__wrapper > table > tbody > tr > td,
2454
+ .v-table--density-comfortable > .v-table__wrapper > table > thead > tr > td,
2455
+ .v-table--density-comfortable > .v-table__wrapper > table > tfoot > tr > td {
2456
+ height: calc(var(--v-table-row-height, 52px) - 8px);
2457
+ }
2458
+
2459
+ .v-table--density-compact > .v-table__wrapper > table > tbody > tr > th,
2460
+ .v-table--density-compact > .v-table__wrapper > table > thead > tr > th,
2461
+ .v-table--density-compact > .v-table__wrapper > table > tfoot > tr > th {
2462
+ height: calc(var(--v-table-header-height) - 16px);
2463
+ }
2464
+ .v-table--density-compact > .v-table__wrapper > table > tbody > tr > td,
2465
+ .v-table--density-compact > .v-table__wrapper > table > thead > tr > td,
2466
+ .v-table--density-compact > .v-table__wrapper > table > tfoot > tr > td {
2467
+ height: calc(var(--v-table-row-height, 52px) - 16px);
2468
+ }
2469
+
2470
+ .v-table__wrapper {
2471
+ border-radius: inherit;
2472
+ overflow: auto;
2473
+ }
2474
+
2475
+ .v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:first-child {
2476
+ border-top-left-radius: 0;
2477
+ }
2478
+ .v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:last-child {
2479
+ border-top-right-radius: 0;
2480
+ }
2481
+
2482
+ .v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:first-child {
2483
+ border-bottom-left-radius: 0;
2484
+ }
2485
+ .v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:last-child {
2486
+ border-bottom-right-radius: 0;
2487
+ }
2488
+
2489
+ .v-table--fixed-height > .v-table__wrapper {
2490
+ overflow-y: auto;
2491
+ }
2492
+
2493
+ .v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
2494
+ border-bottom: 0px !important;
2495
+ position: sticky;
2496
+ top: 0;
2497
+ }
2498
+
2499
+ .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
2500
+ .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
2501
+ border-top: 0px !important;
2502
+ position: sticky;
2503
+ bottom: 0;
2504
+ }
2382
2505
  /* region INPUT */
2383
2506
  .v-field {
2384
2507
  display: grid;
@@ -9563,6 +9686,10 @@ html.overflow-y-hidden {
9563
9686
  height: 100% !important;
9564
9687
  }
9565
9688
 
9689
+ .h-screen {
9690
+ height: 100dvh !important;
9691
+ }
9692
+
9566
9693
  .w-auto {
9567
9694
  width: auto !important;
9568
9695
  }