blob: a1c5d5537f5d3b085048b0e67fe345e9a01fc9a9 (
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
|
@import "../globalCssVariables";
.keyValuePair-td-key {
display:inline-block;
.keyValuePair-td-key-container{
width:100%;
height:100%;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-between;
.keyValuePair-td-key-delete{
position: relative;
background-color: transparent;
color:red;
}
.keyValuePair-keyField {
width:100%;
text-align: center;
position: relative;
overflow: auto;
}
}
}
.keyValuePair-td-value {
display:inline-block;
overflow: scroll;
img {
max-height: 36px;
width: auto;
}
.videoBox-cont{
width: auto;
max-height: 36px;
}
}
|