LP1909584 Title for Shared Lists in Bootstrap OPAC
authorTerran McCanna <tmccanna@georgialibraries.org>
Thu, 31 Dec 2020 22:54:50 +0000 (17:54 -0500)
committerChris Sharp <csharp@georgialibraries.org>
Wed, 15 Sep 2021 18:42:04 +0000 (14:42 -0400)
This displays the title and description for shared lists
when viewed in the Bootstrap OPAC.

Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org>
Open-ILS/src/templates-bootstrap/opac/css/style.css.tt2
Open-ILS/src/templates-bootstrap/opac/parts/result/table.tt2

index b6640f7..16f7119 100755 (executable)
@@ -2629,6 +2629,16 @@ table.bookbag-specific {
     text-align: center;
     font-style: italic;
 }
+.shared-list-title {
+    font-weight:bold;
+    text-align:center;
+    font-size:1.5em;
+    margin-top:5px;
+}
+.shared-list-description {
+    text-align:center;
+    font-weight:bold;
+}
 .save-notes { padding-bottom: 1.5ex; }
 
 .nonbreaking-wrapper {
index cbabfa4..0d60436 100755 (executable)
@@ -9,16 +9,14 @@
     result_count = ctx.result_start;
 
 %]
-
 [% IF ctx.bookbag %]
 <div class="row">
     <div class="col-12">
-        <h2 class="result-bookbag-name">[% ctx.bookbag.name | html %]</h2>
-        <div class="result-bookbag-description">[% ctx.bookbag.description | html %]</div>
+        <h2 class="shared-list-title">[% ctx.bookbag.name | html %]</h2>
+        <div class="shared-list-description">[% ctx.bookbag.description | html %]</div>
     </div>
 </div>
 [% END %]
-
 <div class="row">
     <div class="col-12">
     [% PROCESS "opac/parts/result/paginate.tt2" %]