From: Dan Scott Date: Thu, 16 Jan 2014 03:33:25 +0000 (-0500) Subject: TPAC: Display authors using inline-block X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=cf3b5e062b11729904952fbc8a1c91a73960bf64;p=evergreen%2Fmasslnc.git 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 --- 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; }