From 81a493a12a7d98369f82275a093163dd2713009d Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 17 Feb 2016 16:59:40 +0530 Subject: [PATCH] ... --- src/pyj/book_list/book_details.pyj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pyj/book_list/book_details.pyj b/src/pyj/book_list/book_details.pyj index 762d1e325d..e5958a5f72 100644 --- a/src/pyj/book_list/book_details.pyj +++ b/src/pyj/book_list/book_details.pyj @@ -261,7 +261,7 @@ class BookDetailsPanel: nonlocal bd_counter bd_counter += 1 self.container_id = 'book-details-panel-' + bd_counter - style = build_rule('#' + self.container_id + ' table.metadata td:first-of-type', font_weight='bold', padding_right='1em') + style = build_rule('#' + self.container_id + ' table.metadata td:first-of-type', font_weight='bold', padding_right='1em', white_space='nowrap') style += build_rule('#' + self.container_id + ' table.metadata a[href]', color='blue') style += build_rule('#' + self.container_id + ' table.metadata a[href]:hover', color='red') style += build_rule('#' + self.container_id + ' table.metadata a[href]:active', color='red', transform='scale(1.5)')