blob: bd3d6c77bb31331905272d065bbb168ad9db4ca4 (
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
|
.collectionPivotView {
display: flex;
flex-direction: row;
position: absolute;
height:100%;
width:100%;
.collectionPivotView-flyout {
width: 400px;
height: 300px;
display: inline-block;
.collectionPivotView-flyout-item {
background-color: lightgray;
text-align: left;
display: inline-block;
position: relative;
width: 100%;
}
}
.collectionPivotView-treeView {
display:flex;
flex-direction: column;
width: 200px;
height: 100%;
.collectionPivotView-addfacet {
display:inline-block;
width: 200px;
height: 30px;
background: darkGray;
text-align: center;
.collectionPivotView-button {
align-items: center;
display: flex;
width: 100%;
height: 100%;
.collectionPivotView-span {
margin: auto;
}
}
> div, > div > div {
width: 100%;
height: 100%;
text-align: center;
}
}
.collectionPivotView-tree {
display:inline-block;
width: 200px;
height: calc(100% - 30px);
}
}
.collectionPivotView-pivot {
display:inline-block;
width: calc(100% - 200px);
height: 100%;
}
}
|