summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2017-08-30 18:59:50 +0900
committersyuilo <syuilotan@yahoo.co.jp>2017-08-30 18:59:50 +0900
commitd51ac13b237fc71cb6bb95aa006947cd0b1dfe5b (patch)
tree24c6849e91baf76a15f8347d8a5813a338b63172
parentFix bug (diff)
downloadsharkey-d51ac13b237fc71cb6bb95aa006947cd0b1dfe5b.tar.gz
sharkey-d51ac13b237fc71cb6bb95aa006947cd0b1dfe5b.tar.bz2
sharkey-d51ac13b237fc71cb6bb95aa006947cd0b1dfe5b.zip
#748
-rw-r--r--CHANGELOG.md1
-rw-r--r--src/web/app/mobile/tags/timeline.tag6
2 files changed, 6 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3f7dadd948..bca7815d24 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,7 @@ ChangeLog (Release Notes)
unreleased
----------
* Fix: モバイル版のタイムラインからリアクションやメニューを開けない
+* デザインの調整
2515 (2017/08/30)
-----------------
diff --git a/src/web/app/mobile/tags/timeline.tag b/src/web/app/mobile/tags/timeline.tag
index bc01394554..62d47678ac 100644
--- a/src/web/app/mobile/tags/timeline.tag
+++ b/src/web/app/mobile/tags/timeline.tag
@@ -190,7 +190,7 @@
<button class={ reacted: p.my_reaction != null } onclick={ react } ref="reactButton">
<i class="fa fa-plus"></i><p class="count" if={ p.reactions_count > 0 }>{ p.reactions_count }</p>
</button>
- <button onclick={ menu } ref="menuButton">
+ <button class="menu" onclick={ menu } ref="menuButton">
<i class="fa fa-ellipsis-h"></i>
</button>
</footer>
@@ -454,6 +454,10 @@
&.reacted
color $theme-color
+ &.menu
+ @media (max-width 350px)
+ display none
+
</style>
<script>
import compile from '../../common/scripts/text-compiler';