Compare commits

...

9 commits

14 changed files with 66 additions and 18 deletions

View file

@ -1,6 +1,6 @@
<template>
<div class="column-inner">
<instance-specific-panel v-if="showInstanceSpecificPanel" />
<!--<instance-specific-panel v-if="showInstanceSpecificPanel" />-->
<staff-panel />
<terms-of-service-panel />
<LocalBubblePanel v-if="showLocalBubblePanel" />

View file

@ -88,9 +88,10 @@
}
}
.emoji-picker-panel {
position: absolute;
position: relative;
z-index: 20;
margin-top: 2px;
top: 0px !important;
&.hide {
display: none

View file

@ -56,7 +56,11 @@
.heading {
margin-top: 10px;
height: 4.8em;
height: 5.8em;
}
.emoji-header {
margin-left: 5px;
}
.content {

View file

@ -1,6 +1,7 @@
<template>
<div class="emoji-picker panel panel-default panel-body">
<div class="heading">
<span class="emoji-header">Emoji Packs</span>
<span
class="emoji-tabs"
@wheel="onWheel"

View file

@ -188,9 +188,21 @@ $modal-view-button-icon-margin: 0.5em;
overflow-y: auto;
min-height: 1em;
max-width: 500px;
max-height: 9.5em;
word-break: break-word;
white-space: pre-line;
background: rgba(0,0,0,0.6);
padding: 10px;
border-radius: 10px;
transition: 0.5s;
&:not(:hover) {
max-height: 1em;
}
&:hover {
max-height: 9.5em;
transition: 1s;
}
}
.modal-image {

View file

@ -15,11 +15,15 @@
.mention-avatar {
border-radius: var(--avatarAltRadius, $fallback--avatarAltRadius);
width: 1.5em;
height: 1.5em;
width: 2em;
height: 2em;
vertical-align: middle;
user-select: none;
margin-right: 0.2em;
.still-image.avatar {
border-radius: 14px;
}
}
.full {
@ -113,3 +117,11 @@
color: var(--faint, $fallback--faint);
}
}
.reply-glued-label {
.mention-avatar {
width: 1.4em;
height: 1.4em;
}
}

View file

@ -76,7 +76,7 @@
</table>
</div>
<div v-if="quarantineInstances.length">
<!--<div v-if="quarantineInstances.length">
<h4>{{ $t("about.mrf.simple.quarantine") }}</h4>
<p>{{ $t("about.mrf.simple.quarantine_desc") }}</p>
@ -99,7 +99,7 @@
</td>
</tr>
</table>
</div>
</div>-->
<div v-if="ftlRemovalInstances.length">
<h4>{{ $t("about.mrf.simple.ftl_removal") }}</h4>
@ -176,7 +176,7 @@
</table>
</div>
<h2 v-if="hasKeywordPolicies">
<!--<h2 v-if="hasKeywordPolicies">
{{ $t("about.mrf.keyword.keyword_policies") }}
</h2>
@ -217,7 +217,7 @@
{{ keyword.replacement }}
</li>
</ul>
</div>
</div>-->
</div>
</div>
</div>

View file

@ -64,11 +64,11 @@
color: $fallback--text;
color: var(--text, $fallback--text);
border-style: solid;
border-style: dashed;
border-width: 1px;
border-radius: $fallback--attachmentRadius;
border-radius: var(--attachmentRadius, $fallback--attachmentRadius);
border-color: $fallback--border;
border-color: var(--border, $fallback--border);
border-color: $fallback--cBlue;
border-color: var(--cBlue, $fallback--cBlue);
}
</style>

View file

@ -49,7 +49,7 @@
}
.emoji {
display: inline-block;
display: inline-flex;
width: var(--emoji-size, 32px);
height: var(--emoji-size, 32px);
}

View file

@ -1,6 +1,6 @@
import { extractCommit } from 'src/services/version/version.service'
const pleromaFeCommitUrl = 'https://akkoma.dev/AkkomaGang/pleroma-fe/commit/'
const pleromaFeCommitUrl = 'https://akkoma.dev/eris/pleroma-fe/commit/'
const pleromaBeCommitUrl = 'https://akkoma.dev/AkkomaGang/akkoma/commit/'
const VersionTab = {

View file

@ -12,7 +12,7 @@
:key="group.role"
class="staff-group"
>
<h4>{{ $t('general.role.' + group.role) }}</h4>
<h4>The Admin Team</h4>
<basic-user-card
v-for="user in group.users"
:key="user.screen_name"
@ -30,10 +30,21 @@
.staff-group {
padding-left: 1em;
padding-top: 1em;
padding-top: 0.2em;
padding-bottom: 2px;
.basic-user-card {
padding: 0.6em 0.4em;
padding-left: 0;
display: inline-block;
}
.basic-user-card-collapsed-content {
display: none;
}
.still-image {
border-radius: 15px;
}
}

View file

@ -93,4 +93,9 @@
}
}
}
.still-image.emoji {
img {
height: unset;
}
}
</style>

View file

@ -90,6 +90,7 @@
:user-id="userId"
:in-profile="true"
:footer-slipgate="footerRef"
:disabled="!currentUser"
/>
<div
v-if="followsTabVisible"
@ -128,6 +129,7 @@
:user-id="userId"
:in-profile="true"
:footer-slipgate="footerRef"
:disabled="!currentUser"
/>
<Timeline
v-if="isUs"

View file

@ -98,7 +98,7 @@ export const defaultState = {
useAtIcon: undefined, // instance default
mentionLinkDisplay: undefined, // instance default
mentionLinkShowTooltip: undefined, // instance default
mentionLinkShowAvatar: undefined, // instance default
mentionLinkShowAvatar: true, // instance default
mentionLinkFadeDomain: undefined, // instance default
mentionLinkShowYous: undefined, // instance default
mentionLinkBoldenYou: undefined, // instance default