aboutsummaryrefslogtreecommitdiffstats
path: root/mitmproxy/web/src/css/flowdetail.less
blob: edf975662d69f192244d5eec1fd9f889e18306c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
//TODO: Move into some utils
.monospace() {
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

.flow-detail {
    width: 100%;
    overflow-x: auto;
    overflow-y: scroll;

    nav {
        background-color: #F2F2F2;
    }

    section {
        padding: 5px 12px;
    }

    .first-line {
        .monospace();
        background-color: #428bca;
        color: white;
        margin: 0 -8px;
        padding: 4px 8px;
        border-radius: 5px;
        word-break: break-all;
        max-height: 100px;
        overflow-y: auto;
    }
    .request-line {
        margin-bottom: 2px;
    }
    /*.request .response-line,
    .response .request-line {
        opacity: 0.7;
    }*/

    hr {
        margin: 0 0 5px;
    }

}

.inline-input {
    margin: 0 -5px;
    padding: 0 5px;

    &[contenteditable] {

        background-color: rgba(255, 255, 255, 0.2);

        &.has-warning {
            color: rgb(255, 184, 184);
        }
        &.has-success {
            //color: green;
        }
    }
}

.view-options {
    margin-top: 10px;
}

.flow-detail table {
    .monospace();
    width: 100%;
    table-layout: fixed;
    word-break: break-all;

    tr {
        &:not(:first-child) {
            border-top: 1px solid #f7f7f7;
        }
    }

    td {
        vertical-align: top;
        //alt:
        //white-space: nowrap;
        //overflow: hidden;
        //text-overflow: ellipsis;
    }
}

.connection-table {
    td:first-child {
        width: 50%;
        padding-right: 1em;
    }
}

.header-table {
    td {
        line-height: 1.3em;
    }
    .header-name {
        width: 33%;
        padding-right: 1em;
    }
    .header-value {

    }
}

.connection-table, .timing-table {
    td {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}