blob: f7876723424fe2603a73bc6162373c679fd10b80 (
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
|
@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;
align-items: center;
.keyValuePair-td-key-delete{
position: relative;
background-color: transparent;
color:red;
}
.keyValuePair-td-key-check {
position: relative;
margin: 0;
}
.keyValuePair-keyField {
width:100%;
margin-left: 20px;
margin-top: -1px;
font-family: monospace;
// text-align: center;
align-self: center;
position: relative;
overflow: auto;
}
}
}
.keyValuePair-td-value {
display:inline-block;
overflow: scroll;
font-family: monospace;
height: 30px;
.keyValuePair-td-value-container {
display: flex;
align-items: center;
align-content: center;
flex-direction: row;
justify-content: space-between;
flex-wrap: nowrap;
width: 100%;
height: 100%;
img {
max-height: 36px;
width: auto;
}
.videoBox-cont{
width: auto;
max-height: 36px;
}
}
}
|