浏览代码

don't shade table headings

Owen Versteeg 11 年之前
父节点
当前提交
d1056d99e2
共有 1 个文件被更改,包括 3 次插入2 次删除
  1. 3 2
      less/tables.less

+ 3 - 2
less/tables.less

@@ -5,9 +5,10 @@ table {
 
 th, td {
 	padding: .5em;
-	line-height: 1.4em;
+	text-align: left;
 }
 
-tr:nth-child(2n-1) {
+tbody tr:nth-child(2n-1) {
+	/* We use tbody to ensure that we don't shade the heading - this preserves the order of the shading */
 	background: #ccc; /* Shade every other table row */
 }