2019-06-03 03:31:38 +00:00
|
|
|
<template>
|
2019-11-10 03:20:22 +00:00
|
|
|
<div
|
|
|
|
v-if="actor"
|
|
|
|
class="content actor"
|
|
|
|
>
|
2020-01-04 01:51:58 +00:00
|
|
|
<FilterBar :fetch-releases="fetchActor" />
|
2019-11-15 04:10:59 +00:00
|
|
|
|
2020-01-23 03:32:22 +00:00
|
|
|
<div class="actor-header">
|
|
|
|
<h2 class="header-name">
|
|
|
|
{{ actor.name }}
|
2020-01-25 00:26:13 +00:00
|
|
|
<Gender
|
|
|
|
:gender="actor.gender"
|
2020-01-23 03:32:22 +00:00
|
|
|
class="header-gender"
|
2020-01-25 00:26:13 +00:00
|
|
|
/>
|
2020-01-23 03:32:22 +00:00
|
|
|
</h2>
|
|
|
|
|
|
|
|
<li
|
|
|
|
v-if="actor.aliases.length"
|
|
|
|
class="bio-item"
|
|
|
|
>
|
|
|
|
<dfn class="bio-label">Also known as</dfn>
|
|
|
|
<span>{{ actor.aliases.join(', ') }}</span>
|
|
|
|
</li>
|
|
|
|
|
2020-01-24 22:36:06 +00:00
|
|
|
<Social
|
2020-01-23 03:32:22 +00:00
|
|
|
v-if="actor.social && actor.social.length > 0"
|
2020-01-24 22:36:06 +00:00
|
|
|
:actor="actor"
|
|
|
|
class="header-social"
|
|
|
|
/>
|
2020-01-23 03:32:22 +00:00
|
|
|
</div>
|
|
|
|
|
2019-11-28 04:36:22 +00:00
|
|
|
<div class="actor-inner">
|
2020-01-24 22:36:06 +00:00
|
|
|
<div
|
|
|
|
class="profile"
|
2020-01-25 00:26:13 +00:00
|
|
|
:class="{ expanded, 'with-avatar': !!actor.avatar }"
|
2020-01-24 22:36:06 +00:00
|
|
|
>
|
2019-11-28 04:36:22 +00:00
|
|
|
<a
|
|
|
|
v-if="actor.avatar"
|
|
|
|
:href="`/media/${actor.avatar.path}`"
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
class="avatar-link"
|
|
|
|
>
|
|
|
|
<img
|
|
|
|
:src="`/media/${actor.avatar.thumbnail}`"
|
2020-02-24 02:12:58 +00:00
|
|
|
:title="actor.avatar.copyright && `© ${actor.avatar.copyright}`"
|
2019-11-28 04:36:22 +00:00
|
|
|
class="avatar"
|
|
|
|
>
|
|
|
|
</a>
|
|
|
|
|
2020-01-24 22:36:06 +00:00
|
|
|
<span
|
|
|
|
v-show="expanded"
|
|
|
|
class="expand collapse-header noselect"
|
|
|
|
@click="expanded = false"
|
|
|
|
><Icon icon="arrow-up3" /></span>
|
|
|
|
|
2019-11-28 04:36:22 +00:00
|
|
|
<ul class="bio nolist">
|
|
|
|
<li
|
|
|
|
v-if="actor.birthdate"
|
|
|
|
class="bio-item"
|
|
|
|
>
|
2019-11-29 04:46:06 +00:00
|
|
|
<dfn class="bio-label"><Icon icon="cake" />Birthdate</dfn>
|
2019-11-27 03:58:38 +00:00
|
|
|
|
2019-11-28 04:36:22 +00:00
|
|
|
<span
|
|
|
|
v-if="actor.birthdate"
|
|
|
|
class="birthdate"
|
2019-12-10 21:35:00 +00:00
|
|
|
>{{ formatDate(actor.birthdate, 'MMMM D, YYYY') }}<span class="age">{{ actor.age }}</span></span>
|
2019-11-28 04:36:22 +00:00
|
|
|
</li>
|
2019-11-27 03:58:38 +00:00
|
|
|
|
2019-11-28 04:36:22 +00:00
|
|
|
<li
|
2019-11-29 04:46:06 +00:00
|
|
|
v-if="actor.origin"
|
2019-11-28 04:36:22 +00:00
|
|
|
class="bio-item birth"
|
|
|
|
>
|
2019-11-29 04:46:06 +00:00
|
|
|
<dfn class="bio-label"><Icon icon="home2" />Born in</dfn>
|
2019-11-28 04:36:22 +00:00
|
|
|
|
|
|
|
<span>
|
|
|
|
<span
|
2019-11-29 04:46:06 +00:00
|
|
|
v-if="actor.origin.city"
|
2020-01-24 22:36:06 +00:00
|
|
|
class="city hideable"
|
2019-11-29 04:46:06 +00:00
|
|
|
>{{ actor.origin.city }}</span><span
|
2019-11-30 04:55:32 +00:00
|
|
|
v-if="actor.origin.state && (!actor.origin.city || (actor.origin.country && actor.origin.country.alpha2 === 'US'))"
|
2020-01-24 22:36:06 +00:00
|
|
|
class="state hideable"
|
2019-11-29 04:46:06 +00:00
|
|
|
>{{ actor.origin.city ? `, ${actor.origin.state}` : actor.origin.state }}</span>
|
2019-11-28 04:36:22 +00:00
|
|
|
|
|
|
|
<span
|
2019-11-29 04:46:06 +00:00
|
|
|
v-if="actor.origin.country"
|
2019-11-28 04:36:22 +00:00
|
|
|
class="country birthcountry"
|
|
|
|
>
|
|
|
|
<img
|
|
|
|
class="flag"
|
2019-11-29 04:46:06 +00:00
|
|
|
:src="`/img/flags/${actor.origin.country.alpha2.toLowerCase()}.png`"
|
2019-11-30 04:55:32 +00:00
|
|
|
>{{ actor.origin.country.alias || actor.origin.country.name }}
|
2019-11-28 04:36:22 +00:00
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<li
|
2019-11-29 04:46:06 +00:00
|
|
|
v-if="actor.residence"
|
2019-11-28 04:36:22 +00:00
|
|
|
class="bio-item residence"
|
|
|
|
>
|
2019-11-29 04:46:06 +00:00
|
|
|
<dfn class="bio-label"><Icon icon="location" />Lives in</dfn>
|
2019-11-28 04:36:22 +00:00
|
|
|
|
|
|
|
<span>
|
|
|
|
<span
|
2019-11-29 04:46:06 +00:00
|
|
|
v-if="actor.residence.city"
|
2020-01-24 22:36:06 +00:00
|
|
|
class="city hideable"
|
2019-11-29 04:46:06 +00:00
|
|
|
>{{ actor.residence.city }}</span><span
|
|
|
|
v-if="actor.residence.state && actor.residence.country && actor.residence.country.alpha2 === 'US'"
|
2020-01-24 22:36:06 +00:00
|
|
|
class="state hideable"
|
2019-11-29 04:46:06 +00:00
|
|
|
>{{ actor.residence.city ? `, ${actor.residence.state}` : actor.residence.state }}</span>
|
2019-11-28 04:36:22 +00:00
|
|
|
|
|
|
|
<span
|
2019-11-29 04:46:06 +00:00
|
|
|
v-if="actor.residence.country"
|
2019-11-28 04:36:22 +00:00
|
|
|
class="country"
|
|
|
|
>
|
|
|
|
<img
|
|
|
|
class="flag"
|
2019-11-29 04:46:06 +00:00
|
|
|
:src="`/img/flags/${actor.residence.country.alpha2.toLowerCase()}.png`"
|
2019-11-30 04:55:32 +00:00
|
|
|
>{{ actor.residence.country.alias || actor.residence.country.name }}
|
2019-11-28 04:36:22 +00:00
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<li
|
|
|
|
v-if="actor.ethnicity"
|
2020-01-24 22:36:06 +00:00
|
|
|
class="bio-item ethnicity hideable"
|
2019-11-28 04:36:22 +00:00
|
|
|
>
|
2019-11-29 04:46:06 +00:00
|
|
|
<dfn class="bio-label"><Icon icon="earth2" />Ethnicity</dfn>
|
2019-11-28 04:36:22 +00:00
|
|
|
<span>{{ actor.ethnicity }}</span>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<li
|
|
|
|
v-if="actor.bust || actor.waist || actor.hip"
|
|
|
|
title="bust-waist-hip"
|
|
|
|
class="bio-item"
|
2019-11-27 03:58:38 +00:00
|
|
|
>
|
2020-01-13 22:45:09 +00:00
|
|
|
<dfn class="bio-label"><Icon icon="ruler" />Figure</dfn>
|
2019-11-28 04:36:22 +00:00
|
|
|
<span>
|
|
|
|
<Icon
|
|
|
|
v-if="actor.naturalBoobs === false"
|
|
|
|
v-tooltip="'Boobs enhanced'"
|
|
|
|
icon="magic-wand"
|
|
|
|
class="enhanced"
|
|
|
|
/>{{ actor.bust || '??' }}-{{ actor.waist || '??' }}-{{ actor.hip || '??' }}
|
|
|
|
</span>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<li
|
|
|
|
v-if="actor.height"
|
|
|
|
class="bio-item height"
|
|
|
|
>
|
2019-11-29 04:46:06 +00:00
|
|
|
<dfn class="bio-label"><Icon icon="height" />Height</dfn>
|
2019-11-28 04:36:22 +00:00
|
|
|
<span>
|
2019-12-16 01:39:13 +00:00
|
|
|
<span class="height-metric">{{ actor.height.metric }} cm</span>
|
|
|
|
<span class="height-imperial">{{ actor.height.imperial }}</span>
|
2019-11-28 04:36:22 +00:00
|
|
|
</span>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<li
|
|
|
|
v-if="actor.weight"
|
2020-01-24 22:36:06 +00:00
|
|
|
class="bio-item weight hideable"
|
2019-11-28 04:36:22 +00:00
|
|
|
>
|
2019-11-29 04:46:06 +00:00
|
|
|
<dfn class="bio-label"><Icon icon="scale" />Weight</dfn>
|
2019-11-28 04:36:22 +00:00
|
|
|
|
|
|
|
<span>
|
2019-12-16 01:39:13 +00:00
|
|
|
<span class="weight-metric">{{ actor.weight.metric }} kg</span>
|
|
|
|
<span class="weight-imperial">{{ actor.weight.imperial }} lbs</span>
|
2019-11-28 04:36:22 +00:00
|
|
|
</span>
|
|
|
|
</li>
|
|
|
|
|
2019-11-29 04:46:06 +00:00
|
|
|
<li
|
|
|
|
v-if="actor.hasTattoos"
|
2020-01-24 22:36:06 +00:00
|
|
|
class="bio-item tattoos hideable"
|
2019-11-29 04:46:06 +00:00
|
|
|
>
|
|
|
|
<dfn class="bio-label"><Icon icon="flower" />Tattoos</dfn>
|
|
|
|
|
|
|
|
<span
|
|
|
|
v-if="actor.tattoos"
|
|
|
|
v-tooltip="actor.tattoos"
|
|
|
|
class="bio-value"
|
|
|
|
>{{ actor.tattoos }}</span>
|
|
|
|
<span v-else>Yes</span>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<li
|
|
|
|
v-if="actor.hasPiercings"
|
2020-01-24 22:36:06 +00:00
|
|
|
class="bio-item piercings hideable"
|
2019-11-29 04:46:06 +00:00
|
|
|
>
|
|
|
|
<dfn class="bio-label"><Icon icon="trophy4" />Piercings</dfn>
|
|
|
|
|
|
|
|
<span
|
|
|
|
v-if="actor.piercings"
|
|
|
|
v-tooltip="actor.piercings"
|
|
|
|
class="bio-value"
|
|
|
|
>{{ actor.piercings }}</span>
|
|
|
|
<span v-else>Yes</span>
|
|
|
|
</li>
|
|
|
|
|
2020-02-14 01:30:43 +00:00
|
|
|
<li class="bio-item scraped hideable">Updated {{ formatDate(actor.scrapedAt, 'YYYY-MM-DD HH:mm') }}, ID: {{ actor.id }}</li>
|
2019-11-28 04:36:22 +00:00
|
|
|
</ul>
|
|
|
|
|
2020-01-24 22:36:06 +00:00
|
|
|
<span
|
|
|
|
v-show="!expanded"
|
|
|
|
class="expand expand-header collapse-header noselect"
|
|
|
|
@click="expanded = true"
|
|
|
|
><Icon icon="arrow-down3" /></span>
|
|
|
|
|
2020-01-23 03:32:22 +00:00
|
|
|
<p
|
|
|
|
v-if="actor.description"
|
|
|
|
class="description"
|
|
|
|
>{{ actor.description }}</p>
|
2019-11-28 04:36:22 +00:00
|
|
|
|
2020-01-24 22:36:06 +00:00
|
|
|
<Social
|
|
|
|
v-if="actor.social && actor.social.length > 0"
|
|
|
|
:actor="actor"
|
|
|
|
class="profile-social"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<span
|
|
|
|
v-show="expanded"
|
|
|
|
class="expand expand-header collapse-header noselect"
|
|
|
|
@click="expanded = false"
|
|
|
|
><Icon icon="arrow-up3" /></span>
|
|
|
|
</div>
|
2019-11-28 04:36:22 +00:00
|
|
|
|
|
|
|
<div class="actor-content">
|
|
|
|
<div
|
2020-01-09 16:16:28 +00:00
|
|
|
v-if="actor.avatar || (actor.photos && actor.photos.length > 0)"
|
2019-11-28 04:36:22 +00:00
|
|
|
class="photos-container"
|
|
|
|
>
|
2019-11-30 04:55:32 +00:00
|
|
|
<Photos :actor="actor" />
|
2019-11-28 04:36:22 +00:00
|
|
|
|
2019-11-30 04:55:32 +00:00
|
|
|
<Photos
|
|
|
|
:actor="actor"
|
2020-01-24 22:36:06 +00:00
|
|
|
:class="{ expanded }"
|
2019-11-30 04:55:32 +00:00
|
|
|
class="compact"
|
|
|
|
/>
|
2019-11-27 03:58:38 +00:00
|
|
|
</div>
|
2019-11-20 03:53:36 +00:00
|
|
|
|
2019-12-31 02:12:52 +00:00
|
|
|
<Releases :releases="actor.releases" />
|
2019-11-28 04:36:22 +00:00
|
|
|
</div>
|
2019-11-10 03:20:22 +00:00
|
|
|
</div>
|
2019-06-03 03:31:38 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
2019-11-10 03:20:22 +00:00
|
|
|
|
|
|
|
<script>
|
2019-11-30 04:55:32 +00:00
|
|
|
import Photos from './photos.vue';
|
2019-11-15 04:10:59 +00:00
|
|
|
import FilterBar from '../header/filter-bar.vue';
|
2019-11-16 02:33:36 +00:00
|
|
|
import Releases from '../releases/releases.vue';
|
2020-01-25 00:26:13 +00:00
|
|
|
import Gender from './gender.vue';
|
2020-01-24 22:36:06 +00:00
|
|
|
import Social from './social.vue';
|
2019-11-10 03:20:22 +00:00
|
|
|
|
2020-01-04 01:51:58 +00:00
|
|
|
async function fetchActor() {
|
|
|
|
this.actor = await this.$store.dispatch('fetchActors', { actorSlug: this.$route.params.actorSlug });
|
2019-11-15 04:10:59 +00:00
|
|
|
}
|
|
|
|
|
2019-11-28 04:36:22 +00:00
|
|
|
function scrollPhotos(event) {
|
|
|
|
event.currentTarget.scrollLeft += event.deltaY; // eslint-disable-line no-param-reassign
|
|
|
|
}
|
|
|
|
|
2019-11-15 04:10:59 +00:00
|
|
|
async function mounted() {
|
2020-01-23 03:32:22 +00:00
|
|
|
await this.fetchActor();
|
2019-12-31 02:12:52 +00:00
|
|
|
|
2019-11-29 04:46:06 +00:00
|
|
|
if (this.actor) {
|
|
|
|
this.pageTitle = this.actor.name;
|
|
|
|
}
|
2019-11-10 03:20:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
2019-11-15 04:10:59 +00:00
|
|
|
FilterBar,
|
2019-11-30 04:55:32 +00:00
|
|
|
Photos,
|
2019-11-16 02:33:36 +00:00
|
|
|
Releases,
|
2020-01-25 00:26:13 +00:00
|
|
|
Gender,
|
2020-01-24 22:36:06 +00:00
|
|
|
Social,
|
2019-11-10 03:20:22 +00:00
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
actor: null,
|
|
|
|
releases: null,
|
|
|
|
pageTitle: null,
|
2019-11-28 04:36:22 +00:00
|
|
|
expanded: false,
|
2019-11-10 03:20:22 +00:00
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted,
|
2019-11-15 04:10:59 +00:00
|
|
|
methods: {
|
2020-01-04 01:51:58 +00:00
|
|
|
fetchActor,
|
2019-11-28 04:36:22 +00:00
|
|
|
scrollPhotos,
|
2019-11-15 04:10:59 +00:00
|
|
|
},
|
2019-11-10 03:20:22 +00:00
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
2020-01-26 22:10:08 +00:00
|
|
|
<style lang="scss">
|
|
|
|
.header-gender .icon {
|
|
|
|
width: 1.25rem;
|
|
|
|
height: 1.25rem;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
2019-11-10 03:20:22 +00:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
@import 'theme';
|
|
|
|
|
2020-01-23 03:32:22 +00:00
|
|
|
.actor-header {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
color: $highlight-extreme;
|
|
|
|
background: $profile;
|
|
|
|
padding: .75rem 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-name {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
display: inline-flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
flex-shrink: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-gender {
|
|
|
|
display: inline-block;
|
2020-01-23 21:45:46 +00:00
|
|
|
margin: 0 0 0 .5rem;
|
2020-01-23 03:32:22 +00:00
|
|
|
transform: translate(0, .1rem);
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-social {
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
margin: 0 1rem 0 0;
|
|
|
|
}
|
|
|
|
|
2019-11-28 04:36:22 +00:00
|
|
|
.actor-inner {
|
|
|
|
height: 100%;
|
2019-11-10 03:20:22 +00:00
|
|
|
display: flex;
|
2019-11-28 04:36:22 +00:00
|
|
|
flex-direction: column;
|
|
|
|
padding: 0;
|
|
|
|
overflow-x: auto;
|
2019-11-10 03:20:22 +00:00
|
|
|
}
|
|
|
|
|
2019-11-28 04:36:22 +00:00
|
|
|
.profile {
|
|
|
|
background: $profile;
|
|
|
|
color: $highlight-extreme;
|
|
|
|
width: 100%;
|
2020-01-24 22:46:44 +00:00
|
|
|
max-height: 18rem;
|
2019-11-28 04:36:22 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
2020-01-25 00:26:13 +00:00
|
|
|
&.with-avatar {
|
|
|
|
height: 18rem; /* profile overlaps avatar in chrome */
|
|
|
|
}
|
|
|
|
|
2019-11-28 04:36:22 +00:00
|
|
|
.avatar-link {
|
|
|
|
font-size: 0;
|
2020-01-23 02:52:12 +00:00
|
|
|
padding: 0 0 1rem 1rem;
|
2020-02-12 03:39:57 +00:00
|
|
|
flex-shrink: 0;
|
2019-11-28 04:36:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.avatar {
|
2020-01-23 02:52:12 +00:00
|
|
|
height: 100%;
|
2019-11-28 04:36:22 +00:00
|
|
|
flex-shrink: 0;
|
2020-01-23 02:52:12 +00:00
|
|
|
margin: 0 .5rem 0 0;
|
2019-11-28 04:36:22 +00:00
|
|
|
}
|
2019-11-10 03:20:22 +00:00
|
|
|
}
|
|
|
|
|
2019-11-28 04:36:22 +00:00
|
|
|
.bio {
|
|
|
|
flex-grow: 1;
|
2020-01-23 02:52:12 +00:00
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex-wrap: wrap;
|
2019-11-28 04:36:22 +00:00
|
|
|
box-sizing: border-box;
|
2020-01-23 02:52:12 +00:00
|
|
|
overflow: hidden;
|
2019-11-28 04:36:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.bio-header {
|
2020-01-23 02:52:12 +00:00
|
|
|
width: calc(50% - 2rem);
|
2019-11-28 04:36:22 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
2020-01-23 02:52:12 +00:00
|
|
|
padding: 0 .5rem .5rem 0;
|
|
|
|
margin: 0 0 0 1rem;
|
2019-11-10 03:20:22 +00:00
|
|
|
}
|
|
|
|
|
2019-11-28 04:36:22 +00:00
|
|
|
.bio-item {
|
2020-01-23 03:32:22 +00:00
|
|
|
width: calc(50% - 4rem);
|
2019-11-28 04:36:22 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
2020-01-23 02:52:12 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
padding: .25rem 0 ;
|
|
|
|
margin: 0 0 .25rem 1rem;
|
2019-11-28 04:36:22 +00:00
|
|
|
line-height: 1.75;
|
|
|
|
text-align: right;
|
|
|
|
font-size: .9rem;
|
2019-11-30 04:55:32 +00:00
|
|
|
font-weight: 600;
|
2020-01-23 02:52:12 +00:00
|
|
|
overflow: hidden;
|
2019-11-30 04:55:32 +00:00
|
|
|
|
|
|
|
&:not(:last-of-type) {
|
|
|
|
border-bottom: solid 1px $highlight-hint;
|
|
|
|
}
|
2019-11-28 04:36:22 +00:00
|
|
|
}
|
|
|
|
|
2019-11-29 04:46:06 +00:00
|
|
|
.bio-label {
|
2019-11-28 04:36:22 +00:00
|
|
|
color: $highlight;
|
2019-11-29 04:46:06 +00:00
|
|
|
margin: 0 1rem 0 0;
|
|
|
|
flex-shrink: 0;
|
2019-11-28 04:36:22 +00:00
|
|
|
font-style: normal;
|
2019-11-30 04:55:32 +00:00
|
|
|
font-weight: 400;
|
2019-11-28 04:36:22 +00:00
|
|
|
|
|
|
|
.icon {
|
|
|
|
fill: $highlight;
|
2019-11-30 04:55:32 +00:00
|
|
|
margin: 0 .5rem 0 0;
|
2019-11-28 04:36:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-29 04:46:06 +00:00
|
|
|
.bio-value {
|
2020-01-24 22:36:06 +00:00
|
|
|
margin: 0 0 0 2rem;
|
2019-11-29 04:46:06 +00:00
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2019-11-28 04:36:22 +00:00
|
|
|
.flag {
|
|
|
|
margin: 0 .25rem 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bio-name {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.birthdate {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.age {
|
|
|
|
font-weight: bold;
|
|
|
|
padding: 0 0 0 .5rem;
|
|
|
|
border-left: solid 1px $highlight-weak;
|
|
|
|
margin: 0 0 0 .5rem;
|
2019-11-20 03:53:36 +00:00
|
|
|
}
|
|
|
|
|
2019-11-28 04:36:22 +00:00
|
|
|
.country {
|
2019-11-27 03:58:38 +00:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2019-11-28 04:36:22 +00:00
|
|
|
.height-imperial,
|
|
|
|
.weight-imperial {
|
|
|
|
padding: 0 0 0 .5rem;
|
|
|
|
border-left: solid 1px $highlight-weak;
|
|
|
|
margin: 0 0 0 .5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.enhanced.icon {
|
|
|
|
fill: $primary;
|
|
|
|
padding: 0 .5rem;
|
|
|
|
}
|
|
|
|
|
2020-01-24 22:36:06 +00:00
|
|
|
.ethnicity {
|
|
|
|
text-transform: capitalize;
|
|
|
|
}
|
|
|
|
|
2019-11-30 04:55:32 +00:00
|
|
|
.scraped {
|
|
|
|
color: $highlight-weak;
|
|
|
|
font-size: .8rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.description {
|
2020-01-23 03:32:22 +00:00
|
|
|
max-width: 30rem;
|
2019-11-30 04:55:32 +00:00
|
|
|
max-height: 12rem;
|
2019-11-28 04:36:22 +00:00
|
|
|
position: relative;
|
2019-11-29 04:46:06 +00:00
|
|
|
display: block;
|
2020-01-23 03:32:22 +00:00
|
|
|
flex-grow: 1;
|
2019-11-28 04:36:22 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
margin: 0 2rem 0 0;
|
|
|
|
line-height: 1.5;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
font-size: .9rem;
|
2019-11-29 04:46:06 +00:00
|
|
|
overflow: auto;
|
|
|
|
scrollbar-width: none;
|
2019-11-28 04:36:22 +00:00
|
|
|
|
2019-11-29 04:46:06 +00:00
|
|
|
&::-webkit-scrollbar {
|
|
|
|
display: none;
|
2019-11-28 04:36:22 +00:00
|
|
|
}
|
2019-11-27 03:58:38 +00:00
|
|
|
}
|
|
|
|
|
2019-11-28 04:36:22 +00:00
|
|
|
.actor-content {
|
|
|
|
display: flex;
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
.heading {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0 0 1rem 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.photos-container {
|
|
|
|
min-width: 15rem;
|
|
|
|
box-sizing: border-box;
|
|
|
|
border-right: solid 1px $shadow-hint;
|
|
|
|
padding: 1rem 1.5rem 1rem 1rem;
|
|
|
|
margin: 0 .5rem 0 0;
|
|
|
|
}
|
|
|
|
|
2019-11-30 04:55:32 +00:00
|
|
|
.photos.compact {
|
|
|
|
display: none;
|
2019-11-17 02:56:45 +00:00
|
|
|
}
|
2019-11-27 03:58:38 +00:00
|
|
|
|
|
|
|
.releases {
|
|
|
|
flex-grow: 1;
|
2019-11-28 04:36:22 +00:00
|
|
|
padding: 1rem;
|
|
|
|
}
|
|
|
|
|
2020-01-24 22:36:06 +00:00
|
|
|
.profile-social {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2020-01-24 22:43:07 +00:00
|
|
|
.expand,
|
2020-01-24 22:36:06 +00:00
|
|
|
.collapse-header {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2019-11-28 04:36:22 +00:00
|
|
|
@media(max-width: $breakpoint4) {
|
|
|
|
.description {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media(max-width: $breakpoint3) {
|
2020-01-23 03:32:22 +00:00
|
|
|
.profile .avatar-link {
|
2019-11-28 04:36:22 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.actor-content {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.photos-container {
|
|
|
|
border: none;
|
|
|
|
border-bottom: solid 1px $shadow-hint;
|
|
|
|
margin: 0 0 .5rem 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.photos {
|
2019-11-30 04:55:32 +00:00
|
|
|
display: none;
|
2019-11-28 04:36:22 +00:00
|
|
|
}
|
|
|
|
|
2019-11-30 04:55:32 +00:00
|
|
|
.photos.compact {
|
|
|
|
display: flex;
|
2019-11-28 04:36:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media(max-width: $breakpoint) {
|
|
|
|
.profile {
|
2020-01-23 03:32:22 +00:00
|
|
|
height: auto;
|
2020-01-26 22:10:08 +00:00
|
|
|
max-height: none;
|
2019-11-28 04:36:22 +00:00
|
|
|
flex-direction: column;
|
|
|
|
padding: 0 0 .5rem 0;
|
2020-01-24 22:36:06 +00:00
|
|
|
|
2020-01-26 22:10:08 +00:00
|
|
|
&.with-avatar {
|
|
|
|
height: auto;
|
|
|
|
max-height: none;
|
|
|
|
}
|
|
|
|
|
2020-01-24 22:36:06 +00:00
|
|
|
&:not(.expanded) .hideable {
|
|
|
|
display: none;
|
|
|
|
}
|
2019-11-28 04:36:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.bio {
|
|
|
|
width: 100%;
|
2020-01-24 22:36:06 +00:00
|
|
|
height: auto;
|
2019-11-28 04:36:22 +00:00
|
|
|
padding: 0 1rem;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2020-01-23 03:32:22 +00:00
|
|
|
.bio-item {
|
2020-01-24 22:36:06 +00:00
|
|
|
width: 100%;
|
2020-01-23 03:32:22 +00:00
|
|
|
margin: 0;
|
2019-11-28 04:36:22 +00:00
|
|
|
}
|
|
|
|
|
2020-01-24 22:43:07 +00:00
|
|
|
.expand,
|
2020-01-24 22:36:06 +00:00
|
|
|
.expand-header {
|
2020-01-24 22:43:07 +00:00
|
|
|
display: flex;
|
2020-01-24 22:36:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.expanded .description {
|
|
|
|
display: block;
|
|
|
|
max-width: 100%;
|
|
|
|
max-height: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0 1rem;
|
|
|
|
overflow: bisible;
|
|
|
|
}
|
|
|
|
|
|
|
|
.expanded {
|
|
|
|
.collapse-header {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bio-value {
|
|
|
|
white-space: normal;
|
|
|
|
}
|
2019-11-28 04:36:22 +00:00
|
|
|
}
|
2020-01-23 03:32:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media(max-width: $breakpoint0) {
|
|
|
|
.header-social {
|
|
|
|
display: none;
|
|
|
|
}
|
2019-11-28 04:36:22 +00:00
|
|
|
|
2020-01-24 22:36:06 +00:00
|
|
|
.expanded .profile-social {
|
|
|
|
display: block;
|
|
|
|
margin: 1rem 0 0 0;
|
|
|
|
}
|
|
|
|
|
2020-01-23 03:32:22 +00:00
|
|
|
.header-name {
|
|
|
|
flex-grow: 1;
|
2019-11-28 04:36:22 +00:00
|
|
|
}
|
2019-11-27 03:58:38 +00:00
|
|
|
}
|
2019-11-10 03:20:22 +00:00
|
|
|
</style>
|