diff options
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/shadow_control/shadow_control.vue | 4 | ||||
| -rw-r--r-- | src/components/style_switcher/style_switcher.vue | 7 |
2 files changed, 9 insertions, 2 deletions
diff --git a/src/components/shadow_control/shadow_control.vue b/src/components/shadow_control/shadow_control.vue index b608d0ff..85346e17 100644 --- a/src/components/shadow_control/shadow_control.vue +++ b/src/components/shadow_control/shadow_control.vue @@ -124,6 +124,9 @@ <OpacityInput v-model="selected.alpha" :disabled="!present"/> + <div> + {{$t('settings.style.shadows.hint')}} + </div> </div> </div> </template> @@ -215,6 +218,7 @@ .shadow-tweak { flex: 1; + min-width: 280px; .id-control { align-items: stretch; diff --git a/src/components/style_switcher/style_switcher.vue b/src/components/style_switcher/style_switcher.vue index 9e5cffbe..f5090321 100644 --- a/src/components/style_switcher/style_switcher.vue +++ b/src/components/style_switcher/style_switcher.vue @@ -75,9 +75,11 @@ <tab-switcher key="style-tweak"> <div :label="$t('settings.style.common_colors._tab_label')" class="color-container"> <div class="tab-header"> - <p>{{$t('settings.theme_help')}}</p> + <p>{{$t('settings.theme_help')}}</p> <button class="btn" @click="clearOpacity">{{$t('settings.style.switcher.clear_opacity')}}</button> + <button class="btn" @click="clearV1">{{$t('settings.style.switcher.clear_all')}}</button> </div> + <p>{{$t('settings.theme_help_v2_1')}}</p> <h4>{{ $t('settings.style.common_colors.main') }}</h4> <div class="color-item"> <ColorInput name="bgColor" v-model="bgColorLocal" :label="$t('settings.background')"/> @@ -106,13 +108,14 @@ <ColorInput name="cOrangeColor" v-model="cOrangeColorLocal" :label="$t('settings.cOrange')"/> <ContrastRatio :contrast="previewContrast.bgOrange"/> </div> + <p>{{$t('settings.theme_help_v2_2')}}</p> </div> <div :label="$t('settings.style.advanced_colors._tab_label')" class="color-container"> <div class="tab-header"> <p>{{$t('settings.theme_help')}}</p> - <button class="btn" @click="clearV1">{{$t('settings.style.switcher.clear_all')}}</button> <button class="btn" @click="clearOpacity">{{$t('settings.style.switcher.clear_opacity')}}</button> + <button class="btn" @click="clearV1">{{$t('settings.style.switcher.clear_all')}}</button> </div> <div class="color-item"> <h4>{{ $t('settings.style.advanced_colors.alert') }}</h4> |
