Compare commits

..

No commits in common. "5525284818e57e3973264c49d90d4d74b5bc6b7a" and "26546bea33c2fded848d4c019f658c30a9954d96" have entirely different histories.

6 changed files with 3 additions and 35 deletions

View File

@ -46,19 +46,6 @@ onMounted(() => emit('open'));
border-radius: 0 0 .25rem .25rem; border-radius: 0 0 .25rem .25rem;
background: var(--background); background: var(--background);
} }
.dialog-heading {
color: var(--primary);
margin: 0 0 .5rem 0;
font-size: 1rem;
}
.dialog-description {
margin: 0 0 .5rem 0;
color: var(--shadow-strong-10);
font-size: .9rem;
line-height: 1.5;
}
</style> </style>
<style scoped> <style scoped>

View File

@ -71,11 +71,6 @@ defineEmits(['change']);
} }
} }
.check-container.minus .check::after {
border-left: none;
transform: scaleX(0);
}
.check-cross .check::before { .check-cross .check::before {
content: ''; content: '';
width: 100%; width: 100%;
@ -98,14 +93,6 @@ defineEmits(['change']);
} }
} }
.check-container.minus .check-checkbox:checked + .check {
background: var(--error);
&::after {
transform: scaleX(1);
}
}
.check-label { .check-label {
overflow: hidden; overflow: hidden;
text-transform: capitalize; text-transform: capitalize;

View File

@ -2,10 +2,6 @@
<Dialog title="Settings"> <Dialog title="Settings">
<div class="dialog-body"> <div class="dialog-body">
<div class="dialog-section"> <div class="dialog-section">
<h3 class="dialog-heading">Filter</h3>
<p class="dialog-description">Check the tags that you prefer to be <strong>excluded</strong> from the results. The filter is a courtesy, and provides no guarantees.</p>
<ul class="tags nolist"> <ul class="tags nolist">
<li <li
v-for="tag in tags" v-for="tag in tags"
@ -15,7 +11,6 @@
<label class="tag noselect"> <label class="tag noselect">
<Checkbox <Checkbox
:checked="checkedTags.has(tag)" :checked="checkedTags.has(tag)"
class="minus"
@change="(checked) => toggleTag(tag, checked)" @change="(checked) => toggleTag(tag, checked)"
/>{{ tag }} />{{ tag }}
</label> </label>

4
package-lock.json generated
View File

@ -1,11 +1,11 @@
{ {
"name": "traxxx-web", "name": "traxxx-web",
"version": "0.18.3", "version": "0.18.2",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"version": "0.18.3", "version": "0.18.2",
"dependencies": { "dependencies": {
"@brillout/json-serializer": "^0.5.8", "@brillout/json-serializer": "^0.5.8",
"@dicebear/collection": "^7.0.5", "@dicebear/collection": "^7.0.5",

View File

@ -74,5 +74,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.18.3" "version": "0.18.2"
} }

View File

@ -35,7 +35,6 @@ export async function curateScenesQuery(query) {
notEntityIds, notEntityIds,
movieId: Number(query.movieId) || null, movieId: Number(query.movieId) || null,
stashId: Number(query.stashId) || null, stashId: Number(query.stashId) || null,
isShowcased: query.isShowcased ?? true,
}; };
} }