@omnia/runtime 8.0.540-dev → 8.0.543-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.
@@ -36,9 +36,10 @@
36
36
  .v-select__content {
37
37
  box-shadow: 0px 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 4px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 10px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
38
38
  }
39
- .v-select__content {
39
+ .v-menu > .v-overlay__content.v-select__content {
40
40
  border-radius: 4px;
41
41
  }
42
+
42
43
  .v-select__selection {
43
44
  display: inline-flex;
44
45
  align-items: center;
@@ -63,6 +63,11 @@
63
63
  position: absolute;
64
64
  }
65
65
 
66
+ @media (forced-colors: active) {
67
+ .v-snackbar__wrapper {
68
+ border: thick solid;
69
+ }
70
+ }
66
71
  .v-snackbar__content {
67
72
  flex-grow: 1;
68
73
  font-size: 0.875rem;
@@ -129,6 +134,11 @@
129
134
  .v-snackbar-transition-enter-active {
130
135
  transition-property: opacity, transform;
131
136
  }
137
+ @media (prefers-reduced-motion: reduce) {
138
+ .v-snackbar-transition-enter-active {
139
+ transition-property: opacity;
140
+ }
141
+ }
132
142
  .v-snackbar-transition-enter-from {
133
143
  opacity: 0;
134
144
  transform: scale(0.8);
@@ -29,13 +29,17 @@
29
29
  .v-treeview .v-list-item--slim > .v-list-item__prepend:not(:has(.v-list-item-action)) > .v-icon {
30
30
  margin-inline-start: -6px;
31
31
  }
32
+ .v-treeview:has(.v-treeview-indent-lines) .v-list-item-action:first-child > .v-selection-control,
33
+ .v-treeview:has(.v-treeview-indent-lines) .v-treeview-indent-lines + .v-list-item-action > .v-selection-control {
34
+ margin-inline: min(0px, -1 * (var(--v-selection-control-size) - 28px) / 2);
35
+ }
32
36
 
33
37
  .v-treeview-indent-lines {
34
38
  position: absolute;
35
- left: 0;
39
+ inset-inline-start: 0;
36
40
  height: 100%;
37
41
  display: grid;
38
- padding-left: 8px;
42
+ padding-inline-start: 8px;
39
43
  padding-block: 0;
40
44
  grid-template-columns: repeat(var(--v-indent-parts, 1), var(--prepend-width));
41
45
  opacity: 0.4;
@@ -46,7 +50,7 @@
46
50
  border: 0px solid rgb(var(--v-theme-on-surface));
47
51
  }
48
52
  .v-treeview-indent-line--leaf, .v-treeview-indent-line--line {
49
- border-left-width: 1px;
53
+ border-inline-start-width: 1px;
50
54
  height: 100%;
51
55
  width: calc(50% + 1px);
52
56
  justify-self: end;
@@ -67,18 +71,23 @@
67
71
  .v-treeview-indent-line--leaf-link {
68
72
  border-bottom-width: 1px;
69
73
  height: calc(50% + 1px);
70
- margin-left: 0;
71
- margin-right: 6px;
74
+ margin-inline-start: 0;
75
+ margin-inline-end: 6px;
72
76
  }
73
77
  .v-treeview-indent-line--last-leaf {
74
- border-left-width: 1px;
78
+ border-inline-start-width: 1px;
75
79
  border-bottom-width: 1px;
76
80
  height: calc(50% + 1px);
77
- margin-left: calc(50% - 1px);
81
+ margin-inline-start: calc(50% - 1px);
78
82
  border-bottom-left-radius: 4px;
79
83
  }
84
+ .v-locale--is-rtl.v-treeview-indent-line--last-leaf, .v-locale--is-rtl .v-treeview-indent-line--last-leaf {
85
+ border-bottom-left-radius: 0;
86
+ border-bottom-right-radius: 4px;
87
+ }
88
+
80
89
  .v-treeview-indent-line--last-leaf:last-child {
81
- margin-right: 4px;
90
+ margin-inline-end: 4px;
82
91
  }
83
92
 
84
93
  .v-treeview-group.v-list-group {
@@ -23,30 +23,6 @@
23
23
  .v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
24
24
  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-ambient-opacity, rgba(0, 0, 0, 0.12));
25
25
  }
26
- .v-color-picker-canvas {
27
- display: flex;
28
- position: relative;
29
- overflow: hidden;
30
- contain: content;
31
- touch-action: none;
32
- width: 100%;
33
- }
34
- .v-color-picker-canvas__dot {
35
- position: absolute;
36
- top: 0;
37
- left: 0;
38
- width: 15px;
39
- height: 15px;
40
- background: transparent;
41
- border-radius: 50%;
42
- box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
43
- }
44
- .v-color-picker-canvas__dot--disabled {
45
- box-shadow: 0px 0px 0px 1.5px rgba(255, 255, 255, 0.7), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
46
- }
47
- .v-color-picker-canvas:hover .v-color-picker-canvas__dot {
48
- will-change: transform;
49
- }
50
26
  .v-color-picker-preview__alpha .v-slider-track__background {
51
27
  background-color: transparent !important;
52
28
  }
@@ -118,6 +94,30 @@
118
94
  position: relative;
119
95
  margin-right: 12px;
120
96
  }
97
+ .v-color-picker-canvas {
98
+ display: flex;
99
+ position: relative;
100
+ overflow: hidden;
101
+ contain: content;
102
+ touch-action: none;
103
+ width: 100%;
104
+ }
105
+ .v-color-picker-canvas__dot {
106
+ position: absolute;
107
+ top: 0;
108
+ left: 0;
109
+ width: 15px;
110
+ height: 15px;
111
+ background: transparent;
112
+ border-radius: 50%;
113
+ box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
114
+ }
115
+ .v-color-picker-canvas__dot--disabled {
116
+ box-shadow: 0px 0px 0px 1.5px rgba(255, 255, 255, 0.7), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
117
+ }
118
+ .v-color-picker-canvas:hover .v-color-picker-canvas__dot {
119
+ will-change: transform;
120
+ }
121
121
  .v-color-picker-edit {
122
122
  display: flex;
123
123
  margin-top: 24px;