@omnia/runtime 8.0.517-dev → 8.0.518-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.
@@ -1867,12 +1867,15 @@ html.v-overlay-scroll-blocked {
1867
1867
  height: 100%;
1868
1868
  justify-content: center;
1869
1869
  left: 0;
1870
- pointer-events: none;
1871
1870
  position: absolute;
1872
1871
  top: 0;
1873
1872
  width: 100%;
1874
1873
  }
1875
1874
 
1875
+ .v-progress-linear--clickable .v-progress-linear__content {
1876
+ pointer-events: none;
1877
+ }
1878
+
1876
1879
  .v-progress-linear__determinate,
1877
1880
  .v-progress-linear__indeterminate {
1878
1881
  background: currentColor;
@@ -24705,8 +24708,8 @@ html.overflow-y-hidden {
24705
24708
  background: rgba(var(--v-theme-surface-variant), 0.7);
24706
24709
  color: rgb(var(--v-theme-on-surface-variant));
24707
24710
  }
24708
- .v-slider-thumb__label::before {
24709
- color: rgba(var(--v-theme-surface-variant), 0.7);
24711
+ .v-slider-thumb__label > .v-slider-thumb__label-wedge {
24712
+ background: inherit;
24710
24713
  }
24711
24714
 
24712
24715
  .v-slider-thumb {
@@ -24770,10 +24773,9 @@ html.overflow-y-hidden {
24770
24773
  user-select: none;
24771
24774
  transition: 0.2s cubic-bezier(0.4, 0, 1, 1);
24772
24775
  }
24773
- .v-slider-thumb__label::before {
24774
- content: "";
24775
- width: 0;
24776
- height: 0;
24776
+ .v-slider-thumb__label > .v-slider-thumb__label-wedge {
24777
+ width: 12px;
24778
+ height: 12px;
24777
24779
  position: absolute;
24778
24780
  }
24779
24781
 
@@ -24806,10 +24808,8 @@ html.overflow-y-hidden {
24806
24808
  transform: translateX(50%);
24807
24809
  }
24808
24810
 
24809
- .v-slider.v-input--horizontal .v-slider-thumb__label::before {
24810
- border-left: 6px solid transparent;
24811
- border-right: 6px solid transparent;
24812
- border-top: 6px solid currentColor;
24811
+ .v-slider.v-input--horizontal .v-slider-thumb__label > .v-slider-thumb__label-wedge {
24812
+ clip-path: polygon(50% 100%, 0 50%, 100% 50%);
24813
24813
  bottom: -6px;
24814
24814
  }
24815
24815
 
@@ -24824,10 +24824,8 @@ html.overflow-y-hidden {
24824
24824
  top: -12.5px;
24825
24825
  left: calc(var(--v-slider-thumb-size) / 2);
24826
24826
  }
24827
- .v-slider.v-input--vertical .v-slider-thumb__label::before {
24828
- border-right: 6px solid currentColor;
24829
- border-top: 6px solid transparent;
24830
- border-bottom: 6px solid transparent;
24827
+ .v-slider.v-input--vertical .v-slider-thumb__label > .v-slider-thumb__label-wedge {
24828
+ clip-path: polygon(0 50%, 50% 0, 50% 100%);
24831
24829
  left: -6px;
24832
24830
  }
24833
24831
 
@@ -14,6 +14,7 @@
14
14
  display: flex;
15
15
  flex-direction: column;
16
16
  padding: 16px;
17
+ width: 100%;
17
18
  }
18
19
 
19
20
  .v-color-picker--flat {