summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorot <ot@localhost>2005-05-16 08:43:26 +0000
committerot <ot@localhost>2005-05-16 08:43:26 +0000
commit825b1ff732275a1c40b6af87aba3eea0c174ddec (patch)
tree49f0051e0c81adfa8ea86642940c6c3b740a2d0f
parent83ba2338820ab431e8a159c25d4dfedb812b2a5f (diff)
downloadmarkup-validator-825b1ff732275a1c40b6af87aba3eea0c174ddec.zip
markup-validator-825b1ff732275a1c40b6af87aba3eea0c174ddec.tar.gz
markup-validator-825b1ff732275a1c40b6af87aba3eea0c174ddec.tar.bz2
Rough pass at http://www.w3.org/Bugs/Public/show_bug.cgi?id=213
(add style for warning, errors)
-rw-r--r--htdocs/results.css35
1 files changed, 31 insertions, 4 deletions
diff --git a/htdocs/results.css b/htdocs/results.css
index 4c2c843..3dbc329 100644
--- a/htdocs/results.css
+++ b/htdocs/results.css
@@ -1,5 +1,5 @@
/* style sheet for the validator's results page */
-/* $Id: results.css,v 1.26 2005-05-11 05:53:41 ot Exp $ */
+/* $Id: results.css,v 1.27 2005-05-16 08:43:26 ot Exp $ */
.input {
color: black;
@@ -43,12 +43,34 @@ fieldset table.header {
/* 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 @@ span.msg_info { /* these messages are not errors */
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;