This commit is contained in:
syuilo 2017-08-30 18:59:50 +09:00
parent 659446c075
commit d51ac13b23
2 changed files with 6 additions and 1 deletions

View file

@ -5,6 +5,7 @@ ChangeLog (Release Notes)
unreleased unreleased
---------- ----------
* Fix: モバイル版のタイムラインからリアクションやメニューを開けない * Fix: モバイル版のタイムラインからリアクションやメニューを開けない
* デザインの調整
2515 (2017/08/30) 2515 (2017/08/30)
----------------- -----------------

View file

@ -190,7 +190,7 @@
<button class={ reacted: p.my_reaction != null } onclick={ react } ref="reactButton"> <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> <i class="fa fa-plus"></i><p class="count" if={ p.reactions_count > 0 }>{ p.reactions_count }</p>
</button> </button>
<button onclick={ menu } ref="menuButton"> <button class="menu" onclick={ menu } ref="menuButton">
<i class="fa fa-ellipsis-h"></i> <i class="fa fa-ellipsis-h"></i>
</button> </button>
</footer> </footer>
@ -454,6 +454,10 @@
&.reacted &.reacted
color $theme-color color $theme-color
&.menu
@media (max-width 350px)
display none
</style> </style>
<script> <script>
import compile from '../../common/scripts/text-compiler'; import compile from '../../common/scripts/text-compiler';