@enact/limestone 1.3.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 (463) hide show
  1. package/.github/PULL_REQUEST_TEMPLATE.md +28 -0
  2. package/.github/workflows/update-copyright-years.yml +25 -0
  3. package/.travis.yml +40 -0
  4. package/ActionGuide/ActionGuide.d.ts +73 -0
  5. package/ActionGuide/ActionGuide.js +164 -0
  6. package/ActionGuide/ActionGuide.module.css +73 -0
  7. package/ActionGuide/package.json +3 -0
  8. package/ActionGuide/tests/ActionGuide-specs.js +51 -0
  9. package/Alert/Alert.d.ts +155 -0
  10. package/Alert/Alert.js +313 -0
  11. package/Alert/Alert.module.css +190 -0
  12. package/Alert/AlertImage.js +102 -0
  13. package/Alert/AlertImage.module.css +15 -0
  14. package/Alert/package.json +3 -0
  15. package/Alert/tests/Alert-specs.js +204 -0
  16. package/BodyText/BodyText.d.ts +74 -0
  17. package/BodyText/BodyText.js +170 -0
  18. package/BodyText/BodyText.module.css +95 -0
  19. package/BodyText/package.json +3 -0
  20. package/BodyText/tests/BodyText-specs.js +55 -0
  21. package/Button/Button.d.ts +131 -0
  22. package/Button/Button.js +351 -0
  23. package/Button/Button.module.css +2518 -0
  24. package/Button/package.json +3 -0
  25. package/Button/tests/Button-specs.js +252 -0
  26. package/CHANGELOG.md +170 -0
  27. package/Card/Card.d.ts +138 -0
  28. package/Card/Card.js +396 -0
  29. package/Card/Card.module.css +1296 -0
  30. package/Card/package.json +3 -0
  31. package/Card/tests/Card-specs.js +65 -0
  32. package/Checkbox/Checkbox.d.ts +99 -0
  33. package/Checkbox/Checkbox.js +222 -0
  34. package/Checkbox/Checkbox.module.css +1395 -0
  35. package/Checkbox/package.json +3 -0
  36. package/Checkbox/tests/Checkbox-specs.js +79 -0
  37. package/CheckboxItem/CheckboxItem.d.ts +99 -0
  38. package/CheckboxItem/CheckboxItem.js +210 -0
  39. package/CheckboxItem/CheckboxItem.module.css +50 -0
  40. package/CheckboxItem/package.json +3 -0
  41. package/CheckboxItem/tests/CheckboxItem-specs.js +52 -0
  42. package/Chips/Chip.js +252 -0
  43. package/Chips/Chip.module.css +30 -0
  44. package/Chips/Chips.js +215 -0
  45. package/Chips/Chips.module.css +8 -0
  46. package/Chips/index.js +86 -0
  47. package/Chips/tests/Chip-specs.js +186 -0
  48. package/Chips/tests/Chips-specs.js +312 -0
  49. package/ColorPicker/ColorPicker.js +416 -0
  50. package/ColorPicker/ColorPicker.module.css +78 -0
  51. package/ColorPicker/package.json +3 -0
  52. package/ColorPicker/tests/ColorPicker-specs.js +225 -0
  53. package/ColorPicker/utils.js +135 -0
  54. package/ContextualMenuDecorator/ContextualMenuDecorator.d.ts +106 -0
  55. package/ContextualMenuDecorator/ContextualMenuDecorator.js +264 -0
  56. package/ContextualMenuDecorator/ContextualMenuDecorator.module.css +42 -0
  57. package/ContextualMenuDecorator/package.json +3 -0
  58. package/ContextualMenuDecorator/tests/ContextualMenuDecorator-specs.js +136 -0
  59. package/ContextualPopupDecorator/ContextualPopup.js +200 -0
  60. package/ContextualPopupDecorator/ContextualPopup.module.css +270 -0
  61. package/ContextualPopupDecorator/ContextualPopupDecorator.d.ts +182 -0
  62. package/ContextualPopupDecorator/ContextualPopupDecorator.js +867 -0
  63. package/ContextualPopupDecorator/ContextualPopupDecorator.module.css +3 -0
  64. package/ContextualPopupDecorator/HolePunchScrim.js +69 -0
  65. package/ContextualPopupDecorator/HolePunchScrim.module.css +38 -0
  66. package/ContextualPopupDecorator/package.json +3 -0
  67. package/ContextualPopupDecorator/tests/ContextualPopupDecorator-specs.js +621 -0
  68. package/DatePicker/DatePicker.d.ts +173 -0
  69. package/DatePicker/DatePicker.js +175 -0
  70. package/DatePicker/DatePicker.module.css +5 -0
  71. package/DatePicker/DatePickerBase.js +348 -0
  72. package/DatePicker/package.json +3 -0
  73. package/DatePicker/tests/DatePicker-specs.js +247 -0
  74. package/DayPicker/DayPicker.d.ts +92 -0
  75. package/DayPicker/DayPicker.js +188 -0
  76. package/DayPicker/DayPicker.module.css +35 -0
  77. package/DayPicker/DaySelectorDecorator.js +301 -0
  78. package/DayPicker/package.json +3 -0
  79. package/DayPicker/tests/DayPicker-specs.js +138 -0
  80. package/Dropdown/Dropdown.d.ts +135 -0
  81. package/Dropdown/Dropdown.js +460 -0
  82. package/Dropdown/Dropdown.module.css +160 -0
  83. package/Dropdown/DropdownList.js +360 -0
  84. package/Dropdown/package.json +3 -0
  85. package/Dropdown/tests/Dropdown-specs.js +267 -0
  86. package/FixedPopupPanels/FixedPopupPanels.d.ts +72 -0
  87. package/FixedPopupPanels/FixedPopupPanels.js +170 -0
  88. package/FixedPopupPanels/FixedPopupPanels.module.css +146 -0
  89. package/FixedPopupPanels/package.json +3 -0
  90. package/FixedPopupPanels/tests/FixedPopupPanels-specs.js +142 -0
  91. package/FlexiblePopupPanels/FlexiblePopupPanels.js +177 -0
  92. package/FlexiblePopupPanels/FlexiblePopupPanels.module.css +291 -0
  93. package/FlexiblePopupPanels/Header.js +110 -0
  94. package/FlexiblePopupPanels/Panel.js +256 -0
  95. package/FlexiblePopupPanels/index.d.ts +145 -0
  96. package/FlexiblePopupPanels/index.js +68 -0
  97. package/FlexiblePopupPanels/package.json +3 -0
  98. package/FlexiblePopupPanels/tests/FlexiblePopupPanels-specs.js +305 -0
  99. package/FlexiblePopupPanels/useNavButtonFocus.js +65 -0
  100. package/FormCheckboxItem/FormCheckboxItem.d.ts +87 -0
  101. package/FormCheckboxItem/FormCheckboxItem.js +200 -0
  102. package/FormCheckboxItem/FormCheckboxItem.module.css +374 -0
  103. package/FormCheckboxItem/package.json +3 -0
  104. package/FormCheckboxItem/tests/FormCheckboxItem-specs.js +164 -0
  105. package/Heading/Heading.d.ts +104 -0
  106. package/Heading/Heading.js +203 -0
  107. package/Heading/Heading.module.css +217 -0
  108. package/Heading/package.json +3 -0
  109. package/Heading/tests/Heading-specs.js +57 -0
  110. package/Icon/Icon.d.ts +377 -0
  111. package/Icon/Icon.js +503 -0
  112. package/Icon/Icon.module.css +121 -0
  113. package/Icon/IconList.js +611 -0
  114. package/Icon/package.json +3 -0
  115. package/Icon/tests/Icon-specs.js +131 -0
  116. package/IconItem/IconItem.d.ts +137 -0
  117. package/IconItem/IconItem.js +360 -0
  118. package/IconItem/IconItem.module.css +414 -0
  119. package/IconItem/package.json +3 -0
  120. package/IconItem/tests/IconItem-specs.js +106 -0
  121. package/Image/Image.d.ts +60 -0
  122. package/Image/Image.js +165 -0
  123. package/Image/Image.module.css +5 -0
  124. package/Image/package.json +3 -0
  125. package/Image/tests/Image-specs.js +62 -0
  126. package/ImageItem/ImageItem.d.ts +134 -0
  127. package/ImageItem/ImageItem.js +377 -0
  128. package/ImageItem/ImageItem.module.css +1079 -0
  129. package/ImageItem/package.json +3 -0
  130. package/ImageItem/tests/ImageItem-specs.js +223 -0
  131. package/Input/Input.js +715 -0
  132. package/Input/Input.module.css +699 -0
  133. package/Input/InputField.js +487 -0
  134. package/Input/InputField.module.css +763 -0
  135. package/Input/InputFieldDecoratorIcon.js +66 -0
  136. package/Input/InputFieldSpotlightDecorator.js +380 -0
  137. package/Input/Keypad.js +111 -0
  138. package/Input/NumberField.js +311 -0
  139. package/Input/index.d.ts +423 -0
  140. package/Input/index.js +87 -0
  141. package/Input/package.json +3 -0
  142. package/Input/pointer.js +103 -0
  143. package/Input/tests/Input-specs.js +537 -0
  144. package/Input/tests/InputField-specs.js +292 -0
  145. package/Input/tests/InputPopup-specs.js +56 -0
  146. package/Input/util.js +130 -0
  147. package/Item/Item.d.ts +108 -0
  148. package/Item/Item.js +360 -0
  149. package/Item/Item.module.css +665 -0
  150. package/Item/package.json +3 -0
  151. package/Item/tests/Item-specs.js +108 -0
  152. package/KeyGuide/KeyGuide.d.ts +103 -0
  153. package/KeyGuide/KeyGuide.js +254 -0
  154. package/KeyGuide/KeyGuide.module.css +431 -0
  155. package/KeyGuide/package.json +3 -0
  156. package/KeyGuide/tests/KeyGuide-specs.js +168 -0
  157. package/LICENSE +201 -0
  158. package/Marquee/Marquee.d.ts +42 -0
  159. package/Marquee/Marquee.js +45 -0
  160. package/Marquee/package.json +3 -0
  161. package/MediaOverlay/MediaOverlay.d.ts +134 -0
  162. package/MediaOverlay/MediaOverlay.js +304 -0
  163. package/MediaOverlay/MediaOverlay.module.css +292 -0
  164. package/MediaOverlay/package.json +3 -0
  165. package/MediaOverlay/tests/MediaOverlay-specs.js +127 -0
  166. package/MediaPlayer/MediaControls.js +934 -0
  167. package/MediaPlayer/MediaControls.module.css +86 -0
  168. package/MediaPlayer/MediaKnob.js +61 -0
  169. package/MediaPlayer/MediaSlider.js +131 -0
  170. package/MediaPlayer/MediaSlider.module.css +319 -0
  171. package/MediaPlayer/MediaSliderDecorator.js +245 -0
  172. package/MediaPlayer/Times.js +152 -0
  173. package/MediaPlayer/Times.module.css +34 -0
  174. package/MediaPlayer/index.d.ts +223 -0
  175. package/MediaPlayer/index.js +34 -0
  176. package/MediaPlayer/package.json +3 -0
  177. package/MediaPlayer/tests/MediaSlider-specs.js +126 -0
  178. package/MediaPlayer/tests/util-specs.js +114 -0
  179. package/MediaPlayer/util.js +83 -0
  180. package/PageViews/Page.js +77 -0
  181. package/PageViews/Page.module.css +3 -0
  182. package/PageViews/PageViews.js +440 -0
  183. package/PageViews/PageViews.module.css +175 -0
  184. package/PageViews/PageViewsRouter.js +150 -0
  185. package/PageViews/index.js +45 -0
  186. package/PageViews/tests/PageViews-specs.js +192 -0
  187. package/Panels/Header.js +599 -0
  188. package/Panels/Header.module.css +243 -0
  189. package/Panels/Panel.js +347 -0
  190. package/Panels/Panel.module.css +33 -0
  191. package/Panels/Panels.js +258 -0
  192. package/Panels/Panels.module.css +12 -0
  193. package/Panels/index.d.ts +376 -0
  194. package/Panels/index.js +66 -0
  195. package/Panels/package.json +3 -0
  196. package/Panels/tests/Header-specs.js +146 -0
  197. package/Panels/tests/Panels-specs.js +257 -0
  198. package/Picker/Picker.d.ts +193 -0
  199. package/Picker/Picker.js +389 -0
  200. package/Picker/Picker.module.css +46 -0
  201. package/Picker/package.json +3 -0
  202. package/Picker/tests/Picker-specs.js +91 -0
  203. package/Popup/Popup.d.ts +169 -0
  204. package/Popup/Popup.js +690 -0
  205. package/Popup/Popup.module.css +180 -0
  206. package/Popup/package.json +3 -0
  207. package/Popup/tests/Popup-specs.js +475 -0
  208. package/PopupTabLayout/PopupTabLayout.d.ts +196 -0
  209. package/PopupTabLayout/PopupTabLayout.js +605 -0
  210. package/PopupTabLayout/PopupTabLayout.module.css +226 -0
  211. package/PopupTabLayout/package.json +3 -0
  212. package/PopupTabLayout/tests/PopupTabLayout-specs.js +285 -0
  213. package/ProgressBar/ProgressBar.d.ts +171 -0
  214. package/ProgressBar/ProgressBar.js +223 -0
  215. package/ProgressBar/ProgressBar.module.css +264 -0
  216. package/ProgressBar/ProgressBarTooltip.js +359 -0
  217. package/ProgressBar/ProgressBarTooltip.module.css +86 -0
  218. package/ProgressBar/package.json +3 -0
  219. package/ProgressBar/tests/ProgressBar-specs.js +400 -0
  220. package/ProgressButton/ProgressButton.d.ts +57 -0
  221. package/ProgressButton/ProgressButton.js +143 -0
  222. package/ProgressButton/ProgressButton.module.css +147 -0
  223. package/ProgressButton/package.json +3 -0
  224. package/ProgressButton/tests/ProgressButton-specs.js +71 -0
  225. package/QuickGuidePanels/Panel.js +90 -0
  226. package/QuickGuidePanels/QuickGuidePanels.js +463 -0
  227. package/QuickGuidePanels/QuickGuidePanels.module.css +26 -0
  228. package/QuickGuidePanels/index.js +52 -0
  229. package/QuickGuidePanels/tests/QuickGuidePanels-specs.js +250 -0
  230. package/README.md +59 -0
  231. package/RadioItem/RadioItem.d.ts +59 -0
  232. package/RadioItem/RadioItem.js +146 -0
  233. package/RadioItem/RadioItem.module.css +233 -0
  234. package/RadioItem/package.json +3 -0
  235. package/RadioItem/tests/RadioItem-specs.js +62 -0
  236. package/RangePicker/RangePicker.d.ts +174 -0
  237. package/RangePicker/RangePicker.js +372 -0
  238. package/RangePicker/RangePicker.module.css +55 -0
  239. package/RangePicker/package.json +3 -0
  240. package/RangePicker/tests/RangePicker-specs.js +122 -0
  241. package/Region/Region.d.ts +33 -0
  242. package/Region/Region.js +91 -0
  243. package/Region/package.json +3 -0
  244. package/Region/tests/Region-specs.js +28 -0
  245. package/Scroller/ContentContainerDecorator.js +24 -0
  246. package/Scroller/EditableWrapper.js +1036 -0
  247. package/Scroller/EditableWrapper.module.css +22 -0
  248. package/Scroller/Scroller.d.ts +270 -0
  249. package/Scroller/Scroller.js +470 -0
  250. package/Scroller/Scroller.module.css +41 -0
  251. package/Scroller/package.json +3 -0
  252. package/Scroller/tests/ContentContainerDecorator-specs.js +20 -0
  253. package/Scroller/tests/EditableWrapper-specs.js +133 -0
  254. package/Scroller/tests/Scroller-specs.js +159 -0
  255. package/Scroller/useEvent.js +39 -0
  256. package/Scroller/useThemeScroller.js +410 -0
  257. package/Skinnable/Skinnable.d.ts +27 -0
  258. package/Skinnable/Skinnable.js +65 -0
  259. package/Skinnable/package.json +3 -0
  260. package/Slider/Slider.d.ts +218 -0
  261. package/Slider/Slider.js +441 -0
  262. package/Slider/Slider.module.css +880 -0
  263. package/Slider/SliderBehaviorDecorator.js +184 -0
  264. package/Slider/package.json +3 -0
  265. package/Slider/tests/Slider-specs.js +573 -0
  266. package/Slider/utils.js +114 -0
  267. package/Spinner/Spinner.d.ts +64 -0
  268. package/Spinner/Spinner.js +254 -0
  269. package/Spinner/Spinner.module.css +368 -0
  270. package/Spinner/package.json +3 -0
  271. package/Spinner/tests/Spinner-specs.js +70 -0
  272. package/Sprite/Sprite.d.ts +100 -0
  273. package/Sprite/Sprite.js +345 -0
  274. package/Sprite/Sprite.module.css +32 -0
  275. package/Sprite/package.json +3 -0
  276. package/Sprite/tests/Sprite-specs.js +59 -0
  277. package/Steps/Steps.d.ts +119 -0
  278. package/Steps/Steps.js +303 -0
  279. package/Steps/Steps.module.css +130 -0
  280. package/Steps/package.json +3 -0
  281. package/Steps/tests/Steps-specs.js +175 -0
  282. package/Switch/Switch.d.ts +54 -0
  283. package/Switch/Switch.js +143 -0
  284. package/Switch/Switch.module.css +714 -0
  285. package/Switch/package.json +3 -0
  286. package/Switch/tests/Switch-specs.js +54 -0
  287. package/SwitchItem/SwitchItem.d.ts +56 -0
  288. package/SwitchItem/SwitchItem.js +144 -0
  289. package/SwitchItem/SwitchItem.module.css +31 -0
  290. package/SwitchItem/package.json +3 -0
  291. package/SwitchItem/tests/SwitchItem-specs.js +49 -0
  292. package/TabLayout/RefocusDecorator.js +142 -0
  293. package/TabLayout/Tab.js +84 -0
  294. package/TabLayout/TabGroup.js +377 -0
  295. package/TabLayout/TabGroup.module.css +280 -0
  296. package/TabLayout/TabLayout.d.ts +161 -0
  297. package/TabLayout/TabLayout.js +661 -0
  298. package/TabLayout/TabLayout.module.css +101 -0
  299. package/TabLayout/package.json +3 -0
  300. package/TabLayout/tests/TabGroup-specs.js +214 -0
  301. package/TabLayout/tests/TabLayout-specs.js +740 -0
  302. package/ThemeDecorator/AccessibilityDecorator.js +151 -0
  303. package/ThemeDecorator/I18nFontDecorator.js +33 -0
  304. package/ThemeDecorator/ThemeDecorator.d.ts +143 -0
  305. package/ThemeDecorator/ThemeDecorator.js +307 -0
  306. package/ThemeDecorator/ThemeDecorator.module.css +1250 -0
  307. package/ThemeDecorator/fontGenerator.js +76 -0
  308. package/ThemeDecorator/package.json +3 -0
  309. package/ThemeDecorator/screenTypes.json +10 -0
  310. package/ThemeDecorator/tests/ThemeDecorator-specs.js +151 -0
  311. package/TimePicker/TimePicker.d.ts +147 -0
  312. package/TimePicker/TimePicker.js +255 -0
  313. package/TimePicker/TimePicker.module.css +61 -0
  314. package/TimePicker/TimePickerBase.js +396 -0
  315. package/TimePicker/package.json +3 -0
  316. package/TimePicker/tests/TimePicker-specs.js +248 -0
  317. package/TooltipDecorator/Tooltip.js +252 -0
  318. package/TooltipDecorator/Tooltip.module.css +496 -0
  319. package/TooltipDecorator/TooltipDecorator.d.ts +229 -0
  320. package/TooltipDecorator/TooltipDecorator.js +260 -0
  321. package/TooltipDecorator/TooltipLabel.js +117 -0
  322. package/TooltipDecorator/package.json +3 -0
  323. package/TooltipDecorator/tests/TooltipDecorator-specs.js +224 -0
  324. package/TooltipDecorator/tests/useTooltip-specs.js +266 -0
  325. package/TooltipDecorator/useTooltip.js +278 -0
  326. package/TooltipDecorator/util.js +273 -0
  327. package/VideoPlayer/Feedback.js +110 -0
  328. package/VideoPlayer/Feedback.module.css +55 -0
  329. package/VideoPlayer/FeedbackContent.js +99 -0
  330. package/VideoPlayer/FeedbackIcon.js +67 -0
  331. package/VideoPlayer/FeedbackIcons.js +76 -0
  332. package/VideoPlayer/FeedbackTooltip.js +242 -0
  333. package/VideoPlayer/FeedbackTooltip.module.css +160 -0
  334. package/VideoPlayer/MediaTitle.js +143 -0
  335. package/VideoPlayer/MediaTitle.module.css +95 -0
  336. package/VideoPlayer/Overlay.js +51 -0
  337. package/VideoPlayer/Video.js +345 -0
  338. package/VideoPlayer/VideoPlayer.d.ts +582 -0
  339. package/VideoPlayer/VideoPlayer.js +2116 -0
  340. package/VideoPlayer/VideoPlayer.module.css +164 -0
  341. package/VideoPlayer/package.json +3 -0
  342. package/VideoPlayer/tests/Video-specs.js +235 -0
  343. package/VideoPlayer/tests/VideoPlayer-specs.js +180 -0
  344. package/VirtualList/VirtualList.d.ts +411 -0
  345. package/VirtualList/VirtualList.js +931 -0
  346. package/VirtualList/VirtualList.module.css +52 -0
  347. package/VirtualList/package.json +3 -0
  348. package/VirtualList/tests/VirtualGridList-specs.js +289 -0
  349. package/VirtualList/tests/VirtualGridList-translate-specs.js +711 -0
  350. package/VirtualList/tests/VirtualList-specs.js +288 -0
  351. package/VirtualList/tests/VirtualList-translate-specs.js +704 -0
  352. package/VirtualList/tests/useEvent-specs.js +172 -0
  353. package/VirtualList/tests/useEvent-translate-specs.js +309 -0
  354. package/VirtualList/useEvent.js +324 -0
  355. package/VirtualList/usePreventScroll.js +31 -0
  356. package/VirtualList/useSpotlight.js +157 -0
  357. package/VirtualList/useThemeVirtualList.js +471 -0
  358. package/VirtualList/useThemeVirtualList.module.css +34 -0
  359. package/WizardPanels/Panel.js +99 -0
  360. package/WizardPanels/WizardPanels.js +501 -0
  361. package/WizardPanels/WizardPanels.module.css +15 -0
  362. package/WizardPanels/index.d.ts +182 -0
  363. package/WizardPanels/index.js +50 -0
  364. package/WizardPanels/package.json +3 -0
  365. package/WizardPanels/tests/WizardPanels-specs.js +713 -0
  366. package/codecov.yml +13 -0
  367. package/fonts/Limestone_Icons.ttf +0 -0
  368. package/fonts/Miso/LICENSE.txt +75 -0
  369. package/fonts/Miso/Miso-Bold.ttf +0 -0
  370. package/fonts/Miso/Miso-Light.ttf +0 -0
  371. package/fonts/Miso/Miso-Regular.ttf +0 -0
  372. package/fonts/MuseoSans/LICENSE.txt +75 -0
  373. package/fonts/MuseoSans/MuseoSans-Black.ttf +0 -0
  374. package/fonts/MuseoSans/MuseoSans-BlackItalic.ttf +0 -0
  375. package/fonts/MuseoSans/MuseoSans-Bold.ttf +0 -0
  376. package/fonts/MuseoSans/MuseoSans-BoldItalic.ttf +0 -0
  377. package/fonts/MuseoSans/MuseoSans-Light.ttf +0 -0
  378. package/fonts/MuseoSans/MuseoSans-Medium.ttf +0 -0
  379. package/fonts/MuseoSans/MuseoSans-MediumItalic.ttf +0 -0
  380. package/fonts/MuseoSans/MuseoSans-Thin.ttf +0 -0
  381. package/index.js +2 -0
  382. package/internal/$L/$L.d.ts +21 -0
  383. package/internal/$L/$L.js +97 -0
  384. package/internal/$L/package.json +3 -0
  385. package/internal/AsyncRenderChildren/AsyncRenderChildren.js +74 -0
  386. package/internal/AsyncRenderChildren/package.json +3 -0
  387. package/internal/AsyncRenderChildren/tests/AsyncRenderChildren-specs.js +49 -0
  388. package/internal/DateComponentPicker/DateComponentPicker.js +165 -0
  389. package/internal/DateComponentPicker/DateComponentPicker.module.css +53 -0
  390. package/internal/DateComponentPicker/DateComponentRangePicker.js +132 -0
  391. package/internal/DateComponentPicker/index.js +31 -0
  392. package/internal/DateComponentPicker/package.json +3 -0
  393. package/internal/DateTime/DateTime.js +83 -0
  394. package/internal/DateTime/DateTime.module.css +51 -0
  395. package/internal/DateTime/DateTimeDecorator.js +268 -0
  396. package/internal/DateTime/index.js +37 -0
  397. package/internal/DateTime/package.json +3 -0
  398. package/internal/DateTime/tests/DateTimeDecorator-specs.js +33 -0
  399. package/internal/DebounceDecorator/DebounceDecorator.js +125 -0
  400. package/internal/DebounceDecorator/package.json +3 -0
  401. package/internal/DebounceDecorator/tests/DebounceDecorator-specs.js +151 -0
  402. package/internal/Panels/Arrangers.js +248 -0
  403. package/internal/Panels/CancelDecorator.js +43 -0
  404. package/internal/Panels/FloatingLayerIdProvider.js +27 -0
  405. package/internal/Panels/NavigationButton.js +64 -0
  406. package/internal/Panels/NavigationButton.module.css +69 -0
  407. package/internal/Panels/PanelsRouter.js +223 -0
  408. package/internal/Panels/PopupDecorator.js +287 -0
  409. package/internal/Panels/TransitionDecorator.js +99 -0
  410. package/internal/Panels/Viewport.js +313 -0
  411. package/internal/Panels/Viewport.module.css +25 -0
  412. package/internal/Panels/captureKeys.js +48 -0
  413. package/internal/Panels/index.js +101 -0
  414. package/internal/Panels/package.json +3 -0
  415. package/internal/Panels/useAutoFocus.js +95 -0
  416. package/internal/Panels/useFocusOnTransition.js +45 -0
  417. package/internal/Panels/useToggleRole.js +30 -0
  418. package/internal/Panels/util.js +64 -0
  419. package/internal/Picker/Picker.js +942 -0
  420. package/internal/Picker/Picker.module.css +1145 -0
  421. package/internal/Picker/PickerButton.js +97 -0
  422. package/internal/Picker/PickerItem.js +38 -0
  423. package/internal/Picker/SpottablePicker.js +63 -0
  424. package/internal/Picker/package.json +3 -0
  425. package/internal/Picker/tests/Picker-specs.js +968 -0
  426. package/internal/SharedStateDecorator/SharedStateDecorator.js +167 -0
  427. package/internal/SharedStateDecorator/package.json +3 -0
  428. package/internal/SharedStateDecorator/tests/SharedStateDecorator-specs.js +277 -0
  429. package/internal/WindowEventable/WindowEventable.js +114 -0
  430. package/internal/WindowEventable/package.json +3 -0
  431. package/internal/util/package.json +3 -0
  432. package/internal/util/util.js +79 -0
  433. package/internal/validators/package.json +4 -0
  434. package/internal/validators/tests/validators-specs.js +80 -0
  435. package/internal/validators/validators.js +136 -0
  436. package/package.json +69 -0
  437. package/resources/ilibmanifest.json +3 -0
  438. package/styles/color-mixins.less +230 -0
  439. package/styles/colors-game-green.less +25 -0
  440. package/styles/colors-game-orange.less +25 -0
  441. package/styles/colors-game.less +56 -0
  442. package/styles/colors-highcontrast.less +21 -0
  443. package/styles/colors.less +435 -0
  444. package/styles/mixins.less +337 -0
  445. package/styles/skin.less +54 -0
  446. package/styles/variables-base.less +32 -0
  447. package/styles/variables-game.less +25 -0
  448. package/styles/variables.less +1182 -0
  449. package/useScroll/HoverToScroll.js +265 -0
  450. package/useScroll/HoverToScroll.module.css +38 -0
  451. package/useScroll/OverscrollEffect.module.css +14 -0
  452. package/useScroll/Scrollbar.js +171 -0
  453. package/useScroll/Scrollbar.module.css +19 -0
  454. package/useScroll/ScrollbarPlaceholder.js +64 -0
  455. package/useScroll/ScrollbarTrack.js +209 -0
  456. package/useScroll/ScrollbarTrack.module.css +136 -0
  457. package/useScroll/package.json +3 -0
  458. package/useScroll/useEvent.js +693 -0
  459. package/useScroll/useOverscrollEffect.js +105 -0
  460. package/useScroll/useScroll.js +523 -0
  461. package/useScroll/useScroll.module.css +49 -0
  462. package/useScroll/useSpotlight.js +32 -0
  463. package/useScroll/useThemeScrollContentHandle.js +32 -0
@@ -0,0 +1,2518 @@
1
+ .button {
2
+ font-family: "Limestone";
3
+ font-size: var(--primitive-font-size-60);
4
+ font-style: normal;
5
+ font-weight: var(--primitive-font-weight-semibold);
6
+ font-kerning: normal;
7
+ line-height: 2.5rem;
8
+ height: 2.75rem;
9
+ min-width: 6.25rem;
10
+ max-width: 25rem;
11
+ padding: 0 1.25rem;
12
+ margin: 0.75rem;
13
+ text-align: center;
14
+ vertical-align: middle;
15
+ --button-height: 2.75rem;
16
+ }
17
+ :global(.enact-locale-non-latin) .button {
18
+ font-family: "Limestone";
19
+ }
20
+ :global(.enact-locale-non-latin) .button {
21
+ font-family: "Limestone";
22
+ font-size: var(--primitive-font-size-54);
23
+ font-style: normal;
24
+ font-weight: var(--primitive-font-weight-bold);
25
+ }
26
+ .button:global(.largeText) {
27
+ font-size: var(--primitive-font-size-96);
28
+ height: 4rem;
29
+ min-width: 4rem;
30
+ line-height: 3.75rem;
31
+ --button-height: 4rem;
32
+ }
33
+ .button.focusStatic {
34
+ /* Defined to prevent global export */
35
+ }
36
+ .button.focusExpand {
37
+ margin: 0.75rem;
38
+ }
39
+ .button.centered .marquee {
40
+ flex-grow: 0;
41
+ }
42
+ .button .client {
43
+ padding: 0.125rem 0;
44
+ border-radius: inherit;
45
+ }
46
+ .button .icon {
47
+ flex-shrink: 0;
48
+ margin-left: 0;
49
+ margin-right: 0.5rem;
50
+ }
51
+ :global(.enact-locale-right-to-left) .button .icon {
52
+ margin-left: 0.5rem;
53
+ margin-right: 0;
54
+ }
55
+ .button.iconAfter .client {
56
+ flex-direction: row-reverse;
57
+ }
58
+ .button.iconAfter .icon {
59
+ margin-left: 0.5rem;
60
+ margin-right: 0;
61
+ }
62
+ :global(.enact-locale-right-to-left) .button.iconAfter .icon {
63
+ margin-left: 0;
64
+ margin-right: 0.5rem;
65
+ }
66
+ .button.red,
67
+ .button.green,
68
+ .button.yellow,
69
+ .button.blue {
70
+ padding-left: 0.75rem;
71
+ padding-right: 1.25rem;
72
+ }
73
+ :global(.enact-locale-right-to-left) .button.red,
74
+ :global(.enact-locale-right-to-left) .button.green,
75
+ :global(.enact-locale-right-to-left) .button.yellow,
76
+ :global(.enact-locale-right-to-left) .button.blue {
77
+ padding-left: 1.25rem;
78
+ padding-right: 0.75rem;
79
+ }
80
+ .button.red .client::before,
81
+ .button.green .client::before,
82
+ .button.yellow .client::before,
83
+ .button.blue .client::before {
84
+ content: "";
85
+ position: absolute;
86
+ bottom: var(--primitive-spacing-12);
87
+ left: 50%;
88
+ width: 1.25rem;
89
+ height: 0.25rem;
90
+ border-radius: var(--semantic-radius-full);
91
+ transform: translate(-50%, 50%);
92
+ }
93
+ .button.red.minWidth .icon,
94
+ .button.green.minWidth .icon,
95
+ .button.yellow.minWidth .icon,
96
+ .button.blue.minWidth .icon {
97
+ margin-inline-start: 0;
98
+ }
99
+ .button.red.minWidth .client,
100
+ .button.green.minWidth .client,
101
+ .button.yellow.minWidth .client,
102
+ .button.blue.minWidth .client {
103
+ margin-inline-start: 1.75rem;
104
+ padding-inline-start: var(--primitive-spacing-24);
105
+ }
106
+ .button.red.minWidth .client::before,
107
+ .button.green.minWidth .client::before,
108
+ .button.yellow.minWidth .client::before,
109
+ .button.blue.minWidth .client::before {
110
+ bottom: 50%;
111
+ transform: translateY(50%);
112
+ left: calc((1.75rem + 1.25rem) / 2 * -1);
113
+ right: initial;
114
+ }
115
+ :global(.enact-locale-right-to-left) .button.red.minWidth .client::before,
116
+ :global(.enact-locale-right-to-left) .button.green.minWidth .client::before,
117
+ :global(.enact-locale-right-to-left) .button.yellow.minWidth .client::before,
118
+ :global(.enact-locale-right-to-left) .button.blue.minWidth .client::before {
119
+ left: initial;
120
+ right: calc((1.75rem + 1.25rem) / 2 * -1);
121
+ }
122
+ .button .marquee {
123
+ flex-grow: 1;
124
+ }
125
+ .button.centered:not(.hasColor) .marquee {
126
+ flex-grow: 0;
127
+ }
128
+ .button:not(.hasIcon):not(.hasColor) .marquee {
129
+ text-align: inherit;
130
+ }
131
+ .button.minWidth {
132
+ min-width: 17.5rem;
133
+ }
134
+ .button.small {
135
+ font-family: "Limestone";
136
+ font-size: var(--primitive-font-size-54);
137
+ font-style: normal;
138
+ font-weight: var(--primitive-font-weight-semibold);
139
+ font-kerning: normal;
140
+ line-height: 2rem;
141
+ height: 2.25rem;
142
+ min-width: 5.5rem;
143
+ max-width: 21.25rem;
144
+ margin: var(--primitive-spacing-24);
145
+ padding-left: 1.25rem;
146
+ padding-right: 1.25rem;
147
+ --button-height: 2.25rem;
148
+ }
149
+ :global(.enact-locale-non-latin) .button.small {
150
+ font-family: "Limestone";
151
+ }
152
+ :global(.enact-locale-non-latin) .button.small {
153
+ font-family: "Limestone";
154
+ font-size: var(--primitive-font-size-48);
155
+ font-style: normal;
156
+ font-weight: var(--primitive-font-weight-bold);
157
+ }
158
+ .button.small.focusExpand {
159
+ margin: var(--primitive-spacing-24);
160
+ }
161
+ .button.small.minWidth {
162
+ min-width: 15rem;
163
+ }
164
+ .button.small .icon {
165
+ margin-left: 0;
166
+ margin-right: 0.5rem;
167
+ }
168
+ :global(.enact-locale-right-to-left) .button.small .icon {
169
+ margin-left: 0.5rem;
170
+ margin-right: 0;
171
+ }
172
+ .button.small.iconAfter .icon {
173
+ margin-left: 0.5rem;
174
+ margin-right: 0;
175
+ }
176
+ :global(.enact-locale-right-to-left) .button.small.iconAfter .icon {
177
+ margin-left: 0;
178
+ margin-right: 0.5rem;
179
+ }
180
+ .button.small.red,
181
+ .button.small.green,
182
+ .button.small.yellow,
183
+ .button.small.blue {
184
+ padding-left: 0.625rem;
185
+ padding-right: 1.25rem;
186
+ }
187
+ :global(.enact-locale-right-to-left) .button.small.red,
188
+ :global(.enact-locale-right-to-left) .button.small.green,
189
+ :global(.enact-locale-right-to-left) .button.small.yellow,
190
+ :global(.enact-locale-right-to-left) .button.small.blue {
191
+ padding-left: 1.25rem;
192
+ padding-right: 0.625rem;
193
+ }
194
+ .button.small.red .client::before,
195
+ .button.small.green .client::before,
196
+ .button.small.yellow .client::before,
197
+ .button.small.blue .client::before {
198
+ bottom: var(--primitive-spacing-12);
199
+ width: 1.0625rem;
200
+ height: 0.1875rem;
201
+ }
202
+ .button.small.red.minWidth .client,
203
+ .button.small.green.minWidth .client,
204
+ .button.small.yellow.minWidth .client,
205
+ .button.small.blue.minWidth .client {
206
+ margin-inline-start: 1.5rem;
207
+ }
208
+ .button.small.red.minWidth .client::before,
209
+ .button.small.green.minWidth .client::before,
210
+ .button.small.yellow.minWidth .client::before,
211
+ .button.small.blue.minWidth .client::before {
212
+ bottom: 50%;
213
+ left: calc((1.5rem + 1.0625rem) / 2 * -1);
214
+ right: initial;
215
+ }
216
+ :global(.enact-locale-right-to-left) .button.small.red.minWidth .client::before,
217
+ :global(.enact-locale-right-to-left) .button.small.green.minWidth .client::before,
218
+ :global(.enact-locale-right-to-left) .button.small.yellow.minWidth .client::before,
219
+ :global(.enact-locale-right-to-left) .button.small.blue.minWidth .client::before {
220
+ left: initial;
221
+ right: calc((1.5rem + 1.0625rem) / 2 * -1);
222
+ }
223
+ .button.small.red.minWidth .icon,
224
+ .button.small.green.minWidth .icon,
225
+ .button.small.yellow.minWidth .icon,
226
+ .button.small.blue.minWidth .icon {
227
+ margin-inline-start: 0;
228
+ }
229
+ .button.small.red.minWidth.iconAfter .icon,
230
+ .button.small.green.minWidth.iconAfter .icon,
231
+ .button.small.yellow.minWidth.iconAfter .icon,
232
+ .button.small.blue.minWidth.iconAfter .icon {
233
+ margin-inline-start: 0.5rem;
234
+ }
235
+ .button.small:global(.largeText) {
236
+ font-size: var(--primitive-font-size-72);
237
+ height: 3rem;
238
+ min-width: 3rem;
239
+ line-height: 2.75rem;
240
+ --button-height: 3rem;
241
+ }
242
+ .button.small:global(.largeText).minWidth {
243
+ min-width: 15rem;
244
+ }
245
+ .button.iconOnly {
246
+ min-width: 2.75rem;
247
+ }
248
+ .button.iconOnly:global(.largeText) {
249
+ min-width: 4rem;
250
+ }
251
+ .button.iconOnly .client {
252
+ padding: 0;
253
+ }
254
+ .button.iconOnly .client .marquee {
255
+ display: none;
256
+ }
257
+ .button.iconOnly.large {
258
+ padding: 0 0.5rem;
259
+ padding-left: 0.5rem;
260
+ padding-right: 0.5rem;
261
+ }
262
+ :global(.enact-locale-right-to-left) .button.iconOnly.large {
263
+ padding-left: 0.5rem;
264
+ padding-right: 0.5rem;
265
+ }
266
+ .button.iconOnly.small {
267
+ min-width: 2.25rem;
268
+ padding: 0 0.375rem;
269
+ padding-left: 0.375rem;
270
+ padding-right: 0.375rem;
271
+ }
272
+ :global(.enact-locale-right-to-left) .button.iconOnly.small {
273
+ padding-left: 0.375rem;
274
+ padding-right: 0.375rem;
275
+ }
276
+ .button.iconOnly.small:global(.largeText) {
277
+ min-width: 3rem;
278
+ }
279
+ .button.iconOnly.iconAfter .icon,
280
+ .button.iconOnly.iconBefore .icon,
281
+ .button.iconOnly.large .icon,
282
+ .button.iconOnly.small .icon {
283
+ margin: 0;
284
+ }
285
+ .button.iconOnly.iconAfter .icon:global(.largeText),
286
+ .button.iconOnly.iconBefore .icon:global(.largeText),
287
+ .button.iconOnly.large .icon:global(.largeText),
288
+ .button.iconOnly.small .icon:global(.largeText) {
289
+ width: 100%;
290
+ }
291
+ .button.iconOnly.iconAfter.red .client::before,
292
+ .button.iconOnly.iconBefore.red .client::before,
293
+ .button.iconOnly.large.red .client::before,
294
+ .button.iconOnly.small.red .client::before,
295
+ .button.iconOnly.iconAfter.green .client::before,
296
+ .button.iconOnly.iconBefore.green .client::before,
297
+ .button.iconOnly.large.green .client::before,
298
+ .button.iconOnly.small.green .client::before,
299
+ .button.iconOnly.iconAfter.yellow .client::before,
300
+ .button.iconOnly.iconBefore.yellow .client::before,
301
+ .button.iconOnly.large.yellow .client::before,
302
+ .button.iconOnly.small.yellow .client::before,
303
+ .button.iconOnly.iconAfter.blue .client::before,
304
+ .button.iconOnly.iconBefore.blue .client::before,
305
+ .button.iconOnly.large.blue .client::before,
306
+ .button.iconOnly.small.blue .client::before {
307
+ width: 1.375rem;
308
+ height: 0.1875rem;
309
+ }
310
+ .button.iconOnly.red .client::before,
311
+ .button.iconOnly.green .client::before,
312
+ .button.iconOnly.yellow .client::before,
313
+ .button.iconOnly.blue .client::before {
314
+ width: 1.375rem;
315
+ height: 0.1875rem;
316
+ }
317
+ .button.collapsable.hasIcon:not(.iconOnly) {
318
+ padding-left: 0;
319
+ padding-right: 0;
320
+ transition: min-width 300ms ease-out;
321
+ }
322
+ .button.collapsable.hasIcon:not(.iconOnly) .icon {
323
+ margin: 0 var(--primitive-spacing-24);
324
+ }
325
+ .button.collapsable.hasIcon:not(.iconOnly) .marquee {
326
+ margin: 0;
327
+ opacity: 1;
328
+ transition: opacity 300ms ease-out;
329
+ will-change: opacity;
330
+ }
331
+ .button.collapsable.hasIcon:not(.iconOnly).collapsed .marquee {
332
+ opacity: 0;
333
+ }
334
+ .button:global(.neutral) {
335
+ border-radius: var(--semantic-radius-button);
336
+ }
337
+ .button:global(.neutral)::before {
338
+ content: "";
339
+ position: absolute;
340
+ top: -0.375rem;
341
+ right: -0.375rem;
342
+ bottom: -0.375rem;
343
+ left: -0.375rem;
344
+ border-radius: var(--semantic-radius-button);
345
+ }
346
+ .button:global(.neutral),
347
+ :global(.enact-a11y-high-contrast) .button:global(.neutral) {
348
+ color: var(--semantic-color-on-surface-main);
349
+ }
350
+ .button:global(.neutral) .bg {
351
+ opacity: 0;
352
+ background-color: var(--semantic-color-surface-default-focused);
353
+ will-change: box-shadow, transform, filter;
354
+ background-color: var(--semantic-color-surface-default);
355
+ transition: transform 200ms ease-out;
356
+ border-width: '';
357
+ border-style: none;
358
+ border-color: var(--semantic-color-stroke-button-outline);
359
+ border-radius: var(--semantic-radius-button);
360
+ }
361
+ .button:global(.neutral).bordered .bg {
362
+ background-color: color(from var(--semantic-color-surface-default) srgb r g b / 0.5);
363
+ border: 0.125rem solid var(--semantic-color-stroke-button-outline);
364
+ }
365
+ .button:global(.neutral).bordered .client {
366
+ color: var(--semantic-color-on-surface-main);
367
+ }
368
+ .button:global(.neutral).opaque {
369
+ color: var(--semantic-color-on-surface-main);
370
+ }
371
+ .button:global(.neutral).opaque .bg {
372
+ opacity: 1;
373
+ }
374
+ .button:global(.neutral).opaque .icon {
375
+ color: var(--semantic-color-on-surface-main);
376
+ }
377
+ .button:global(.neutral).transparent {
378
+ color: var(--semantic-color-on-background-main);
379
+ }
380
+ .button:global(.neutral).transparent .bg {
381
+ opacity: 0;
382
+ }
383
+ .button:global(.neutral).transparent.shadowed .client {
384
+ text-shadow: 0.125rem 0.25rem 0.25rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
385
+ }
386
+ .button:global(.neutral).transparent .icon {
387
+ color: var(--semantic-color-on-background-main);
388
+ }
389
+ .button:global(.neutral).red .client::before {
390
+ background-color: #ff6d78;
391
+ }
392
+ .button:global(.neutral).green .client::before {
393
+ background-color: #93d371;
394
+ }
395
+ .button:global(.neutral).yellow .client::before {
396
+ background-color: #ffc600;
397
+ }
398
+ .button:global(.neutral).blue .client::before {
399
+ background-color: #0084ff;
400
+ }
401
+ .button:global(.neutral).small::before {
402
+ content: "";
403
+ position: absolute;
404
+ top: -0.625rem;
405
+ right: -0.625rem;
406
+ bottom: -0.625rem;
407
+ left: -0.625rem;
408
+ border-radius: var(--semantic-radius-button);
409
+ }
410
+ .button:global(.neutral).iconOnly .bg {
411
+ border: '';
412
+ border-radius: '';
413
+ }
414
+ .button:global(.neutral).roundBorder .bg {
415
+ border-radius: calc(var(--button-height) / 2);
416
+ }
417
+ .button:global(.neutral).selected .bg {
418
+ background-color: var(--semantic-color-surface-default-selected);
419
+ filter: none;
420
+ }
421
+ .button:global(.neutral).selected .client {
422
+ color: var(--semantic-color-on-surface-main-selected);
423
+ }
424
+ .button:global(.neutral).selected .icon {
425
+ color: var(--semantic-color-on-surface-main-selected);
426
+ }
427
+ .button:global(.neutral).selected.bordered .bg {
428
+ background-color: color(from var(--semantic-color-surface-default-selected) srgb r g b / 0.5);
429
+ filter: none;
430
+ border: 0.125rem solid var(--semantic-color-stroke-main-selected);
431
+ }
432
+ .button:global(.neutral).selected.bordered .client {
433
+ color: var(--semantic-color-on-surface-main-selected);
434
+ }
435
+ .button:global(.neutral).selected.opaque .bg {
436
+ opacity: 1;
437
+ }
438
+ .button:global(.neutral).selected.transparent .bg {
439
+ background-color: var(--semantic-color-surface-default-selected);
440
+ filter: none;
441
+ opacity: 1;
442
+ }
443
+ .button:global(.neutral).selected.transparent .client {
444
+ color: var(--semantic-color-on-surface-main-selected);
445
+ }
446
+ .button:global(.neutral).selected.transparent .icon {
447
+ color: var(--semantic-color-on-surface-main-selected);
448
+ }
449
+ :global(.spotlight-input-key) .button:global(.neutral):global(.spottable):focus .bg,
450
+ :global(.spotlight-input-mouse) .button:global(.neutral):global(.spottable):focus .bg {
451
+ opacity: 1;
452
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
453
+ background-color: var(--semantic-color-surface-default-focused);
454
+ filter: none;
455
+ }
456
+ :global(.spotlight-input-key) .button:global(.neutral):global(.spottable):focus .client,
457
+ :global(.spotlight-input-mouse) .button:global(.neutral):global(.spottable):focus .client {
458
+ color: var(--semantic-color-on-surface-main-focused);
459
+ }
460
+ :global(.spotlight-input-key) .button:global(.neutral):global(.spottable):focus .icon,
461
+ :global(.spotlight-input-mouse) .button:global(.neutral):global(.spottable):focus .icon {
462
+ color: var(--semantic-color-on-surface-main-focused);
463
+ }
464
+ :global(.spotlight-input-key) .button:global(.neutral):global(.spottable):focus.bordered .bg,
465
+ :global(.spotlight-input-mouse) .button:global(.neutral):global(.spottable):focus.bordered .bg {
466
+ opacity: 1;
467
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
468
+ background-color: var(--semantic-color-surface-default-focused);
469
+ filter: none;
470
+ }
471
+ :global(.spotlight-input-key) .button:global(.neutral):global(.spottable):focus.bordered .client,
472
+ :global(.spotlight-input-mouse) .button:global(.neutral):global(.spottable):focus.bordered .client {
473
+ color: var(--semantic-color-on-surface-main-focused);
474
+ }
475
+ :global(.spotlight-input-key) .button:global(.neutral):global(.spottable):focus.transparent .bg,
476
+ :global(.spotlight-input-mouse) .button:global(.neutral):global(.spottable):focus.transparent .bg {
477
+ opacity: 1;
478
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
479
+ background-color: var(--semantic-color-surface-default-focused);
480
+ filter: none;
481
+ }
482
+ :global(.spotlight-input-key) .button:global(.neutral):global(.spottable):focus.transparent .client,
483
+ :global(.spotlight-input-mouse) .button:global(.neutral):global(.spottable):focus.transparent .client {
484
+ color: var(--semantic-color-on-surface-main-focused);
485
+ }
486
+ :global(.spotlight-input-key) .button:global(.neutral):global(.spottable):focus.transparent .icon,
487
+ :global(.spotlight-input-mouse) .button:global(.neutral):global(.spottable):focus.transparent .icon {
488
+ color: var(--semantic-color-on-surface-main-focused);
489
+ }
490
+ :global(.spotlight-input-key) .button:global(.neutral):global(.spottable):focus .client,
491
+ :global(.spotlight-input-mouse) .button:global(.neutral):global(.spottable):focus .client {
492
+ text-shadow: none;
493
+ }
494
+ :global(.spotlight-input-key) .button:global(.neutral):global(.spottable):focus.iconOnly .bg,
495
+ :global(.spotlight-input-mouse) .button:global(.neutral):global(.spottable):focus.iconOnly .bg {
496
+ background-color: '';
497
+ }
498
+ :global(.spotlight-input-key) .button:global(.neutral):global(.spottable):focus.focusExpand .bg,
499
+ :global(.spotlight-input-mouse) .button:global(.neutral):global(.spottable):focus.focusExpand .bg {
500
+ 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);
505
+ }
506
+ :global(.spotlight-input-touch) .button:global(.neutral):global(.spottable):active .bg {
507
+ opacity: 1;
508
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
509
+ background-color: var(--semantic-color-surface-default-focused);
510
+ filter: none;
511
+ }
512
+ :global(.spotlight-input-touch) .button:global(.neutral):global(.spottable):active .client {
513
+ color: var(--semantic-color-on-surface-main-focused);
514
+ }
515
+ :global(.spotlight-input-touch) .button:global(.neutral):global(.spottable):active .icon {
516
+ color: var(--semantic-color-on-surface-main-focused);
517
+ }
518
+ :global(.spotlight-input-touch) .button:global(.neutral):global(.spottable):active.bordered .bg {
519
+ opacity: 1;
520
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
521
+ background-color: var(--semantic-color-surface-default-focused);
522
+ filter: none;
523
+ }
524
+ :global(.spotlight-input-touch) .button:global(.neutral):global(.spottable):active.bordered .client {
525
+ color: var(--semantic-color-on-surface-main-focused);
526
+ }
527
+ :global(.spotlight-input-touch) .button:global(.neutral):global(.spottable):active.transparent .bg {
528
+ opacity: 1;
529
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
530
+ background-color: var(--semantic-color-surface-default-focused);
531
+ filter: none;
532
+ }
533
+ :global(.spotlight-input-touch) .button:global(.neutral):global(.spottable):active.transparent .client {
534
+ color: var(--semantic-color-on-surface-main-focused);
535
+ }
536
+ :global(.spotlight-input-touch) .button:global(.neutral):global(.spottable):active.transparent .icon {
537
+ color: var(--semantic-color-on-surface-main-focused);
538
+ }
539
+ :global(.spotlight-input-touch) .button:global(.neutral):global(.spottable):active .client {
540
+ text-shadow: none;
541
+ }
542
+ :global(.spotlight-input-touch) .button:global(.neutral):global(.spottable):active.iconOnly .bg {
543
+ background-color: '';
544
+ }
545
+ :global(.spotlight-input-touch) .button:global(.neutral):global(.spottable):active.focusExpand .bg {
546
+ transform: scale(1.1);
547
+ }
548
+ :global(.spotlight-input-touch) .button:global(.neutral):global(.spottable):active.focusExpand.small .bg {
549
+ transform: scale(1.1);
550
+ }
551
+ :global(.spotlight-input-key) .button:global(.neutral):not([disabled]):global(.spottable):focus,
552
+ :global(.spotlight-input-mouse) .button:global(.neutral):not([disabled]):global(.spottable):focus {
553
+ z-index: 1;
554
+ }
555
+ :global(.spotlight-input-key) .button:global(.neutral):not([disabled]):global(.spottable):focus.focusExpand.pressed .bg,
556
+ :global(.spotlight-input-mouse) .button:global(.neutral):not([disabled]):global(.spottable):focus.focusExpand.pressed .bg,
557
+ :global(.spotlight-input-key) .button:global(.neutral):not([disabled]):global(.spottable):focus.focusExpand:active .bg,
558
+ :global(.spotlight-input-mouse) .button:global(.neutral):not([disabled]):global(.spottable):focus.focusExpand:active .bg {
559
+ transform: scale(1.02);
560
+ }
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);
566
+ }
567
+ :global(.spotlight-input-touch) .button:global(.neutral):not([disabled]):global(.spottable):active {
568
+ z-index: 1;
569
+ }
570
+ :global(.spotlight-input-touch) .button:global(.neutral):not([disabled]):global(.spottable):active.focusExpand.pressed .bg,
571
+ :global(.spotlight-input-touch) .button:global(.neutral):not([disabled]):global(.spottable):active.focusExpand:active .bg {
572
+ transform: scale(1.02);
573
+ }
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);
577
+ }
578
+ :global(.spotlight-input-key) :global(.noAnimation) .button:global(.neutral):global(.spottable):focus .bg,
579
+ :global(.spotlight-input-mouse) :global(.noAnimation) .button:global(.neutral):global(.spottable):focus .bg {
580
+ opacity: 1;
581
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
582
+ background-color: var(--semantic-color-surface-default-focused);
583
+ filter: none;
584
+ box-shadow: none;
585
+ }
586
+ :global(.spotlight-input-key) :global(.noAnimation) .button:global(.neutral):global(.spottable):focus.bordered .bg,
587
+ :global(.spotlight-input-mouse) :global(.noAnimation) .button:global(.neutral):global(.spottable):focus.bordered .bg {
588
+ opacity: 1;
589
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
590
+ background-color: var(--semantic-color-surface-default-focused);
591
+ filter: none;
592
+ box-shadow: none;
593
+ }
594
+ :global(.spotlight-input-key) :global(.noAnimation) .button:global(.neutral):global(.spottable):focus.transparent .bg,
595
+ :global(.spotlight-input-mouse) :global(.noAnimation) .button:global(.neutral):global(.spottable):focus.transparent .bg {
596
+ opacity: 1;
597
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
598
+ background-color: var(--semantic-color-surface-default-focused);
599
+ filter: none;
600
+ box-shadow: none;
601
+ }
602
+ :global(.spotlight-input-key) :global(.noAnimation) .button:global(.neutral):global(.spottable):focus.focusExpand .bg,
603
+ :global(.spotlight-input-mouse) :global(.noAnimation) .button:global(.neutral):global(.spottable):focus.focusExpand .bg {
604
+ transform: none;
605
+ }
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
+ :global(.spotlight-input-key) :global(.noAnimation) .button:global(.neutral):global(.spottable):focus.focusExpand.pressed .bg,
611
+ :global(.spotlight-input-mouse) :global(.noAnimation) .button:global(.neutral):global(.spottable):focus.focusExpand.pressed .bg,
612
+ :global(.spotlight-input-key) :global(.noAnimation) .button:global(.neutral):global(.spottable):focus.focusExpand:active .bg,
613
+ :global(.spotlight-input-mouse) :global(.noAnimation) .button:global(.neutral):global(.spottable):focus.focusExpand:active .bg {
614
+ transform: none;
615
+ }
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
+ :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.neutral):global(.spottable):active .bg {
623
+ opacity: 1;
624
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
625
+ background-color: var(--semantic-color-surface-default-focused);
626
+ filter: none;
627
+ box-shadow: none;
628
+ }
629
+ :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.neutral):global(.spottable):active.bordered .bg {
630
+ opacity: 1;
631
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
632
+ background-color: var(--semantic-color-surface-default-focused);
633
+ filter: none;
634
+ box-shadow: none;
635
+ }
636
+ :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.neutral):global(.spottable):active.transparent .bg {
637
+ opacity: 1;
638
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
639
+ background-color: var(--semantic-color-surface-default-focused);
640
+ filter: none;
641
+ box-shadow: none;
642
+ }
643
+ :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.neutral):global(.spottable):active.focusExpand .bg {
644
+ transform: none;
645
+ }
646
+ :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.neutral):global(.spottable):active.focusExpand.small .bg {
647
+ transform: none;
648
+ }
649
+ :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.neutral):global(.spottable):active.focusExpand.pressed .bg,
650
+ :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.neutral):global(.spottable):active.focusExpand:active .bg {
651
+ transform: none;
652
+ }
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
+ .button:global(.neutral)[disabled] {
658
+ opacity: 1;
659
+ }
660
+ .button:global(.neutral)[disabled] .client {
661
+ opacity: 0.3;
662
+ }
663
+ .button:global(.neutral)[disabled].opaque .bg {
664
+ opacity: 0.3;
665
+ }
666
+ .button:global(.neutral)[disabled].bordered .bg {
667
+ background-color: color(from var(--semantic-color-surface-default) srgb r g b / 0.5);
668
+ }
669
+ .button:global(.neutral)[disabled].transparent.selected .bg {
670
+ opacity: 0.3;
671
+ }
672
+ .button:global(.neutral)[disabled].bordered.selected .bg {
673
+ background-color: color(from var(--semantic-color-surface-default-selected) srgb r g b / 0.5);
674
+ filter: none;
675
+ }
676
+ :global(.spotlight-input-key) .button:global(.neutral)[disabled]:global(.spottable):focus .bg,
677
+ :global(.spotlight-input-mouse) .button:global(.neutral)[disabled]:global(.spottable):focus .bg {
678
+ background-color: var(--semantic-color-surface-default-disabled-focused);
679
+ }
680
+ :global(.spotlight-input-key) .button:global(.neutral)[disabled]:global(.spottable):focus.bordered .bg,
681
+ :global(.spotlight-input-mouse) .button:global(.neutral)[disabled]:global(.spottable):focus.bordered .bg {
682
+ border: 0.125rem solid var(--semantic-color-surface-default-disabled-focused);
683
+ }
684
+ :global(.spotlight-input-key) .button:global(.neutral)[disabled]:global(.spottable):focus .client,
685
+ :global(.spotlight-input-mouse) .button:global(.neutral)[disabled]:global(.spottable):focus .client {
686
+ opacity: 0.4;
687
+ }
688
+ :global(.spotlight-input-touch) .button:global(.neutral)[disabled]:global(.spottable):active .bg {
689
+ background-color: var(--semantic-color-surface-default-disabled-focused);
690
+ }
691
+ :global(.spotlight-input-touch) .button:global(.neutral)[disabled]:global(.spottable):active.bordered .bg {
692
+ border: 0.125rem solid var(--semantic-color-surface-default-disabled-focused);
693
+ }
694
+ :global(.spotlight-input-touch) .button:global(.neutral)[disabled]:global(.spottable):active .client {
695
+ opacity: 0.4;
696
+ }
697
+ :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast) {
698
+ border-radius: var(--semantic-radius-button);
699
+ }
700
+ :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast)::before {
701
+ content: "";
702
+ position: absolute;
703
+ top: -0.375rem;
704
+ right: -0.375rem;
705
+ bottom: -0.375rem;
706
+ left: -0.375rem;
707
+ border-radius: var(--semantic-radius-button);
708
+ }
709
+ :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast),
710
+ :global(.enact-a11y-high-contrast) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast) {
711
+ color: var(--semantic-color-on-surface-main);
712
+ }
713
+ :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast) .bg {
714
+ opacity: 0;
715
+ background-color: var(--semantic-color-surface-default-focused);
716
+ will-change: box-shadow, transform, filter;
717
+ background-color: var(--semantic-color-surface-default);
718
+ transition: transform 200ms ease-out;
719
+ border-width: '';
720
+ border-style: none;
721
+ border-color: var(--semantic-color-stroke-button-outline);
722
+ border-radius: var(--semantic-radius-button);
723
+ }
724
+ :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast).bordered .bg {
725
+ background-color: color(from var(--semantic-color-surface-default) srgb r g b / 0.5);
726
+ border: 0.125rem solid var(--semantic-color-stroke-button-outline);
727
+ }
728
+ :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast).bordered .client {
729
+ color: var(--semantic-color-on-surface-main);
730
+ }
731
+ :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast).opaque {
732
+ color: var(--semantic-color-on-surface-main);
733
+ }
734
+ :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast).opaque .bg {
735
+ opacity: 1;
736
+ }
737
+ :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast).opaque .icon {
738
+ color: var(--semantic-color-on-surface-main);
739
+ }
740
+ :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast).transparent {
741
+ color: var(--semantic-color-on-background-main);
742
+ }
743
+ :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast).transparent .bg {
744
+ opacity: 0;
745
+ }
746
+ :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast).transparent.shadowed .client {
747
+ text-shadow: 0.125rem 0.25rem 0.25rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
748
+ }
749
+ :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast).transparent .icon {
750
+ color: var(--semantic-color-on-background-main);
751
+ }
752
+ :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast).red .client::before {
753
+ background-color: #ff6d78;
754
+ }
755
+ :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast).green .client::before {
756
+ background-color: #93d371;
757
+ }
758
+ :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast).yellow .client::before {
759
+ background-color: #ffc600;
760
+ }
761
+ :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast).blue .client::before {
762
+ background-color: #0084ff;
763
+ }
764
+ :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast).small::before {
765
+ content: "";
766
+ position: absolute;
767
+ top: -0.625rem;
768
+ right: -0.625rem;
769
+ bottom: -0.625rem;
770
+ left: -0.625rem;
771
+ border-radius: var(--semantic-radius-button);
772
+ }
773
+ :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast).iconOnly .bg {
774
+ border: '';
775
+ border-radius: '';
776
+ }
777
+ :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast).roundBorder .bg {
778
+ border-radius: calc(var(--button-height) / 2);
779
+ }
780
+ :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast).selected .bg {
781
+ background-color: var(--semantic-color-surface-default-selected);
782
+ filter: none;
783
+ }
784
+ :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast).selected .client {
785
+ color: var(--semantic-color-on-surface-main-selected);
786
+ }
787
+ :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast).selected .icon {
788
+ color: var(--semantic-color-on-surface-main-selected);
789
+ }
790
+ :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast).selected.bordered .bg {
791
+ background-color: color(from var(--semantic-color-surface-default-selected) srgb r g b / 0.5);
792
+ filter: none;
793
+ border: 0.125rem solid var(--semantic-color-stroke-main-selected);
794
+ }
795
+ :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast).selected.bordered .client {
796
+ color: var(--semantic-color-on-surface-main-selected);
797
+ }
798
+ :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast).selected.opaque .bg {
799
+ opacity: 1;
800
+ }
801
+ :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast).selected.transparent .bg {
802
+ background-color: var(--semantic-color-surface-default-selected);
803
+ filter: none;
804
+ opacity: 1;
805
+ }
806
+ :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast).selected.transparent .client {
807
+ color: var(--semantic-color-on-surface-main-selected);
808
+ }
809
+ :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast).selected.transparent .icon {
810
+ color: var(--semantic-color-on-surface-main-selected);
811
+ }
812
+ :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus .bg,
813
+ :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus .bg {
814
+ opacity: 1;
815
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
816
+ background-color: var(--semantic-color-surface-default-focused);
817
+ filter: none;
818
+ }
819
+ :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus .client,
820
+ :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus .client {
821
+ color: var(--semantic-color-on-surface-main-focused);
822
+ }
823
+ :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus .icon,
824
+ :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus .icon {
825
+ color: var(--semantic-color-on-surface-main-focused);
826
+ }
827
+ :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus.bordered .bg,
828
+ :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus.bordered .bg {
829
+ opacity: 1;
830
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
831
+ background-color: var(--semantic-color-surface-default-focused);
832
+ filter: none;
833
+ }
834
+ :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus.bordered .client,
835
+ :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus.bordered .client {
836
+ color: var(--semantic-color-on-surface-main-focused);
837
+ }
838
+ :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus.transparent .bg,
839
+ :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus.transparent .bg {
840
+ opacity: 1;
841
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
842
+ background-color: var(--semantic-color-surface-default-focused);
843
+ filter: none;
844
+ }
845
+ :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus.transparent .client,
846
+ :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus.transparent .client {
847
+ color: var(--semantic-color-on-surface-main-focused);
848
+ }
849
+ :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus.transparent .icon,
850
+ :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus.transparent .icon {
851
+ color: var(--semantic-color-on-surface-main-focused);
852
+ }
853
+ :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus .client,
854
+ :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus .client {
855
+ text-shadow: none;
856
+ }
857
+ :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus.iconOnly .bg,
858
+ :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus.iconOnly .bg {
859
+ background-color: '';
860
+ }
861
+ :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus.focusExpand .bg,
862
+ :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus.focusExpand .bg {
863
+ 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);
868
+ }
869
+ :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):active .bg {
870
+ opacity: 1;
871
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
872
+ background-color: var(--semantic-color-surface-default-focused);
873
+ filter: none;
874
+ }
875
+ :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):active .client {
876
+ color: var(--semantic-color-on-surface-main-focused);
877
+ }
878
+ :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):active .icon {
879
+ color: var(--semantic-color-on-surface-main-focused);
880
+ }
881
+ :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):active.bordered .bg {
882
+ opacity: 1;
883
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
884
+ background-color: var(--semantic-color-surface-default-focused);
885
+ filter: none;
886
+ }
887
+ :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):active.bordered .client {
888
+ color: var(--semantic-color-on-surface-main-focused);
889
+ }
890
+ :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):active.transparent .bg {
891
+ opacity: 1;
892
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
893
+ background-color: var(--semantic-color-surface-default-focused);
894
+ filter: none;
895
+ }
896
+ :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):active.transparent .client {
897
+ color: var(--semantic-color-on-surface-main-focused);
898
+ }
899
+ :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):active.transparent .icon {
900
+ color: var(--semantic-color-on-surface-main-focused);
901
+ }
902
+ :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):active .client {
903
+ text-shadow: none;
904
+ }
905
+ :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):active.iconOnly .bg {
906
+ background-color: '';
907
+ }
908
+ :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):active.focusExpand .bg {
909
+ 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);
913
+ }
914
+ :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):not([disabled]):global(.spottable):focus,
915
+ :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):not([disabled]):global(.spottable):focus {
916
+ z-index: 1;
917
+ }
918
+ :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):not([disabled]):global(.spottable):focus.focusExpand.pressed .bg,
919
+ :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):not([disabled]):global(.spottable):focus.focusExpand.pressed .bg,
920
+ :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):not([disabled]):global(.spottable):focus.focusExpand:active .bg,
921
+ :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);
923
+ }
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);
929
+ }
930
+ :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):not([disabled]):global(.spottable):active {
931
+ z-index: 1;
932
+ }
933
+ :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):not([disabled]):global(.spottable):active.focusExpand.pressed .bg,
934
+ :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);
936
+ }
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);
940
+ }
941
+ :global(.spotlight-input-key) :global(.noAnimation) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus .bg,
942
+ :global(.spotlight-input-mouse) :global(.noAnimation) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus .bg {
943
+ opacity: 1;
944
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
945
+ background-color: var(--semantic-color-surface-default-focused);
946
+ filter: none;
947
+ box-shadow: none;
948
+ }
949
+ :global(.spotlight-input-key) :global(.noAnimation) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus.bordered .bg,
950
+ :global(.spotlight-input-mouse) :global(.noAnimation) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus.bordered .bg {
951
+ opacity: 1;
952
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
953
+ background-color: var(--semantic-color-surface-default-focused);
954
+ filter: none;
955
+ box-shadow: none;
956
+ }
957
+ :global(.spotlight-input-key) :global(.noAnimation) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus.transparent .bg,
958
+ :global(.spotlight-input-mouse) :global(.noAnimation) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus.transparent .bg {
959
+ opacity: 1;
960
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
961
+ background-color: var(--semantic-color-surface-default-focused);
962
+ filter: none;
963
+ box-shadow: none;
964
+ }
965
+ :global(.spotlight-input-key) :global(.noAnimation) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus.focusExpand .bg,
966
+ :global(.spotlight-input-mouse) :global(.noAnimation) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus.focusExpand .bg {
967
+ transform: none;
968
+ }
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
+ :global(.spotlight-input-key) :global(.noAnimation) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus.focusExpand.pressed .bg,
974
+ :global(.spotlight-input-mouse) :global(.noAnimation) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus.focusExpand.pressed .bg,
975
+ :global(.spotlight-input-key) :global(.noAnimation) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus.focusExpand:active .bg,
976
+ :global(.spotlight-input-mouse) :global(.noAnimation) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):focus.focusExpand:active .bg {
977
+ transform: none;
978
+ }
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
+ :global(.spotlight-input-touch) :global(.noAnimation) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):active .bg {
986
+ opacity: 1;
987
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
988
+ background-color: var(--semantic-color-surface-default-focused);
989
+ filter: none;
990
+ box-shadow: none;
991
+ }
992
+ :global(.spotlight-input-touch) :global(.noAnimation) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):active.bordered .bg {
993
+ opacity: 1;
994
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
995
+ background-color: var(--semantic-color-surface-default-focused);
996
+ filter: none;
997
+ box-shadow: none;
998
+ }
999
+ :global(.spotlight-input-touch) :global(.noAnimation) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):active.transparent .bg {
1000
+ opacity: 1;
1001
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1002
+ background-color: var(--semantic-color-surface-default-focused);
1003
+ filter: none;
1004
+ box-shadow: none;
1005
+ }
1006
+ :global(.spotlight-input-touch) :global(.noAnimation) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):active.focusExpand .bg {
1007
+ transform: none;
1008
+ }
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
+ :global(.spotlight-input-touch) :global(.noAnimation) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):active.focusExpand.pressed .bg,
1013
+ :global(.spotlight-input-touch) :global(.noAnimation) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast):global(.spottable):active.focusExpand:active .bg {
1014
+ transform: none;
1015
+ }
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
+ :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast)[disabled] {
1021
+ opacity: 1;
1022
+ }
1023
+ :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast)[disabled] .client {
1024
+ opacity: 0.3;
1025
+ }
1026
+ :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast)[disabled].opaque .bg {
1027
+ opacity: 0.3;
1028
+ }
1029
+ :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast)[disabled].bordered .bg {
1030
+ background-color: color(from var(--semantic-color-surface-default) srgb r g b / 0.5);
1031
+ }
1032
+ :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast)[disabled].transparent.selected .bg {
1033
+ opacity: 0.3;
1034
+ }
1035
+ :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast)[disabled].bordered.selected .bg {
1036
+ background-color: color(from var(--semantic-color-surface-default-selected) srgb r g b / 0.5);
1037
+ filter: none;
1038
+ }
1039
+ :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast)[disabled]:global(.spottable):focus .bg,
1040
+ :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast)[disabled]:global(.spottable):focus .bg {
1041
+ background-color: var(--semantic-color-surface-default-disabled-focused);
1042
+ }
1043
+ :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast)[disabled]:global(.spottable):focus.bordered .bg,
1044
+ :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast)[disabled]:global(.spottable):focus.bordered .bg {
1045
+ border: 0.125rem solid var(--semantic-color-surface-default-disabled-focused);
1046
+ }
1047
+ :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast)[disabled]:global(.spottable):focus .client,
1048
+ :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast)[disabled]:global(.spottable):focus .client {
1049
+ opacity: 0.4;
1050
+ }
1051
+ :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast)[disabled]:global(.spottable):active .bg {
1052
+ background-color: var(--semantic-color-surface-default-disabled-focused);
1053
+ }
1054
+ :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast)[disabled]:global(.spottable):active.bordered .bg {
1055
+ border: 0.125rem solid var(--semantic-color-surface-default-disabled-focused);
1056
+ }
1057
+ :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .button:global(.neutral):global(.highContrast)[disabled]:global(.spottable):active .client {
1058
+ opacity: 0.4;
1059
+ }
1060
+ .button:global(.light) {
1061
+ border-radius: var(--semantic-radius-button);
1062
+ }
1063
+ .button:global(.light)::before {
1064
+ content: "";
1065
+ position: absolute;
1066
+ top: -0.375rem;
1067
+ right: -0.375rem;
1068
+ bottom: -0.375rem;
1069
+ left: -0.375rem;
1070
+ border-radius: var(--semantic-radius-button);
1071
+ }
1072
+ .button:global(.light),
1073
+ :global(.enact-a11y-high-contrast) .button:global(.light) {
1074
+ color: var(--semantic-color-on-surface-main);
1075
+ }
1076
+ .button:global(.light) .bg {
1077
+ opacity: 0;
1078
+ background-color: var(--semantic-color-surface-default-focused);
1079
+ will-change: box-shadow, transform, filter;
1080
+ background-color: var(--semantic-color-surface-default);
1081
+ transition: transform 200ms ease-out;
1082
+ border-width: '';
1083
+ border-style: none;
1084
+ border-color: var(--semantic-color-stroke-button-outline);
1085
+ border-radius: var(--semantic-radius-button);
1086
+ }
1087
+ .button:global(.light).bordered .bg {
1088
+ background-color: color(from var(--semantic-color-surface-default) srgb r g b / 0.5);
1089
+ border: 0.125rem solid var(--semantic-color-stroke-button-outline);
1090
+ }
1091
+ .button:global(.light).bordered .client {
1092
+ color: var(--semantic-color-on-surface-main);
1093
+ }
1094
+ .button:global(.light).opaque {
1095
+ color: var(--semantic-color-on-surface-main);
1096
+ }
1097
+ .button:global(.light).opaque .bg {
1098
+ opacity: 1;
1099
+ }
1100
+ .button:global(.light).opaque .icon {
1101
+ color: var(--semantic-color-on-surface-main);
1102
+ }
1103
+ .button:global(.light).transparent {
1104
+ color: var(--semantic-color-on-background-main);
1105
+ }
1106
+ .button:global(.light).transparent .bg {
1107
+ opacity: 0;
1108
+ }
1109
+ .button:global(.light).transparent.shadowed .client {
1110
+ text-shadow: 0.125rem 0.25rem 0.25rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1111
+ }
1112
+ .button:global(.light).transparent .icon {
1113
+ color: var(--semantic-color-on-background-main);
1114
+ }
1115
+ .button:global(.light).red .client::before {
1116
+ background-color: #ff6d78;
1117
+ }
1118
+ .button:global(.light).green .client::before {
1119
+ background-color: #93d371;
1120
+ }
1121
+ .button:global(.light).yellow .client::before {
1122
+ background-color: #ffc600;
1123
+ }
1124
+ .button:global(.light).blue .client::before {
1125
+ background-color: #0084ff;
1126
+ }
1127
+ .button:global(.light).small::before {
1128
+ content: "";
1129
+ position: absolute;
1130
+ top: -0.625rem;
1131
+ right: -0.625rem;
1132
+ bottom: -0.625rem;
1133
+ left: -0.625rem;
1134
+ border-radius: var(--semantic-radius-button);
1135
+ }
1136
+ .button:global(.light).iconOnly .bg {
1137
+ border: '';
1138
+ border-radius: '';
1139
+ }
1140
+ .button:global(.light).roundBorder .bg {
1141
+ border-radius: calc(var(--button-height) / 2);
1142
+ }
1143
+ .button:global(.light).selected .bg {
1144
+ background-color: var(--semantic-color-surface-default-selected);
1145
+ filter: none;
1146
+ }
1147
+ .button:global(.light).selected .client {
1148
+ color: var(--semantic-color-on-surface-main-selected);
1149
+ }
1150
+ .button:global(.light).selected .icon {
1151
+ color: var(--semantic-color-on-surface-main-selected);
1152
+ }
1153
+ .button:global(.light).selected.bordered .bg {
1154
+ background-color: color(from var(--semantic-color-surface-default-selected) srgb r g b / 0.5);
1155
+ filter: none;
1156
+ border: 0.125rem solid var(--semantic-color-stroke-main-selected);
1157
+ }
1158
+ .button:global(.light).selected.bordered .client {
1159
+ color: var(--semantic-color-on-surface-main-selected);
1160
+ }
1161
+ .button:global(.light).selected.opaque .bg {
1162
+ opacity: 1;
1163
+ }
1164
+ .button:global(.light).selected.transparent .bg {
1165
+ background-color: var(--semantic-color-surface-default-selected);
1166
+ filter: none;
1167
+ opacity: 1;
1168
+ }
1169
+ .button:global(.light).selected.transparent .client {
1170
+ color: var(--semantic-color-on-surface-main-selected);
1171
+ }
1172
+ .button:global(.light).selected.transparent .icon {
1173
+ color: var(--semantic-color-on-surface-main-selected);
1174
+ }
1175
+ :global(.spotlight-input-key) .button:global(.light):global(.spottable):focus .bg,
1176
+ :global(.spotlight-input-mouse) .button:global(.light):global(.spottable):focus .bg {
1177
+ opacity: 1;
1178
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1179
+ background-color: var(--semantic-color-surface-default-focused);
1180
+ filter: none;
1181
+ }
1182
+ :global(.spotlight-input-key) .button:global(.light):global(.spottable):focus .client,
1183
+ :global(.spotlight-input-mouse) .button:global(.light):global(.spottable):focus .client {
1184
+ color: var(--semantic-color-on-surface-main-focused);
1185
+ }
1186
+ :global(.spotlight-input-key) .button:global(.light):global(.spottable):focus .icon,
1187
+ :global(.spotlight-input-mouse) .button:global(.light):global(.spottable):focus .icon {
1188
+ color: var(--semantic-color-on-surface-main-focused);
1189
+ }
1190
+ :global(.spotlight-input-key) .button:global(.light):global(.spottable):focus.bordered .bg,
1191
+ :global(.spotlight-input-mouse) .button:global(.light):global(.spottable):focus.bordered .bg {
1192
+ opacity: 1;
1193
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1194
+ background-color: var(--semantic-color-surface-default-focused);
1195
+ filter: none;
1196
+ }
1197
+ :global(.spotlight-input-key) .button:global(.light):global(.spottable):focus.bordered .client,
1198
+ :global(.spotlight-input-mouse) .button:global(.light):global(.spottable):focus.bordered .client {
1199
+ color: var(--semantic-color-on-surface-main-focused);
1200
+ }
1201
+ :global(.spotlight-input-key) .button:global(.light):global(.spottable):focus.transparent .bg,
1202
+ :global(.spotlight-input-mouse) .button:global(.light):global(.spottable):focus.transparent .bg {
1203
+ opacity: 1;
1204
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1205
+ background-color: var(--semantic-color-surface-default-focused);
1206
+ filter: none;
1207
+ }
1208
+ :global(.spotlight-input-key) .button:global(.light):global(.spottable):focus.transparent .client,
1209
+ :global(.spotlight-input-mouse) .button:global(.light):global(.spottable):focus.transparent .client {
1210
+ color: var(--semantic-color-on-surface-main-focused);
1211
+ }
1212
+ :global(.spotlight-input-key) .button:global(.light):global(.spottable):focus.transparent .icon,
1213
+ :global(.spotlight-input-mouse) .button:global(.light):global(.spottable):focus.transparent .icon {
1214
+ color: var(--semantic-color-on-surface-main-focused);
1215
+ }
1216
+ :global(.spotlight-input-key) .button:global(.light):global(.spottable):focus .client,
1217
+ :global(.spotlight-input-mouse) .button:global(.light):global(.spottable):focus .client {
1218
+ text-shadow: none;
1219
+ }
1220
+ :global(.spotlight-input-key) .button:global(.light):global(.spottable):focus.iconOnly .bg,
1221
+ :global(.spotlight-input-mouse) .button:global(.light):global(.spottable):focus.iconOnly .bg {
1222
+ background-color: '';
1223
+ }
1224
+ :global(.spotlight-input-key) .button:global(.light):global(.spottable):focus.focusExpand .bg,
1225
+ :global(.spotlight-input-mouse) .button:global(.light):global(.spottable):focus.focusExpand .bg {
1226
+ 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);
1231
+ }
1232
+ :global(.spotlight-input-touch) .button:global(.light):global(.spottable):active .bg {
1233
+ opacity: 1;
1234
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1235
+ background-color: var(--semantic-color-surface-default-focused);
1236
+ filter: none;
1237
+ }
1238
+ :global(.spotlight-input-touch) .button:global(.light):global(.spottable):active .client {
1239
+ color: var(--semantic-color-on-surface-main-focused);
1240
+ }
1241
+ :global(.spotlight-input-touch) .button:global(.light):global(.spottable):active .icon {
1242
+ color: var(--semantic-color-on-surface-main-focused);
1243
+ }
1244
+ :global(.spotlight-input-touch) .button:global(.light):global(.spottable):active.bordered .bg {
1245
+ opacity: 1;
1246
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1247
+ background-color: var(--semantic-color-surface-default-focused);
1248
+ filter: none;
1249
+ }
1250
+ :global(.spotlight-input-touch) .button:global(.light):global(.spottable):active.bordered .client {
1251
+ color: var(--semantic-color-on-surface-main-focused);
1252
+ }
1253
+ :global(.spotlight-input-touch) .button:global(.light):global(.spottable):active.transparent .bg {
1254
+ opacity: 1;
1255
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1256
+ background-color: var(--semantic-color-surface-default-focused);
1257
+ filter: none;
1258
+ }
1259
+ :global(.spotlight-input-touch) .button:global(.light):global(.spottable):active.transparent .client {
1260
+ color: var(--semantic-color-on-surface-main-focused);
1261
+ }
1262
+ :global(.spotlight-input-touch) .button:global(.light):global(.spottable):active.transparent .icon {
1263
+ color: var(--semantic-color-on-surface-main-focused);
1264
+ }
1265
+ :global(.spotlight-input-touch) .button:global(.light):global(.spottable):active .client {
1266
+ text-shadow: none;
1267
+ }
1268
+ :global(.spotlight-input-touch) .button:global(.light):global(.spottable):active.iconOnly .bg {
1269
+ background-color: '';
1270
+ }
1271
+ :global(.spotlight-input-touch) .button:global(.light):global(.spottable):active.focusExpand .bg {
1272
+ transform: scale(1.1);
1273
+ }
1274
+ :global(.spotlight-input-touch) .button:global(.light):global(.spottable):active.focusExpand.small .bg {
1275
+ transform: scale(1.1);
1276
+ }
1277
+ :global(.spotlight-input-key) .button:global(.light):not([disabled]):global(.spottable):focus,
1278
+ :global(.spotlight-input-mouse) .button:global(.light):not([disabled]):global(.spottable):focus {
1279
+ z-index: 1;
1280
+ }
1281
+ :global(.spotlight-input-key) .button:global(.light):not([disabled]):global(.spottable):focus.focusExpand.pressed .bg,
1282
+ :global(.spotlight-input-mouse) .button:global(.light):not([disabled]):global(.spottable):focus.focusExpand.pressed .bg,
1283
+ :global(.spotlight-input-key) .button:global(.light):not([disabled]):global(.spottable):focus.focusExpand:active .bg,
1284
+ :global(.spotlight-input-mouse) .button:global(.light):not([disabled]):global(.spottable):focus.focusExpand:active .bg {
1285
+ transform: scale(1.02);
1286
+ }
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);
1292
+ }
1293
+ :global(.spotlight-input-touch) .button:global(.light):not([disabled]):global(.spottable):active {
1294
+ z-index: 1;
1295
+ }
1296
+ :global(.spotlight-input-touch) .button:global(.light):not([disabled]):global(.spottable):active.focusExpand.pressed .bg,
1297
+ :global(.spotlight-input-touch) .button:global(.light):not([disabled]):global(.spottable):active.focusExpand:active .bg {
1298
+ transform: scale(1.02);
1299
+ }
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);
1303
+ }
1304
+ :global(.spotlight-input-key) :global(.noAnimation) .button:global(.light):global(.spottable):focus .bg,
1305
+ :global(.spotlight-input-mouse) :global(.noAnimation) .button:global(.light):global(.spottable):focus .bg {
1306
+ opacity: 1;
1307
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1308
+ background-color: var(--semantic-color-surface-default-focused);
1309
+ filter: none;
1310
+ box-shadow: none;
1311
+ }
1312
+ :global(.spotlight-input-key) :global(.noAnimation) .button:global(.light):global(.spottable):focus.bordered .bg,
1313
+ :global(.spotlight-input-mouse) :global(.noAnimation) .button:global(.light):global(.spottable):focus.bordered .bg {
1314
+ opacity: 1;
1315
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1316
+ background-color: var(--semantic-color-surface-default-focused);
1317
+ filter: none;
1318
+ box-shadow: none;
1319
+ }
1320
+ :global(.spotlight-input-key) :global(.noAnimation) .button:global(.light):global(.spottable):focus.transparent .bg,
1321
+ :global(.spotlight-input-mouse) :global(.noAnimation) .button:global(.light):global(.spottable):focus.transparent .bg {
1322
+ opacity: 1;
1323
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1324
+ background-color: var(--semantic-color-surface-default-focused);
1325
+ filter: none;
1326
+ box-shadow: none;
1327
+ }
1328
+ :global(.spotlight-input-key) :global(.noAnimation) .button:global(.light):global(.spottable):focus.focusExpand .bg,
1329
+ :global(.spotlight-input-mouse) :global(.noAnimation) .button:global(.light):global(.spottable):focus.focusExpand .bg {
1330
+ transform: none;
1331
+ }
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
+ :global(.spotlight-input-key) :global(.noAnimation) .button:global(.light):global(.spottable):focus.focusExpand.pressed .bg,
1337
+ :global(.spotlight-input-mouse) :global(.noAnimation) .button:global(.light):global(.spottable):focus.focusExpand.pressed .bg,
1338
+ :global(.spotlight-input-key) :global(.noAnimation) .button:global(.light):global(.spottable):focus.focusExpand:active .bg,
1339
+ :global(.spotlight-input-mouse) :global(.noAnimation) .button:global(.light):global(.spottable):focus.focusExpand:active .bg {
1340
+ transform: none;
1341
+ }
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
+ :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.light):global(.spottable):active .bg {
1349
+ opacity: 1;
1350
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1351
+ background-color: var(--semantic-color-surface-default-focused);
1352
+ filter: none;
1353
+ box-shadow: none;
1354
+ }
1355
+ :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.light):global(.spottable):active.bordered .bg {
1356
+ opacity: 1;
1357
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1358
+ background-color: var(--semantic-color-surface-default-focused);
1359
+ filter: none;
1360
+ box-shadow: none;
1361
+ }
1362
+ :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.light):global(.spottable):active.transparent .bg {
1363
+ opacity: 1;
1364
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1365
+ background-color: var(--semantic-color-surface-default-focused);
1366
+ filter: none;
1367
+ box-shadow: none;
1368
+ }
1369
+ :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.light):global(.spottable):active.focusExpand .bg {
1370
+ transform: none;
1371
+ }
1372
+ :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.light):global(.spottable):active.focusExpand.small .bg {
1373
+ transform: none;
1374
+ }
1375
+ :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.light):global(.spottable):active.focusExpand.pressed .bg,
1376
+ :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.light):global(.spottable):active.focusExpand:active .bg {
1377
+ transform: none;
1378
+ }
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
+ .button:global(.light)[disabled] {
1384
+ opacity: 1;
1385
+ }
1386
+ .button:global(.light)[disabled] .client {
1387
+ opacity: 0.3;
1388
+ }
1389
+ .button:global(.light)[disabled].opaque .bg {
1390
+ opacity: 0.3;
1391
+ }
1392
+ .button:global(.light)[disabled].bordered .bg {
1393
+ background-color: color(from var(--semantic-color-surface-default) srgb r g b / 0.5);
1394
+ }
1395
+ .button:global(.light)[disabled].transparent.selected .bg {
1396
+ opacity: 0.3;
1397
+ }
1398
+ .button:global(.light)[disabled].bordered.selected .bg {
1399
+ background-color: color(from var(--semantic-color-surface-default-selected) srgb r g b / 0.5);
1400
+ filter: none;
1401
+ }
1402
+ :global(.spotlight-input-key) .button:global(.light)[disabled]:global(.spottable):focus .bg,
1403
+ :global(.spotlight-input-mouse) .button:global(.light)[disabled]:global(.spottable):focus .bg {
1404
+ background-color: var(--semantic-color-surface-default-disabled-focused);
1405
+ }
1406
+ :global(.spotlight-input-key) .button:global(.light)[disabled]:global(.spottable):focus.bordered .bg,
1407
+ :global(.spotlight-input-mouse) .button:global(.light)[disabled]:global(.spottable):focus.bordered .bg {
1408
+ border: 0.125rem solid var(--semantic-color-surface-default-disabled-focused);
1409
+ }
1410
+ :global(.spotlight-input-key) .button:global(.light)[disabled]:global(.spottable):focus .client,
1411
+ :global(.spotlight-input-mouse) .button:global(.light)[disabled]:global(.spottable):focus .client {
1412
+ opacity: 0.4;
1413
+ }
1414
+ :global(.spotlight-input-touch) .button:global(.light)[disabled]:global(.spottable):active .bg {
1415
+ background-color: var(--semantic-color-surface-default-disabled-focused);
1416
+ }
1417
+ :global(.spotlight-input-touch) .button:global(.light)[disabled]:global(.spottable):active.bordered .bg {
1418
+ border: 0.125rem solid var(--semantic-color-surface-default-disabled-focused);
1419
+ }
1420
+ :global(.spotlight-input-touch) .button:global(.light)[disabled]:global(.spottable):active .client {
1421
+ opacity: 0.4;
1422
+ }
1423
+ .button:global(.game) {
1424
+ --semantic-color-surface-default: #2d224c;
1425
+ --semantic-color-surface-default-focused: #6d2fa1;
1426
+ --semantic-color-on-surface-main-focused: #e6e6e6;
1427
+ border-radius: 0;
1428
+ }
1429
+ .button:global(.game)::before {
1430
+ content: "";
1431
+ position: absolute;
1432
+ top: -0.375rem;
1433
+ right: -0.375rem;
1434
+ bottom: -0.375rem;
1435
+ left: -0.375rem;
1436
+ border-radius: 0;
1437
+ }
1438
+ .button:global(.game),
1439
+ :global(.enact-a11y-high-contrast) .button:global(.game) {
1440
+ color: var(--semantic-color-on-surface-main);
1441
+ }
1442
+ .button:global(.game) .bg {
1443
+ opacity: 0;
1444
+ background-color: var(--semantic-color-surface-default-focused);
1445
+ will-change: box-shadow, transform, filter;
1446
+ background-color: var(--semantic-color-surface-default);
1447
+ transition: transform 200ms ease-out;
1448
+ border-width: 0.125rem;
1449
+ border-style: solid;
1450
+ border-color: var(--semantic-color-stroke-button-outline);
1451
+ border-radius: 0;
1452
+ }
1453
+ .button:global(.game).bordered .bg {
1454
+ background-color: color(from var(--semantic-color-surface-default) srgb r g b / 0.5);
1455
+ border: 0.125rem solid var(--semantic-color-stroke-button-outline);
1456
+ }
1457
+ .button:global(.game).bordered .client {
1458
+ color: var(--semantic-color-on-surface-main);
1459
+ }
1460
+ .button:global(.game).opaque {
1461
+ color: var(--semantic-color-on-surface-main);
1462
+ }
1463
+ .button:global(.game).opaque .bg {
1464
+ opacity: 1;
1465
+ }
1466
+ .button:global(.game).opaque .icon {
1467
+ color: var(--semantic-color-on-surface-main);
1468
+ }
1469
+ .button:global(.game).transparent {
1470
+ color: var(--semantic-color-on-background-main);
1471
+ }
1472
+ .button:global(.game).transparent .bg {
1473
+ opacity: 0;
1474
+ }
1475
+ .button:global(.game).transparent.shadowed .client {
1476
+ text-shadow: 0.125rem 0.25rem 0.25rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1477
+ }
1478
+ .button:global(.game).transparent .icon {
1479
+ color: var(--semantic-color-on-background-main);
1480
+ }
1481
+ .button:global(.game).red .client::before {
1482
+ background-color: #ff6d78;
1483
+ }
1484
+ .button:global(.game).green .client::before {
1485
+ background-color: #93d371;
1486
+ }
1487
+ .button:global(.game).yellow .client::before {
1488
+ background-color: #ffc600;
1489
+ }
1490
+ .button:global(.game).blue .client::before {
1491
+ background-color: #0084ff;
1492
+ }
1493
+ .button:global(.game).small::before {
1494
+ content: "";
1495
+ position: absolute;
1496
+ top: -0.625rem;
1497
+ right: -0.625rem;
1498
+ bottom: -0.625rem;
1499
+ left: -0.625rem;
1500
+ border-radius: 0;
1501
+ }
1502
+ .button:global(.game).iconOnly .bg {
1503
+ border: 0.125rem;
1504
+ border-radius: var(--primitive-radius-12);
1505
+ }
1506
+ .button:global(.game).roundBorder .bg {
1507
+ border-radius: calc(var(--button-height) / 2);
1508
+ }
1509
+ .button:global(.game).selected .bg {
1510
+ background-color: var(--semantic-color-surface-default-selected);
1511
+ filter: none;
1512
+ }
1513
+ .button:global(.game).selected .client {
1514
+ color: var(--semantic-color-on-surface-main-selected);
1515
+ }
1516
+ .button:global(.game).selected .icon {
1517
+ color: var(--semantic-color-on-surface-main-selected);
1518
+ }
1519
+ .button:global(.game).selected.bordered .bg {
1520
+ background-color: color(from var(--semantic-color-surface-default-selected) srgb r g b / 0.5);
1521
+ filter: none;
1522
+ border: 0.125rem solid var(--semantic-color-stroke-main-selected);
1523
+ }
1524
+ .button:global(.game).selected.bordered .client {
1525
+ color: var(--semantic-color-on-surface-main-selected);
1526
+ }
1527
+ .button:global(.game).selected.opaque .bg {
1528
+ opacity: 1;
1529
+ }
1530
+ .button:global(.game).selected.transparent .bg {
1531
+ background-color: var(--semantic-color-surface-default-selected);
1532
+ filter: none;
1533
+ opacity: 1;
1534
+ }
1535
+ .button:global(.game).selected.transparent .client {
1536
+ color: var(--semantic-color-on-surface-main-selected);
1537
+ }
1538
+ .button:global(.game).selected.transparent .icon {
1539
+ color: var(--semantic-color-on-surface-main-selected);
1540
+ }
1541
+ :global(.spotlight-input-key) .button:global(.game):global(.spottable):focus .bg,
1542
+ :global(.spotlight-input-mouse) .button:global(.game):global(.spottable):focus .bg {
1543
+ opacity: 1;
1544
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1545
+ background-color: var(--semantic-color-surface-default-focused);
1546
+ filter: none;
1547
+ }
1548
+ :global(.spotlight-input-key) .button:global(.game):global(.spottable):focus .client,
1549
+ :global(.spotlight-input-mouse) .button:global(.game):global(.spottable):focus .client {
1550
+ color: var(--semantic-color-on-surface-main-focused);
1551
+ }
1552
+ :global(.spotlight-input-key) .button:global(.game):global(.spottable):focus .icon,
1553
+ :global(.spotlight-input-mouse) .button:global(.game):global(.spottable):focus .icon {
1554
+ color: var(--semantic-color-on-surface-main-focused);
1555
+ }
1556
+ :global(.spotlight-input-key) .button:global(.game):global(.spottable):focus.bordered .bg,
1557
+ :global(.spotlight-input-mouse) .button:global(.game):global(.spottable):focus.bordered .bg {
1558
+ opacity: 1;
1559
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1560
+ background-color: var(--semantic-color-surface-default-focused);
1561
+ filter: none;
1562
+ }
1563
+ :global(.spotlight-input-key) .button:global(.game):global(.spottable):focus.bordered .client,
1564
+ :global(.spotlight-input-mouse) .button:global(.game):global(.spottable):focus.bordered .client {
1565
+ color: var(--semantic-color-on-surface-main-focused);
1566
+ }
1567
+ :global(.spotlight-input-key) .button:global(.game):global(.spottable):focus.transparent .bg,
1568
+ :global(.spotlight-input-mouse) .button:global(.game):global(.spottable):focus.transparent .bg {
1569
+ opacity: 1;
1570
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1571
+ background-color: var(--semantic-color-surface-default-focused);
1572
+ filter: none;
1573
+ }
1574
+ :global(.spotlight-input-key) .button:global(.game):global(.spottable):focus.transparent .client,
1575
+ :global(.spotlight-input-mouse) .button:global(.game):global(.spottable):focus.transparent .client {
1576
+ color: var(--semantic-color-on-surface-main-focused);
1577
+ }
1578
+ :global(.spotlight-input-key) .button:global(.game):global(.spottable):focus.transparent .icon,
1579
+ :global(.spotlight-input-mouse) .button:global(.game):global(.spottable):focus.transparent .icon {
1580
+ color: var(--semantic-color-on-surface-main-focused);
1581
+ }
1582
+ :global(.spotlight-input-key) .button:global(.game):global(.spottable):focus .client,
1583
+ :global(.spotlight-input-mouse) .button:global(.game):global(.spottable):focus .client {
1584
+ text-shadow: none;
1585
+ }
1586
+ :global(.spotlight-input-key) .button:global(.game):global(.spottable):focus.iconOnly .bg,
1587
+ :global(.spotlight-input-mouse) .button:global(.game):global(.spottable):focus.iconOnly .bg {
1588
+ background-color: '';
1589
+ }
1590
+ :global(.spotlight-input-key) .button:global(.game):global(.spottable):focus.focusExpand .bg,
1591
+ :global(.spotlight-input-mouse) .button:global(.game):global(.spottable):focus.focusExpand .bg {
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);
1597
+ }
1598
+ :global(.spotlight-input-touch) .button:global(.game):global(.spottable):active .bg {
1599
+ opacity: 1;
1600
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1601
+ background-color: var(--semantic-color-surface-default-focused);
1602
+ filter: none;
1603
+ }
1604
+ :global(.spotlight-input-touch) .button:global(.game):global(.spottable):active .client {
1605
+ color: var(--semantic-color-on-surface-main-focused);
1606
+ }
1607
+ :global(.spotlight-input-touch) .button:global(.game):global(.spottable):active .icon {
1608
+ color: var(--semantic-color-on-surface-main-focused);
1609
+ }
1610
+ :global(.spotlight-input-touch) .button:global(.game):global(.spottable):active.bordered .bg {
1611
+ opacity: 1;
1612
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1613
+ background-color: var(--semantic-color-surface-default-focused);
1614
+ filter: none;
1615
+ }
1616
+ :global(.spotlight-input-touch) .button:global(.game):global(.spottable):active.bordered .client {
1617
+ color: var(--semantic-color-on-surface-main-focused);
1618
+ }
1619
+ :global(.spotlight-input-touch) .button:global(.game):global(.spottable):active.transparent .bg {
1620
+ opacity: 1;
1621
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1622
+ background-color: var(--semantic-color-surface-default-focused);
1623
+ filter: none;
1624
+ }
1625
+ :global(.spotlight-input-touch) .button:global(.game):global(.spottable):active.transparent .client {
1626
+ color: var(--semantic-color-on-surface-main-focused);
1627
+ }
1628
+ :global(.spotlight-input-touch) .button:global(.game):global(.spottable):active.transparent .icon {
1629
+ color: var(--semantic-color-on-surface-main-focused);
1630
+ }
1631
+ :global(.spotlight-input-touch) .button:global(.game):global(.spottable):active .client {
1632
+ text-shadow: none;
1633
+ }
1634
+ :global(.spotlight-input-touch) .button:global(.game):global(.spottable):active.iconOnly .bg {
1635
+ background-color: '';
1636
+ }
1637
+ :global(.spotlight-input-touch) .button:global(.game):global(.spottable):active.focusExpand .bg {
1638
+ transform: scale(1.1);
1639
+ }
1640
+ :global(.spotlight-input-touch) .button:global(.game):global(.spottable):active.focusExpand.small .bg {
1641
+ transform: scale(1.1);
1642
+ }
1643
+ :global(.spotlight-input-key) .button:global(.game):not([disabled]):global(.spottable):focus,
1644
+ :global(.spotlight-input-mouse) .button:global(.game):not([disabled]):global(.spottable):focus {
1645
+ z-index: 1;
1646
+ }
1647
+ :global(.spotlight-input-key) .button:global(.game):not([disabled]):global(.spottable):focus.focusExpand.pressed .bg,
1648
+ :global(.spotlight-input-mouse) .button:global(.game):not([disabled]):global(.spottable):focus.focusExpand.pressed .bg,
1649
+ :global(.spotlight-input-key) .button:global(.game):not([disabled]):global(.spottable):focus.focusExpand:active .bg,
1650
+ :global(.spotlight-input-mouse) .button:global(.game):not([disabled]):global(.spottable):focus.focusExpand:active .bg {
1651
+ transform: scale(1.02);
1652
+ }
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);
1658
+ }
1659
+ :global(.spotlight-input-touch) .button:global(.game):not([disabled]):global(.spottable):active {
1660
+ z-index: 1;
1661
+ }
1662
+ :global(.spotlight-input-touch) .button:global(.game):not([disabled]):global(.spottable):active.focusExpand.pressed .bg,
1663
+ :global(.spotlight-input-touch) .button:global(.game):not([disabled]):global(.spottable):active.focusExpand:active .bg {
1664
+ transform: scale(1.02);
1665
+ }
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);
1669
+ }
1670
+ :global(.spotlight-input-key) :global(.noAnimation) .button:global(.game):global(.spottable):focus .bg,
1671
+ :global(.spotlight-input-mouse) :global(.noAnimation) .button:global(.game):global(.spottable):focus .bg {
1672
+ opacity: 1;
1673
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1674
+ background-color: var(--semantic-color-surface-default-focused);
1675
+ filter: none;
1676
+ box-shadow: none;
1677
+ }
1678
+ :global(.spotlight-input-key) :global(.noAnimation) .button:global(.game):global(.spottable):focus.bordered .bg,
1679
+ :global(.spotlight-input-mouse) :global(.noAnimation) .button:global(.game):global(.spottable):focus.bordered .bg {
1680
+ opacity: 1;
1681
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1682
+ background-color: var(--semantic-color-surface-default-focused);
1683
+ filter: none;
1684
+ box-shadow: none;
1685
+ }
1686
+ :global(.spotlight-input-key) :global(.noAnimation) .button:global(.game):global(.spottable):focus.transparent .bg,
1687
+ :global(.spotlight-input-mouse) :global(.noAnimation) .button:global(.game):global(.spottable):focus.transparent .bg {
1688
+ opacity: 1;
1689
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1690
+ background-color: var(--semantic-color-surface-default-focused);
1691
+ filter: none;
1692
+ box-shadow: none;
1693
+ }
1694
+ :global(.spotlight-input-key) :global(.noAnimation) .button:global(.game):global(.spottable):focus.focusExpand .bg,
1695
+ :global(.spotlight-input-mouse) :global(.noAnimation) .button:global(.game):global(.spottable):focus.focusExpand .bg {
1696
+ transform: none;
1697
+ }
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
+ :global(.spotlight-input-key) :global(.noAnimation) .button:global(.game):global(.spottable):focus.focusExpand.pressed .bg,
1703
+ :global(.spotlight-input-mouse) :global(.noAnimation) .button:global(.game):global(.spottable):focus.focusExpand.pressed .bg,
1704
+ :global(.spotlight-input-key) :global(.noAnimation) .button:global(.game):global(.spottable):focus.focusExpand:active .bg,
1705
+ :global(.spotlight-input-mouse) :global(.noAnimation) .button:global(.game):global(.spottable):focus.focusExpand:active .bg {
1706
+ transform: none;
1707
+ }
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
+ :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.game):global(.spottable):active .bg {
1715
+ opacity: 1;
1716
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1717
+ background-color: var(--semantic-color-surface-default-focused);
1718
+ filter: none;
1719
+ box-shadow: none;
1720
+ }
1721
+ :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.game):global(.spottable):active.bordered .bg {
1722
+ opacity: 1;
1723
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1724
+ background-color: var(--semantic-color-surface-default-focused);
1725
+ filter: none;
1726
+ box-shadow: none;
1727
+ }
1728
+ :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.game):global(.spottable):active.transparent .bg {
1729
+ opacity: 1;
1730
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1731
+ background-color: var(--semantic-color-surface-default-focused);
1732
+ filter: none;
1733
+ box-shadow: none;
1734
+ }
1735
+ :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.game):global(.spottable):active.focusExpand .bg {
1736
+ transform: none;
1737
+ }
1738
+ :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.game):global(.spottable):active.focusExpand.small .bg {
1739
+ transform: none;
1740
+ }
1741
+ :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.game):global(.spottable):active.focusExpand.pressed .bg,
1742
+ :global(.spotlight-input-touch) :global(.noAnimation) .button:global(.game):global(.spottable):active.focusExpand:active .bg {
1743
+ transform: none;
1744
+ }
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
+ .button:global(.game)[disabled] {
1750
+ opacity: 1;
1751
+ }
1752
+ .button:global(.game)[disabled] .client {
1753
+ opacity: 0.3;
1754
+ }
1755
+ .button:global(.game)[disabled].opaque .bg {
1756
+ opacity: 0.3;
1757
+ }
1758
+ .button:global(.game)[disabled].bordered .bg {
1759
+ background-color: color(from var(--semantic-color-surface-default) srgb r g b / 0.5);
1760
+ }
1761
+ .button:global(.game)[disabled].transparent.selected .bg {
1762
+ opacity: 0.3;
1763
+ }
1764
+ .button:global(.game)[disabled].bordered.selected .bg {
1765
+ background-color: color(from var(--semantic-color-surface-default-selected) srgb r g b / 0.5);
1766
+ filter: none;
1767
+ }
1768
+ :global(.spotlight-input-key) .button:global(.game)[disabled]:global(.spottable):focus .bg,
1769
+ :global(.spotlight-input-mouse) .button:global(.game)[disabled]:global(.spottable):focus .bg {
1770
+ background-color: var(--semantic-color-surface-default-disabled-focused);
1771
+ }
1772
+ :global(.spotlight-input-key) .button:global(.game)[disabled]:global(.spottable):focus.bordered .bg,
1773
+ :global(.spotlight-input-mouse) .button:global(.game)[disabled]:global(.spottable):focus.bordered .bg {
1774
+ border: 0.125rem solid var(--semantic-color-surface-default-disabled-focused);
1775
+ }
1776
+ :global(.spotlight-input-key) .button:global(.game)[disabled]:global(.spottable):focus .client,
1777
+ :global(.spotlight-input-mouse) .button:global(.game)[disabled]:global(.spottable):focus .client {
1778
+ opacity: 0.4;
1779
+ }
1780
+ :global(.spotlight-input-touch) .button:global(.game)[disabled]:global(.spottable):active .bg {
1781
+ background-color: var(--semantic-color-surface-default-disabled-focused);
1782
+ }
1783
+ :global(.spotlight-input-touch) .button:global(.game)[disabled]:global(.spottable):active.bordered .bg {
1784
+ border: 0.125rem solid var(--semantic-color-surface-default-disabled-focused);
1785
+ }
1786
+ :global(.spotlight-input-touch) .button:global(.game)[disabled]:global(.spottable):active .client {
1787
+ opacity: 0.4;
1788
+ }
1789
+ :global(.green) .button:global(.game) {
1790
+ --semantic-color-surface-default: #1F2C24;
1791
+ --semantic-color-surface-default-focused: #3ea07d;
1792
+ border-radius: 0;
1793
+ }
1794
+ :global(.green) .button:global(.game)::before {
1795
+ content: "";
1796
+ position: absolute;
1797
+ top: -0.375rem;
1798
+ right: -0.375rem;
1799
+ bottom: -0.375rem;
1800
+ left: -0.375rem;
1801
+ border-radius: 0;
1802
+ }
1803
+ :global(.green) .button:global(.game),
1804
+ :global(.enact-a11y-high-contrast) :global(.green) .button:global(.game) {
1805
+ color: var(--semantic-color-on-surface-main);
1806
+ }
1807
+ :global(.green) .button:global(.game) .bg {
1808
+ opacity: 0;
1809
+ background-color: var(--semantic-color-surface-default-focused);
1810
+ will-change: box-shadow, transform, filter;
1811
+ background-color: var(--semantic-color-surface-default);
1812
+ transition: transform 200ms ease-out;
1813
+ border-width: 0.125rem;
1814
+ border-style: solid;
1815
+ border-color: var(--semantic-color-stroke-button-outline);
1816
+ border-radius: 0;
1817
+ }
1818
+ :global(.green) .button:global(.game).bordered .bg {
1819
+ background-color: color(from var(--semantic-color-surface-default) srgb r g b / 0.5);
1820
+ border: 0.125rem solid var(--semantic-color-stroke-button-outline);
1821
+ }
1822
+ :global(.green) .button:global(.game).bordered .client {
1823
+ color: var(--semantic-color-on-surface-main);
1824
+ }
1825
+ :global(.green) .button:global(.game).opaque {
1826
+ color: var(--semantic-color-on-surface-main);
1827
+ }
1828
+ :global(.green) .button:global(.game).opaque .bg {
1829
+ opacity: 1;
1830
+ }
1831
+ :global(.green) .button:global(.game).opaque .icon {
1832
+ color: var(--semantic-color-on-surface-main);
1833
+ }
1834
+ :global(.green) .button:global(.game).transparent {
1835
+ color: var(--semantic-color-on-background-main);
1836
+ }
1837
+ :global(.green) .button:global(.game).transparent .bg {
1838
+ opacity: 0;
1839
+ }
1840
+ :global(.green) .button:global(.game).transparent.shadowed .client {
1841
+ text-shadow: 0.125rem 0.25rem 0.25rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1842
+ }
1843
+ :global(.green) .button:global(.game).transparent .icon {
1844
+ color: var(--semantic-color-on-background-main);
1845
+ }
1846
+ :global(.green) .button:global(.game).red .client::before {
1847
+ background-color: #ff6d78;
1848
+ }
1849
+ :global(.green) .button:global(.game).green .client::before {
1850
+ background-color: #93d371;
1851
+ }
1852
+ :global(.green) .button:global(.game).yellow .client::before {
1853
+ background-color: #ffc600;
1854
+ }
1855
+ :global(.green) .button:global(.game).blue .client::before {
1856
+ background-color: #0084ff;
1857
+ }
1858
+ :global(.green) .button:global(.game).small::before {
1859
+ content: "";
1860
+ position: absolute;
1861
+ top: -0.625rem;
1862
+ right: -0.625rem;
1863
+ bottom: -0.625rem;
1864
+ left: -0.625rem;
1865
+ border-radius: 0;
1866
+ }
1867
+ :global(.green) .button:global(.game).iconOnly .bg {
1868
+ border: 0.125rem;
1869
+ border-radius: var(--primitive-radius-12);
1870
+ }
1871
+ :global(.green) .button:global(.game).roundBorder .bg {
1872
+ border-radius: calc(var(--button-height) / 2);
1873
+ }
1874
+ :global(.green) .button:global(.game).selected .bg {
1875
+ background-color: var(--semantic-color-surface-default-selected);
1876
+ filter: none;
1877
+ }
1878
+ :global(.green) .button:global(.game).selected .client {
1879
+ color: var(--semantic-color-on-surface-main-selected);
1880
+ }
1881
+ :global(.green) .button:global(.game).selected .icon {
1882
+ color: var(--semantic-color-on-surface-main-selected);
1883
+ }
1884
+ :global(.green) .button:global(.game).selected.bordered .bg {
1885
+ background-color: color(from var(--semantic-color-surface-default-selected) srgb r g b / 0.5);
1886
+ filter: none;
1887
+ border: 0.125rem solid var(--semantic-color-stroke-main-selected);
1888
+ }
1889
+ :global(.green) .button:global(.game).selected.bordered .client {
1890
+ color: var(--semantic-color-on-surface-main-selected);
1891
+ }
1892
+ :global(.green) .button:global(.game).selected.opaque .bg {
1893
+ opacity: 1;
1894
+ }
1895
+ :global(.green) .button:global(.game).selected.transparent .bg {
1896
+ background-color: var(--semantic-color-surface-default-selected);
1897
+ filter: none;
1898
+ opacity: 1;
1899
+ }
1900
+ :global(.green) .button:global(.game).selected.transparent .client {
1901
+ color: var(--semantic-color-on-surface-main-selected);
1902
+ }
1903
+ :global(.green) .button:global(.game).selected.transparent .icon {
1904
+ color: var(--semantic-color-on-surface-main-selected);
1905
+ }
1906
+ :global(.spotlight-input-key) :global(.green) .button:global(.game):global(.spottable):focus .bg,
1907
+ :global(.spotlight-input-mouse) :global(.green) .button:global(.game):global(.spottable):focus .bg {
1908
+ opacity: 1;
1909
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1910
+ background-color: var(--semantic-color-surface-default-focused);
1911
+ filter: none;
1912
+ }
1913
+ :global(.spotlight-input-key) :global(.green) .button:global(.game):global(.spottable):focus .client,
1914
+ :global(.spotlight-input-mouse) :global(.green) .button:global(.game):global(.spottable):focus .client {
1915
+ color: var(--semantic-color-on-surface-main-focused);
1916
+ }
1917
+ :global(.spotlight-input-key) :global(.green) .button:global(.game):global(.spottable):focus .icon,
1918
+ :global(.spotlight-input-mouse) :global(.green) .button:global(.game):global(.spottable):focus .icon {
1919
+ color: var(--semantic-color-on-surface-main-focused);
1920
+ }
1921
+ :global(.spotlight-input-key) :global(.green) .button:global(.game):global(.spottable):focus.bordered .bg,
1922
+ :global(.spotlight-input-mouse) :global(.green) .button:global(.game):global(.spottable):focus.bordered .bg {
1923
+ opacity: 1;
1924
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1925
+ background-color: var(--semantic-color-surface-default-focused);
1926
+ filter: none;
1927
+ }
1928
+ :global(.spotlight-input-key) :global(.green) .button:global(.game):global(.spottable):focus.bordered .client,
1929
+ :global(.spotlight-input-mouse) :global(.green) .button:global(.game):global(.spottable):focus.bordered .client {
1930
+ color: var(--semantic-color-on-surface-main-focused);
1931
+ }
1932
+ :global(.spotlight-input-key) :global(.green) .button:global(.game):global(.spottable):focus.transparent .bg,
1933
+ :global(.spotlight-input-mouse) :global(.green) .button:global(.game):global(.spottable):focus.transparent .bg {
1934
+ opacity: 1;
1935
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1936
+ background-color: var(--semantic-color-surface-default-focused);
1937
+ filter: none;
1938
+ }
1939
+ :global(.spotlight-input-key) :global(.green) .button:global(.game):global(.spottable):focus.transparent .client,
1940
+ :global(.spotlight-input-mouse) :global(.green) .button:global(.game):global(.spottable):focus.transparent .client {
1941
+ color: var(--semantic-color-on-surface-main-focused);
1942
+ }
1943
+ :global(.spotlight-input-key) :global(.green) .button:global(.game):global(.spottable):focus.transparent .icon,
1944
+ :global(.spotlight-input-mouse) :global(.green) .button:global(.game):global(.spottable):focus.transparent .icon {
1945
+ color: var(--semantic-color-on-surface-main-focused);
1946
+ }
1947
+ :global(.spotlight-input-key) :global(.green) .button:global(.game):global(.spottable):focus .client,
1948
+ :global(.spotlight-input-mouse) :global(.green) .button:global(.game):global(.spottable):focus .client {
1949
+ text-shadow: none;
1950
+ }
1951
+ :global(.spotlight-input-key) :global(.green) .button:global(.game):global(.spottable):focus.iconOnly .bg,
1952
+ :global(.spotlight-input-mouse) :global(.green) .button:global(.game):global(.spottable):focus.iconOnly .bg {
1953
+ background-color: '';
1954
+ }
1955
+ :global(.spotlight-input-key) :global(.green) .button:global(.game):global(.spottable):focus.focusExpand .bg,
1956
+ :global(.spotlight-input-mouse) :global(.green) .button:global(.game):global(.spottable):focus.focusExpand .bg {
1957
+ 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);
1962
+ }
1963
+ :global(.spotlight-input-touch) :global(.green) .button:global(.game):global(.spottable):active .bg {
1964
+ opacity: 1;
1965
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1966
+ background-color: var(--semantic-color-surface-default-focused);
1967
+ filter: none;
1968
+ }
1969
+ :global(.spotlight-input-touch) :global(.green) .button:global(.game):global(.spottable):active .client {
1970
+ color: var(--semantic-color-on-surface-main-focused);
1971
+ }
1972
+ :global(.spotlight-input-touch) :global(.green) .button:global(.game):global(.spottable):active .icon {
1973
+ color: var(--semantic-color-on-surface-main-focused);
1974
+ }
1975
+ :global(.spotlight-input-touch) :global(.green) .button:global(.game):global(.spottable):active.bordered .bg {
1976
+ opacity: 1;
1977
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1978
+ background-color: var(--semantic-color-surface-default-focused);
1979
+ filter: none;
1980
+ }
1981
+ :global(.spotlight-input-touch) :global(.green) .button:global(.game):global(.spottable):active.bordered .client {
1982
+ color: var(--semantic-color-on-surface-main-focused);
1983
+ }
1984
+ :global(.spotlight-input-touch) :global(.green) .button:global(.game):global(.spottable):active.transparent .bg {
1985
+ opacity: 1;
1986
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1987
+ background-color: var(--semantic-color-surface-default-focused);
1988
+ filter: none;
1989
+ }
1990
+ :global(.spotlight-input-touch) :global(.green) .button:global(.game):global(.spottable):active.transparent .client {
1991
+ color: var(--semantic-color-on-surface-main-focused);
1992
+ }
1993
+ :global(.spotlight-input-touch) :global(.green) .button:global(.game):global(.spottable):active.transparent .icon {
1994
+ color: var(--semantic-color-on-surface-main-focused);
1995
+ }
1996
+ :global(.spotlight-input-touch) :global(.green) .button:global(.game):global(.spottable):active .client {
1997
+ text-shadow: none;
1998
+ }
1999
+ :global(.spotlight-input-touch) :global(.green) .button:global(.game):global(.spottable):active.iconOnly .bg {
2000
+ background-color: '';
2001
+ }
2002
+ :global(.spotlight-input-touch) :global(.green) .button:global(.game):global(.spottable):active.focusExpand .bg {
2003
+ 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);
2007
+ }
2008
+ :global(.spotlight-input-key) :global(.green) .button:global(.game):not([disabled]):global(.spottable):focus,
2009
+ :global(.spotlight-input-mouse) :global(.green) .button:global(.game):not([disabled]):global(.spottable):focus {
2010
+ z-index: 1;
2011
+ }
2012
+ :global(.spotlight-input-key) :global(.green) .button:global(.game):not([disabled]):global(.spottable):focus.focusExpand.pressed .bg,
2013
+ :global(.spotlight-input-mouse) :global(.green) .button:global(.game):not([disabled]):global(.spottable):focus.focusExpand.pressed .bg,
2014
+ :global(.spotlight-input-key) :global(.green) .button:global(.game):not([disabled]):global(.spottable):focus.focusExpand:active .bg,
2015
+ :global(.spotlight-input-mouse) :global(.green) .button:global(.game):not([disabled]):global(.spottable):focus.focusExpand:active .bg {
2016
+ transform: scale(1.02);
2017
+ }
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);
2023
+ }
2024
+ :global(.spotlight-input-touch) :global(.green) .button:global(.game):not([disabled]):global(.spottable):active {
2025
+ z-index: 1;
2026
+ }
2027
+ :global(.spotlight-input-touch) :global(.green) .button:global(.game):not([disabled]):global(.spottable):active.focusExpand.pressed .bg,
2028
+ :global(.spotlight-input-touch) :global(.green) .button:global(.game):not([disabled]):global(.spottable):active.focusExpand:active .bg {
2029
+ transform: scale(1.02);
2030
+ }
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);
2034
+ }
2035
+ :global(.spotlight-input-key) :global(.noAnimation) :global(.green) .button:global(.game):global(.spottable):focus .bg,
2036
+ :global(.spotlight-input-mouse) :global(.noAnimation) :global(.green) .button:global(.game):global(.spottable):focus .bg {
2037
+ opacity: 1;
2038
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
2039
+ background-color: var(--semantic-color-surface-default-focused);
2040
+ filter: none;
2041
+ box-shadow: none;
2042
+ }
2043
+ :global(.spotlight-input-key) :global(.noAnimation) :global(.green) .button:global(.game):global(.spottable):focus.bordered .bg,
2044
+ :global(.spotlight-input-mouse) :global(.noAnimation) :global(.green) .button:global(.game):global(.spottable):focus.bordered .bg {
2045
+ opacity: 1;
2046
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
2047
+ background-color: var(--semantic-color-surface-default-focused);
2048
+ filter: none;
2049
+ box-shadow: none;
2050
+ }
2051
+ :global(.spotlight-input-key) :global(.noAnimation) :global(.green) .button:global(.game):global(.spottable):focus.transparent .bg,
2052
+ :global(.spotlight-input-mouse) :global(.noAnimation) :global(.green) .button:global(.game):global(.spottable):focus.transparent .bg {
2053
+ opacity: 1;
2054
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
2055
+ background-color: var(--semantic-color-surface-default-focused);
2056
+ filter: none;
2057
+ box-shadow: none;
2058
+ }
2059
+ :global(.spotlight-input-key) :global(.noAnimation) :global(.green) .button:global(.game):global(.spottable):focus.focusExpand .bg,
2060
+ :global(.spotlight-input-mouse) :global(.noAnimation) :global(.green) .button:global(.game):global(.spottable):focus.focusExpand .bg {
2061
+ transform: none;
2062
+ }
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
+ :global(.spotlight-input-key) :global(.noAnimation) :global(.green) .button:global(.game):global(.spottable):focus.focusExpand.pressed .bg,
2068
+ :global(.spotlight-input-mouse) :global(.noAnimation) :global(.green) .button:global(.game):global(.spottable):focus.focusExpand.pressed .bg,
2069
+ :global(.spotlight-input-key) :global(.noAnimation) :global(.green) .button:global(.game):global(.spottable):focus.focusExpand:active .bg,
2070
+ :global(.spotlight-input-mouse) :global(.noAnimation) :global(.green) .button:global(.game):global(.spottable):focus.focusExpand:active .bg {
2071
+ transform: none;
2072
+ }
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
+ :global(.spotlight-input-touch) :global(.noAnimation) :global(.green) .button:global(.game):global(.spottable):active .bg {
2080
+ opacity: 1;
2081
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
2082
+ background-color: var(--semantic-color-surface-default-focused);
2083
+ filter: none;
2084
+ box-shadow: none;
2085
+ }
2086
+ :global(.spotlight-input-touch) :global(.noAnimation) :global(.green) .button:global(.game):global(.spottable):active.bordered .bg {
2087
+ opacity: 1;
2088
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
2089
+ background-color: var(--semantic-color-surface-default-focused);
2090
+ filter: none;
2091
+ box-shadow: none;
2092
+ }
2093
+ :global(.spotlight-input-touch) :global(.noAnimation) :global(.green) .button:global(.game):global(.spottable):active.transparent .bg {
2094
+ opacity: 1;
2095
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
2096
+ background-color: var(--semantic-color-surface-default-focused);
2097
+ filter: none;
2098
+ box-shadow: none;
2099
+ }
2100
+ :global(.spotlight-input-touch) :global(.noAnimation) :global(.green) .button:global(.game):global(.spottable):active.focusExpand .bg {
2101
+ transform: none;
2102
+ }
2103
+ :global(.spotlight-input-touch) :global(.noAnimation) :global(.green) .button:global(.game):global(.spottable):active.focusExpand.small .bg {
2104
+ transform: none;
2105
+ }
2106
+ :global(.spotlight-input-touch) :global(.noAnimation) :global(.green) .button:global(.game):global(.spottable):active.focusExpand.pressed .bg,
2107
+ :global(.spotlight-input-touch) :global(.noAnimation) :global(.green) .button:global(.game):global(.spottable):active.focusExpand:active .bg {
2108
+ transform: none;
2109
+ }
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
+ :global(.green) .button:global(.game)[disabled] {
2115
+ opacity: 1;
2116
+ }
2117
+ :global(.green) .button:global(.game)[disabled] .client {
2118
+ opacity: 0.3;
2119
+ }
2120
+ :global(.green) .button:global(.game)[disabled].opaque .bg {
2121
+ opacity: 0.3;
2122
+ }
2123
+ :global(.green) .button:global(.game)[disabled].bordered .bg {
2124
+ background-color: color(from var(--semantic-color-surface-default) srgb r g b / 0.5);
2125
+ }
2126
+ :global(.green) .button:global(.game)[disabled].transparent.selected .bg {
2127
+ opacity: 0.3;
2128
+ }
2129
+ :global(.green) .button:global(.game)[disabled].bordered.selected .bg {
2130
+ background-color: color(from var(--semantic-color-surface-default-selected) srgb r g b / 0.5);
2131
+ filter: none;
2132
+ }
2133
+ :global(.spotlight-input-key) :global(.green) .button:global(.game)[disabled]:global(.spottable):focus .bg,
2134
+ :global(.spotlight-input-mouse) :global(.green) .button:global(.game)[disabled]:global(.spottable):focus .bg {
2135
+ background-color: var(--semantic-color-surface-default-disabled-focused);
2136
+ }
2137
+ :global(.spotlight-input-key) :global(.green) .button:global(.game)[disabled]:global(.spottable):focus.bordered .bg,
2138
+ :global(.spotlight-input-mouse) :global(.green) .button:global(.game)[disabled]:global(.spottable):focus.bordered .bg {
2139
+ border: 0.125rem solid var(--semantic-color-surface-default-disabled-focused);
2140
+ }
2141
+ :global(.spotlight-input-key) :global(.green) .button:global(.game)[disabled]:global(.spottable):focus .client,
2142
+ :global(.spotlight-input-mouse) :global(.green) .button:global(.game)[disabled]:global(.spottable):focus .client {
2143
+ opacity: 0.4;
2144
+ }
2145
+ :global(.spotlight-input-touch) :global(.green) .button:global(.game)[disabled]:global(.spottable):active .bg {
2146
+ background-color: var(--semantic-color-surface-default-disabled-focused);
2147
+ }
2148
+ :global(.spotlight-input-touch) :global(.green) .button:global(.game)[disabled]:global(.spottable):active.bordered .bg {
2149
+ border: 0.125rem solid var(--semantic-color-surface-default-disabled-focused);
2150
+ }
2151
+ :global(.spotlight-input-touch) :global(.green) .button:global(.game)[disabled]:global(.spottable):active .client {
2152
+ opacity: 0.4;
2153
+ }
2154
+ :global(.orange) .button:global(.game) {
2155
+ --semantic-color-surface-default: #422923;
2156
+ --semantic-color-surface-default-focused: #b85f23;
2157
+ border-radius: 0;
2158
+ }
2159
+ :global(.orange) .button:global(.game)::before {
2160
+ content: "";
2161
+ position: absolute;
2162
+ top: -0.375rem;
2163
+ right: -0.375rem;
2164
+ bottom: -0.375rem;
2165
+ left: -0.375rem;
2166
+ border-radius: 0;
2167
+ }
2168
+ :global(.orange) .button:global(.game),
2169
+ :global(.enact-a11y-high-contrast) :global(.orange) .button:global(.game) {
2170
+ color: var(--semantic-color-on-surface-main);
2171
+ }
2172
+ :global(.orange) .button:global(.game) .bg {
2173
+ opacity: 0;
2174
+ background-color: var(--semantic-color-surface-default-focused);
2175
+ will-change: box-shadow, transform, filter;
2176
+ background-color: var(--semantic-color-surface-default);
2177
+ transition: transform 200ms ease-out;
2178
+ border-width: 0.125rem;
2179
+ border-style: solid;
2180
+ border-color: var(--semantic-color-stroke-button-outline);
2181
+ border-radius: 0;
2182
+ }
2183
+ :global(.orange) .button:global(.game).bordered .bg {
2184
+ background-color: color(from var(--semantic-color-surface-default) srgb r g b / 0.5);
2185
+ border: 0.125rem solid var(--semantic-color-stroke-button-outline);
2186
+ }
2187
+ :global(.orange) .button:global(.game).bordered .client {
2188
+ color: var(--semantic-color-on-surface-main);
2189
+ }
2190
+ :global(.orange) .button:global(.game).opaque {
2191
+ color: var(--semantic-color-on-surface-main);
2192
+ }
2193
+ :global(.orange) .button:global(.game).opaque .bg {
2194
+ opacity: 1;
2195
+ }
2196
+ :global(.orange) .button:global(.game).opaque .icon {
2197
+ color: var(--semantic-color-on-surface-main);
2198
+ }
2199
+ :global(.orange) .button:global(.game).transparent {
2200
+ color: var(--semantic-color-on-background-main);
2201
+ }
2202
+ :global(.orange) .button:global(.game).transparent .bg {
2203
+ opacity: 0;
2204
+ }
2205
+ :global(.orange) .button:global(.game).transparent.shadowed .client {
2206
+ text-shadow: 0.125rem 0.25rem 0.25rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
2207
+ }
2208
+ :global(.orange) .button:global(.game).transparent .icon {
2209
+ color: var(--semantic-color-on-background-main);
2210
+ }
2211
+ :global(.orange) .button:global(.game).red .client::before {
2212
+ background-color: #ff6d78;
2213
+ }
2214
+ :global(.orange) .button:global(.game).green .client::before {
2215
+ background-color: #93d371;
2216
+ }
2217
+ :global(.orange) .button:global(.game).yellow .client::before {
2218
+ background-color: #ffc600;
2219
+ }
2220
+ :global(.orange) .button:global(.game).blue .client::before {
2221
+ background-color: #0084ff;
2222
+ }
2223
+ :global(.orange) .button:global(.game).small::before {
2224
+ content: "";
2225
+ position: absolute;
2226
+ top: -0.625rem;
2227
+ right: -0.625rem;
2228
+ bottom: -0.625rem;
2229
+ left: -0.625rem;
2230
+ border-radius: 0;
2231
+ }
2232
+ :global(.orange) .button:global(.game).iconOnly .bg {
2233
+ border: 0.125rem;
2234
+ border-radius: var(--primitive-radius-12);
2235
+ }
2236
+ :global(.orange) .button:global(.game).roundBorder .bg {
2237
+ border-radius: calc(var(--button-height) / 2);
2238
+ }
2239
+ :global(.orange) .button:global(.game).selected .bg {
2240
+ background-color: var(--semantic-color-surface-default-selected);
2241
+ filter: none;
2242
+ }
2243
+ :global(.orange) .button:global(.game).selected .client {
2244
+ color: var(--semantic-color-on-surface-main-selected);
2245
+ }
2246
+ :global(.orange) .button:global(.game).selected .icon {
2247
+ color: var(--semantic-color-on-surface-main-selected);
2248
+ }
2249
+ :global(.orange) .button:global(.game).selected.bordered .bg {
2250
+ background-color: color(from var(--semantic-color-surface-default-selected) srgb r g b / 0.5);
2251
+ filter: none;
2252
+ border: 0.125rem solid var(--semantic-color-stroke-main-selected);
2253
+ }
2254
+ :global(.orange) .button:global(.game).selected.bordered .client {
2255
+ color: var(--semantic-color-on-surface-main-selected);
2256
+ }
2257
+ :global(.orange) .button:global(.game).selected.opaque .bg {
2258
+ opacity: 1;
2259
+ }
2260
+ :global(.orange) .button:global(.game).selected.transparent .bg {
2261
+ background-color: var(--semantic-color-surface-default-selected);
2262
+ filter: none;
2263
+ opacity: 1;
2264
+ }
2265
+ :global(.orange) .button:global(.game).selected.transparent .client {
2266
+ color: var(--semantic-color-on-surface-main-selected);
2267
+ }
2268
+ :global(.orange) .button:global(.game).selected.transparent .icon {
2269
+ color: var(--semantic-color-on-surface-main-selected);
2270
+ }
2271
+ :global(.spotlight-input-key) :global(.orange) .button:global(.game):global(.spottable):focus .bg,
2272
+ :global(.spotlight-input-mouse) :global(.orange) .button:global(.game):global(.spottable):focus .bg {
2273
+ opacity: 1;
2274
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
2275
+ background-color: var(--semantic-color-surface-default-focused);
2276
+ filter: none;
2277
+ }
2278
+ :global(.spotlight-input-key) :global(.orange) .button:global(.game):global(.spottable):focus .client,
2279
+ :global(.spotlight-input-mouse) :global(.orange) .button:global(.game):global(.spottable):focus .client {
2280
+ color: var(--semantic-color-on-surface-main-focused);
2281
+ }
2282
+ :global(.spotlight-input-key) :global(.orange) .button:global(.game):global(.spottable):focus .icon,
2283
+ :global(.spotlight-input-mouse) :global(.orange) .button:global(.game):global(.spottable):focus .icon {
2284
+ color: var(--semantic-color-on-surface-main-focused);
2285
+ }
2286
+ :global(.spotlight-input-key) :global(.orange) .button:global(.game):global(.spottable):focus.bordered .bg,
2287
+ :global(.spotlight-input-mouse) :global(.orange) .button:global(.game):global(.spottable):focus.bordered .bg {
2288
+ opacity: 1;
2289
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
2290
+ background-color: var(--semantic-color-surface-default-focused);
2291
+ filter: none;
2292
+ }
2293
+ :global(.spotlight-input-key) :global(.orange) .button:global(.game):global(.spottable):focus.bordered .client,
2294
+ :global(.spotlight-input-mouse) :global(.orange) .button:global(.game):global(.spottable):focus.bordered .client {
2295
+ color: var(--semantic-color-on-surface-main-focused);
2296
+ }
2297
+ :global(.spotlight-input-key) :global(.orange) .button:global(.game):global(.spottable):focus.transparent .bg,
2298
+ :global(.spotlight-input-mouse) :global(.orange) .button:global(.game):global(.spottable):focus.transparent .bg {
2299
+ opacity: 1;
2300
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
2301
+ background-color: var(--semantic-color-surface-default-focused);
2302
+ filter: none;
2303
+ }
2304
+ :global(.spotlight-input-key) :global(.orange) .button:global(.game):global(.spottable):focus.transparent .client,
2305
+ :global(.spotlight-input-mouse) :global(.orange) .button:global(.game):global(.spottable):focus.transparent .client {
2306
+ color: var(--semantic-color-on-surface-main-focused);
2307
+ }
2308
+ :global(.spotlight-input-key) :global(.orange) .button:global(.game):global(.spottable):focus.transparent .icon,
2309
+ :global(.spotlight-input-mouse) :global(.orange) .button:global(.game):global(.spottable):focus.transparent .icon {
2310
+ color: var(--semantic-color-on-surface-main-focused);
2311
+ }
2312
+ :global(.spotlight-input-key) :global(.orange) .button:global(.game):global(.spottable):focus .client,
2313
+ :global(.spotlight-input-mouse) :global(.orange) .button:global(.game):global(.spottable):focus .client {
2314
+ text-shadow: none;
2315
+ }
2316
+ :global(.spotlight-input-key) :global(.orange) .button:global(.game):global(.spottable):focus.iconOnly .bg,
2317
+ :global(.spotlight-input-mouse) :global(.orange) .button:global(.game):global(.spottable):focus.iconOnly .bg {
2318
+ background-color: '';
2319
+ }
2320
+ :global(.spotlight-input-key) :global(.orange) .button:global(.game):global(.spottable):focus.focusExpand .bg,
2321
+ :global(.spotlight-input-mouse) :global(.orange) .button:global(.game):global(.spottable):focus.focusExpand .bg {
2322
+ 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);
2327
+ }
2328
+ :global(.spotlight-input-touch) :global(.orange) .button:global(.game):global(.spottable):active .bg {
2329
+ opacity: 1;
2330
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
2331
+ background-color: var(--semantic-color-surface-default-focused);
2332
+ filter: none;
2333
+ }
2334
+ :global(.spotlight-input-touch) :global(.orange) .button:global(.game):global(.spottable):active .client {
2335
+ color: var(--semantic-color-on-surface-main-focused);
2336
+ }
2337
+ :global(.spotlight-input-touch) :global(.orange) .button:global(.game):global(.spottable):active .icon {
2338
+ color: var(--semantic-color-on-surface-main-focused);
2339
+ }
2340
+ :global(.spotlight-input-touch) :global(.orange) .button:global(.game):global(.spottable):active.bordered .bg {
2341
+ opacity: 1;
2342
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
2343
+ background-color: var(--semantic-color-surface-default-focused);
2344
+ filter: none;
2345
+ }
2346
+ :global(.spotlight-input-touch) :global(.orange) .button:global(.game):global(.spottable):active.bordered .client {
2347
+ color: var(--semantic-color-on-surface-main-focused);
2348
+ }
2349
+ :global(.spotlight-input-touch) :global(.orange) .button:global(.game):global(.spottable):active.transparent .bg {
2350
+ opacity: 1;
2351
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
2352
+ background-color: var(--semantic-color-surface-default-focused);
2353
+ filter: none;
2354
+ }
2355
+ :global(.spotlight-input-touch) :global(.orange) .button:global(.game):global(.spottable):active.transparent .client {
2356
+ color: var(--semantic-color-on-surface-main-focused);
2357
+ }
2358
+ :global(.spotlight-input-touch) :global(.orange) .button:global(.game):global(.spottable):active.transparent .icon {
2359
+ color: var(--semantic-color-on-surface-main-focused);
2360
+ }
2361
+ :global(.spotlight-input-touch) :global(.orange) .button:global(.game):global(.spottable):active .client {
2362
+ text-shadow: none;
2363
+ }
2364
+ :global(.spotlight-input-touch) :global(.orange) .button:global(.game):global(.spottable):active.iconOnly .bg {
2365
+ background-color: '';
2366
+ }
2367
+ :global(.spotlight-input-touch) :global(.orange) .button:global(.game):global(.spottable):active.focusExpand .bg {
2368
+ 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);
2372
+ }
2373
+ :global(.spotlight-input-key) :global(.orange) .button:global(.game):not([disabled]):global(.spottable):focus,
2374
+ :global(.spotlight-input-mouse) :global(.orange) .button:global(.game):not([disabled]):global(.spottable):focus {
2375
+ z-index: 1;
2376
+ }
2377
+ :global(.spotlight-input-key) :global(.orange) .button:global(.game):not([disabled]):global(.spottable):focus.focusExpand.pressed .bg,
2378
+ :global(.spotlight-input-mouse) :global(.orange) .button:global(.game):not([disabled]):global(.spottable):focus.focusExpand.pressed .bg,
2379
+ :global(.spotlight-input-key) :global(.orange) .button:global(.game):not([disabled]):global(.spottable):focus.focusExpand:active .bg,
2380
+ :global(.spotlight-input-mouse) :global(.orange) .button:global(.game):not([disabled]):global(.spottable):focus.focusExpand:active .bg {
2381
+ transform: scale(1.02);
2382
+ }
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);
2388
+ }
2389
+ :global(.spotlight-input-touch) :global(.orange) .button:global(.game):not([disabled]):global(.spottable):active {
2390
+ z-index: 1;
2391
+ }
2392
+ :global(.spotlight-input-touch) :global(.orange) .button:global(.game):not([disabled]):global(.spottable):active.focusExpand.pressed .bg,
2393
+ :global(.spotlight-input-touch) :global(.orange) .button:global(.game):not([disabled]):global(.spottable):active.focusExpand:active .bg {
2394
+ transform: scale(1.02);
2395
+ }
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);
2399
+ }
2400
+ :global(.spotlight-input-key) :global(.noAnimation) :global(.orange) .button:global(.game):global(.spottable):focus .bg,
2401
+ :global(.spotlight-input-mouse) :global(.noAnimation) :global(.orange) .button:global(.game):global(.spottable):focus .bg {
2402
+ opacity: 1;
2403
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
2404
+ background-color: var(--semantic-color-surface-default-focused);
2405
+ filter: none;
2406
+ box-shadow: none;
2407
+ }
2408
+ :global(.spotlight-input-key) :global(.noAnimation) :global(.orange) .button:global(.game):global(.spottable):focus.bordered .bg,
2409
+ :global(.spotlight-input-mouse) :global(.noAnimation) :global(.orange) .button:global(.game):global(.spottable):focus.bordered .bg {
2410
+ opacity: 1;
2411
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
2412
+ background-color: var(--semantic-color-surface-default-focused);
2413
+ filter: none;
2414
+ box-shadow: none;
2415
+ }
2416
+ :global(.spotlight-input-key) :global(.noAnimation) :global(.orange) .button:global(.game):global(.spottable):focus.transparent .bg,
2417
+ :global(.spotlight-input-mouse) :global(.noAnimation) :global(.orange) .button:global(.game):global(.spottable):focus.transparent .bg {
2418
+ opacity: 1;
2419
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
2420
+ background-color: var(--semantic-color-surface-default-focused);
2421
+ filter: none;
2422
+ box-shadow: none;
2423
+ }
2424
+ :global(.spotlight-input-key) :global(.noAnimation) :global(.orange) .button:global(.game):global(.spottable):focus.focusExpand .bg,
2425
+ :global(.spotlight-input-mouse) :global(.noAnimation) :global(.orange) .button:global(.game):global(.spottable):focus.focusExpand .bg {
2426
+ transform: none;
2427
+ }
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
+ :global(.spotlight-input-key) :global(.noAnimation) :global(.orange) .button:global(.game):global(.spottable):focus.focusExpand.pressed .bg,
2433
+ :global(.spotlight-input-mouse) :global(.noAnimation) :global(.orange) .button:global(.game):global(.spottable):focus.focusExpand.pressed .bg,
2434
+ :global(.spotlight-input-key) :global(.noAnimation) :global(.orange) .button:global(.game):global(.spottable):focus.focusExpand:active .bg,
2435
+ :global(.spotlight-input-mouse) :global(.noAnimation) :global(.orange) .button:global(.game):global(.spottable):focus.focusExpand:active .bg {
2436
+ transform: none;
2437
+ }
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
+ :global(.spotlight-input-touch) :global(.noAnimation) :global(.orange) .button:global(.game):global(.spottable):active .bg {
2445
+ opacity: 1;
2446
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
2447
+ background-color: var(--semantic-color-surface-default-focused);
2448
+ filter: none;
2449
+ box-shadow: none;
2450
+ }
2451
+ :global(.spotlight-input-touch) :global(.noAnimation) :global(.orange) .button:global(.game):global(.spottable):active.bordered .bg {
2452
+ opacity: 1;
2453
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
2454
+ background-color: var(--semantic-color-surface-default-focused);
2455
+ filter: none;
2456
+ box-shadow: none;
2457
+ }
2458
+ :global(.spotlight-input-touch) :global(.noAnimation) :global(.orange) .button:global(.game):global(.spottable):active.transparent .bg {
2459
+ opacity: 1;
2460
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
2461
+ background-color: var(--semantic-color-surface-default-focused);
2462
+ filter: none;
2463
+ box-shadow: none;
2464
+ }
2465
+ :global(.spotlight-input-touch) :global(.noAnimation) :global(.orange) .button:global(.game):global(.spottable):active.focusExpand .bg {
2466
+ transform: none;
2467
+ }
2468
+ :global(.spotlight-input-touch) :global(.noAnimation) :global(.orange) .button:global(.game):global(.spottable):active.focusExpand.small .bg {
2469
+ transform: none;
2470
+ }
2471
+ :global(.spotlight-input-touch) :global(.noAnimation) :global(.orange) .button:global(.game):global(.spottable):active.focusExpand.pressed .bg,
2472
+ :global(.spotlight-input-touch) :global(.noAnimation) :global(.orange) .button:global(.game):global(.spottable):active.focusExpand:active .bg {
2473
+ transform: none;
2474
+ }
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
+ :global(.orange) .button:global(.game)[disabled] {
2480
+ opacity: 1;
2481
+ }
2482
+ :global(.orange) .button:global(.game)[disabled] .client {
2483
+ opacity: 0.3;
2484
+ }
2485
+ :global(.orange) .button:global(.game)[disabled].opaque .bg {
2486
+ opacity: 0.3;
2487
+ }
2488
+ :global(.orange) .button:global(.game)[disabled].bordered .bg {
2489
+ background-color: color(from var(--semantic-color-surface-default) srgb r g b / 0.5);
2490
+ }
2491
+ :global(.orange) .button:global(.game)[disabled].transparent.selected .bg {
2492
+ opacity: 0.3;
2493
+ }
2494
+ :global(.orange) .button:global(.game)[disabled].bordered.selected .bg {
2495
+ background-color: color(from var(--semantic-color-surface-default-selected) srgb r g b / 0.5);
2496
+ filter: none;
2497
+ }
2498
+ :global(.spotlight-input-key) :global(.orange) .button:global(.game)[disabled]:global(.spottable):focus .bg,
2499
+ :global(.spotlight-input-mouse) :global(.orange) .button:global(.game)[disabled]:global(.spottable):focus .bg {
2500
+ background-color: var(--semantic-color-surface-default-disabled-focused);
2501
+ }
2502
+ :global(.spotlight-input-key) :global(.orange) .button:global(.game)[disabled]:global(.spottable):focus.bordered .bg,
2503
+ :global(.spotlight-input-mouse) :global(.orange) .button:global(.game)[disabled]:global(.spottable):focus.bordered .bg {
2504
+ border: 0.125rem solid var(--semantic-color-surface-default-disabled-focused);
2505
+ }
2506
+ :global(.spotlight-input-key) :global(.orange) .button:global(.game)[disabled]:global(.spottable):focus .client,
2507
+ :global(.spotlight-input-mouse) :global(.orange) .button:global(.game)[disabled]:global(.spottable):focus .client {
2508
+ opacity: 0.4;
2509
+ }
2510
+ :global(.spotlight-input-touch) :global(.orange) .button:global(.game)[disabled]:global(.spottable):active .bg {
2511
+ background-color: var(--semantic-color-surface-default-disabled-focused);
2512
+ }
2513
+ :global(.spotlight-input-touch) :global(.orange) .button:global(.game)[disabled]:global(.spottable):active.bordered .bg {
2514
+ border: 0.125rem solid var(--semantic-color-surface-default-disabled-focused);
2515
+ }
2516
+ :global(.spotlight-input-touch) :global(.orange) .button:global(.game)[disabled]:global(.spottable):active .client {
2517
+ opacity: 0.4;
2518
+ }