Fixed profile location interpolation. Generalizing ethnicity, hair color and eye color.

This commit is contained in:
2020-05-19 01:10:32 +02:00
parent 4826ae8571
commit 0c4628677f
16 changed files with 1976 additions and 1862 deletions

View File

@@ -190,6 +190,22 @@
</span>
</li>
<li
v-if="actor.eyes"
class="bio-item eyes hideable"
>
<dfn class="bio-label"><Icon icon="eye" />Eyes</dfn>
<span>{{ actor.eyes }}</span>
</li>
<li
v-if="actor.hair"
class="bio-item hair hideable"
>
<dfn class="bio-label"><Icon icon="haircut" />Hair</dfn>
<span>{{ actor.hair }}</span>
</li>
<li
v-if="actor.hasTattoos"
class="bio-item tattoos hideable"
@@ -513,7 +529,9 @@ export default {
transform: scaleX(-1);
}
.ethnicity {
.ethnicity,
.hair,
.eyes {
text-transform: capitalize;
}