@signal9/era-ui 2.28.2 → 2.29.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/os/taskbar.svelte +8 -1
- package/package.json +1 -1
package/dist/os/taskbar.svelte
CHANGED
|
@@ -263,9 +263,15 @@
|
|
|
263
263
|
focuses it (opening the soft keyboard + palette). Positioned against the
|
|
264
264
|
desktop, above the home-indicator safe area. Hidden from sm up — pointer
|
|
265
265
|
devices reach the bar and hotkey directly. Only for a top bar; a bottom bar
|
|
266
|
-
already puts the prompt in reach.
|
|
266
|
+
already puts the prompt in reach.
|
|
267
|
+
|
|
268
|
+
data-mode="touch" scopes the DENSITY axis to just this control, so it and
|
|
269
|
+
its icon re-tier to the touch scale (h-md 48px, icon 22px) however dense the
|
|
270
|
+
shell around it is — a proper thumb target for the one action a phone user
|
|
271
|
+
can't otherwise reach, without hardcoding a size. -->
|
|
267
272
|
{#if mobileLauncher && position === 'top'}
|
|
268
273
|
<div
|
|
274
|
+
data-mode="touch"
|
|
269
275
|
class={cn(
|
|
270
276
|
'absolute right-(--era-gap) bottom-[max(var(--era-gap),env(safe-area-inset-bottom))] sm:hidden',
|
|
271
277
|
LAYER.taskbar
|
|
@@ -274,6 +280,7 @@
|
|
|
274
280
|
<Button
|
|
275
281
|
icon
|
|
276
282
|
size="default"
|
|
283
|
+
tone="accent"
|
|
277
284
|
aria-label="Open command bar"
|
|
278
285
|
class="rounded-full shadow-(--era-shadow-lg)"
|
|
279
286
|
onclick={() => commandBar?.focusInput()}
|