mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
09fa2d2c9c
Forces browser colorscheme based on BookStack color scheme, via 'color-scheme' css property. Sets proper dark mode colors for some previously missed areas like templates and attachment control buttons. Also fixed search bar icon position for some search inputs.
10 lines
422 B
PHP
10 lines
422 B
PHP
{{--
|
|
@label - Placeholder/aria-label text
|
|
--}}
|
|
<div class="mb-xl">
|
|
<form refs="entity-search@searchForm" class="search-box flexible" role="search">
|
|
<input refs="entity-search@searchInput" type="text"
|
|
aria-label="{{ $label }}" name="term" placeholder="{{ $label }}">
|
|
<button tabindex="-1" type="submit" aria-label="{{ trans('common.search') }}">@icon('search')</button>
|
|
</form>
|
|
</div> |