diff --git a/resources/css/utilities.css b/resources/css/utilities.css index 26f4cc4ce..668cb755b 100644 --- a/resources/css/utilities.css +++ b/resources/css/utilities.css @@ -163,7 +163,7 @@ } @utility auth-tooltip { - @apply fixed z-[99] px-2.5 py-1.5 text-xs font-medium rounded-lg pointer-events-none whitespace-nowrap text-white bg-neutral-900 border border-neutral-700 shadow-lg dark:text-fg dark:bg-raised dark:border-white/10; + @apply fixed z-[10000] px-2.5 py-1.5 text-xs font-medium rounded-lg pointer-events-none whitespace-nowrap text-white bg-neutral-900 border border-neutral-700 shadow-lg dark:text-fg dark:bg-raised dark:border-white/10; } @utility alert-success { diff --git a/resources/views/components/forms/domain-input.blade.php b/resources/views/components/forms/domain-input.blade.php index 482788906..030fc0f5f 100644 --- a/resources/views/components/forms/domain-input.blade.php +++ b/resources/views/components/forms/domain-input.blade.php @@ -43,15 +43,17 @@
- +
+ +
@error($errorId ?? $id) @@ -60,13 +62,17 @@
- +
+ +
- +
+ +

diff --git a/resources/views/components/helper.blade.php b/resources/views/components/helper.blade.php index 6b90b5929..f935e7d47 100644 --- a/resources/views/components/helper.blade.php +++ b/resources/views/components/helper.blade.php @@ -94,7 +94,7 @@ } }" @pointerdown.window="closeWhenPointerIsOutside($event)" @keydown.window.escape="close" @resize.window="open && position()" @scroll.window="open && position()" - {{ $attributes->merge(['class' => 'relative inline-block align-middle']) }}> + {{ $attributes->merge(['class' => 'relative inline-flex align-middle']) }}> {{-- button (not div) so label-for associations do not steal the click on mobile --}}

diff --git a/resources/views/components/popup-small.blade.php b/resources/views/components/popup-small.blade.php index fca570f34..45f12eb6e 100644 --- a/resources/views/components/popup-small.blade.php +++ b/resources/views/components/popup-small.blade.php @@ -4,6 +4,7 @@ 'compactAfter' => null, 'compactStorageKey' => null, 'compactStoragePrefix' => null, + 'position' => 'bottom-right', ])
- + class="fixed right-4 z-999 {{ $position === 'top-right' ? 'top-16' : 'bottom-4' }}"> + -
+
+
diff --git a/resources/views/components/toast.blade.php b/resources/views/components/toast.blade.php index 533464815..8c3eef13e 100644 --- a/resources/views/components/toast.blade.php +++ b/resources/views/components/toast.blade.php @@ -6,7 +6,7 @@ type: options.type ?? 'default', message, description: options.description ?? '', - position: options.position ?? 'top-center', + position: options.position ?? 'bottom-right', html: options.html ?? '', }, })); @@ -17,9 +17,9 @@