- From: Tab Atkins Jr.. via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 28 Feb 2012 23:42:53 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg
In directory hutz:/tmp/cvs-serv1500
Modified Files:
default.css
Log Message:
Change the span.note/.issue styling to more closely match the blocks.
Index: default.css
===================================================================
RCS file: /sources/public/csswg/default.css,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- default.css 23 Feb 2012 22:31:09 -0000 1.23
+++ default.css 28 Feb 2012 23:42:51 -0000 1.24
@@ -139,39 +139,35 @@
dfn { font-weight: bolder; }
-p.issue, div.issue, p.note, div.note, div.example, pre.example {
+.issue, .note, div.example, pre.example {
padding: .5em;
/* padding: .5rem; /* proposed unit in css3-values */
border-left-width: .5em;
/* border-left-width: .5rem; /* proposed unit in css3-values */
border-left-style: solid;
}
+span.note, span.issue { padding: .1em .5em .15em; }
/* Open issue / editorial remark; not intended for a final publication */
-p.issue, div.issue {
+.issue {
border-color: #E05252;
background: #FBE9E9;
counter-increment: issue;
}
-p.issue:before, div.issue:before {
+.issue:before {
content: "Issue " counter(issue);
padding-right: 1em;
text-transform: uppercase;
color: #E05252;
}
-span.issue { color: red; }
-
/* Class note is a non-normative note. May be inline or a P or DIV */
-p.note, div.note {
+.note {
border-color: #52E052;
background: #E9FBE9;
}
-span.note { color: green; }
-
-
.normref { color: red }
.informref { color: green }
Received on Tuesday, 28 February 2012 23:42:55 UTC