start better headerbar
This commit is contained in:
parent
ae8968e787
commit
1a9a3b1bc4
10
CALCKEY.md
10
CALCKEY.md
@ -1,10 +1,9 @@
|
|||||||
# All the changes to Calckey from stock Misskey
|
# All the changes to Calckey from stock Misskey
|
||||||
|
|
||||||
### Planned
|
## Planned
|
||||||
|
|
||||||
- MFM button
|
- MFM button
|
||||||
- Better Messaging UI
|
- Better Messaging UI
|
||||||
- Better timeline top bar
|
|
||||||
- Classic mode make instance icon bring up new context menu
|
- Classic mode make instance icon bring up new context menu
|
||||||
- Like/star button
|
- Like/star button
|
||||||
- Option to publicize instance blocks
|
- Option to publicize instance blocks
|
||||||
@ -17,7 +16,12 @@
|
|||||||
- "Bubble" timeline
|
- "Bubble" timeline
|
||||||
- Filter notifications by user
|
- Filter notifications by user
|
||||||
|
|
||||||
### Implemented
|
## In progress
|
||||||
|
|
||||||
|
- Better timeline top bar
|
||||||
|
- Profile background
|
||||||
|
|
||||||
|
## Implemented
|
||||||
|
|
||||||
- Yarn 3
|
- Yarn 3
|
||||||
- Saner defaults
|
- Saner defaults
|
||||||
|
@ -307,7 +307,7 @@ onUnmounted(() => {
|
|||||||
> .tabs {
|
> .tabs {
|
||||||
position: relative;
|
position: relative;
|
||||||
margin-left: 16px;
|
margin-left: 16px;
|
||||||
font-size: 0.8em;
|
font-size: 0.9em;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
|
||||||
|
@ -121,19 +121,19 @@ const headerTabs = $computed(() => [{
|
|||||||
}, ...(isLocalTimelineAvailable ? [{
|
}, ...(isLocalTimelineAvailable ? [{
|
||||||
key: 'local',
|
key: 'local',
|
||||||
title: i18n.ts._timelines.local,
|
title: i18n.ts._timelines.local,
|
||||||
icon: 'fas fa-comments',
|
icon: 'fas fa-user-group',
|
||||||
iconOnly: true,
|
iconOnly: true,
|
||||||
}, {
|
}, {
|
||||||
key: 'social',
|
key: 'social',
|
||||||
title: i18n.ts._timelines.social,
|
title: i18n.ts._timelines.social,
|
||||||
icon: 'fas fa-share-alt',
|
icon: 'fas fa-handshake-simple',
|
||||||
iconOnly: true,
|
iconOnly: true,
|
||||||
}] : []), ...(isGlobalTimelineAvailable ? [{
|
}] : []), ...(isGlobalTimelineAvailable ? [{
|
||||||
key: 'global',
|
key: 'global',
|
||||||
title: i18n.ts._timelines.global,
|
title: i18n.ts._timelines.global,
|
||||||
icon: 'fas fa-globe',
|
icon: 'fas fa-globe',
|
||||||
iconOnly: true,
|
iconOnly: true,
|
||||||
}] : []), {
|
}] : []), /* {
|
||||||
icon: 'fas fa-list-ul',
|
icon: 'fas fa-list-ul',
|
||||||
title: i18n.ts.lists,
|
title: i18n.ts.lists,
|
||||||
iconOnly: true,
|
iconOnly: true,
|
||||||
@ -148,13 +148,13 @@ const headerTabs = $computed(() => [{
|
|||||||
title: i18n.ts.channel,
|
title: i18n.ts.channel,
|
||||||
iconOnly: true,
|
iconOnly: true,
|
||||||
onClick: chooseChannel,
|
onClick: chooseChannel,
|
||||||
}]);
|
}*/]);
|
||||||
|
|
||||||
const headerTabsWhenNotLogin = $computed(() => [
|
const headerTabsWhenNotLogin = $computed(() => [
|
||||||
...(isLocalTimelineAvailable ? [{
|
...(isLocalTimelineAvailable ? [{
|
||||||
key: 'local',
|
key: 'local',
|
||||||
title: i18n.ts._timelines.local,
|
title: i18n.ts._timelines.local,
|
||||||
icon: 'fas fa-comments',
|
icon: 'fas fa-user-group',
|
||||||
iconOnly: true,
|
iconOnly: true,
|
||||||
}] : []),
|
}] : []),
|
||||||
...(isGlobalTimelineAvailable ? [{
|
...(isGlobalTimelineAvailable ? [{
|
||||||
@ -167,7 +167,7 @@ const headerTabsWhenNotLogin = $computed(() => [
|
|||||||
|
|
||||||
definePageMetadata(computed(() => ({
|
definePageMetadata(computed(() => ({
|
||||||
title: i18n.ts.timeline,
|
title: i18n.ts.timeline,
|
||||||
icon: src === 'local' ? 'fas fa-comments' : src === 'social' ? 'fas fa-share-alt' : src === 'global' ? 'fas fa-globe' : 'fas fa-home',
|
icon: src === 'local' ? 'fas fa-user-group' : src === 'social' ? 'fas fa-handshake-simple' : src === 'global' ? 'fas fa-globe' : 'fas fa-home',
|
||||||
})));
|
})));
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user