mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Content server: Remove un-needed narrow nbsp before titles in mobile view
This commit is contained in:
parent
64adf22ac0
commit
14293ba36d
@ -188,11 +188,11 @@ def build_index(rd, books, num, search, sort, order, start, total, url_base, fie
|
||||
if val:
|
||||
ctext += '%s=[%s] '%(name, val)
|
||||
|
||||
first = E.span(u'\u202f%s %s by %s' % (book.title, series,
|
||||
first = E.span('%s %s by %s' % (book.title, series,
|
||||
authors_to_string(book.authors)), class_='first-line')
|
||||
div.append(first)
|
||||
ds = '' if is_date_undefined(book.timestamp) else strftime('%d %b, %Y', t=dt_as_local(book.timestamp).timetuple())
|
||||
second = E.span(u'%s %s %s' % (ds, tags, ctext), class_='second-line')
|
||||
second = E.span('%s %s %s' % (ds, tags, ctext), class_='second-line')
|
||||
div.append(second)
|
||||
|
||||
books_table.append(E.tr(thumbnail, data))
|
||||
|
Loading…
x
Reference in New Issue
Block a user