- From: Karl Dubost via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 14 Dec 2006 06:58:31 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/style
In directory hutz:/tmp/cvs-serv28424
Modified Files:
results.css
Log Message:
added style for errors
Index: results.css
===================================================================
RCS file: /sources/public/2002/css-validator/style/results.css,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- results.css 14 Dec 2006 06:20:09 -0000 1.17
+++ results.css 14 Dec 2006 06:58:29 -0000 1.18
@@ -1,7 +1,7 @@
/* ==== CONGRATS ===== */
#congrats h2, #errors h2 {
- margin: 0;
+ margin: 0;
font-family: "Bitstream Vera Sans", sans-serif;
font-size-adjust: .53;
font-size: 1.5em;
@@ -21,26 +21,6 @@
text-align: center;
}
-/* ==== ERRORS ===== */
-
-/* id="errors" - start of the list of errors */
-#errors h2 {
- background-color: #E82848;
- color: white;
-}
-
-/* ==== WARNINGS ===== */
-/* id="warnings" - start of the list of warnings */
-#warnings h2, #css h2 {
- color: #005A9C;
- text-align: left;
- background: transparent url('../images/arrow-down.gif') 0 10px no-repeat;
-
-}
-
-#warnings h2.closed, #css h2.closed {
- background: transparent url('../images/arrow-right.gif') 0 10px no-repeat;
-}
#congrats p.toggle { text-indent: 10px;
background: transparent url('../images/arrow-down.gif') 15px 0 no-repeat;
@@ -51,6 +31,12 @@
background: transparent url('../images/arrow-right.gif') 15px 0 no-repeat;
}
+/* ==== COMMON: ERRORS + WARNINGS ===== */
+
+#warnings h2.closed, #css h2.closed {
+ background: transparent url('../images/arrow-right.gif') 0 10px no-repeat;
+}
+
#warnings table, #errors table {
width:100%;
border-top: 1px solid #ccc !important;
@@ -61,19 +47,59 @@
border-width: 0;
}
-
-tr.warning {
- padding: 0;}
+#errors h3, #warnings h3 {
+ margin: 1em 0 0 0;
+ background-color: #eee;
+ color: black;
+}
td.linenumber {
+ width:3em;
border-bottom: 1px solid #ccc !important;
background-color: #e1e1e1;
text-align:right;
}
+
td.codeContext {
border-bottom: 1px solid #ddd !important;
background-color: #F1F1F1;}
+
+/* ==== ERRORS ===== */
+
+/* id="errors" - start of the list of errors */
+
+#errors h2 {
+ background-color: #E82848;
+ color: white;
+}
+
+td.message {
+ padding: 5px 1em;
+ border-bottom: 1px solid #fdd !important;
+}
+
+td.nocontext {
+ width: 3em;
+ border-bottom: 1px solid #ddd !important;
+ background-color: #F1F1F1;}
+
+td.io, td.notfound, td.invalidparam, td.errortoken, td.unknownerror {
+ padding: 5px 1em;
+ border-bottom: 1px solid #fdd !important;
+}
+
+/* ==== WARNINGS ===== */
+
+/* id="warnings" - start of the list of warnings */
+#warnings h2, #css h2 {
+ color: #005A9C;
+ text-align: left;
+ background: transparent url('../images/arrow-down.gif') 0 10px no-repeat;}
+
+tr.warning {
+ padding: 0;}
+
td.level1, td.level2, td.level0 {
padding: 5px 1em;
border-bottom: 1px solid #fdd !important;
Received on Thursday, 14 December 2006 06:58:37 UTC