1
0
Fork 1
mirror of https://example.com synced 2024-11-22 12:26:38 +09:00

chore: change icon set sample from ph-smiley to ph-star

This commit is contained in:
naskya 2023-10-17 02:12:57 +09:00
parent d7cab19999
commit ebc6d58e3f
Signed by: naskya
GPG key ID: 164DFF24E2D40139
2 changed files with 6 additions and 5 deletions

View file

@ -46,6 +46,7 @@
- Misskey v12 のときからずっとこの機能ってちゃんと使えた記憶が無い……
- アイコンフォントのスタイルを設定から選べるように ([MR](https://git.joinfirefish.org/firefish/firefish/-/merge_requests/10613))
- デフォルトのアイコンの太さも細めに変更
- スタイルを選択する画面のサンプルのアイコンは星に変更
- リアクションの履歴を公開する設定をデフォルトで有効に
- 私がみんなのリアクションを見たいと思っているため
- もちろん設定から無効にできます

View file

@ -46,19 +46,19 @@
<FormRadios v-model="iconSet" class="_formBlock">
<template #label>{{ i18n.ts.iconSet }}</template>
<option value="ph-bold" :aria-label="i18n.ts._iconSets.bold">
<i class="ph-bold ph-2x ph-smiley"></i>
<i class="ph-bold ph-2x ph-star"></i>
</option>
<option value="ph-duotone" :aria-label="i18n.ts._iconSets.duotone">
<i class="ph-duotone ph-2x ph-smiley"></i>
<i class="ph-duotone ph-2x ph-star"></i>
</option>
<option value="ph-fill" :aria-label="i18n.ts._iconSets.fill">
<i class="ph-fill ph-2x ph-smiley"></i>
<i class="ph-fill ph-2x ph-star"></i>
</option>
<option value="ph" :aria-label="i18n.ts._iconSets.regular">
<i class="ph ph-2x ph-smiley"></i>
<i class="ph ph-2x ph-star"></i>
</option>
<option value="ph-light" :aria-label="i18n.ts._iconSets.light">
<i class="ph-light ph-2x ph-smiley"></i>
<i class="ph-light ph-2x ph-star"></i>
</option>
</FormRadios>