spec(frontend): aboutページのUI調整 (MisskeyIO#441)
This commit is contained in:
parent
953aaf323f
commit
a7e77885d2
|
@ -31,22 +31,15 @@ SPDX-License-Identifier: AGPL-3.0-only
|
||||||
</MkKeyValue>
|
</MkKeyValue>
|
||||||
<div v-html="i18n.tsx.poweredByMisskeyDescription({ name: instance.name ?? host })">
|
<div v-html="i18n.tsx.poweredByMisskeyDescription({ name: instance.name ?? host })">
|
||||||
</div>
|
</div>
|
||||||
<FormLink to="/about-misskey">{{ i18n.ts.aboutMisskey }}</FormLink>
|
<FormLink to="/about-misskey">
|
||||||
|
<template #icon><i class="ti ti-info-circle"></i></template>
|
||||||
|
{{ i18n.ts.aboutMisskey }}
|
||||||
|
</FormLink>
|
||||||
<FormLink :to="instance.repositoryUrl" external>
|
<FormLink :to="instance.repositoryUrl" external>
|
||||||
<template #icon><i class="ti ti-code"></i></template>
|
<template #icon><i class="ti ti-code"></i></template>
|
||||||
{{ i18n.ts.sourcecode }}
|
{{ i18n.ts.sourcecode }}
|
||||||
<template #suffix>GitHub</template>
|
<template #suffix>GitHub</template>
|
||||||
</FormLink>
|
</FormLink>
|
||||||
<FormLink :to="instance.feedbackUrl" external>
|
|
||||||
<template #icon><i class="ti ti-message"></i></template>
|
|
||||||
{{ i18n.ts.feedback }}
|
|
||||||
<template #suffix>Helpdesk</template>
|
|
||||||
</FormLink>
|
|
||||||
<FormLink to="https://misskeyhq.fanbox.cc" external>
|
|
||||||
<template #icon><i class="ti ti-pig-money"></i></template>
|
|
||||||
{{ i18n.tsx.supportThisInstance({ name: instance.name ?? host }) }}
|
|
||||||
<template #suffix>pixivFANBOX</template>
|
|
||||||
</FormLink>
|
|
||||||
</div>
|
</div>
|
||||||
</FormSection>
|
</FormSection>
|
||||||
|
|
||||||
|
@ -62,17 +55,39 @@ SPDX-License-Identifier: AGPL-3.0-only
|
||||||
<template #value>{{ instance.maintainerEmail }}</template>
|
<template #value>{{ instance.maintainerEmail }}</template>
|
||||||
</MkKeyValue>
|
</MkKeyValue>
|
||||||
</FormSplit>
|
</FormSplit>
|
||||||
<FormLink v-if="instance.impressumUrl" :to="instance.impressumUrl" external>{{ i18n.ts.impressum }}</FormLink>
|
<FormLink v-if="instance.impressumUrl" :to="instance.impressumUrl" external>
|
||||||
|
<template #icon><i class="ti ti-user-shield"></i></template>
|
||||||
|
{{ i18n.ts.impressum }}
|
||||||
|
</FormLink>
|
||||||
<div class="_gaps_s">
|
<div class="_gaps_s">
|
||||||
<MkFolder v-if="instance.serverRules.length > 0">
|
<MkFolder v-if="instance.serverRules.length > 0">
|
||||||
<template #label>{{ i18n.ts.serverRules }}</template>
|
<template #label>
|
||||||
|
<i class="ti ti-checkup-list"></i>
|
||||||
|
{{ i18n.ts.serverRules }}
|
||||||
|
</template>
|
||||||
|
|
||||||
<ol class="_gaps_s" :class="$style.rules">
|
<ol class="_gaps_s" :class="$style.rules">
|
||||||
<li v-for="item, index in instance.serverRules" :key="index" :class="$style.rule"><div :class="$style.ruleText" v-html="item"></div></li>
|
<li v-for="(item, index) in instance.serverRules" :key="index" :class="$style.rule"><div :class="$style.ruleText" v-html="item"></div></li>
|
||||||
</ol>
|
</ol>
|
||||||
</MkFolder>
|
</MkFolder>
|
||||||
<FormLink v-if="instance.tosUrl" :to="instance.tosUrl" external>{{ i18n.ts.termsOfService }}</FormLink>
|
<FormLink v-if="instance.tosUrl" :to="instance.tosUrl" external>
|
||||||
<FormLink v-if="instance.privacyPolicyUrl" :to="instance.privacyPolicyUrl" external>{{ i18n.ts.privacyPolicy }}</FormLink>
|
<template #icon><i class="ti ti-license"></i></template>
|
||||||
|
{{ i18n.ts.termsOfService }}
|
||||||
|
</FormLink>
|
||||||
|
<FormLink v-if="instance.privacyPolicyUrl" :to="instance.privacyPolicyUrl" external>
|
||||||
|
<template #icon><i class="ti ti-shield-lock"></i></template>
|
||||||
|
{{ i18n.ts.privacyPolicy }}
|
||||||
|
</FormLink>
|
||||||
|
<FormLink v-if="instance.feedbackUrl" :to="instance.feedbackUrl" external>
|
||||||
|
<template #icon><i class="ti ti-message"></i></template>
|
||||||
|
{{ i18n.ts.feedback }}
|
||||||
|
<template #suffix>Helpdesk</template>
|
||||||
|
</FormLink>
|
||||||
|
<FormLink to="https://misskeyhq.fanbox.cc" external>
|
||||||
|
<template #icon><i class="ti ti-pig-money"></i></template>
|
||||||
|
{{ i18n.tsx.supportThisInstance({ name: instance.name ?? host }) }}
|
||||||
|
<template #suffix>pixivFANBOX</template>
|
||||||
|
</FormLink>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</FormSection>
|
</FormSection>
|
||||||
|
|
Loading…
Reference in New Issue