lint
This commit is contained in:
parent
a21f25ed8e
commit
541affd459
|
@ -17,18 +17,18 @@
|
|||
:disabled="disabled || !moveUpValid"
|
||||
:class="{ disabled: disabled || !moveUpValid }"
|
||||
@click="moveUp"
|
||||
>
|
||||
>
|
||||
<FAIcon
|
||||
fixed-width
|
||||
icon="chevron-up"
|
||||
/>
|
||||
/>
|
||||
</button>
|
||||
<button
|
||||
class="btn button-default"
|
||||
:disabled="disabled || !moveDnValid"
|
||||
:class="{ disabled: disabled || !moveDnValid }"
|
||||
@click="moveDn"
|
||||
>
|
||||
>
|
||||
<FAIcon
|
||||
fixed-width
|
||||
icon="chevron-down"
|
||||
|
|
|
@ -92,7 +92,7 @@
|
|||
</template>
|
||||
<template v-else-if="customThemeVersion === 'v2'">
|
||||
<div class="alert neutral theme-notice unsupported-theme-v2">
|
||||
{{$t('settings.style.themes3.palette.v2_unsupported')}}
|
||||
{{ $t('settings.style.themes3.palette.v2_unsupported') }}
|
||||
</div>
|
||||
</template>
|
||||
</div>
|
||||
|
|
|
@ -53,8 +53,8 @@
|
|||
</div>
|
||||
<tab-switcher>
|
||||
<div
|
||||
class="setting-item component-editor"
|
||||
key="component"
|
||||
class="setting-item component-editor"
|
||||
:label="$t('settings.style.themes3.editor.component_tab')"
|
||||
>
|
||||
<div class="component-selector">
|
||||
|
|
|
@ -17,19 +17,6 @@
|
|||
.shadow-list {
|
||||
flex: 1 0 auto;
|
||||
}
|
||||
|
||||
.arrange-buttons {
|
||||
flex: 0 0 auto;
|
||||
display: grid;
|
||||
grid-auto-columns: 1fr;
|
||||
grid-auto-flow: column;
|
||||
margin-top: 0.25em;
|
||||
|
||||
.button-default {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.shadow-tweak {
|
||||
|
|
|
@ -29,9 +29,8 @@
|
|||
</option>
|
||||
</Select>
|
||||
<SelectMotion
|
||||
class="arrange-buttons"
|
||||
v-model="cValue"
|
||||
:selectedId="selectedId"
|
||||
:selected-id="selectedId"
|
||||
:get-add-value="getNewSubshadow"
|
||||
:disabled="disabled"
|
||||
@update:selectedId="onSelectChange"
|
||||
|
@ -55,8 +54,7 @@
|
|||
class="input shadow-expression"
|
||||
:disabled="disabled || shadowsAreNull"
|
||||
:class="{disabled: disabled || shadowsAreNull}"
|
||||
>
|
||||
</textarea>
|
||||
/>
|
||||
</template>
|
||||
<template v-else-if="selectedType === 'object'">
|
||||
<div
|
||||
|
|
Loading…
Reference in a new issue