blob: d56999974b95070854e2d549268723d916df0487 (
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
|
.collectionTimeView,
.collectionTimeView-pivot {
display: flex;
flex-direction: row;
position: absolute;
height: 100%;
width: 100%;
overflow: hidden;
.collectionTimeView-backBtn {
background: green;
display: inline;
}
.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: 0px;
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: block;
text-align: left;
.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;
display: none;
span {
margin-left: 10px;
}
}
.collectionTimeView-innards {
display: inline-block;
width: 100%;
height: 100%;
}
}
.collectionTimeView-pivot {
.collectionFreeform-customText {
text-align: center;
}
}
.collectionTimeView:hover,
.collectionTimeView-pivot:hover {
.pivotKeyEntry {
display: unset;
}
}
|