webmcp
view demo-app/static/trace.css @ 535:8ebbc33ee84d
Updated LICENSE file
| author | jbe | 
|---|---|
| date | Mon Apr 01 23:36:24 2019 +0200 (2019-04-01) | 
| parents | 6e03f93afa88 | 
| children | 
 line source
     1 #trace_content ul {
     2   list-style-type: none;
     3   margin: 0;
     4   padding: 0;
     5 }
     7 #trace_content {
     8   margin: 12pt;
     9   padding: 9px;
    10   border-radius: 2px;
    11   background-color: #ffffff;
    12 }
    13 #trace_content #system_error {
    14   font-family: monospace;
    15 }
    16 #trace_content ul li {
    17   margin-top: 10px;
    18 }
    19 #trace_content ul li .trace_head {
    20   padding: 3px 5px;
    21   border-radius: 2px 2px 0 0;
    22 }
    23 #trace_content ul li .trace_head:last-child {
    24   border-radius: 2px;
    25 }
    26 #trace_content ul li ul {
    27   border-radius: 0 0 2px 2px;
    28 }
    29 #trace_content ul li:first-child {
    30   margin-top: 0;
    31 }
    32 #trace_content ul ul {
    33   padding: 10px;
    34 }
    35 #trace_content .trace_config > ul {
    36   background-color: #eee;
    37   border: 1px solid #ccc;
    38 }
    39 #trace_content .trace_config > .trace_head {
    40   background-color: #ccc;
    41   color: #000;
    42 }
    43 #trace_content .trace_request > ul {
    44   background-color: #afa;
    45 }
    46 #trace_content .trace_request > .trace_head {
    47   background-color: #0c0;
    48 }
    49 #trace_content .trace_filter > ul {
    50   background-color: #ccf;
    51   border: 1px solid #00c;
    52   border-top: none;
    53 }
    54 #trace_content .trace_filter > .trace_head {
    55   background-color: #00c;
    56   color: #fff;
    57 }
    58 #trace_content .trace_view > ul {
    59   background-color: #cfc;
    60   border: 1px solid #0c0;
    61   border-top: none;
    62 }
    63 #trace_content .trace_view > .trace_head {
    64   background-color: #0c0;
    65   color: #000;
    66 }
    67 #trace_content .trace_action_neutral > ul {
    68   background-color: #ffa;
    69   border: 1px solid #fe0;
    70 }
    71 #trace_content .trace_action_neutral > .trace_head {
    72   background-color: #fe0;
    73   color: #000;
    74 }
    75 #trace_content .trace_action_success > ul {
    76   background-color: #afa;
    77   border: 1px solid #fe0;
    78 }
    79 #trace_content .trace_action_success > .trace_head {
    80   background-color: #fe0;
    81   color: #000;
    82 }
    83 #trace_content .trace_action_softfail > ul {
    84   background-color: #faa;
    85   border: 1px solid #fe0;
    86 }
    87 #trace_content .trace_action_softfail > .trace_head {
    88   background-color: #fe0;
    89   color: #000;
    90 }
    91 #trace_content .trace_sql {
    92   background-color: #fff;
    93   padding: 2px 4px;
    94   margin-top: 8px;
    95 }
    96 #trace_content .trace_sql_time {
    97   float: right;
    98   font-weight: bold;
    99 }
   100 #trace_content .trace_error {
   101   background-color: #faa;
   102   color: #000;
   103   font-weight: bold;
   104   border: 1px solid #c00;
   105 }
   106 #trace_content .trace_exectime {
   107   background-color: #ccc;
   108   font-weight: bold;
   109   border-radius: 2px;
   110 }
   111 #trace_content .time {
   112   float: right;
   113 }
   114 #trace_content .total_duration {
   115   font-weight: bold;
   116 }
