As I said in the issue, "mark read" is the most used menu item, and it must be the first, that way we will drag the mouse less.
This commit is contained in:
Roman 2017-05-23 21:18:37 +02:00 коммит произвёл Bernhard Posselt
Родитель 6a49dbe342
Коммит 3a054c59f2
1 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

@ -86,6 +86,12 @@
<div class="app-navigation-entry-menu">
<ul>
<li ng-show="Navigation.isFeedUnread(feed.id)" class="mark-read">
<button ng-click="Navigation.markFeedRead(feed.id)">
<span class="icon-checkmark"></span>
<span><?php p($l->t('Mark read')); ?></span>
</button>
</li>
<li>
<button ng-click="Navigation.togglePinned(feed.id)"
ng-show="feed.pinned">
@ -151,12 +157,6 @@
<span><?php p($l->t('Delete')); ?></span>
</button>
</li>
<li ng-show="Navigation.isFeedUnread(feed.id)" class="mark-read">
<button ng-click="Navigation.markFeedRead(feed.id)">
<span class="icon-checkmark"></span>
<span><?php p($l->t('Mark read')); ?></span>
</button>
</li>
</ul>
</div>