mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-04-30 14:40:03 +00:00
Fixed global search preview click on safari
Safari needs an element to be focusable to be able to use :focus-within. For #3926
This commit is contained in:
parent
f6d3944b20
commit
deda331745
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@
|
||||||
|
|
||||||
<div class="flex-container-column items-center justify-center hide-under-l">
|
<div class="flex-container-column items-center justify-center hide-under-l">
|
||||||
@if (hasAppAccess())
|
@if (hasAppAccess())
|
||||||
<form component="global-search" action="{{ url('/search') }}" method="GET" class="search-box" role="search">
|
<form component="global-search" action="{{ url('/search') }}" method="GET" class="search-box" role="search" tabindex="0">
|
||||||
<button id="header-search-box-button"
|
<button id="header-search-box-button"
|
||||||
refs="global-search@button"
|
refs="global-search@button"
|
||||||
type="submit"
|
type="submit"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue