pleasing the linter gods
This commit is contained in:
parent
06608adec4
commit
3355f1d797
10 changed files with 21 additions and 13 deletions
|
|
@ -13,8 +13,8 @@
|
|||
</label>
|
||||
<span class="setting-control btn-group">
|
||||
<Select
|
||||
:name="uniqueId+index"
|
||||
:id="uniqueId+index"
|
||||
:name="uniqueId+index"
|
||||
class="language-select"
|
||||
:model-value="controlledLanguage[index]"
|
||||
@update:model-value="val => setLanguageAt(index, val)"
|
||||
|
|
|
|||
|
|
@ -31,8 +31,8 @@
|
|||
<div class="setting-control">
|
||||
<ul class="item-list">
|
||||
<li
|
||||
class="no_items"
|
||||
v-if="visibleState.length === 0"
|
||||
class="no_items"
|
||||
>
|
||||
{{ $t('admin_dash.instance.pwa.no_icons') }}
|
||||
<button
|
||||
|
|
@ -59,8 +59,8 @@
|
|||
<div class="src-url">
|
||||
<label for="path">{{ $t('settings.url') }}</label>
|
||||
<input
|
||||
class="input string-input"
|
||||
:id="path"
|
||||
class="input string-input"
|
||||
:disabled="shouldBeDisabled"
|
||||
:value="item[':src']"
|
||||
@change="event => update({ event, index, eventType: 'edit', field: ':src' })"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<span
|
||||
class="setting-item"
|
||||
v-if="matchesExpertLevel"
|
||||
class="setting-item"
|
||||
>
|
||||
<label
|
||||
v-if="!hideLabel"
|
||||
|
|
|
|||
|
|
@ -208,10 +208,11 @@
|
|||
}
|
||||
}
|
||||
|
||||
/* stylelint-disable no-descending-specificity */
|
||||
.setting-item {
|
||||
grid-template-columns: 1fr min-content;
|
||||
column-gap: 0.5em;
|
||||
padding: 1em 1em;
|
||||
padding: 1em;
|
||||
align-items: center;
|
||||
|
||||
.setting-label {
|
||||
|
|
@ -229,6 +230,8 @@
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
.setting-list:not(.suboptions),
|
||||
.option-list {
|
||||
&.two-column {
|
||||
|
|
|
|||
|
|
@ -4,7 +4,10 @@
|
|||
<h3>{{ $t('settings.general') }}</h3>
|
||||
<ul class="setting-list">
|
||||
<li>
|
||||
<label class="setting-item " for="default-vis">
|
||||
<label
|
||||
class="setting-item "
|
||||
for="default-vis"
|
||||
>
|
||||
<span class="setting-label">
|
||||
<ProfileSettingIndicator :is-profile="true" />
|
||||
{{ $t('settings.default_vis') }}
|
||||
|
|
|
|||
|
|
@ -54,8 +54,8 @@
|
|||
</span>
|
||||
<Select
|
||||
id="onBlockDefaultActionLv1"
|
||||
class="setting-control"
|
||||
v-model="onBlockDefaultActionLv1"
|
||||
class="setting-control"
|
||||
>
|
||||
<option
|
||||
v-for="option in muteBlockLv1Options"
|
||||
|
|
|
|||
|
|
@ -142,7 +142,9 @@
|
|||
class="setting-list"
|
||||
>
|
||||
<li class="select-multiple">
|
||||
<h4 class="label">{{ $t('settings.confirm_dialogs') }}</h4>
|
||||
<h4 class="label">
|
||||
{{ $t('settings.confirm_dialogs') }}
|
||||
</h4>
|
||||
<ul class="option-list">
|
||||
<li>
|
||||
<BooleanSetting path="modalOnRepeat">
|
||||
|
|
|
|||
|
|
@ -40,8 +40,8 @@
|
|||
<li>
|
||||
<h4> {{ $t('settings.notification_visibility') }}</h4>
|
||||
<p
|
||||
class="sidenote"
|
||||
v-if="expertLevel > 0"
|
||||
class="sidenote"
|
||||
>
|
||||
{{ $t('settings.notification_setting_filters_chrome_push') }}
|
||||
</p>
|
||||
|
|
|
|||
|
|
@ -13,8 +13,8 @@
|
|||
<li>
|
||||
<div class="setting-item">
|
||||
<Checkbox
|
||||
class="setting-label setting-control custom-boolean-setting"
|
||||
v-model="locked"
|
||||
class="setting-label setting-control custom-boolean-setting"
|
||||
>
|
||||
<ProfileSettingIndicator :is-profile="true" />
|
||||
{{ $t('settings.lock_account_description') }}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue