From 07ae504ad135b1eec1445b647e1067082628e62b Mon Sep 17 00:00:00 2001 From: Dan Scott Date: Mon, 23 Sep 2013 22:33:09 -0400 Subject: [PATCH] TPAC: Align results pagination in mobile mode The results summary and results paginator had been using hard-coded pixel values for the padding-left value; amusingly, they were different values. Now that the paginator is part of the CSS stylesheet, switch to using a standard 1 em so that we can also respond to the chosen font size of both the stylesheet and the user's preference. Signed-off-by: Dan Scott Signed-off-by: Lebbeous Fogle-Weekley Signed-off-by: Dan Wells --- Open-ILS/src/templates/opac/css/style.css.tt2 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Open-ILS/src/templates/opac/css/style.css.tt2 b/Open-ILS/src/templates/opac/css/style.css.tt2 index 680ba2de27..ea6dd7c8f5 100644 --- a/Open-ILS/src/templates/opac/css/style.css.tt2 +++ b/Open-ILS/src/templates/opac/css/style.css.tt2 @@ -729,7 +729,8 @@ tr.result_table_row > td.result_table_pic_header { } .result_number { - padding-left:15px; white-space: nowrap; width: 320px; + padding-left: 1em; + white-space: nowrap; } .result_count_number { -- 2.43.2