@cu-mkp/editioncrafter 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/editioncrafter.min.js +1 -1
- package/dist/es/src/action/DocumentActions.js +31 -26
- package/dist/es/src/component/DiploMatic.js +1 -1
- package/dist/es/src/component/ImageGridView.js +3 -1
- package/dist/es/src/scss/_CETEIcean.scss +907 -903
- package/dist/es/src/scss/_base.scss +157 -154
- package/dist/es/src/scss/_diplomatic.scss +4 -4
- package/dist/es/src/scss/_globalNavigation.scss +34 -31
- package/dist/es/src/scss/_glossary.scss +97 -93
- package/dist/es/src/scss/_imageGridView.scss +74 -71
- package/dist/es/src/scss/_imageView.scss +37 -34
- package/dist/es/src/scss/_imageZoomControl.scss +53 -49
- package/dist/es/src/scss/_jumpbox.scss +43 -40
- package/dist/es/src/scss/_navigation.scss +186 -183
- package/dist/es/src/scss/_pagination.scss +44 -41
- package/dist/es/src/scss/_ringSpinner.scss +82 -79
- package/dist/es/src/scss/_singlePaneView.scss +10 -7
- package/dist/es/src/scss/_spinner.scss +56 -52
- package/dist/es/src/scss/_splitPaneView.scss +48 -46
- package/dist/es/src/scss/_thumbnails.scss +16 -12
- package/dist/es/src/scss/_transcriptView.scss +194 -191
- package/dist/es/src/scss/_watermark.scss +26 -23
- package/dist/es/src/scss/_xmlView.scss +31 -28
- package/package.json +1 -1
|
@@ -1,205 +1,208 @@
|
|
|
1
|
-
.
|
|
2
|
-
#tool-bar-buttons{
|
|
3
|
-
font-size: 15px;
|
|
4
|
-
}
|
|
5
|
-
position: sticky;
|
|
6
|
-
display: none;
|
|
7
|
-
z-index: 2;
|
|
8
|
-
height:48px;
|
|
9
|
-
width: 100%;
|
|
10
|
-
white-space: nowrap;
|
|
11
|
-
-webkit-user-select: none;
|
|
12
|
-
-moz-user-select: none;
|
|
13
|
-
-ms-user-select: none;
|
|
14
|
-
user-select: none;
|
|
15
|
-
padding:4px;
|
|
16
|
-
background-color: white;
|
|
17
|
-
border-radius: max(0.3rem, 4.8px);
|
|
18
|
-
@include sm {
|
|
19
|
-
top: 80px;
|
|
20
|
-
}
|
|
21
|
-
@include md {
|
|
22
|
-
top: 0;
|
|
23
|
-
left: 0;
|
|
24
|
-
display: flex;
|
|
25
|
-
}
|
|
26
|
-
button{
|
|
27
|
-
cursor: pointer;
|
|
28
|
-
}
|
|
29
|
-
}
|
|
1
|
+
.editioncrafter {
|
|
30
2
|
|
|
31
|
-
.
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
width: auto;
|
|
37
|
-
z-index: 2;
|
|
38
|
-
height:48px;
|
|
39
|
-
width: 100%;
|
|
40
|
-
white-space: nowrap;
|
|
41
|
-
-webkit-user-select: none;
|
|
42
|
-
-moz-user-select: none;
|
|
43
|
-
-ms-user-select: none;
|
|
44
|
-
user-select: none;
|
|
45
|
-
padding:4px;
|
|
46
|
-
background-color: white;
|
|
47
|
-
@include md {
|
|
3
|
+
.navigationComponent {
|
|
4
|
+
#tool-bar-buttons{
|
|
5
|
+
font-size: 15px;
|
|
6
|
+
}
|
|
7
|
+
position: sticky;
|
|
48
8
|
display: none;
|
|
9
|
+
z-index: 2;
|
|
10
|
+
height:48px;
|
|
11
|
+
width: 100%;
|
|
12
|
+
white-space: nowrap;
|
|
13
|
+
-webkit-user-select: none;
|
|
14
|
+
-moz-user-select: none;
|
|
15
|
+
-ms-user-select: none;
|
|
16
|
+
user-select: none;
|
|
17
|
+
padding:4px;
|
|
18
|
+
background-color: white;
|
|
19
|
+
border-radius: max(0.3rem, 4.8px);
|
|
20
|
+
@include sm {
|
|
21
|
+
top: 80px;
|
|
22
|
+
}
|
|
23
|
+
@include md {
|
|
24
|
+
top: 0;
|
|
25
|
+
left: 0;
|
|
26
|
+
display: flex;
|
|
27
|
+
}
|
|
28
|
+
button{
|
|
29
|
+
cursor: pointer;
|
|
30
|
+
}
|
|
49
31
|
}
|
|
50
|
-
|
|
51
|
-
|
|
32
|
+
|
|
33
|
+
.navigationComponentNarrow {
|
|
34
|
+
#tool-bar-buttons{
|
|
35
|
+
font-size: 15px;
|
|
36
|
+
}
|
|
37
|
+
display: flex;
|
|
38
|
+
width: auto;
|
|
39
|
+
z-index: 2;
|
|
40
|
+
height:48px;
|
|
41
|
+
width: 100%;
|
|
42
|
+
white-space: nowrap;
|
|
43
|
+
-webkit-user-select: none;
|
|
44
|
+
-moz-user-select: none;
|
|
45
|
+
-ms-user-select: none;
|
|
46
|
+
user-select: none;
|
|
47
|
+
padding:4px;
|
|
48
|
+
background-color: white;
|
|
49
|
+
@include md {
|
|
50
|
+
display: none;
|
|
51
|
+
}
|
|
52
|
+
button{
|
|
53
|
+
cursor: pointer;
|
|
54
|
+
}
|
|
52
55
|
}
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
.navigationRow{
|
|
56
|
-
display:none;
|
|
57
|
-
justify-content:space-between;
|
|
58
|
-
align-items:center;
|
|
59
|
-
gap: 10px;
|
|
60
|
-
width: 100%;
|
|
61
|
-
padding:12px 10px 12px 10px;
|
|
62
|
-
@include md {
|
|
63
|
-
display:flex;
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
.navigationRowNarrow {
|
|
68
|
-
display:flex;
|
|
69
|
-
justify-content:space-between;
|
|
70
|
-
align-items: center;
|
|
71
|
-
gap: 10px;
|
|
72
|
-
width: 100%;
|
|
73
|
-
padding:6px 5px 6px 5px;
|
|
74
|
-
@include md {
|
|
56
|
+
|
|
57
|
+
.navigationRow{
|
|
75
58
|
display:none;
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
59
|
+
justify-content:space-between;
|
|
60
|
+
align-items:center;
|
|
61
|
+
gap: 10px;
|
|
62
|
+
width: 100%;
|
|
63
|
+
padding:12px 10px 12px 10px;
|
|
64
|
+
@include md {
|
|
65
|
+
display:flex;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.navigationRowNarrow {
|
|
70
|
+
display:flex;
|
|
71
|
+
justify-content:space-between;
|
|
72
|
+
align-items: center;
|
|
73
|
+
gap: 10px;
|
|
74
|
+
width: 100%;
|
|
75
|
+
padding:6px 5px 6px 5px;
|
|
76
|
+
@include md {
|
|
77
|
+
display:none;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.helpIcon {
|
|
82
|
+
display: inline-block;
|
|
83
|
+
margin-top:6px;
|
|
84
|
+
margin-right:16px;
|
|
85
|
+
@include md {
|
|
86
|
+
display: block;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.dropdownV2 {
|
|
91
|
+
width:150px;
|
|
92
|
+
margin-right:10px;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.imageViewComponent .navigationComponent {
|
|
96
|
+
background-color: #4A4A4A;
|
|
97
|
+
border-radius: max(0.3rem, 4.8px);
|
|
98
|
+
opacity: 0.8;
|
|
99
|
+
@include md {
|
|
100
|
+
background-color: rgba(0,0,0,1);
|
|
101
|
+
color: #ffffff;
|
|
102
|
+
border-radius: 0;
|
|
103
|
+
opacity: 1;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.imageViewComponent .navigationComponentNarrow {
|
|
98
109
|
background-color: rgba(0,0,0,1);
|
|
99
110
|
color: #ffffff;
|
|
100
111
|
border-radius: 0;
|
|
101
112
|
opacity: 1;
|
|
102
113
|
}
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
.
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
#doc-type-help:after {
|
|
119
|
-
color: rgb(151, 142, 142);
|
|
120
|
-
}
|
|
121
|
-
#doc-type-help{
|
|
122
|
-
.dark{
|
|
123
|
-
.MuiSvgIcon-root.MuiSelect-icon{
|
|
124
|
-
color: white;
|
|
114
|
+
|
|
115
|
+
.transcriptionViewComponent .navigationComponent {
|
|
116
|
+
background-color: rgba(255,255,255,1);;
|
|
117
|
+
color: #000000;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
#doc-type-help:after {
|
|
121
|
+
color: rgb(151, 142, 142);
|
|
122
|
+
}
|
|
123
|
+
#doc-type-help{
|
|
124
|
+
.dark{
|
|
125
|
+
.MuiSvgIcon-root.MuiSelect-icon{
|
|
126
|
+
color: white;
|
|
127
|
+
}
|
|
125
128
|
}
|
|
126
129
|
}
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
130
|
+
|
|
131
|
+
.breadcrumbs {
|
|
132
|
+
overflow-x:hidden;
|
|
133
|
+
display: hidden;
|
|
134
|
+
align-items: baseline;
|
|
135
|
+
max-width: 70%;
|
|
136
|
+
@include md {
|
|
137
|
+
display: flex;
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.breadcrumbsNarrow {
|
|
142
|
+
overflow-x:hidden;
|
|
135
143
|
display: flex;
|
|
144
|
+
align-items: baseline;
|
|
145
|
+
max-width: 70%;
|
|
146
|
+
@include md {
|
|
147
|
+
display: none;
|
|
148
|
+
}
|
|
136
149
|
}
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
display: none;
|
|
150
|
+
|
|
151
|
+
.breadcrumbs .folioName, .breadcrumbsNarrow .folioName {
|
|
152
|
+
display:inline;
|
|
153
|
+
white-space: nowrap;
|
|
154
|
+
overflow: hidden;
|
|
155
|
+
text-overflow: ellipsis;
|
|
156
|
+
font-weight: 900;
|
|
157
|
+
text-decoration:underline;
|
|
146
158
|
}
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
font-weight: 900;
|
|
155
|
-
text-decoration:underline;
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
.closeX {
|
|
159
|
-
float: right;
|
|
160
|
-
padding: 3px;
|
|
161
|
-
font-style: bold;
|
|
162
|
-
&:hover {
|
|
163
|
-
cursor: pointer;
|
|
164
|
-
}
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
.helpContainer .MuiListItem-root {
|
|
168
|
-
display: flex;
|
|
169
|
-
gap: 10px;
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
.helpContainer {
|
|
173
|
-
padding:12px;
|
|
174
|
-
width:335px;
|
|
175
|
-
height: min(600px, calc(100vh - 40px));
|
|
176
|
-
position: relative;
|
|
177
|
-
top: 40px;
|
|
178
|
-
overflow-x: auto;
|
|
179
|
-
|
|
180
|
-
.readingGuide {
|
|
181
|
-
|
|
182
|
-
td {
|
|
183
|
-
padding: 8px;
|
|
159
|
+
|
|
160
|
+
.closeX {
|
|
161
|
+
float: right;
|
|
162
|
+
padding: 3px;
|
|
163
|
+
font-style: bold;
|
|
164
|
+
&:hover {
|
|
165
|
+
cursor: pointer;
|
|
184
166
|
}
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.helpContainer .MuiListItem-root {
|
|
170
|
+
display: flex;
|
|
171
|
+
gap: 10px;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.helpContainer {
|
|
175
|
+
padding:12px;
|
|
176
|
+
width:335px;
|
|
177
|
+
height: min(600px, calc(100vh - 40px));
|
|
178
|
+
position: relative;
|
|
179
|
+
top: 40px;
|
|
180
|
+
overflow-x: auto;
|
|
181
|
+
|
|
182
|
+
.readingGuide {
|
|
183
|
+
|
|
184
|
+
td {
|
|
185
|
+
padding: 8px;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
h2 {
|
|
189
|
+
margin-top: 16px;
|
|
190
|
+
margin-bottom: 10px;
|
|
191
|
+
}
|
|
189
192
|
}
|
|
190
193
|
}
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
}
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
.searchHelpContainer {
|
|
197
|
+
padding: 10px 15px 10px 0;
|
|
198
|
+
width:335px;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.helpHeader{
|
|
202
|
+
text-align:center;
|
|
203
|
+
}
|
|
202
204
|
|
|
205
|
+
}
|
|
203
206
|
|
|
204
207
|
|
|
205
208
|
|
|
@@ -1,45 +1,48 @@
|
|
|
1
|
-
.
|
|
2
|
-
|
|
1
|
+
.editioncrafter {
|
|
2
|
+
|
|
3
|
+
.paginationComponent {
|
|
4
|
+
white-space: nowrap;
|
|
5
|
+
|
|
6
|
+
text-align: center;
|
|
7
|
+
font-size: max(1.2rem, 19.2px);
|
|
8
|
+
font-weight: 700;
|
|
9
|
+
-webkit-user-select: none;
|
|
10
|
+
-moz-user-select: none;
|
|
11
|
+
-ms-user-select: none;
|
|
12
|
+
user-select: none;
|
|
13
|
+
margin-top:52px;
|
|
14
|
+
@include md {
|
|
15
|
+
margin-bottom: 0;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
// .paginationComponent:nth-of-type(3){
|
|
19
|
+
// padding:1rem 0 0 0;
|
|
20
|
+
// }
|
|
3
21
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
font-weight: 700;
|
|
7
|
-
-webkit-user-select: none;
|
|
8
|
-
-moz-user-select: none;
|
|
9
|
-
-ms-user-select: none;
|
|
10
|
-
user-select: none;
|
|
11
|
-
margin-top:52px;
|
|
12
|
-
@include md {
|
|
13
|
-
margin-bottom: 0;
|
|
22
|
+
.paginationComponent.bottom {
|
|
23
|
+
margin-top: 0;
|
|
14
24
|
}
|
|
15
|
-
}
|
|
16
|
-
// .paginationComponent:nth-of-type(3){
|
|
17
|
-
// padding:1rem 0 0 0;
|
|
18
|
-
// }
|
|
19
|
-
|
|
20
|
-
.paginationComponent.bottom {
|
|
21
|
-
margin-top: 0;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.paginationControl {
|
|
25
|
-
padding: 16px;
|
|
26
25
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
26
|
+
.paginationControl {
|
|
27
|
+
padding: 16px;
|
|
28
|
+
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.paginationControl .arrow {
|
|
32
|
+
font-size: max(1.8rem, 28.8px);
|
|
33
|
+
color: #4A4A4A;
|
|
34
|
+
margin: max(1rem, 16px) max(1rem, 16px) 0;
|
|
35
|
+
cursor: pointer;
|
|
36
|
+
display: inline-block;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.arrow svg {
|
|
40
|
+
font-size: inherit !important;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.paginationControl .folioName {
|
|
44
|
+
position: relative;
|
|
45
|
+
top: min(-.2rem, -3.2px);
|
|
46
|
+
color: #4A4A4A;
|
|
47
|
+
}
|
|
45
48
|
}
|
|
@@ -1,88 +1,91 @@
|
|
|
1
1
|
/* Small inline spinner */
|
|
2
|
-
.
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
.editioncrafter {
|
|
3
|
+
|
|
4
|
+
.inline-ring-spinner {
|
|
5
|
+
display: inline-block;
|
|
6
|
+
margin-left: 10px;
|
|
7
|
+
margin-right: 10px;
|
|
8
|
+
width: 16px;
|
|
9
|
+
height: 16px;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.inline-ring-spinner .light {
|
|
13
|
+
border: 3px solid #fff;
|
|
14
|
+
border-color: #fff transparent transparent transparent;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.inline-ring-spinner .dark {
|
|
18
|
+
border: 3px solid #000;
|
|
19
|
+
border-color: #000 transparent transparent transparent;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.inline-ring-spinner div {
|
|
23
|
+
box-sizing: border-box;
|
|
24
|
+
display: block;
|
|
25
|
+
position: absolute;
|
|
6
26
|
width: 16px;
|
|
7
27
|
height: 16px;
|
|
28
|
+
border-radius: 50%;
|
|
29
|
+
animation: inline-ring-spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
|
|
8
30
|
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
border: 3px solid #fff;
|
|
12
|
-
border-color: #fff transparent transparent transparent;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.inline-ring-spinner .dark {
|
|
16
|
-
border: 3px solid #000;
|
|
17
|
-
border-color: #000 transparent transparent transparent;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.inline-ring-spinner div {
|
|
21
|
-
box-sizing: border-box;
|
|
22
|
-
display: block;
|
|
23
|
-
position: absolute;
|
|
24
|
-
width: 16px;
|
|
25
|
-
height: 16px;
|
|
26
|
-
border-radius: 50%;
|
|
27
|
-
animation: inline-ring-spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
|
|
28
|
-
}
|
|
29
|
-
.inline-ring-spinner div:nth-child(1) {
|
|
30
|
-
animation-delay: -0.45s;
|
|
31
|
-
}
|
|
32
|
-
.inline-ring-spinner div:nth-child(2) {
|
|
33
|
-
animation-delay: -0.3s;
|
|
34
|
-
}
|
|
35
|
-
.inline-ring-spinner div:nth-child(3) {
|
|
36
|
-
animation-delay: -0.15s;
|
|
37
|
-
}
|
|
38
|
-
@keyframes inline-ring-spinner {
|
|
39
|
-
0% {
|
|
40
|
-
transform: rotate(0deg);
|
|
31
|
+
.inline-ring-spinner div:nth-child(1) {
|
|
32
|
+
animation-delay: -0.45s;
|
|
41
33
|
}
|
|
42
|
-
|
|
43
|
-
|
|
34
|
+
.inline-ring-spinner div:nth-child(2) {
|
|
35
|
+
animation-delay: -0.3s;
|
|
44
36
|
}
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
}
|
|
64
|
-
.big-ring-spinner
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
}
|
|
78
|
-
.big-ring-spinner div
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
37
|
+
.inline-ring-spinner div:nth-child(3) {
|
|
38
|
+
animation-delay: -0.15s;
|
|
39
|
+
}
|
|
40
|
+
@keyframes inline-ring-spinner {
|
|
41
|
+
0% {
|
|
42
|
+
transform: rotate(0deg);
|
|
43
|
+
}
|
|
44
|
+
100% {
|
|
45
|
+
transform: rotate(360deg);
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
/* Big spinner */
|
|
50
|
+
.big-ring-spinner {
|
|
51
|
+
width: 100%;
|
|
52
|
+
height: 100vh;
|
|
53
|
+
display: flex;
|
|
54
|
+
justify-content: center;
|
|
55
|
+
}
|
|
56
|
+
.big-ring-spinner div {
|
|
57
|
+
box-sizing: border-box;
|
|
58
|
+
display: block;
|
|
59
|
+
position: absolute;
|
|
60
|
+
width: 128px;
|
|
61
|
+
height: 128px;
|
|
62
|
+
margin-top: 30vh;
|
|
63
|
+
border-radius: 50%;
|
|
64
|
+
animation: big-ring-spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
|
|
65
|
+
}
|
|
66
|
+
.big-ring-spinner.dark div {
|
|
67
|
+
border: 16px solid #000;
|
|
68
|
+
border-color: #000 transparent transparent transparent;
|
|
69
|
+
}
|
|
70
|
+
.big-ring-spinner.light div {
|
|
71
|
+
border: 16px solid #fff;
|
|
72
|
+
border-color: #fff transparent transparent transparent;
|
|
73
|
+
}
|
|
74
|
+
.big-ring-spinner div:nth-child(1) {
|
|
75
|
+
animation-delay: -0.45s;
|
|
76
|
+
}
|
|
77
|
+
.big-ring-spinner div:nth-child(2) {
|
|
78
|
+
animation-delay: -0.3s;
|
|
79
|
+
}
|
|
80
|
+
.big-ring-spinner div:nth-child(3) {
|
|
81
|
+
animation-delay: -0.15s;
|
|
84
82
|
}
|
|
85
|
-
|
|
86
|
-
|
|
83
|
+
@keyframes big-ring-spinner {
|
|
84
|
+
0% {
|
|
85
|
+
transform: rotate(0deg);
|
|
86
|
+
}
|
|
87
|
+
100% {
|
|
88
|
+
transform: rotate(360deg);
|
|
89
|
+
}
|
|
87
90
|
}
|
|
88
91
|
}
|
|
@@ -1,9 +1,12 @@
|
|
|
1
|
-
.
|
|
2
|
-
height: 100%;
|
|
3
|
-
width: 100%;
|
|
4
|
-
overflow: auto;
|
|
5
|
-
}
|
|
1
|
+
.editioncrafter {
|
|
6
2
|
|
|
7
|
-
.single-pane-view
|
|
8
|
-
|
|
3
|
+
.single-pane-view {
|
|
4
|
+
height: 100%;
|
|
5
|
+
width: 100%;
|
|
6
|
+
overflow: auto;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.single-pane-view > div {
|
|
10
|
+
height: 100%;
|
|
11
|
+
}
|
|
9
12
|
}
|