aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates
diff options
context:
space:
mode:
authorFrançois Schmidts <francois.schmidts@gmail.com>2014-06-12 10:57:45 +0200
committerFrançois Schmidts <francois.schmidts@gmail.com>2014-06-12 10:57:45 +0200
commitf66e97c47c61801c39f386f8b18a90da5d23ed2b (patch)
tree2d8242825e38cb85ba1cc49bec62aedd23c310e6 /pyaggr3g470r/templates
parentMerged in jaesivsm/pyaggr3g470r/ui_tweak (pull request #3) (diff)
downloadnewspipe-f66e97c47c61801c39f386f8b18a90da5d23ed2b.tar.gz
newspipe-f66e97c47c61801c39f386f8b18a90da5d23ed2b.tar.bz2
newspipe-f66e97c47c61801c39f386f8b18a90da5d23ed2b.zip
style correction
Diffstat (limited to 'pyaggr3g470r/templates')
-rw-r--r--pyaggr3g470r/templates/home.html6
-rw-r--r--pyaggr3g470r/templates/layout.html2
2 files changed, 4 insertions, 4 deletions
diff --git a/pyaggr3g470r/templates/home.html b/pyaggr3g470r/templates/home.html
index 96cd83a5..a5dd69f0 100644
--- a/pyaggr3g470r/templates/home.html
+++ b/pyaggr3g470r/templates/home.html
@@ -1,7 +1,7 @@
{% extends "layout.html" %}
{% block content %}
-<div id="affix-nav" class="col-md-1 sidebar hidden-xs hidden-sm">
- <ul class="nav sidenav affix affix-top" data-spy="affix" data-offset-top="0" data-offset-bottom="0">
+<div id="affix-nav" class="col-md-3 sidebar hidden-xs hidden-sm">
+ <ul class="nav sidenav navbar-collapse pre-scrollable" data-offset-top="0" data-offset-bottom="0" style="min-height: 600px;">
<li><a href="{{ gen_url(feed=0) }}">
{% if not feed_id %}<b>{% endif %}
{{ _('All feeds') }}
@@ -24,7 +24,7 @@
{% endfor %}
</ul>
</div>
-<div class="container col-md-9" style="float: right;">
+<div class="container col-md-9">
<h1>{{ _('Your articles') }} ({{ articles.__len__() }})</h1>
<div>
{% if filter_ == 'all' %}<b>{% endif %}
diff --git a/pyaggr3g470r/templates/layout.html b/pyaggr3g470r/templates/layout.html
index 543fc823..8fc88d74 100644
--- a/pyaggr3g470r/templates/layout.html
+++ b/pyaggr3g470r/templates/layout.html
@@ -145,7 +145,7 @@ deployed on Heroku or on a traditional server." />
</div><!-- /.container -->
</nav>
- <div class="container" style="float: right">
+ <div class="container">
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
{% for category, message in messages %}
bgstack15