- From: Tab Atkins Jr.. via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 07 Feb 2012 10:12:12 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-hierarchies In directory hutz:/tmp/cvs-serv9464 Modified Files: Overview.html Overview.src.html Log Message: Fix the first example. Index: Overview.html =================================================================== RCS file: /sources/public/csswg/css3-hierarchies/Overview.html,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- Overview.html 7 Feb 2012 09:23:00 -0000 1.10 +++ Overview.html 7 Feb 2012 10:12:10 -0000 1.11 @@ -243,9 +243,11 @@ <pre> table { &.colortable { - & td {text-align:center } - &.c { text-transform:uppercase } - & td:first-child, & td:first-child+td { border:1px solid black } + & td { + text-align:center + &.c { text-transform:uppercase } + &:first-child, &:first-child + td { border:1px solid black } + } & th {text-align:center; background:black; color:white } &.tprofile { Index: Overview.src.html =================================================================== RCS file: /sources/public/csswg/css3-hierarchies/Overview.src.html,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- Overview.src.html 7 Feb 2012 09:23:00 -0000 1.11 +++ Overview.src.html 7 Feb 2012 10:12:10 -0000 1.12 @@ -133,9 +133,11 @@ <pre> table { &.colortable { - & td {text-align:center } - &.c { text-transform:uppercase } - & td:first-child, & td:first-child+td { border:1px solid black } + & td { + text-align:center + &.c { text-transform:uppercase } + &:first-child, &:first-child + td { border:1px solid black } + } & th {text-align:center; background:black; color:white } &.tprofile {
Received on Tuesday, 7 February 2012 10:14:13 UTC