diff options
author | ot <ot@localhost> | 2007-03-15 07:02:35 +0000 |
---|---|---|
committer | ot <ot@localhost> | 2007-03-15 07:02:35 +0000 |
commit | f64a8e7ef0cfd29ad270da13007f8179fb91cc17 (patch) | |
tree | cde0127a9954e1871a853802ad5f20db6870c904 | |
parent | 2d364b4faf121f8ef55001b8e2d0288f2c822b09 (diff) | |
download | markup-validator-f64a8e7ef0cfd29ad270da13007f8179fb91cc17.zip markup-validator-f64a8e7ef0cfd29ad270da13007f8179fb91cc17.tar.gz markup-validator-f64a8e7ef0cfd29ad270da13007f8179fb91cc17.tar.bz2 |
css fix for grouped messages
-rw-r--r-- | htdocs/style/results.css | 6 | ||||
-rw-r--r-- | share/templates/en_US/error_loop_grouped.tmpl | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/htdocs/style/results.css b/htdocs/style/results.css index c548585..557d95f 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.7 2007-03-15 06:54:48 ot Exp $ */ +/* $Id: results.css,v 1.8 2007-03-15 07:02:34 ot Exp $ */ .input { color: black; @@ -139,6 +139,10 @@ p.helpwanted { top: -3em; } +li.grouped p.helpwanted { + top: -1em; +} + p.helpwanted a { color: #88f; text-decoration: none; diff --git a/share/templates/en_US/error_loop_grouped.tmpl b/share/templates/en_US/error_loop_grouped.tmpl index 77f3bf1..e6395a0 100644 --- a/share/templates/en_US/error_loop_grouped.tmpl +++ b/share/templates/en_US/error_loop_grouped.tmpl @@ -1,7 +1,7 @@ <TMPL_IF NAME="has_errors"> <ol id="error_loop"></TMPL_IF> <TMPL_LOOP NAME="file_errors"> - <li class="<TMPL_VAR NAME="class">"> + <li class="grouped <TMPL_VAR NAME="class">"> <span class="err_type"><TMPL_IF NAME="err_type_info">Info</TMPL_IF><TMPL_IF NAME="err_type_warn">Warning</TMPL_IF><TMPL_IF NAME="err_type_err">Error</TMPL_IF></span> <span class="msg"><TMPL_VAR NAME="msg" ESCAPE="HTML"></span> <TMPL_IF NAME="expl"><TMPL_VAR NAME="expl"></TMPL_IF> |