diff options
author | Adam Mathes <adam@trenchant.org> | 2018-09-19 15:26:18 -0700 |
---|---|---|
committer | Adam Mathes <adam@trenchant.org> | 2018-09-19 15:26:18 -0700 |
commit | 9ed9a09c02336a36e6bae328ed306a7c28de1600 (patch) | |
tree | d5e3647432b5d81a980f28c0bc65783630f19bad /static/ui.html | |
parent | 82493767929c7ab279d92119ced3eadef7e317e6 (diff) | |
download | neko-9ed9a09c02336a36e6bae328ed306a7c28de1600.tar.gz neko-9ed9a09c02336a36e6bae328ed306a7c28de1600.tar.bz2 neko-9ed9a09c02336a36e6bae328ed306a7c28de1600.zip |
click targets on unread/all/star to li element instead of a for bigger tap targets
Diffstat (limited to 'static/ui.html')
-rw-r--r-- | static/ui.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/static/ui.html b/static/ui.html index 84d6629..13d102e 100644 --- a/static/ui.html +++ b/static/ui.html @@ -89,18 +89,18 @@ <script id="controls_template" type="text/jqtmp"> <ul> - <li> + <li class="unread_filter"> <a {{if app.unreadFilter}}style="font-weight: bold;"{{/if}} - class="unread_filter">unread</a> + >unread</a> </li> - <li> + <li class="all_filter"> <a {{if app.allFilter}}style="font-weight: bold;"{{/if}} - class="all_filter">all</a> + >all</a> </li> - <li> + <li class="starred_filter"> <a {{if app.starredFilter}}style="font-weight: bold;"{{/if}} - class="starred_filter">★ starred</a> + >★ starred</a> </li> <li> <button class="new_feed"> + new </button> |