more replacements + small renames
This commit is contained in:
parent
b19c2eb0fb
commit
3cbaa00449
18 changed files with 106 additions and 59 deletions
|
@ -53,7 +53,7 @@
|
|||
<option value="following">{{ $t('settings.reply_visibility_following') }}</option>
|
||||
<option value="self">{{ $t('settings.reply_visibility_self') }}</option>
|
||||
</select>
|
||||
<FAIcon class="icon-down-open" icon="chevron-down" />
|
||||
<FAIcon class="select-down-icon" icon="chevron-down" />
|
||||
</label>
|
||||
</div>
|
||||
<div>
|
||||
|
|
|
@ -103,7 +103,7 @@
|
|||
{{ subjectLineBehaviorDefaultValue == 'noop' ? $t('settings.instance_default_simple') : '' }}
|
||||
</option>
|
||||
</select>
|
||||
<FAIcon class="icon-down-open" icon="chevron-down" />
|
||||
<FAIcon class="select-down-icon" icon="chevron-down" />
|
||||
</label>
|
||||
</div>
|
||||
</li>
|
||||
|
@ -127,7 +127,7 @@
|
|||
{{ postContentTypeDefaultValue === postFormat ? $t('settings.instance_default_simple') : '' }}
|
||||
</option>
|
||||
</select>
|
||||
<FAIcon class="icon-down-open" icon="chevron-down" />
|
||||
<FAIcon class="select-down-icon" icon="chevron-down" />
|
||||
</label>
|
||||
</div>
|
||||
</li>
|
||||
|
|
|
@ -39,19 +39,23 @@
|
|||
</i18n>
|
||||
|
||||
<div class="icons">
|
||||
<i
|
||||
<FAIcon
|
||||
fixed-width
|
||||
style="color: var(--cBlue)"
|
||||
class="button-icon icon-reply"
|
||||
class="button-icon" icon="reply"
|
||||
/>
|
||||
<i
|
||||
<FAIcon
|
||||
fixed-width
|
||||
style="color: var(--cGreen)"
|
||||
class="button-icon icon-retweet"
|
||||
class="button-icon" icon="retweet"
|
||||
/>
|
||||
<i
|
||||
<FAIcon
|
||||
fixed-width
|
||||
style="color: var(--cOrange)"
|
||||
class="button-icon icon-star"
|
||||
class="button-icon" icon="star"
|
||||
/>
|
||||
<i
|
||||
<FAIcon
|
||||
fixed-width
|
||||
style="color: var(--cRed)"
|
||||
class="button-icon" icon="times"
|
||||
/>
|
||||
|
@ -106,11 +110,17 @@
|
|||
<script>
|
||||
import { library } from '@fortawesome/fontawesome-svg-core'
|
||||
import {
|
||||
faTimes
|
||||
faTimes,
|
||||
faStar,
|
||||
faRetweet,
|
||||
faReply
|
||||
} from '@fortawesome/free-solid-svg-icons'
|
||||
|
||||
library.add(
|
||||
faTimes
|
||||
faTimes,
|
||||
faStar,
|
||||
faRetweet,
|
||||
faReply
|
||||
)
|
||||
</script>
|
||||
|
||||
|
|
|
@ -80,7 +80,7 @@
|
|||
{{ style[0] || style.name }}
|
||||
</option>
|
||||
</select>
|
||||
<FAIcon class="icon-down-open" icon="chevron-down" />
|
||||
<FAIcon class="select-down-icon" icon="chevron-down" />
|
||||
</label>
|
||||
</div>
|
||||
</template>
|
||||
|
@ -907,7 +907,7 @@
|
|||
{{ $t('settings.style.shadows.components.' + shadow) }}
|
||||
</option>
|
||||
</select>
|
||||
<FAIcon class="icon-down-open" 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