From: Dan Scott Date: Wed, 18 Sep 2013 17:36:15 +0000 (-0400) Subject: Set explicit width for result metadata in main view X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=ce9fabffe53a11d0163c13dd46d9993df9c8eb10;p=working%2FEvergreen.git Set explicit width for result metadata in main view We were getting ragged edges for search results with titles longer than the "# of # available copies..." statement and the placement of the place hold action buttons, so set an explicit width, and then deset that in mobile mode. Signed-off-by: Dan Scott --- diff --git a/Open-ILS/src/templates/opac/css/style.css.tt2 b/Open-ILS/src/templates/opac/css/style.css.tt2 index c31abd4dbf..fae9f8d8d0 100644 --- a/Open-ILS/src/templates/opac/css/style.css.tt2 +++ b/Open-ILS/src/templates/opac/css/style.css.tt2 @@ -710,6 +710,7 @@ tr.result_table_row > td.result_table_title_cell { .result_metadata { float: left; + width: 30em; } tr.result_table_row:nth-child(n+2) > td { @@ -1899,4 +1900,7 @@ a.preflib_change { float: left; background: [% css_colors.background %]; } + .result_metadata { + width: inherit; + } }