[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;
|
z-index: 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.error {
|
||||||
|
color: #F00;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
#navbar {
|
#navbar {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
right: 1em;
|
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')" % (
|
link.setAttribute("href", "javascript:show_traceback('%s')" % (
|
||||||
msg['fullitemname'],))
|
msg['fullitemname'],))
|
||||||
txt = create_text_elem('F')
|
txt = create_text_elem('F')
|
||||||
|
link.setAttribute('class', 'error')
|
||||||
link.appendChild(txt)
|
link.appendChild(txt)
|
||||||
td.appendChild(link)
|
td.appendChild(link)
|
||||||
exported_methods.show_fail(item_name, fail_come_back)
|
exported_methods.show_fail(item_name, fail_come_back)
|
||||||
|
|
Loading…
Reference in New Issue