Index: applications/mobileblur/static/css/base.css ================================================================== --- applications/mobileblur/static/css/base.css +++ applications/mobileblur/static/css/base.css @@ -526,11 +526,11 @@ } #story-list { } -#story-list > .story > a { +#story-list > .story > a, .feed > a { text-decoration: none; font-weight: bold; margin-top: 0; } #story-list > .story > p { @@ -538,18 +538,17 @@ } #story-list > .story > .read { color: #CC3333; } -#story-list > .story > .unread { +#story-list > .story > .unread, .feed > a { color: #CC0000; /* color: #A8A8EE;*/ } -#story-list > .story { +#story-list > .story, .feed { padding: .5%; - padding-top: 0; border-top: 1px solid black; margin-top: .33%; } span.ps, span.nt, span.ng { Index: applications/mobileblur/views/default/index.html ================================================================== --- applications/mobileblur/views/default/index.html +++ applications/mobileblur/views/default/index.html @@ -1,8 +1,10 @@ {{extend 'layout.html'}} {{ for feed in feeds.itervalues(): }} - {{ if threshold == -1 and feed["ng"] > 0: }} {{= feed["ng"] }} {{ pass }} - {{ if threshold <= 0 and feed["nt"] > 0: }} {{= feed["nt"] }} {{ pass }} - {{if feed["ps"] > 0: }}{{= feed["ps"] }} {{ pass }} - {{= feed["feed_title"] }}
+
+ {{ if threshold == -1 and feed["ng"] > 0: }} {{= feed["ng"] }} {{ pass }} + {{ if threshold <= 0 and feed["nt"] > 0: }} {{= feed["nt"] }} {{ pass }} + {{if feed["ps"] > 0: }}{{= feed["ps"] }} {{ pass }} + {{= feed["feed_title"] }}
+
{{ pass }}