- From: Tab Atkins Jr.. via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 17 Aug 2011 00:00:03 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css-module
In directory hutz:/tmp/cvs-serv17990
Modified Files:
default.css
Log Message:
Targetted the rule that suppresses the bottom border on the last <tr> of a table to only apply to the tbody.
Index: default.css
===================================================================
RCS file: /sources/public/csswg/css-module/default.css,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- default.css 16 Aug 2011 23:43:30 -0000 1.4
+++ default.css 17 Aug 2011 00:00:01 -0000 1.5
@@ -373,12 +373,12 @@
}
-table.propdef tr:last-child th,
-table.propdef-extra tr:last-child th,
-table.descdef tr:last-child th,
-table.propdef tr:last-child td,
-table.propdef-extra tr:last-child td,
-table.descdef tr:last-child td {
+table.propdef > tbody > tr:last-child th,
+table.propdef-extra > tbody > tr:last-child th,
+table.descdef > tbody > tr:last-child th,
+table.propdef > tbody > tr:last-child td,
+table.propdef-extra > tbody > tr:last-child td,
+table.descdef > tbody > tr:last-child td {
border-bottom: 0;
}
Received on Wednesday, 17 August 2011 00:00:03 UTC