chevrons-downs, settings
This commit is contained in:
parent
8b3a7ae8c0
commit
e8650d3409
14 changed files with 97 additions and 20 deletions
|
@ -2,6 +2,14 @@ import { filter, trim } from 'lodash'
|
|||
import Checkbox from 'src/components/checkbox/checkbox.vue'
|
||||
|
||||
import SharedComputedObject from '../helpers/shared_computed_object.js'
|
||||
import { library } from '@fortawesome/fontawesome-svg-core'
|
||||
import {
|
||||
faChevronDown
|
||||
} from '@fortawesome/free-solid-svg-icons'
|
||||
|
||||
library.add(
|
||||
faChevronDown
|
||||
)
|
||||
|
||||
const FilteringTab = {
|
||||
data () {
|
||||
|
|
|
@ -53,7 +53,7 @@
|
|||
<option value="following">{{ $t('settings.reply_visibility_following') }}</option>
|
||||
<option value="self">{{ $t('settings.reply_visibility_self') }}</option>
|
||||
</select>
|
||||
<i class="icon-down-open" />
|
||||
<FAIcon class="icon-down-open" icon="chevron-down" />
|
||||
</label>
|
||||
</div>
|
||||
<div>
|
||||
|
|
|
@ -2,6 +2,14 @@ import Checkbox from 'src/components/checkbox/checkbox.vue'
|
|||
import InterfaceLanguageSwitcher from 'src/components/interface_language_switcher/interface_language_switcher.vue'
|
||||
|
||||
import SharedComputedObject from '../helpers/shared_computed_object.js'
|
||||
import { library } from '@fortawesome/fontawesome-svg-core'
|
||||
import {
|
||||
faChevronDown
|
||||
} from '@fortawesome/free-solid-svg-icons'
|
||||
|
||||
library.add(
|
||||
faChevronDown
|
||||
)
|
||||
|
||||
const GeneralTab = {
|
||||
data () {
|
||||
|
|
|
@ -103,7 +103,7 @@
|
|||
{{ subjectLineBehaviorDefaultValue == 'noop' ? $t('settings.instance_default_simple') : '' }}
|
||||
</option>
|
||||
</select>
|
||||
<i class="icon-down-open" />
|
||||
<FAIcon class="icon-down-open" icon="chevron-down" />
|
||||
</label>
|
||||
</div>
|
||||
</li>
|
||||
|
@ -127,7 +127,7 @@
|
|||
{{ postContentTypeDefaultValue === postFormat ? $t('settings.instance_default_simple') : '' }}
|
||||
</option>
|
||||
</select>
|
||||
<i class="icon-down-open" />
|
||||
<FAIcon class="icon-down-open" icon="chevron-down" />
|
||||
</label>
|
||||
</div>
|
||||
</li>
|
||||
|
|
|
@ -35,6 +35,14 @@ import ExportImport from 'src/components/export_import/export_import.vue'
|
|||
import Checkbox from 'src/components/checkbox/checkbox.vue'
|
||||
|
||||
import Preview from './preview.vue'
|
||||
import { library } from '@fortawesome/fontawesome-svg-core'
|
||||
import {
|
||||
faChevronDown
|
||||
} from '@fortawesome/free-solid-svg-icons'
|
||||
|
||||
library.add(
|
||||
faChevronDown
|
||||
)
|
||||
|
||||
// List of color values used in v1
|
||||
const v1OnlyNames = [
|
||||
|
|
|
@ -80,7 +80,7 @@
|
|||
{{ style[0] || style.name }}
|
||||
</option>
|
||||
</select>
|
||||
<i class="icon-down-open" />
|
||||
<FAIcon class="icon-down-open" icon="chevron-down" />
|
||||
</label>
|
||||
</div>
|
||||
</template>
|
||||
|
@ -907,7 +907,7 @@
|
|||
{{ $t('settings.style.shadows.components.' + shadow) }}
|
||||
</option>
|
||||
</select>
|
||||
<i class="icon-down-open" />
|
||||
<FAIcon class="icon-down-open" icon="chevron-down" />
|
||||
</label>
|
||||
</div>
|
||||
<div class="override">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue