blob: 7a84fcde16bd403420fa337ef09c3ea9a70287e7 (
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
135
136
137
138
139
|
@import "../../globalCssVariables";
.collectionfreeformview-none,
.collectionfreeformview-ease {
position: inherit;
top: 0;
left: 0;
width: 100%;
height: 100%;
transform-origin: left top;
border-radius: inherit;
touch-action: none;
border-radius: inherit;
}
.collectionfreeformview-viewdef {
> .collectionFreeFormDocumentView-container {
pointer-events: none;
.contentFittingDocumentDocumentView-previewDoc {
pointer-events: all;
}
}
}
.collectionfreeformview-ease {
transition: transform 500ms;
}
.collectionfreeformview-none {
touch-action: none;
}
.collectionFreeform-customText {
position: absolute;
text-align: center;
overflow-y: auto;
overflow-x: hidden;
}
.collectionfreeformview-container {
// touch action none means that the browser will handle none of the touch actions. this allows us to implement our own actions.
touch-action: none;
.fwdKeyframe, .numKeyframe, .backKeyframe{
cursor: pointer;
position: absolute;
width: 20;
height:20;
bottom:0;
background:gray;
}
.backKeyframe {
right:45;
}
.numKeyframe {
right:25;
}
.fwdKeyframe {
right:5;
}
.collectionfreeformview-placeholder {
background: gray;
width: 100%;
height: 100%;
display: flex;
align-items: center;
overflow: hidden;
.collectionfreeformview-placeholderSpan {
font-size: 32;
display: flex;
text-align: center;
margin: auto;
background: #80808069;
}
}
.collectionfreeformview>.jsx-parser {
position: inherit;
height: 100%;
width: 100%;
}
>.jsx-parser {
z-index: 0;
}
//nested freeform views
// .collectionfreeformview-container {
// background-image: linear-gradient(to right, $light-color-secondary 1px, transparent 1px),
// linear-gradient(to bottom, $light-color-secondary 1px, transparent 1px);
// background-size: 30px 30px;
// }
border: 0px solid $light-color-secondary;
border-radius: inherit;
box-sizing: border-box;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
align-items: center;
display: flex;
}
// selection border...?
.border {
border-style: solid;
box-sizing: border-box;
width: 98%;
height: 98%;
border-radius: $border-radius;
}
//this is an animation for the blinking cursor!
@keyframes blink {
0% {
opacity: 0;
}
49% {
opacity: 0;
}
50% {
opacity: 1;
}
}
#prevCursor {
animation: blink 1s infinite;
}
.pullpane-indicator {
z-index: 99999;
background-color: rgba($color: #000000, $alpha: .4);
position: absolute;
}
|