diff options
author | Cédric Bonhomme <kimble.mandel+bitbucket@gmail.com> | 2014-06-12 07:23:48 +0200 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel+bitbucket@gmail.com> | 2014-06-12 07:23:48 +0200 |
commit | 71b0130c7f231d4f2a922f23ad02c03a074b2f12 (patch) | |
tree | 88226ddc308f24eb102cc9a88c0cbcfb9f1d2dfa /pyaggr3g470r/templates/layout.html | |
parent | fixes #7 (diff) | |
parent | reimplementing the unread count in left menu (diff) | |
download | newspipe-71b0130c7f231d4f2a922f23ad02c03a074b2f12.tar.gz newspipe-71b0130c7f231d4f2a922f23ad02c03a074b2f12.tar.bz2 newspipe-71b0130c7f231d4f2a922f23ad02c03a074b2f12.zip |
Merged in jaesivsm/pyaggr3g470r/ui_tweak (pull request #3)
Redoing home page with a table a few less SQL queries
Diffstat (limited to 'pyaggr3g470r/templates/layout.html')
-rw-r--r-- | pyaggr3g470r/templates/layout.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pyaggr3g470r/templates/layout.html b/pyaggr3g470r/templates/layout.html index d1040422..543fc823 100644 --- a/pyaggr3g470r/templates/layout.html +++ b/pyaggr3g470r/templates/layout.html @@ -27,7 +27,7 @@ deployed on Heroku or on a traditional server." /> height: 0; } ul.affix { - position: fixed; + position: fixed; top: 0px; } ul.affix-top { @@ -102,7 +102,7 @@ deployed on Heroku or on a traditional server." /> <a href="#" class="dropdown-toggle" data-toggle="dropdown">{{ _('Articles') }} <b class="caret"></b></a> <ul class="dropdown-menu"> <li><a accesskey="r" href="/fetch/">{{ _('Fetch') }}</a></li> - <li><a href="/mark_as_read/">{{ _('Mark all as read') }}</a></li> + <li><a href="/mark_as/read/">{{ _('Mark all as read') }}</a></li> <li role="presentation" class="divider"></li> <li><a href="/create_feed/">{{ _('Add a feed') }}</a></li> </ul> @@ -145,7 +145,7 @@ deployed on Heroku or on a traditional server." /> </div><!-- /.container --> </nav> - <div class="container"> + <div class="container" style="float: right"> {% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} |