mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-25 05:29:07 +01:00
Merge pull request 'chore: update icons on the post form' (#9944) from naskya/calckey:chore/update-icons into develop
Reviewed-on: https://codeberg.org/calckey/calckey/pulls/9944
This commit is contained in:
commit
86f7cb36d7
@ -55,7 +55,7 @@
|
|||||||
:class="{ active: showPreview }"
|
:class="{ active: showPreview }"
|
||||||
@click="showPreview = !showPreview"
|
@click="showPreview = !showPreview"
|
||||||
>
|
>
|
||||||
<i class="ph-file-code ph-bold ph-lg"></i>
|
<i class="ph-binoculars ph-bold ph-lg"></i>
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
class="submit _buttonGradate"
|
class="submit _buttonGradate"
|
||||||
|
@ -154,22 +154,22 @@ export default defineComponent({
|
|||||||
? i18n.ts.unmarkAsSensitive
|
? i18n.ts.unmarkAsSensitive
|
||||||
: i18n.ts.markAsSensitive,
|
: i18n.ts.markAsSensitive,
|
||||||
icon: file.isSensitive
|
icon: file.isSensitive
|
||||||
? "ph-eye-slash ph-bold ph-lg"
|
? "ph-eye ph-bold ph-lg"
|
||||||
: "ph-eye ph-bold ph-lg",
|
: "ph-eye-slash ph-bold ph-lg",
|
||||||
action: () => {
|
action: () => {
|
||||||
this.toggleSensitive(file);
|
this.toggleSensitive(file);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: i18n.ts.describeFile,
|
text: i18n.ts.describeFile,
|
||||||
icon: "ph-cursor-text ph-bold ph-lg",
|
icon: "ph-subtitles ph-bold ph-lg",
|
||||||
action: () => {
|
action: () => {
|
||||||
this.describe(file);
|
this.describe(file);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: i18n.ts.attachCancel,
|
text: i18n.ts.attachCancel,
|
||||||
icon: "ph-circle-wavy-warning ph-bold ph-lg",
|
icon: "ph-x ph-bold ph-lg",
|
||||||
action: () => {
|
action: () => {
|
||||||
this.detachMedia(file.id);
|
this.detachMedia(file.id);
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user