Compare commits
2 Commits
815cc7694a
...
30fdbbd737
Author | SHA1 | Date |
---|---|---|
|
30fdbbd737 | |
|
17c10df1e8 |
|
@ -1,14 +1,21 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="page">
|
<div class="page">
|
||||||
<Filters :results="total">
|
<Filters :results="total">
|
||||||
<div class="filter">
|
<div class="filter search-container">
|
||||||
|
<!-- onsearch not compatible with FF and Safari -->
|
||||||
<input
|
<input
|
||||||
v-model="q"
|
v-model="q"
|
||||||
type="search"
|
type="search"
|
||||||
placeholder="Search actors"
|
placeholder="Search actors"
|
||||||
class="input search"
|
class="input search"
|
||||||
@search="search"
|
@keydown.enter="search"
|
||||||
>
|
>
|
||||||
|
|
||||||
|
<Icon
|
||||||
|
icon="search"
|
||||||
|
class="search-button"
|
||||||
|
@click="search"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<GenderFilter
|
<GenderFilter
|
||||||
|
|
|
@ -85,6 +85,28 @@ function toggleFilters(state) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.filter.search-container {
|
||||||
|
display: flex;
|
||||||
|
align-items: stretch;
|
||||||
|
|
||||||
|
.input {
|
||||||
|
flex-grow: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon {
|
||||||
|
height: auto;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
padding-left: .5rem;
|
||||||
|
fill: var(--shadow);
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
cursor: pointer;
|
||||||
|
fill: var(--primary);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.filter-mode {
|
.filter-mode {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
color: var(--shadow);
|
color: var(--shadow);
|
||||||
|
|
|
@ -7,14 +7,21 @@
|
||||||
v-if="showFilters"
|
v-if="showFilters"
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
>
|
>
|
||||||
<div class="filter">
|
<div class="filter search-container">
|
||||||
|
<!-- onsearch not compatible with FF and Safari -->
|
||||||
<input
|
<input
|
||||||
v-model="filters.search"
|
v-model="filters.search"
|
||||||
type="search"
|
type="search"
|
||||||
placeholder="Search scenes"
|
placeholder="Search scenes"
|
||||||
class="search input"
|
class="search input"
|
||||||
@search="search"
|
@keydown.enter="search"
|
||||||
>
|
>
|
||||||
|
|
||||||
|
<Icon
|
||||||
|
icon="search"
|
||||||
|
class="search-button"
|
||||||
|
@click="search"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<TagsFilter
|
<TagsFilter
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
{
|
{
|
||||||
"name": "traxxx-web",
|
"name": "traxxx-web",
|
||||||
"version": "0.17.11",
|
"version": "0.17.12",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"version": "0.17.11",
|
"version": "0.17.12",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@brillout/json-serializer": "^0.5.8",
|
"@brillout/json-serializer": "^0.5.8",
|
||||||
"@dicebear/collection": "^7.0.5",
|
"@dicebear/collection": "^7.0.5",
|
||||||
|
|
|
@ -72,5 +72,5 @@
|
||||||
"postcss-custom-media": "^10.0.2",
|
"postcss-custom-media": "^10.0.2",
|
||||||
"postcss-nesting": "^12.0.2"
|
"postcss-nesting": "^12.0.2"
|
||||||
},
|
},
|
||||||
"version": "0.17.11"
|
"version": "0.17.12"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue