improve the looks of bot indicator
This commit is contained in:
parent
4e2fd7baf9
commit
9478a462a7
1 changed files with 63 additions and 41 deletions
|
@ -1,24 +1,28 @@
|
||||||
<template>
|
<template>
|
||||||
<StillImage
|
<span
|
||||||
v-if="user"
|
|
||||||
class="Avatar"
|
class="Avatar"
|
||||||
:alt="user.screen_name_ui"
|
:class="{ '-compact': compact }"
|
||||||
:title="user.screen_name_ui"
|
>
|
||||||
:src="imgSrc(user.profile_image_url_original)"
|
<StillImage
|
||||||
:class="{ 'avatar-compact': compact, 'better-shadow': betterShadow }"
|
v-if="user"
|
||||||
:image-load-error="imageLoadError"
|
class="avatar"
|
||||||
>
|
:alt="user.screen_name_ui"
|
||||||
|
:title="user.screen_name_ui"
|
||||||
|
:src="imgSrc(user.profile_image_url_original)"
|
||||||
|
:image-load-error="imageLoadError"
|
||||||
|
:class="{ '-compact': compact, '-better-shadow': betterShadow }"
|
||||||
|
/>
|
||||||
|
<div
|
||||||
|
v-else
|
||||||
|
class="avatar -placeholder"
|
||||||
|
:class="{ '-compact': compact }"
|
||||||
|
/>
|
||||||
<FAIcon
|
<FAIcon
|
||||||
v-if="bot"
|
v-if="bot"
|
||||||
icon="robot"
|
icon="robot"
|
||||||
class="bot-indicator"
|
class="bot-indicator"
|
||||||
/>
|
/>
|
||||||
</StillImage>
|
</span>
|
||||||
<div
|
|
||||||
v-else
|
|
||||||
class="Avatar -placeholder"
|
|
||||||
:class="{ 'avatar-compact': compact }"
|
|
||||||
/>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script src="./user_avatar.js"></script>
|
<script src="./user_avatar.js"></script>
|
||||||
|
@ -31,42 +35,60 @@
|
||||||
--_avatarShadowInset: var(--avatarStatusShadowInset);
|
--_avatarShadowInset: var(--avatarStatusShadowInset);
|
||||||
--_still-image-label-visibility: hidden;
|
--_still-image-label-visibility: hidden;
|
||||||
|
|
||||||
|
display: inline-block;
|
||||||
|
position: relative;
|
||||||
width: 48px;
|
width: 48px;
|
||||||
height: 48px;
|
height: 48px;
|
||||||
box-shadow: var(--_avatarShadowBox);
|
|
||||||
border-radius: $fallback--avatarRadius;
|
|
||||||
border-radius: var(--avatarRadius, $fallback--avatarRadius);
|
|
||||||
|
|
||||||
img {
|
&.-compact {
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
& > .bot-indicator {
|
|
||||||
position: absolute;
|
|
||||||
bottom: 0;
|
|
||||||
right: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.better-shadow {
|
|
||||||
box-shadow: var(--_avatarShadowInset);
|
|
||||||
filter: var(--_avatarShadowFilter);
|
|
||||||
}
|
|
||||||
|
|
||||||
&.animated::before {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.avatar-compact {
|
|
||||||
width: 32px;
|
width: 32px;
|
||||||
height: 32px;
|
height: 32px;
|
||||||
border-radius: $fallback--avatarAltRadius;
|
border-radius: $fallback--avatarAltRadius;
|
||||||
border-radius: var(--avatarAltRadius, $fallback--avatarAltRadius);
|
border-radius: var(--avatarAltRadius, $fallback--avatarAltRadius);
|
||||||
}
|
}
|
||||||
|
|
||||||
&.-placeholder {
|
.avatar {
|
||||||
background-color: $fallback--fg;
|
width: 100%;
|
||||||
background-color: var(--fg, $fallback--fg);
|
height: 100%;
|
||||||
|
box-shadow: var(--_avatarShadowBox);
|
||||||
|
border-radius: $fallback--avatarRadius;
|
||||||
|
border-radius: var(--avatarRadius, $fallback--avatarRadius);
|
||||||
|
|
||||||
|
&.-better-shadow {
|
||||||
|
box-shadow: var(--_avatarShadowInset);
|
||||||
|
filter: var(--_avatarShadowFilter);
|
||||||
|
}
|
||||||
|
|
||||||
|
&.-animated::before {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.-compact {
|
||||||
|
border-radius: $fallback--avatarAltRadius;
|
||||||
|
border-radius: var(--avatarAltRadius, $fallback--avatarAltRadius);
|
||||||
|
}
|
||||||
|
|
||||||
|
&.-placeholder {
|
||||||
|
background-color: $fallback--fg;
|
||||||
|
background-color: var(--fg, $fallback--fg);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bot-indicator {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
right: 0;
|
||||||
|
margin: -0.2em;
|
||||||
|
padding: 0.2em;
|
||||||
|
background: rgba(127, 127, 127, 0.5);
|
||||||
|
color: #fff;
|
||||||
|
border-radius: var(--tooltipRadius);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in a new issue