mirror of
https://github.com/bastienwirtz/homer.git
synced 2025-11-08 22:35:43 +01:00
feat(ui): Rework theming system, add new theme.
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user