[svn r38105] Make errors bright red and bold, easier to spot.
--HG-- branch : trunk
This commit is contained in:
parent
47aea3ca7b
commit
8258b40fd6
|
@ -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
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue