Skip to content
Snippets Groups Projects
Commit 8ee4b180 authored by syuilo's avatar syuilo
Browse files

🎨

parent 46e4b07a
No related branches found
No related tags found
No related merge requests found
<template>
<div class="fdidabkb" :class="{ slim: narrow, thin: thin_ }" :style="{ background: bg }" @click="onClick" ref="el">
<template v-if="info">
<div class="titleContainer" @click="showTabsPopup">
<div class="titleContainer" @click="showTabsPopup" v-if="!hideTitle">
<i v-if="info.icon" class="icon" :class="info.icon"></i>
<MkAvatar v-else-if="info.avatar" class="avatar" :user="info.avatar" :disable-preview="true" :show-indicator="true"/>
......@@ -17,7 +17,7 @@
</div>
</div>
</div>
<div class="tabs" v-if="!narrow">
<div class="tabs" v-if="!narrow || hideTitle">
<button class="tab _button" v-for="tab in info.tabs" :class="{ active: tab.active }" @click="tab.onClick" v-tooltip="tab.title">
<i v-if="tab.icon" class="icon" :class="tab.icon"></i>
<span v-if="!tab.iconOnly" class="title">{{ tab.title }}</span>
......@@ -182,6 +182,7 @@ export default defineComponent({
showTabsPopup,
preventDrag,
onClick,
hideTitle: inject('shouldOmitHeaderTitle', false),
thin_: props.thin || inject('shouldHeaderThin', false)
};
},
......@@ -210,12 +211,6 @@ export default defineComponent({
> .titleContainer {
margin: 0 auto;
}
> .buttons {
&.right {
margin-left: 0;
}
}
}
> .buttons {
......
......@@ -38,7 +38,8 @@ import { deckStore } from './deck-store';
export default defineComponent({
provide: {
shouldHeaderThin: true
shouldHeaderThin: true,
shouldOmitHeaderTitle: true,
},
props: {
......
......@@ -2,7 +2,7 @@
"short_name": "Misskey",
"name": "Misskey",
"start_url": "/",
"display": "standalone",
"display": "minimal-ui",
"background_color": "#313a42",
"theme_color": "#86b300",
"icons": [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment