From c0f58a32292418f7e22e209a72c27a13bb33cfe2 Mon Sep 17 00:00:00 2001 From: Bill Ott Date: Fri, 20 Sep 2013 10:49:30 -0400 Subject: [PATCH] Bad comma! Prevent table block display from applying to all tables. Signed-off-by: Bill Ott --- Open-ILS/src/templates/opac/css/style.css.tt2 | 12 +++++++++++- 1 file changed, 11 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 f045d8d0d1..629625ef63 100644 --- a/Open-ILS/src/templates/opac/css/style.css.tt2 +++ b/Open-ILS/src/templates/opac/css/style.css.tt2 @@ -1960,7 +1960,10 @@ a.preflib_change { border-bottom: none; } /* Force table to not be like tables anymore */ - table#acct_checked_main_header thead, tbody, th, td, tr { + table#acct_checked_main_header thead tr th { + display: block; + } + table#acct_checked_main_header tbody tr td { display: block; } @@ -1998,6 +2001,13 @@ a.preflib_change { table#acct_checked_main_header td:nth-of-type(5):before { content: "Barcode"; } table#acct_checked_main_header td:nth-of-type(6):before { content: "Call number"; } + table#acct_holds_main_header thead tr th { + display: block; + } + table#acct_holds_main_header tbody tr td { + display: block; + } + table#acct_holds_main_header td { /* Behave like a "row" */ border: none; -- 2.11.0