# HG changeset patch # User bsw # Date 1603798539 -3600 # Node ID dac776cd0a7f3014bd69bbb755ccdee22b932431 # Parent a13a0071f8737dfe914d34053b3f249d4f15c4bf Added css style for trace diff -r a13a0071f873 -r dac776cd0a7f app/main/_layout/default.html --- a/app/main/_layout/default.html Tue Oct 27 12:35:01 2020 +0100 +++ b/app/main/_layout/default.html Tue Oct 27 12:35:39 2020 +0100 @@ -702,6 +702,66 @@ div.form .member_photo .member_image.member_image_photo { margin-top: 0; } + +.trace_list { + margin-left: 10px; + list-style-type: none; + padding: 0; + line-height: 120%; +} + +.trace_list .trace_list { + padding-left: 10px; + border-left: 1px solid #999; +} + +.trace_list .trace_head { + margin-top: 10px; + padding: 3px 5px 3px 5px; + font-weight: 700; +} + +.trace_list li { + margin-top: 5px; + margin-bottom: 5px; +} + +.trace_list .trace_filter .trace_head { + background: #acf; + color: #000; +} + +.trace_list .trace_request .trace_head, +.trace_list .trace_view .trace_head { + background: #000; + color: #fff; +} + +.trace_list .trace_config .trace_head, +.trace_list .trace_view .trace_view .trace_head { + background: #ccc; + color: #000; +} + +.trace_list .trace_head .time { + float: right; + font-weight: 500; + font-size: 90%; + line-height: 100%; + margin-top: 5px; +} + +.trace_list .trace_sql { + color: #050; +} + +.trace_list .trace_sql_time { + background: #070; + color: #fff; + padding: 0px 3px; + border-radius: 5px; +} +