webmcp
view demo-app/static/trace.css @ 2:72860d232f32
Version 1.0.2
Fixed bug with explicit garbage collection (requests > 256kB caused an error)
Views prefixed with an underscore can't be called externally
ui.paginate now displays the last page, if the selected page number is too high.
Fixed bug with explicit garbage collection (requests > 256kB caused an error)
Views prefixed with an underscore can't be called externally
ui.paginate now displays the last page, if the selected page number is too high.
author | jbe/bsw |
---|---|
date | Thu Dec 10 12:00:00 2009 +0100 (2009-12-10) |
parents | 9fdfb27f8e67 |
children | 6e03f93afa88 |
line source
1 .layout_trace {
2 position: absolute;
3 right: 0;
4 margin-top: 20px;
5 border: 1px solid #404040;
6 font-size: 70%;
7 padding: 5px;
8 background: #ffe0c0;
9 }
11 #trace_show {
12 cursor: pointer;
13 }
15 .trace_list {
16 margin: 0px;
17 margin-bottom: 10px;
18 padding: 0px;
19 list-style-type: none;
20 }
22 .trace_list .trace_list {
23 border-top: 1px solid;
24 margin-bottom: 0px;
25 }
27 .trace_list li {
28 margin: 3px;
29 padding: 0px;
30 }
32 .trace_head {
33 font-weight: bold;
34 margin: 1px;
35 }
37 .trace_error {
38 border: 3px solid red;
39 background-color: black;
40 color: #c00000;
41 text-align: center;
42 text-decoration: blink;
43 }
45 .trace_error_position {
46 color: red;
47 text-decoration: blink;
48 font-weight: bold;
49 }
51 .trace_config {
52 border: 1px solid #608000;
53 background-color: #ffffff;
54 color: #608000;
55 }
57 .trace_config .trace_list {
58 border-color: #608000;
59 }
61 .trace_request {
62 border: 1px solid #6000ff;
63 background-color: #c080ff;
64 color: #6000ff;
65 }
67 .trace_request .trace_list {
68 border-color: #6000ff;
69 }
71 .trace_filter {
72 border: 1px solid #606060;
73 background-color: #c0c0c0;
74 color: #606060;
75 }
77 .trace_filter .trace_list {
78 border-color: #606060;
79 }
81 .trace_view {
82 border: 1px solid #0000ff;
83 background-color: #40c0ff;
84 color: #0000ff;
85 }
87 .trace_view .trace_list {
88 border-color: #0000ff;
89 }
91 .trace_action_success {
92 border: 1px solid #006000;
93 background-color: #80ff80;
94 color: #006000;
95 }
97 .trace_action_success .trace_list {
98 border-color: #006000;
99 }
101 .trace_action_softfail {
102 border: 1px solid #600000;
103 background-color: #ff6020;
104 color: #600000;
105 }
107 .trace_action_softfail .trace_list {
108 border-color: #600000;
109 }
111 .trace_action_status {
112 font-weight: bold;
113 }
115 .trace_action_neutral {
116 border: 1px solid #600000;
117 background-color: #ffc040;
118 color: #600000;
119 }
121 .trace_action_neutral .trace_list {
122 border-color: #600000;
123 }
125 .trace_redirect, .trace_forward {
126 border: 1px solid #404000;
127 background-color: #c08040;
128 color: #404000;
129 }
131 .trace_redirect .trace_list, .trace_forward .trace_list {
132 border-color: #404000;
133 }
135 .trace_exectime {
136 border: 1px solid black;
137 background-color: #404040;
138 color: white;
139 }
141 .trace_exectime .trace_list {
142 border-color: white;
143 }
145 .trace_close {
146 border: 1px solid black;
147 background-color: #605040;
148 margin: 3px;
149 padding: 3px;
150 color: white;
151 text-align: center;
152 cursor: pointer;
153 }