blob: 2dffb3ea0367840bb58d4ec06a8fe5a2f6e37dbf (
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
.collectionTimeView,
.collectionTimeView-pivot {
display: flex;
flex-direction: row;
position: absolute;
height: 100%;
width: 100%;
overflow: hidden;
.collectionTimeView-backBtn {
background: green;
display: inline;
margin-right: 20px;
}
.collectionFreeform-customText {
text-align: left;
}
.collectionFreeform-customDiv {
position: absolute;
}
.collectionTimeView-thumb {
position: absolute;
width: 30px;
height: 30px;
transform: rotate(45deg);
display: inline-block;
background: gray;
bottom: 0;
margin-bottom: -17px;
border-radius: 9px;
opacity: 0.25;
}
.collectionTimeView-thumb-min {
margin-left: 25%;
}
.collectionTimeView-thumb-max {
margin-left: 75%;
}
.collectionTimeView-thumb-mid {
margin-left: 50%;
}
.collectionTimeView-flyout {
width: 400px;
display: inline-block;
.collectionTimeView-flyout-item {
background-color: lightgray;
text-align: left;
display: inline-block;
position: relative;
width: 100%;
}
}
.pivotKeyEntry {
position: absolute;
top: 5px;
right: 5px;
z-index: 10;
pointer-events: all;
padding: 5px;
border: 1px solid black;
}
.collectionTimeView-treeView {
display: flex;
flex-direction: column;
width: 200px;
height: 100%;
.collectionTimeView-addfacet {
display: inline-block;
width: 200px;
height: 30px;
background: darkGray;
text-align: center;
.collectionTimeView-button {
align-items: center;
display: flex;
width: 100%;
height: 100%;
.collectionTimeView-span {
margin: auto;
}
}
>div,
>div>div {
width: 100%;
height: 100%;
text-align: center;
}
}
.collectionTimeView-tree {
display: inline-block;
width: 100%;
height: calc(100% - 30px);
}
}
.collectionTimeView-innards {
display: inline-block;
width: calc(100% - 200px);
height: 100%;
}
.collectionTimeView-dragger {
background-color: lightgray;
height: 40px;
width: 20px;
position: absolute;
border-radius: 10px;
top: 55%;
border: 1px black solid;
z-index: 2;
left: -10px;
}
}
.collectionTimeView-pivot {
.collectionFreeform-customText {
text-align: center;
}
}
|