# HG changeset patch # User bsw # Date 1427061557 -3600 # Node ID 91089defc3eac6ac300b821e63c7a652124078b5 # Parent a97bb3ca4cb4766410a671adb89ac7ba94478012 Added missing colors for trace of actions diff -r a97bb3ca4cb4 -r 91089defc3ea static/lf3.css --- a/static/lf3.css Sun Mar 22 22:32:18 2015 +0100 +++ b/static/lf3.css Sun Mar 22 22:59:17 2015 +0100 @@ -1578,6 +1578,22 @@ background-color: #fe0; color: #000; } +#trace_content .trace_action_success > ul { + background-color: #afa; + border: 1px solid #fe0; +} +#trace_content .trace_action_success > .trace_head { + background-color: #fe0; + color: #000; +} +#trace_content .trace_action_softfail > ul { + background-color: #faa; + border: 1px solid #fe0; +} +#trace_content .trace_action_softfail > .trace_head { + background-color: #fe0; + color: #000; +} #trace_content .trace_sql { background-color: #fff; padding: 2px 4px; diff -r a97bb3ca4cb4 -r 91089defc3ea static/lf3.less --- a/static/lf3.less Sun Mar 22 22:32:18 2015 +0100 +++ b/static/lf3.less Sun Mar 22 22:59:17 2015 +0100 @@ -1946,6 +1946,22 @@ background-color: #fe0; color: #000; } + .trace_action_success > ul { + background-color: #afa; + border: 1px solid #fe0; + } + .trace_action_success > .trace_head { + background-color: #fe0; + color: #000; + } + .trace_action_softfail > ul { + background-color: #faa; + border: 1px solid #fe0; + } + .trace_action_softfail > .trace_head { + background-color: #fe0; + color: #000; + } .trace_sql { background-color: #fff; padding: 2px 4px; @@ -1953,6 +1969,7 @@ } .trace_sql_time { float: right; + font-weight: bold; } .trace_error { background-color: #faa;