aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-23 17:40:27 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-23 17:40:27 +0200
commite61447b92a49e049a0153a8171b2ea1ddabc8901 (patch)
tree2c37984e08e624b40084985c6a88c9a47131053b /pyaggr3g470r
parentTest with container-fluid layout. (diff)
downloadnewspipe-e61447b92a49e049a0153a8171b2ea1ddabc8901.tar.gz
newspipe-e61447b92a49e049a0153a8171b2ea1ddabc8901.tar.bz2
newspipe-e61447b92a49e049a0153a8171b2ea1ddabc8901.zip
Reduce space between items of lists.
Diffstat (limited to 'pyaggr3g470r')
-rw-r--r--pyaggr3g470r/templates/home.html4
-rw-r--r--pyaggr3g470r/templates/layout.html3
2 files changed, 5 insertions, 2 deletions
diff --git a/pyaggr3g470r/templates/home.html b/pyaggr3g470r/templates/home.html
index 8b0d5059..9fb1d57c 100644
--- a/pyaggr3g470r/templates/home.html
+++ b/pyaggr3g470r/templates/home.html
@@ -3,9 +3,9 @@
<div class="container-fluid">
<div classe="row">
<div class="col-md-3">
- <ul class="nav nav-pills nav-stacked" ui-sortable="sortableOptions">
+ <ul class="nav navbarfeed">
{% for feed in result|sort(attribute="title") %}
- <li>
+ <li class="navbarfeed">
<a href="#{{ feed.id }}">
{% if unread[feed.id] != 0 %}<span class="badge pull-right">{{ unread[feed.id] }}</span>{% endif %}
{{ feed.title|safe }}
diff --git a/pyaggr3g470r/templates/layout.html b/pyaggr3g470r/templates/layout.html
index 41c1e503..31e8df72 100644
--- a/pyaggr3g470r/templates/layout.html
+++ b/pyaggr3g470r/templates/layout.html
@@ -18,6 +18,9 @@ deployed on Heroku or on a traditional server." />
<!-- Add custom CSS here -->
<style>
body {margin-top: 60px;}
+ li.navbarfeed {
+ margin: -10px;
+ }
</style>
</head>
bgstack15