GwR revisions

This commit is contained in:
GRiker 2010-06-03 07:11:54 -06:00
parent 75f243a470
commit 0ffda66f80
2 changed files with 1 additions and 4 deletions

View File

@ -785,9 +785,6 @@ class BasicNewsRecipe(Recipe):
table.toc {
font-size:large;
}
td.article_count {
text-align:right;
}
'''
templ = templates.TouchscreenFeedTemplate()

View File

@ -186,7 +186,7 @@ class TouchscreenIndexTemplate(Template):
if feed:
tr = TR()
tr.append(TD( CLASS('toc_item'), A(feed.title, href='feed_%d/index.html'%i)))
tr.append(TD( CLASS('article_count'),'%3.3s' % len(feed.articles)))
tr.append(TD( '%s' % len(feed.articles), style="text-align:right"))
toc.append(tr)
div = DIV(