add icon to search field

This commit is contained in:
isUnknown 2024-04-09 17:10:43 +02:00
parent 4a742b81ec
commit 4a310dcbbe
7 changed files with 57 additions and 12 deletions

View file

@ -10,8 +10,25 @@
>categories</button>
</div>
<nav class="panel panel--left">
<ul>
<nav
class="panel panel--left"
x-data="{search: ''}"
>
<span class="search">
<input
class="search__input"
type="text"
placeholder="page, auteur, année etc."
x-model="search"
>
<img
src="<?= url('assets/images/icons/search.svg') ?>"
class="search__icon"
alt="Icône loupe indiquant le champ de recherche."
>
</span>
<ul id="result"></ul>
<ul id="panel__items">
<?php foreach($kirby->collection('years') as $year): ?>
<li
class="panel__item "
@ -22,7 +39,7 @@
:class="year ? '' : 'short'"
@click="year = !year"
>
<h3 class="fs-xl color" style="--color:var(--color-secondary)"><?= $year->title() ?></h3>
<h3 class="fs-xl color" style="--color:var(--color-secondary)"><?= $year->title() ?><span x-show="search.length > 0" x-text="` > 1`"></span></h3>
<div
class="panel__toggle-icon"
x-text="year ? '-' : '+'"