[svn r38105] Make errors bright red and bold, easier to spot.

--HG--
branch : trunk
This commit is contained in:
fijal 2007-02-07 20:14:10 +01:00
parent 47aea3ca7b
commit 8258b40fd6
3 changed files with 2535 additions and 2525 deletions

View File

@ -20,6 +20,11 @@
z-index: 2;
}
.error {
color: #F00;
font-weight: bold;
}
#navbar {
position: fixed;
right: 1em;

File diff suppressed because it is too large Load Diff

View File

@ -151,6 +151,7 @@ def add_received_item_outcome(msg, module_part):
link.setAttribute("href", "javascript:show_traceback('%s')" % (
msg['fullitemname'],))
txt = create_text_elem('F')
link.setAttribute('class', 'error')
link.appendChild(txt)
td.appendChild(link)
exported_methods.show_fail(item_name, fail_come_back)