@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.
Files changed (200) hide show
  1. package/.github/workflows/ci-branch.yml +21 -0
  2. package/.github/workflows/ci-pull-request.yml +16 -0
  3. package/.github/workflows/ci-reusable.yml +73 -0
  4. package/ActionGuide/ActionGuide.d.ts +5 -4
  5. package/ActionGuide/ActionGuide.module.css +1 -1
  6. package/Alert/Alert.d.ts +13 -2
  7. package/Alert/Alert.js +39 -5
  8. package/Alert/Alert.module.css +48 -1
  9. package/Alert/tests/Alert-specs.js +91 -0
  10. package/BodyText/BodyText.d.ts +5 -4
  11. package/BodyText/BodyText.module.css +7 -7
  12. package/Button/Button.d.ts +17 -12
  13. package/Button/Button.js +1 -1
  14. package/Button/Button.module.css +195 -268
  15. package/Button/tests/Button-specs.js +26 -0
  16. package/CHANGELOG.md +254 -0
  17. package/Card/Card.d.ts +40 -12
  18. package/Card/Card.js +164 -28
  19. package/Card/Card.module.css +277 -58
  20. package/Card/tests/Card-specs.js +67 -3
  21. package/Checkbox/Checkbox.d.ts +8 -7
  22. package/Checkbox/Checkbox.js +3 -1
  23. package/Checkbox/Checkbox.module.css +213 -120
  24. package/Checkbox/tests/Checkbox-specs.js +1 -1
  25. package/CheckboxItem/CheckboxItem.d.ts +22 -7
  26. package/CheckboxItem/CheckboxItem.js +71 -4
  27. package/Chips/Chip.js +72 -13
  28. package/Chips/Chip.module.css +3 -3
  29. package/Chips/Chips.js +37 -17
  30. package/Chips/Chips.module.css +1 -1
  31. package/Chips/tests/Chip-specs.js +43 -13
  32. package/Chips/tests/Chips-specs.js +31 -21
  33. package/ColorPicker/ColorPicker.js +27 -25
  34. package/ContextualMenuDecorator/ContextualMenuDecorator.d.ts +4 -5
  35. package/ContextualPopupDecorator/ContextualPopup.module.css +34 -34
  36. package/ContextualPopupDecorator/ContextualPopupDecorator.js +567 -549
  37. package/DatePicker/DatePicker.d.ts +4 -5
  38. package/DayPicker/DayPicker.d.ts +8 -7
  39. package/DayPicker/DaySelectorDecorator.js +12 -7
  40. package/Dropdown/Dropdown.d.ts +11 -13
  41. package/Dropdown/Dropdown.module.css +13 -9
  42. package/Dropdown/DropdownList.js +80 -54
  43. package/FixedPopupPanels/FixedPopupPanels.d.ts +4 -2
  44. package/FixedPopupPanels/FixedPopupPanels.module.css +18 -18
  45. package/FlexiblePopupPanels/FlexiblePopupPanels.module.css +23 -23
  46. package/FlexiblePopupPanels/useNavButtonFocus.js +7 -10
  47. package/FormCheckboxItem/FormCheckboxItem.d.ts +5 -4
  48. package/Heading/Heading.d.ts +9 -8
  49. package/Heading/Heading.js +2 -2
  50. package/Heading/Heading.module.css +5 -5
  51. package/Icon/Icon.d.ts +15 -4
  52. package/Icon/Icon.js +49 -2
  53. package/Icon/Icon.module.css +1 -1
  54. package/Icon/IconList.js +27 -1
  55. package/IconItem/IconItem.d.ts +13 -12
  56. package/IconItem/IconItem.js +15 -0
  57. package/IconItem/IconItem.module.css +107 -1
  58. package/IconItem/tests/IconItem-specs.js +30 -1
  59. package/Image/Image.d.ts +5 -4
  60. package/Image/Image.js +6 -4
  61. package/ImageItem/ImageItem.d.ts +11 -10
  62. package/ImageItem/ImageItem.js +37 -31
  63. package/ImageItem/ImageItem.module.css +30 -30
  64. package/ImageItem/tests/ImageItem-specs.js +3 -10
  65. package/Input/Input.js +21 -3
  66. package/Input/Input.module.css +37 -8
  67. package/Input/InputField.js +79 -24
  68. package/Input/InputField.module.css +273 -41
  69. package/Input/InputFieldDecoratorIcon.js +1 -0
  70. package/Input/InputFieldSpotlightDecorator.js +257 -228
  71. package/Input/index.d.ts +120 -111
  72. package/Input/tests/Input-specs.js +26 -0
  73. package/Input/tests/InputField-specs.js +170 -3
  74. package/Input/tests/InputPopup-specs.js +1 -1
  75. package/Item/Item.d.ts +16 -9
  76. package/Item/Item.js +20 -2
  77. package/Item/Item.module.css +1 -1
  78. package/KeyGuide/KeyGuide.d.ts +8 -7
  79. package/KeyGuide/KeyGuide.js +29 -27
  80. package/KeyGuide/KeyGuide.module.css +25 -1
  81. package/Marquee/Marquee.d.ts +2 -4
  82. package/MediaOverlay/MediaOverlay.d.ts +12 -11
  83. package/MediaOverlay/MediaOverlay.js +43 -21
  84. package/MediaOverlay/MediaOverlay.module.css +114 -15
  85. package/MediaOverlay/tests/MediaOverlay-specs.js +29 -0
  86. package/MediaPlayer/MediaControls.js +195 -13
  87. package/MediaPlayer/MediaControls.module.css +3 -2
  88. package/MediaPlayer/MediaSlider.module.css +7 -20
  89. package/MediaPlayer/index.d.ts +59 -7
  90. package/MediaPlayer/tests/util-specs.js +4 -1
  91. package/PageViews/PageViews.js +232 -82
  92. package/PageViews/PageViews.module.css +3 -0
  93. package/PageViews/PageViewsRouter.js +100 -42
  94. package/PageViews/tests/PageViews-specs.js +171 -0
  95. package/Panels/Header.js +54 -34
  96. package/Panels/Header.module.css +83 -31
  97. package/Panels/Panel.module.css +1 -1
  98. package/Panels/index.d.ts +7 -8
  99. package/Picker/Picker.d.ts +4 -5
  100. package/Picker/Picker.module.css +2 -2
  101. package/Popup/Popup.js +245 -242
  102. package/Popup/Popup.module.css +24 -24
  103. package/PopupTabLayout/PopupTabLayout.d.ts +5 -7
  104. package/PopupTabLayout/PopupTabLayout.js +26 -18
  105. package/PopupTabLayout/PopupTabLayout.module.css +53 -16
  106. package/PopupTabLayout/PopupTabLayoutStateContext.js +8 -0
  107. package/ProgressBar/ProgressBar.d.ts +5 -4
  108. package/ProgressBar/ProgressBarTooltip.module.css +12 -12
  109. package/ProgressButton/ProgressButton.d.ts +4 -5
  110. package/QuickGuidePanels/QuickGuidePanels.module.css +2 -2
  111. package/RadioItem/RadioItem.d.ts +18 -5
  112. package/RadioItem/RadioItem.js +69 -2
  113. package/RadioItem/RadioItem.module.css +36 -36
  114. package/RangePicker/RangePicker.module.css +2 -2
  115. package/Scroller/EditableWrapper.js +28 -18
  116. package/Scroller/Scroller.d.ts +20 -16
  117. package/Scroller/Scroller.js +20 -13
  118. package/Scroller/Scroller.module.css +4 -4
  119. package/Scroller/useThemeScroller.js +3 -3
  120. package/Slider/Slider.d.ts +20 -14
  121. package/Slider/Slider.js +71 -14
  122. package/Slider/Slider.module.css +464 -91
  123. package/Slider/SliderBehaviorDecorator.js +16 -14
  124. package/Slider/tests/Slider-specs.js +53 -1
  125. package/Slider/utils.js +23 -7
  126. package/Spinner/Spinner.d.ts +5 -4
  127. package/Spinner/Spinner.js +10 -8
  128. package/Spinner/Spinner.module.css +9 -9
  129. package/Steps/Steps.d.ts +5 -4
  130. package/Steps/Steps.js +9 -5
  131. package/Switch/Switch.d.ts +8 -7
  132. package/Switch/Switch.module.css +100 -13
  133. package/SwitchItem/SwitchItem.d.ts +9 -6
  134. package/TabLayout/RefocusDecorator.js +26 -18
  135. package/TabLayout/TabGroup.js +3 -2
  136. package/TabLayout/TabGroup.module.css +2 -2
  137. package/TabLayout/TabLayout.d.ts +6 -0
  138. package/TabLayout/TabLayout.js +11 -1
  139. package/TabLayout/TabLayout.module.css +18 -0
  140. package/TabLayout/tests/TabGroup-specs.js +1 -1
  141. package/TabLayout/tests/TabLayout-specs.js +52 -0
  142. package/ThemeDecorator/AccessibilityDecorator.js +12 -11
  143. package/ThemeDecorator/I18nFontDecorator.js +6 -4
  144. package/ThemeDecorator/ThemeDecorator.d.ts +16 -10
  145. package/ThemeDecorator/ThemeDecorator.js +24 -9
  146. package/ThemeDecorator/fontGenerator.js +1 -1
  147. package/ThemeDecorator/screenTypes.json +1 -0
  148. package/TimePicker/TimePicker.module.css +1 -1
  149. package/TimePicker/TimePickerBase.js +5 -3
  150. package/TooltipDecorator/Tooltip.module.css +1 -2
  151. package/TooltipDecorator/TooltipDecorator.js +12 -7
  152. package/TooltipDecorator/tests/useTooltip-specs.js +5 -2
  153. package/TooltipDecorator/tests/util-specs.js +12 -0
  154. package/TooltipDecorator/useTooltip.js +1 -1
  155. package/TooltipDecorator/util.js +18 -11
  156. package/VideoPlayer/Feedback.js +3 -0
  157. package/VideoPlayer/Feedback.module.css +5 -9
  158. package/VideoPlayer/FeedbackIcons.js +1 -1
  159. package/VideoPlayer/FeedbackTooltip.module.css +55 -11
  160. package/VideoPlayer/VideoPlayer.d.ts +44 -18
  161. package/VideoPlayer/VideoPlayer.js +153 -47
  162. package/VideoPlayer/VideoPlayer.module.css +28 -11
  163. package/VirtualList/VirtualList.d.ts +9 -2
  164. package/VirtualList/VirtualList.js +51 -24
  165. package/VirtualList/tests/VirtualGridList-translate-specs.js +3 -0
  166. package/VirtualList/tests/VirtualList-specs.js +28 -1
  167. package/VirtualList/tests/VirtualList-translate-specs.js +4 -1
  168. package/VirtualList/useSpotlight.js +1 -1
  169. package/WizardPanels/WizardPanels.module.css +2 -2
  170. package/WizardPanels/index.d.ts +4 -2
  171. package/fonts/Limestone_Icons.ttf +0 -0
  172. package/internal/$L/$L.js +3 -3
  173. package/internal/AsyncRenderChildren/AsyncRenderChildren.js +9 -5
  174. package/internal/AsyncRenderChildren/tests/AsyncRenderChildren-specs.js +4 -1
  175. package/internal/DateComponentPicker/DateComponentPicker.module.css +2 -2
  176. package/internal/DateTime/DateTime.module.css +1 -0
  177. package/internal/DateTime/DateTimeDecorator.js +5 -4
  178. package/internal/Panels/PanelsRouter.js +48 -31
  179. package/internal/Panels/useAutoFocus.js +10 -6
  180. package/internal/Panels/useFocusOnTransition.js +4 -3
  181. package/internal/Picker/Picker.js +7 -5
  182. package/internal/Picker/Picker.module.css +2 -2
  183. package/internal/Picker/SpottablePicker.js +15 -13
  184. package/internal/SharedStateDecorator/SharedStateDecorator.js +78 -99
  185. package/internal/validators/validators.js +21 -2
  186. package/package.json +18 -15
  187. package/styles/colors-highcontrast.less +9 -1
  188. package/styles/colors.less +12 -7
  189. package/styles/motion-mixins.less +66 -0
  190. package/styles/motions.less +78 -0
  191. package/styles/variables.less +176 -150
  192. package/useScroll/HoverToScroll.js +23 -17
  193. package/useScroll/Scrollbar.js +14 -10
  194. package/useScroll/ScrollbarPlaceholder.js +3 -5
  195. package/useScroll/ScrollbarTrack.js +7 -5
  196. package/useScroll/ScrollbarTrack.module.css +8 -8
  197. package/useScroll/useEvent.js +14 -3
  198. package/useScroll/useScroll.js +12 -2
  199. package/useScroll/useScroll.module.css +6 -6
  200. package/.travis.yml +0 -40
@@ -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
  .button {
2
85
  font-family: "Limestone";
3
86
  font-size: var(--primitive-font-size-60);
@@ -8,8 +91,8 @@
8
91
  height: 2.75rem;
9
92
  min-width: 6.25rem;
10
93
  max-width: 25rem;
11
- padding: 0 1.25rem;
12
- margin: 0.75rem;
94
+ padding: 0 var(--primitive-spacing-60);
95
+ margin: var(--primitive-spacing-36);
13
96
  text-align: center;
14
97
  vertical-align: middle;
15
98
  --button-height: 2.75rem;
@@ -34,7 +117,7 @@
34
117
  /* Defined to prevent global export */
35
118
  }
36
119
  .button.focusExpand {
37
- margin: 0.75rem;
120
+ margin: var(--primitive-spacing-36);
38
121
  }
39
122
  .button.centered .marquee {
40
123
  flex-grow: 0;
@@ -46,36 +129,36 @@
46
129
  .button .icon {
47
130
  flex-shrink: 0;
48
131
  margin-left: 0;
49
- margin-right: 0.5rem;
132
+ margin-right: var(--primitive-spacing-24);
50
133
  }
51
134
  :global(.enact-locale-right-to-left) .button .icon {
52
- margin-left: 0.5rem;
135
+ margin-left: var(--primitive-spacing-24);
53
136
  margin-right: 0;
54
137
  }
55
138
  .button.iconAfter .client {
56
139
  flex-direction: row-reverse;
57
140
  }
58
141
  .button.iconAfter .icon {
59
- margin-left: 0.5rem;
142
+ margin-left: var(--primitive-spacing-24);
60
143
  margin-right: 0;
61
144
  }
62
145
  :global(.enact-locale-right-to-left) .button.iconAfter .icon {
63
146
  margin-left: 0;
64
- margin-right: 0.5rem;
147
+ margin-right: var(--primitive-spacing-24);
65
148
  }
66
149
  .button.red,
67
150
  .button.green,
68
151
  .button.yellow,
69
152
  .button.blue {
70
- padding-left: 0.75rem;
71
- padding-right: 1.25rem;
153
+ padding-left: var(--primitive-spacing-36);
154
+ padding-right: var(--primitive-spacing-60);
72
155
  }
73
156
  :global(.enact-locale-right-to-left) .button.red,
74
157
  :global(.enact-locale-right-to-left) .button.green,
75
158
  :global(.enact-locale-right-to-left) .button.yellow,
76
159
  :global(.enact-locale-right-to-left) .button.blue {
77
- padding-left: 1.25rem;
78
- padding-right: 0.75rem;
160
+ padding-left: var(--primitive-spacing-60);
161
+ padding-right: var(--primitive-spacing-36);
79
162
  }
80
163
  .button.red .client::before,
81
164
  .button.green .client::before,
@@ -100,7 +183,7 @@
100
183
  .button.green.minWidth .client,
101
184
  .button.yellow.minWidth .client,
102
185
  .button.blue.minWidth .client {
103
- margin-inline-start: 1.75rem;
186
+ margin-inline-start: var(--primitive-spacing-84);
104
187
  padding-inline-start: var(--primitive-spacing-24);
105
188
  }
106
189
  .button.red.minWidth .client::before,
@@ -109,7 +192,7 @@
109
192
  .button.blue.minWidth .client::before {
110
193
  bottom: 50%;
111
194
  transform: translateY(50%);
112
- left: calc((1.75rem + 1.25rem) / 2 * -1);
195
+ left: calc((var(--primitive-spacing-84) + 1.25rem) / 2 * -1);
113
196
  right: initial;
114
197
  }
115
198
  :global(.enact-locale-right-to-left) .button.red.minWidth .client::before,
@@ -117,7 +200,7 @@
117
200
  :global(.enact-locale-right-to-left) .button.yellow.minWidth .client::before,
118
201
  :global(.enact-locale-right-to-left) .button.blue.minWidth .client::before {
119
202
  left: initial;
120
- right: calc((1.75rem + 1.25rem) / 2 * -1);
203
+ right: calc((var(--primitive-spacing-84) + 1.25rem) / 2 * -1);
121
204
  }
122
205
  .button .marquee {
123
206
  flex-grow: 1;
@@ -142,8 +225,8 @@
142
225
  min-width: 5.5rem;
143
226
  max-width: 21.25rem;
144
227
  margin: var(--primitive-spacing-24);
145
- padding-left: 1.25rem;
146
- padding-right: 1.25rem;
228
+ padding-left: var(--primitive-spacing-60);
229
+ padding-right: var(--primitive-spacing-60);
147
230
  --button-height: 2.25rem;
148
231
  }
149
232
  :global(.enact-locale-non-latin) .button.small {
@@ -163,33 +246,33 @@
163
246
  }
164
247
  .button.small .icon {
165
248
  margin-left: 0;
166
- margin-right: 0.5rem;
249
+ margin-right: var(--primitive-spacing-24);
167
250
  }
168
251
  :global(.enact-locale-right-to-left) .button.small .icon {
169
- margin-left: 0.5rem;
252
+ margin-left: var(--primitive-spacing-24);
170
253
  margin-right: 0;
171
254
  }
172
255
  .button.small.iconAfter .icon {
173
- margin-left: 0.5rem;
256
+ margin-left: var(--primitive-spacing-24);
174
257
  margin-right: 0;
175
258
  }
176
259
  :global(.enact-locale-right-to-left) .button.small.iconAfter .icon {
177
260
  margin-left: 0;
178
- margin-right: 0.5rem;
261
+ margin-right: var(--primitive-spacing-24);
179
262
  }
180
263
  .button.small.red,
181
264
  .button.small.green,
182
265
  .button.small.yellow,
183
266
  .button.small.blue {
184
- padding-left: 0.625rem;
185
- padding-right: 1.25rem;
267
+ padding-left: var(--primitive-spacing-30);
268
+ padding-right: var(--primitive-spacing-60);
186
269
  }
187
270
  :global(.enact-locale-right-to-left) .button.small.red,
188
271
  :global(.enact-locale-right-to-left) .button.small.green,
189
272
  :global(.enact-locale-right-to-left) .button.small.yellow,
190
273
  :global(.enact-locale-right-to-left) .button.small.blue {
191
- padding-left: 1.25rem;
192
- padding-right: 0.625rem;
274
+ padding-left: var(--primitive-spacing-60);
275
+ padding-right: var(--primitive-spacing-30);
193
276
  }
194
277
  .button.small.red .client::before,
195
278
  .button.small.green .client::before,
@@ -203,14 +286,14 @@
203
286
  .button.small.green.minWidth .client,
204
287
  .button.small.yellow.minWidth .client,
205
288
  .button.small.blue.minWidth .client {
206
- margin-inline-start: 1.5rem;
289
+ margin-inline-start: var(--primitive-spacing-72);
207
290
  }
208
291
  .button.small.red.minWidth .client::before,
209
292
  .button.small.green.minWidth .client::before,
210
293
  .button.small.yellow.minWidth .client::before,
211
294
  .button.small.blue.minWidth .client::before {
212
295
  bottom: 50%;
213
- left: calc((1.5rem + 1.0625rem) / 2 * -1);
296
+ left: calc((var(--primitive-spacing-72) + 1.0625rem) / 2 * -1);
214
297
  right: initial;
215
298
  }
216
299
  :global(.enact-locale-right-to-left) .button.small.red.minWidth .client::before,
@@ -218,7 +301,7 @@
218
301
  :global(.enact-locale-right-to-left) .button.small.yellow.minWidth .client::before,
219
302
  :global(.enact-locale-right-to-left) .button.small.blue.minWidth .client::before {
220
303
  left: initial;
221
- right: calc((1.5rem + 1.0625rem) / 2 * -1);
304
+ right: calc((var(--primitive-spacing-72) + 1.0625rem) / 2 * -1);
222
305
  }
223
306
  .button.small.red.minWidth .icon,
224
307
  .button.small.green.minWidth .icon,
@@ -230,7 +313,7 @@
230
313
  .button.small.green.minWidth.iconAfter .icon,
231
314
  .button.small.yellow.minWidth.iconAfter .icon,
232
315
  .button.small.blue.minWidth.iconAfter .icon {
233
- margin-inline-start: 0.5rem;
316
+ margin-inline-start: var(--primitive-spacing-24);
234
317
  }
235
318
  .button.small:global(.largeText) {
236
319
  font-size: var(--primitive-font-size-72);
@@ -353,6 +436,7 @@
353
436
  will-change: box-shadow, transform, filter;
354
437
  background-color: var(--semantic-color-surface-default);
355
438
  transition: transform 200ms ease-out;
439
+ transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
356
440
  border-width: '';
357
441
  border-style: none;
358
442
  border-color: var(--semantic-color-stroke-button-outline);
@@ -371,9 +455,6 @@
371
455
  .button:global(.neutral).opaque .bg {
372
456
  opacity: 1;
373
457
  }
374
- .button:global(.neutral).opaque .icon {
375
- color: var(--semantic-color-on-surface-main);
376
- }
377
458
  .button:global(.neutral).transparent {
378
459
  color: var(--semantic-color-on-background-main);
379
460
  }
@@ -383,9 +464,6 @@
383
464
  .button:global(.neutral).transparent.shadowed .client {
384
465
  text-shadow: 0.125rem 0.25rem 0.25rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
385
466
  }
386
- .button:global(.neutral).transparent .icon {
387
- color: var(--semantic-color-on-background-main);
388
- }
389
467
  .button:global(.neutral).red .client::before {
390
468
  background-color: #ff6d78;
391
469
  }
@@ -498,10 +576,7 @@
498
576
  :global(.spotlight-input-key) .button:global(.neutral):global(.spottable):focus.focusExpand .bg,
499
577
  :global(.spotlight-input-mouse) .button:global(.neutral):global(.spottable):focus.focusExpand .bg {
500
578
  transform: scale(1.1);
501
- }
502
- :global(.spotlight-input-key) .button:global(.neutral):global(.spottable):focus.focusExpand.small .bg,
503
- :global(.spotlight-input-mouse) .button:global(.neutral):global(.spottable):focus.focusExpand.small .bg {
504
- transform: scale(1.1);
579
+ transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
505
580
  }
506
581
  :global(.spotlight-input-touch) .button:global(.neutral):global(.spottable):active .bg {
507
582
  opacity: 1;
@@ -544,9 +619,7 @@
544
619
  }
545
620
  :global(.spotlight-input-touch) .button:global(.neutral):global(.spottable):active.focusExpand .bg {
546
621
  transform: scale(1.1);
547
- }
548
- :global(.spotlight-input-touch) .button:global(.neutral):global(.spottable):active.focusExpand.small .bg {
549
- transform: scale(1.1);
622
+ transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
550
623
  }
551
624
  :global(.spotlight-input-key) .button:global(.neutral):not([disabled]):global(.spottable):focus,
552
625
  :global(.spotlight-input-mouse) .button:global(.neutral):not([disabled]):global(.spottable):focus {
@@ -556,24 +629,25 @@
556
629
  :global(.spotlight-input-mouse) .button:global(.neutral):not([disabled]):global(.spottable):focus.focusExpand.pressed .bg,
557
630
  :global(.spotlight-input-key) .button:global(.neutral):not([disabled]):global(.spottable):focus.focusExpand:active .bg,
558
631
  :global(.spotlight-input-mouse) .button:global(.neutral):not([disabled]):global(.spottable):focus.focusExpand:active .bg {
559
- transform: scale(1.02);
632
+ transform: scale(1.05);
633
+ transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
560
634
  }
561
- :global(.spotlight-input-key) .button:global(.neutral):not([disabled]):global(.spottable):focus.focusExpand.pressed.small .bg,
562
- :global(.spotlight-input-mouse) .button:global(.neutral):not([disabled]):global(.spottable):focus.focusExpand.pressed.small .bg,
563
- :global(.spotlight-input-key) .button:global(.neutral):not([disabled]):global(.spottable):focus.focusExpand:active.small .bg,
564
- :global(.spotlight-input-mouse) .button:global(.neutral):not([disabled]):global(.spottable):focus.focusExpand:active.small .bg {
565
- transform: scale(1.04);
635
+ :global(.spotlight-input-key) .button:global(.neutral):not([disabled]):global(.spottable):focus.focusExpand:not(.pressed) .bg,
636
+ :global(.spotlight-input-mouse) .button:global(.neutral):not([disabled]):global(.spottable):focus.focusExpand:not(.pressed) .bg {
637
+ transform: scale(1.1);
638
+ transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
566
639
  }
567
640
  :global(.spotlight-input-touch) .button:global(.neutral):not([disabled]):global(.spottable):active {
568
641
  z-index: 1;
569
642
  }
570
643
  :global(.spotlight-input-touch) .button:global(.neutral):not([disabled]):global(.spottable):active.focusExpand.pressed .bg,
571
644
  :global(.spotlight-input-touch) .button:global(.neutral):not([disabled]):global(.spottable):active.focusExpand:active .bg {
572
- transform: scale(1.02);
645
+ transform: scale(1.05);
646
+ transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
573
647
  }
574
- :global(.spotlight-input-touch) .button:global(.neutral):not([disabled]):global(.spottable):active.focusExpand.pressed.small .bg,
575
- :global(.spotlight-input-touch) .button:global(.neutral):not([disabled]):global(.spottable):active.focusExpand:active.small .bg {
576
- transform: scale(1.04);
648
+ :global(.spotlight-input-touch) .button:global(.neutral):not([disabled]):global(.spottable):active.focusExpand:not(.pressed) .bg {
649
+ transform: scale(1.1);
650
+ transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
577
651
  }
578
652
  :global(.spotlight-input-key) :global(.noAnimation) .button:global(.neutral):global(.spottable):focus .bg,
579
653
  :global(.spotlight-input-mouse) :global(.noAnimation) .button:global(.neutral):global(.spottable):focus .bg {
@@ -603,22 +677,12 @@
603
677
  :global(.spotlight-input-mouse) :global(.noAnimation) .button:global(.neutral):global(.spottable):focus.focusExpand .bg {
604
678
  transform: none;
605
679
  }
606
- :global(.spotlight-input-key) :global(.noAnimation) .button:global(.neutral):global(.spottable):focus.focusExpand.small .bg,
607
- :global(.spotlight-input-mouse) :global(.noAnimation) .button:global(.neutral):global(.spottable):focus.focusExpand.small .bg {
608
- transform: none;
609
- }
610
680
  :global(.spotlight-input-key) :global(.noAnimation) .button:global(.neutral):global(.spottable):focus.focusExpand.pressed .bg,
611
681
  :global(.spotlight-input-mouse) :global(.noAnimation) .button:global(.neutral):global(.spottable):focus.focusExpand.pressed .bg,
612
682
  :global(.spotlight-input-key) :global(.noAnimation) .button:global(.neutral):global(.spottable):focus.focusExpand:active .bg,
613
683
  :global(.spotlight-input-mouse) :global(.noAnimation) .button:global(.neutral):global(.spottable):focus.focusExpand:active .bg {
614
684
  transform: none;
615
685
  }
616
- :global(.spotlight-input-key) :global(.noAnimation) .button:global(.neutral):global(.spottable):focus.focusExpand.pressed.small .bg,
617
- :global(.spotlight-input-mouse) :global(.noAnimation) .button:global(.neutral):global(.spottable):focus.focusExpand.pressed.small .bg,
618
- :global(.spotlight-input-key) :global(.noAnimation) .button:global(.neutral):global(.spottable):focus.focusExpand:active.small .bg,
619
- :global(.spotlight-input-mouse) :global(.noAnimation) .button:global(.neutral):global(.spottable):focus.focusExpand:active.small .bg {
620
- transform: none;
621
- }
622
686
  :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.neutral):global(.spottable):active .bg {
623
687
  opacity: 1;
624
688
  box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
@@ -643,17 +707,10 @@
643
707
  :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.neutral):global(.spottable):active.focusExpand .bg {
644
708
  transform: none;
645
709
  }
646
- :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.neutral):global(.spottable):active.focusExpand.small .bg {
647
- transform: none;
648
- }
649
710
  :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.neutral):global(.spottable):active.focusExpand.pressed .bg,
650
711
  :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.neutral):global(.spottable):active.focusExpand:active .bg {
651
712
  transform: none;
652
713
  }
653
- :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.neutral):global(.spottable):active.focusExpand.pressed.small .bg,
654
- :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.neutral):global(.spottable):active.focusExpand:active.small .bg {
655
- transform: none;
656
- }
657
714
  .button:global(.neutral)[disabled] {
658
715
  opacity: 1;
659
716
  }
@@ -716,6 +773,7 @@
716
773
  will-change: box-shadow, transform, filter;
717
774
  background-color: var(--semantic-color-surface-default);
718
775
  transition: transform 200ms ease-out;
776
+ transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
719
777
  border-width: '';
720
778
  border-style: none;
721
779
  border-color: var(--semantic-color-stroke-button-outline);
@@ -734,9 +792,6 @@
734
792
  :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast).opaque .bg {
735
793
  opacity: 1;
736
794
  }
737
- :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast).opaque .icon {
738
- color: var(--semantic-color-on-surface-main);
739
- }
740
795
  :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast).transparent {
741
796
  color: var(--semantic-color-on-background-main);
742
797
  }
@@ -746,9 +801,6 @@
746
801
  :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast).transparent.shadowed .client {
747
802
  text-shadow: 0.125rem 0.25rem 0.25rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
748
803
  }
749
- :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast).transparent .icon {
750
- color: var(--semantic-color-on-background-main);
751
- }
752
804
  :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast).red .client::before {
753
805
  background-color: #ff6d78;
754
806
  }
@@ -861,10 +913,7 @@
861
913
  :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus.focusExpand .bg,
862
914
  :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus.focusExpand .bg {
863
915
  transform: scale(1.1);
864
- }
865
- :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus.focusExpand.small .bg,
866
- :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus.focusExpand.small .bg {
867
- transform: scale(1.1);
916
+ transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
868
917
  }
869
918
  :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):active .bg {
870
919
  opacity: 1;
@@ -907,9 +956,7 @@
907
956
  }
908
957
  :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):active.focusExpand .bg {
909
958
  transform: scale(1.1);
910
- }
911
- :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):active.focusExpand.small .bg {
912
- transform: scale(1.1);
959
+ transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
913
960
  }
914
961
  :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):not([disabled]):global(.spottable):focus,
915
962
  :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):not([disabled]):global(.spottable):focus {
@@ -919,24 +966,25 @@
919
966
  :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):not([disabled]):global(.spottable):focus.focusExpand.pressed .bg,
920
967
  :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):not([disabled]):global(.spottable):focus.focusExpand:active .bg,
921
968
  :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):not([disabled]):global(.spottable):focus.focusExpand:active .bg {
922
- transform: scale(1.02);
969
+ transform: scale(1.05);
970
+ transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
923
971
  }
924
- :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):not([disabled]):global(.spottable):focus.focusExpand.pressed.small .bg,
925
- :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):not([disabled]):global(.spottable):focus.focusExpand.pressed.small .bg,
926
- :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):not([disabled]):global(.spottable):focus.focusExpand:active.small .bg,
927
- :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):not([disabled]):global(.spottable):focus.focusExpand:active.small .bg {
928
- transform: scale(1.04);
972
+ :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):not([disabled]):global(.spottable):focus.focusExpand:not(.pressed) .bg,
973
+ :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):not([disabled]):global(.spottable):focus.focusExpand:not(.pressed) .bg {
974
+ transform: scale(1.1);
975
+ transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
929
976
  }
930
977
  :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):not([disabled]):global(.spottable):active {
931
978
  z-index: 1;
932
979
  }
933
980
  :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):not([disabled]):global(.spottable):active.focusExpand.pressed .bg,
934
981
  :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):not([disabled]):global(.spottable):active.focusExpand:active .bg {
935
- transform: scale(1.02);
982
+ transform: scale(1.05);
983
+ transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
936
984
  }
937
- :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):not([disabled]):global(.spottable):active.focusExpand.pressed.small .bg,
938
- :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):not([disabled]):global(.spottable):active.focusExpand:active.small .bg {
939
- transform: scale(1.04);
985
+ :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):not([disabled]):global(.spottable):active.focusExpand:not(.pressed) .bg {
986
+ transform: scale(1.1);
987
+ transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
940
988
  }
941
989
  :global(.spotlight-input-key) :global(.noAnimation) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus .bg,
942
990
  :global(.spotlight-input-mouse) :global(.noAnimation) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus .bg {
@@ -966,22 +1014,12 @@
966
1014
  :global(.spotlight-input-mouse) :global(.noAnimation) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus.focusExpand .bg {
967
1015
  transform: none;
968
1016
  }
969
- :global(.spotlight-input-key) :global(.noAnimation) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus.focusExpand.small .bg,
970
- :global(.spotlight-input-mouse) :global(.noAnimation) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus.focusExpand.small .bg {
971
- transform: none;
972
- }
973
1017
  :global(.spotlight-input-key) :global(.noAnimation) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus.focusExpand.pressed .bg,
974
1018
  :global(.spotlight-input-mouse) :global(.noAnimation) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus.focusExpand.pressed .bg,
975
1019
  :global(.spotlight-input-key) :global(.noAnimation) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus.focusExpand:active .bg,
976
1020
  :global(.spotlight-input-mouse) :global(.noAnimation) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus.focusExpand:active .bg {
977
1021
  transform: none;
978
1022
  }
979
- :global(.spotlight-input-key) :global(.noAnimation) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus.focusExpand.pressed.small .bg,
980
- :global(.spotlight-input-mouse) :global(.noAnimation) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus.focusExpand.pressed.small .bg,
981
- :global(.spotlight-input-key) :global(.noAnimation) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus.focusExpand:active.small .bg,
982
- :global(.spotlight-input-mouse) :global(.noAnimation) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus.focusExpand:active.small .bg {
983
- transform: none;
984
- }
985
1023
  :global(.spotlight-input-touch) :global(.noAnimation) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):active .bg {
986
1024
  opacity: 1;
987
1025
  box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
@@ -1006,17 +1044,10 @@
1006
1044
  :global(.spotlight-input-touch) :global(.noAnimation) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):active.focusExpand .bg {
1007
1045
  transform: none;
1008
1046
  }
1009
- :global(.spotlight-input-touch) :global(.noAnimation) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):active.focusExpand.small .bg {
1010
- transform: none;
1011
- }
1012
1047
  :global(.spotlight-input-touch) :global(.noAnimation) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):active.focusExpand.pressed .bg,
1013
1048
  :global(.spotlight-input-touch) :global(.noAnimation) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):active.focusExpand:active .bg {
1014
1049
  transform: none;
1015
1050
  }
1016
- :global(.spotlight-input-touch) :global(.noAnimation) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):active.focusExpand.pressed.small .bg,
1017
- :global(.spotlight-input-touch) :global(.noAnimation) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):active.focusExpand:active.small .bg {
1018
- transform: none;
1019
- }
1020
1051
  :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast)[disabled] {
1021
1052
  opacity: 1;
1022
1053
  }
@@ -1079,6 +1110,7 @@
1079
1110
  will-change: box-shadow, transform, filter;
1080
1111
  background-color: var(--semantic-color-surface-default);
1081
1112
  transition: transform 200ms ease-out;
1113
+ transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
1082
1114
  border-width: '';
1083
1115
  border-style: none;
1084
1116
  border-color: var(--semantic-color-stroke-button-outline);
@@ -1097,9 +1129,6 @@
1097
1129
  .button:global(.light).opaque .bg {
1098
1130
  opacity: 1;
1099
1131
  }
1100
- .button:global(.light).opaque .icon {
1101
- color: var(--semantic-color-on-surface-main);
1102
- }
1103
1132
  .button:global(.light).transparent {
1104
1133
  color: var(--semantic-color-on-background-main);
1105
1134
  }
@@ -1109,9 +1138,6 @@
1109
1138
  .button:global(.light).transparent.shadowed .client {
1110
1139
  text-shadow: 0.125rem 0.25rem 0.25rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1111
1140
  }
1112
- .button:global(.light).transparent .icon {
1113
- color: var(--semantic-color-on-background-main);
1114
- }
1115
1141
  .button:global(.light).red .client::before {
1116
1142
  background-color: #ff6d78;
1117
1143
  }
@@ -1224,10 +1250,7 @@
1224
1250
  :global(.spotlight-input-key) .button:global(.light):global(.spottable):focus.focusExpand .bg,
1225
1251
  :global(.spotlight-input-mouse) .button:global(.light):global(.spottable):focus.focusExpand .bg {
1226
1252
  transform: scale(1.1);
1227
- }
1228
- :global(.spotlight-input-key) .button:global(.light):global(.spottable):focus.focusExpand.small .bg,
1229
- :global(.spotlight-input-mouse) .button:global(.light):global(.spottable):focus.focusExpand.small .bg {
1230
- transform: scale(1.1);
1253
+ transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
1231
1254
  }
1232
1255
  :global(.spotlight-input-touch) .button:global(.light):global(.spottable):active .bg {
1233
1256
  opacity: 1;
@@ -1270,9 +1293,7 @@
1270
1293
  }
1271
1294
  :global(.spotlight-input-touch) .button:global(.light):global(.spottable):active.focusExpand .bg {
1272
1295
  transform: scale(1.1);
1273
- }
1274
- :global(.spotlight-input-touch) .button:global(.light):global(.spottable):active.focusExpand.small .bg {
1275
- transform: scale(1.1);
1296
+ transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
1276
1297
  }
1277
1298
  :global(.spotlight-input-key) .button:global(.light):not([disabled]):global(.spottable):focus,
1278
1299
  :global(.spotlight-input-mouse) .button:global(.light):not([disabled]):global(.spottable):focus {
@@ -1282,24 +1303,25 @@
1282
1303
  :global(.spotlight-input-mouse) .button:global(.light):not([disabled]):global(.spottable):focus.focusExpand.pressed .bg,
1283
1304
  :global(.spotlight-input-key) .button:global(.light):not([disabled]):global(.spottable):focus.focusExpand:active .bg,
1284
1305
  :global(.spotlight-input-mouse) .button:global(.light):not([disabled]):global(.spottable):focus.focusExpand:active .bg {
1285
- transform: scale(1.02);
1306
+ transform: scale(1.05);
1307
+ transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
1286
1308
  }
1287
- :global(.spotlight-input-key) .button:global(.light):not([disabled]):global(.spottable):focus.focusExpand.pressed.small .bg,
1288
- :global(.spotlight-input-mouse) .button:global(.light):not([disabled]):global(.spottable):focus.focusExpand.pressed.small .bg,
1289
- :global(.spotlight-input-key) .button:global(.light):not([disabled]):global(.spottable):focus.focusExpand:active.small .bg,
1290
- :global(.spotlight-input-mouse) .button:global(.light):not([disabled]):global(.spottable):focus.focusExpand:active.small .bg {
1291
- transform: scale(1.04);
1309
+ :global(.spotlight-input-key) .button:global(.light):not([disabled]):global(.spottable):focus.focusExpand:not(.pressed) .bg,
1310
+ :global(.spotlight-input-mouse) .button:global(.light):not([disabled]):global(.spottable):focus.focusExpand:not(.pressed) .bg {
1311
+ transform: scale(1.1);
1312
+ transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
1292
1313
  }
1293
1314
  :global(.spotlight-input-touch) .button:global(.light):not([disabled]):global(.spottable):active {
1294
1315
  z-index: 1;
1295
1316
  }
1296
1317
  :global(.spotlight-input-touch) .button:global(.light):not([disabled]):global(.spottable):active.focusExpand.pressed .bg,
1297
1318
  :global(.spotlight-input-touch) .button:global(.light):not([disabled]):global(.spottable):active.focusExpand:active .bg {
1298
- transform: scale(1.02);
1319
+ transform: scale(1.05);
1320
+ transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
1299
1321
  }
1300
- :global(.spotlight-input-touch) .button:global(.light):not([disabled]):global(.spottable):active.focusExpand.pressed.small .bg,
1301
- :global(.spotlight-input-touch) .button:global(.light):not([disabled]):global(.spottable):active.focusExpand:active.small .bg {
1302
- transform: scale(1.04);
1322
+ :global(.spotlight-input-touch) .button:global(.light):not([disabled]):global(.spottable):active.focusExpand:not(.pressed) .bg {
1323
+ transform: scale(1.1);
1324
+ transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
1303
1325
  }
1304
1326
  :global(.spotlight-input-key) :global(.noAnimation) .button:global(.light):global(.spottable):focus .bg,
1305
1327
  :global(.spotlight-input-mouse) :global(.noAnimation) .button:global(.light):global(.spottable):focus .bg {
@@ -1329,22 +1351,12 @@
1329
1351
  :global(.spotlight-input-mouse) :global(.noAnimation) .button:global(.light):global(.spottable):focus.focusExpand .bg {
1330
1352
  transform: none;
1331
1353
  }
1332
- :global(.spotlight-input-key) :global(.noAnimation) .button:global(.light):global(.spottable):focus.focusExpand.small .bg,
1333
- :global(.spotlight-input-mouse) :global(.noAnimation) .button:global(.light):global(.spottable):focus.focusExpand.small .bg {
1334
- transform: none;
1335
- }
1336
1354
  :global(.spotlight-input-key) :global(.noAnimation) .button:global(.light):global(.spottable):focus.focusExpand.pressed .bg,
1337
1355
  :global(.spotlight-input-mouse) :global(.noAnimation) .button:global(.light):global(.spottable):focus.focusExpand.pressed .bg,
1338
1356
  :global(.spotlight-input-key) :global(.noAnimation) .button:global(.light):global(.spottable):focus.focusExpand:active .bg,
1339
1357
  :global(.spotlight-input-mouse) :global(.noAnimation) .button:global(.light):global(.spottable):focus.focusExpand:active .bg {
1340
1358
  transform: none;
1341
1359
  }
1342
- :global(.spotlight-input-key) :global(.noAnimation) .button:global(.light):global(.spottable):focus.focusExpand.pressed.small .bg,
1343
- :global(.spotlight-input-mouse) :global(.noAnimation) .button:global(.light):global(.spottable):focus.focusExpand.pressed.small .bg,
1344
- :global(.spotlight-input-key) :global(.noAnimation) .button:global(.light):global(.spottable):focus.focusExpand:active.small .bg,
1345
- :global(.spotlight-input-mouse) :global(.noAnimation) .button:global(.light):global(.spottable):focus.focusExpand:active.small .bg {
1346
- transform: none;
1347
- }
1348
1360
  :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.light):global(.spottable):active .bg {
1349
1361
  opacity: 1;
1350
1362
  box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
@@ -1369,17 +1381,10 @@
1369
1381
  :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.light):global(.spottable):active.focusExpand .bg {
1370
1382
  transform: none;
1371
1383
  }
1372
- :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.light):global(.spottable):active.focusExpand.small .bg {
1373
- transform: none;
1374
- }
1375
1384
  :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.light):global(.spottable):active.focusExpand.pressed .bg,
1376
1385
  :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.light):global(.spottable):active.focusExpand:active .bg {
1377
1386
  transform: none;
1378
1387
  }
1379
- :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.light):global(.spottable):active.focusExpand.pressed.small .bg,
1380
- :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.light):global(.spottable):active.focusExpand:active.small .bg {
1381
- transform: none;
1382
- }
1383
1388
  .button:global(.light)[disabled] {
1384
1389
  opacity: 1;
1385
1390
  }
@@ -1445,6 +1450,7 @@
1445
1450
  will-change: box-shadow, transform, filter;
1446
1451
  background-color: var(--semantic-color-surface-default);
1447
1452
  transition: transform 200ms ease-out;
1453
+ transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
1448
1454
  border-width: 0.125rem;
1449
1455
  border-style: solid;
1450
1456
  border-color: var(--semantic-color-stroke-button-outline);
@@ -1463,9 +1469,6 @@
1463
1469
  .button:global(.game).opaque .bg {
1464
1470
  opacity: 1;
1465
1471
  }
1466
- .button:global(.game).opaque .icon {
1467
- color: var(--semantic-color-on-surface-main);
1468
- }
1469
1472
  .button:global(.game).transparent {
1470
1473
  color: var(--semantic-color-on-background-main);
1471
1474
  }
@@ -1475,9 +1478,6 @@
1475
1478
  .button:global(.game).transparent.shadowed .client {
1476
1479
  text-shadow: 0.125rem 0.25rem 0.25rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1477
1480
  }
1478
- .button:global(.game).transparent .icon {
1479
- color: var(--semantic-color-on-background-main);
1480
- }
1481
1481
  .button:global(.game).red .client::before {
1482
1482
  background-color: #ff6d78;
1483
1483
  }
@@ -1590,10 +1590,7 @@
1590
1590
  :global(.spotlight-input-key) .button:global(.game):global(.spottable):focus.focusExpand .bg,
1591
1591
  :global(.spotlight-input-mouse) .button:global(.game):global(.spottable):focus.focusExpand .bg {
1592
1592
  transform: scale(1.1);
1593
- }
1594
- :global(.spotlight-input-key) .button:global(.game):global(.spottable):focus.focusExpand.small .bg,
1595
- :global(.spotlight-input-mouse) .button:global(.game):global(.spottable):focus.focusExpand.small .bg {
1596
- transform: scale(1.1);
1593
+ transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
1597
1594
  }
1598
1595
  :global(.spotlight-input-touch) .button:global(.game):global(.spottable):active .bg {
1599
1596
  opacity: 1;
@@ -1636,9 +1633,7 @@
1636
1633
  }
1637
1634
  :global(.spotlight-input-touch) .button:global(.game):global(.spottable):active.focusExpand .bg {
1638
1635
  transform: scale(1.1);
1639
- }
1640
- :global(.spotlight-input-touch) .button:global(.game):global(.spottable):active.focusExpand.small .bg {
1641
- transform: scale(1.1);
1636
+ transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
1642
1637
  }
1643
1638
  :global(.spotlight-input-key) .button:global(.game):not([disabled]):global(.spottable):focus,
1644
1639
  :global(.spotlight-input-mouse) .button:global(.game):not([disabled]):global(.spottable):focus {
@@ -1648,24 +1643,25 @@
1648
1643
  :global(.spotlight-input-mouse) .button:global(.game):not([disabled]):global(.spottable):focus.focusExpand.pressed .bg,
1649
1644
  :global(.spotlight-input-key) .button:global(.game):not([disabled]):global(.spottable):focus.focusExpand:active .bg,
1650
1645
  :global(.spotlight-input-mouse) .button:global(.game):not([disabled]):global(.spottable):focus.focusExpand:active .bg {
1651
- transform: scale(1.02);
1646
+ transform: scale(1.05);
1647
+ transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
1652
1648
  }
1653
- :global(.spotlight-input-key) .button:global(.game):not([disabled]):global(.spottable):focus.focusExpand.pressed.small .bg,
1654
- :global(.spotlight-input-mouse) .button:global(.game):not([disabled]):global(.spottable):focus.focusExpand.pressed.small .bg,
1655
- :global(.spotlight-input-key) .button:global(.game):not([disabled]):global(.spottable):focus.focusExpand:active.small .bg,
1656
- :global(.spotlight-input-mouse) .button:global(.game):not([disabled]):global(.spottable):focus.focusExpand:active.small .bg {
1657
- transform: scale(1.04);
1649
+ :global(.spotlight-input-key) .button:global(.game):not([disabled]):global(.spottable):focus.focusExpand:not(.pressed) .bg,
1650
+ :global(.spotlight-input-mouse) .button:global(.game):not([disabled]):global(.spottable):focus.focusExpand:not(.pressed) .bg {
1651
+ transform: scale(1.1);
1652
+ transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
1658
1653
  }
1659
1654
  :global(.spotlight-input-touch) .button:global(.game):not([disabled]):global(.spottable):active {
1660
1655
  z-index: 1;
1661
1656
  }
1662
1657
  :global(.spotlight-input-touch) .button:global(.game):not([disabled]):global(.spottable):active.focusExpand.pressed .bg,
1663
1658
  :global(.spotlight-input-touch) .button:global(.game):not([disabled]):global(.spottable):active.focusExpand:active .bg {
1664
- transform: scale(1.02);
1659
+ transform: scale(1.05);
1660
+ transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
1665
1661
  }
1666
- :global(.spotlight-input-touch) .button:global(.game):not([disabled]):global(.spottable):active.focusExpand.pressed.small .bg,
1667
- :global(.spotlight-input-touch) .button:global(.game):not([disabled]):global(.spottable):active.focusExpand:active.small .bg {
1668
- transform: scale(1.04);
1662
+ :global(.spotlight-input-touch) .button:global(.game):not([disabled]):global(.spottable):active.focusExpand:not(.pressed) .bg {
1663
+ transform: scale(1.1);
1664
+ transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
1669
1665
  }
1670
1666
  :global(.spotlight-input-key) :global(.noAnimation) .button:global(.game):global(.spottable):focus .bg,
1671
1667
  :global(.spotlight-input-mouse) :global(.noAnimation) .button:global(.game):global(.spottable):focus .bg {
@@ -1695,22 +1691,12 @@
1695
1691
  :global(.spotlight-input-mouse) :global(.noAnimation) .button:global(.game):global(.spottable):focus.focusExpand .bg {
1696
1692
  transform: none;
1697
1693
  }
1698
- :global(.spotlight-input-key) :global(.noAnimation) .button:global(.game):global(.spottable):focus.focusExpand.small .bg,
1699
- :global(.spotlight-input-mouse) :global(.noAnimation) .button:global(.game):global(.spottable):focus.focusExpand.small .bg {
1700
- transform: none;
1701
- }
1702
1694
  :global(.spotlight-input-key) :global(.noAnimation) .button:global(.game):global(.spottable):focus.focusExpand.pressed .bg,
1703
1695
  :global(.spotlight-input-mouse) :global(.noAnimation) .button:global(.game):global(.spottable):focus.focusExpand.pressed .bg,
1704
1696
  :global(.spotlight-input-key) :global(.noAnimation) .button:global(.game):global(.spottable):focus.focusExpand:active .bg,
1705
1697
  :global(.spotlight-input-mouse) :global(.noAnimation) .button:global(.game):global(.spottable):focus.focusExpand:active .bg {
1706
1698
  transform: none;
1707
1699
  }
1708
- :global(.spotlight-input-key) :global(.noAnimation) .button:global(.game):global(.spottable):focus.focusExpand.pressed.small .bg,
1709
- :global(.spotlight-input-mouse) :global(.noAnimation) .button:global(.game):global(.spottable):focus.focusExpand.pressed.small .bg,
1710
- :global(.spotlight-input-key) :global(.noAnimation) .button:global(.game):global(.spottable):focus.focusExpand:active.small .bg,
1711
- :global(.spotlight-input-mouse) :global(.noAnimation) .button:global(.game):global(.spottable):focus.focusExpand:active.small .bg {
1712
- transform: none;
1713
- }
1714
1700
  :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.game):global(.spottable):active .bg {
1715
1701
  opacity: 1;
1716
1702
  box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
@@ -1735,17 +1721,10 @@
1735
1721
  :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.game):global(.spottable):active.focusExpand .bg {
1736
1722
  transform: none;
1737
1723
  }
1738
- :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.game):global(.spottable):active.focusExpand.small .bg {
1739
- transform: none;
1740
- }
1741
1724
  :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.game):global(.spottable):active.focusExpand.pressed .bg,
1742
1725
  :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.game):global(.spottable):active.focusExpand:active .bg {
1743
1726
  transform: none;
1744
1727
  }
1745
- :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.game):global(.spottable):active.focusExpand.pressed.small .bg,
1746
- :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.game):global(.spottable):active.focusExpand:active.small .bg {
1747
- transform: none;
1748
- }
1749
1728
  .button:global(.game)[disabled] {
1750
1729
  opacity: 1;
1751
1730
  }
@@ -1810,6 +1789,7 @@
1810
1789
  will-change: box-shadow, transform, filter;
1811
1790
  background-color: var(--semantic-color-surface-default);
1812
1791
  transition: transform 200ms ease-out;
1792
+ transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
1813
1793
  border-width: 0.125rem;
1814
1794
  border-style: solid;
1815
1795
  border-color: var(--semantic-color-stroke-button-outline);
@@ -1828,9 +1808,6 @@
1828
1808
  :global(.green) .button:global(.game).opaque .bg {
1829
1809
  opacity: 1;
1830
1810
  }
1831
- :global(.green) .button:global(.game).opaque .icon {
1832
- color: var(--semantic-color-on-surface-main);
1833
- }
1834
1811
  :global(.green) .button:global(.game).transparent {
1835
1812
  color: var(--semantic-color-on-background-main);
1836
1813
  }
@@ -1840,9 +1817,6 @@
1840
1817
  :global(.green) .button:global(.game).transparent.shadowed .client {
1841
1818
  text-shadow: 0.125rem 0.25rem 0.25rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1842
1819
  }
1843
- :global(.green) .button:global(.game).transparent .icon {
1844
- color: var(--semantic-color-on-background-main);
1845
- }
1846
1820
  :global(.green) .button:global(.game).red .client::before {
1847
1821
  background-color: #ff6d78;
1848
1822
  }
@@ -1955,10 +1929,7 @@
1955
1929
  :global(.spotlight-input-key) :global(.green) .button:global(.game):global(.spottable):focus.focusExpand .bg,
1956
1930
  :global(.spotlight-input-mouse) :global(.green) .button:global(.game):global(.spottable):focus.focusExpand .bg {
1957
1931
  transform: scale(1.1);
1958
- }
1959
- :global(.spotlight-input-key) :global(.green) .button:global(.game):global(.spottable):focus.focusExpand.small .bg,
1960
- :global(.spotlight-input-mouse) :global(.green) .button:global(.game):global(.spottable):focus.focusExpand.small .bg {
1961
- transform: scale(1.1);
1932
+ transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
1962
1933
  }
1963
1934
  :global(.spotlight-input-touch) :global(.green) .button:global(.game):global(.spottable):active .bg {
1964
1935
  opacity: 1;
@@ -2001,9 +1972,7 @@
2001
1972
  }
2002
1973
  :global(.spotlight-input-touch) :global(.green) .button:global(.game):global(.spottable):active.focusExpand .bg {
2003
1974
  transform: scale(1.1);
2004
- }
2005
- :global(.spotlight-input-touch) :global(.green) .button:global(.game):global(.spottable):active.focusExpand.small .bg {
2006
- transform: scale(1.1);
1975
+ transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
2007
1976
  }
2008
1977
  :global(.spotlight-input-key) :global(.green) .button:global(.game):not([disabled]):global(.spottable):focus,
2009
1978
  :global(.spotlight-input-mouse) :global(.green) .button:global(.game):not([disabled]):global(.spottable):focus {
@@ -2013,24 +1982,25 @@
2013
1982
  :global(.spotlight-input-mouse) :global(.green) .button:global(.game):not([disabled]):global(.spottable):focus.focusExpand.pressed .bg,
2014
1983
  :global(.spotlight-input-key) :global(.green) .button:global(.game):not([disabled]):global(.spottable):focus.focusExpand:active .bg,
2015
1984
  :global(.spotlight-input-mouse) :global(.green) .button:global(.game):not([disabled]):global(.spottable):focus.focusExpand:active .bg {
2016
- transform: scale(1.02);
1985
+ transform: scale(1.05);
1986
+ transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
2017
1987
  }
2018
- :global(.spotlight-input-key) :global(.green) .button:global(.game):not([disabled]):global(.spottable):focus.focusExpand.pressed.small .bg,
2019
- :global(.spotlight-input-mouse) :global(.green) .button:global(.game):not([disabled]):global(.spottable):focus.focusExpand.pressed.small .bg,
2020
- :global(.spotlight-input-key) :global(.green) .button:global(.game):not([disabled]):global(.spottable):focus.focusExpand:active.small .bg,
2021
- :global(.spotlight-input-mouse) :global(.green) .button:global(.game):not([disabled]):global(.spottable):focus.focusExpand:active.small .bg {
2022
- transform: scale(1.04);
1988
+ :global(.spotlight-input-key) :global(.green) .button:global(.game):not([disabled]):global(.spottable):focus.focusExpand:not(.pressed) .bg,
1989
+ :global(.spotlight-input-mouse) :global(.green) .button:global(.game):not([disabled]):global(.spottable):focus.focusExpand:not(.pressed) .bg {
1990
+ transform: scale(1.1);
1991
+ transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
2023
1992
  }
2024
1993
  :global(.spotlight-input-touch) :global(.green) .button:global(.game):not([disabled]):global(.spottable):active {
2025
1994
  z-index: 1;
2026
1995
  }
2027
1996
  :global(.spotlight-input-touch) :global(.green) .button:global(.game):not([disabled]):global(.spottable):active.focusExpand.pressed .bg,
2028
1997
  :global(.spotlight-input-touch) :global(.green) .button:global(.game):not([disabled]):global(.spottable):active.focusExpand:active .bg {
2029
- transform: scale(1.02);
1998
+ transform: scale(1.05);
1999
+ transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
2030
2000
  }
2031
- :global(.spotlight-input-touch) :global(.green) .button:global(.game):not([disabled]):global(.spottable):active.focusExpand.pressed.small .bg,
2032
- :global(.spotlight-input-touch) :global(.green) .button:global(.game):not([disabled]):global(.spottable):active.focusExpand:active.small .bg {
2033
- transform: scale(1.04);
2001
+ :global(.spotlight-input-touch) :global(.green) .button:global(.game):not([disabled]):global(.spottable):active.focusExpand:not(.pressed) .bg {
2002
+ transform: scale(1.1);
2003
+ transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
2034
2004
  }
2035
2005
  :global(.spotlight-input-key) :global(.noAnimation) :global(.green) .button:global(.game):global(.spottable):focus .bg,
2036
2006
  :global(.spotlight-input-mouse) :global(.noAnimation) :global(.green) .button:global(.game):global(.spottable):focus .bg {
@@ -2060,22 +2030,12 @@
2060
2030
  :global(.spotlight-input-mouse) :global(.noAnimation) :global(.green) .button:global(.game):global(.spottable):focus.focusExpand .bg {
2061
2031
  transform: none;
2062
2032
  }
2063
- :global(.spotlight-input-key) :global(.noAnimation) :global(.green) .button:global(.game):global(.spottable):focus.focusExpand.small .bg,
2064
- :global(.spotlight-input-mouse) :global(.noAnimation) :global(.green) .button:global(.game):global(.spottable):focus.focusExpand.small .bg {
2065
- transform: none;
2066
- }
2067
2033
  :global(.spotlight-input-key) :global(.noAnimation) :global(.green) .button:global(.game):global(.spottable):focus.focusExpand.pressed .bg,
2068
2034
  :global(.spotlight-input-mouse) :global(.noAnimation) :global(.green) .button:global(.game):global(.spottable):focus.focusExpand.pressed .bg,
2069
2035
  :global(.spotlight-input-key) :global(.noAnimation) :global(.green) .button:global(.game):global(.spottable):focus.focusExpand:active .bg,
2070
2036
  :global(.spotlight-input-mouse) :global(.noAnimation) :global(.green) .button:global(.game):global(.spottable):focus.focusExpand:active .bg {
2071
2037
  transform: none;
2072
2038
  }
2073
- :global(.spotlight-input-key) :global(.noAnimation) :global(.green) .button:global(.game):global(.spottable):focus.focusExpand.pressed.small .bg,
2074
- :global(.spotlight-input-mouse) :global(.noAnimation) :global(.green) .button:global(.game):global(.spottable):focus.focusExpand.pressed.small .bg,
2075
- :global(.spotlight-input-key) :global(.noAnimation) :global(.green) .button:global(.game):global(.spottable):focus.focusExpand:active.small .bg,
2076
- :global(.spotlight-input-mouse) :global(.noAnimation) :global(.green) .button:global(.game):global(.spottable):focus.focusExpand:active.small .bg {
2077
- transform: none;
2078
- }
2079
2039
  :global(.spotlight-input-touch) :global(.noAnimation) :global(.green) .button:global(.game):global(.spottable):active .bg {
2080
2040
  opacity: 1;
2081
2041
  box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
@@ -2100,17 +2060,10 @@
2100
2060
  :global(.spotlight-input-touch) :global(.noAnimation) :global(.green) .button:global(.game):global(.spottable):active.focusExpand .bg {
2101
2061
  transform: none;
2102
2062
  }
2103
- :global(.spotlight-input-touch) :global(.noAnimation) :global(.green) .button:global(.game):global(.spottable):active.focusExpand.small .bg {
2104
- transform: none;
2105
- }
2106
2063
  :global(.spotlight-input-touch) :global(.noAnimation) :global(.green) .button:global(.game):global(.spottable):active.focusExpand.pressed .bg,
2107
2064
  :global(.spotlight-input-touch) :global(.noAnimation) :global(.green) .button:global(.game):global(.spottable):active.focusExpand:active .bg {
2108
2065
  transform: none;
2109
2066
  }
2110
- :global(.spotlight-input-touch) :global(.noAnimation) :global(.green) .button:global(.game):global(.spottable):active.focusExpand.pressed.small .bg,
2111
- :global(.spotlight-input-touch) :global(.noAnimation) :global(.green) .button:global(.game):global(.spottable):active.focusExpand:active.small .bg {
2112
- transform: none;
2113
- }
2114
2067
  :global(.green) .button:global(.game)[disabled] {
2115
2068
  opacity: 1;
2116
2069
  }
@@ -2175,6 +2128,7 @@
2175
2128
  will-change: box-shadow, transform, filter;
2176
2129
  background-color: var(--semantic-color-surface-default);
2177
2130
  transition: transform 200ms ease-out;
2131
+ transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
2178
2132
  border-width: 0.125rem;
2179
2133
  border-style: solid;
2180
2134
  border-color: var(--semantic-color-stroke-button-outline);
@@ -2193,9 +2147,6 @@
2193
2147
  :global(.orange) .button:global(.game).opaque .bg {
2194
2148
  opacity: 1;
2195
2149
  }
2196
- :global(.orange) .button:global(.game).opaque .icon {
2197
- color: var(--semantic-color-on-surface-main);
2198
- }
2199
2150
  :global(.orange) .button:global(.game).transparent {
2200
2151
  color: var(--semantic-color-on-background-main);
2201
2152
  }
@@ -2205,9 +2156,6 @@
2205
2156
  :global(.orange) .button:global(.game).transparent.shadowed .client {
2206
2157
  text-shadow: 0.125rem 0.25rem 0.25rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
2207
2158
  }
2208
- :global(.orange) .button:global(.game).transparent .icon {
2209
- color: var(--semantic-color-on-background-main);
2210
- }
2211
2159
  :global(.orange) .button:global(.game).red .client::before {
2212
2160
  background-color: #ff6d78;
2213
2161
  }
@@ -2320,10 +2268,7 @@
2320
2268
  :global(.spotlight-input-key) :global(.orange) .button:global(.game):global(.spottable):focus.focusExpand .bg,
2321
2269
  :global(.spotlight-input-mouse) :global(.orange) .button:global(.game):global(.spottable):focus.focusExpand .bg {
2322
2270
  transform: scale(1.1);
2323
- }
2324
- :global(.spotlight-input-key) :global(.orange) .button:global(.game):global(.spottable):focus.focusExpand.small .bg,
2325
- :global(.spotlight-input-mouse) :global(.orange) .button:global(.game):global(.spottable):focus.focusExpand.small .bg {
2326
- transform: scale(1.1);
2271
+ transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
2327
2272
  }
2328
2273
  :global(.spotlight-input-touch) :global(.orange) .button:global(.game):global(.spottable):active .bg {
2329
2274
  opacity: 1;
@@ -2366,9 +2311,7 @@
2366
2311
  }
2367
2312
  :global(.spotlight-input-touch) :global(.orange) .button:global(.game):global(.spottable):active.focusExpand .bg {
2368
2313
  transform: scale(1.1);
2369
- }
2370
- :global(.spotlight-input-touch) :global(.orange) .button:global(.game):global(.spottable):active.focusExpand.small .bg {
2371
- transform: scale(1.1);
2314
+ transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
2372
2315
  }
2373
2316
  :global(.spotlight-input-key) :global(.orange) .button:global(.game):not([disabled]):global(.spottable):focus,
2374
2317
  :global(.spotlight-input-mouse) :global(.orange) .button:global(.game):not([disabled]):global(.spottable):focus {
@@ -2378,24 +2321,25 @@
2378
2321
  :global(.spotlight-input-mouse) :global(.orange) .button:global(.game):not([disabled]):global(.spottable):focus.focusExpand.pressed .bg,
2379
2322
  :global(.spotlight-input-key) :global(.orange) .button:global(.game):not([disabled]):global(.spottable):focus.focusExpand:active .bg,
2380
2323
  :global(.spotlight-input-mouse) :global(.orange) .button:global(.game):not([disabled]):global(.spottable):focus.focusExpand:active .bg {
2381
- transform: scale(1.02);
2324
+ transform: scale(1.05);
2325
+ transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
2382
2326
  }
2383
- :global(.spotlight-input-key) :global(.orange) .button:global(.game):not([disabled]):global(.spottable):focus.focusExpand.pressed.small .bg,
2384
- :global(.spotlight-input-mouse) :global(.orange) .button:global(.game):not([disabled]):global(.spottable):focus.focusExpand.pressed.small .bg,
2385
- :global(.spotlight-input-key) :global(.orange) .button:global(.game):not([disabled]):global(.spottable):focus.focusExpand:active.small .bg,
2386
- :global(.spotlight-input-mouse) :global(.orange) .button:global(.game):not([disabled]):global(.spottable):focus.focusExpand:active.small .bg {
2387
- transform: scale(1.04);
2327
+ :global(.spotlight-input-key) :global(.orange) .button:global(.game):not([disabled]):global(.spottable):focus.focusExpand:not(.pressed) .bg,
2328
+ :global(.spotlight-input-mouse) :global(.orange) .button:global(.game):not([disabled]):global(.spottable):focus.focusExpand:not(.pressed) .bg {
2329
+ transform: scale(1.1);
2330
+ transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
2388
2331
  }
2389
2332
  :global(.spotlight-input-touch) :global(.orange) .button:global(.game):not([disabled]):global(.spottable):active {
2390
2333
  z-index: 1;
2391
2334
  }
2392
2335
  :global(.spotlight-input-touch) :global(.orange) .button:global(.game):not([disabled]):global(.spottable):active.focusExpand.pressed .bg,
2393
2336
  :global(.spotlight-input-touch) :global(.orange) .button:global(.game):not([disabled]):global(.spottable):active.focusExpand:active .bg {
2394
- transform: scale(1.02);
2337
+ transform: scale(1.05);
2338
+ transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
2395
2339
  }
2396
- :global(.spotlight-input-touch) :global(.orange) .button:global(.game):not([disabled]):global(.spottable):active.focusExpand.pressed.small .bg,
2397
- :global(.spotlight-input-touch) :global(.orange) .button:global(.game):not([disabled]):global(.spottable):active.focusExpand:active.small .bg {
2398
- transform: scale(1.04);
2340
+ :global(.spotlight-input-touch) :global(.orange) .button:global(.game):not([disabled]):global(.spottable):active.focusExpand:not(.pressed) .bg {
2341
+ transform: scale(1.1);
2342
+ transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
2399
2343
  }
2400
2344
  :global(.spotlight-input-key) :global(.noAnimation) :global(.orange) .button:global(.game):global(.spottable):focus .bg,
2401
2345
  :global(.spotlight-input-mouse) :global(.noAnimation) :global(.orange) .button:global(.game):global(.spottable):focus .bg {
@@ -2425,22 +2369,12 @@
2425
2369
  :global(.spotlight-input-mouse) :global(.noAnimation) :global(.orange) .button:global(.game):global(.spottable):focus.focusExpand .bg {
2426
2370
  transform: none;
2427
2371
  }
2428
- :global(.spotlight-input-key) :global(.noAnimation) :global(.orange) .button:global(.game):global(.spottable):focus.focusExpand.small .bg,
2429
- :global(.spotlight-input-mouse) :global(.noAnimation) :global(.orange) .button:global(.game):global(.spottable):focus.focusExpand.small .bg {
2430
- transform: none;
2431
- }
2432
2372
  :global(.spotlight-input-key) :global(.noAnimation) :global(.orange) .button:global(.game):global(.spottable):focus.focusExpand.pressed .bg,
2433
2373
  :global(.spotlight-input-mouse) :global(.noAnimation) :global(.orange) .button:global(.game):global(.spottable):focus.focusExpand.pressed .bg,
2434
2374
  :global(.spotlight-input-key) :global(.noAnimation) :global(.orange) .button:global(.game):global(.spottable):focus.focusExpand:active .bg,
2435
2375
  :global(.spotlight-input-mouse) :global(.noAnimation) :global(.orange) .button:global(.game):global(.spottable):focus.focusExpand:active .bg {
2436
2376
  transform: none;
2437
2377
  }
2438
- :global(.spotlight-input-key) :global(.noAnimation) :global(.orange) .button:global(.game):global(.spottable):focus.focusExpand.pressed.small .bg,
2439
- :global(.spotlight-input-mouse) :global(.noAnimation) :global(.orange) .button:global(.game):global(.spottable):focus.focusExpand.pressed.small .bg,
2440
- :global(.spotlight-input-key) :global(.noAnimation) :global(.orange) .button:global(.game):global(.spottable):focus.focusExpand:active.small .bg,
2441
- :global(.spotlight-input-mouse) :global(.noAnimation) :global(.orange) .button:global(.game):global(.spottable):focus.focusExpand:active.small .bg {
2442
- transform: none;
2443
- }
2444
2378
  :global(.spotlight-input-touch) :global(.noAnimation) :global(.orange) .button:global(.game):global(.spottable):active .bg {
2445
2379
  opacity: 1;
2446
2380
  box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
@@ -2465,17 +2399,10 @@
2465
2399
  :global(.spotlight-input-touch) :global(.noAnimation) :global(.orange) .button:global(.game):global(.spottable):active.focusExpand .bg {
2466
2400
  transform: none;
2467
2401
  }
2468
- :global(.spotlight-input-touch) :global(.noAnimation) :global(.orange) .button:global(.game):global(.spottable):active.focusExpand.small .bg {
2469
- transform: none;
2470
- }
2471
2402
  :global(.spotlight-input-touch) :global(.noAnimation) :global(.orange) .button:global(.game):global(.spottable):active.focusExpand.pressed .bg,
2472
2403
  :global(.spotlight-input-touch) :global(.noAnimation) :global(.orange) .button:global(.game):global(.spottable):active.focusExpand:active .bg {
2473
2404
  transform: none;
2474
2405
  }
2475
- :global(.spotlight-input-touch) :global(.noAnimation) :global(.orange) .button:global(.game):global(.spottable):active.focusExpand.pressed.small .bg,
2476
- :global(.spotlight-input-touch) :global(.noAnimation) :global(.orange) .button:global(.game):global(.spottable):active.focusExpand:active.small .bg {
2477
- transform: none;
2478
- }
2479
2406
  :global(.orange) .button:global(.game)[disabled] {
2480
2407
  opacity: 1;
2481
2408
  }