From 7a01f710ac621d2f2dc2ed4c4ffa1ea79aa1ed5c 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 --- 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 e8d53dc8a3..f31d69f466 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.11.0