feat(ui): Rework theming system, add new theme.

This commit is contained in:
Bastien Wirtz
2024-06-01 16:28:22 +02:00
parent 2b83a38fc3
commit 359f1ffb53
38 changed files with 1055 additions and 704 deletions

View File

@@ -1,15 +1,17 @@
<template>
<div class="search-bar">
<label for="search" class="search-label"></label>
<input
type="text"
ref="search"
:value="value"
@input.stop="search($event.target.value)"
@keyup.enter.exact="open()"
@keyup.alt.enter="open('_blank')"
/>
</div>
<search class="search-bar">
<form role="search">
<label for="search" class="search-label"></label>
<input
type="search"
ref="search"
:value="value"
@input.stop="search($event.target.value)"
@keyup.enter.exact="open()"
@keyup.alt.enter="open('_blank')"
/>
</form>
</search>
</template>
<script>