clean up
This commit is contained in:
parent
dad915e522
commit
ebd7b27075
|
@ -96,7 +96,7 @@ function onTabClick(): void {
|
||||||
}
|
}
|
||||||
|
|
||||||
const calcBg = () => {
|
const calcBg = () => {
|
||||||
const rawBg = metadata?.bg ?? 'var(--bg)';
|
const rawBg = 'var(--bg)';
|
||||||
const tinyBg = tinycolor(rawBg.startsWith('var(') ? getComputedStyle(document.documentElement).getPropertyValue(rawBg.slice(4, -1)) : rawBg);
|
const tinyBg = tinycolor(rawBg.startsWith('var(') ? getComputedStyle(document.documentElement).getPropertyValue(rawBg.slice(4, -1)) : rawBg);
|
||||||
tinyBg.setAlpha(0.85);
|
tinyBg.setAlpha(0.85);
|
||||||
bg.value = tinyBg.toRgbString();
|
bg.value = tinyBg.toRgbString();
|
||||||
|
|
|
@ -422,7 +422,6 @@ onUnmounted(() => {
|
||||||
definePageMetadata(computed(() => ({
|
definePageMetadata(computed(() => ({
|
||||||
title: ts.preferencesBackups,
|
title: ts.preferencesBackups,
|
||||||
icon: 'ti ti-device-floppy',
|
icon: 'ti ti-device-floppy',
|
||||||
bg: 'var(--bg)',
|
|
||||||
})));
|
})));
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -47,6 +47,5 @@ const headerTabs = $computed(() => []);
|
||||||
definePageMetadata({
|
definePageMetadata({
|
||||||
title: i18n.ts.statusbar,
|
title: i18n.ts.statusbar,
|
||||||
icon: 'ti ti-list',
|
icon: 'ti ti-list',
|
||||||
bg: 'var(--bg)',
|
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -10,7 +10,6 @@ export type PageMetadata = {
|
||||||
icon?: string | null;
|
icon?: string | null;
|
||||||
avatar?: misskey.entities.User | null;
|
avatar?: misskey.entities.User | null;
|
||||||
userName?: misskey.entities.User | null;
|
userName?: misskey.entities.User | null;
|
||||||
bg?: string;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export function definePageMetadata(metadata: PageMetadata | null | Ref<PageMetadata | null> | ComputedRef<PageMetadata | null>): void {
|
export function definePageMetadata(metadata: PageMetadata | null | Ref<PageMetadata | null> | ComputedRef<PageMetadata | null>): void {
|
||||||
|
|
Loading…
Reference in New Issue