@enact/limestone 1.9.3 → 1.10.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/ci-reusable.yml +2 -2
- package/ActionGuide/ActionGuide.module.css +4 -0
- package/Alert/Alert.d.ts +9 -0
- package/Alert/Alert.js +35 -4
- package/Alert/Alert.module.css +12 -1
- package/Alert/tests/Alert-specs.js +91 -0
- package/BodyText/BodyText.module.css +21 -0
- package/Button/Button.module.css +72 -40
- package/Button/tests/Button-specs.js +26 -0
- package/CHANGELOG.md +74 -0
- package/Card/Card.d.ts +4 -4
- package/Card/Card.js +10 -8
- package/Card/Card.module.css +31 -7
- package/Card/tests/Card-specs.js +39 -5
- package/Checkbox/Checkbox.module.css +4 -0
- package/CheckboxItem/CheckboxItem.js +6 -4
- package/Chips/Chip.js +12 -6
- package/Chips/Chip.module.css +3 -0
- package/Chips/Chips.js +12 -6
- package/Chips/tests/Chip-specs.js +25 -5
- package/Chips/tests/Chips-specs.js +12 -2
- package/ColorPicker/ColorPicker.js +27 -25
- package/ContextualPopupDecorator/ContextualPopupDecorator.js +32 -22
- package/DayPicker/DaySelectorDecorator.js +12 -7
- package/Dropdown/Dropdown.module.css +4 -0
- package/Dropdown/DropdownList.js +74 -53
- package/FlexiblePopupPanels/useNavButtonFocus.js +7 -10
- package/Heading/Heading.d.ts +1 -1
- package/Heading/Heading.js +2 -2
- package/Heading/Heading.module.css +16 -0
- package/Icon/Icon.d.ts +1 -0
- package/Icon/Icon.js +1 -0
- package/Icon/Icon.module.css +12 -0
- package/Icon/IconList.js +2 -0
- package/IconItem/IconItem.module.css +19 -3
- package/IconItem/tests/IconItem-specs.js +30 -1
- package/Image/Image.js +6 -4
- package/ImageItem/ImageItem.module.css +17 -0
- package/Input/Input.js +12 -1
- package/Input/Input.module.css +25 -9
- package/Input/InputField.js +75 -24
- package/Input/InputField.module.css +280 -45
- package/Input/InputFieldDecoratorIcon.js +1 -0
- package/Input/InputFieldSpotlightDecorator.js +53 -8
- package/Input/index.d.ts +105 -93
- package/Input/tests/Input-specs.js +26 -0
- package/Input/tests/InputField-specs.js +149 -3
- package/Input/tests/InputPopup-specs.js +1 -1
- package/Item/Item.module.css +2 -1
- package/KeyGuide/KeyGuide.js +29 -27
- package/KeyGuide/KeyGuide.module.css +10 -0
- package/MediaOverlay/MediaOverlay.module.css +16 -4
- package/MediaOverlay/tests/MediaOverlay-specs.js +29 -0
- package/MediaPlayer/MediaControls.module.css +3 -0
- package/MediaPlayer/Times.module.css +4 -0
- package/MediaPlayer/tests/util-specs.js +4 -1
- package/PageViews/PageViews.js +134 -69
- package/PageViews/PageViews.module.css +7 -0
- package/PageViews/PageViewsRouter.js +91 -42
- package/PageViews/tests/PageViews-specs.js +87 -0
- package/Panels/Header.js +6 -4
- package/Panels/Header.module.css +37 -31
- package/Popup/Popup.js +5 -4
- package/PopupTabLayout/PopupTabLayout.js +11 -9
- package/PopupTabLayout/PopupTabLayout.module.css +18 -0
- package/RadioItem/RadioItem.js +7 -5
- package/RadioItem/RadioItem.module.css +5 -0
- package/Scroller/EditableWrapper.js +19 -15
- package/Scroller/Scroller.js +11 -10
- package/Scroller/Scroller.module.css +10 -0
- package/Scroller/tests/Scroller-specs.js +91 -2
- package/Scroller/useThemeScroller.js +6 -3
- package/Slider/Slider.d.ts +4 -0
- package/Slider/Slider.js +40 -16
- package/Slider/Slider.module.css +150 -3
- package/Slider/SliderBehaviorDecorator.js +16 -14
- package/Slider/tests/Slider-specs.js +51 -0
- package/Slider/utils.js +23 -7
- package/Spinner/Spinner.js +10 -8
- package/Steps/Steps.module.css +3 -0
- package/Switch/Switch.module.css +15 -1
- package/TabLayout/RefocusDecorator.js +14 -12
- package/TabLayout/TabGroup.module.css +1 -1
- package/TabLayout/tests/TabGroup-specs.js +1 -1
- package/ThemeDecorator/AccessibilityDecorator.js +12 -11
- package/ThemeDecorator/I18nFontDecorator.js +6 -4
- package/ThemeDecorator/ThemeDecorator.d.ts +7 -0
- package/ThemeDecorator/ThemeDecorator.js +24 -9
- package/TimePicker/TimePicker.module.css +3 -0
- package/TimePicker/TimePickerBase.js +5 -3
- package/TooltipDecorator/Tooltip.module.css +4 -0
- package/TooltipDecorator/TooltipDecorator.js +12 -7
- package/TooltipDecorator/tests/useTooltip-specs.js +5 -2
- package/VideoPlayer/Feedback.module.css +3 -0
- package/VideoPlayer/FeedbackTooltip.module.css +7 -0
- package/VideoPlayer/MediaTitle.module.css +8 -0
- package/VideoPlayer/VideoPlayer.js +25 -24
- package/VirtualList/VirtualList.js +20 -18
- package/VirtualList/useSpotlight.js +1 -1
- package/fonts/Limestone_Icons.ttf +0 -0
- package/internal/AsyncRenderChildren/AsyncRenderChildren.js +9 -5
- package/internal/AsyncRenderChildren/tests/AsyncRenderChildren-specs.js +4 -1
- package/internal/DateTime/DateTime.module.css +3 -0
- package/internal/DateTime/DateTimeDecorator.js +5 -4
- package/internal/Panels/PanelsRouter.js +35 -29
- package/internal/Panels/useAutoFocus.js +10 -6
- package/internal/Panels/useFocusOnTransition.js +4 -3
- package/internal/Picker/Picker.js +7 -5
- package/internal/Picker/Picker.module.css +22 -0
- package/internal/Picker/SpottablePicker.js +15 -13
- package/internal/SharedStateDecorator/SharedStateDecorator.js +6 -4
- package/package.json +15 -12
- package/styles/colors.less +1 -0
- package/styles/variables.less +118 -26
- package/useScroll/HoverToScroll.js +15 -12
- package/useScroll/Scrollbar.js +14 -10
- package/useScroll/ScrollbarPlaceholder.js +4 -1
- package/useScroll/ScrollbarTrack.js +7 -5
- package/useScroll/useEvent.js +7 -2
- package/useScroll/useScroll.js +10 -2
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
.input
|
|
1
|
+
.input,
|
|
2
|
+
.marqueeText {
|
|
2
3
|
font-weight: var(--primitive-font-weight-regular);
|
|
3
4
|
font-size: var(--primitive-font-size-60);
|
|
4
5
|
font-style: normal;
|
|
@@ -14,67 +15,87 @@
|
|
|
14
15
|
text-indent: 0.2em;
|
|
15
16
|
max-width: 100%;
|
|
16
17
|
}
|
|
17
|
-
:global(.enact-locale-non-latin) .input
|
|
18
|
+
:global(.enact-locale-non-latin) .input,
|
|
19
|
+
:global(.enact-locale-non-latin) .marqueeText {
|
|
18
20
|
font-family: "Limestone";
|
|
19
21
|
}
|
|
20
|
-
:global(.enact-locale-non-latin) .input
|
|
22
|
+
:global(.enact-locale-non-latin) .input,
|
|
23
|
+
:global(.enact-locale-non-latin) .marqueeText {
|
|
21
24
|
font-family: "Limestone";
|
|
22
25
|
font-weight: var(--primitive-font-weight-light);
|
|
23
26
|
font-size: var(--primitive-font-size-54);
|
|
24
27
|
font-style: normal;
|
|
25
28
|
}
|
|
26
|
-
:global(.enact-locale-km) .input
|
|
29
|
+
:global(.enact-locale-km) .input,
|
|
30
|
+
:global(.enact-locale-km) .marqueeText {
|
|
27
31
|
line-height: 1.7em;
|
|
28
32
|
}
|
|
29
|
-
:global(.enact-locale-si) .input
|
|
33
|
+
:global(.enact-locale-si) .input,
|
|
34
|
+
:global(.enact-locale-si) .marqueeText {
|
|
30
35
|
line-height: 1.7em;
|
|
31
36
|
}
|
|
32
|
-
:global(.enact-locale-th) .input
|
|
37
|
+
:global(.enact-locale-th) .input,
|
|
38
|
+
:global(.enact-locale-th) .marqueeText {
|
|
33
39
|
line-height: 1.7em;
|
|
34
40
|
}
|
|
35
|
-
:global(.enact-locale-vi) .input
|
|
41
|
+
:global(.enact-locale-vi) .input,
|
|
42
|
+
:global(.enact-locale-vi) .marqueeText {
|
|
36
43
|
line-height: 1.7em;
|
|
37
44
|
}
|
|
38
|
-
.input a:link
|
|
45
|
+
.input a:link,
|
|
46
|
+
.marqueeText a:link {
|
|
39
47
|
color: inherit;
|
|
40
48
|
text-decoration: none;
|
|
41
49
|
}
|
|
42
|
-
.input a:visited
|
|
50
|
+
.input a:visited,
|
|
51
|
+
.marqueeText a:visited {
|
|
43
52
|
color: inherit;
|
|
44
53
|
text-decoration: none;
|
|
45
54
|
}
|
|
46
|
-
.input a:hover
|
|
55
|
+
.input a:hover,
|
|
56
|
+
.marqueeText a:hover {
|
|
47
57
|
color: inherit;
|
|
48
58
|
text-decoration: none;
|
|
49
59
|
}
|
|
50
|
-
.input a:active
|
|
60
|
+
.input a:active,
|
|
61
|
+
.marqueeText a:active {
|
|
51
62
|
color: inherit;
|
|
52
63
|
text-decoration: none;
|
|
53
64
|
}
|
|
54
|
-
.input[type=number]
|
|
65
|
+
.input[type=number],
|
|
66
|
+
.marqueeText[type=number] {
|
|
55
67
|
appearance: textfield;
|
|
56
68
|
}
|
|
57
69
|
.input[type=number]::-webkit-inner-spin-button,
|
|
58
|
-
.
|
|
70
|
+
.marqueeText[type=number]::-webkit-inner-spin-button,
|
|
71
|
+
.input[type=number]::-webkit-outer-spin-button,
|
|
72
|
+
.marqueeText[type=number]::-webkit-outer-spin-button {
|
|
59
73
|
appearance: none;
|
|
60
74
|
}
|
|
61
|
-
.input[type=number]:hover
|
|
75
|
+
.input[type=number]:hover,
|
|
76
|
+
.marqueeText[type=number]:hover {
|
|
62
77
|
appearance: none;
|
|
63
78
|
}
|
|
64
|
-
.input[placeholder]
|
|
79
|
+
.input[placeholder],
|
|
80
|
+
.marqueeText[placeholder] {
|
|
65
81
|
text-overflow: ellipsis;
|
|
66
82
|
}
|
|
67
83
|
:global(.spotlight-input-key) .input:global(.spottable):focus,
|
|
68
|
-
:global(.spotlight-input-
|
|
84
|
+
:global(.spotlight-input-key) .marqueeText:global(.spottable):focus,
|
|
85
|
+
:global(.spotlight-input-mouse) .input:global(.spottable):focus,
|
|
86
|
+
:global(.spotlight-input-mouse) .marqueeText:global(.spottable):focus {
|
|
69
87
|
cursor: text;
|
|
70
88
|
}
|
|
71
|
-
:global(.spotlight-input-touch) .input:global(.spottable):active
|
|
89
|
+
:global(.spotlight-input-touch) .input:global(.spottable):active,
|
|
90
|
+
:global(.spotlight-input-touch) .marqueeText:global(.spottable):active {
|
|
72
91
|
cursor: text;
|
|
73
92
|
}
|
|
74
|
-
.input[disabled]
|
|
93
|
+
.input[disabled],
|
|
94
|
+
.marqueeText[disabled] {
|
|
75
95
|
cursor: default;
|
|
76
96
|
}
|
|
77
|
-
:global(.enact-locale-right-to-left) .input
|
|
97
|
+
:global(.enact-locale-right-to-left) .input,
|
|
98
|
+
:global(.enact-locale-right-to-left) .marqueeText {
|
|
78
99
|
text-align: right;
|
|
79
100
|
}
|
|
80
101
|
.inputField {
|
|
@@ -112,7 +133,8 @@
|
|
|
112
133
|
border-radius: var(--semantic-radius-button);
|
|
113
134
|
}
|
|
114
135
|
.inputField .input,
|
|
115
|
-
.inputField .inputHighlight
|
|
136
|
+
.inputField .inputHighlight,
|
|
137
|
+
.inputField .marqueeText {
|
|
116
138
|
font-size: var(--primitive-font-size-78);
|
|
117
139
|
font-weight: var(--primitive-font-weight-semibold);
|
|
118
140
|
height: 3.5rem;
|
|
@@ -131,6 +153,10 @@
|
|
|
131
153
|
.inputField .input.passwordtel {
|
|
132
154
|
-webkit-text-security: disc;
|
|
133
155
|
}
|
|
156
|
+
.inputField .marqueeText.passwordtel {
|
|
157
|
+
letter-spacing: var(--primitive-spacing-30);
|
|
158
|
+
-webkit-text-security: disc;
|
|
159
|
+
}
|
|
134
160
|
.inputField .inputHighlight {
|
|
135
161
|
position: absolute;
|
|
136
162
|
top: 0;
|
|
@@ -141,22 +167,42 @@
|
|
|
141
167
|
opacity: 0;
|
|
142
168
|
z-index: -1;
|
|
143
169
|
}
|
|
170
|
+
.inputField .inputWrapper {
|
|
171
|
+
position: relative;
|
|
172
|
+
flex-grow: 1;
|
|
173
|
+
display: flex;
|
|
174
|
+
align-items: center;
|
|
175
|
+
overflow: hidden;
|
|
176
|
+
}
|
|
177
|
+
.inputField .marqueeText {
|
|
178
|
+
position: absolute;
|
|
179
|
+
pointer-events: none;
|
|
180
|
+
display: flex;
|
|
181
|
+
}
|
|
182
|
+
.inputField .marqueeTextInner {
|
|
183
|
+
visibility: hidden;
|
|
184
|
+
}
|
|
185
|
+
.inputField .marqueeTextAnimate,
|
|
186
|
+
.inputField .marqueeTextWillAnimate {
|
|
187
|
+
visibility: visible;
|
|
188
|
+
}
|
|
144
189
|
.inputField.large {
|
|
145
190
|
padding: 0 var(--primitive-spacing-30);
|
|
146
191
|
width: 32.5rem;
|
|
147
192
|
}
|
|
148
|
-
.inputField.large.hasIconBefore .
|
|
149
|
-
.inputField.large.hasIconAfter .
|
|
193
|
+
.inputField.large.hasIconBefore .inputWrapper,
|
|
194
|
+
.inputField.large.hasIconAfter .inputWrapper {
|
|
150
195
|
max-width: 28.875rem;
|
|
151
196
|
}
|
|
152
|
-
.inputField.large.hasIconBefore.inputField.large.hasIconAfter .
|
|
197
|
+
.inputField.large.hasIconBefore.inputField.large.hasIconAfter .inputWrapper {
|
|
153
198
|
max-width: 26.5rem;
|
|
154
199
|
}
|
|
155
200
|
.inputField.small {
|
|
156
201
|
height: 2.75rem;
|
|
157
202
|
width: 25rem;
|
|
158
203
|
}
|
|
159
|
-
.inputField.small .input
|
|
204
|
+
.inputField.small .input,
|
|
205
|
+
.inputField.small .marqueeText {
|
|
160
206
|
font-size: var(--primitive-font-size-60);
|
|
161
207
|
height: 2.75rem;
|
|
162
208
|
line-height: 2.75rem;
|
|
@@ -165,11 +211,11 @@
|
|
|
165
211
|
line-height: 2.75rem;
|
|
166
212
|
height: 2.75rem;
|
|
167
213
|
}
|
|
168
|
-
.inputField.small.hasIconBefore .
|
|
169
|
-
.inputField.small.hasIconAfter .
|
|
214
|
+
.inputField.small.hasIconBefore .inputWrapper,
|
|
215
|
+
.inputField.small.hasIconAfter .inputWrapper {
|
|
170
216
|
max-width: 20.625rem;
|
|
171
217
|
}
|
|
172
|
-
.inputField.small.hasIconBefore.inputField.small.hasIconAfter .
|
|
218
|
+
.inputField.small.hasIconBefore.inputField.small.hasIconAfter .inputWrapper {
|
|
173
219
|
max-width: 18.25rem;
|
|
174
220
|
}
|
|
175
221
|
.inputField.multiline {
|
|
@@ -186,6 +232,24 @@
|
|
|
186
232
|
.inputField .tooltip .tooltipLabel {
|
|
187
233
|
font-size: var(--primitive-font-size-48);
|
|
188
234
|
font-weight: var(--primitive-font-weight-semibold);
|
|
235
|
+
line-height: 1.25rem;
|
|
236
|
+
}
|
|
237
|
+
.inputField:global(.largeText) .input,
|
|
238
|
+
.inputField:global(.largeText) .inputHighlight,
|
|
239
|
+
.inputField:global(.largeText) .marqueeText {
|
|
240
|
+
font-size: var(--primitive-font-size-94);
|
|
241
|
+
}
|
|
242
|
+
.inputField:global(.largeText).small .input,
|
|
243
|
+
.inputField:global(.largeText).small .marqueeText {
|
|
244
|
+
font-size: var(--primitive-font-size-72);
|
|
245
|
+
line-height: 3.25rem;
|
|
246
|
+
}
|
|
247
|
+
.inputField:global(.largeText).small .inputHighlight {
|
|
248
|
+
line-height: 3.25rem;
|
|
249
|
+
}
|
|
250
|
+
.inputField:global(.largeText) .tooltip .tooltipLabel {
|
|
251
|
+
font-size: var(--primitive-font-size-58);
|
|
252
|
+
line-height: 1.45833rem;
|
|
189
253
|
}
|
|
190
254
|
.inputField:global(.neutral) {
|
|
191
255
|
caret-color: var(--semantic-color-on-surface-accent);
|
|
@@ -207,6 +271,9 @@
|
|
|
207
271
|
.inputField:global(.neutral) .input:focus-within::placeholder {
|
|
208
272
|
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
209
273
|
}
|
|
274
|
+
.inputField:global(.neutral) .marqueeText.placeholderText {
|
|
275
|
+
color: color(from var(--semantic-color-on-surface-input-field) srgb r g b / 0.4);
|
|
276
|
+
}
|
|
210
277
|
.inputField:global(.neutral).invalid input {
|
|
211
278
|
color: #ff0000;
|
|
212
279
|
}
|
|
@@ -231,6 +298,18 @@
|
|
|
231
298
|
:global(.spotlight-input-mouse) .inputField:global(.neutral):global(.spottable):focus .input::placeholder {
|
|
232
299
|
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
233
300
|
}
|
|
301
|
+
:global(.spotlight-input-key) .inputField:global(.neutral):global(.spottable):focus .marqueeText.placeholderText,
|
|
302
|
+
:global(.spotlight-input-mouse) .inputField:global(.neutral):global(.spottable):focus .marqueeText.placeholderText {
|
|
303
|
+
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
304
|
+
}
|
|
305
|
+
:global(.spotlight-input-key) .inputField:global(.neutral):global(.spottable):focus .marqueeTextInner,
|
|
306
|
+
:global(.spotlight-input-mouse) .inputField:global(.neutral):global(.spottable):focus .marqueeTextInner {
|
|
307
|
+
visibility: visible;
|
|
308
|
+
}
|
|
309
|
+
:global(.spotlight-input-key) .inputField:global(.neutral):global(.spottable):focus.hasMarquee:not(.active) .input,
|
|
310
|
+
:global(.spotlight-input-mouse) .inputField:global(.neutral):global(.spottable):focus.hasMarquee:not(.active) .input {
|
|
311
|
+
opacity: 0;
|
|
312
|
+
}
|
|
234
313
|
:global(.spotlight-input-touch) .inputField:global(.neutral):global(.spottable):active {
|
|
235
314
|
color: var(--semantic-color-on-surface-main-focused);
|
|
236
315
|
}
|
|
@@ -242,6 +321,15 @@
|
|
|
242
321
|
:global(.spotlight-input-touch) .inputField:global(.neutral):global(.spottable):active .input::placeholder {
|
|
243
322
|
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
244
323
|
}
|
|
324
|
+
:global(.spotlight-input-touch) .inputField:global(.neutral):global(.spottable):active .marqueeText.placeholderText {
|
|
325
|
+
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
326
|
+
}
|
|
327
|
+
:global(.spotlight-input-touch) .inputField:global(.neutral):global(.spottable):active .marqueeTextInner {
|
|
328
|
+
visibility: visible;
|
|
329
|
+
}
|
|
330
|
+
:global(.spotlight-input-touch) .inputField:global(.neutral):global(.spottable):active.hasMarquee:not(.active) .input {
|
|
331
|
+
opacity: 0;
|
|
332
|
+
}
|
|
245
333
|
:global(.spotlight-input-key) :global(.noAnimation) .inputField:global(.neutral):global(.spottable):focus .bg,
|
|
246
334
|
:global(.spotlight-input-mouse) :global(.noAnimation) .inputField:global(.neutral):global(.spottable):focus .bg {
|
|
247
335
|
box-shadow: none;
|
|
@@ -265,7 +353,8 @@
|
|
|
265
353
|
opacity: 0.585;
|
|
266
354
|
opacity: 0.3;
|
|
267
355
|
}
|
|
268
|
-
.inputField:global(.neutral)[disabled] .input
|
|
356
|
+
.inputField:global(.neutral)[disabled] .input,
|
|
357
|
+
.inputField:global(.neutral)[disabled] .marqueeText {
|
|
269
358
|
color: color(from var(--semantic-color-on-surface-input-field) srgb r g b / 0.4);
|
|
270
359
|
}
|
|
271
360
|
:global(.spotlight-input-key) .inputField:global(.neutral)[disabled]:global(.spottable):focus .bg,
|
|
@@ -274,14 +363,17 @@
|
|
|
274
363
|
filter: unset;
|
|
275
364
|
}
|
|
276
365
|
:global(.spotlight-input-key) .inputField:global(.neutral)[disabled]:global(.spottable):focus .input,
|
|
277
|
-
:global(.spotlight-input-mouse) .inputField:global(.neutral)[disabled]:global(.spottable):focus .input
|
|
366
|
+
:global(.spotlight-input-mouse) .inputField:global(.neutral)[disabled]:global(.spottable):focus .input,
|
|
367
|
+
:global(.spotlight-input-key) .inputField:global(.neutral)[disabled]:global(.spottable):focus .marqueeText,
|
|
368
|
+
:global(.spotlight-input-mouse) .inputField:global(.neutral)[disabled]:global(.spottable):focus .marqueeText {
|
|
278
369
|
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
279
370
|
}
|
|
280
371
|
:global(.spotlight-input-touch) .inputField:global(.neutral)[disabled]:global(.spottable):active .bg {
|
|
281
372
|
background-color: var(--semantic-color-surface-default-disabled-focused);
|
|
282
373
|
filter: unset;
|
|
283
374
|
}
|
|
284
|
-
:global(.spotlight-input-touch) .inputField:global(.neutral)[disabled]:global(.spottable):active .input
|
|
375
|
+
:global(.spotlight-input-touch) .inputField:global(.neutral)[disabled]:global(.spottable):active .input,
|
|
376
|
+
:global(.spotlight-input-touch) .inputField:global(.neutral)[disabled]:global(.spottable):active .marqueeText {
|
|
285
377
|
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
286
378
|
}
|
|
287
379
|
:global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast) {
|
|
@@ -304,6 +396,9 @@
|
|
|
304
396
|
:global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast) .input:focus-within::placeholder {
|
|
305
397
|
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
306
398
|
}
|
|
399
|
+
:global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast) .marqueeText.placeholderText {
|
|
400
|
+
color: color(from var(--semantic-color-on-surface-input-field) srgb r g b / 0.4);
|
|
401
|
+
}
|
|
307
402
|
:global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast).invalid input {
|
|
308
403
|
color: #ff0000;
|
|
309
404
|
}
|
|
@@ -328,6 +423,18 @@
|
|
|
328
423
|
:global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast):global(.spottable):focus .input::placeholder {
|
|
329
424
|
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
330
425
|
}
|
|
426
|
+
:global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast):global(.spottable):focus .marqueeText.placeholderText,
|
|
427
|
+
:global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast):global(.spottable):focus .marqueeText.placeholderText {
|
|
428
|
+
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
429
|
+
}
|
|
430
|
+
:global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast):global(.spottable):focus .marqueeTextInner,
|
|
431
|
+
:global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast):global(.spottable):focus .marqueeTextInner {
|
|
432
|
+
visibility: visible;
|
|
433
|
+
}
|
|
434
|
+
:global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast):global(.spottable):focus.hasMarquee:not(.active) .input,
|
|
435
|
+
:global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast):global(.spottable):focus.hasMarquee:not(.active) .input {
|
|
436
|
+
opacity: 0;
|
|
437
|
+
}
|
|
331
438
|
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast):global(.spottable):active {
|
|
332
439
|
color: var(--semantic-color-on-surface-main-focused);
|
|
333
440
|
}
|
|
@@ -339,6 +446,15 @@
|
|
|
339
446
|
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast):global(.spottable):active .input::placeholder {
|
|
340
447
|
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
341
448
|
}
|
|
449
|
+
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast):global(.spottable):active .marqueeText.placeholderText {
|
|
450
|
+
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
451
|
+
}
|
|
452
|
+
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast):global(.spottable):active .marqueeTextInner {
|
|
453
|
+
visibility: visible;
|
|
454
|
+
}
|
|
455
|
+
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast):global(.spottable):active.hasMarquee:not(.active) .input {
|
|
456
|
+
opacity: 0;
|
|
457
|
+
}
|
|
342
458
|
:global(.spotlight-input-key) :global(.noAnimation) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast):global(.spottable):focus .bg,
|
|
343
459
|
:global(.spotlight-input-mouse) :global(.noAnimation) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast):global(.spottable):focus .bg {
|
|
344
460
|
box-shadow: none;
|
|
@@ -362,7 +478,8 @@
|
|
|
362
478
|
opacity: 0.585;
|
|
363
479
|
opacity: 0.3;
|
|
364
480
|
}
|
|
365
|
-
:global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast)[disabled] .input
|
|
481
|
+
:global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast)[disabled] .input,
|
|
482
|
+
:global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast)[disabled] .marqueeText {
|
|
366
483
|
color: color(from var(--semantic-color-on-surface-input-field) srgb r g b / 0.4);
|
|
367
484
|
}
|
|
368
485
|
:global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast)[disabled]:global(.spottable):focus .bg,
|
|
@@ -371,14 +488,17 @@
|
|
|
371
488
|
filter: unset;
|
|
372
489
|
}
|
|
373
490
|
:global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast)[disabled]:global(.spottable):focus .input,
|
|
374
|
-
:global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast)[disabled]:global(.spottable):focus .input
|
|
491
|
+
:global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast)[disabled]:global(.spottable):focus .input,
|
|
492
|
+
:global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast)[disabled]:global(.spottable):focus .marqueeText,
|
|
493
|
+
:global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast)[disabled]:global(.spottable):focus .marqueeText {
|
|
375
494
|
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
376
495
|
}
|
|
377
496
|
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast)[disabled]:global(.spottable):active .bg {
|
|
378
497
|
background-color: var(--semantic-color-surface-default-disabled-focused);
|
|
379
498
|
filter: unset;
|
|
380
499
|
}
|
|
381
|
-
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast)[disabled]:global(.spottable):active .input
|
|
500
|
+
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast)[disabled]:global(.spottable):active .input,
|
|
501
|
+
:global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .inputField:global(.neutral):global(.highContrast)[disabled]:global(.spottable):active .marqueeText {
|
|
382
502
|
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
383
503
|
}
|
|
384
504
|
.inputField:global(.light) {
|
|
@@ -401,6 +521,9 @@
|
|
|
401
521
|
.inputField:global(.light) .input:focus-within::placeholder {
|
|
402
522
|
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
403
523
|
}
|
|
524
|
+
.inputField:global(.light) .marqueeText.placeholderText {
|
|
525
|
+
color: color(from var(--semantic-color-on-surface-input-field) srgb r g b / 0.4);
|
|
526
|
+
}
|
|
404
527
|
.inputField:global(.light).invalid input {
|
|
405
528
|
color: #ff0000;
|
|
406
529
|
}
|
|
@@ -425,6 +548,18 @@
|
|
|
425
548
|
:global(.spotlight-input-mouse) .inputField:global(.light):global(.spottable):focus .input::placeholder {
|
|
426
549
|
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
427
550
|
}
|
|
551
|
+
:global(.spotlight-input-key) .inputField:global(.light):global(.spottable):focus .marqueeText.placeholderText,
|
|
552
|
+
:global(.spotlight-input-mouse) .inputField:global(.light):global(.spottable):focus .marqueeText.placeholderText {
|
|
553
|
+
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
554
|
+
}
|
|
555
|
+
:global(.spotlight-input-key) .inputField:global(.light):global(.spottable):focus .marqueeTextInner,
|
|
556
|
+
:global(.spotlight-input-mouse) .inputField:global(.light):global(.spottable):focus .marqueeTextInner {
|
|
557
|
+
visibility: visible;
|
|
558
|
+
}
|
|
559
|
+
:global(.spotlight-input-key) .inputField:global(.light):global(.spottable):focus.hasMarquee:not(.active) .input,
|
|
560
|
+
:global(.spotlight-input-mouse) .inputField:global(.light):global(.spottable):focus.hasMarquee:not(.active) .input {
|
|
561
|
+
opacity: 0;
|
|
562
|
+
}
|
|
428
563
|
:global(.spotlight-input-touch) .inputField:global(.light):global(.spottable):active {
|
|
429
564
|
color: var(--semantic-color-on-surface-main-focused);
|
|
430
565
|
}
|
|
@@ -436,6 +571,15 @@
|
|
|
436
571
|
:global(.spotlight-input-touch) .inputField:global(.light):global(.spottable):active .input::placeholder {
|
|
437
572
|
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
438
573
|
}
|
|
574
|
+
:global(.spotlight-input-touch) .inputField:global(.light):global(.spottable):active .marqueeText.placeholderText {
|
|
575
|
+
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
576
|
+
}
|
|
577
|
+
:global(.spotlight-input-touch) .inputField:global(.light):global(.spottable):active .marqueeTextInner {
|
|
578
|
+
visibility: visible;
|
|
579
|
+
}
|
|
580
|
+
:global(.spotlight-input-touch) .inputField:global(.light):global(.spottable):active.hasMarquee:not(.active) .input {
|
|
581
|
+
opacity: 0;
|
|
582
|
+
}
|
|
439
583
|
:global(.spotlight-input-key) :global(.noAnimation) .inputField:global(.light):global(.spottable):focus .bg,
|
|
440
584
|
:global(.spotlight-input-mouse) :global(.noAnimation) .inputField:global(.light):global(.spottable):focus .bg {
|
|
441
585
|
box-shadow: none;
|
|
@@ -459,7 +603,8 @@
|
|
|
459
603
|
opacity: 0.585;
|
|
460
604
|
opacity: 0.3;
|
|
461
605
|
}
|
|
462
|
-
.inputField:global(.light)[disabled] .input
|
|
606
|
+
.inputField:global(.light)[disabled] .input,
|
|
607
|
+
.inputField:global(.light)[disabled] .marqueeText {
|
|
463
608
|
color: color(from var(--semantic-color-on-surface-input-field) srgb r g b / 0.4);
|
|
464
609
|
}
|
|
465
610
|
:global(.spotlight-input-key) .inputField:global(.light)[disabled]:global(.spottable):focus .bg,
|
|
@@ -468,14 +613,17 @@
|
|
|
468
613
|
filter: unset;
|
|
469
614
|
}
|
|
470
615
|
:global(.spotlight-input-key) .inputField:global(.light)[disabled]:global(.spottable):focus .input,
|
|
471
|
-
:global(.spotlight-input-mouse) .inputField:global(.light)[disabled]:global(.spottable):focus .input
|
|
616
|
+
:global(.spotlight-input-mouse) .inputField:global(.light)[disabled]:global(.spottable):focus .input,
|
|
617
|
+
:global(.spotlight-input-key) .inputField:global(.light)[disabled]:global(.spottable):focus .marqueeText,
|
|
618
|
+
:global(.spotlight-input-mouse) .inputField:global(.light)[disabled]:global(.spottable):focus .marqueeText {
|
|
472
619
|
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
473
620
|
}
|
|
474
621
|
:global(.spotlight-input-touch) .inputField:global(.light)[disabled]:global(.spottable):active .bg {
|
|
475
622
|
background-color: var(--semantic-color-surface-default-disabled-focused);
|
|
476
623
|
filter: unset;
|
|
477
624
|
}
|
|
478
|
-
:global(.spotlight-input-touch) .inputField:global(.light)[disabled]:global(.spottable):active .input
|
|
625
|
+
:global(.spotlight-input-touch) .inputField:global(.light)[disabled]:global(.spottable):active .input,
|
|
626
|
+
:global(.spotlight-input-touch) .inputField:global(.light)[disabled]:global(.spottable):active .marqueeText {
|
|
479
627
|
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
480
628
|
}
|
|
481
629
|
.inputField:global(.game) {
|
|
@@ -501,6 +649,9 @@
|
|
|
501
649
|
.inputField:global(.game) .input:focus-within::placeholder {
|
|
502
650
|
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
503
651
|
}
|
|
652
|
+
.inputField:global(.game) .marqueeText.placeholderText {
|
|
653
|
+
color: color(from var(--semantic-color-on-surface-input-field) srgb r g b / 0.4);
|
|
654
|
+
}
|
|
504
655
|
.inputField:global(.game).invalid input {
|
|
505
656
|
color: #ff0000;
|
|
506
657
|
}
|
|
@@ -525,6 +676,18 @@
|
|
|
525
676
|
:global(.spotlight-input-mouse) .inputField:global(.game):global(.spottable):focus .input::placeholder {
|
|
526
677
|
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
527
678
|
}
|
|
679
|
+
:global(.spotlight-input-key) .inputField:global(.game):global(.spottable):focus .marqueeText.placeholderText,
|
|
680
|
+
:global(.spotlight-input-mouse) .inputField:global(.game):global(.spottable):focus .marqueeText.placeholderText {
|
|
681
|
+
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
682
|
+
}
|
|
683
|
+
:global(.spotlight-input-key) .inputField:global(.game):global(.spottable):focus .marqueeTextInner,
|
|
684
|
+
:global(.spotlight-input-mouse) .inputField:global(.game):global(.spottable):focus .marqueeTextInner {
|
|
685
|
+
visibility: visible;
|
|
686
|
+
}
|
|
687
|
+
:global(.spotlight-input-key) .inputField:global(.game):global(.spottable):focus.hasMarquee:not(.active) .input,
|
|
688
|
+
:global(.spotlight-input-mouse) .inputField:global(.game):global(.spottable):focus.hasMarquee:not(.active) .input {
|
|
689
|
+
opacity: 0;
|
|
690
|
+
}
|
|
528
691
|
:global(.spotlight-input-touch) .inputField:global(.game):global(.spottable):active {
|
|
529
692
|
color: var(--semantic-color-on-surface-main-focused);
|
|
530
693
|
}
|
|
@@ -536,6 +699,15 @@
|
|
|
536
699
|
:global(.spotlight-input-touch) .inputField:global(.game):global(.spottable):active .input::placeholder {
|
|
537
700
|
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
538
701
|
}
|
|
702
|
+
:global(.spotlight-input-touch) .inputField:global(.game):global(.spottable):active .marqueeText.placeholderText {
|
|
703
|
+
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
704
|
+
}
|
|
705
|
+
:global(.spotlight-input-touch) .inputField:global(.game):global(.spottable):active .marqueeTextInner {
|
|
706
|
+
visibility: visible;
|
|
707
|
+
}
|
|
708
|
+
:global(.spotlight-input-touch) .inputField:global(.game):global(.spottable):active.hasMarquee:not(.active) .input {
|
|
709
|
+
opacity: 0;
|
|
710
|
+
}
|
|
539
711
|
:global(.spotlight-input-key) :global(.noAnimation) .inputField:global(.game):global(.spottable):focus .bg,
|
|
540
712
|
:global(.spotlight-input-mouse) :global(.noAnimation) .inputField:global(.game):global(.spottable):focus .bg {
|
|
541
713
|
box-shadow: none;
|
|
@@ -559,7 +731,8 @@
|
|
|
559
731
|
opacity: 0.585;
|
|
560
732
|
opacity: 0.3;
|
|
561
733
|
}
|
|
562
|
-
.inputField:global(.game)[disabled] .input
|
|
734
|
+
.inputField:global(.game)[disabled] .input,
|
|
735
|
+
.inputField:global(.game)[disabled] .marqueeText {
|
|
563
736
|
color: color(from var(--semantic-color-on-surface-input-field) srgb r g b / 0.4);
|
|
564
737
|
}
|
|
565
738
|
:global(.spotlight-input-key) .inputField:global(.game)[disabled]:global(.spottable):focus .bg,
|
|
@@ -568,14 +741,17 @@
|
|
|
568
741
|
filter: unset;
|
|
569
742
|
}
|
|
570
743
|
:global(.spotlight-input-key) .inputField:global(.game)[disabled]:global(.spottable):focus .input,
|
|
571
|
-
:global(.spotlight-input-mouse) .inputField:global(.game)[disabled]:global(.spottable):focus .input
|
|
744
|
+
:global(.spotlight-input-mouse) .inputField:global(.game)[disabled]:global(.spottable):focus .input,
|
|
745
|
+
:global(.spotlight-input-key) .inputField:global(.game)[disabled]:global(.spottable):focus .marqueeText,
|
|
746
|
+
:global(.spotlight-input-mouse) .inputField:global(.game)[disabled]:global(.spottable):focus .marqueeText {
|
|
572
747
|
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
573
748
|
}
|
|
574
749
|
:global(.spotlight-input-touch) .inputField:global(.game)[disabled]:global(.spottable):active .bg {
|
|
575
750
|
background-color: var(--semantic-color-surface-default-disabled-focused);
|
|
576
751
|
filter: unset;
|
|
577
752
|
}
|
|
578
|
-
:global(.spotlight-input-touch) .inputField:global(.game)[disabled]:global(.spottable):active .input
|
|
753
|
+
:global(.spotlight-input-touch) .inputField:global(.game)[disabled]:global(.spottable):active .input,
|
|
754
|
+
:global(.spotlight-input-touch) .inputField:global(.game)[disabled]:global(.spottable):active .marqueeText {
|
|
579
755
|
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
580
756
|
}
|
|
581
757
|
:global(.green) .inputField:global(.game) {
|
|
@@ -600,6 +776,9 @@
|
|
|
600
776
|
:global(.green) .inputField:global(.game) .input:focus-within::placeholder {
|
|
601
777
|
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
602
778
|
}
|
|
779
|
+
:global(.green) .inputField:global(.game) .marqueeText.placeholderText {
|
|
780
|
+
color: color(from var(--semantic-color-on-surface-input-field) srgb r g b / 0.4);
|
|
781
|
+
}
|
|
603
782
|
:global(.green) .inputField:global(.game).invalid input {
|
|
604
783
|
color: #ff0000;
|
|
605
784
|
}
|
|
@@ -624,6 +803,18 @@
|
|
|
624
803
|
:global(.spotlight-input-mouse) :global(.green) .inputField:global(.game):global(.spottable):focus .input::placeholder {
|
|
625
804
|
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
626
805
|
}
|
|
806
|
+
:global(.spotlight-input-key) :global(.green) .inputField:global(.game):global(.spottable):focus .marqueeText.placeholderText,
|
|
807
|
+
:global(.spotlight-input-mouse) :global(.green) .inputField:global(.game):global(.spottable):focus .marqueeText.placeholderText {
|
|
808
|
+
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
809
|
+
}
|
|
810
|
+
:global(.spotlight-input-key) :global(.green) .inputField:global(.game):global(.spottable):focus .marqueeTextInner,
|
|
811
|
+
:global(.spotlight-input-mouse) :global(.green) .inputField:global(.game):global(.spottable):focus .marqueeTextInner {
|
|
812
|
+
visibility: visible;
|
|
813
|
+
}
|
|
814
|
+
:global(.spotlight-input-key) :global(.green) .inputField:global(.game):global(.spottable):focus.hasMarquee:not(.active) .input,
|
|
815
|
+
:global(.spotlight-input-mouse) :global(.green) .inputField:global(.game):global(.spottable):focus.hasMarquee:not(.active) .input {
|
|
816
|
+
opacity: 0;
|
|
817
|
+
}
|
|
627
818
|
:global(.spotlight-input-touch) :global(.green) .inputField:global(.game):global(.spottable):active {
|
|
628
819
|
color: var(--semantic-color-on-surface-main-focused);
|
|
629
820
|
}
|
|
@@ -635,6 +826,15 @@
|
|
|
635
826
|
:global(.spotlight-input-touch) :global(.green) .inputField:global(.game):global(.spottable):active .input::placeholder {
|
|
636
827
|
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
637
828
|
}
|
|
829
|
+
:global(.spotlight-input-touch) :global(.green) .inputField:global(.game):global(.spottable):active .marqueeText.placeholderText {
|
|
830
|
+
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
831
|
+
}
|
|
832
|
+
:global(.spotlight-input-touch) :global(.green) .inputField:global(.game):global(.spottable):active .marqueeTextInner {
|
|
833
|
+
visibility: visible;
|
|
834
|
+
}
|
|
835
|
+
:global(.spotlight-input-touch) :global(.green) .inputField:global(.game):global(.spottable):active.hasMarquee:not(.active) .input {
|
|
836
|
+
opacity: 0;
|
|
837
|
+
}
|
|
638
838
|
:global(.spotlight-input-key) :global(.noAnimation) :global(.green) .inputField:global(.game):global(.spottable):focus .bg,
|
|
639
839
|
:global(.spotlight-input-mouse) :global(.noAnimation) :global(.green) .inputField:global(.game):global(.spottable):focus .bg {
|
|
640
840
|
box-shadow: none;
|
|
@@ -658,7 +858,8 @@
|
|
|
658
858
|
opacity: 0.585;
|
|
659
859
|
opacity: 0.3;
|
|
660
860
|
}
|
|
661
|
-
:global(.green) .inputField:global(.game)[disabled] .input
|
|
861
|
+
:global(.green) .inputField:global(.game)[disabled] .input,
|
|
862
|
+
:global(.green) .inputField:global(.game)[disabled] .marqueeText {
|
|
662
863
|
color: color(from var(--semantic-color-on-surface-input-field) srgb r g b / 0.4);
|
|
663
864
|
}
|
|
664
865
|
:global(.spotlight-input-key) :global(.green) .inputField:global(.game)[disabled]:global(.spottable):focus .bg,
|
|
@@ -667,14 +868,17 @@
|
|
|
667
868
|
filter: unset;
|
|
668
869
|
}
|
|
669
870
|
:global(.spotlight-input-key) :global(.green) .inputField:global(.game)[disabled]:global(.spottable):focus .input,
|
|
670
|
-
:global(.spotlight-input-mouse) :global(.green) .inputField:global(.game)[disabled]:global(.spottable):focus .input
|
|
871
|
+
:global(.spotlight-input-mouse) :global(.green) .inputField:global(.game)[disabled]:global(.spottable):focus .input,
|
|
872
|
+
:global(.spotlight-input-key) :global(.green) .inputField:global(.game)[disabled]:global(.spottable):focus .marqueeText,
|
|
873
|
+
:global(.spotlight-input-mouse) :global(.green) .inputField:global(.game)[disabled]:global(.spottable):focus .marqueeText {
|
|
671
874
|
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
672
875
|
}
|
|
673
876
|
:global(.spotlight-input-touch) :global(.green) .inputField:global(.game)[disabled]:global(.spottable):active .bg {
|
|
674
877
|
background-color: var(--semantic-color-surface-default-disabled-focused);
|
|
675
878
|
filter: unset;
|
|
676
879
|
}
|
|
677
|
-
:global(.spotlight-input-touch) :global(.green) .inputField:global(.game)[disabled]:global(.spottable):active .input
|
|
880
|
+
:global(.spotlight-input-touch) :global(.green) .inputField:global(.game)[disabled]:global(.spottable):active .input,
|
|
881
|
+
:global(.spotlight-input-touch) :global(.green) .inputField:global(.game)[disabled]:global(.spottable):active .marqueeText {
|
|
678
882
|
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
679
883
|
}
|
|
680
884
|
:global(.orange) .inputField:global(.game) {
|
|
@@ -699,6 +903,9 @@
|
|
|
699
903
|
:global(.orange) .inputField:global(.game) .input:focus-within::placeholder {
|
|
700
904
|
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
701
905
|
}
|
|
906
|
+
:global(.orange) .inputField:global(.game) .marqueeText.placeholderText {
|
|
907
|
+
color: color(from var(--semantic-color-on-surface-input-field) srgb r g b / 0.4);
|
|
908
|
+
}
|
|
702
909
|
:global(.orange) .inputField:global(.game).invalid input {
|
|
703
910
|
color: #ff0000;
|
|
704
911
|
}
|
|
@@ -723,6 +930,18 @@
|
|
|
723
930
|
:global(.spotlight-input-mouse) :global(.orange) .inputField:global(.game):global(.spottable):focus .input::placeholder {
|
|
724
931
|
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
725
932
|
}
|
|
933
|
+
:global(.spotlight-input-key) :global(.orange) .inputField:global(.game):global(.spottable):focus .marqueeText.placeholderText,
|
|
934
|
+
:global(.spotlight-input-mouse) :global(.orange) .inputField:global(.game):global(.spottable):focus .marqueeText.placeholderText {
|
|
935
|
+
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
936
|
+
}
|
|
937
|
+
:global(.spotlight-input-key) :global(.orange) .inputField:global(.game):global(.spottable):focus .marqueeTextInner,
|
|
938
|
+
:global(.spotlight-input-mouse) :global(.orange) .inputField:global(.game):global(.spottable):focus .marqueeTextInner {
|
|
939
|
+
visibility: visible;
|
|
940
|
+
}
|
|
941
|
+
:global(.spotlight-input-key) :global(.orange) .inputField:global(.game):global(.spottable):focus.hasMarquee:not(.active) .input,
|
|
942
|
+
:global(.spotlight-input-mouse) :global(.orange) .inputField:global(.game):global(.spottable):focus.hasMarquee:not(.active) .input {
|
|
943
|
+
opacity: 0;
|
|
944
|
+
}
|
|
726
945
|
:global(.spotlight-input-touch) :global(.orange) .inputField:global(.game):global(.spottable):active {
|
|
727
946
|
color: var(--semantic-color-on-surface-main-focused);
|
|
728
947
|
}
|
|
@@ -734,6 +953,15 @@
|
|
|
734
953
|
:global(.spotlight-input-touch) :global(.orange) .inputField:global(.game):global(.spottable):active .input::placeholder {
|
|
735
954
|
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
736
955
|
}
|
|
956
|
+
:global(.spotlight-input-touch) :global(.orange) .inputField:global(.game):global(.spottable):active .marqueeText.placeholderText {
|
|
957
|
+
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
958
|
+
}
|
|
959
|
+
:global(.spotlight-input-touch) :global(.orange) .inputField:global(.game):global(.spottable):active .marqueeTextInner {
|
|
960
|
+
visibility: visible;
|
|
961
|
+
}
|
|
962
|
+
:global(.spotlight-input-touch) :global(.orange) .inputField:global(.game):global(.spottable):active.hasMarquee:not(.active) .input {
|
|
963
|
+
opacity: 0;
|
|
964
|
+
}
|
|
737
965
|
:global(.spotlight-input-key) :global(.noAnimation) :global(.orange) .inputField:global(.game):global(.spottable):focus .bg,
|
|
738
966
|
:global(.spotlight-input-mouse) :global(.noAnimation) :global(.orange) .inputField:global(.game):global(.spottable):focus .bg {
|
|
739
967
|
box-shadow: none;
|
|
@@ -757,7 +985,8 @@
|
|
|
757
985
|
opacity: 0.585;
|
|
758
986
|
opacity: 0.3;
|
|
759
987
|
}
|
|
760
|
-
:global(.orange) .inputField:global(.game)[disabled] .input
|
|
988
|
+
:global(.orange) .inputField:global(.game)[disabled] .input,
|
|
989
|
+
:global(.orange) .inputField:global(.game)[disabled] .marqueeText {
|
|
761
990
|
color: color(from var(--semantic-color-on-surface-input-field) srgb r g b / 0.4);
|
|
762
991
|
}
|
|
763
992
|
:global(.spotlight-input-key) :global(.orange) .inputField:global(.game)[disabled]:global(.spottable):focus .bg,
|
|
@@ -766,13 +995,19 @@
|
|
|
766
995
|
filter: unset;
|
|
767
996
|
}
|
|
768
997
|
:global(.spotlight-input-key) :global(.orange) .inputField:global(.game)[disabled]:global(.spottable):focus .input,
|
|
769
|
-
:global(.spotlight-input-mouse) :global(.orange) .inputField:global(.game)[disabled]:global(.spottable):focus .input
|
|
998
|
+
:global(.spotlight-input-mouse) :global(.orange) .inputField:global(.game)[disabled]:global(.spottable):focus .input,
|
|
999
|
+
:global(.spotlight-input-key) :global(.orange) .inputField:global(.game)[disabled]:global(.spottable):focus .marqueeText,
|
|
1000
|
+
:global(.spotlight-input-mouse) :global(.orange) .inputField:global(.game)[disabled]:global(.spottable):focus .marqueeText {
|
|
770
1001
|
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
771
1002
|
}
|
|
772
1003
|
:global(.spotlight-input-touch) :global(.orange) .inputField:global(.game)[disabled]:global(.spottable):active .bg {
|
|
773
1004
|
background-color: var(--semantic-color-surface-default-disabled-focused);
|
|
774
1005
|
filter: unset;
|
|
775
1006
|
}
|
|
776
|
-
:global(.spotlight-input-touch) :global(.orange) .inputField:global(.game)[disabled]:global(.spottable):active .input
|
|
1007
|
+
:global(.spotlight-input-touch) :global(.orange) .inputField:global(.game)[disabled]:global(.spottable):active .input,
|
|
1008
|
+
:global(.spotlight-input-touch) :global(.orange) .inputField:global(.game)[disabled]:global(.spottable):active .marqueeText {
|
|
777
1009
|
color: color(from var(--semantic-color-on-surface-main-focused) srgb r g b / 0.4);
|
|
778
1010
|
}
|
|
1011
|
+
.inputField.active .marqueeText {
|
|
1012
|
+
display: none;
|
|
1013
|
+
}
|
|
@@ -49,6 +49,7 @@ var InputDecoratorIconBase = exports.InputDecoratorIconBase = (0, _kind["default
|
|
|
49
49
|
rest = _objectWithoutProperties(_ref, _excluded);
|
|
50
50
|
delete rest.position;
|
|
51
51
|
return children ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_Icon["default"], _objectSpread(_objectSpread({}, rest), {}, {
|
|
52
|
+
"data-input-icon": true,
|
|
52
53
|
children: children
|
|
53
54
|
})) : null;
|
|
54
55
|
}
|