@omnia/runtime 8.0.523-dev → 8.0.525-dev

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.
@@ -111,7 +111,7 @@
111
111
  }
112
112
 
113
113
  .v-alert:not(:has(.v-alert-title)) .v-alert__content {
114
- padding-top: 0.125rem;
114
+ padding-block: calc((1.75rem - 1.5 * 1rem) / 2);
115
115
  }
116
116
 
117
117
  .v-alert__border {
@@ -150,7 +150,9 @@
150
150
  .v-alert__close {
151
151
  flex: 0 1 auto;
152
152
  grid-area: close;
153
- margin-block: -2px;
153
+ }
154
+ .v-alert__close > .v-btn {
155
+ margin-block: calc(-1 * (var(--v-btn-height) + 12px - 1.75rem) / 2);
154
156
  }
155
157
 
156
158
  .v-alert__content {
@@ -180,6 +182,11 @@
180
182
  margin-inline-end: 16px;
181
183
  min-height: 1.75rem;
182
184
  }
185
+ .v-alert__prepend > .v-icon {
186
+ font-size: 1.75rem;
187
+ height: 1.75rem;
188
+ width: 1.75rem;
189
+ }
183
190
  .v-alert--prominent .v-alert__prepend {
184
191
  align-self: center;
185
192
  }
@@ -3389,9 +3389,17 @@ html.v-overlay-scroll-blocked {
3389
3389
  .v-window--show-arrows-on-hover .v-window__left {
3390
3390
  transform: translateX(-200%);
3391
3391
  }
3392
+ :has(.v-window__controls--right).v-window--show-arrows-on-hover .v-window__left {
3393
+ transform: translateX(200%);
3394
+ }
3395
+
3392
3396
  .v-window--show-arrows-on-hover .v-window__right {
3393
3397
  transform: translateX(200%);
3394
3398
  }
3399
+ :has(.v-window__controls--left).v-window--show-arrows-on-hover .v-window__right {
3400
+ transform: translateX(-200%);
3401
+ }
3402
+
3395
3403
  .v-window--show-arrows-on-hover:hover .v-window__left,
3396
3404
  .v-window--show-arrows-on-hover:hover .v-window__right {
3397
3405
  transform: translateX(0);
@@ -3713,10 +3721,10 @@ html.v-overlay-scroll-blocked {
3713
3721
  height: 100%;
3714
3722
  }
3715
3723
  .v-table.v-table--striped-even > .v-table__wrapper > table > tbody > tr:nth-child(even) {
3716
- background-color: rgba(var(--v-border-color), var(--v-hover-opacity));
3724
+ background-image: linear-gradient(0deg, rgba(var(--v-border-color), var(--v-hover-opacity)), rgba(var(--v-border-color), var(--v-hover-opacity)));
3717
3725
  }
3718
3726
  .v-table.v-table--striped-odd > .v-table__wrapper > table > tbody > tr:nth-child(odd) {
3719
- background-color: rgba(var(--v-border-color), var(--v-hover-opacity));
3727
+ background-image: linear-gradient(0deg, rgba(var(--v-border-color), var(--v-hover-opacity)), rgba(var(--v-border-color), var(--v-hover-opacity)));
3720
3728
  }
3721
3729
  .v-table.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
3722
3730
  background: rgb(var(--v-theme-surface));
@@ -22554,7 +22562,8 @@ html.overflow-y-hidden {
22554
22562
  .v-data-table-column--fixed,
22555
22563
  .v-data-table-column--fixed-end,
22556
22564
  .v-data-table__th--sticky {
22557
- background: rgb(var(--v-theme-surface));
22565
+ background-color: rgb(var(--v-theme-surface));
22566
+ background-image: inherit;
22558
22567
  position: sticky !important;
22559
22568
  left: 0;
22560
22569
  z-index: 1;
@@ -24810,7 +24819,7 @@ html.overflow-y-hidden {
24810
24819
 
24811
24820
  .v-slider.v-input--horizontal .v-slider-thumb__label > .v-slider-thumb__label-wedge {
24812
24821
  clip-path: polygon(50% 100%, 0 50%, 100% 50%);
24813
- bottom: -6px;
24822
+ bottom: calc(-6px + 0.2px);
24814
24823
  }
24815
24824
 
24816
24825
  .v-slider.v-input--vertical .v-slider-thumb {
@@ -24826,7 +24835,7 @@ html.overflow-y-hidden {
24826
24835
  }
24827
24836
  .v-slider.v-input--vertical .v-slider-thumb__label > .v-slider-thumb__label-wedge {
24828
24837
  clip-path: polygon(0 50%, 50% 0, 50% 100%);
24829
- left: -6px;
24838
+ left: calc(-6px + 0.2px);
24830
24839
  }
24831
24840
 
24832
24841
  .v-slider-thumb--focused .v-slider-thumb__surface::before {
@@ -25700,6 +25709,8 @@ html.overflow-y-hidden {
25700
25709
  }
25701
25710
  .v-stepper-item--disabled {
25702
25711
  opacity: var(--v-medium-emphasis-opacity);
25712
+ }
25713
+ .v-stepper-item[disabled], .v-stepper-item--disabled {
25703
25714
  pointer-events: none;
25704
25715
  }
25705
25716
  .v-stepper--alt-labels .v-stepper-item {
@@ -4,6 +4,12 @@
4
4
  .v-treeview-item.v-treeview-item--filtered {
5
5
  display: none;
6
6
  }
7
+ .v-treeview-item.v-list-item--disabled:not(a) {
8
+ pointer-events: auto;
9
+ }
10
+ .v-treeview-item.v-list-item--disabled:not(a) .v-selection-control {
11
+ pointer-events: none;
12
+ }
7
13
  .v-treeview-item__level {
8
14
  width: 28px;
9
15
  }
@@ -29,6 +29,7 @@
29
29
  overflow: hidden;
30
30
  contain: content;
31
31
  touch-action: none;
32
+ width: 100%;
32
33
  }
33
34
  .v-color-picker-canvas__dot {
34
35
  position: absolute;
@@ -129,6 +130,11 @@
129
130
  justify-content: center;
130
131
  text-align: center;
131
132
  }
133
+ .v-color-picker-edit__input > input::-webkit-outer-spin-button,
134
+ .v-color-picker-edit__input > input::-webkit-inner-spin-button {
135
+ -webkit-appearance: none;
136
+ margin: 0;
137
+ }
132
138
  .v-color-picker-edit__input:not(:last-child) {
133
139
  margin-inline-end: 8px;
134
140
  }