!hideTitle
This commit is contained in:
parent
b240492fb1
commit
19cad428c9
|
@ -13,8 +13,9 @@ You should also include the user name that made the change.
|
||||||
### Improvements
|
### Improvements
|
||||||
- MkPageHeaderをごっそり変えた
|
- MkPageHeaderをごっそり変えた
|
||||||
* モバイルではヘッダーは上下に分割され、下段にタブが表示されるように
|
* モバイルではヘッダーは上下に分割され、下段にタブが表示されるように
|
||||||
* iconOnlyのタブ項目がアクティブな場合にはタイトルを表示するように
|
* iconOnlyのタブ項目がアクティブな場合にはタブのタイトルを表示するように
|
||||||
* メインタイムラインではタイトルを表示しない
|
* メインタイムラインではタイトルを表示しない
|
||||||
|
* メインタイムラインかつモバイルで表示される左上のアバターを選択するとアカウントメニューが開くように
|
||||||
- ユーザーページのノート一覧をタブとして分離
|
- ユーザーページのノート一覧をタブとして分離
|
||||||
|
|
||||||
### Bugfixes
|
### Bugfixes
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<div v-if="show" ref="el" :class="[$style.root]" :style="{ background: bg }">
|
<div v-if="show" ref="el" :class="[$style.root]" :style="{ background: bg }">
|
||||||
<div :class="[$style.upper, { [$style.slim]: narrow, [$style.thin]: thin_ }]">
|
<div :class="[$style.upper, { [$style.slim]: narrow, [$style.thin]: thin_ }]">
|
||||||
<div v-if="narrow && props.displayMyAvatar && $i" class="_button" :class="$style.buttonsLeft" @click="openAccountMenu">
|
<div v-if="narrow && !hideTitle && props.displayMyAvatar && $i" class="_button" :class="$style.buttonsLeft" @click="openAccountMenu">
|
||||||
<MkAvatar :class="$style.avatar" :user="$i" />
|
<MkAvatar :class="$style.avatar" :user="$i" />
|
||||||
</div>
|
</div>
|
||||||
<div v-else-if="narrow && !hideTitle" :class="$style.buttonsLeft" />
|
<div v-else-if="narrow && !hideTitle" :class="$style.buttonsLeft" />
|
||||||
|
|
Loading…
Reference in New Issue