forked from AkkomaGang/akkoma-fe
some help strings
This commit is contained in:
parent
b07d7d7229
commit
1a8d24d649
4 changed files with 15 additions and 4 deletions
|
@ -124,6 +124,9 @@
|
||||||
<OpacityInput
|
<OpacityInput
|
||||||
v-model="selected.alpha"
|
v-model="selected.alpha"
|
||||||
:disabled="!present"/>
|
:disabled="!present"/>
|
||||||
|
<div>
|
||||||
|
{{$t('settings.style.shadows.hint')}}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
@ -215,6 +218,7 @@
|
||||||
|
|
||||||
.shadow-tweak {
|
.shadow-tweak {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
|
min-width: 280px;
|
||||||
|
|
||||||
.id-control {
|
.id-control {
|
||||||
align-items: stretch;
|
align-items: stretch;
|
||||||
|
|
|
@ -75,9 +75,11 @@
|
||||||
<tab-switcher key="style-tweak">
|
<tab-switcher key="style-tweak">
|
||||||
<div :label="$t('settings.style.common_colors._tab_label')" class="color-container">
|
<div :label="$t('settings.style.common_colors._tab_label')" class="color-container">
|
||||||
<div class="tab-header">
|
<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="clearOpacity">{{$t('settings.style.switcher.clear_opacity')}}</button>
|
||||||
|
<button class="btn" @click="clearV1">{{$t('settings.style.switcher.clear_all')}}</button>
|
||||||
</div>
|
</div>
|
||||||
|
<p>{{$t('settings.theme_help_v2_1')}}</p>
|
||||||
<h4>{{ $t('settings.style.common_colors.main') }}</h4>
|
<h4>{{ $t('settings.style.common_colors.main') }}</h4>
|
||||||
<div class="color-item">
|
<div class="color-item">
|
||||||
<ColorInput name="bgColor" v-model="bgColorLocal" :label="$t('settings.background')"/>
|
<ColorInput name="bgColor" v-model="bgColorLocal" :label="$t('settings.background')"/>
|
||||||
|
@ -106,13 +108,14 @@
|
||||||
<ColorInput name="cOrangeColor" v-model="cOrangeColorLocal" :label="$t('settings.cOrange')"/>
|
<ColorInput name="cOrangeColor" v-model="cOrangeColorLocal" :label="$t('settings.cOrange')"/>
|
||||||
<ContrastRatio :contrast="previewContrast.bgOrange"/>
|
<ContrastRatio :contrast="previewContrast.bgOrange"/>
|
||||||
</div>
|
</div>
|
||||||
|
<p>{{$t('settings.theme_help_v2_2')}}</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div :label="$t('settings.style.advanced_colors._tab_label')" class="color-container">
|
<div :label="$t('settings.style.advanced_colors._tab_label')" class="color-container">
|
||||||
<div class="tab-header">
|
<div class="tab-header">
|
||||||
<p>{{$t('settings.theme_help')}}</p>
|
<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="clearOpacity">{{$t('settings.style.switcher.clear_opacity')}}</button>
|
||||||
|
<button class="btn" @click="clearV1">{{$t('settings.style.switcher.clear_all')}}</button>
|
||||||
</div>
|
</div>
|
||||||
<div class="color-item">
|
<div class="color-item">
|
||||||
<h4>{{ $t('settings.style.advanced_colors.alert') }}</h4>
|
<h4>{{ $t('settings.style.advanced_colors.alert') }}</h4>
|
||||||
|
|
|
@ -157,6 +157,8 @@
|
||||||
"text": "Text",
|
"text": "Text",
|
||||||
"theme": "Theme",
|
"theme": "Theme",
|
||||||
"theme_help": "Use hex color codes (#rrggbb) to customize your color theme.",
|
"theme_help": "Use hex color codes (#rrggbb) to customize your color theme.",
|
||||||
|
"theme_help_v2_1": "You can also override certain component's colors and opacity by toggling the checkbox, use \"Clear all\" button to clear all overrides.",
|
||||||
|
"theme_help_v2_2": "Icons underneath some entries are background/text contrast indicators, hover over for detailed info. Please keep in mind that when using transparency contrast indicators show the worst possible case.",
|
||||||
"tooltipRadius": "Tooltips/alerts",
|
"tooltipRadius": "Tooltips/alerts",
|
||||||
"user_settings": "User Settings",
|
"user_settings": "User Settings",
|
||||||
"values": {
|
"values": {
|
||||||
|
@ -220,12 +222,13 @@
|
||||||
"blur": "Blur",
|
"blur": "Blur",
|
||||||
"spread": "Spread",
|
"spread": "Spread",
|
||||||
"inset": "Inset",
|
"inset": "Inset",
|
||||||
|
"hint": "For shadows you can also use --variable as a color value to use CSS3 variables. Please note that setting opacity won't work in this case.",
|
||||||
"components": {
|
"components": {
|
||||||
"panel": "Panel",
|
"panel": "Panel",
|
||||||
"panelHeader": "Panel header",
|
"panelHeader": "Panel header",
|
||||||
"topBar": "Top bar",
|
"topBar": "Top bar",
|
||||||
"avatar": "User avatar (in post display)",
|
"avatar": "User avatar (in profile view)",
|
||||||
"avatarStatus": "User avatar (in profile view)",
|
"avatarStatus": "User avatar (in post display)",
|
||||||
"popup": "Popups and tooltips",
|
"popup": "Popups and tooltips",
|
||||||
"button": "Button",
|
"button": "Button",
|
||||||
"buttonHover": "Button (hover)",
|
"buttonHover": "Button (hover)",
|
||||||
|
|
|
@ -321,6 +321,7 @@ const generateShadows = (input) => {
|
||||||
color: '#000000',
|
color: '#000000',
|
||||||
alpha: 0.7
|
alpha: 0.7
|
||||||
}],
|
}],
|
||||||
|
avatarStatus: [],
|
||||||
panelHeader: [],
|
panelHeader: [],
|
||||||
button: [{
|
button: [{
|
||||||
x: 0,
|
x: 0,
|
||||||
|
|
Loading…
Reference in a new issue