summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-04-20 12:38:31 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-04-20 12:38:31 +0900
commit2105e4964b16d365a8b20bfeaca60468364b9267 (patch)
treeced3cdf788b3339c94ddb1db3df9f6dd214a192f /src/client
parent:v: (diff)
downloadmisskey-2105e4964b16d365a8b20bfeaca60468364b9267.tar.gz
misskey-2105e4964b16d365a8b20bfeaca60468364b9267.tar.bz2
misskey-2105e4964b16d365a8b20bfeaca60468364b9267.zip
:v:
Diffstat (limited to 'src/client')
-rw-r--r--src/client/app/desktop/views/components/ui.header.account.vue17
1 files changed, 15 insertions, 2 deletions
diff --git a/src/client/app/desktop/views/components/ui.header.account.vue b/src/client/app/desktop/views/components/ui.header.account.vue
index 01cca472db..ce7fab22cf 100644
--- a/src/client/app/desktop/views/components/ui.header.account.vue
+++ b/src/client/app/desktop/views/components/ui.header.account.vue
@@ -13,6 +13,9 @@
<li @click="drive">
<p>%fa:cloud%<span>%i18n:@drive%</span>%fa:angle-right%</p>
</li>
+ <li>
+ <router-link to="/i/favorites">%fa:star%<span>%i18n:@favorites%</span>%fa:angle-right%</router-link>
+ </li>
</ul>
<ul>
<li>
@@ -24,7 +27,7 @@
</ul>
<ul>
<li @click="signout">
- <p>%fa:power-off%<span>%i18n:@signout%</span></p>
+ <p class="signout">%fa:power-off%<span>%i18n:@signout%</span></p>
</li>
</ul>
<ul>
@@ -209,7 +212,7 @@ root(isDark)
pointer-events none
> span:first-child
- padding-left 16px
+ padding-left 22px
> [data-fa]:first-child
margin-right 6px
@@ -233,6 +236,16 @@ root(isDark)
&:active
background darken($theme-color, 10%)
+ &.signout
+ $color = #e64137
+
+ &:hover, &:active
+ background $color
+ color #fff
+
+ &:active
+ background darken($color, 10%)
+
.zoom-in-top-enter-active,
.zoom-in-top-leave-active {
transform-origin: center -16px;