From 60a846a1193279a1360e235dd3dce869184255dc Mon Sep 17 00:00:00 2001
From: Dries Buytaert <dries@buytaert.net>
Date: Fri, 26 Nov 2010 19:09:17 +0000
Subject: [PATCH] - Patch #932754 by Jeff Burnz: tables with headers in tbody
 as opposed to thead need to be styled.

---
 themes/bartik/css/style.css | 14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/themes/bartik/css/style.css b/themes/bartik/css/style.css
index b0a154912a2f..4014808e84d9 100644
--- a/themes/bartik/css/style.css
+++ b/themes/bartik/css/style.css
@@ -118,10 +118,11 @@ a.feed-icon {
 /* ------------------ Table Styles ------------------ */
 
 table {
+  border: 0;
   border-spacing: 0;
-  width: 100%;
-  margin: 10px 0;
   font-size: 0.857em;
+  margin: 10px 0;
+  width: 100%;
 }
 table table {
   font-size: 1em;
@@ -134,12 +135,15 @@ table tr th {
   background: rgba(0, 0, 0, 0.51);
   border-bottom-style: none;
 }
-table thead tr th,
-table thead tr th a,
-table thead tr th a:hover {
+table tr th,
+table tr th a,
+table tr th a:hover {
   color: #FFF;
   font-weight: bold;
 }
+table tbody tr th {
+  vertical-align: top;
+}
 tr td,
 tr th {
   padding: 4px 9px;
-- 
GitLab