blob: ce84b6106325bf43707c6e9cb80a7e614390da84 (
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
|
@import "globalCssVariables";
.documentDecorations {
position: absolute;
}
#documentDecorations-container {
position: absolute;
top: 0;
left:0;
display: grid;
z-index: $docDecorations-zindex;
grid-template-rows: 20px 8px 1fr 8px;
grid-template-columns: 8px 8px 1fr 8px 8px;
pointer-events: none;
#documentDecorations-centerCont {
grid-column:3;
background: none;
}
.documentDecorations-resizer {
pointer-events: auto;
background: $alt-accent;
opacity: 0.8;
}
#documentDecorations-topLeftResizer,
#documentDecorations-leftResizer,
#documentDecorations-bottomLeftResizer {
grid-column: 1
}
#documentDecorations-topResizer,
#documentDecorations-bottomResizer {
grid-column-start: 2;
grid-column-end: 5;
}
#documentDecorations-bottomRightResizer,
#documentDecorations-topRightResizer,
#documentDecorations-rightResizer {
grid-column-start:5;
grid-column-end:7;
}
#documentDecorations-topLeftResizer,
#documentDecorations-bottomRightResizer {
cursor: nwse-resize;
}
#documentDecorations-topRightResizer,
#documentDecorations-bottomLeftResizer {
cursor: nesw-resize;
}
#documentDecorations-topResizer,
#documentDecorations-bottomResizer {
cursor: ns-resize;
}
#documentDecorations-leftResizer,
#documentDecorations-rightResizer {
cursor: ew-resize;
}
.title{
width:100%;
background: lightblue;
grid-column-start:3;
grid-column-end: 4;
pointer-events: auto;
}
}
.documentDecorations-closeButton {
background:$alt-accent;
opacity: 0.8;
grid-column-start: 4;
grid-column-end: 6;
pointer-events: all;
text-align: center;
}
.documentDecorations-minimizeButton {
background:$alt-accent;
opacity: 0.8;
grid-column-start: 1;
grid-column-end: 3;
pointer-events: all;
text-align: center;
}
.documentDecorations-background {
background: lightblue;
position: absolute;
opacity: 0.1;
}
.linkFlyout {
grid-column: 1/4;
margin-left: 25px;
}
.linkButton-empty:hover {
background: $main-accent;
transform: scale(1.05);
cursor: pointer;
}
.linkButton-nonempty:hover {
background: $main-accent;
transform: scale(1.05);
cursor: pointer;
}
.linkButton-linker {
position:absolute;
bottom:0px;
left: 0px;
height: 20px;
width: 20px;
margin-top: 10px;
margin-right: 5px;
border-radius: 50%;
opacity: 0.9;
pointer-events: auto;
color: $dark-color;
border: $dark-color 1px solid;
text-transform: uppercase;
letter-spacing: 2px;
font-size: 75%;
transition: transform 0.2s;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
}
.linkButton-tray {
grid-column: 1/4;
}
.linkButton-empty {
height: 20px;
width: 20px;
margin-top: 10px;
border-radius: 50%;
opacity: 0.9;
pointer-events: auto;
background-color: $dark-color;
color: $light-color;
text-transform: uppercase;
letter-spacing: 2px;
font-size: 75%;
transition: transform 0.2s;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
}
.linkButton-nonempty {
height: 20px;
width: 20px;
margin-top: 10px;
border-radius: 50%;
opacity: 0.9;
pointer-events: auto;
background-color: $dark-color;
color: $light-color;
text-transform: uppercase;
letter-spacing: 2px;
font-size: 75%;
transition: transform 0.2s;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
}
|