diff options
author | ot <ot@localhost> | 2007-03-09 06:55:25 +0000 |
---|---|---|
committer | ot <ot@localhost> | 2007-03-09 06:55:25 +0000 |
commit | 4b93cd8e5558d804ccc352e574e7b18d61242366 (patch) | |
tree | c7a00b023b47a1cebfce3e7d6e7e840ce6c4f25f /htdocs | |
parent | 838667dce20c863e875dfa25cbd37ae5ed691543 (diff) | |
download | markup-validator-4b93cd8e5558d804ccc352e574e7b18d61242366.zip markup-validator-4b93cd8e5558d804ccc352e574e7b18d61242366.tar.gz markup-validator-4b93cd8e5558d804ccc352e574e7b18d61242366.tar.bz2 |
* making preparse warnings list similar in style as list of errors/warnings
* moving the "feedback" envelope to avoid floating issues
Diffstat (limited to 'htdocs')
-rw-r--r-- | htdocs/style/results.css | 30 |
1 files changed, 10 insertions, 20 deletions
diff --git a/htdocs/style/results.css b/htdocs/style/results.css index d957a9f..f84cee1 100644 --- a/htdocs/style/results.css +++ b/htdocs/style/results.css @@ -1,5 +1,5 @@ /* style sheet for the validator's results page */ -/* $Id: results.css,v 1.3 2007-02-20 08:22:20 ot Exp $ */ +/* $Id: results.css,v 1.4 2007-03-09 06:55:25 ot Exp $ */ .input { color: black; @@ -46,6 +46,9 @@ fieldset#revalidate_opts table.header, fieldset#revalidate_opts table.header td, /* */ +/* "Fatal" warnings... */ + + ol li.msg_info, ol li.msg_warn, ol li.msg_err { border: 1px solid #eee; border-top: 0; @@ -54,17 +57,14 @@ ol li.msg_info, ol li.msg_warn, ol li.msg_err { ol li.msg_info, ol li.msg_warn, ol li.msg_err { list-style-position: inside; padding: .5em; + clear: both; } -ol#error_loop { +ol#warnings, ol#error_loop { padding:0; border-top: 1px solid #eee; } -ul#warnings { - list-style-type: none; -} - li.msg_info span.err_type{ background-color: #888; padding: .1em .5em; @@ -114,12 +114,15 @@ li.msg_info { p.helpwanted { padding: 0; margin: 0; - margin-top: .5em; + margin-top: 0em; color: #888; text-align: left; float: right; width: 20px; font-weight: bold; + position: relative; + left: 0; + top: -3em; } p.helpwanted a { @@ -178,19 +181,6 @@ ul#warnings { padding: 0; } -/* "Fatal" warnings... */ -ul#warnings li { - margin: 0; - padding: 0; -} - -ul#warnings li span.msg { - /* font-weight: bold; */ - background-color: #FA9084 !important; /* based on color for .invalid, but washed out */ - font-weight: normal; - padding: .2em; - margin-left: 20px; -} th { |