2016-11-30 22:27:19 +01:00
|
|
|
<template>
|
2019-07-11 02:59:10 +02:00
|
|
|
<div
|
|
|
|
class="user-card"
|
|
|
|
:class="classes"
|
|
|
|
>
|
2019-09-25 19:23:55 +02:00
|
|
|
<div
|
|
|
|
:class="{ 'hide-bio': hideBio }"
|
|
|
|
:style="style"
|
|
|
|
class="background-image"
|
|
|
|
/>
|
2019-07-11 02:59:10 +02:00
|
|
|
<div class="panel-heading">
|
|
|
|
<div class="user-info">
|
|
|
|
<div class="container">
|
2019-07-22 22:58:20 +02:00
|
|
|
<a
|
2019-07-25 21:14:44 +02:00
|
|
|
v-if="allowZoomingAvatar"
|
2019-07-22 22:58:20 +02:00
|
|
|
class="user-info-avatar-link"
|
2019-07-25 21:14:44 +02:00
|
|
|
@click="zoomAvatar"
|
2019-07-22 22:58:20 +02:00
|
|
|
>
|
|
|
|
<UserAvatar
|
|
|
|
:better-shadow="betterShadow"
|
|
|
|
:user="user"
|
|
|
|
/>
|
2019-07-25 21:49:02 +02:00
|
|
|
<div class="user-info-avatar-link-overlay">
|
2020-10-20 23:31:16 +02:00
|
|
|
<FAIcon
|
2020-10-28 20:31:16 +01:00
|
|
|
class="fa-scale-110 fa-old-padding"
|
2020-10-20 23:31:16 +02:00
|
|
|
icon="search-plus"
|
|
|
|
/>
|
2019-07-25 21:49:02 +02:00
|
|
|
</div>
|
2019-07-22 22:58:20 +02:00
|
|
|
</a>
|
|
|
|
<router-link
|
|
|
|
v-else
|
|
|
|
:to="userProfileLink(user)"
|
|
|
|
>
|
2019-07-11 02:59:10 +02:00
|
|
|
<UserAvatar
|
|
|
|
:better-shadow="betterShadow"
|
|
|
|
:user="user"
|
|
|
|
/>
|
|
|
|
</router-link>
|
|
|
|
<div class="user-summary">
|
|
|
|
<div class="top-line">
|
2021-08-13 12:06:42 +02:00
|
|
|
<RichContent
|
2019-07-11 02:59:10 +02:00
|
|
|
:title="user.name"
|
|
|
|
class="user-name"
|
2021-08-13 12:06:42 +02:00
|
|
|
:html="user.name"
|
|
|
|
:emoji="user.emoji"
|
2019-07-11 02:59:10 +02:00
|
|
|
/>
|
2021-04-07 21:42:34 +02:00
|
|
|
<button
|
2021-06-17 21:29:58 +02:00
|
|
|
v-if="!isOtherUser && user.is_local"
|
|
|
|
class="button-unstyled edit-profile-button"
|
|
|
|
@click.stop="openProfileTab"
|
|
|
|
>
|
|
|
|
<FAIcon
|
|
|
|
fixed-width
|
|
|
|
class="icon"
|
|
|
|
icon="edit"
|
|
|
|
:title="$t('user_card.edit_profile')"
|
|
|
|
/>
|
|
|
|
</button>
|
2021-08-16 00:41:52 +02:00
|
|
|
<a
|
2019-07-11 02:59:10 +02:00
|
|
|
v-if="isOtherUser && !user.is_local"
|
|
|
|
:href="user.statusnet_profile_url"
|
|
|
|
target="_blank"
|
2021-04-07 21:42:34 +02:00
|
|
|
class="button-unstyled external-link-button"
|
2019-07-11 02:59:10 +02:00
|
|
|
>
|
2020-10-20 23:31:16 +02:00
|
|
|
<FAIcon
|
|
|
|
class="icon"
|
|
|
|
icon="external-link-alt"
|
|
|
|
/>
|
2022-03-16 21:02:44 +01:00
|
|
|
</a>
|
2019-10-11 15:52:26 +02:00
|
|
|
<AccountActions
|
|
|
|
v-if="isOtherUser && loggedIn"
|
|
|
|
:user="user"
|
2020-04-21 22:27:51 +02:00
|
|
|
:relationship="relationship"
|
2019-10-11 15:52:26 +02:00
|
|
|
/>
|
2019-07-11 02:59:10 +02:00
|
|
|
</div>
|
|
|
|
<div class="bottom-line">
|
|
|
|
<router-link
|
|
|
|
class="user-screen-name"
|
2021-02-26 15:23:11 +01:00
|
|
|
:title="user.screen_name_ui"
|
2019-07-11 02:59:10 +02:00
|
|
|
:to="userProfileLink(user)"
|
|
|
|
>
|
2021-02-26 15:23:11 +01:00
|
|
|
@{{ user.screen_name_ui }}
|
2019-07-11 02:59:10 +02:00
|
|
|
</router-link>
|
2020-06-21 15:02:44 +02:00
|
|
|
<template v-if="!hideBio">
|
2022-01-19 14:09:48 +01:00
|
|
|
<span
|
|
|
|
v-if="user.deactivated"
|
|
|
|
class="alert user-role"
|
|
|
|
>
|
|
|
|
{{ $t('user_card.deactivated') }}
|
|
|
|
</span>
|
2020-06-21 15:02:44 +02:00
|
|
|
<span
|
|
|
|
v-if="!!visibleRole"
|
2020-06-21 15:36:20 +02:00
|
|
|
class="alert user-role"
|
2020-06-21 15:02:44 +02:00
|
|
|
>
|
2021-02-13 14:34:43 +01:00
|
|
|
{{ $t(`general.role.${visibleRole}`) }}
|
2020-06-21 15:02:44 +02:00
|
|
|
</span>
|
|
|
|
<span
|
|
|
|
v-if="user.bot"
|
2020-06-21 15:36:20 +02:00
|
|
|
class="alert user-role"
|
2020-06-21 15:02:44 +02:00
|
|
|
>
|
2021-02-12 10:01:16 +01:00
|
|
|
{{ $t('user_card.bot') }}
|
2020-06-21 15:02:44 +02:00
|
|
|
</span>
|
|
|
|
</template>
|
2020-10-19 21:35:46 +02:00
|
|
|
<span v-if="user.locked">
|
2020-10-20 23:31:16 +02:00
|
|
|
<FAIcon
|
|
|
|
class="lock-icon"
|
|
|
|
icon="lock"
|
|
|
|
size="sm"
|
|
|
|
/>
|
2020-10-19 21:35:46 +02:00
|
|
|
</span>
|
2019-07-11 02:59:10 +02:00
|
|
|
<span
|
2019-09-29 21:33:15 +02:00
|
|
|
v-if="!mergedConfig.hideUserStats && !hideBio"
|
2019-07-11 02:59:10 +02:00
|
|
|
class="dailyAvg"
|
|
|
|
>{{ dailyAvg }} {{ $t('user_card.per_day') }}</span>
|
|
|
|
</div>
|
2019-05-16 04:01:04 +02:00
|
|
|
</div>
|
2018-06-19 16:14:33 +02:00
|
|
|
</div>
|
2019-07-11 02:59:10 +02:00
|
|
|
<div class="user-meta">
|
|
|
|
<div
|
2020-04-21 22:27:51 +02:00
|
|
|
v-if="relationship.followed_by && loggedIn && isOtherUser"
|
2019-07-11 02:59:10 +02:00
|
|
|
class="following"
|
|
|
|
>
|
|
|
|
{{ $t('user_card.follows_you') }}
|
|
|
|
</div>
|
|
|
|
<div
|
|
|
|
v-if="isOtherUser && (loggedIn || !switcher)"
|
|
|
|
class="highlighter"
|
|
|
|
>
|
|
|
|
<!-- id's need to be unique, otherwise vue confuses which user-card checkbox belongs to -->
|
|
|
|
<input
|
|
|
|
v-if="userHighlightType !== 'disabled'"
|
|
|
|
:id="'userHighlightColorTx'+user.id"
|
|
|
|
v-model="userHighlightColor"
|
|
|
|
class="userHighlightText"
|
|
|
|
type="text"
|
|
|
|
>
|
|
|
|
<input
|
|
|
|
v-if="userHighlightType !== 'disabled'"
|
|
|
|
:id="'userHighlightColor'+user.id"
|
|
|
|
v-model="userHighlightColor"
|
|
|
|
class="userHighlightCl"
|
|
|
|
type="color"
|
|
|
|
>
|
2022-03-23 15:15:05 +01:00
|
|
|
{{ ' ' }}
|
2021-03-11 15:11:44 +01:00
|
|
|
<Select
|
|
|
|
:id="'userHighlightSel'+user.id"
|
|
|
|
v-model="userHighlightType"
|
|
|
|
class="userHighlightSel"
|
2019-07-11 02:59:10 +02:00
|
|
|
>
|
2021-05-31 13:02:36 +02:00
|
|
|
<option value="disabled">
|
|
|
|
{{ $t('user_card.highlight.disabled') }}
|
|
|
|
</option>
|
|
|
|
<option value="solid">
|
|
|
|
{{ $t('user_card.highlight.solid') }}
|
|
|
|
</option>
|
|
|
|
<option value="striped">
|
|
|
|
{{ $t('user_card.highlight.striped') }}
|
|
|
|
</option>
|
|
|
|
<option value="side">
|
|
|
|
{{ $t('user_card.highlight.side') }}
|
|
|
|
</option>
|
2021-03-11 15:11:44 +01:00
|
|
|
</Select>
|
2019-07-11 02:59:10 +02:00
|
|
|
</div>
|
2018-06-18 10:36:58 +02:00
|
|
|
</div>
|
2019-07-11 02:59:10 +02:00
|
|
|
<div
|
|
|
|
v-if="loggedIn && isOtherUser"
|
|
|
|
class="user-interactions"
|
|
|
|
>
|
2019-10-08 09:21:48 +02:00
|
|
|
<div class="btn-group">
|
2022-01-19 14:09:48 +01:00
|
|
|
<FollowButton
|
|
|
|
:relationship="relationship"
|
|
|
|
:user="user"
|
|
|
|
/>
|
2020-04-21 22:27:51 +02:00
|
|
|
<template v-if="relationship.following">
|
2019-10-08 09:21:48 +02:00
|
|
|
<ProgressButton
|
2020-04-21 22:27:51 +02:00
|
|
|
v-if="!relationship.subscribing"
|
2020-11-24 11:32:42 +01:00
|
|
|
class="btn button-default"
|
2019-10-08 09:21:48 +02:00
|
|
|
:click="subscribeUser"
|
|
|
|
:title="$t('user_card.subscribe')"
|
|
|
|
>
|
2020-10-19 21:35:46 +02:00
|
|
|
<FAIcon icon="bell" />
|
2019-10-08 09:21:48 +02:00
|
|
|
</ProgressButton>
|
|
|
|
<ProgressButton
|
|
|
|
v-else
|
2020-11-24 11:32:42 +01:00
|
|
|
class="btn button-default toggled"
|
2019-10-08 09:21:48 +02:00
|
|
|
:click="unsubscribeUser"
|
|
|
|
:title="$t('user_card.unsubscribe')"
|
|
|
|
>
|
2020-10-19 21:35:46 +02:00
|
|
|
<FALayers>
|
2020-10-20 23:31:16 +02:00
|
|
|
<FAIcon
|
|
|
|
icon="rss"
|
|
|
|
transform="left-5 shrink-6 up-3 rotate-20"
|
|
|
|
flip="horizontal"
|
|
|
|
/>
|
|
|
|
<FAIcon
|
|
|
|
icon="rss"
|
|
|
|
transform="right-5 shrink-6 up-3 rotate-20"
|
|
|
|
/>
|
2020-10-19 21:35:46 +02:00
|
|
|
<FAIcon icon="bell" />
|
|
|
|
</FALayers>
|
2019-10-08 09:21:48 +02:00
|
|
|
</ProgressButton>
|
|
|
|
</template>
|
2019-09-17 21:59:17 +02:00
|
|
|
</div>
|
2019-07-11 02:59:10 +02:00
|
|
|
<div>
|
|
|
|
<button
|
2020-04-21 22:27:51 +02:00
|
|
|
v-if="relationship.muting"
|
2020-11-24 11:32:42 +01:00
|
|
|
class="btn button-default btn-block toggled"
|
2022-01-19 14:09:48 +01:00
|
|
|
:disabled="user.deactivated"
|
2019-07-11 02:59:10 +02:00
|
|
|
@click="unmuteUser"
|
|
|
|
>
|
|
|
|
{{ $t('user_card.muted') }}
|
|
|
|
</button>
|
|
|
|
<button
|
|
|
|
v-else
|
2020-11-24 11:32:42 +01:00
|
|
|
class="btn button-default btn-block"
|
2022-01-19 14:09:48 +01:00
|
|
|
:disabled="user.deactivated"
|
2019-07-11 02:59:10 +02:00
|
|
|
@click="muteUser"
|
|
|
|
>
|
|
|
|
{{ $t('user_card.mute') }}
|
|
|
|
</button>
|
|
|
|
</div>
|
2019-11-27 01:57:27 +01:00
|
|
|
<div>
|
|
|
|
<button
|
2020-11-24 11:32:42 +01:00
|
|
|
class="btn button-default btn-block"
|
2022-01-19 14:09:48 +01:00
|
|
|
:disabled="user.deactivated"
|
2019-11-27 01:57:27 +01:00
|
|
|
@click="mentionUser"
|
|
|
|
>
|
|
|
|
{{ $t('user_card.mention') }}
|
|
|
|
</button>
|
|
|
|
</div>
|
2019-07-11 02:59:10 +02:00
|
|
|
<ModerationTools
|
|
|
|
v-if="loggedIn.role === "admin""
|
|
|
|
:user="user"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<div
|
|
|
|
v-if="!loggedIn && user.is_local"
|
|
|
|
class="user-interactions"
|
|
|
|
>
|
|
|
|
<RemoteFollow :user="user" />
|
|
|
|
</div>
|
2019-04-16 16:13:26 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-07-11 02:59:10 +02:00
|
|
|
<div
|
|
|
|
v-if="!hideBio"
|
|
|
|
class="panel-body"
|
|
|
|
>
|
|
|
|
<div
|
2019-09-29 21:33:15 +02:00
|
|
|
v-if="!mergedConfig.hideUserStats && switcher"
|
2019-07-11 02:59:10 +02:00
|
|
|
class="user-counts"
|
|
|
|
>
|
|
|
|
<div
|
|
|
|
class="user-count"
|
|
|
|
@click.prevent="setProfileView('statuses')"
|
|
|
|
>
|
|
|
|
<h5>{{ $t('user_card.statuses') }}</h5>
|
|
|
|
<span>{{ user.statuses_count }} <br></span>
|
|
|
|
</div>
|
|
|
|
<div
|
|
|
|
class="user-count"
|
|
|
|
@click.prevent="setProfileView('friends')"
|
|
|
|
>
|
|
|
|
<h5>{{ $t('user_card.followees') }}</h5>
|
2019-11-12 19:31:30 +01:00
|
|
|
<span>{{ hideFollowsCount ? $t('user_card.hidden') : user.friends_count }}</span>
|
2019-07-11 02:59:10 +02:00
|
|
|
</div>
|
|
|
|
<div
|
|
|
|
class="user-count"
|
|
|
|
@click.prevent="setProfileView('followers')"
|
|
|
|
>
|
|
|
|
<h5>{{ $t('user_card.followers') }}</h5>
|
2019-11-12 19:31:30 +01:00
|
|
|
<span>{{ hideFollowersCount ? $t('user_card.hidden') : user.followers_count }}</span>
|
2019-07-11 02:59:10 +02:00
|
|
|
</div>
|
2018-11-25 15:24:58 +01:00
|
|
|
</div>
|
2021-08-13 12:06:42 +02:00
|
|
|
<RichContent
|
|
|
|
v-if="!hideBio"
|
2019-07-11 02:59:10 +02:00
|
|
|
class="user-card-bio"
|
2021-08-13 12:06:42 +02:00
|
|
|
:html="user.description_html"
|
|
|
|
:emoji="user.emoji"
|
2022-02-19 21:34:08 +01:00
|
|
|
:handle-links="true"
|
2019-07-11 02:59:10 +02:00
|
|
|
/>
|
2018-11-25 15:24:58 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2016-11-30 22:27:19 +01:00
|
|
|
</template>
|
|
|
|
|
2019-03-05 20:01:49 +01:00
|
|
|
<script src="./user_card.js"></script>
|
2017-02-22 22:08:14 +01:00
|
|
|
|
|
|
|
<style lang="scss">
|
2017-08-21 19:25:01 +02:00
|
|
|
@import '../../_variables.scss';
|
2017-11-09 09:33:10 +01:00
|
|
|
|
2019-03-05 20:01:49 +01:00
|
|
|
.user-card {
|
2019-09-15 01:14:40 +02:00
|
|
|
position: relative;
|
2017-02-26 21:36:54 +01:00
|
|
|
|
2021-08-13 12:06:42 +02:00
|
|
|
&:hover {
|
2020-10-29 20:39:36 +01:00
|
|
|
--_still-image-img-visibility: visible;
|
|
|
|
--_still-image-canvas-visibility: hidden;
|
2021-08-13 12:06:42 +02:00
|
|
|
--_still-image-label-visibility: hidden;
|
2020-10-29 20:39:36 +01:00
|
|
|
}
|
|
|
|
|
2018-04-07 18:30:27 +02:00
|
|
|
.panel-heading {
|
2019-01-09 14:31:53 +01:00
|
|
|
padding: .5em 0;
|
2018-04-07 18:30:27 +02:00
|
|
|
text-align: center;
|
2018-11-22 23:45:08 +01:00
|
|
|
box-shadow: none;
|
2019-03-05 08:32:23 +01:00
|
|
|
background: transparent;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: stretch;
|
2019-09-15 01:14:40 +02:00
|
|
|
// create new stacking context
|
|
|
|
position: relative;
|
2018-04-07 18:30:27 +02:00
|
|
|
}
|
2017-02-22 22:08:14 +01:00
|
|
|
|
2019-03-05 08:32:23 +01:00
|
|
|
.panel-body {
|
|
|
|
word-wrap: break-word;
|
2019-07-11 17:49:18 +02:00
|
|
|
border-bottom-right-radius: inherit;
|
|
|
|
border-bottom-left-radius: inherit;
|
2019-09-15 01:14:40 +02:00
|
|
|
// create new stacking context
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.background-image {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
mask: linear-gradient(to top, white, transparent) bottom no-repeat,
|
|
|
|
linear-gradient(to top, white, white);
|
|
|
|
// Autoprefixed seem to ignore this one, and also syntax is different
|
2020-10-20 21:13:19 +02:00
|
|
|
-webkit-mask-composite: xor;
|
2019-09-15 01:14:40 +02:00
|
|
|
mask-composite: exclude;
|
|
|
|
background-size: cover;
|
|
|
|
mask-size: 100% 60%;
|
2019-10-30 04:15:57 +01:00
|
|
|
border-top-left-radius: calc(var(--panelRadius) - 1px);
|
|
|
|
border-top-right-radius: calc(var(--panelRadius) - 1px);
|
2020-02-20 17:13:40 +01:00
|
|
|
background-color: var(--profileBg);
|
2019-09-15 01:14:40 +02:00
|
|
|
|
|
|
|
&.hide-bio {
|
|
|
|
mask-size: 100% 40px;
|
|
|
|
}
|
2019-03-05 08:32:23 +01:00
|
|
|
}
|
2018-08-21 20:16:03 +02:00
|
|
|
|
2019-03-05 08:32:23 +01:00
|
|
|
&-bio {
|
2018-08-21 20:16:03 +02:00
|
|
|
text-align: center;
|
2021-08-13 12:06:42 +02:00
|
|
|
display: block;
|
|
|
|
line-height: 18px;
|
|
|
|
padding: 1em;
|
|
|
|
margin: 0;
|
2019-03-10 01:56:21 +01:00
|
|
|
|
2020-01-28 00:29:20 +01:00
|
|
|
a {
|
|
|
|
color: $fallback--link;
|
|
|
|
color: var(--postLink, $fallback--link);
|
|
|
|
}
|
|
|
|
|
2019-03-11 05:14:49 +01:00
|
|
|
img {
|
|
|
|
object-fit: contain;
|
|
|
|
vertical-align: middle;
|
|
|
|
max-width: 100%;
|
|
|
|
max-height: 400px;
|
2019-03-10 01:56:21 +01:00
|
|
|
}
|
2018-08-21 20:16:03 +02:00
|
|
|
}
|
2019-03-05 08:32:23 +01:00
|
|
|
|
|
|
|
// Modifiers
|
|
|
|
|
2019-03-06 03:52:04 +01:00
|
|
|
&-rounded-t {
|
2019-03-05 19:25:31 +01:00
|
|
|
border-top-left-radius: $fallback--panelRadius;
|
|
|
|
border-top-left-radius: var(--panelRadius, $fallback--panelRadius);
|
|
|
|
border-top-right-radius: $fallback--panelRadius;
|
|
|
|
border-top-right-radius: var(--panelRadius, $fallback--panelRadius);
|
2019-03-05 08:32:23 +01:00
|
|
|
}
|
|
|
|
|
2019-03-06 03:52:04 +01:00
|
|
|
&-rounded {
|
2019-03-05 08:32:23 +01:00
|
|
|
border-radius: $fallback--panelRadius;
|
|
|
|
border-radius: var(--panelRadius, $fallback--panelRadius);
|
|
|
|
}
|
|
|
|
|
2019-03-06 03:52:04 +01:00
|
|
|
&-bordered {
|
2019-03-05 08:32:23 +01:00
|
|
|
border-width: 1px;
|
|
|
|
border-style: solid;
|
|
|
|
border-color: $fallback--border;
|
|
|
|
border-color: var(--border, $fallback--border);
|
|
|
|
}
|
2017-02-22 22:08:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.user-info {
|
2018-10-07 18:59:22 +02:00
|
|
|
color: $fallback--lightText;
|
|
|
|
color: var(--lightText, $fallback--lightText);
|
2018-12-26 10:19:25 +01:00
|
|
|
padding: 0 26px;
|
2017-08-02 21:09:40 +02:00
|
|
|
|
2018-04-07 18:30:27 +02:00
|
|
|
.container {
|
2018-12-26 10:19:25 +01:00
|
|
|
padding: 16px 0 6px;
|
2018-04-07 18:30:27 +02:00
|
|
|
display: flex;
|
2019-07-25 21:49:02 +02:00
|
|
|
align-items: flex-start;
|
2018-04-07 18:30:27 +02:00
|
|
|
max-height: 56px;
|
2018-04-07 15:48:49 +02:00
|
|
|
|
2020-08-25 10:33:38 +02:00
|
|
|
.Avatar {
|
2020-10-29 19:03:53 +01:00
|
|
|
--_avatarShadowBox: var(--avatarShadow);
|
|
|
|
--_avatarShadowFilter: var(--avatarShadowFilter);
|
|
|
|
--_avatarShadowInset: var(--avatarShadowInset);
|
|
|
|
|
2018-04-08 03:23:43 +02:00
|
|
|
flex: 1 0 100%;
|
|
|
|
width: 56px;
|
|
|
|
height: 56px;
|
|
|
|
object-fit: cover;
|
2018-04-07 15:48:49 +02:00
|
|
|
}
|
2018-04-07 18:30:27 +02:00
|
|
|
}
|
2018-04-07 15:48:49 +02:00
|
|
|
|
2019-07-22 22:58:20 +02:00
|
|
|
&-avatar-link {
|
2019-07-25 21:49:02 +02:00
|
|
|
position: relative;
|
2019-07-22 22:58:20 +02:00
|
|
|
cursor: pointer;
|
2019-07-25 21:49:02 +02:00
|
|
|
|
|
|
|
&-overlay {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
background-color: rgba(0, 0, 0, 0.3);
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
border-radius: $fallback--avatarRadius;
|
|
|
|
border-radius: var(--avatarRadius, $fallback--avatarRadius);
|
|
|
|
opacity: 0;
|
|
|
|
transition: opacity .2s ease;
|
|
|
|
|
2020-10-19 21:35:46 +02:00
|
|
|
svg {
|
2019-07-25 21:49:02 +02:00
|
|
|
color: #FFF;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover &-overlay {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2019-07-22 22:58:20 +02:00
|
|
|
}
|
|
|
|
|
2021-06-17 21:29:58 +02:00
|
|
|
.external-link-button, .edit-profile-button {
|
2020-10-20 21:13:19 +02:00
|
|
|
cursor: pointer;
|
|
|
|
width: 2.5em;
|
|
|
|
text-align: center;
|
|
|
|
margin: -0.5em 0;
|
|
|
|
padding: 0.5em 0;
|
|
|
|
|
|
|
|
&:not(:hover) .icon {
|
|
|
|
color: $fallback--lightText;
|
|
|
|
color: var(--lightText, $fallback--lightText);
|
|
|
|
}
|
2018-04-08 03:23:43 +02:00
|
|
|
}
|
|
|
|
|
2019-05-16 04:01:04 +02:00
|
|
|
.user-summary {
|
2018-04-07 18:30:27 +02:00
|
|
|
display: block;
|
|
|
|
margin-left: 0.6em;
|
|
|
|
text-align: left;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2018-04-08 03:23:43 +02:00
|
|
|
flex: 1 1 0;
|
2018-11-25 15:42:41 +01:00
|
|
|
// This is so that text doesn't get overlapped by avatar's shadow if it has
|
|
|
|
// big one
|
|
|
|
z-index: 1;
|
|
|
|
|
2018-12-26 10:19:25 +01:00
|
|
|
.top-line {
|
|
|
|
display: flex;
|
|
|
|
}
|
2018-04-07 18:30:27 +02:00
|
|
|
}
|
2017-02-22 22:08:14 +01:00
|
|
|
|
2019-01-09 13:36:09 +01:00
|
|
|
.user-name {
|
2018-04-08 03:23:43 +02:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
2019-01-09 13:36:09 +01:00
|
|
|
flex: 1 1 auto;
|
|
|
|
margin-right: 1em;
|
2019-03-02 18:58:17 +01:00
|
|
|
font-size: 15px;
|
2019-02-26 13:13:09 +01:00
|
|
|
|
2021-08-13 12:06:42 +02:00
|
|
|
--emoji-size: 14px;
|
2018-04-07 18:30:27 +02:00
|
|
|
}
|
2018-02-01 20:30:49 +01:00
|
|
|
|
2019-05-16 04:01:04 +02:00
|
|
|
.bottom-line {
|
|
|
|
display: flex;
|
2018-04-15 06:26:55 +02:00
|
|
|
font-weight: light;
|
2018-04-07 18:30:27 +02:00
|
|
|
font-size: 15px;
|
2018-12-26 10:19:25 +01:00
|
|
|
|
2020-10-19 21:35:46 +02:00
|
|
|
.lock-icon {
|
|
|
|
margin-left: 0.5em;
|
|
|
|
}
|
|
|
|
|
2019-05-19 20:25:02 +02:00
|
|
|
.user-screen-name {
|
2019-05-16 04:01:31 +02:00
|
|
|
min-width: 1px;
|
|
|
|
flex: 0 1 auto;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
color: $fallback--lightText;
|
|
|
|
color: var(--lightText, $fallback--lightText);
|
|
|
|
}
|
2019-02-04 03:23:10 +01:00
|
|
|
|
2019-05-16 04:01:31 +02:00
|
|
|
.dailyAvg {
|
|
|
|
min-width: 1px;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
margin-left: 1em;
|
|
|
|
font-size: 0.7em;
|
|
|
|
color: $fallback--text;
|
|
|
|
color: var(--text, $fallback--text);
|
|
|
|
}
|
2019-05-16 04:01:04 +02:00
|
|
|
|
2020-06-21 15:36:20 +02:00
|
|
|
.user-role {
|
2019-05-19 20:25:02 +02:00
|
|
|
flex: none;
|
2019-05-16 04:01:31 +02:00
|
|
|
color: $fallback--text;
|
2020-01-28 01:03:21 +01:00
|
|
|
color: var(--alertNeutralText, $fallback--text);
|
2019-05-16 04:01:31 +02:00
|
|
|
background-color: $fallback--fg;
|
2020-01-28 01:03:21 +01:00
|
|
|
background-color: var(--alertNeutral, $fallback--fg);
|
2019-05-16 04:01:31 +02:00
|
|
|
}
|
2018-04-07 18:30:27 +02:00
|
|
|
}
|
2018-02-01 20:30:49 +01:00
|
|
|
|
2018-06-19 16:14:33 +02:00
|
|
|
.user-meta {
|
2018-12-26 10:19:25 +01:00
|
|
|
margin-bottom: .15em;
|
|
|
|
display: flex;
|
|
|
|
align-items: baseline;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 22px;
|
|
|
|
flex-wrap: wrap;
|
2018-06-19 16:14:33 +02:00
|
|
|
|
|
|
|
.following {
|
2018-12-26 10:19:25 +01:00
|
|
|
flex: 1 0 auto;
|
2018-06-19 16:14:33 +02:00
|
|
|
margin: 0;
|
2018-12-26 10:19:25 +01:00
|
|
|
margin-bottom: .25em;
|
2018-06-19 16:14:33 +02:00
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2018-12-26 10:19:25 +01:00
|
|
|
.highlighter {
|
|
|
|
flex: 0 1 auto;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
margin-right: -.5em;
|
|
|
|
align-self: start;
|
|
|
|
|
|
|
|
.userHighlightCl {
|
|
|
|
padding: 2px 10px;
|
|
|
|
flex: 1 0 auto;
|
|
|
|
}
|
|
|
|
|
2021-03-11 15:31:15 +01:00
|
|
|
.userHighlightSel {
|
2018-12-26 10:19:25 +01:00
|
|
|
padding-top: 0;
|
|
|
|
padding-bottom: 0;
|
|
|
|
flex: 1 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.userHighlightText {
|
|
|
|
width: 70px;
|
|
|
|
flex: 1 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.userHighlightCl,
|
|
|
|
.userHighlightText,
|
2021-03-11 15:31:15 +01:00
|
|
|
.userHighlightSel {
|
2018-12-26 10:19:25 +01:00
|
|
|
vertical-align: top;
|
|
|
|
margin-right: .5em;
|
|
|
|
margin-bottom: .25em;
|
|
|
|
}
|
2018-06-19 16:14:33 +02:00
|
|
|
}
|
|
|
|
}
|
2018-04-07 18:30:27 +02:00
|
|
|
.user-interactions {
|
2019-07-11 17:01:12 +02:00
|
|
|
position: relative;
|
2018-04-07 18:30:27 +02:00
|
|
|
display: flex;
|
|
|
|
flex-flow: row wrap;
|
2018-12-26 10:19:25 +01:00
|
|
|
margin-right: -.75em;
|
|
|
|
|
2019-04-26 06:39:43 +02:00
|
|
|
> * {
|
|
|
|
margin: 0 .75em .6em 0;
|
2018-12-26 10:19:25 +01:00
|
|
|
white-space: nowrap;
|
2019-10-09 08:04:18 +02:00
|
|
|
min-width: 95px;
|
2018-04-07 18:30:27 +02:00
|
|
|
}
|
2018-04-01 21:07:25 +02:00
|
|
|
|
2019-04-26 09:33:25 +02:00
|
|
|
button {
|
2019-04-26 06:39:43 +02:00
|
|
|
margin: 0;
|
2017-02-24 18:12:57 +01:00
|
|
|
}
|
2018-04-07 18:30:27 +02:00
|
|
|
}
|
2017-02-22 22:08:14 +01:00
|
|
|
}
|
|
|
|
|
2021-06-17 22:57:23 +02:00
|
|
|
.sidebar .edit-profile-button {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2017-02-22 22:08:14 +01:00
|
|
|
.user-counts {
|
2018-04-07 18:30:27 +02:00
|
|
|
display: flex;
|
|
|
|
line-height:16px;
|
2018-04-15 06:26:55 +02:00
|
|
|
padding: .5em 1.5em 0em 1.5em;
|
2018-04-07 18:30:27 +02:00
|
|
|
text-align: center;
|
2018-04-15 06:26:55 +02:00
|
|
|
justify-content: space-between;
|
2018-10-07 18:59:22 +02:00
|
|
|
color: $fallback--lightText;
|
|
|
|
color: var(--lightText, $fallback--lightText);
|
2018-12-26 10:19:25 +01:00
|
|
|
flex-wrap: wrap;
|
2017-02-22 22:08:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.user-count {
|
2018-12-26 10:19:25 +01:00
|
|
|
flex: 1 0 auto;
|
2018-04-15 06:26:55 +02:00
|
|
|
padding: .5em 0 .5em 0;
|
|
|
|
margin: 0 .5em;
|
|
|
|
|
2018-04-07 18:30:27 +02:00
|
|
|
h5 {
|
|
|
|
font-size:1em;
|
|
|
|
font-weight: bolder;
|
|
|
|
margin: 0 0 0.25em;
|
|
|
|
}
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2017-02-22 22:08:14 +01:00
|
|
|
}
|
|
|
|
</style>
|