Improved scene tile actors height to prevent second line leak. Improved alert action tooltip. Changed popular tag from MFM to threesome due lack of specifically tagged scenes.
This commit is contained in:
@@ -114,7 +114,11 @@ const aliasTooltipId = useId();
|
|||||||
|
|
||||||
<Icon
|
<Icon
|
||||||
v-if="actor.alias && actor.alias.name !== actor.name"
|
v-if="actor.alias && actor.alias.name !== actor.name"
|
||||||
v-tooltip="{ content: `Credited as '${actor.alias.name}'`, ariaId: aliasTooltipId }"
|
v-tooltip="{
|
||||||
|
content: `Credited as '${actor.alias.name}'`,
|
||||||
|
triggers: ['hover', 'click'],
|
||||||
|
ariaId: aliasTooltipId,
|
||||||
|
}"
|
||||||
icon="at-sign"
|
icon="at-sign"
|
||||||
class="alias"
|
class="alias"
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -243,8 +243,8 @@ const favorited = ref(props.scene.stashes.some((sceneStash) => sceneStash.id ===
|
|||||||
}
|
}
|
||||||
|
|
||||||
.actors {
|
.actors {
|
||||||
height: 1.15rem;
|
height: 1lh;
|
||||||
margin-bottom: .15rem;
|
margin-bottom: .3rem;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
white-space: pre-wrap;
|
white-space: pre-wrap;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -215,8 +215,8 @@ async function reloadStashes(newStash) {
|
|||||||
>
|
>
|
||||||
<Icon
|
<Icon
|
||||||
v-if="itemAlerted"
|
v-if="itemAlerted"
|
||||||
|
v-tooltip="`Remove ${itemAlerts.only.length} uncombined alert${itemAlerts.only.length > 1 ? 's' : ''} for '${item.title || item.name}'`"
|
||||||
icon="bell2"
|
icon="bell2"
|
||||||
:title="`Remove ${itemAlerts.only.length} uncombined alert${itemAlerts.only.length > 1 ? 's' : ''} for '${item.title || item.name}'`"
|
|
||||||
class="alert active noselect"
|
class="alert active noselect"
|
||||||
@click="removeAlert"
|
@click="removeAlert"
|
||||||
@contextmenu.prevent="showAlertDialog = true"
|
@contextmenu.prevent="showAlertDialog = true"
|
||||||
@@ -224,8 +224,8 @@ async function reloadStashes(newStash) {
|
|||||||
|
|
||||||
<Icon
|
<Icon
|
||||||
v-else-if="itemAlerts.multi.length > 0"
|
v-else-if="itemAlerts.multi.length > 0"
|
||||||
|
v-tooltip="`Set alert for '${item.title || item.name}', ${itemAlerts.multi.length} combined alert${itemAlerts.multi.length > 1 ? 's' : ''} active`"
|
||||||
icon="bell-plus"
|
icon="bell-plus"
|
||||||
:title="`Set alert for '${item.title || item.name}', ${itemAlerts.multi.length} combined alert${itemAlerts.multi.length > 1 ? 's' : ''} active`"
|
|
||||||
class="alert partial noselect"
|
class="alert partial noselect"
|
||||||
@click="alertItem"
|
@click="alertItem"
|
||||||
@contextmenu.prevent="showAlertDialog = true"
|
@contextmenu.prevent="showAlertDialog = true"
|
||||||
@@ -233,8 +233,8 @@ async function reloadStashes(newStash) {
|
|||||||
|
|
||||||
<Icon
|
<Icon
|
||||||
v-else
|
v-else
|
||||||
|
v-tooltip="domain === 'scenes' ? `Set alert for the release of '${item.title}'` : `Set alert for '${item.title || item.name}' releases`"
|
||||||
icon="bell-plus"
|
icon="bell-plus"
|
||||||
:title="`Set alert for '${item.title || item.name}' releases`"
|
|
||||||
class="alert noselect"
|
class="alert noselect"
|
||||||
@click="alertItem"
|
@click="alertItem"
|
||||||
@contextmenu.prevent="showAlertDialog = true"
|
@contextmenu.prevent="showAlertDialog = true"
|
||||||
|
|||||||
@@ -6,8 +6,7 @@ const tagSlugs = {
|
|||||||
'anal',
|
'anal',
|
||||||
'lesbian',
|
'lesbian',
|
||||||
// 'interracial',
|
// 'interracial',
|
||||||
'mff',
|
'threesome',
|
||||||
'mfm',
|
|
||||||
// 'teen',
|
// 'teen',
|
||||||
'milf',
|
'milf',
|
||||||
'blowjob',
|
'blowjob',
|
||||||
@@ -48,6 +47,7 @@ const tagSlugs = {
|
|||||||
'atm',
|
'atm',
|
||||||
],
|
],
|
||||||
group: [
|
group: [
|
||||||
|
'threesome',
|
||||||
'mfm',
|
'mfm',
|
||||||
'mff',
|
'mff',
|
||||||
'orgy',
|
'orgy',
|
||||||
@@ -73,7 +73,7 @@ const tagSlugs = {
|
|||||||
'nurse',
|
'nurse',
|
||||||
'maid',
|
'maid',
|
||||||
],
|
],
|
||||||
extreme: [
|
penetration: [
|
||||||
'dp',
|
'dp',
|
||||||
'airtight',
|
'airtight',
|
||||||
'dap',
|
'dap',
|
||||||
|
|||||||
Reference in New Issue
Block a user