summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-11-26 19:09:17 +0000
committerDries Buytaert <dries@buytaert.net>2010-11-26 19:09:17 +0000
commit60a846a1193279a1360e235dd3dce869184255dc (patch)
treeee5dea0b6b9fd6f34d16ab74d635e619fe5eac35 /themes
parenta0b2c8e38622bc5fb57ec70a783ed4d8ffb92326 (diff)
downloadbrdo-60a846a1193279a1360e235dd3dce869184255dc.tar.gz
brdo-60a846a1193279a1360e235dd3dce869184255dc.tar.bz2
- Patch #932754 by Jeff Burnz: tables with headers in tbody as opposed to thead need to be styled.
Diffstat (limited to 'themes')
-rw-r--r--themes/bartik/css/style.css14
1 files changed, 9 insertions, 5 deletions
diff --git a/themes/bartik/css/style.css b/themes/bartik/css/style.css
index b0a154912..4014808e8 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;