@enact/limestone 1.3.0 → 1.9.4
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.
- package/.github/workflows/ci-branch.yml +21 -0
- package/.github/workflows/ci-pull-request.yml +16 -0
- package/.github/workflows/ci-reusable.yml +73 -0
- package/ActionGuide/ActionGuide.d.ts +5 -4
- package/ActionGuide/ActionGuide.module.css +1 -1
- package/Alert/Alert.d.ts +4 -2
- package/Alert/Alert.js +4 -1
- package/Alert/Alert.module.css +36 -0
- package/BodyText/BodyText.d.ts +5 -4
- package/BodyText/BodyText.module.css +7 -7
- package/Button/Button.d.ts +17 -12
- package/Button/Button.js +1 -1
- package/Button/Button.module.css +195 -268
- package/CHANGELOG.md +226 -0
- package/Card/Card.d.ts +36 -8
- package/Card/Card.js +157 -20
- package/Card/Card.module.css +277 -58
- package/Card/tests/Card-specs.js +30 -0
- package/Checkbox/Checkbox.d.ts +8 -7
- package/Checkbox/Checkbox.js +3 -1
- package/Checkbox/Checkbox.module.css +213 -120
- package/Checkbox/tests/Checkbox-specs.js +1 -1
- package/CheckboxItem/CheckboxItem.d.ts +22 -7
- package/CheckboxItem/CheckboxItem.js +69 -4
- package/Chips/Chip.js +60 -7
- package/Chips/Chip.module.css +3 -3
- package/Chips/Chips.js +26 -12
- package/Chips/Chips.module.css +1 -1
- package/Chips/tests/Chip-specs.js +19 -9
- package/Chips/tests/Chips-specs.js +19 -19
- package/ContextualMenuDecorator/ContextualMenuDecorator.d.ts +4 -5
- package/ContextualPopupDecorator/ContextualPopup.module.css +34 -34
- package/ContextualPopupDecorator/ContextualPopupDecorator.js +557 -549
- package/DatePicker/DatePicker.d.ts +4 -5
- package/DayPicker/DayPicker.d.ts +8 -7
- package/Dropdown/Dropdown.d.ts +11 -13
- package/Dropdown/Dropdown.module.css +9 -9
- package/Dropdown/DropdownList.js +16 -11
- package/FixedPopupPanels/FixedPopupPanels.d.ts +4 -2
- package/FixedPopupPanels/FixedPopupPanels.module.css +18 -18
- package/FlexiblePopupPanels/FlexiblePopupPanels.module.css +23 -23
- package/FormCheckboxItem/FormCheckboxItem.d.ts +5 -4
- package/Heading/Heading.d.ts +8 -7
- package/Heading/Heading.module.css +5 -5
- package/Icon/Icon.d.ts +14 -4
- package/Icon/Icon.js +48 -2
- package/Icon/Icon.module.css +1 -1
- package/Icon/IconList.js +25 -1
- package/IconItem/IconItem.d.ts +13 -12
- package/IconItem/IconItem.js +15 -0
- package/IconItem/IconItem.module.css +107 -1
- package/Image/Image.d.ts +5 -4
- package/ImageItem/ImageItem.d.ts +11 -10
- package/ImageItem/ImageItem.js +37 -31
- package/ImageItem/ImageItem.module.css +30 -30
- package/ImageItem/tests/ImageItem-specs.js +3 -10
- package/Input/Input.js +9 -2
- package/Input/Input.module.css +37 -8
- package/Input/InputField.js +5 -1
- package/Input/InputField.module.css +17 -2
- package/Input/InputFieldSpotlightDecorator.js +213 -229
- package/Input/index.d.ts +15 -18
- package/Input/tests/InputField-specs.js +21 -0
- package/Item/Item.d.ts +16 -9
- package/Item/Item.js +20 -2
- package/Item/Item.module.css +1 -1
- package/KeyGuide/KeyGuide.d.ts +8 -7
- package/KeyGuide/KeyGuide.module.css +25 -1
- package/Marquee/Marquee.d.ts +2 -4
- package/MediaOverlay/MediaOverlay.d.ts +12 -11
- package/MediaOverlay/MediaOverlay.js +43 -21
- package/MediaOverlay/MediaOverlay.module.css +114 -15
- package/MediaPlayer/MediaControls.js +195 -13
- package/MediaPlayer/MediaControls.module.css +3 -2
- package/MediaPlayer/MediaSlider.module.css +7 -20
- package/MediaPlayer/index.d.ts +59 -7
- package/PageViews/PageViews.js +165 -80
- package/PageViews/PageViewsRouter.js +9 -0
- package/PageViews/tests/PageViews-specs.js +84 -0
- package/Panels/Header.js +48 -30
- package/Panels/Header.module.css +83 -31
- package/Panels/Panel.module.css +1 -1
- package/Panels/index.d.ts +7 -8
- package/Picker/Picker.d.ts +4 -5
- package/Picker/Picker.module.css +2 -2
- package/Popup/Popup.js +242 -240
- package/Popup/Popup.module.css +24 -24
- package/PopupTabLayout/PopupTabLayout.d.ts +5 -7
- package/PopupTabLayout/PopupTabLayout.js +15 -9
- package/PopupTabLayout/PopupTabLayout.module.css +53 -16
- package/PopupTabLayout/PopupTabLayoutStateContext.js +8 -0
- package/ProgressBar/ProgressBar.d.ts +5 -4
- package/ProgressBar/ProgressBarTooltip.module.css +12 -12
- package/ProgressButton/ProgressButton.d.ts +4 -5
- package/QuickGuidePanels/QuickGuidePanels.module.css +2 -2
- package/RadioItem/RadioItem.d.ts +18 -5
- package/RadioItem/RadioItem.js +67 -2
- package/RadioItem/RadioItem.module.css +36 -36
- package/RangePicker/RangePicker.module.css +2 -2
- package/Scroller/EditableWrapper.js +11 -4
- package/Scroller/Scroller.d.ts +20 -16
- package/Scroller/Scroller.js +9 -3
- package/Scroller/Scroller.module.css +4 -4
- package/Slider/Slider.d.ts +16 -14
- package/Slider/Slider.js +37 -4
- package/Slider/Slider.module.css +314 -91
- package/Slider/tests/Slider-specs.js +2 -1
- package/Spinner/Spinner.d.ts +5 -4
- package/Spinner/Spinner.module.css +9 -9
- package/Steps/Steps.d.ts +5 -4
- package/Steps/Steps.js +9 -5
- package/Switch/Switch.d.ts +8 -7
- package/Switch/Switch.module.css +100 -13
- package/SwitchItem/SwitchItem.d.ts +9 -6
- package/TabLayout/RefocusDecorator.js +15 -9
- package/TabLayout/TabGroup.js +3 -2
- package/TabLayout/TabGroup.module.css +2 -2
- package/TabLayout/TabLayout.d.ts +6 -0
- package/TabLayout/TabLayout.js +11 -1
- package/TabLayout/TabLayout.module.css +18 -0
- package/TabLayout/tests/TabLayout-specs.js +52 -0
- package/ThemeDecorator/ThemeDecorator.d.ts +9 -10
- package/ThemeDecorator/fontGenerator.js +1 -1
- package/ThemeDecorator/screenTypes.json +1 -0
- package/TimePicker/TimePicker.module.css +1 -1
- package/TooltipDecorator/Tooltip.module.css +1 -2
- package/TooltipDecorator/tests/util-specs.js +12 -0
- package/TooltipDecorator/useTooltip.js +1 -1
- package/TooltipDecorator/util.js +18 -11
- package/VideoPlayer/Feedback.js +3 -0
- package/VideoPlayer/Feedback.module.css +5 -9
- package/VideoPlayer/FeedbackIcons.js +1 -1
- package/VideoPlayer/FeedbackTooltip.module.css +55 -11
- package/VideoPlayer/VideoPlayer.d.ts +44 -18
- package/VideoPlayer/VideoPlayer.js +128 -23
- package/VideoPlayer/VideoPlayer.module.css +28 -11
- package/VirtualList/VirtualList.d.ts +9 -2
- package/VirtualList/VirtualList.js +31 -6
- package/VirtualList/tests/VirtualGridList-translate-specs.js +3 -0
- package/VirtualList/tests/VirtualList-specs.js +28 -1
- package/VirtualList/tests/VirtualList-translate-specs.js +4 -1
- package/VirtualList/tests/useEvent-specs.js +39 -0
- package/VirtualList/useEvent.js +45 -10
- package/VirtualList/useThemeVirtualList.js +3 -0
- package/WizardPanels/WizardPanels.module.css +2 -2
- package/WizardPanels/index.d.ts +4 -2
- package/fonts/Limestone_Icons.ttf +0 -0
- package/internal/$L/$L.js +3 -3
- package/internal/DateComponentPicker/DateComponentPicker.module.css +2 -2
- package/internal/DateTime/DateTime.module.css +1 -0
- package/internal/Panels/PanelsRouter.js +16 -5
- package/internal/Picker/Picker.module.css +2 -2
- package/internal/SharedStateDecorator/SharedStateDecorator.js +76 -99
- package/internal/validators/validators.js +21 -2
- package/package.json +14 -14
- package/styles/colors-highcontrast.less +9 -1
- package/styles/colors.less +11 -7
- package/styles/motion-mixins.less +66 -0
- package/styles/motions.less +78 -0
- package/styles/variables.less +176 -150
- package/useScroll/HoverToScroll.js +8 -5
- package/useScroll/ScrollbarTrack.module.css +8 -8
- package/useScroll/useEvent.js +7 -1
- package/useScroll/useScroll.js +2 -0
- package/useScroll/useScroll.module.css +6 -6
- package/.travis.yml +0 -40
package/Slider/Slider.module.css
CHANGED
|
@@ -1,3 +1,86 @@
|
|
|
1
|
+
/* ---------------------------------------
|
|
2
|
+
Animations
|
|
3
|
+
------------------------------------------ */
|
|
4
|
+
:root {
|
|
5
|
+
/* Bounce
|
|
6
|
+
------------------------------------------ */
|
|
7
|
+
--lime-bounce-motion: var(--lime-bounce-animation-name) var(--lime-bounce-motion-duration) var(--lime-bounce-motion-easing-function);
|
|
8
|
+
--lime-check-motion: var(--lime-check-animation-name) var(--lime-check-motion-duration) forwards;
|
|
9
|
+
}
|
|
10
|
+
/* ---------------------------------------
|
|
11
|
+
Animations properties
|
|
12
|
+
------------------------------------------ */
|
|
13
|
+
:root {
|
|
14
|
+
/* ---------------------------------------
|
|
15
|
+
Durations
|
|
16
|
+
------------------------------------------ */
|
|
17
|
+
--lime-motion-default-duration: 200ms;
|
|
18
|
+
--lime-motion-medium1-duration: 250ms;
|
|
19
|
+
--lime-motion-medium2-duration: 300ms;
|
|
20
|
+
--lime-motion-medium4-duration: 400ms;
|
|
21
|
+
--lime-motion-long2-duration: 500ms;
|
|
22
|
+
--lime-bounce-motion-duration: var(--lime-motion-medium2-duration);
|
|
23
|
+
--lime-check-motion-duration: var(--lime-motion-medium4-duration);
|
|
24
|
+
--lime-focus-in-motion-duration: var(--lime-motion-medium2-duration);
|
|
25
|
+
--lime-focus-out-motion-duration: var(--lime-motion-long2-duration);
|
|
26
|
+
--lime-press-motion-duration: var(--lime-motion-medium1-duration);
|
|
27
|
+
--lime-release-motion-duration: var(--lime-motion-medium2-duration);
|
|
28
|
+
/* ---------------------------------------
|
|
29
|
+
Easing functions
|
|
30
|
+
------------------------------------------ */
|
|
31
|
+
--lime-default-motion-easing-function: ease-out;
|
|
32
|
+
--lime-EIO-motion-easing-function: cubic-bezier(0.2, 0, 0.05, 1);
|
|
33
|
+
--lime-EO-motion-easing-function: cubic-bezier(0.1, 0.6, 0.15, 1);
|
|
34
|
+
--lime-bounce-motion-easing-function: var(--lime-default-motion-easing-function);
|
|
35
|
+
--lime-focus-in-motion-easing-function: var(--lime-EIO-motion-easing-function);
|
|
36
|
+
--lime-focus-out-motion-easing-function: var(--lime-EO-motion-easing-function);
|
|
37
|
+
--lime-press-motion-easing-function: var(--lime-EIO-motion-easing-function);
|
|
38
|
+
--lime-release-motion-easing-function: var(--lime-EO-motion-easing-function);
|
|
39
|
+
/* ---------------------------------------
|
|
40
|
+
Keyframes names
|
|
41
|
+
------------------------------------------ */
|
|
42
|
+
--lime-bounce-animation-name: bounce-motion;
|
|
43
|
+
--lime-check-animation-name: check-motion;
|
|
44
|
+
/* ---------------------------------------
|
|
45
|
+
Keyframes values
|
|
46
|
+
------------------------------------------ */
|
|
47
|
+
--lime-bounce-motion-offset-default-value: 0.125rem;
|
|
48
|
+
}
|
|
49
|
+
/* ---------------------------------------
|
|
50
|
+
Keyframes
|
|
51
|
+
------------------------------------------ */
|
|
52
|
+
/* Bounce
|
|
53
|
+
------------------------------------------ */
|
|
54
|
+
@keyframes bounce-motion {
|
|
55
|
+
0% {
|
|
56
|
+
transform: translateX(0);
|
|
57
|
+
}
|
|
58
|
+
50% {
|
|
59
|
+
transform: translateX(var(--lime-bounce-motion-offset-value, --lime-bounce-motion-offset-default-value));
|
|
60
|
+
}
|
|
61
|
+
80% {
|
|
62
|
+
transform: translateX(calc(var(--lime-bounce-motion-offset-value, --lime-bounce-motion-offset-default-value) / -2));
|
|
63
|
+
}
|
|
64
|
+
100% {
|
|
65
|
+
transform: translateX(0);
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
/* Check
|
|
69
|
+
------------------------------------------ */
|
|
70
|
+
@keyframes check-motion {
|
|
71
|
+
0% {
|
|
72
|
+
transform: translateX(0);
|
|
73
|
+
}
|
|
74
|
+
100% {
|
|
75
|
+
transform: translateX(100%);
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
/* ---------------------------------------
|
|
79
|
+
Motion Variables
|
|
80
|
+
------------------------------------------ */
|
|
81
|
+
/* ---------------------------------------
|
|
82
|
+
Motion Mixins
|
|
83
|
+
------------------------------------------ */
|
|
1
84
|
.slider {
|
|
2
85
|
position: relative;
|
|
3
86
|
margin: 0 1rem;
|
|
@@ -17,21 +100,21 @@
|
|
|
17
100
|
overflow: hidden;
|
|
18
101
|
}
|
|
19
102
|
.slider .knob {
|
|
20
|
-
--lime-tooltip-offset: 0.
|
|
103
|
+
--lime-tooltip-offset: 0.375rem;
|
|
21
104
|
position: absolute;
|
|
22
105
|
will-change: transform;
|
|
23
106
|
}
|
|
24
107
|
.slider .knob::before {
|
|
25
108
|
content: "";
|
|
26
109
|
position: absolute;
|
|
27
|
-
height:
|
|
28
|
-
width:
|
|
29
|
-
|
|
30
|
-
border-radius: 0.5rem;
|
|
110
|
+
height: 0.75rem;
|
|
111
|
+
width: 0.75rem;
|
|
112
|
+
border-radius: 0.375rem;
|
|
31
113
|
border: 0.125rem solid transparent;
|
|
32
114
|
box-sizing: border-box;
|
|
33
115
|
will-change: transform;
|
|
34
|
-
|
|
116
|
+
transform: translate(-50%, -50%) scale(1);
|
|
117
|
+
transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
|
|
35
118
|
}
|
|
36
119
|
.slider.showAnchor .knob {
|
|
37
120
|
z-index: 1;
|
|
@@ -57,14 +140,21 @@
|
|
|
57
140
|
.slider[disabled] {
|
|
58
141
|
touch-action: auto;
|
|
59
142
|
}
|
|
143
|
+
.slider .minMax {
|
|
144
|
+
display: flex;
|
|
145
|
+
justify-content: space-between;
|
|
146
|
+
font-size: var(--primitive-font-size-48);
|
|
147
|
+
font-weight: var(--primitive-font-weight-regular);
|
|
148
|
+
line-height: 1.25rem;
|
|
149
|
+
}
|
|
60
150
|
.slider:global(.largeText) .knob::before {
|
|
61
|
-
height:
|
|
62
|
-
width:
|
|
63
|
-
border-radius: 0.
|
|
151
|
+
height: 0.75rem;
|
|
152
|
+
width: 0.75rem;
|
|
153
|
+
border-radius: 0.375rem;
|
|
64
154
|
}
|
|
65
155
|
.slider.horizontal {
|
|
66
156
|
width: auto;
|
|
67
|
-
padding:
|
|
157
|
+
padding: var(--primitive-spacing-24) 0.375rem;
|
|
68
158
|
}
|
|
69
159
|
.slider.horizontal .fill,
|
|
70
160
|
.slider.horizontal .load {
|
|
@@ -73,11 +163,17 @@
|
|
|
73
163
|
.slider.horizontal .knob {
|
|
74
164
|
left: calc(var(--ui-slider-proportion-end-knob) * 100%);
|
|
75
165
|
}
|
|
166
|
+
.slider.horizontal.hasMinMax {
|
|
167
|
+
padding-bottom: var(--primitive-spacing-84);
|
|
168
|
+
}
|
|
169
|
+
.slider.horizontal .minMax {
|
|
170
|
+
margin-top: var(--primitive-spacing-24);
|
|
171
|
+
}
|
|
76
172
|
.slider.horizontal:global(.largeText) {
|
|
77
|
-
padding: 0.
|
|
173
|
+
padding: 0.25rem 0.375rem;
|
|
78
174
|
}
|
|
79
175
|
.slider.vertical {
|
|
80
|
-
padding: 0.
|
|
176
|
+
padding: 0.375rem 0.5rem;
|
|
81
177
|
min-height: 5rem;
|
|
82
178
|
display: inline-block;
|
|
83
179
|
vertical-align: top;
|
|
@@ -90,8 +186,21 @@
|
|
|
90
186
|
bottom: calc(var(--ui-slider-proportion-end-knob) * 100%);
|
|
91
187
|
top: auto;
|
|
92
188
|
}
|
|
189
|
+
.slider.vertical.hasMinMax {
|
|
190
|
+
display: flex;
|
|
191
|
+
flex-direction: row;
|
|
192
|
+
width: fit-content;
|
|
193
|
+
}
|
|
194
|
+
.slider.vertical.hasMinMax .progressBar {
|
|
195
|
+
width: 0.25rem;
|
|
196
|
+
flex-shrink: 0;
|
|
197
|
+
}
|
|
198
|
+
.slider.vertical .minMax {
|
|
199
|
+
flex-direction: column-reverse;
|
|
200
|
+
margin-left: var(--primitive-spacing-24);
|
|
201
|
+
}
|
|
93
202
|
.slider.vertical:global(.largeText) {
|
|
94
|
-
padding: 0.
|
|
203
|
+
padding: 0.375rem 0.25rem;
|
|
95
204
|
}
|
|
96
205
|
.slider:global(.neutral) .bar {
|
|
97
206
|
background-color: color(from var(--semantic-color-surface-default-track) srgb r g b / 0.7);
|
|
@@ -119,7 +228,8 @@
|
|
|
119
228
|
background-color: var(--semantic-color-surface-default-focused);
|
|
120
229
|
border-color: transparent;
|
|
121
230
|
box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
|
|
122
|
-
transform: translate(-50%, -50%) scale(1);
|
|
231
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
232
|
+
transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
|
|
123
233
|
}
|
|
124
234
|
:global(.spotlight-input-key) .slider:global(.neutral):global(.spottable):focus.active .fill,
|
|
125
235
|
:global(.spotlight-input-mouse) .slider:global(.neutral):global(.spottable):focus.active .fill,
|
|
@@ -127,15 +237,22 @@
|
|
|
127
237
|
:global(.spotlight-input-mouse) .slider:global(.neutral):global(.spottable):focus.pressed .fill {
|
|
128
238
|
background-color: var(--semantic-color-surface-accent);
|
|
129
239
|
}
|
|
130
|
-
:global(.spotlight-input-key) .slider:global(.neutral):global(.spottable):focus
|
|
131
|
-
:global(.spotlight-input-mouse) .slider:global(.neutral):global(.spottable):focus
|
|
240
|
+
:global(.spotlight-input-key) .slider:global(.neutral):global(.spottable):focus:active .knob::before,
|
|
241
|
+
:global(.spotlight-input-mouse) .slider:global(.neutral):global(.spottable):focus:active .knob::before,
|
|
132
242
|
:global(.spotlight-input-key) .slider:global(.neutral):global(.spottable):focus.pressed .knob::before,
|
|
133
243
|
:global(.spotlight-input-mouse) .slider:global(.neutral):global(.spottable):focus.pressed .knob::before {
|
|
134
|
-
transform: translate(-50%, -50%) scale(1);
|
|
244
|
+
transform: translate(-50%, -50%) scale(1.16);
|
|
245
|
+
transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
|
|
246
|
+
}
|
|
247
|
+
:global(.spotlight-input-key) .slider:global(.neutral):global(.spottable):focus:not(.pressed) .knob::before,
|
|
248
|
+
:global(.spotlight-input-mouse) .slider:global(.neutral):global(.spottable):focus:not(.pressed) .knob::before {
|
|
249
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
250
|
+
transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
|
|
135
251
|
}
|
|
136
252
|
:global(.spotlight-input-key) .slider:global(.neutral):global(.spottable):focus[disabled] .knob::before,
|
|
137
253
|
:global(.spotlight-input-mouse) .slider:global(.neutral):global(.spottable):focus[disabled] .knob::before {
|
|
138
|
-
transform: translate(-50%, -50%) scale(
|
|
254
|
+
transform: translate(-50%, -50%) scale(1);
|
|
255
|
+
transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
|
|
139
256
|
}
|
|
140
257
|
:global(.spotlight-input-touch) .slider:global(.neutral):global(.spottable):active {
|
|
141
258
|
background-color: transparent;
|
|
@@ -147,18 +264,25 @@
|
|
|
147
264
|
background-color: var(--semantic-color-surface-default-focused);
|
|
148
265
|
border-color: transparent;
|
|
149
266
|
box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
|
|
150
|
-
transform: translate(-50%, -50%) scale(1);
|
|
267
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
268
|
+
transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
|
|
151
269
|
}
|
|
152
270
|
:global(.spotlight-input-touch) .slider:global(.neutral):global(.spottable):active.active .fill,
|
|
153
271
|
:global(.spotlight-input-touch) .slider:global(.neutral):global(.spottable):active.pressed .fill {
|
|
154
272
|
background-color: var(--semantic-color-surface-accent);
|
|
155
273
|
}
|
|
156
|
-
:global(.spotlight-input-touch) .slider:global(.neutral):global(.spottable):active
|
|
274
|
+
:global(.spotlight-input-touch) .slider:global(.neutral):global(.spottable):active:active .knob::before,
|
|
157
275
|
:global(.spotlight-input-touch) .slider:global(.neutral):global(.spottable):active.pressed .knob::before {
|
|
158
|
-
transform: translate(-50%, -50%) scale(1);
|
|
276
|
+
transform: translate(-50%, -50%) scale(1.16);
|
|
277
|
+
transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
|
|
278
|
+
}
|
|
279
|
+
:global(.spotlight-input-touch) .slider:global(.neutral):global(.spottable):active:not(.pressed) .knob::before {
|
|
280
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
281
|
+
transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
|
|
159
282
|
}
|
|
160
283
|
:global(.spotlight-input-touch) .slider:global(.neutral):global(.spottable):active[disabled] .knob::before {
|
|
161
|
-
transform: translate(-50%, -50%) scale(
|
|
284
|
+
transform: translate(-50%, -50%) scale(1);
|
|
285
|
+
transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
|
|
162
286
|
}
|
|
163
287
|
:global(.spotlight-input-touch) .slider:global(.neutral).pressed .fill {
|
|
164
288
|
background-color: var(--semantic-color-surface-accent);
|
|
@@ -167,7 +291,8 @@
|
|
|
167
291
|
background-color: var(--semantic-color-surface-default-focused);
|
|
168
292
|
border-color: transparent;
|
|
169
293
|
box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
|
|
170
|
-
transform: translate(-50%, -50%) scale(1);
|
|
294
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
295
|
+
transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
|
|
171
296
|
}
|
|
172
297
|
:global(.spotlight-input-key) :global(.noAnimation) .slider:global(.neutral):global(.spottable):focus .knob::before,
|
|
173
298
|
:global(.spotlight-input-mouse) :global(.noAnimation) .slider:global(.neutral):global(.spottable):focus .knob::before {
|
|
@@ -177,18 +302,18 @@
|
|
|
177
302
|
:global(.spotlight-input-mouse) :global(.noAnimation) .slider:global(.neutral):global(.spottable):focus.active .knob::before,
|
|
178
303
|
:global(.spotlight-input-key) :global(.noAnimation) .slider:global(.neutral):global(.spottable):focus.pressed .knob::before,
|
|
179
304
|
:global(.spotlight-input-mouse) :global(.noAnimation) .slider:global(.neutral):global(.spottable):focus.pressed .knob::before {
|
|
180
|
-
transform: translate(-50%, -50%)
|
|
305
|
+
transform: translate(-50%, -50%);
|
|
181
306
|
}
|
|
182
307
|
:global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.neutral):global(.spottable):active .knob::before {
|
|
183
308
|
box-shadow: none;
|
|
184
309
|
}
|
|
185
310
|
:global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.neutral):global(.spottable):active.active .knob::before,
|
|
186
311
|
:global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.neutral):global(.spottable):active.pressed .knob::before {
|
|
187
|
-
transform: translate(-50%, -50%)
|
|
312
|
+
transform: translate(-50%, -50%);
|
|
188
313
|
}
|
|
189
314
|
:global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.neutral).pressed .knob::before {
|
|
190
315
|
box-shadow: none;
|
|
191
|
-
transform: translate(-50%, -50%)
|
|
316
|
+
transform: translate(-50%, -50%);
|
|
192
317
|
}
|
|
193
318
|
.slider:global(.neutral)[disabled] {
|
|
194
319
|
opacity: 0.3;
|
|
@@ -219,6 +344,9 @@
|
|
|
219
344
|
.slider:global(.neutral).showAnchor .progressBar::after {
|
|
220
345
|
background-color: color(from var(--semantic-color-surface-default-track) srgb r g b / 0.7);
|
|
221
346
|
}
|
|
347
|
+
.slider:global(.neutral) .minMax {
|
|
348
|
+
color: var(--semantic-color-on-background-sub);
|
|
349
|
+
}
|
|
222
350
|
:global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast) .bar {
|
|
223
351
|
background-color: color(from var(--semantic-color-surface-default-track) srgb r g b / 0.7);
|
|
224
352
|
}
|
|
@@ -245,7 +373,8 @@
|
|
|
245
373
|
background-color: var(--semantic-color-surface-default-focused);
|
|
246
374
|
border-color: transparent;
|
|
247
375
|
box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
|
|
248
|
-
transform: translate(-50%, -50%) scale(1);
|
|
376
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
377
|
+
transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
|
|
249
378
|
}
|
|
250
379
|
:global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus.active .fill,
|
|
251
380
|
:global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus.active .fill,
|
|
@@ -253,15 +382,22 @@
|
|
|
253
382
|
:global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus.pressed .fill {
|
|
254
383
|
background-color: var(--semantic-color-surface-accent);
|
|
255
384
|
}
|
|
256
|
-
:global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus
|
|
257
|
-
:global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus
|
|
385
|
+
:global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus:active .knob::before,
|
|
386
|
+
:global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus:active .knob::before,
|
|
258
387
|
:global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus.pressed .knob::before,
|
|
259
388
|
:global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus.pressed .knob::before {
|
|
260
|
-
transform: translate(-50%, -50%) scale(1);
|
|
389
|
+
transform: translate(-50%, -50%) scale(1.16);
|
|
390
|
+
transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
|
|
391
|
+
}
|
|
392
|
+
:global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus:not(.pressed) .knob::before,
|
|
393
|
+
:global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus:not(.pressed) .knob::before {
|
|
394
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
395
|
+
transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
|
|
261
396
|
}
|
|
262
397
|
:global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus[disabled] .knob::before,
|
|
263
398
|
:global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus[disabled] .knob::before {
|
|
264
|
-
transform: translate(-50%, -50%) scale(
|
|
399
|
+
transform: translate(-50%, -50%) scale(1);
|
|
400
|
+
transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
|
|
265
401
|
}
|
|
266
402
|
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active {
|
|
267
403
|
background-color: transparent;
|
|
@@ -273,18 +409,25 @@
|
|
|
273
409
|
background-color: var(--semantic-color-surface-default-focused);
|
|
274
410
|
border-color: transparent;
|
|
275
411
|
box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
|
|
276
|
-
transform: translate(-50%, -50%) scale(1);
|
|
412
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
413
|
+
transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
|
|
277
414
|
}
|
|
278
415
|
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active.active .fill,
|
|
279
416
|
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active.pressed .fill {
|
|
280
417
|
background-color: var(--semantic-color-surface-accent);
|
|
281
418
|
}
|
|
282
|
-
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active
|
|
419
|
+
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active:active .knob::before,
|
|
283
420
|
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active.pressed .knob::before {
|
|
284
|
-
transform: translate(-50%, -50%) scale(1);
|
|
421
|
+
transform: translate(-50%, -50%) scale(1.16);
|
|
422
|
+
transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
|
|
423
|
+
}
|
|
424
|
+
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active:not(.pressed) .knob::before {
|
|
425
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
426
|
+
transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
|
|
285
427
|
}
|
|
286
428
|
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active[disabled] .knob::before {
|
|
287
|
-
transform: translate(-50%, -50%) scale(
|
|
429
|
+
transform: translate(-50%, -50%) scale(1);
|
|
430
|
+
transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
|
|
288
431
|
}
|
|
289
432
|
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).pressed .fill {
|
|
290
433
|
background-color: var(--semantic-color-surface-accent);
|
|
@@ -293,7 +436,8 @@
|
|
|
293
436
|
background-color: var(--semantic-color-surface-default-focused);
|
|
294
437
|
border-color: transparent;
|
|
295
438
|
box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
|
|
296
|
-
transform: translate(-50%, -50%) scale(1);
|
|
439
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
440
|
+
transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
|
|
297
441
|
}
|
|
298
442
|
:global(.spotlight-input-key) :global(.noAnimation) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus .knob::before,
|
|
299
443
|
:global(.spotlight-input-mouse) :global(.noAnimation) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus .knob::before {
|
|
@@ -303,18 +447,18 @@
|
|
|
303
447
|
:global(.spotlight-input-mouse) :global(.noAnimation) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus.active .knob::before,
|
|
304
448
|
:global(.spotlight-input-key) :global(.noAnimation) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus.pressed .knob::before,
|
|
305
449
|
:global(.spotlight-input-mouse) :global(.noAnimation) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus.pressed .knob::before {
|
|
306
|
-
transform: translate(-50%, -50%)
|
|
450
|
+
transform: translate(-50%, -50%);
|
|
307
451
|
}
|
|
308
452
|
:global(.spotlight-input-touch) :global(.noAnimation) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active .knob::before {
|
|
309
453
|
box-shadow: none;
|
|
310
454
|
}
|
|
311
455
|
:global(.spotlight-input-touch) :global(.noAnimation) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active.active .knob::before,
|
|
312
456
|
:global(.spotlight-input-touch) :global(.noAnimation) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active.pressed .knob::before {
|
|
313
|
-
transform: translate(-50%, -50%)
|
|
457
|
+
transform: translate(-50%, -50%);
|
|
314
458
|
}
|
|
315
459
|
:global(.spotlight-input-touch) :global(.noAnimation) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).pressed .knob::before {
|
|
316
460
|
box-shadow: none;
|
|
317
|
-
transform: translate(-50%, -50%)
|
|
461
|
+
transform: translate(-50%, -50%);
|
|
318
462
|
}
|
|
319
463
|
:global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast)[disabled] {
|
|
320
464
|
opacity: 0.3;
|
|
@@ -345,6 +489,9 @@
|
|
|
345
489
|
:global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).showAnchor .progressBar::after {
|
|
346
490
|
background-color: color(from var(--semantic-color-surface-default-track) srgb r g b / 0.7);
|
|
347
491
|
}
|
|
492
|
+
:global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast) .minMax {
|
|
493
|
+
color: var(--semantic-color-on-background-sub);
|
|
494
|
+
}
|
|
348
495
|
.slider:global(.light) .bar {
|
|
349
496
|
background-color: color(from var(--semantic-color-surface-default-track) srgb r g b / 0.7);
|
|
350
497
|
}
|
|
@@ -371,7 +518,8 @@
|
|
|
371
518
|
background-color: var(--semantic-color-surface-default-focused);
|
|
372
519
|
border-color: transparent;
|
|
373
520
|
box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
|
|
374
|
-
transform: translate(-50%, -50%) scale(1);
|
|
521
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
522
|
+
transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
|
|
375
523
|
}
|
|
376
524
|
:global(.spotlight-input-key) .slider:global(.light):global(.spottable):focus.active .fill,
|
|
377
525
|
:global(.spotlight-input-mouse) .slider:global(.light):global(.spottable):focus.active .fill,
|
|
@@ -379,15 +527,22 @@
|
|
|
379
527
|
:global(.spotlight-input-mouse) .slider:global(.light):global(.spottable):focus.pressed .fill {
|
|
380
528
|
background-color: var(--semantic-color-surface-accent);
|
|
381
529
|
}
|
|
382
|
-
:global(.spotlight-input-key) .slider:global(.light):global(.spottable):focus
|
|
383
|
-
:global(.spotlight-input-mouse) .slider:global(.light):global(.spottable):focus
|
|
530
|
+
:global(.spotlight-input-key) .slider:global(.light):global(.spottable):focus:active .knob::before,
|
|
531
|
+
:global(.spotlight-input-mouse) .slider:global(.light):global(.spottable):focus:active .knob::before,
|
|
384
532
|
:global(.spotlight-input-key) .slider:global(.light):global(.spottable):focus.pressed .knob::before,
|
|
385
533
|
:global(.spotlight-input-mouse) .slider:global(.light):global(.spottable):focus.pressed .knob::before {
|
|
386
|
-
transform: translate(-50%, -50%) scale(1);
|
|
534
|
+
transform: translate(-50%, -50%) scale(1.16);
|
|
535
|
+
transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
|
|
536
|
+
}
|
|
537
|
+
:global(.spotlight-input-key) .slider:global(.light):global(.spottable):focus:not(.pressed) .knob::before,
|
|
538
|
+
:global(.spotlight-input-mouse) .slider:global(.light):global(.spottable):focus:not(.pressed) .knob::before {
|
|
539
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
540
|
+
transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
|
|
387
541
|
}
|
|
388
542
|
:global(.spotlight-input-key) .slider:global(.light):global(.spottable):focus[disabled] .knob::before,
|
|
389
543
|
:global(.spotlight-input-mouse) .slider:global(.light):global(.spottable):focus[disabled] .knob::before {
|
|
390
|
-
transform: translate(-50%, -50%) scale(
|
|
544
|
+
transform: translate(-50%, -50%) scale(1);
|
|
545
|
+
transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
|
|
391
546
|
}
|
|
392
547
|
:global(.spotlight-input-touch) .slider:global(.light):global(.spottable):active {
|
|
393
548
|
background-color: transparent;
|
|
@@ -399,18 +554,25 @@
|
|
|
399
554
|
background-color: var(--semantic-color-surface-default-focused);
|
|
400
555
|
border-color: transparent;
|
|
401
556
|
box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
|
|
402
|
-
transform: translate(-50%, -50%) scale(1);
|
|
557
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
558
|
+
transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
|
|
403
559
|
}
|
|
404
560
|
:global(.spotlight-input-touch) .slider:global(.light):global(.spottable):active.active .fill,
|
|
405
561
|
:global(.spotlight-input-touch) .slider:global(.light):global(.spottable):active.pressed .fill {
|
|
406
562
|
background-color: var(--semantic-color-surface-accent);
|
|
407
563
|
}
|
|
408
|
-
:global(.spotlight-input-touch) .slider:global(.light):global(.spottable):active
|
|
564
|
+
:global(.spotlight-input-touch) .slider:global(.light):global(.spottable):active:active .knob::before,
|
|
409
565
|
:global(.spotlight-input-touch) .slider:global(.light):global(.spottable):active.pressed .knob::before {
|
|
410
|
-
transform: translate(-50%, -50%) scale(1);
|
|
566
|
+
transform: translate(-50%, -50%) scale(1.16);
|
|
567
|
+
transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
|
|
568
|
+
}
|
|
569
|
+
:global(.spotlight-input-touch) .slider:global(.light):global(.spottable):active:not(.pressed) .knob::before {
|
|
570
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
571
|
+
transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
|
|
411
572
|
}
|
|
412
573
|
:global(.spotlight-input-touch) .slider:global(.light):global(.spottable):active[disabled] .knob::before {
|
|
413
|
-
transform: translate(-50%, -50%) scale(
|
|
574
|
+
transform: translate(-50%, -50%) scale(1);
|
|
575
|
+
transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
|
|
414
576
|
}
|
|
415
577
|
:global(.spotlight-input-touch) .slider:global(.light).pressed .fill {
|
|
416
578
|
background-color: var(--semantic-color-surface-accent);
|
|
@@ -419,7 +581,8 @@
|
|
|
419
581
|
background-color: var(--semantic-color-surface-default-focused);
|
|
420
582
|
border-color: transparent;
|
|
421
583
|
box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
|
|
422
|
-
transform: translate(-50%, -50%) scale(1);
|
|
584
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
585
|
+
transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
|
|
423
586
|
}
|
|
424
587
|
:global(.spotlight-input-key) :global(.noAnimation) .slider:global(.light):global(.spottable):focus .knob::before,
|
|
425
588
|
:global(.spotlight-input-mouse) :global(.noAnimation) .slider:global(.light):global(.spottable):focus .knob::before {
|
|
@@ -429,18 +592,18 @@
|
|
|
429
592
|
:global(.spotlight-input-mouse) :global(.noAnimation) .slider:global(.light):global(.spottable):focus.active .knob::before,
|
|
430
593
|
:global(.spotlight-input-key) :global(.noAnimation) .slider:global(.light):global(.spottable):focus.pressed .knob::before,
|
|
431
594
|
:global(.spotlight-input-mouse) :global(.noAnimation) .slider:global(.light):global(.spottable):focus.pressed .knob::before {
|
|
432
|
-
transform: translate(-50%, -50%)
|
|
595
|
+
transform: translate(-50%, -50%);
|
|
433
596
|
}
|
|
434
597
|
:global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.light):global(.spottable):active .knob::before {
|
|
435
598
|
box-shadow: none;
|
|
436
599
|
}
|
|
437
600
|
:global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.light):global(.spottable):active.active .knob::before,
|
|
438
601
|
:global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.light):global(.spottable):active.pressed .knob::before {
|
|
439
|
-
transform: translate(-50%, -50%)
|
|
602
|
+
transform: translate(-50%, -50%);
|
|
440
603
|
}
|
|
441
604
|
:global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.light).pressed .knob::before {
|
|
442
605
|
box-shadow: none;
|
|
443
|
-
transform: translate(-50%, -50%)
|
|
606
|
+
transform: translate(-50%, -50%);
|
|
444
607
|
}
|
|
445
608
|
.slider:global(.light)[disabled] {
|
|
446
609
|
opacity: 0.3;
|
|
@@ -471,6 +634,9 @@
|
|
|
471
634
|
.slider:global(.light).showAnchor .progressBar::after {
|
|
472
635
|
background-color: color(from var(--semantic-color-surface-default-track) srgb r g b / 0.7);
|
|
473
636
|
}
|
|
637
|
+
.slider:global(.light) .minMax {
|
|
638
|
+
color: var(--semantic-color-on-background-sub);
|
|
639
|
+
}
|
|
474
640
|
.slider:global(.game) {
|
|
475
641
|
--semantic-color-surface-default: #2d224c;
|
|
476
642
|
--semantic-color-surface-default-focused: #6d2fa1;
|
|
@@ -502,7 +668,8 @@
|
|
|
502
668
|
background-color: var(--semantic-color-surface-default-focused);
|
|
503
669
|
border-color: transparent;
|
|
504
670
|
box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
|
|
505
|
-
transform: translate(-50%, -50%) scale(1);
|
|
671
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
672
|
+
transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
|
|
506
673
|
}
|
|
507
674
|
:global(.spotlight-input-key) .slider:global(.game):global(.spottable):focus.active .fill,
|
|
508
675
|
:global(.spotlight-input-mouse) .slider:global(.game):global(.spottable):focus.active .fill,
|
|
@@ -510,15 +677,22 @@
|
|
|
510
677
|
:global(.spotlight-input-mouse) .slider:global(.game):global(.spottable):focus.pressed .fill {
|
|
511
678
|
background-color: var(--semantic-color-surface-accent);
|
|
512
679
|
}
|
|
513
|
-
:global(.spotlight-input-key) .slider:global(.game):global(.spottable):focus
|
|
514
|
-
:global(.spotlight-input-mouse) .slider:global(.game):global(.spottable):focus
|
|
680
|
+
:global(.spotlight-input-key) .slider:global(.game):global(.spottable):focus:active .knob::before,
|
|
681
|
+
:global(.spotlight-input-mouse) .slider:global(.game):global(.spottable):focus:active .knob::before,
|
|
515
682
|
:global(.spotlight-input-key) .slider:global(.game):global(.spottable):focus.pressed .knob::before,
|
|
516
683
|
:global(.spotlight-input-mouse) .slider:global(.game):global(.spottable):focus.pressed .knob::before {
|
|
517
|
-
transform: translate(-50%, -50%) scale(1);
|
|
684
|
+
transform: translate(-50%, -50%) scale(1.16);
|
|
685
|
+
transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
|
|
686
|
+
}
|
|
687
|
+
:global(.spotlight-input-key) .slider:global(.game):global(.spottable):focus:not(.pressed) .knob::before,
|
|
688
|
+
:global(.spotlight-input-mouse) .slider:global(.game):global(.spottable):focus:not(.pressed) .knob::before {
|
|
689
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
690
|
+
transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
|
|
518
691
|
}
|
|
519
692
|
:global(.spotlight-input-key) .slider:global(.game):global(.spottable):focus[disabled] .knob::before,
|
|
520
693
|
:global(.spotlight-input-mouse) .slider:global(.game):global(.spottable):focus[disabled] .knob::before {
|
|
521
|
-
transform: translate(-50%, -50%) scale(
|
|
694
|
+
transform: translate(-50%, -50%) scale(1);
|
|
695
|
+
transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
|
|
522
696
|
}
|
|
523
697
|
:global(.spotlight-input-touch) .slider:global(.game):global(.spottable):active {
|
|
524
698
|
background-color: transparent;
|
|
@@ -530,18 +704,25 @@
|
|
|
530
704
|
background-color: var(--semantic-color-surface-default-focused);
|
|
531
705
|
border-color: transparent;
|
|
532
706
|
box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
|
|
533
|
-
transform: translate(-50%, -50%) scale(1);
|
|
707
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
708
|
+
transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
|
|
534
709
|
}
|
|
535
710
|
:global(.spotlight-input-touch) .slider:global(.game):global(.spottable):active.active .fill,
|
|
536
711
|
:global(.spotlight-input-touch) .slider:global(.game):global(.spottable):active.pressed .fill {
|
|
537
712
|
background-color: var(--semantic-color-surface-accent);
|
|
538
713
|
}
|
|
539
|
-
:global(.spotlight-input-touch) .slider:global(.game):global(.spottable):active
|
|
714
|
+
:global(.spotlight-input-touch) .slider:global(.game):global(.spottable):active:active .knob::before,
|
|
540
715
|
:global(.spotlight-input-touch) .slider:global(.game):global(.spottable):active.pressed .knob::before {
|
|
541
|
-
transform: translate(-50%, -50%) scale(1);
|
|
716
|
+
transform: translate(-50%, -50%) scale(1.16);
|
|
717
|
+
transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
|
|
718
|
+
}
|
|
719
|
+
:global(.spotlight-input-touch) .slider:global(.game):global(.spottable):active:not(.pressed) .knob::before {
|
|
720
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
721
|
+
transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
|
|
542
722
|
}
|
|
543
723
|
:global(.spotlight-input-touch) .slider:global(.game):global(.spottable):active[disabled] .knob::before {
|
|
544
|
-
transform: translate(-50%, -50%) scale(
|
|
724
|
+
transform: translate(-50%, -50%) scale(1);
|
|
725
|
+
transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
|
|
545
726
|
}
|
|
546
727
|
:global(.spotlight-input-touch) .slider:global(.game).pressed .fill {
|
|
547
728
|
background-color: var(--semantic-color-surface-accent);
|
|
@@ -550,7 +731,8 @@
|
|
|
550
731
|
background-color: var(--semantic-color-surface-default-focused);
|
|
551
732
|
border-color: transparent;
|
|
552
733
|
box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
|
|
553
|
-
transform: translate(-50%, -50%) scale(1);
|
|
734
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
735
|
+
transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
|
|
554
736
|
}
|
|
555
737
|
:global(.spotlight-input-key) :global(.noAnimation) .slider:global(.game):global(.spottable):focus .knob::before,
|
|
556
738
|
:global(.spotlight-input-mouse) :global(.noAnimation) .slider:global(.game):global(.spottable):focus .knob::before {
|
|
@@ -560,18 +742,18 @@
|
|
|
560
742
|
:global(.spotlight-input-mouse) :global(.noAnimation) .slider:global(.game):global(.spottable):focus.active .knob::before,
|
|
561
743
|
:global(.spotlight-input-key) :global(.noAnimation) .slider:global(.game):global(.spottable):focus.pressed .knob::before,
|
|
562
744
|
:global(.spotlight-input-mouse) :global(.noAnimation) .slider:global(.game):global(.spottable):focus.pressed .knob::before {
|
|
563
|
-
transform: translate(-50%, -50%)
|
|
745
|
+
transform: translate(-50%, -50%);
|
|
564
746
|
}
|
|
565
747
|
:global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.game):global(.spottable):active .knob::before {
|
|
566
748
|
box-shadow: none;
|
|
567
749
|
}
|
|
568
750
|
:global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.game):global(.spottable):active.active .knob::before,
|
|
569
751
|
:global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.game):global(.spottable):active.pressed .knob::before {
|
|
570
|
-
transform: translate(-50%, -50%)
|
|
752
|
+
transform: translate(-50%, -50%);
|
|
571
753
|
}
|
|
572
754
|
:global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.game).pressed .knob::before {
|
|
573
755
|
box-shadow: none;
|
|
574
|
-
transform: translate(-50%, -50%)
|
|
756
|
+
transform: translate(-50%, -50%);
|
|
575
757
|
}
|
|
576
758
|
.slider:global(.game)[disabled] {
|
|
577
759
|
opacity: 0.3;
|
|
@@ -602,6 +784,9 @@
|
|
|
602
784
|
.slider:global(.game).showAnchor .progressBar::after {
|
|
603
785
|
background-color: color(from var(--semantic-color-surface-default-track) srgb r g b / 0.7);
|
|
604
786
|
}
|
|
787
|
+
.slider:global(.game) .minMax {
|
|
788
|
+
color: var(--semantic-color-on-background-sub);
|
|
789
|
+
}
|
|
605
790
|
:global(.green) .slider:global(.game) {
|
|
606
791
|
--semantic-color-surface-default: #1F2C24;
|
|
607
792
|
--semantic-color-surface-default-focused: #3ea07d;
|
|
@@ -632,7 +817,8 @@
|
|
|
632
817
|
background-color: var(--semantic-color-surface-default-focused);
|
|
633
818
|
border-color: transparent;
|
|
634
819
|
box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
|
|
635
|
-
transform: translate(-50%, -50%) scale(1);
|
|
820
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
821
|
+
transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
|
|
636
822
|
}
|
|
637
823
|
:global(.spotlight-input-key) :global(.green) .slider:global(.game):global(.spottable):focus.active .fill,
|
|
638
824
|
:global(.spotlight-input-mouse) :global(.green) .slider:global(.game):global(.spottable):focus.active .fill,
|
|
@@ -640,15 +826,22 @@
|
|
|
640
826
|
:global(.spotlight-input-mouse) :global(.green) .slider:global(.game):global(.spottable):focus.pressed .fill {
|
|
641
827
|
background-color: var(--semantic-color-surface-accent);
|
|
642
828
|
}
|
|
643
|
-
:global(.spotlight-input-key) :global(.green) .slider:global(.game):global(.spottable):focus
|
|
644
|
-
:global(.spotlight-input-mouse) :global(.green) .slider:global(.game):global(.spottable):focus
|
|
829
|
+
:global(.spotlight-input-key) :global(.green) .slider:global(.game):global(.spottable):focus:active .knob::before,
|
|
830
|
+
:global(.spotlight-input-mouse) :global(.green) .slider:global(.game):global(.spottable):focus:active .knob::before,
|
|
645
831
|
:global(.spotlight-input-key) :global(.green) .slider:global(.game):global(.spottable):focus.pressed .knob::before,
|
|
646
832
|
:global(.spotlight-input-mouse) :global(.green) .slider:global(.game):global(.spottable):focus.pressed .knob::before {
|
|
647
|
-
transform: translate(-50%, -50%) scale(1);
|
|
833
|
+
transform: translate(-50%, -50%) scale(1.16);
|
|
834
|
+
transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
|
|
835
|
+
}
|
|
836
|
+
:global(.spotlight-input-key) :global(.green) .slider:global(.game):global(.spottable):focus:not(.pressed) .knob::before,
|
|
837
|
+
:global(.spotlight-input-mouse) :global(.green) .slider:global(.game):global(.spottable):focus:not(.pressed) .knob::before {
|
|
838
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
839
|
+
transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
|
|
648
840
|
}
|
|
649
841
|
:global(.spotlight-input-key) :global(.green) .slider:global(.game):global(.spottable):focus[disabled] .knob::before,
|
|
650
842
|
:global(.spotlight-input-mouse) :global(.green) .slider:global(.game):global(.spottable):focus[disabled] .knob::before {
|
|
651
|
-
transform: translate(-50%, -50%) scale(
|
|
843
|
+
transform: translate(-50%, -50%) scale(1);
|
|
844
|
+
transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
|
|
652
845
|
}
|
|
653
846
|
:global(.spotlight-input-touch) :global(.green) .slider:global(.game):global(.spottable):active {
|
|
654
847
|
background-color: transparent;
|
|
@@ -660,18 +853,25 @@
|
|
|
660
853
|
background-color: var(--semantic-color-surface-default-focused);
|
|
661
854
|
border-color: transparent;
|
|
662
855
|
box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
|
|
663
|
-
transform: translate(-50%, -50%) scale(1);
|
|
856
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
857
|
+
transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
|
|
664
858
|
}
|
|
665
859
|
:global(.spotlight-input-touch) :global(.green) .slider:global(.game):global(.spottable):active.active .fill,
|
|
666
860
|
:global(.spotlight-input-touch) :global(.green) .slider:global(.game):global(.spottable):active.pressed .fill {
|
|
667
861
|
background-color: var(--semantic-color-surface-accent);
|
|
668
862
|
}
|
|
669
|
-
:global(.spotlight-input-touch) :global(.green) .slider:global(.game):global(.spottable):active
|
|
863
|
+
:global(.spotlight-input-touch) :global(.green) .slider:global(.game):global(.spottable):active:active .knob::before,
|
|
670
864
|
:global(.spotlight-input-touch) :global(.green) .slider:global(.game):global(.spottable):active.pressed .knob::before {
|
|
671
|
-
transform: translate(-50%, -50%) scale(1);
|
|
865
|
+
transform: translate(-50%, -50%) scale(1.16);
|
|
866
|
+
transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
|
|
867
|
+
}
|
|
868
|
+
:global(.spotlight-input-touch) :global(.green) .slider:global(.game):global(.spottable):active:not(.pressed) .knob::before {
|
|
869
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
870
|
+
transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
|
|
672
871
|
}
|
|
673
872
|
:global(.spotlight-input-touch) :global(.green) .slider:global(.game):global(.spottable):active[disabled] .knob::before {
|
|
674
|
-
transform: translate(-50%, -50%) scale(
|
|
873
|
+
transform: translate(-50%, -50%) scale(1);
|
|
874
|
+
transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
|
|
675
875
|
}
|
|
676
876
|
:global(.spotlight-input-touch) :global(.green) .slider:global(.game).pressed .fill {
|
|
677
877
|
background-color: var(--semantic-color-surface-accent);
|
|
@@ -680,7 +880,8 @@
|
|
|
680
880
|
background-color: var(--semantic-color-surface-default-focused);
|
|
681
881
|
border-color: transparent;
|
|
682
882
|
box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
|
|
683
|
-
transform: translate(-50%, -50%) scale(1);
|
|
883
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
884
|
+
transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
|
|
684
885
|
}
|
|
685
886
|
:global(.spotlight-input-key) :global(.noAnimation) :global(.green) .slider:global(.game):global(.spottable):focus .knob::before,
|
|
686
887
|
:global(.spotlight-input-mouse) :global(.noAnimation) :global(.green) .slider:global(.game):global(.spottable):focus .knob::before {
|
|
@@ -690,18 +891,18 @@
|
|
|
690
891
|
:global(.spotlight-input-mouse) :global(.noAnimation) :global(.green) .slider:global(.game):global(.spottable):focus.active .knob::before,
|
|
691
892
|
:global(.spotlight-input-key) :global(.noAnimation) :global(.green) .slider:global(.game):global(.spottable):focus.pressed .knob::before,
|
|
692
893
|
:global(.spotlight-input-mouse) :global(.noAnimation) :global(.green) .slider:global(.game):global(.spottable):focus.pressed .knob::before {
|
|
693
|
-
transform: translate(-50%, -50%)
|
|
894
|
+
transform: translate(-50%, -50%);
|
|
694
895
|
}
|
|
695
896
|
:global(.spotlight-input-touch) :global(.noAnimation) :global(.green) .slider:global(.game):global(.spottable):active .knob::before {
|
|
696
897
|
box-shadow: none;
|
|
697
898
|
}
|
|
698
899
|
:global(.spotlight-input-touch) :global(.noAnimation) :global(.green) .slider:global(.game):global(.spottable):active.active .knob::before,
|
|
699
900
|
:global(.spotlight-input-touch) :global(.noAnimation) :global(.green) .slider:global(.game):global(.spottable):active.pressed .knob::before {
|
|
700
|
-
transform: translate(-50%, -50%)
|
|
901
|
+
transform: translate(-50%, -50%);
|
|
701
902
|
}
|
|
702
903
|
:global(.spotlight-input-touch) :global(.noAnimation) :global(.green) .slider:global(.game).pressed .knob::before {
|
|
703
904
|
box-shadow: none;
|
|
704
|
-
transform: translate(-50%, -50%)
|
|
905
|
+
transform: translate(-50%, -50%);
|
|
705
906
|
}
|
|
706
907
|
:global(.green) .slider:global(.game)[disabled] {
|
|
707
908
|
opacity: 0.3;
|
|
@@ -732,6 +933,9 @@
|
|
|
732
933
|
:global(.green) .slider:global(.game).showAnchor .progressBar::after {
|
|
733
934
|
background-color: color(from var(--semantic-color-surface-default-track) srgb r g b / 0.7);
|
|
734
935
|
}
|
|
936
|
+
:global(.green) .slider:global(.game) .minMax {
|
|
937
|
+
color: var(--semantic-color-on-background-sub);
|
|
938
|
+
}
|
|
735
939
|
:global(.orange) .slider:global(.game) {
|
|
736
940
|
--semantic-color-surface-default: #422923;
|
|
737
941
|
--semantic-color-surface-default-focused: #b85f23;
|
|
@@ -762,7 +966,8 @@
|
|
|
762
966
|
background-color: var(--semantic-color-surface-default-focused);
|
|
763
967
|
border-color: transparent;
|
|
764
968
|
box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
|
|
765
|
-
transform: translate(-50%, -50%) scale(1);
|
|
969
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
970
|
+
transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
|
|
766
971
|
}
|
|
767
972
|
:global(.spotlight-input-key) :global(.orange) .slider:global(.game):global(.spottable):focus.active .fill,
|
|
768
973
|
:global(.spotlight-input-mouse) :global(.orange) .slider:global(.game):global(.spottable):focus.active .fill,
|
|
@@ -770,15 +975,22 @@
|
|
|
770
975
|
:global(.spotlight-input-mouse) :global(.orange) .slider:global(.game):global(.spottable):focus.pressed .fill {
|
|
771
976
|
background-color: var(--semantic-color-surface-accent);
|
|
772
977
|
}
|
|
773
|
-
:global(.spotlight-input-key) :global(.orange) .slider:global(.game):global(.spottable):focus
|
|
774
|
-
:global(.spotlight-input-mouse) :global(.orange) .slider:global(.game):global(.spottable):focus
|
|
978
|
+
:global(.spotlight-input-key) :global(.orange) .slider:global(.game):global(.spottable):focus:active .knob::before,
|
|
979
|
+
:global(.spotlight-input-mouse) :global(.orange) .slider:global(.game):global(.spottable):focus:active .knob::before,
|
|
775
980
|
:global(.spotlight-input-key) :global(.orange) .slider:global(.game):global(.spottable):focus.pressed .knob::before,
|
|
776
981
|
:global(.spotlight-input-mouse) :global(.orange) .slider:global(.game):global(.spottable):focus.pressed .knob::before {
|
|
777
|
-
transform: translate(-50%, -50%) scale(1);
|
|
982
|
+
transform: translate(-50%, -50%) scale(1.16);
|
|
983
|
+
transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
|
|
984
|
+
}
|
|
985
|
+
:global(.spotlight-input-key) :global(.orange) .slider:global(.game):global(.spottable):focus:not(.pressed) .knob::before,
|
|
986
|
+
:global(.spotlight-input-mouse) :global(.orange) .slider:global(.game):global(.spottable):focus:not(.pressed) .knob::before {
|
|
987
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
988
|
+
transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
|
|
778
989
|
}
|
|
779
990
|
:global(.spotlight-input-key) :global(.orange) .slider:global(.game):global(.spottable):focus[disabled] .knob::before,
|
|
780
991
|
:global(.spotlight-input-mouse) :global(.orange) .slider:global(.game):global(.spottable):focus[disabled] .knob::before {
|
|
781
|
-
transform: translate(-50%, -50%) scale(
|
|
992
|
+
transform: translate(-50%, -50%) scale(1);
|
|
993
|
+
transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
|
|
782
994
|
}
|
|
783
995
|
:global(.spotlight-input-touch) :global(.orange) .slider:global(.game):global(.spottable):active {
|
|
784
996
|
background-color: transparent;
|
|
@@ -790,18 +1002,25 @@
|
|
|
790
1002
|
background-color: var(--semantic-color-surface-default-focused);
|
|
791
1003
|
border-color: transparent;
|
|
792
1004
|
box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
|
|
793
|
-
transform: translate(-50%, -50%) scale(1);
|
|
1005
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
1006
|
+
transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
|
|
794
1007
|
}
|
|
795
1008
|
:global(.spotlight-input-touch) :global(.orange) .slider:global(.game):global(.spottable):active.active .fill,
|
|
796
1009
|
:global(.spotlight-input-touch) :global(.orange) .slider:global(.game):global(.spottable):active.pressed .fill {
|
|
797
1010
|
background-color: var(--semantic-color-surface-accent);
|
|
798
1011
|
}
|
|
799
|
-
:global(.spotlight-input-touch) :global(.orange) .slider:global(.game):global(.spottable):active
|
|
1012
|
+
:global(.spotlight-input-touch) :global(.orange) .slider:global(.game):global(.spottable):active:active .knob::before,
|
|
800
1013
|
:global(.spotlight-input-touch) :global(.orange) .slider:global(.game):global(.spottable):active.pressed .knob::before {
|
|
801
|
-
transform: translate(-50%, -50%) scale(1);
|
|
1014
|
+
transform: translate(-50%, -50%) scale(1.16);
|
|
1015
|
+
transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
|
|
1016
|
+
}
|
|
1017
|
+
:global(.spotlight-input-touch) :global(.orange) .slider:global(.game):global(.spottable):active:not(.pressed) .knob::before {
|
|
1018
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
1019
|
+
transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
|
|
802
1020
|
}
|
|
803
1021
|
:global(.spotlight-input-touch) :global(.orange) .slider:global(.game):global(.spottable):active[disabled] .knob::before {
|
|
804
|
-
transform: translate(-50%, -50%) scale(
|
|
1022
|
+
transform: translate(-50%, -50%) scale(1);
|
|
1023
|
+
transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
|
|
805
1024
|
}
|
|
806
1025
|
:global(.spotlight-input-touch) :global(.orange) .slider:global(.game).pressed .fill {
|
|
807
1026
|
background-color: var(--semantic-color-surface-accent);
|
|
@@ -810,7 +1029,8 @@
|
|
|
810
1029
|
background-color: var(--semantic-color-surface-default-focused);
|
|
811
1030
|
border-color: transparent;
|
|
812
1031
|
box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
|
|
813
|
-
transform: translate(-50%, -50%) scale(1);
|
|
1032
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
1033
|
+
transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
|
|
814
1034
|
}
|
|
815
1035
|
:global(.spotlight-input-key) :global(.noAnimation) :global(.orange) .slider:global(.game):global(.spottable):focus .knob::before,
|
|
816
1036
|
:global(.spotlight-input-mouse) :global(.noAnimation) :global(.orange) .slider:global(.game):global(.spottable):focus .knob::before {
|
|
@@ -820,18 +1040,18 @@
|
|
|
820
1040
|
:global(.spotlight-input-mouse) :global(.noAnimation) :global(.orange) .slider:global(.game):global(.spottable):focus.active .knob::before,
|
|
821
1041
|
:global(.spotlight-input-key) :global(.noAnimation) :global(.orange) .slider:global(.game):global(.spottable):focus.pressed .knob::before,
|
|
822
1042
|
:global(.spotlight-input-mouse) :global(.noAnimation) :global(.orange) .slider:global(.game):global(.spottable):focus.pressed .knob::before {
|
|
823
|
-
transform: translate(-50%, -50%)
|
|
1043
|
+
transform: translate(-50%, -50%);
|
|
824
1044
|
}
|
|
825
1045
|
:global(.spotlight-input-touch) :global(.noAnimation) :global(.orange) .slider:global(.game):global(.spottable):active .knob::before {
|
|
826
1046
|
box-shadow: none;
|
|
827
1047
|
}
|
|
828
1048
|
:global(.spotlight-input-touch) :global(.noAnimation) :global(.orange) .slider:global(.game):global(.spottable):active.active .knob::before,
|
|
829
1049
|
:global(.spotlight-input-touch) :global(.noAnimation) :global(.orange) .slider:global(.game):global(.spottable):active.pressed .knob::before {
|
|
830
|
-
transform: translate(-50%, -50%)
|
|
1050
|
+
transform: translate(-50%, -50%);
|
|
831
1051
|
}
|
|
832
1052
|
:global(.spotlight-input-touch) :global(.noAnimation) :global(.orange) .slider:global(.game).pressed .knob::before {
|
|
833
1053
|
box-shadow: none;
|
|
834
|
-
transform: translate(-50%, -50%)
|
|
1054
|
+
transform: translate(-50%, -50%);
|
|
835
1055
|
}
|
|
836
1056
|
:global(.orange) .slider:global(.game)[disabled] {
|
|
837
1057
|
opacity: 0.3;
|
|
@@ -862,6 +1082,9 @@
|
|
|
862
1082
|
:global(.orange) .slider:global(.game).showAnchor .progressBar::after {
|
|
863
1083
|
background-color: color(from var(--semantic-color-surface-default-track) srgb r g b / 0.7);
|
|
864
1084
|
}
|
|
1085
|
+
:global(.orange) .slider:global(.game) .minMax {
|
|
1086
|
+
color: var(--semantic-color-on-background-sub);
|
|
1087
|
+
}
|
|
865
1088
|
.tooltip.horizontal.above {
|
|
866
1089
|
transform: translateY(-0.25rem);
|
|
867
1090
|
}
|