Skip to content
Snippets Groups Projects
Commit 205a9821 authored by Tae Hoon's avatar Tae Hoon
Browse files

make staff label visible

parent e01ffc67
No related branches found
No related tags found
2 merge requests!1028`master` refresh with `develop`,!795Fix wrong mouse pointer hot zone in the post status box
......@@ -19,10 +19,8 @@
</div>
<div class="bottom-line">
<span class="user-screen-name-role">
<router-link class="user-screen-name" :to="userProfileLink(user)">@{{user.screen_name}}</router-link>
<span class="alert staff" v-if="!hideBio && !!visibleRole">{{visibleRole}}</span>
</span>
<router-link class="user-screen-name" :to="userProfileLink(user)">@{{user.screen_name}}</router-link>
<span class="alert staff" v-if="!hideBio && !!visibleRole">{{visibleRole}}</span>
<span v-if="user.locked"><i class="icon icon-lock"></i></span>
<span v-if="!hideUserStatsLocal && !hideBio" class="dailyAvg">{{dailyAvg}} {{ $t('user_card.per_day') }}</span>
</div>
......@@ -277,14 +275,11 @@
font-weight: light;
font-size: 15px;
.user-screen-name-role {
.user-screen-name {
min-width: 1px;
flex: 0 1 auto;
text-overflow: ellipsis;
overflow: hidden;
}
.user-screen-name {
color: $fallback--lightText;
color: var(--lightText, $fallback--lightText);
}
......@@ -300,6 +295,7 @@
// TODO use proper colors
.staff {
flex: none;
text-transform: capitalize;
color: $fallback--text;
color: var(--btnText, $fallback--text);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment