Fixed search inputs not working in Firefox/Safari. Added Stashes and Alerts to header menu. Indexing compilation tags as assigned tags in Manticore.
This commit is contained in:
@@ -1,13 +1,26 @@
|
||||
<template>
|
||||
<Admin class="page">
|
||||
<div class="header">
|
||||
<input
|
||||
v-model="actorQuery"
|
||||
type="search"
|
||||
placeholder="Search actors"
|
||||
class="input search"
|
||||
@search="searchActors"
|
||||
<form
|
||||
class="search"
|
||||
@submit.prevent="searchActors"
|
||||
>
|
||||
<input
|
||||
v-model="actorQuery"
|
||||
type="input"
|
||||
placeholder="Search actors"
|
||||
class="input search-input"
|
||||
>
|
||||
|
||||
<button
|
||||
v-if="actorQuery?.length"
|
||||
type="button"
|
||||
class="search-cancel nobutton"
|
||||
@click="actorQuery = ''; searchActors()"
|
||||
>
|
||||
<Icon icon="cross2" />
|
||||
</button>
|
||||
</form>
|
||||
|
||||
<div class="header-actions">
|
||||
<button
|
||||
@@ -208,10 +221,16 @@ onMounted(() => {
|
||||
|
||||
<style scoped>
|
||||
.search {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
max-width: 20rem;
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.search-input {
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.header {
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
|
||||
Reference in New Issue
Block a user