- From: Tab Atkins Jr.. via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 18 Nov 2011 03:11:13 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-lists
In directory hutz:/tmp/cvs-serv17298
Modified Files:
Overview.html Overview.src.html
Log Message:
Switched the marker styling example to use color instead of bold to make it more obvious.
Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-lists/Overview.html,v
retrieving revision 1.94
retrieving revision 1.95
diff -u -d -r1.94 -r1.95
--- Overview.html 18 Nov 2011 03:06:05 -0000 1.94
+++ Overview.html 18 Nov 2011 03:11:11 -0000 1.95
@@ -969,7 +969,7 @@
<style>
p { margin-left: 8em } /* Make space for counters */
li { list-style-type: lower-roman; }
-li::marker { margin: 0 3em 0 0; font-weight: bold; }
+li::marker { margin: 0 3em 0 0; color: blue; }
</style>
<p>This is a long preceding paragraph ...</p>
<ol>
@@ -985,9 +985,12 @@
This is a long preceding
paragraph ...
- <b>i.</b> This is the first item.
- <b>ii.</b> This is the second item.
- <b>iii.</b> This is the third item.
+ <span
+ style="color:blue">i.</span> This is the first item.
+ <span
+ style="color:blue">ii.</span> This is the second item.
+ <span
+ style="color:blue">iii.</span> This is the third item.
This is a long following
paragraph ...</pre>
Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-lists/Overview.src.html,v
retrieving revision 1.141
retrieving revision 1.142
diff -u -d -r1.141 -r1.142
--- Overview.src.html 18 Nov 2011 03:06:06 -0000 1.141
+++ Overview.src.html 18 Nov 2011 03:11:11 -0000 1.142
@@ -546,7 +546,7 @@
<style>
p { margin-left: 8em } /* Make space for counters */
li { list-style-type: lower-roman; }
-li::marker { margin: 0 3em 0 0; font-weight: bold; }
+li::marker { margin: 0 3em 0 0; color: blue; }
</style>
<p>This is a long preceding paragraph ...</p>
<ol>
@@ -562,9 +562,9 @@
This is a long preceding
paragraph ...
- <b>i.</b> This is the first item.
- <b>ii.</b> This is the second item.
- <b>iii.</b> This is the third item.
+ <span style=color:blue>i.</span> This is the first item.
+ <span style=color:blue>ii.</span> This is the second item.
+ <span style=color:blue>iii.</span> This is the third item.
This is a long following
paragraph ...</pre>
Received on Friday, 18 November 2011 03:11:15 UTC