From cf3b5e062b11729904952fbc8a1c91a73960bf64 Mon Sep 17 00:00:00 2001 From: Dan Scott Date: Wed, 15 Jan 2014 22:33:25 -0500 Subject: [PATCH] TPAC: Display authors using inline-block Rather than letting author credits wrap willy-nilly, use inline-block mode so that each line will begin with a new author. Devices with constrained screens in particular benefit from this, as the list of authors is much easier to scan, and wider screens can still fit multiple authors on a single line. Signed-off-by: Dan Scott Signed-off-by: Ben Shum --- Open-ILS/src/templates/opac/css/style.css.tt2 | 5 ++++- 1 file changed, 4 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 4b00864ebe..1076338243 100644 --- a/Open-ILS/src/templates/opac/css/style.css.tt2 +++ b/Open-ILS/src/templates/opac/css/style.css.tt2 @@ -1154,7 +1154,10 @@ a.dash-link:hover { text-decoration: underline !important; } .text-right { text-align: right; } .text-right-top { text-align: right; vertical-align: top; } -.rdetail-author-div { padding-bottom: 10px; } +.rdetail-author-div { + padding-bottom: 10px; + display: inline-block; +} .invisible { visibility: hidden; } .rdetail-extras-summary { margin: 10px; } -- 2.43.2