diff options
| author | Henry Jameson <me@hjkos.com> | 2020-01-13 22:19:19 +0200 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2020-01-13 22:19:19 +0200 |
| commit | 9f7af191e8a77a0c5620c8698cc7b26dde02868b (patch) | |
| tree | cb8947aaea34e878edef653c2d6ae61d0f96948f /src/components/style_switcher/style_switcher.vue | |
| parent | 4b8e0f0afa2c7f1d0f4f0c2f39f289b75b3cae08 (diff) | |
tabs & toggled (ex pressed) buttons
Diffstat (limited to 'src/components/style_switcher/style_switcher.vue')
| -rw-r--r-- | src/components/style_switcher/style_switcher.vue | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/components/style_switcher/style_switcher.vue b/src/components/style_switcher/style_switcher.vue index 3921c953..2fca5570 100644 --- a/src/components/style_switcher/style_switcher.vue +++ b/src/components/style_switcher/style_switcher.vue @@ -377,6 +377,29 @@ <ContrastRatio :contrast="previewContrast.btnDisabledText" /> </div> <div class="color-item"> + <h4>{{ $t('settings.style.advanced_colors.tabs') }}</h4> + <ColorInput + v-model="tabColorLocal" + name="tabColor" + :fallback="previewTheme.colors.tab" + :label="$t('settings.background')" + /> + <ColorInput + v-model="tabTextColorLocal" + name="tabTextColor" + :fallback="previewTheme.colors.tabText" + :label="$t('settings.text')" + /> + <ContrastRatio :contrast="previewContrast.tabText" /> + <ColorInput + v-model="tabActiveTextColorLocal" + name="tabActiveTextColor" + :fallback="previewTheme.colors.tabActiveText" + :label="$t('settings.text')" + /> + <ContrastRatio :contrast="previewContrast.tabActiveText" /> + </div> + <div class="color-item"> <h4>{{ $t('settings.style.advanced_colors.borders') }}</h4> <ColorInput v-model="borderColorLocal" |
