diff options
| author | Maximilian Hils <git@maximilianhils.com> | 2014-12-23 20:33:42 +0100 |
|---|---|---|
| committer | Maximilian Hils <git@maximilianhils.com> | 2014-12-23 20:33:42 +0100 |
| commit | 2861d99de4d329bcba0a3c2193523398a22673c0 (patch) | |
| tree | 0aa1a2aae666c2909285a6fd5049f2ef7d6d8ebc /web/src/css | |
| parent | 459772a8ef79ac0adeaeba56577972e86074265e (diff) | |
| download | mitmproxy-2861d99de4d329bcba0a3c2193523398a22673c0.tar.gz mitmproxy-2861d99de4d329bcba0a3c2193523398a22673c0.tar.bz2 mitmproxy-2861d99de4d329bcba0a3c2193523398a22673c0.zip | |
web: intercept feature
Diffstat (limited to 'web/src/css')
| -rw-r--r-- | web/src/css/flowtable.less | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/web/src/css/flowtable.less b/web/src/css/flowtable.less index 2b0e8df3..b18a71fa 100644 --- a/web/src/css/flowtable.less +++ b/web/src/css/flowtable.less @@ -40,7 +40,16 @@ text-overflow: ellipsis; } - tr + tr.intercepted:not(.has-response) { + .col-path, .col-method { + color: hsl(30, 100%, 50%); + } + } + tr.intercepted.has-response { + .col-status, .col-size, .col-time { + color: hsl(30, 100%, 50%); + } + } .col-tls { width: 10px; |
