lint
This commit is contained in:
parent
1ec41302f7
commit
f561e75553
41 changed files with 497 additions and 140 deletions
|
@ -53,7 +53,10 @@
|
|||
<option value="following">{{ $t('settings.reply_visibility_following') }}</option>
|
||||
<option value="self">{{ $t('settings.reply_visibility_self') }}</option>
|
||||
</select>
|
||||
<FAIcon class="select-down-icon" icon="chevron-down" />
|
||||
<FAIcon
|
||||
class="select-down-icon"
|
||||
icon="chevron-down"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
<div>
|
||||
|
|
|
@ -103,7 +103,10 @@
|
|||
{{ subjectLineBehaviorDefaultValue == 'noop' ? $t('settings.instance_default_simple') : '' }}
|
||||
</option>
|
||||
</select>
|
||||
<FAIcon class="select-down-icon" icon="chevron-down" />
|
||||
<FAIcon
|
||||
class="select-down-icon"
|
||||
icon="chevron-down"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
</li>
|
||||
|
@ -127,7 +130,10 @@
|
|||
{{ postContentTypeDefaultValue === postFormat ? $t('settings.instance_default_simple') : '' }}
|
||||
</option>
|
||||
</select>
|
||||
<FAIcon class="select-down-icon" icon="chevron-down" />
|
||||
<FAIcon
|
||||
class="select-down-icon"
|
||||
icon="chevron-down"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
</li>
|
||||
|
|
|
@ -169,7 +169,8 @@
|
|||
<FAIcon
|
||||
v-if="!isDefaultAvatar && pickAvatarBtnVisible"
|
||||
:title="$t('settings.reset_avatar')"
|
||||
class="reset-button" icon="times"
|
||||
class="reset-button"
|
||||
icon="times"
|
||||
type="button"
|
||||
@click="resetAvatar"
|
||||
/>
|
||||
|
@ -197,7 +198,8 @@
|
|||
<FAIcon
|
||||
v-if="!isDefaultBanner"
|
||||
:title="$t('settings.reset_profile_banner')"
|
||||
class="reset-button" icon="times"
|
||||
class="reset-button"
|
||||
icon="times"
|
||||
type="button"
|
||||
@click="resetBanner"
|
||||
/>
|
||||
|
@ -233,7 +235,8 @@
|
|||
>
|
||||
Error: {{ bannerUploadError }}
|
||||
<FAIcon
|
||||
class="button-icon" icon="times"
|
||||
class="button-icon"
|
||||
icon="times"
|
||||
@click="clearUploadError('banner')"
|
||||
/>
|
||||
</div>
|
||||
|
@ -245,7 +248,8 @@
|
|||
<FAIcon
|
||||
v-if="!isDefaultBackground"
|
||||
:title="$t('settings.reset_profile_background')"
|
||||
class="reset-button" icon="times"
|
||||
class="reset-button"
|
||||
icon="times"
|
||||
type="button"
|
||||
@click="resetBackground"
|
||||
/>
|
||||
|
|
|
@ -42,22 +42,26 @@
|
|||
<FAIcon
|
||||
fixed-width
|
||||
style="color: var(--cBlue)"
|
||||
class="button-icon" icon="reply"
|
||||
class="button-icon"
|
||||
icon="reply"
|
||||
/>
|
||||
<FAIcon
|
||||
fixed-width
|
||||
style="color: var(--cGreen)"
|
||||
class="button-icon" icon="retweet"
|
||||
class="button-icon"
|
||||
icon="retweet"
|
||||
/>
|
||||
<FAIcon
|
||||
fixed-width
|
||||
style="color: var(--cOrange)"
|
||||
class="button-icon" icon="star"
|
||||
class="button-icon"
|
||||
icon="star"
|
||||
/>
|
||||
<FAIcon
|
||||
fixed-width
|
||||
style="color: var(--cRed)"
|
||||
class="button-icon" icon="times"
|
||||
class="button-icon"
|
||||
icon="times"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -80,7 +80,10 @@
|
|||
{{ style[0] || style.name }}
|
||||
</option>
|
||||
</select>
|
||||
<FAIcon class="select-down-icon" icon="chevron-down" />
|
||||
<FAIcon
|
||||
class="select-down-icon"
|
||||
icon="chevron-down"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
</template>
|
||||
|
@ -907,7 +910,10 @@
|
|||
{{ $t('settings.style.shadows.components.' + shadow) }}
|
||||
</option>
|
||||
</select>
|
||||
<FAIcon class="select-down-icon" icon="chevron-down" />
|
||||
<FAIcon
|
||||
class="select-down-icon"
|
||||
icon="chevron-down"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
<div class="override">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue