aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/KeyValueBox.scss
blob: 1295266e525fd20a1b2f280006ec63a589b77331 (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
.keyValueBox-cont {
    overflow-y:scroll;
    height: 100%;
    border: black;
    border-width: 1px;
    border-style: solid;
    box-sizing: border-box;
    display: inline-block;
    .imageBox-cont img {
        max-height:45px;
        height: auto;
    }
}
.keyValueBox-table {
    position: relative;
}
.keyValueBox-header {
    background:gray;
}
.keyValueBox-evenRow {
    background: white;
    .formattedTextBox-cont {
        background: white;
    }
}
.keyValueBox-oddRow {
    background: lightGray;
    .formattedTextBox-cont {
        background: lightgray;
    }
}