@enact/limestone 1.3.0 → 1.10.0
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 +13 -2
- package/Alert/Alert.js +39 -5
- package/Alert/Alert.module.css +48 -1
- package/Alert/tests/Alert-specs.js +91 -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/Button/tests/Button-specs.js +26 -0
- package/CHANGELOG.md +254 -0
- package/Card/Card.d.ts +40 -12
- package/Card/Card.js +164 -28
- package/Card/Card.module.css +277 -58
- package/Card/tests/Card-specs.js +67 -3
- 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 +71 -4
- package/Chips/Chip.js +72 -13
- package/Chips/Chip.module.css +3 -3
- package/Chips/Chips.js +37 -17
- package/Chips/Chips.module.css +1 -1
- package/Chips/tests/Chip-specs.js +43 -13
- package/Chips/tests/Chips-specs.js +31 -21
- package/ColorPicker/ColorPicker.js +27 -25
- package/ContextualMenuDecorator/ContextualMenuDecorator.d.ts +4 -5
- package/ContextualPopupDecorator/ContextualPopup.module.css +34 -34
- package/ContextualPopupDecorator/ContextualPopupDecorator.js +567 -549
- package/DatePicker/DatePicker.d.ts +4 -5
- package/DayPicker/DayPicker.d.ts +8 -7
- package/DayPicker/DaySelectorDecorator.js +12 -7
- package/Dropdown/Dropdown.d.ts +11 -13
- package/Dropdown/Dropdown.module.css +13 -9
- package/Dropdown/DropdownList.js +80 -54
- package/FixedPopupPanels/FixedPopupPanels.d.ts +4 -2
- package/FixedPopupPanels/FixedPopupPanels.module.css +18 -18
- package/FlexiblePopupPanels/FlexiblePopupPanels.module.css +23 -23
- package/FlexiblePopupPanels/useNavButtonFocus.js +7 -10
- package/FormCheckboxItem/FormCheckboxItem.d.ts +5 -4
- package/Heading/Heading.d.ts +9 -8
- package/Heading/Heading.js +2 -2
- package/Heading/Heading.module.css +5 -5
- package/Icon/Icon.d.ts +15 -4
- package/Icon/Icon.js +49 -2
- package/Icon/Icon.module.css +1 -1
- package/Icon/IconList.js +27 -1
- package/IconItem/IconItem.d.ts +13 -12
- package/IconItem/IconItem.js +15 -0
- package/IconItem/IconItem.module.css +107 -1
- package/IconItem/tests/IconItem-specs.js +30 -1
- package/Image/Image.d.ts +5 -4
- package/Image/Image.js +6 -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 +21 -3
- package/Input/Input.module.css +37 -8
- package/Input/InputField.js +79 -24
- package/Input/InputField.module.css +273 -41
- package/Input/InputFieldDecoratorIcon.js +1 -0
- package/Input/InputFieldSpotlightDecorator.js +257 -228
- package/Input/index.d.ts +120 -111
- package/Input/tests/Input-specs.js +26 -0
- package/Input/tests/InputField-specs.js +170 -3
- package/Input/tests/InputPopup-specs.js +1 -1
- 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.js +29 -27
- 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/MediaOverlay/tests/MediaOverlay-specs.js +29 -0
- 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/MediaPlayer/tests/util-specs.js +4 -1
- package/PageViews/PageViews.js +232 -82
- package/PageViews/PageViews.module.css +3 -0
- package/PageViews/PageViewsRouter.js +100 -42
- package/PageViews/tests/PageViews-specs.js +171 -0
- package/Panels/Header.js +54 -34
- 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 +245 -242
- package/Popup/Popup.module.css +24 -24
- package/PopupTabLayout/PopupTabLayout.d.ts +5 -7
- package/PopupTabLayout/PopupTabLayout.js +26 -18
- 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 +69 -2
- package/RadioItem/RadioItem.module.css +36 -36
- package/RangePicker/RangePicker.module.css +2 -2
- package/Scroller/EditableWrapper.js +28 -18
- package/Scroller/Scroller.d.ts +20 -16
- package/Scroller/Scroller.js +20 -13
- package/Scroller/Scroller.module.css +4 -4
- package/Scroller/useThemeScroller.js +3 -3
- package/Slider/Slider.d.ts +20 -14
- package/Slider/Slider.js +71 -14
- package/Slider/Slider.module.css +464 -91
- package/Slider/SliderBehaviorDecorator.js +16 -14
- package/Slider/tests/Slider-specs.js +53 -1
- package/Slider/utils.js +23 -7
- package/Spinner/Spinner.d.ts +5 -4
- package/Spinner/Spinner.js +10 -8
- 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 +26 -18
- 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/TabGroup-specs.js +1 -1
- package/TabLayout/tests/TabLayout-specs.js +52 -0
- package/ThemeDecorator/AccessibilityDecorator.js +12 -11
- package/ThemeDecorator/I18nFontDecorator.js +6 -4
- package/ThemeDecorator/ThemeDecorator.d.ts +16 -10
- package/ThemeDecorator/ThemeDecorator.js +24 -9
- package/ThemeDecorator/fontGenerator.js +1 -1
- package/ThemeDecorator/screenTypes.json +1 -0
- package/TimePicker/TimePicker.module.css +1 -1
- package/TimePicker/TimePickerBase.js +5 -3
- package/TooltipDecorator/Tooltip.module.css +1 -2
- package/TooltipDecorator/TooltipDecorator.js +12 -7
- package/TooltipDecorator/tests/useTooltip-specs.js +5 -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 +153 -47
- package/VideoPlayer/VideoPlayer.module.css +28 -11
- package/VirtualList/VirtualList.d.ts +9 -2
- package/VirtualList/VirtualList.js +51 -24
- 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/useSpotlight.js +1 -1
- 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/AsyncRenderChildren/AsyncRenderChildren.js +9 -5
- package/internal/AsyncRenderChildren/tests/AsyncRenderChildren-specs.js +4 -1
- package/internal/DateComponentPicker/DateComponentPicker.module.css +2 -2
- package/internal/DateTime/DateTime.module.css +1 -0
- package/internal/DateTime/DateTimeDecorator.js +5 -4
- package/internal/Panels/PanelsRouter.js +48 -31
- package/internal/Panels/useAutoFocus.js +10 -6
- package/internal/Panels/useFocusOnTransition.js +4 -3
- package/internal/Picker/Picker.js +7 -5
- package/internal/Picker/Picker.module.css +2 -2
- package/internal/Picker/SpottablePicker.js +15 -13
- package/internal/SharedStateDecorator/SharedStateDecorator.js +78 -99
- package/internal/validators/validators.js +21 -2
- package/package.json +18 -15
- package/styles/colors-highcontrast.less +9 -1
- package/styles/colors.less +12 -7
- package/styles/motion-mixins.less +66 -0
- package/styles/motions.less +78 -0
- package/styles/variables.less +176 -150
- package/useScroll/HoverToScroll.js +23 -17
- package/useScroll/Scrollbar.js +14 -10
- package/useScroll/ScrollbarPlaceholder.js +3 -5
- package/useScroll/ScrollbarTrack.js +7 -5
- package/useScroll/ScrollbarTrack.module.css +8 -8
- package/useScroll/useEvent.js +14 -3
- package/useScroll/useScroll.js +12 -2
- 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;
|
|
@@ -216,9 +341,37 @@
|
|
|
216
341
|
:global(.spotlight-input-touch) .slider:global(.neutral).noFill:global(.spottable):active.pressed .fill {
|
|
217
342
|
background-color: transparent;
|
|
218
343
|
}
|
|
344
|
+
.slider:global(.neutral).colorPicker .bar,
|
|
345
|
+
.slider:global(.neutral).colorPicker .fill,
|
|
346
|
+
.slider:global(.neutral).colorPicker .load {
|
|
347
|
+
background-color: transparent;
|
|
348
|
+
}
|
|
349
|
+
:global(.spotlight-input-key) .slider:global(.neutral).colorPicker:global(.spottable):focus .bar,
|
|
350
|
+
:global(.spotlight-input-mouse) .slider:global(.neutral).colorPicker:global(.spottable):focus .bar,
|
|
351
|
+
:global(.spotlight-input-key) .slider:global(.neutral).colorPicker:global(.spottable):focus .fill,
|
|
352
|
+
:global(.spotlight-input-mouse) .slider:global(.neutral).colorPicker:global(.spottable):focus .fill,
|
|
353
|
+
:global(.spotlight-input-key) .slider:global(.neutral).colorPicker:global(.spottable):focus .load,
|
|
354
|
+
:global(.spotlight-input-mouse) .slider:global(.neutral).colorPicker:global(.spottable):focus .load {
|
|
355
|
+
background-color: transparent;
|
|
356
|
+
}
|
|
357
|
+
:global(.spotlight-input-key) .slider:global(.neutral).colorPicker:global(.spottable):focus .knob::before,
|
|
358
|
+
:global(.spotlight-input-mouse) .slider:global(.neutral).colorPicker:global(.spottable):focus .knob::before {
|
|
359
|
+
border-color: var(--semantic-color-surface-white);
|
|
360
|
+
}
|
|
361
|
+
:global(.spotlight-input-touch) .slider:global(.neutral).colorPicker:global(.spottable):active .bar,
|
|
362
|
+
:global(.spotlight-input-touch) .slider:global(.neutral).colorPicker:global(.spottable):active .fill,
|
|
363
|
+
:global(.spotlight-input-touch) .slider:global(.neutral).colorPicker:global(.spottable):active .load {
|
|
364
|
+
background-color: transparent;
|
|
365
|
+
}
|
|
366
|
+
:global(.spotlight-input-touch) .slider:global(.neutral).colorPicker:global(.spottable):active .knob::before {
|
|
367
|
+
border-color: var(--semantic-color-surface-white);
|
|
368
|
+
}
|
|
219
369
|
.slider:global(.neutral).showAnchor .progressBar::after {
|
|
220
370
|
background-color: color(from var(--semantic-color-surface-default-track) srgb r g b / 0.7);
|
|
221
371
|
}
|
|
372
|
+
.slider:global(.neutral) .minMax {
|
|
373
|
+
color: var(--semantic-color-on-background-sub);
|
|
374
|
+
}
|
|
222
375
|
:global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast) .bar {
|
|
223
376
|
background-color: color(from var(--semantic-color-surface-default-track) srgb r g b / 0.7);
|
|
224
377
|
}
|
|
@@ -245,7 +398,8 @@
|
|
|
245
398
|
background-color: var(--semantic-color-surface-default-focused);
|
|
246
399
|
border-color: transparent;
|
|
247
400
|
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);
|
|
401
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
402
|
+
transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
|
|
249
403
|
}
|
|
250
404
|
:global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus.active .fill,
|
|
251
405
|
:global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus.active .fill,
|
|
@@ -253,15 +407,22 @@
|
|
|
253
407
|
:global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus.pressed .fill {
|
|
254
408
|
background-color: var(--semantic-color-surface-accent);
|
|
255
409
|
}
|
|
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
|
|
410
|
+
:global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus:active .knob::before,
|
|
411
|
+
:global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus:active .knob::before,
|
|
258
412
|
:global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus.pressed .knob::before,
|
|
259
413
|
: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);
|
|
414
|
+
transform: translate(-50%, -50%) scale(1.16);
|
|
415
|
+
transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
|
|
416
|
+
}
|
|
417
|
+
:global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus:not(.pressed) .knob::before,
|
|
418
|
+
:global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus:not(.pressed) .knob::before {
|
|
419
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
420
|
+
transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
|
|
261
421
|
}
|
|
262
422
|
:global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus[disabled] .knob::before,
|
|
263
423
|
: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(
|
|
424
|
+
transform: translate(-50%, -50%) scale(1);
|
|
425
|
+
transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
|
|
265
426
|
}
|
|
266
427
|
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active {
|
|
267
428
|
background-color: transparent;
|
|
@@ -273,18 +434,25 @@
|
|
|
273
434
|
background-color: var(--semantic-color-surface-default-focused);
|
|
274
435
|
border-color: transparent;
|
|
275
436
|
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);
|
|
437
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
438
|
+
transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
|
|
277
439
|
}
|
|
278
440
|
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active.active .fill,
|
|
279
441
|
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active.pressed .fill {
|
|
280
442
|
background-color: var(--semantic-color-surface-accent);
|
|
281
443
|
}
|
|
282
|
-
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active
|
|
444
|
+
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active:active .knob::before,
|
|
283
445
|
: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);
|
|
446
|
+
transform: translate(-50%, -50%) scale(1.16);
|
|
447
|
+
transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
|
|
448
|
+
}
|
|
449
|
+
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active:not(.pressed) .knob::before {
|
|
450
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
451
|
+
transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
|
|
285
452
|
}
|
|
286
453
|
: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(
|
|
454
|
+
transform: translate(-50%, -50%) scale(1);
|
|
455
|
+
transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
|
|
288
456
|
}
|
|
289
457
|
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).pressed .fill {
|
|
290
458
|
background-color: var(--semantic-color-surface-accent);
|
|
@@ -293,7 +461,8 @@
|
|
|
293
461
|
background-color: var(--semantic-color-surface-default-focused);
|
|
294
462
|
border-color: transparent;
|
|
295
463
|
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);
|
|
464
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
465
|
+
transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
|
|
297
466
|
}
|
|
298
467
|
:global(.spotlight-input-key) :global(.noAnimation) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus .knob::before,
|
|
299
468
|
:global(.spotlight-input-mouse) :global(.noAnimation) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus .knob::before {
|
|
@@ -303,18 +472,18 @@
|
|
|
303
472
|
:global(.spotlight-input-mouse) :global(.noAnimation) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus.active .knob::before,
|
|
304
473
|
:global(.spotlight-input-key) :global(.noAnimation) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus.pressed .knob::before,
|
|
305
474
|
: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%)
|
|
475
|
+
transform: translate(-50%, -50%);
|
|
307
476
|
}
|
|
308
477
|
:global(.spotlight-input-touch) :global(.noAnimation) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active .knob::before {
|
|
309
478
|
box-shadow: none;
|
|
310
479
|
}
|
|
311
480
|
:global(.spotlight-input-touch) :global(.noAnimation) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active.active .knob::before,
|
|
312
481
|
: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%)
|
|
482
|
+
transform: translate(-50%, -50%);
|
|
314
483
|
}
|
|
315
484
|
:global(.spotlight-input-touch) :global(.noAnimation) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).pressed .knob::before {
|
|
316
485
|
box-shadow: none;
|
|
317
|
-
transform: translate(-50%, -50%)
|
|
486
|
+
transform: translate(-50%, -50%);
|
|
318
487
|
}
|
|
319
488
|
:global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast)[disabled] {
|
|
320
489
|
opacity: 0.3;
|
|
@@ -342,9 +511,37 @@
|
|
|
342
511
|
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).noFill:global(.spottable):active.pressed .fill {
|
|
343
512
|
background-color: transparent;
|
|
344
513
|
}
|
|
514
|
+
:global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).colorPicker .bar,
|
|
515
|
+
:global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).colorPicker .fill,
|
|
516
|
+
:global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).colorPicker .load {
|
|
517
|
+
background-color: transparent;
|
|
518
|
+
}
|
|
519
|
+
:global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).colorPicker:global(.spottable):focus .bar,
|
|
520
|
+
:global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).colorPicker:global(.spottable):focus .bar,
|
|
521
|
+
:global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).colorPicker:global(.spottable):focus .fill,
|
|
522
|
+
:global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).colorPicker:global(.spottable):focus .fill,
|
|
523
|
+
:global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).colorPicker:global(.spottable):focus .load,
|
|
524
|
+
:global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).colorPicker:global(.spottable):focus .load {
|
|
525
|
+
background-color: transparent;
|
|
526
|
+
}
|
|
527
|
+
:global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).colorPicker:global(.spottable):focus .knob::before,
|
|
528
|
+
:global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).colorPicker:global(.spottable):focus .knob::before {
|
|
529
|
+
border-color: var(--semantic-color-surface-white);
|
|
530
|
+
}
|
|
531
|
+
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).colorPicker:global(.spottable):active .bar,
|
|
532
|
+
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).colorPicker:global(.spottable):active .fill,
|
|
533
|
+
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).colorPicker:global(.spottable):active .load {
|
|
534
|
+
background-color: transparent;
|
|
535
|
+
}
|
|
536
|
+
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).colorPicker:global(.spottable):active .knob::before {
|
|
537
|
+
border-color: var(--semantic-color-surface-white);
|
|
538
|
+
}
|
|
345
539
|
:global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).showAnchor .progressBar::after {
|
|
346
540
|
background-color: color(from var(--semantic-color-surface-default-track) srgb r g b / 0.7);
|
|
347
541
|
}
|
|
542
|
+
:global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast) .minMax {
|
|
543
|
+
color: var(--semantic-color-on-background-sub);
|
|
544
|
+
}
|
|
348
545
|
.slider:global(.light) .bar {
|
|
349
546
|
background-color: color(from var(--semantic-color-surface-default-track) srgb r g b / 0.7);
|
|
350
547
|
}
|
|
@@ -371,7 +568,8 @@
|
|
|
371
568
|
background-color: var(--semantic-color-surface-default-focused);
|
|
372
569
|
border-color: transparent;
|
|
373
570
|
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);
|
|
571
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
572
|
+
transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
|
|
375
573
|
}
|
|
376
574
|
:global(.spotlight-input-key) .slider:global(.light):global(.spottable):focus.active .fill,
|
|
377
575
|
:global(.spotlight-input-mouse) .slider:global(.light):global(.spottable):focus.active .fill,
|
|
@@ -379,15 +577,22 @@
|
|
|
379
577
|
:global(.spotlight-input-mouse) .slider:global(.light):global(.spottable):focus.pressed .fill {
|
|
380
578
|
background-color: var(--semantic-color-surface-accent);
|
|
381
579
|
}
|
|
382
|
-
:global(.spotlight-input-key) .slider:global(.light):global(.spottable):focus
|
|
383
|
-
:global(.spotlight-input-mouse) .slider:global(.light):global(.spottable):focus
|
|
580
|
+
:global(.spotlight-input-key) .slider:global(.light):global(.spottable):focus:active .knob::before,
|
|
581
|
+
:global(.spotlight-input-mouse) .slider:global(.light):global(.spottable):focus:active .knob::before,
|
|
384
582
|
:global(.spotlight-input-key) .slider:global(.light):global(.spottable):focus.pressed .knob::before,
|
|
385
583
|
:global(.spotlight-input-mouse) .slider:global(.light):global(.spottable):focus.pressed .knob::before {
|
|
386
|
-
transform: translate(-50%, -50%) scale(1);
|
|
584
|
+
transform: translate(-50%, -50%) scale(1.16);
|
|
585
|
+
transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
|
|
586
|
+
}
|
|
587
|
+
:global(.spotlight-input-key) .slider:global(.light):global(.spottable):focus:not(.pressed) .knob::before,
|
|
588
|
+
:global(.spotlight-input-mouse) .slider:global(.light):global(.spottable):focus:not(.pressed) .knob::before {
|
|
589
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
590
|
+
transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
|
|
387
591
|
}
|
|
388
592
|
:global(.spotlight-input-key) .slider:global(.light):global(.spottable):focus[disabled] .knob::before,
|
|
389
593
|
:global(.spotlight-input-mouse) .slider:global(.light):global(.spottable):focus[disabled] .knob::before {
|
|
390
|
-
transform: translate(-50%, -50%) scale(
|
|
594
|
+
transform: translate(-50%, -50%) scale(1);
|
|
595
|
+
transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
|
|
391
596
|
}
|
|
392
597
|
:global(.spotlight-input-touch) .slider:global(.light):global(.spottable):active {
|
|
393
598
|
background-color: transparent;
|
|
@@ -399,18 +604,25 @@
|
|
|
399
604
|
background-color: var(--semantic-color-surface-default-focused);
|
|
400
605
|
border-color: transparent;
|
|
401
606
|
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);
|
|
607
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
608
|
+
transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
|
|
403
609
|
}
|
|
404
610
|
:global(.spotlight-input-touch) .slider:global(.light):global(.spottable):active.active .fill,
|
|
405
611
|
:global(.spotlight-input-touch) .slider:global(.light):global(.spottable):active.pressed .fill {
|
|
406
612
|
background-color: var(--semantic-color-surface-accent);
|
|
407
613
|
}
|
|
408
|
-
:global(.spotlight-input-touch) .slider:global(.light):global(.spottable):active
|
|
614
|
+
:global(.spotlight-input-touch) .slider:global(.light):global(.spottable):active:active .knob::before,
|
|
409
615
|
:global(.spotlight-input-touch) .slider:global(.light):global(.spottable):active.pressed .knob::before {
|
|
410
|
-
transform: translate(-50%, -50%) scale(1);
|
|
616
|
+
transform: translate(-50%, -50%) scale(1.16);
|
|
617
|
+
transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
|
|
618
|
+
}
|
|
619
|
+
:global(.spotlight-input-touch) .slider:global(.light):global(.spottable):active:not(.pressed) .knob::before {
|
|
620
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
621
|
+
transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
|
|
411
622
|
}
|
|
412
623
|
:global(.spotlight-input-touch) .slider:global(.light):global(.spottable):active[disabled] .knob::before {
|
|
413
|
-
transform: translate(-50%, -50%) scale(
|
|
624
|
+
transform: translate(-50%, -50%) scale(1);
|
|
625
|
+
transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
|
|
414
626
|
}
|
|
415
627
|
:global(.spotlight-input-touch) .slider:global(.light).pressed .fill {
|
|
416
628
|
background-color: var(--semantic-color-surface-accent);
|
|
@@ -419,7 +631,8 @@
|
|
|
419
631
|
background-color: var(--semantic-color-surface-default-focused);
|
|
420
632
|
border-color: transparent;
|
|
421
633
|
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);
|
|
634
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
635
|
+
transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
|
|
423
636
|
}
|
|
424
637
|
:global(.spotlight-input-key) :global(.noAnimation) .slider:global(.light):global(.spottable):focus .knob::before,
|
|
425
638
|
:global(.spotlight-input-mouse) :global(.noAnimation) .slider:global(.light):global(.spottable):focus .knob::before {
|
|
@@ -429,18 +642,18 @@
|
|
|
429
642
|
:global(.spotlight-input-mouse) :global(.noAnimation) .slider:global(.light):global(.spottable):focus.active .knob::before,
|
|
430
643
|
:global(.spotlight-input-key) :global(.noAnimation) .slider:global(.light):global(.spottable):focus.pressed .knob::before,
|
|
431
644
|
:global(.spotlight-input-mouse) :global(.noAnimation) .slider:global(.light):global(.spottable):focus.pressed .knob::before {
|
|
432
|
-
transform: translate(-50%, -50%)
|
|
645
|
+
transform: translate(-50%, -50%);
|
|
433
646
|
}
|
|
434
647
|
:global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.light):global(.spottable):active .knob::before {
|
|
435
648
|
box-shadow: none;
|
|
436
649
|
}
|
|
437
650
|
:global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.light):global(.spottable):active.active .knob::before,
|
|
438
651
|
:global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.light):global(.spottable):active.pressed .knob::before {
|
|
439
|
-
transform: translate(-50%, -50%)
|
|
652
|
+
transform: translate(-50%, -50%);
|
|
440
653
|
}
|
|
441
654
|
:global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.light).pressed .knob::before {
|
|
442
655
|
box-shadow: none;
|
|
443
|
-
transform: translate(-50%, -50%)
|
|
656
|
+
transform: translate(-50%, -50%);
|
|
444
657
|
}
|
|
445
658
|
.slider:global(.light)[disabled] {
|
|
446
659
|
opacity: 0.3;
|
|
@@ -468,9 +681,37 @@
|
|
|
468
681
|
:global(.spotlight-input-touch) .slider:global(.light).noFill:global(.spottable):active.pressed .fill {
|
|
469
682
|
background-color: transparent;
|
|
470
683
|
}
|
|
684
|
+
.slider:global(.light).colorPicker .bar,
|
|
685
|
+
.slider:global(.light).colorPicker .fill,
|
|
686
|
+
.slider:global(.light).colorPicker .load {
|
|
687
|
+
background-color: transparent;
|
|
688
|
+
}
|
|
689
|
+
:global(.spotlight-input-key) .slider:global(.light).colorPicker:global(.spottable):focus .bar,
|
|
690
|
+
:global(.spotlight-input-mouse) .slider:global(.light).colorPicker:global(.spottable):focus .bar,
|
|
691
|
+
:global(.spotlight-input-key) .slider:global(.light).colorPicker:global(.spottable):focus .fill,
|
|
692
|
+
:global(.spotlight-input-mouse) .slider:global(.light).colorPicker:global(.spottable):focus .fill,
|
|
693
|
+
:global(.spotlight-input-key) .slider:global(.light).colorPicker:global(.spottable):focus .load,
|
|
694
|
+
:global(.spotlight-input-mouse) .slider:global(.light).colorPicker:global(.spottable):focus .load {
|
|
695
|
+
background-color: transparent;
|
|
696
|
+
}
|
|
697
|
+
:global(.spotlight-input-key) .slider:global(.light).colorPicker:global(.spottable):focus .knob::before,
|
|
698
|
+
:global(.spotlight-input-mouse) .slider:global(.light).colorPicker:global(.spottable):focus .knob::before {
|
|
699
|
+
border-color: var(--semantic-color-surface-white);
|
|
700
|
+
}
|
|
701
|
+
:global(.spotlight-input-touch) .slider:global(.light).colorPicker:global(.spottable):active .bar,
|
|
702
|
+
:global(.spotlight-input-touch) .slider:global(.light).colorPicker:global(.spottable):active .fill,
|
|
703
|
+
:global(.spotlight-input-touch) .slider:global(.light).colorPicker:global(.spottable):active .load {
|
|
704
|
+
background-color: transparent;
|
|
705
|
+
}
|
|
706
|
+
:global(.spotlight-input-touch) .slider:global(.light).colorPicker:global(.spottable):active .knob::before {
|
|
707
|
+
border-color: var(--semantic-color-surface-white);
|
|
708
|
+
}
|
|
471
709
|
.slider:global(.light).showAnchor .progressBar::after {
|
|
472
710
|
background-color: color(from var(--semantic-color-surface-default-track) srgb r g b / 0.7);
|
|
473
711
|
}
|
|
712
|
+
.slider:global(.light) .minMax {
|
|
713
|
+
color: var(--semantic-color-on-background-sub);
|
|
714
|
+
}
|
|
474
715
|
.slider:global(.game) {
|
|
475
716
|
--semantic-color-surface-default: #2d224c;
|
|
476
717
|
--semantic-color-surface-default-focused: #6d2fa1;
|
|
@@ -502,7 +743,8 @@
|
|
|
502
743
|
background-color: var(--semantic-color-surface-default-focused);
|
|
503
744
|
border-color: transparent;
|
|
504
745
|
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);
|
|
746
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
747
|
+
transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
|
|
506
748
|
}
|
|
507
749
|
:global(.spotlight-input-key) .slider:global(.game):global(.spottable):focus.active .fill,
|
|
508
750
|
:global(.spotlight-input-mouse) .slider:global(.game):global(.spottable):focus.active .fill,
|
|
@@ -510,15 +752,22 @@
|
|
|
510
752
|
:global(.spotlight-input-mouse) .slider:global(.game):global(.spottable):focus.pressed .fill {
|
|
511
753
|
background-color: var(--semantic-color-surface-accent);
|
|
512
754
|
}
|
|
513
|
-
:global(.spotlight-input-key) .slider:global(.game):global(.spottable):focus
|
|
514
|
-
:global(.spotlight-input-mouse) .slider:global(.game):global(.spottable):focus
|
|
755
|
+
:global(.spotlight-input-key) .slider:global(.game):global(.spottable):focus:active .knob::before,
|
|
756
|
+
:global(.spotlight-input-mouse) .slider:global(.game):global(.spottable):focus:active .knob::before,
|
|
515
757
|
:global(.spotlight-input-key) .slider:global(.game):global(.spottable):focus.pressed .knob::before,
|
|
516
758
|
:global(.spotlight-input-mouse) .slider:global(.game):global(.spottable):focus.pressed .knob::before {
|
|
517
|
-
transform: translate(-50%, -50%) scale(1);
|
|
759
|
+
transform: translate(-50%, -50%) scale(1.16);
|
|
760
|
+
transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
|
|
761
|
+
}
|
|
762
|
+
:global(.spotlight-input-key) .slider:global(.game):global(.spottable):focus:not(.pressed) .knob::before,
|
|
763
|
+
:global(.spotlight-input-mouse) .slider:global(.game):global(.spottable):focus:not(.pressed) .knob::before {
|
|
764
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
765
|
+
transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
|
|
518
766
|
}
|
|
519
767
|
:global(.spotlight-input-key) .slider:global(.game):global(.spottable):focus[disabled] .knob::before,
|
|
520
768
|
:global(.spotlight-input-mouse) .slider:global(.game):global(.spottable):focus[disabled] .knob::before {
|
|
521
|
-
transform: translate(-50%, -50%) scale(
|
|
769
|
+
transform: translate(-50%, -50%) scale(1);
|
|
770
|
+
transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
|
|
522
771
|
}
|
|
523
772
|
:global(.spotlight-input-touch) .slider:global(.game):global(.spottable):active {
|
|
524
773
|
background-color: transparent;
|
|
@@ -530,18 +779,25 @@
|
|
|
530
779
|
background-color: var(--semantic-color-surface-default-focused);
|
|
531
780
|
border-color: transparent;
|
|
532
781
|
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);
|
|
782
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
783
|
+
transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
|
|
534
784
|
}
|
|
535
785
|
:global(.spotlight-input-touch) .slider:global(.game):global(.spottable):active.active .fill,
|
|
536
786
|
:global(.spotlight-input-touch) .slider:global(.game):global(.spottable):active.pressed .fill {
|
|
537
787
|
background-color: var(--semantic-color-surface-accent);
|
|
538
788
|
}
|
|
539
|
-
:global(.spotlight-input-touch) .slider:global(.game):global(.spottable):active
|
|
789
|
+
:global(.spotlight-input-touch) .slider:global(.game):global(.spottable):active:active .knob::before,
|
|
540
790
|
:global(.spotlight-input-touch) .slider:global(.game):global(.spottable):active.pressed .knob::before {
|
|
541
|
-
transform: translate(-50%, -50%) scale(1);
|
|
791
|
+
transform: translate(-50%, -50%) scale(1.16);
|
|
792
|
+
transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
|
|
793
|
+
}
|
|
794
|
+
:global(.spotlight-input-touch) .slider:global(.game):global(.spottable):active:not(.pressed) .knob::before {
|
|
795
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
796
|
+
transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
|
|
542
797
|
}
|
|
543
798
|
:global(.spotlight-input-touch) .slider:global(.game):global(.spottable):active[disabled] .knob::before {
|
|
544
|
-
transform: translate(-50%, -50%) scale(
|
|
799
|
+
transform: translate(-50%, -50%) scale(1);
|
|
800
|
+
transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
|
|
545
801
|
}
|
|
546
802
|
:global(.spotlight-input-touch) .slider:global(.game).pressed .fill {
|
|
547
803
|
background-color: var(--semantic-color-surface-accent);
|
|
@@ -550,7 +806,8 @@
|
|
|
550
806
|
background-color: var(--semantic-color-surface-default-focused);
|
|
551
807
|
border-color: transparent;
|
|
552
808
|
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);
|
|
809
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
810
|
+
transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
|
|
554
811
|
}
|
|
555
812
|
:global(.spotlight-input-key) :global(.noAnimation) .slider:global(.game):global(.spottable):focus .knob::before,
|
|
556
813
|
:global(.spotlight-input-mouse) :global(.noAnimation) .slider:global(.game):global(.spottable):focus .knob::before {
|
|
@@ -560,18 +817,18 @@
|
|
|
560
817
|
:global(.spotlight-input-mouse) :global(.noAnimation) .slider:global(.game):global(.spottable):focus.active .knob::before,
|
|
561
818
|
:global(.spotlight-input-key) :global(.noAnimation) .slider:global(.game):global(.spottable):focus.pressed .knob::before,
|
|
562
819
|
:global(.spotlight-input-mouse) :global(.noAnimation) .slider:global(.game):global(.spottable):focus.pressed .knob::before {
|
|
563
|
-
transform: translate(-50%, -50%)
|
|
820
|
+
transform: translate(-50%, -50%);
|
|
564
821
|
}
|
|
565
822
|
:global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.game):global(.spottable):active .knob::before {
|
|
566
823
|
box-shadow: none;
|
|
567
824
|
}
|
|
568
825
|
:global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.game):global(.spottable):active.active .knob::before,
|
|
569
826
|
:global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.game):global(.spottable):active.pressed .knob::before {
|
|
570
|
-
transform: translate(-50%, -50%)
|
|
827
|
+
transform: translate(-50%, -50%);
|
|
571
828
|
}
|
|
572
829
|
:global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.game).pressed .knob::before {
|
|
573
830
|
box-shadow: none;
|
|
574
|
-
transform: translate(-50%, -50%)
|
|
831
|
+
transform: translate(-50%, -50%);
|
|
575
832
|
}
|
|
576
833
|
.slider:global(.game)[disabled] {
|
|
577
834
|
opacity: 0.3;
|
|
@@ -599,9 +856,37 @@
|
|
|
599
856
|
:global(.spotlight-input-touch) .slider:global(.game).noFill:global(.spottable):active.pressed .fill {
|
|
600
857
|
background-color: transparent;
|
|
601
858
|
}
|
|
859
|
+
.slider:global(.game).colorPicker .bar,
|
|
860
|
+
.slider:global(.game).colorPicker .fill,
|
|
861
|
+
.slider:global(.game).colorPicker .load {
|
|
862
|
+
background-color: transparent;
|
|
863
|
+
}
|
|
864
|
+
:global(.spotlight-input-key) .slider:global(.game).colorPicker:global(.spottable):focus .bar,
|
|
865
|
+
:global(.spotlight-input-mouse) .slider:global(.game).colorPicker:global(.spottable):focus .bar,
|
|
866
|
+
:global(.spotlight-input-key) .slider:global(.game).colorPicker:global(.spottable):focus .fill,
|
|
867
|
+
:global(.spotlight-input-mouse) .slider:global(.game).colorPicker:global(.spottable):focus .fill,
|
|
868
|
+
:global(.spotlight-input-key) .slider:global(.game).colorPicker:global(.spottable):focus .load,
|
|
869
|
+
:global(.spotlight-input-mouse) .slider:global(.game).colorPicker:global(.spottable):focus .load {
|
|
870
|
+
background-color: transparent;
|
|
871
|
+
}
|
|
872
|
+
:global(.spotlight-input-key) .slider:global(.game).colorPicker:global(.spottable):focus .knob::before,
|
|
873
|
+
:global(.spotlight-input-mouse) .slider:global(.game).colorPicker:global(.spottable):focus .knob::before {
|
|
874
|
+
border-color: var(--semantic-color-surface-white);
|
|
875
|
+
}
|
|
876
|
+
:global(.spotlight-input-touch) .slider:global(.game).colorPicker:global(.spottable):active .bar,
|
|
877
|
+
:global(.spotlight-input-touch) .slider:global(.game).colorPicker:global(.spottable):active .fill,
|
|
878
|
+
:global(.spotlight-input-touch) .slider:global(.game).colorPicker:global(.spottable):active .load {
|
|
879
|
+
background-color: transparent;
|
|
880
|
+
}
|
|
881
|
+
:global(.spotlight-input-touch) .slider:global(.game).colorPicker:global(.spottable):active .knob::before {
|
|
882
|
+
border-color: var(--semantic-color-surface-white);
|
|
883
|
+
}
|
|
602
884
|
.slider:global(.game).showAnchor .progressBar::after {
|
|
603
885
|
background-color: color(from var(--semantic-color-surface-default-track) srgb r g b / 0.7);
|
|
604
886
|
}
|
|
887
|
+
.slider:global(.game) .minMax {
|
|
888
|
+
color: var(--semantic-color-on-background-sub);
|
|
889
|
+
}
|
|
605
890
|
:global(.green) .slider:global(.game) {
|
|
606
891
|
--semantic-color-surface-default: #1F2C24;
|
|
607
892
|
--semantic-color-surface-default-focused: #3ea07d;
|
|
@@ -632,7 +917,8 @@
|
|
|
632
917
|
background-color: var(--semantic-color-surface-default-focused);
|
|
633
918
|
border-color: transparent;
|
|
634
919
|
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);
|
|
920
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
921
|
+
transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
|
|
636
922
|
}
|
|
637
923
|
:global(.spotlight-input-key) :global(.green) .slider:global(.game):global(.spottable):focus.active .fill,
|
|
638
924
|
:global(.spotlight-input-mouse) :global(.green) .slider:global(.game):global(.spottable):focus.active .fill,
|
|
@@ -640,15 +926,22 @@
|
|
|
640
926
|
:global(.spotlight-input-mouse) :global(.green) .slider:global(.game):global(.spottable):focus.pressed .fill {
|
|
641
927
|
background-color: var(--semantic-color-surface-accent);
|
|
642
928
|
}
|
|
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
|
|
929
|
+
:global(.spotlight-input-key) :global(.green) .slider:global(.game):global(.spottable):focus:active .knob::before,
|
|
930
|
+
:global(.spotlight-input-mouse) :global(.green) .slider:global(.game):global(.spottable):focus:active .knob::before,
|
|
645
931
|
:global(.spotlight-input-key) :global(.green) .slider:global(.game):global(.spottable):focus.pressed .knob::before,
|
|
646
932
|
:global(.spotlight-input-mouse) :global(.green) .slider:global(.game):global(.spottable):focus.pressed .knob::before {
|
|
647
|
-
transform: translate(-50%, -50%) scale(1);
|
|
933
|
+
transform: translate(-50%, -50%) scale(1.16);
|
|
934
|
+
transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
|
|
935
|
+
}
|
|
936
|
+
:global(.spotlight-input-key) :global(.green) .slider:global(.game):global(.spottable):focus:not(.pressed) .knob::before,
|
|
937
|
+
:global(.spotlight-input-mouse) :global(.green) .slider:global(.game):global(.spottable):focus:not(.pressed) .knob::before {
|
|
938
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
939
|
+
transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
|
|
648
940
|
}
|
|
649
941
|
:global(.spotlight-input-key) :global(.green) .slider:global(.game):global(.spottable):focus[disabled] .knob::before,
|
|
650
942
|
:global(.spotlight-input-mouse) :global(.green) .slider:global(.game):global(.spottable):focus[disabled] .knob::before {
|
|
651
|
-
transform: translate(-50%, -50%) scale(
|
|
943
|
+
transform: translate(-50%, -50%) scale(1);
|
|
944
|
+
transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
|
|
652
945
|
}
|
|
653
946
|
:global(.spotlight-input-touch) :global(.green) .slider:global(.game):global(.spottable):active {
|
|
654
947
|
background-color: transparent;
|
|
@@ -660,18 +953,25 @@
|
|
|
660
953
|
background-color: var(--semantic-color-surface-default-focused);
|
|
661
954
|
border-color: transparent;
|
|
662
955
|
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);
|
|
956
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
957
|
+
transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
|
|
664
958
|
}
|
|
665
959
|
:global(.spotlight-input-touch) :global(.green) .slider:global(.game):global(.spottable):active.active .fill,
|
|
666
960
|
:global(.spotlight-input-touch) :global(.green) .slider:global(.game):global(.spottable):active.pressed .fill {
|
|
667
961
|
background-color: var(--semantic-color-surface-accent);
|
|
668
962
|
}
|
|
669
|
-
:global(.spotlight-input-touch) :global(.green) .slider:global(.game):global(.spottable):active
|
|
963
|
+
:global(.spotlight-input-touch) :global(.green) .slider:global(.game):global(.spottable):active:active .knob::before,
|
|
670
964
|
:global(.spotlight-input-touch) :global(.green) .slider:global(.game):global(.spottable):active.pressed .knob::before {
|
|
671
|
-
transform: translate(-50%, -50%) scale(1);
|
|
965
|
+
transform: translate(-50%, -50%) scale(1.16);
|
|
966
|
+
transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
|
|
967
|
+
}
|
|
968
|
+
:global(.spotlight-input-touch) :global(.green) .slider:global(.game):global(.spottable):active:not(.pressed) .knob::before {
|
|
969
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
970
|
+
transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
|
|
672
971
|
}
|
|
673
972
|
:global(.spotlight-input-touch) :global(.green) .slider:global(.game):global(.spottable):active[disabled] .knob::before {
|
|
674
|
-
transform: translate(-50%, -50%) scale(
|
|
973
|
+
transform: translate(-50%, -50%) scale(1);
|
|
974
|
+
transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
|
|
675
975
|
}
|
|
676
976
|
:global(.spotlight-input-touch) :global(.green) .slider:global(.game).pressed .fill {
|
|
677
977
|
background-color: var(--semantic-color-surface-accent);
|
|
@@ -680,7 +980,8 @@
|
|
|
680
980
|
background-color: var(--semantic-color-surface-default-focused);
|
|
681
981
|
border-color: transparent;
|
|
682
982
|
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);
|
|
983
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
984
|
+
transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
|
|
684
985
|
}
|
|
685
986
|
:global(.spotlight-input-key) :global(.noAnimation) :global(.green) .slider:global(.game):global(.spottable):focus .knob::before,
|
|
686
987
|
:global(.spotlight-input-mouse) :global(.noAnimation) :global(.green) .slider:global(.game):global(.spottable):focus .knob::before {
|
|
@@ -690,18 +991,18 @@
|
|
|
690
991
|
:global(.spotlight-input-mouse) :global(.noAnimation) :global(.green) .slider:global(.game):global(.spottable):focus.active .knob::before,
|
|
691
992
|
:global(.spotlight-input-key) :global(.noAnimation) :global(.green) .slider:global(.game):global(.spottable):focus.pressed .knob::before,
|
|
692
993
|
:global(.spotlight-input-mouse) :global(.noAnimation) :global(.green) .slider:global(.game):global(.spottable):focus.pressed .knob::before {
|
|
693
|
-
transform: translate(-50%, -50%)
|
|
994
|
+
transform: translate(-50%, -50%);
|
|
694
995
|
}
|
|
695
996
|
:global(.spotlight-input-touch) :global(.noAnimation) :global(.green) .slider:global(.game):global(.spottable):active .knob::before {
|
|
696
997
|
box-shadow: none;
|
|
697
998
|
}
|
|
698
999
|
:global(.spotlight-input-touch) :global(.noAnimation) :global(.green) .slider:global(.game):global(.spottable):active.active .knob::before,
|
|
699
1000
|
:global(.spotlight-input-touch) :global(.noAnimation) :global(.green) .slider:global(.game):global(.spottable):active.pressed .knob::before {
|
|
700
|
-
transform: translate(-50%, -50%)
|
|
1001
|
+
transform: translate(-50%, -50%);
|
|
701
1002
|
}
|
|
702
1003
|
:global(.spotlight-input-touch) :global(.noAnimation) :global(.green) .slider:global(.game).pressed .knob::before {
|
|
703
1004
|
box-shadow: none;
|
|
704
|
-
transform: translate(-50%, -50%)
|
|
1005
|
+
transform: translate(-50%, -50%);
|
|
705
1006
|
}
|
|
706
1007
|
:global(.green) .slider:global(.game)[disabled] {
|
|
707
1008
|
opacity: 0.3;
|
|
@@ -729,9 +1030,37 @@
|
|
|
729
1030
|
:global(.spotlight-input-touch) :global(.green) .slider:global(.game).noFill:global(.spottable):active.pressed .fill {
|
|
730
1031
|
background-color: transparent;
|
|
731
1032
|
}
|
|
1033
|
+
:global(.green) .slider:global(.game).colorPicker .bar,
|
|
1034
|
+
:global(.green) .slider:global(.game).colorPicker .fill,
|
|
1035
|
+
:global(.green) .slider:global(.game).colorPicker .load {
|
|
1036
|
+
background-color: transparent;
|
|
1037
|
+
}
|
|
1038
|
+
:global(.spotlight-input-key) :global(.green) .slider:global(.game).colorPicker:global(.spottable):focus .bar,
|
|
1039
|
+
:global(.spotlight-input-mouse) :global(.green) .slider:global(.game).colorPicker:global(.spottable):focus .bar,
|
|
1040
|
+
:global(.spotlight-input-key) :global(.green) .slider:global(.game).colorPicker:global(.spottable):focus .fill,
|
|
1041
|
+
:global(.spotlight-input-mouse) :global(.green) .slider:global(.game).colorPicker:global(.spottable):focus .fill,
|
|
1042
|
+
:global(.spotlight-input-key) :global(.green) .slider:global(.game).colorPicker:global(.spottable):focus .load,
|
|
1043
|
+
:global(.spotlight-input-mouse) :global(.green) .slider:global(.game).colorPicker:global(.spottable):focus .load {
|
|
1044
|
+
background-color: transparent;
|
|
1045
|
+
}
|
|
1046
|
+
:global(.spotlight-input-key) :global(.green) .slider:global(.game).colorPicker:global(.spottable):focus .knob::before,
|
|
1047
|
+
:global(.spotlight-input-mouse) :global(.green) .slider:global(.game).colorPicker:global(.spottable):focus .knob::before {
|
|
1048
|
+
border-color: var(--semantic-color-surface-white);
|
|
1049
|
+
}
|
|
1050
|
+
:global(.spotlight-input-touch) :global(.green) .slider:global(.game).colorPicker:global(.spottable):active .bar,
|
|
1051
|
+
:global(.spotlight-input-touch) :global(.green) .slider:global(.game).colorPicker:global(.spottable):active .fill,
|
|
1052
|
+
:global(.spotlight-input-touch) :global(.green) .slider:global(.game).colorPicker:global(.spottable):active .load {
|
|
1053
|
+
background-color: transparent;
|
|
1054
|
+
}
|
|
1055
|
+
:global(.spotlight-input-touch) :global(.green) .slider:global(.game).colorPicker:global(.spottable):active .knob::before {
|
|
1056
|
+
border-color: var(--semantic-color-surface-white);
|
|
1057
|
+
}
|
|
732
1058
|
:global(.green) .slider:global(.game).showAnchor .progressBar::after {
|
|
733
1059
|
background-color: color(from var(--semantic-color-surface-default-track) srgb r g b / 0.7);
|
|
734
1060
|
}
|
|
1061
|
+
:global(.green) .slider:global(.game) .minMax {
|
|
1062
|
+
color: var(--semantic-color-on-background-sub);
|
|
1063
|
+
}
|
|
735
1064
|
:global(.orange) .slider:global(.game) {
|
|
736
1065
|
--semantic-color-surface-default: #422923;
|
|
737
1066
|
--semantic-color-surface-default-focused: #b85f23;
|
|
@@ -762,7 +1091,8 @@
|
|
|
762
1091
|
background-color: var(--semantic-color-surface-default-focused);
|
|
763
1092
|
border-color: transparent;
|
|
764
1093
|
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);
|
|
1094
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
1095
|
+
transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
|
|
766
1096
|
}
|
|
767
1097
|
:global(.spotlight-input-key) :global(.orange) .slider:global(.game):global(.spottable):focus.active .fill,
|
|
768
1098
|
:global(.spotlight-input-mouse) :global(.orange) .slider:global(.game):global(.spottable):focus.active .fill,
|
|
@@ -770,15 +1100,22 @@
|
|
|
770
1100
|
:global(.spotlight-input-mouse) :global(.orange) .slider:global(.game):global(.spottable):focus.pressed .fill {
|
|
771
1101
|
background-color: var(--semantic-color-surface-accent);
|
|
772
1102
|
}
|
|
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
|
|
1103
|
+
:global(.spotlight-input-key) :global(.orange) .slider:global(.game):global(.spottable):focus:active .knob::before,
|
|
1104
|
+
:global(.spotlight-input-mouse) :global(.orange) .slider:global(.game):global(.spottable):focus:active .knob::before,
|
|
775
1105
|
:global(.spotlight-input-key) :global(.orange) .slider:global(.game):global(.spottable):focus.pressed .knob::before,
|
|
776
1106
|
:global(.spotlight-input-mouse) :global(.orange) .slider:global(.game):global(.spottable):focus.pressed .knob::before {
|
|
777
|
-
transform: translate(-50%, -50%) scale(1);
|
|
1107
|
+
transform: translate(-50%, -50%) scale(1.16);
|
|
1108
|
+
transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
|
|
1109
|
+
}
|
|
1110
|
+
:global(.spotlight-input-key) :global(.orange) .slider:global(.game):global(.spottable):focus:not(.pressed) .knob::before,
|
|
1111
|
+
:global(.spotlight-input-mouse) :global(.orange) .slider:global(.game):global(.spottable):focus:not(.pressed) .knob::before {
|
|
1112
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
1113
|
+
transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
|
|
778
1114
|
}
|
|
779
1115
|
:global(.spotlight-input-key) :global(.orange) .slider:global(.game):global(.spottable):focus[disabled] .knob::before,
|
|
780
1116
|
:global(.spotlight-input-mouse) :global(.orange) .slider:global(.game):global(.spottable):focus[disabled] .knob::before {
|
|
781
|
-
transform: translate(-50%, -50%) scale(
|
|
1117
|
+
transform: translate(-50%, -50%) scale(1);
|
|
1118
|
+
transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
|
|
782
1119
|
}
|
|
783
1120
|
:global(.spotlight-input-touch) :global(.orange) .slider:global(.game):global(.spottable):active {
|
|
784
1121
|
background-color: transparent;
|
|
@@ -790,18 +1127,25 @@
|
|
|
790
1127
|
background-color: var(--semantic-color-surface-default-focused);
|
|
791
1128
|
border-color: transparent;
|
|
792
1129
|
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);
|
|
1130
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
1131
|
+
transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
|
|
794
1132
|
}
|
|
795
1133
|
:global(.spotlight-input-touch) :global(.orange) .slider:global(.game):global(.spottable):active.active .fill,
|
|
796
1134
|
:global(.spotlight-input-touch) :global(.orange) .slider:global(.game):global(.spottable):active.pressed .fill {
|
|
797
1135
|
background-color: var(--semantic-color-surface-accent);
|
|
798
1136
|
}
|
|
799
|
-
:global(.spotlight-input-touch) :global(.orange) .slider:global(.game):global(.spottable):active
|
|
1137
|
+
:global(.spotlight-input-touch) :global(.orange) .slider:global(.game):global(.spottable):active:active .knob::before,
|
|
800
1138
|
:global(.spotlight-input-touch) :global(.orange) .slider:global(.game):global(.spottable):active.pressed .knob::before {
|
|
801
|
-
transform: translate(-50%, -50%) scale(1);
|
|
1139
|
+
transform: translate(-50%, -50%) scale(1.16);
|
|
1140
|
+
transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
|
|
1141
|
+
}
|
|
1142
|
+
:global(.spotlight-input-touch) :global(.orange) .slider:global(.game):global(.spottable):active:not(.pressed) .knob::before {
|
|
1143
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
1144
|
+
transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
|
|
802
1145
|
}
|
|
803
1146
|
:global(.spotlight-input-touch) :global(.orange) .slider:global(.game):global(.spottable):active[disabled] .knob::before {
|
|
804
|
-
transform: translate(-50%, -50%) scale(
|
|
1147
|
+
transform: translate(-50%, -50%) scale(1);
|
|
1148
|
+
transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
|
|
805
1149
|
}
|
|
806
1150
|
:global(.spotlight-input-touch) :global(.orange) .slider:global(.game).pressed .fill {
|
|
807
1151
|
background-color: var(--semantic-color-surface-accent);
|
|
@@ -810,7 +1154,8 @@
|
|
|
810
1154
|
background-color: var(--semantic-color-surface-default-focused);
|
|
811
1155
|
border-color: transparent;
|
|
812
1156
|
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);
|
|
1157
|
+
transform: translate(-50%, -50%) scale(1.33);
|
|
1158
|
+
transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
|
|
814
1159
|
}
|
|
815
1160
|
:global(.spotlight-input-key) :global(.noAnimation) :global(.orange) .slider:global(.game):global(.spottable):focus .knob::before,
|
|
816
1161
|
:global(.spotlight-input-mouse) :global(.noAnimation) :global(.orange) .slider:global(.game):global(.spottable):focus .knob::before {
|
|
@@ -820,18 +1165,18 @@
|
|
|
820
1165
|
:global(.spotlight-input-mouse) :global(.noAnimation) :global(.orange) .slider:global(.game):global(.spottable):focus.active .knob::before,
|
|
821
1166
|
:global(.spotlight-input-key) :global(.noAnimation) :global(.orange) .slider:global(.game):global(.spottable):focus.pressed .knob::before,
|
|
822
1167
|
:global(.spotlight-input-mouse) :global(.noAnimation) :global(.orange) .slider:global(.game):global(.spottable):focus.pressed .knob::before {
|
|
823
|
-
transform: translate(-50%, -50%)
|
|
1168
|
+
transform: translate(-50%, -50%);
|
|
824
1169
|
}
|
|
825
1170
|
:global(.spotlight-input-touch) :global(.noAnimation) :global(.orange) .slider:global(.game):global(.spottable):active .knob::before {
|
|
826
1171
|
box-shadow: none;
|
|
827
1172
|
}
|
|
828
1173
|
:global(.spotlight-input-touch) :global(.noAnimation) :global(.orange) .slider:global(.game):global(.spottable):active.active .knob::before,
|
|
829
1174
|
:global(.spotlight-input-touch) :global(.noAnimation) :global(.orange) .slider:global(.game):global(.spottable):active.pressed .knob::before {
|
|
830
|
-
transform: translate(-50%, -50%)
|
|
1175
|
+
transform: translate(-50%, -50%);
|
|
831
1176
|
}
|
|
832
1177
|
:global(.spotlight-input-touch) :global(.noAnimation) :global(.orange) .slider:global(.game).pressed .knob::before {
|
|
833
1178
|
box-shadow: none;
|
|
834
|
-
transform: translate(-50%, -50%)
|
|
1179
|
+
transform: translate(-50%, -50%);
|
|
835
1180
|
}
|
|
836
1181
|
:global(.orange) .slider:global(.game)[disabled] {
|
|
837
1182
|
opacity: 0.3;
|
|
@@ -859,9 +1204,37 @@
|
|
|
859
1204
|
:global(.spotlight-input-touch) :global(.orange) .slider:global(.game).noFill:global(.spottable):active.pressed .fill {
|
|
860
1205
|
background-color: transparent;
|
|
861
1206
|
}
|
|
1207
|
+
:global(.orange) .slider:global(.game).colorPicker .bar,
|
|
1208
|
+
:global(.orange) .slider:global(.game).colorPicker .fill,
|
|
1209
|
+
:global(.orange) .slider:global(.game).colorPicker .load {
|
|
1210
|
+
background-color: transparent;
|
|
1211
|
+
}
|
|
1212
|
+
:global(.spotlight-input-key) :global(.orange) .slider:global(.game).colorPicker:global(.spottable):focus .bar,
|
|
1213
|
+
:global(.spotlight-input-mouse) :global(.orange) .slider:global(.game).colorPicker:global(.spottable):focus .bar,
|
|
1214
|
+
:global(.spotlight-input-key) :global(.orange) .slider:global(.game).colorPicker:global(.spottable):focus .fill,
|
|
1215
|
+
:global(.spotlight-input-mouse) :global(.orange) .slider:global(.game).colorPicker:global(.spottable):focus .fill,
|
|
1216
|
+
:global(.spotlight-input-key) :global(.orange) .slider:global(.game).colorPicker:global(.spottable):focus .load,
|
|
1217
|
+
:global(.spotlight-input-mouse) :global(.orange) .slider:global(.game).colorPicker:global(.spottable):focus .load {
|
|
1218
|
+
background-color: transparent;
|
|
1219
|
+
}
|
|
1220
|
+
:global(.spotlight-input-key) :global(.orange) .slider:global(.game).colorPicker:global(.spottable):focus .knob::before,
|
|
1221
|
+
:global(.spotlight-input-mouse) :global(.orange) .slider:global(.game).colorPicker:global(.spottable):focus .knob::before {
|
|
1222
|
+
border-color: var(--semantic-color-surface-white);
|
|
1223
|
+
}
|
|
1224
|
+
:global(.spotlight-input-touch) :global(.orange) .slider:global(.game).colorPicker:global(.spottable):active .bar,
|
|
1225
|
+
:global(.spotlight-input-touch) :global(.orange) .slider:global(.game).colorPicker:global(.spottable):active .fill,
|
|
1226
|
+
:global(.spotlight-input-touch) :global(.orange) .slider:global(.game).colorPicker:global(.spottable):active .load {
|
|
1227
|
+
background-color: transparent;
|
|
1228
|
+
}
|
|
1229
|
+
:global(.spotlight-input-touch) :global(.orange) .slider:global(.game).colorPicker:global(.spottable):active .knob::before {
|
|
1230
|
+
border-color: var(--semantic-color-surface-white);
|
|
1231
|
+
}
|
|
862
1232
|
:global(.orange) .slider:global(.game).showAnchor .progressBar::after {
|
|
863
1233
|
background-color: color(from var(--semantic-color-surface-default-track) srgb r g b / 0.7);
|
|
864
1234
|
}
|
|
1235
|
+
:global(.orange) .slider:global(.game) .minMax {
|
|
1236
|
+
color: var(--semantic-color-on-background-sub);
|
|
1237
|
+
}
|
|
865
1238
|
.tooltip.horizontal.above {
|
|
866
1239
|
transform: translateY(-0.25rem);
|
|
867
1240
|
}
|