aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/css/flowdetail.less
blob: 8501ce6c2467c02285c3b3621cfc9a09f114a0d6 (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
.flow-detail {
    width: 100%;
    overflow: auto;
    
    nav {
        background-color: #F2F2F2;
    }

    section {
        padding: 5px;
    }

    //FIXME: Style properly
    code {
        word-break: break-all;
        padding-left: 0;
    }
}

//TODO: Move into some utils
.monospace(){
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

.header-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;
    }

    .header-name {
        width: 33%;
        padding-right: 1em;
    }
    .header-value {
        
    }
}