Bad comma! Prevent table block display from applying to all tables.
authorBill Ott <bott@grpl.org>
Fri, 20 Sep 2013 14:49:30 +0000 (10:49 -0400)
committerDan Scott <dscott@laurentian.ca>
Tue, 24 Sep 2013 15:20:27 +0000 (11:20 -0400)
Signed-off-by: Bill Ott <bott@grpl.org>
Open-ILS/src/templates/opac/css/style.css.tt2

index bf1bac8..8764760 100644 (file)
@@ -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;