- From: Olivier Thereaux via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 16 May 2005 08:43:28 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/validator/htdocs
In directory hutz:/tmp/cvs-serv14469
Modified Files:
results.css
Log Message:
Rough pass at http://www.w3.org/Bugs/Public/show_bug.cgi?id=213
(add style for warning, errors)
Index: results.css
===================================================================
RCS file: /sources/public/validator/htdocs/results.css,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -d -r1.26 -r1.27
--- results.css 11 May 2005 05:53:41 -0000 1.26
+++ results.css 16 May 2005 08:43:26 -0000 1.27
@@ -43,12 +43,34 @@
/* Error Messages Display */
/*
*/
+
+li.msg_info span.err_type{
+ background-color: #888;
+ padding: .1em .5em;
+ color: white;
+ font-size: smaller;
+}
+
+li.msg_warn span.err_type{
+ padding: .1em .5em;
+ background-color: #FA9084;
+ color: #333;
+ font-size: smaller;
+}
+
+li.msg_err span.err_type{
+ padding: .1em .5em;
+ background-color: #D23D24;
+ color:white;
+ font-size: smaller;
+}
+
.msg {
font-weight: bold;
}
-span.msg_info { /* these messages are not errors */
- font-weight: normal;
+li.msg_info span.msg { /* these messages are not errors */
+ font-weight: normal !important;
}
.ve {
@@ -63,11 +85,16 @@
text-align: justify;
}
+/* no Helpwanted, hence giving it a bit of space instead */
+li.msg_info {
+ padding-bottom: 2em;
+}
+
p.helpwanted {
padding: 0;
margin-left: auto;
margin-right: 5px;
- margin-top: -2em;
+ /*margin-top: -2em;*/
margin-bottom: 2em;
font-size: x-small;
color: #888;
Received on Monday, 16 May 2005 09:48:38 UTC