decap-cms-core 3.6.3 → 3.7.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/decap-cms-core.js +25 -25
- package/dist/decap-cms-core.js.LICENSE.txt +14 -8
- package/dist/decap-cms-core.js.map +1 -1
- package/dist/esm/actions/config.js +57 -49
- package/dist/esm/actions/editorialWorkflow.js +4 -4
- package/dist/esm/actions/entries.js +8 -14
- package/dist/esm/actions/mediaLibrary.js +6 -11
- package/dist/esm/actions/search.js +2 -2
- package/dist/esm/actions/status.js +2 -8
- package/dist/esm/backend.js +70 -79
- package/dist/esm/bootstrap.js +3 -2
- package/dist/esm/components/App/App.js +28 -34
- package/dist/esm/components/App/Header.js +32 -39
- package/dist/esm/components/Collection/Collection.js +45 -48
- package/dist/esm/components/Collection/CollectionSearch.js +76 -81
- package/dist/esm/components/Collection/CollectionTop.js +1 -2
- package/dist/esm/components/Collection/Entries/Entries.js +2 -4
- package/dist/esm/components/Collection/Entries/EntriesCollection.js +25 -29
- package/dist/esm/components/Collection/Entries/EntriesSearch.js +34 -38
- package/dist/esm/components/Collection/Entries/EntryCard.js +8 -13
- package/dist/esm/components/Collection/Entries/EntryListing.js +72 -76
- package/dist/esm/components/Collection/FilterControl.js +1 -1
- package/dist/esm/components/Collection/GroupControl.js +1 -1
- package/dist/esm/components/Collection/NestedCollection.js +50 -53
- package/dist/esm/components/Collection/Sidebar.js +35 -38
- package/dist/esm/components/Collection/SortControl.js +3 -3
- package/dist/esm/components/Collection/ViewStyleControl.js +1 -2
- package/dist/esm/components/Editor/Editor.js +197 -201
- package/dist/esm/components/Editor/EditorControlPane/EditorControl.js +79 -87
- package/dist/esm/components/Editor/EditorControlPane/EditorControlPane.js +75 -86
- package/dist/esm/components/Editor/EditorControlPane/Widget.js +226 -228
- package/dist/esm/components/Editor/EditorInterface.js +69 -80
- package/dist/esm/components/Editor/EditorPreviewPane/EditorPreview.js +1 -2
- package/dist/esm/components/Editor/EditorPreviewPane/EditorPreviewContent.js +20 -28
- package/dist/esm/components/Editor/EditorPreviewPane/EditorPreviewPane.js +163 -161
- package/dist/esm/components/Editor/EditorPreviewPane/PreviewHOC.js +4 -8
- package/dist/esm/components/Editor/EditorToolbar.js +335 -347
- package/dist/esm/components/Editor/withWorkflow.js +5 -6
- package/dist/esm/components/MediaLibrary/MediaLibrary.js +304 -294
- package/dist/esm/components/MediaLibrary/MediaLibraryButtons.js +40 -46
- package/dist/esm/components/MediaLibrary/MediaLibraryCard.js +1 -2
- package/dist/esm/components/MediaLibrary/MediaLibraryCardGrid.js +8 -13
- package/dist/esm/components/MediaLibrary/MediaLibraryModal.js +3 -3
- package/dist/esm/components/MediaLibrary/MediaLibrarySearch.js +1 -2
- package/dist/esm/components/MediaLibrary/MediaLibraryTop.js +3 -6
- package/dist/esm/components/UI/DragDrop.js +15 -23
- package/dist/esm/components/UI/ErrorBoundary.js +23 -25
- package/dist/esm/components/UI/Modal.js +10 -12
- package/dist/esm/components/UI/Notifications.js +4 -8
- package/dist/esm/components/UI/SettingsDropdown.js +4 -8
- package/dist/esm/components/Workflow/Workflow.js +19 -20
- package/dist/esm/components/Workflow/WorkflowCard.js +2 -4
- package/dist/esm/components/Workflow/WorkflowList.js +105 -113
- package/dist/esm/constants/configSchema.js +18 -16
- package/dist/esm/formats/formats.js +11 -12
- package/dist/esm/formats/frontmatter.js +17 -21
- package/dist/esm/formats/toml.js +2 -2
- package/dist/esm/formats/yaml.js +2 -6
- package/dist/esm/index.js +3 -7
- package/dist/esm/integrations/providers/algolia/implementation.js +12 -14
- package/dist/esm/integrations/providers/assetStore/implementation.js +10 -12
- package/dist/esm/lib/formatters.js +13 -17
- package/dist/esm/lib/i18n.js +35 -33
- package/dist/esm/lib/phrases.js +2 -2
- package/dist/esm/lib/polyfill.js +8 -0
- package/dist/esm/lib/registry.js +35 -35
- package/dist/esm/lib/serializeEntryValues.js +3 -3
- package/dist/esm/lib/stega.js +142 -0
- package/dist/esm/lib/urlHelper.js +16 -18
- package/dist/esm/mediaLibrary.js +3 -4
- package/dist/esm/reducers/collections.js +26 -42
- package/dist/esm/reducers/combinedReducer.js +3 -6
- package/dist/esm/reducers/config.js +3 -7
- package/dist/esm/reducers/editorialWorkflow.js +5 -9
- package/dist/esm/reducers/entries.js +33 -35
- package/dist/esm/reducers/entryDraft.js +2 -2
- package/dist/esm/reducers/integrations.js +8 -14
- package/dist/esm/reducers/mediaLibrary.js +18 -20
- package/dist/esm/reducers/notifications.js +4 -8
- package/dist/esm/types/immutable.js +7 -1
- package/dist/esm/valueObjects/AssetProxy.js +1 -9
- package/dist/esm/valueObjects/EditorComponent.js +18 -25
- package/dist/esm/valueObjects/Entry.js +2 -2
- package/index.d.ts +2 -0
- package/package.json +14 -11
- package/src/actions/__tests__/config.spec.js +3 -3
- package/src/actions/config.ts +3 -1
- package/src/actions/editorialWorkflow.ts +1 -1
- package/src/actions/entries.ts +1 -1
- package/src/actions/search.ts +1 -1
- package/src/backend.ts +8 -1
- package/src/bootstrap.js +1 -0
- package/src/components/App/App.js +5 -0
- package/src/components/App/Header.js +3 -0
- package/src/components/Collection/Collection.js +5 -0
- package/src/components/Collection/CollectionSearch.js +5 -0
- package/src/components/Collection/Entries/EntriesCollection.js +4 -1
- package/src/components/Collection/Entries/EntriesSearch.js +4 -1
- package/src/components/Collection/Entries/EntryListing.js +5 -0
- package/src/components/Collection/Entries/__tests__/__snapshots__/EntriesCollection.spec.js.snap +0 -4
- package/src/components/Collection/NestedCollection.js +6 -1
- package/src/components/Collection/Sidebar.js +5 -0
- package/src/components/Editor/Editor.js +4 -1
- package/src/components/Editor/EditorControlPane/EditorControl.js +7 -1
- package/src/components/Editor/EditorControlPane/Widget.js +5 -0
- package/src/components/Editor/EditorPreviewPane/EditorPreviewPane.js +1 -1
- package/src/components/Editor/EditorToolbar.js +3 -0
- package/src/components/Editor/__tests__/Editor.spec.js +3 -4
- package/src/components/Editor/__tests__/__snapshots__/Editor.spec.js.snap +5 -5
- package/src/components/Editor/__tests__/__snapshots__/EditorToolbar.spec.js.snap +708 -393
- package/src/components/MediaLibrary/MediaLibrary.js +5 -1
- package/src/components/MediaLibrary/MediaLibraryModal.js +1 -1
- package/src/components/UI/ErrorBoundary.js +6 -1
- package/src/components/UI/Modal.js +3 -0
- package/src/components/Workflow/Workflow.js +3 -0
- package/src/components/Workflow/WorkflowList.js +5 -0
- package/src/constants/__tests__/configSchema.spec.js +1 -1
- package/src/formats/formats.ts +1 -1
- package/src/formats/toml.ts +2 -2
- package/src/integrations/providers/algolia/implementation.js +2 -2
- package/src/integrations/providers/assetStore/implementation.js +2 -1
- package/src/lib/formatters.ts +4 -1
- package/src/lib/i18n.ts +3 -1
- package/src/lib/phrases.js +1 -1
- package/src/lib/polyfill.js +9 -0
- package/src/lib/serializeEntryValues.js +1 -1
- package/src/lib/stega.ts +145 -0
- package/src/lib/urlHelper.ts +4 -1
- package/src/mediaLibrary.ts +1 -1
- package/src/reducers/collections.ts +2 -1
- package/src/reducers/editorialWorkflow.ts +1 -1
- package/src/reducers/entries.ts +6 -1
- package/src/reducers/entryDraft.js +1 -1
- package/src/types/immutable.ts +10 -0
- package/src/types/redux.ts +2 -0
- package/src/valueObjects/EditorComponent.js +1 -1
- package/src/valueObjects/Entry.ts +1 -1
|
@@ -22,18 +22,39 @@ exports[`EditorToolbar should render normal save button 1`] = `
|
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
.emotion-2 {
|
|
25
|
+
height: 100%;
|
|
26
|
+
display: -webkit-box;
|
|
27
|
+
display: -webkit-flex;
|
|
28
|
+
display: -ms-flexbox;
|
|
29
|
+
display: flex;
|
|
30
|
+
-webkit-align-items: center;
|
|
31
|
+
-webkit-box-align: center;
|
|
32
|
+
-ms-flex-align: center;
|
|
33
|
+
align-items: center;
|
|
34
|
+
border: 0 solid #dfdfe3;
|
|
35
|
+
border-right-width: 1px;
|
|
36
|
+
font-weight: normal;
|
|
37
|
+
padding: 0 20px;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.emotion-2:hover,
|
|
41
|
+
.emotion-2:focus {
|
|
42
|
+
background-color: #f1f2f4;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.emotion-4 {
|
|
25
46
|
color: #313d3e;
|
|
26
47
|
font-size: 21px;
|
|
27
48
|
font-weight: 600;
|
|
28
49
|
margin-right: 16px;
|
|
29
50
|
}
|
|
30
51
|
|
|
31
|
-
.emotion-
|
|
52
|
+
.emotion-6 {
|
|
32
53
|
color: #313d3e;
|
|
33
54
|
font-size: 14px;
|
|
34
55
|
}
|
|
35
56
|
|
|
36
|
-
.emotion-
|
|
57
|
+
.emotion-8 {
|
|
37
58
|
margin-top: 6px;
|
|
38
59
|
font-size: 13px;
|
|
39
60
|
line-height: 1;
|
|
@@ -43,7 +64,7 @@ exports[`EditorToolbar should render normal save button 1`] = `
|
|
|
43
64
|
color: #ff003b;
|
|
44
65
|
}
|
|
45
66
|
|
|
46
|
-
.emotion-
|
|
67
|
+
.emotion-10 {
|
|
47
68
|
height: 100%;
|
|
48
69
|
display: -webkit-box;
|
|
49
70
|
display: -webkit-flex;
|
|
@@ -67,7 +88,7 @@ exports[`EditorToolbar should render normal save button 1`] = `
|
|
|
67
88
|
padding: 0 10px;
|
|
68
89
|
}
|
|
69
90
|
|
|
70
|
-
.emotion-
|
|
91
|
+
.emotion-12 {
|
|
71
92
|
display: -webkit-box;
|
|
72
93
|
display: -webkit-flex;
|
|
73
94
|
display: -ms-flexbox;
|
|
@@ -78,7 +99,7 @@ exports[`EditorToolbar should render normal save button 1`] = `
|
|
|
78
99
|
align-items: center;
|
|
79
100
|
}
|
|
80
101
|
|
|
81
|
-
.emotion-
|
|
102
|
+
.emotion-15 {
|
|
82
103
|
position: relative;
|
|
83
104
|
font-size: 14px;
|
|
84
105
|
-webkit-user-select: none;
|
|
@@ -88,11 +109,11 @@ exports[`EditorToolbar should render normal save button 1`] = `
|
|
|
88
109
|
margin: 0 10px;
|
|
89
110
|
}
|
|
90
111
|
|
|
91
|
-
.emotion-
|
|
112
|
+
.emotion-15 .e1jeq5dr0 {
|
|
92
113
|
color: #17a2b8;
|
|
93
114
|
}
|
|
94
115
|
|
|
95
|
-
.emotion-
|
|
116
|
+
.emotion-17 {
|
|
96
117
|
border: 0;
|
|
97
118
|
border-radius: 5px;
|
|
98
119
|
cursor: pointer;
|
|
@@ -112,7 +133,7 @@ exports[`EditorToolbar should render normal save button 1`] = `
|
|
|
112
133
|
background-color: #17a2b8;
|
|
113
134
|
}
|
|
114
135
|
|
|
115
|
-
.emotion-
|
|
136
|
+
.emotion-17:after {
|
|
116
137
|
color: #fff;
|
|
117
138
|
width: 0;
|
|
118
139
|
height: 0;
|
|
@@ -129,12 +150,12 @@ exports[`EditorToolbar should render normal save button 1`] = `
|
|
|
129
150
|
}
|
|
130
151
|
|
|
131
152
|
@media (max-width: 1200px) {
|
|
132
|
-
.emotion-
|
|
153
|
+
.emotion-17 {
|
|
133
154
|
padding-left: 10px;
|
|
134
155
|
}
|
|
135
156
|
}
|
|
136
157
|
|
|
137
|
-
.emotion-
|
|
158
|
+
.emotion-19 {
|
|
138
159
|
border: 0;
|
|
139
160
|
border-radius: 5px;
|
|
140
161
|
cursor: pointer;
|
|
@@ -154,12 +175,12 @@ exports[`EditorToolbar should render normal save button 1`] = `
|
|
|
154
175
|
}
|
|
155
176
|
|
|
156
177
|
@media (max-width: 1200px) {
|
|
157
|
-
.emotion-
|
|
178
|
+
.emotion-19 {
|
|
158
179
|
padding: 0 10px;
|
|
159
180
|
}
|
|
160
181
|
}
|
|
161
182
|
|
|
162
|
-
.emotion-
|
|
183
|
+
.emotion-21 {
|
|
163
184
|
display: -webkit-box;
|
|
164
185
|
display: -webkit-flex;
|
|
165
186
|
display: -ms-flexbox;
|
|
@@ -174,7 +195,7 @@ exports[`EditorToolbar should render normal save button 1`] = `
|
|
|
174
195
|
justify-content: flex-end;
|
|
175
196
|
}
|
|
176
197
|
|
|
177
|
-
.emotion-
|
|
198
|
+
.emotion-23 {
|
|
178
199
|
height: 100%;
|
|
179
200
|
display: -webkit-box;
|
|
180
201
|
display: -webkit-flex;
|
|
@@ -193,41 +214,41 @@ exports[`EditorToolbar should render normal save button 1`] = `
|
|
|
193
214
|
class="emotion-0 emotion-1"
|
|
194
215
|
>
|
|
195
216
|
<mock-link
|
|
196
|
-
|
|
217
|
+
class="emotion-2 emotion-3"
|
|
197
218
|
to=""
|
|
198
219
|
>
|
|
199
220
|
<div
|
|
200
|
-
class="emotion-
|
|
221
|
+
class="emotion-4 emotion-5"
|
|
201
222
|
>
|
|
202
223
|
←
|
|
203
224
|
</div>
|
|
204
225
|
<div>
|
|
205
226
|
<div
|
|
206
|
-
class="emotion-
|
|
227
|
+
class="emotion-6 emotion-7"
|
|
207
228
|
>
|
|
208
229
|
editor.editorToolbar.backCollection
|
|
209
230
|
</div>
|
|
210
231
|
<div
|
|
211
|
-
class="emotion-
|
|
232
|
+
class="emotion-8 emotion-9"
|
|
212
233
|
>
|
|
213
234
|
editor.editorToolbar.unsavedChanges
|
|
214
235
|
</div>
|
|
215
236
|
</div>
|
|
216
237
|
</mock-link>
|
|
217
238
|
<div
|
|
218
|
-
class="emotion-
|
|
239
|
+
class="emotion-10 emotion-11"
|
|
219
240
|
>
|
|
220
241
|
<div
|
|
221
|
-
class="emotion-
|
|
242
|
+
class="emotion-12 emotion-13"
|
|
222
243
|
>
|
|
223
244
|
<div>
|
|
224
245
|
<div
|
|
225
|
-
class="emotion-
|
|
246
|
+
class="emotion-14 emotion-15 emotion-16"
|
|
226
247
|
>
|
|
227
248
|
<span
|
|
228
249
|
aria-expanded="false"
|
|
229
250
|
aria-haspopup="true"
|
|
230
|
-
class="emotion-
|
|
251
|
+
class="emotion-17 emotion-18"
|
|
231
252
|
role="button"
|
|
232
253
|
tabindex="0"
|
|
233
254
|
>
|
|
@@ -237,18 +258,18 @@ exports[`EditorToolbar should render normal save button 1`] = `
|
|
|
237
258
|
</div>
|
|
238
259
|
<div>
|
|
239
260
|
<button
|
|
240
|
-
class="emotion-
|
|
261
|
+
class="emotion-19 emotion-20"
|
|
241
262
|
>
|
|
242
263
|
editor.editorToolbar.deleteEntry
|
|
243
264
|
</button>
|
|
244
265
|
</div>
|
|
245
266
|
</div>
|
|
246
267
|
<div
|
|
247
|
-
class="emotion-
|
|
268
|
+
class="emotion-21 emotion-22"
|
|
248
269
|
/>
|
|
249
270
|
</div>
|
|
250
271
|
<div
|
|
251
|
-
class="emotion-
|
|
272
|
+
class="emotion-23 emotion-24"
|
|
252
273
|
>
|
|
253
274
|
<mock-settings-dropdown />
|
|
254
275
|
</div>
|
|
@@ -278,18 +299,39 @@ exports[`EditorToolbar should render normal save button 2`] = `
|
|
|
278
299
|
}
|
|
279
300
|
|
|
280
301
|
.emotion-2 {
|
|
302
|
+
height: 100%;
|
|
303
|
+
display: -webkit-box;
|
|
304
|
+
display: -webkit-flex;
|
|
305
|
+
display: -ms-flexbox;
|
|
306
|
+
display: flex;
|
|
307
|
+
-webkit-align-items: center;
|
|
308
|
+
-webkit-box-align: center;
|
|
309
|
+
-ms-flex-align: center;
|
|
310
|
+
align-items: center;
|
|
311
|
+
border: 0 solid #dfdfe3;
|
|
312
|
+
border-right-width: 1px;
|
|
313
|
+
font-weight: normal;
|
|
314
|
+
padding: 0 20px;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.emotion-2:hover,
|
|
318
|
+
.emotion-2:focus {
|
|
319
|
+
background-color: #f1f2f4;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
.emotion-4 {
|
|
281
323
|
color: #313d3e;
|
|
282
324
|
font-size: 21px;
|
|
283
325
|
font-weight: 600;
|
|
284
326
|
margin-right: 16px;
|
|
285
327
|
}
|
|
286
328
|
|
|
287
|
-
.emotion-
|
|
329
|
+
.emotion-6 {
|
|
288
330
|
color: #313d3e;
|
|
289
331
|
font-size: 14px;
|
|
290
332
|
}
|
|
291
333
|
|
|
292
|
-
.emotion-
|
|
334
|
+
.emotion-8 {
|
|
293
335
|
margin-top: 6px;
|
|
294
336
|
font-size: 13px;
|
|
295
337
|
line-height: 1;
|
|
@@ -299,7 +341,7 @@ exports[`EditorToolbar should render normal save button 2`] = `
|
|
|
299
341
|
color: #ff003b;
|
|
300
342
|
}
|
|
301
343
|
|
|
302
|
-
.emotion-
|
|
344
|
+
.emotion-10 {
|
|
303
345
|
height: 100%;
|
|
304
346
|
display: -webkit-box;
|
|
305
347
|
display: -webkit-flex;
|
|
@@ -323,7 +365,7 @@ exports[`EditorToolbar should render normal save button 2`] = `
|
|
|
323
365
|
padding: 0 10px;
|
|
324
366
|
}
|
|
325
367
|
|
|
326
|
-
.emotion-
|
|
368
|
+
.emotion-12 {
|
|
327
369
|
display: -webkit-box;
|
|
328
370
|
display: -webkit-flex;
|
|
329
371
|
display: -ms-flexbox;
|
|
@@ -334,7 +376,7 @@ exports[`EditorToolbar should render normal save button 2`] = `
|
|
|
334
376
|
align-items: center;
|
|
335
377
|
}
|
|
336
378
|
|
|
337
|
-
.emotion-
|
|
379
|
+
.emotion-15 {
|
|
338
380
|
position: relative;
|
|
339
381
|
font-size: 14px;
|
|
340
382
|
-webkit-user-select: none;
|
|
@@ -344,11 +386,11 @@ exports[`EditorToolbar should render normal save button 2`] = `
|
|
|
344
386
|
margin: 0 10px;
|
|
345
387
|
}
|
|
346
388
|
|
|
347
|
-
.emotion-
|
|
389
|
+
.emotion-15 .e1jeq5dr0 {
|
|
348
390
|
color: #17a2b8;
|
|
349
391
|
}
|
|
350
392
|
|
|
351
|
-
.emotion-
|
|
393
|
+
.emotion-17 {
|
|
352
394
|
border: 0;
|
|
353
395
|
border-radius: 5px;
|
|
354
396
|
cursor: pointer;
|
|
@@ -368,7 +410,7 @@ exports[`EditorToolbar should render normal save button 2`] = `
|
|
|
368
410
|
background-color: #17a2b8;
|
|
369
411
|
}
|
|
370
412
|
|
|
371
|
-
.emotion-
|
|
413
|
+
.emotion-17:after {
|
|
372
414
|
color: #fff;
|
|
373
415
|
width: 0;
|
|
374
416
|
height: 0;
|
|
@@ -385,12 +427,12 @@ exports[`EditorToolbar should render normal save button 2`] = `
|
|
|
385
427
|
}
|
|
386
428
|
|
|
387
429
|
@media (max-width: 1200px) {
|
|
388
|
-
.emotion-
|
|
430
|
+
.emotion-17 {
|
|
389
431
|
padding-left: 10px;
|
|
390
432
|
}
|
|
391
433
|
}
|
|
392
434
|
|
|
393
|
-
.emotion-
|
|
435
|
+
.emotion-19 {
|
|
394
436
|
border: 0;
|
|
395
437
|
border-radius: 5px;
|
|
396
438
|
cursor: pointer;
|
|
@@ -410,12 +452,12 @@ exports[`EditorToolbar should render normal save button 2`] = `
|
|
|
410
452
|
}
|
|
411
453
|
|
|
412
454
|
@media (max-width: 1200px) {
|
|
413
|
-
.emotion-
|
|
455
|
+
.emotion-19 {
|
|
414
456
|
padding: 0 10px;
|
|
415
457
|
}
|
|
416
458
|
}
|
|
417
459
|
|
|
418
|
-
.emotion-
|
|
460
|
+
.emotion-21 {
|
|
419
461
|
display: -webkit-box;
|
|
420
462
|
display: -webkit-flex;
|
|
421
463
|
display: -ms-flexbox;
|
|
@@ -430,7 +472,7 @@ exports[`EditorToolbar should render normal save button 2`] = `
|
|
|
430
472
|
justify-content: flex-end;
|
|
431
473
|
}
|
|
432
474
|
|
|
433
|
-
.emotion-
|
|
475
|
+
.emotion-23 {
|
|
434
476
|
height: 100%;
|
|
435
477
|
display: -webkit-box;
|
|
436
478
|
display: -webkit-flex;
|
|
@@ -449,41 +491,41 @@ exports[`EditorToolbar should render normal save button 2`] = `
|
|
|
449
491
|
class="emotion-0 emotion-1"
|
|
450
492
|
>
|
|
451
493
|
<mock-link
|
|
452
|
-
|
|
494
|
+
class="emotion-2 emotion-3"
|
|
453
495
|
to=""
|
|
454
496
|
>
|
|
455
497
|
<div
|
|
456
|
-
class="emotion-
|
|
498
|
+
class="emotion-4 emotion-5"
|
|
457
499
|
>
|
|
458
500
|
←
|
|
459
501
|
</div>
|
|
460
502
|
<div>
|
|
461
503
|
<div
|
|
462
|
-
class="emotion-
|
|
504
|
+
class="emotion-6 emotion-7"
|
|
463
505
|
>
|
|
464
506
|
editor.editorToolbar.backCollection
|
|
465
507
|
</div>
|
|
466
508
|
<div
|
|
467
|
-
class="emotion-
|
|
509
|
+
class="emotion-8 emotion-9"
|
|
468
510
|
>
|
|
469
511
|
editor.editorToolbar.unsavedChanges
|
|
470
512
|
</div>
|
|
471
513
|
</div>
|
|
472
514
|
</mock-link>
|
|
473
515
|
<div
|
|
474
|
-
class="emotion-
|
|
516
|
+
class="emotion-10 emotion-11"
|
|
475
517
|
>
|
|
476
518
|
<div
|
|
477
|
-
class="emotion-
|
|
519
|
+
class="emotion-12 emotion-13"
|
|
478
520
|
>
|
|
479
521
|
<div>
|
|
480
522
|
<div
|
|
481
|
-
class="emotion-
|
|
523
|
+
class="emotion-14 emotion-15 emotion-16"
|
|
482
524
|
>
|
|
483
525
|
<span
|
|
484
526
|
aria-expanded="false"
|
|
485
527
|
aria-haspopup="true"
|
|
486
|
-
class="emotion-
|
|
528
|
+
class="emotion-17 emotion-18"
|
|
487
529
|
role="button"
|
|
488
530
|
tabindex="0"
|
|
489
531
|
>
|
|
@@ -493,18 +535,18 @@ exports[`EditorToolbar should render normal save button 2`] = `
|
|
|
493
535
|
</div>
|
|
494
536
|
<div>
|
|
495
537
|
<button
|
|
496
|
-
class="emotion-
|
|
538
|
+
class="emotion-19 emotion-20"
|
|
497
539
|
>
|
|
498
540
|
editor.editorToolbar.deleteEntry
|
|
499
541
|
</button>
|
|
500
542
|
</div>
|
|
501
543
|
</div>
|
|
502
544
|
<div
|
|
503
|
-
class="emotion-
|
|
545
|
+
class="emotion-21 emotion-22"
|
|
504
546
|
/>
|
|
505
547
|
</div>
|
|
506
548
|
<div
|
|
507
|
-
class="emotion-
|
|
549
|
+
class="emotion-23 emotion-24"
|
|
508
550
|
>
|
|
509
551
|
<mock-settings-dropdown />
|
|
510
552
|
</div>
|
|
@@ -534,18 +576,39 @@ exports[`EditorToolbar should render with default props 1`] = `
|
|
|
534
576
|
}
|
|
535
577
|
|
|
536
578
|
.emotion-2 {
|
|
579
|
+
height: 100%;
|
|
580
|
+
display: -webkit-box;
|
|
581
|
+
display: -webkit-flex;
|
|
582
|
+
display: -ms-flexbox;
|
|
583
|
+
display: flex;
|
|
584
|
+
-webkit-align-items: center;
|
|
585
|
+
-webkit-box-align: center;
|
|
586
|
+
-ms-flex-align: center;
|
|
587
|
+
align-items: center;
|
|
588
|
+
border: 0 solid #dfdfe3;
|
|
589
|
+
border-right-width: 1px;
|
|
590
|
+
font-weight: normal;
|
|
591
|
+
padding: 0 20px;
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
.emotion-2:hover,
|
|
595
|
+
.emotion-2:focus {
|
|
596
|
+
background-color: #f1f2f4;
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
.emotion-4 {
|
|
537
600
|
color: #313d3e;
|
|
538
601
|
font-size: 21px;
|
|
539
602
|
font-weight: 600;
|
|
540
603
|
margin-right: 16px;
|
|
541
604
|
}
|
|
542
605
|
|
|
543
|
-
.emotion-
|
|
606
|
+
.emotion-6 {
|
|
544
607
|
color: #313d3e;
|
|
545
608
|
font-size: 14px;
|
|
546
609
|
}
|
|
547
610
|
|
|
548
|
-
.emotion-
|
|
611
|
+
.emotion-8 {
|
|
549
612
|
margin-top: 6px;
|
|
550
613
|
font-size: 13px;
|
|
551
614
|
line-height: 1;
|
|
@@ -555,7 +618,7 @@ exports[`EditorToolbar should render with default props 1`] = `
|
|
|
555
618
|
color: #005614;
|
|
556
619
|
}
|
|
557
620
|
|
|
558
|
-
.emotion-
|
|
621
|
+
.emotion-10 {
|
|
559
622
|
height: 100%;
|
|
560
623
|
display: -webkit-box;
|
|
561
624
|
display: -webkit-flex;
|
|
@@ -579,7 +642,7 @@ exports[`EditorToolbar should render with default props 1`] = `
|
|
|
579
642
|
padding: 0 10px;
|
|
580
643
|
}
|
|
581
644
|
|
|
582
|
-
.emotion-
|
|
645
|
+
.emotion-12 {
|
|
583
646
|
display: -webkit-box;
|
|
584
647
|
display: -webkit-flex;
|
|
585
648
|
display: -ms-flexbox;
|
|
@@ -590,7 +653,7 @@ exports[`EditorToolbar should render with default props 1`] = `
|
|
|
590
653
|
align-items: center;
|
|
591
654
|
}
|
|
592
655
|
|
|
593
|
-
.emotion-
|
|
656
|
+
.emotion-14 {
|
|
594
657
|
border: 0;
|
|
595
658
|
border-radius: 5px;
|
|
596
659
|
cursor: pointer;
|
|
@@ -610,12 +673,12 @@ exports[`EditorToolbar should render with default props 1`] = `
|
|
|
610
673
|
}
|
|
611
674
|
|
|
612
675
|
@media (max-width: 1200px) {
|
|
613
|
-
.emotion-
|
|
676
|
+
.emotion-14 {
|
|
614
677
|
padding: 0 10px;
|
|
615
678
|
}
|
|
616
679
|
}
|
|
617
680
|
|
|
618
|
-
.emotion-
|
|
681
|
+
.emotion-16 {
|
|
619
682
|
border: 0;
|
|
620
683
|
border-radius: 5px;
|
|
621
684
|
cursor: pointer;
|
|
@@ -635,12 +698,12 @@ exports[`EditorToolbar should render with default props 1`] = `
|
|
|
635
698
|
}
|
|
636
699
|
|
|
637
700
|
@media (max-width: 1200px) {
|
|
638
|
-
.emotion-
|
|
701
|
+
.emotion-16 {
|
|
639
702
|
padding: 0 10px;
|
|
640
703
|
}
|
|
641
704
|
}
|
|
642
705
|
|
|
643
|
-
.emotion-
|
|
706
|
+
.emotion-18 {
|
|
644
707
|
display: -webkit-box;
|
|
645
708
|
display: -webkit-flex;
|
|
646
709
|
display: -ms-flexbox;
|
|
@@ -655,7 +718,7 @@ exports[`EditorToolbar should render with default props 1`] = `
|
|
|
655
718
|
justify-content: flex-end;
|
|
656
719
|
}
|
|
657
720
|
|
|
658
|
-
.emotion-
|
|
721
|
+
.emotion-20 {
|
|
659
722
|
height: 100%;
|
|
660
723
|
display: -webkit-box;
|
|
661
724
|
display: -webkit-flex;
|
|
@@ -674,52 +737,52 @@ exports[`EditorToolbar should render with default props 1`] = `
|
|
|
674
737
|
class="emotion-0 emotion-1"
|
|
675
738
|
>
|
|
676
739
|
<mock-link
|
|
677
|
-
|
|
740
|
+
class="emotion-2 emotion-3"
|
|
678
741
|
to=""
|
|
679
742
|
>
|
|
680
743
|
<div
|
|
681
|
-
class="emotion-
|
|
744
|
+
class="emotion-4 emotion-5"
|
|
682
745
|
>
|
|
683
746
|
←
|
|
684
747
|
</div>
|
|
685
748
|
<div>
|
|
686
749
|
<div
|
|
687
|
-
class="emotion-
|
|
750
|
+
class="emotion-6 emotion-7"
|
|
688
751
|
>
|
|
689
752
|
editor.editorToolbar.backCollection
|
|
690
753
|
</div>
|
|
691
754
|
<div
|
|
692
|
-
class="emotion-
|
|
755
|
+
class="emotion-8 emotion-9"
|
|
693
756
|
>
|
|
694
757
|
editor.editorToolbar.changesSaved
|
|
695
758
|
</div>
|
|
696
759
|
</div>
|
|
697
760
|
</mock-link>
|
|
698
761
|
<div
|
|
699
|
-
class="emotion-
|
|
762
|
+
class="emotion-10 emotion-11"
|
|
700
763
|
>
|
|
701
764
|
<div
|
|
702
|
-
class="emotion-
|
|
765
|
+
class="emotion-12 emotion-13"
|
|
703
766
|
>
|
|
704
767
|
<button
|
|
705
|
-
class="emotion-
|
|
768
|
+
class="emotion-14 emotion-15"
|
|
706
769
|
>
|
|
707
770
|
editor.editorToolbar.published
|
|
708
771
|
</button>
|
|
709
772
|
<div>
|
|
710
773
|
<button
|
|
711
|
-
class="emotion-
|
|
774
|
+
class="emotion-16 emotion-17"
|
|
712
775
|
>
|
|
713
776
|
editor.editorToolbar.deleteEntry
|
|
714
777
|
</button>
|
|
715
778
|
</div>
|
|
716
779
|
</div>
|
|
717
780
|
<div
|
|
718
|
-
class="emotion-
|
|
781
|
+
class="emotion-18 emotion-19"
|
|
719
782
|
/>
|
|
720
783
|
</div>
|
|
721
784
|
<div
|
|
722
|
-
class="emotion-
|
|
785
|
+
class="emotion-20 emotion-21"
|
|
723
786
|
>
|
|
724
787
|
<mock-settings-dropdown />
|
|
725
788
|
</div>
|
|
@@ -749,18 +812,39 @@ exports[`EditorToolbar should render with status=draft,useOpenAuthoring=false 1`
|
|
|
749
812
|
}
|
|
750
813
|
|
|
751
814
|
.emotion-2 {
|
|
815
|
+
height: 100%;
|
|
816
|
+
display: -webkit-box;
|
|
817
|
+
display: -webkit-flex;
|
|
818
|
+
display: -ms-flexbox;
|
|
819
|
+
display: flex;
|
|
820
|
+
-webkit-align-items: center;
|
|
821
|
+
-webkit-box-align: center;
|
|
822
|
+
-ms-flex-align: center;
|
|
823
|
+
align-items: center;
|
|
824
|
+
border: 0 solid #dfdfe3;
|
|
825
|
+
border-right-width: 1px;
|
|
826
|
+
font-weight: normal;
|
|
827
|
+
padding: 0 20px;
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
.emotion-2:hover,
|
|
831
|
+
.emotion-2:focus {
|
|
832
|
+
background-color: #f1f2f4;
|
|
833
|
+
}
|
|
834
|
+
|
|
835
|
+
.emotion-4 {
|
|
752
836
|
color: #313d3e;
|
|
753
837
|
font-size: 21px;
|
|
754
838
|
font-weight: 600;
|
|
755
839
|
margin-right: 16px;
|
|
756
840
|
}
|
|
757
841
|
|
|
758
|
-
.emotion-
|
|
842
|
+
.emotion-6 {
|
|
759
843
|
color: #313d3e;
|
|
760
844
|
font-size: 14px;
|
|
761
845
|
}
|
|
762
846
|
|
|
763
|
-
.emotion-
|
|
847
|
+
.emotion-8 {
|
|
764
848
|
margin-top: 6px;
|
|
765
849
|
font-size: 13px;
|
|
766
850
|
line-height: 1;
|
|
@@ -770,7 +854,7 @@ exports[`EditorToolbar should render with status=draft,useOpenAuthoring=false 1`
|
|
|
770
854
|
color: #005614;
|
|
771
855
|
}
|
|
772
856
|
|
|
773
|
-
.emotion-
|
|
857
|
+
.emotion-10 {
|
|
774
858
|
height: 100%;
|
|
775
859
|
display: -webkit-box;
|
|
776
860
|
display: -webkit-flex;
|
|
@@ -794,7 +878,7 @@ exports[`EditorToolbar should render with status=draft,useOpenAuthoring=false 1`
|
|
|
794
878
|
padding: 0 10px;
|
|
795
879
|
}
|
|
796
880
|
|
|
797
|
-
.emotion-
|
|
881
|
+
.emotion-12 {
|
|
798
882
|
display: -webkit-box;
|
|
799
883
|
display: -webkit-flex;
|
|
800
884
|
display: -ms-flexbox;
|
|
@@ -805,7 +889,7 @@ exports[`EditorToolbar should render with status=draft,useOpenAuthoring=false 1`
|
|
|
805
889
|
align-items: center;
|
|
806
890
|
}
|
|
807
891
|
|
|
808
|
-
.emotion-
|
|
892
|
+
.emotion-14 {
|
|
809
893
|
border: 0;
|
|
810
894
|
border-radius: 5px;
|
|
811
895
|
cursor: pointer;
|
|
@@ -825,18 +909,18 @@ exports[`EditorToolbar should render with status=draft,useOpenAuthoring=false 1`
|
|
|
825
909
|
}
|
|
826
910
|
|
|
827
911
|
@media (max-width: 1200px) {
|
|
828
|
-
.emotion-
|
|
912
|
+
.emotion-14 {
|
|
829
913
|
padding: 0 10px;
|
|
830
914
|
}
|
|
831
915
|
}
|
|
832
916
|
|
|
833
|
-
.emotion-
|
|
917
|
+
.emotion-14[disabled] {
|
|
834
918
|
background-color: #eff0f4;
|
|
835
919
|
color: #798291;
|
|
836
920
|
cursor: default;
|
|
837
921
|
}
|
|
838
922
|
|
|
839
|
-
.emotion-
|
|
923
|
+
.emotion-17 {
|
|
840
924
|
position: relative;
|
|
841
925
|
font-size: 14px;
|
|
842
926
|
-webkit-user-select: none;
|
|
@@ -846,11 +930,11 @@ exports[`EditorToolbar should render with status=draft,useOpenAuthoring=false 1`
|
|
|
846
930
|
margin: 0 10px;
|
|
847
931
|
}
|
|
848
932
|
|
|
849
|
-
.emotion-
|
|
933
|
+
.emotion-17 .e1jeq5dr0 {
|
|
850
934
|
color: #17a2b8;
|
|
851
935
|
}
|
|
852
936
|
|
|
853
|
-
.emotion-
|
|
937
|
+
.emotion-19 {
|
|
854
938
|
border: 0;
|
|
855
939
|
border-radius: 5px;
|
|
856
940
|
cursor: pointer;
|
|
@@ -871,7 +955,7 @@ exports[`EditorToolbar should render with status=draft,useOpenAuthoring=false 1`
|
|
|
871
955
|
color: #17a2b8;
|
|
872
956
|
}
|
|
873
957
|
|
|
874
|
-
.emotion-
|
|
958
|
+
.emotion-19:after {
|
|
875
959
|
color: #fff;
|
|
876
960
|
width: 0;
|
|
877
961
|
height: 0;
|
|
@@ -888,12 +972,12 @@ exports[`EditorToolbar should render with status=draft,useOpenAuthoring=false 1`
|
|
|
888
972
|
}
|
|
889
973
|
|
|
890
974
|
@media (max-width: 1200px) {
|
|
891
|
-
.emotion-
|
|
975
|
+
.emotion-19 {
|
|
892
976
|
padding-left: 10px;
|
|
893
977
|
}
|
|
894
978
|
}
|
|
895
979
|
|
|
896
|
-
.emotion-
|
|
980
|
+
.emotion-21 {
|
|
897
981
|
border: 0;
|
|
898
982
|
border-radius: 5px;
|
|
899
983
|
cursor: pointer;
|
|
@@ -913,12 +997,12 @@ exports[`EditorToolbar should render with status=draft,useOpenAuthoring=false 1`
|
|
|
913
997
|
}
|
|
914
998
|
|
|
915
999
|
@media (max-width: 1200px) {
|
|
916
|
-
.emotion-
|
|
1000
|
+
.emotion-21 {
|
|
917
1001
|
padding: 0 10px;
|
|
918
1002
|
}
|
|
919
1003
|
}
|
|
920
1004
|
|
|
921
|
-
.emotion-
|
|
1005
|
+
.emotion-23 {
|
|
922
1006
|
display: -webkit-box;
|
|
923
1007
|
display: -webkit-flex;
|
|
924
1008
|
display: -ms-flexbox;
|
|
@@ -933,7 +1017,7 @@ exports[`EditorToolbar should render with status=draft,useOpenAuthoring=false 1`
|
|
|
933
1017
|
justify-content: flex-end;
|
|
934
1018
|
}
|
|
935
1019
|
|
|
936
|
-
.emotion-
|
|
1020
|
+
.emotion-25 {
|
|
937
1021
|
height: 100%;
|
|
938
1022
|
display: -webkit-box;
|
|
939
1023
|
display: -webkit-flex;
|
|
@@ -952,46 +1036,46 @@ exports[`EditorToolbar should render with status=draft,useOpenAuthoring=false 1`
|
|
|
952
1036
|
class="emotion-0 emotion-1"
|
|
953
1037
|
>
|
|
954
1038
|
<mock-link
|
|
955
|
-
|
|
1039
|
+
class="emotion-2 emotion-3"
|
|
956
1040
|
to=""
|
|
957
1041
|
>
|
|
958
1042
|
<div
|
|
959
|
-
class="emotion-
|
|
1043
|
+
class="emotion-4 emotion-5"
|
|
960
1044
|
>
|
|
961
1045
|
←
|
|
962
1046
|
</div>
|
|
963
1047
|
<div>
|
|
964
1048
|
<div
|
|
965
|
-
class="emotion-
|
|
1049
|
+
class="emotion-6 emotion-7"
|
|
966
1050
|
>
|
|
967
1051
|
editor.editorToolbar.backCollection
|
|
968
1052
|
</div>
|
|
969
1053
|
<div
|
|
970
|
-
class="emotion-
|
|
1054
|
+
class="emotion-8 emotion-9"
|
|
971
1055
|
>
|
|
972
1056
|
editor.editorToolbar.changesSaved
|
|
973
1057
|
</div>
|
|
974
1058
|
</div>
|
|
975
1059
|
</mock-link>
|
|
976
1060
|
<div
|
|
977
|
-
class="emotion-
|
|
1061
|
+
class="emotion-10 emotion-11"
|
|
978
1062
|
>
|
|
979
1063
|
<div
|
|
980
|
-
class="emotion-
|
|
1064
|
+
class="emotion-12 emotion-13"
|
|
981
1065
|
>
|
|
982
1066
|
<button
|
|
983
|
-
class="emotion-
|
|
1067
|
+
class="emotion-14 emotion-15"
|
|
984
1068
|
disabled=""
|
|
985
1069
|
>
|
|
986
1070
|
editor.editorToolbar.save
|
|
987
1071
|
</button>
|
|
988
1072
|
<div
|
|
989
|
-
class="emotion-
|
|
1073
|
+
class="emotion-16 emotion-17 emotion-18"
|
|
990
1074
|
>
|
|
991
1075
|
<span
|
|
992
1076
|
aria-expanded="false"
|
|
993
1077
|
aria-haspopup="true"
|
|
994
|
-
class="emotion-
|
|
1078
|
+
class="emotion-19 emotion-20"
|
|
995
1079
|
role="button"
|
|
996
1080
|
tabindex="0"
|
|
997
1081
|
>
|
|
@@ -999,17 +1083,17 @@ exports[`EditorToolbar should render with status=draft,useOpenAuthoring=false 1`
|
|
|
999
1083
|
</span>
|
|
1000
1084
|
</div>
|
|
1001
1085
|
<button
|
|
1002
|
-
class="emotion-
|
|
1086
|
+
class="emotion-21 emotion-22"
|
|
1003
1087
|
>
|
|
1004
1088
|
editor.editorToolbar.deletePublishedEntry
|
|
1005
1089
|
</button>
|
|
1006
1090
|
</div>
|
|
1007
1091
|
<div
|
|
1008
|
-
class="emotion-
|
|
1092
|
+
class="emotion-23 emotion-24"
|
|
1009
1093
|
/>
|
|
1010
1094
|
</div>
|
|
1011
1095
|
<div
|
|
1012
|
-
class="emotion-
|
|
1096
|
+
class="emotion-25 emotion-26"
|
|
1013
1097
|
>
|
|
1014
1098
|
<mock-settings-dropdown />
|
|
1015
1099
|
</div>
|
|
@@ -1039,18 +1123,39 @@ exports[`EditorToolbar should render with status=draft,useOpenAuthoring=true 1`]
|
|
|
1039
1123
|
}
|
|
1040
1124
|
|
|
1041
1125
|
.emotion-2 {
|
|
1126
|
+
height: 100%;
|
|
1127
|
+
display: -webkit-box;
|
|
1128
|
+
display: -webkit-flex;
|
|
1129
|
+
display: -ms-flexbox;
|
|
1130
|
+
display: flex;
|
|
1131
|
+
-webkit-align-items: center;
|
|
1132
|
+
-webkit-box-align: center;
|
|
1133
|
+
-ms-flex-align: center;
|
|
1134
|
+
align-items: center;
|
|
1135
|
+
border: 0 solid #dfdfe3;
|
|
1136
|
+
border-right-width: 1px;
|
|
1137
|
+
font-weight: normal;
|
|
1138
|
+
padding: 0 20px;
|
|
1139
|
+
}
|
|
1140
|
+
|
|
1141
|
+
.emotion-2:hover,
|
|
1142
|
+
.emotion-2:focus {
|
|
1143
|
+
background-color: #f1f2f4;
|
|
1144
|
+
}
|
|
1145
|
+
|
|
1146
|
+
.emotion-4 {
|
|
1042
1147
|
color: #313d3e;
|
|
1043
1148
|
font-size: 21px;
|
|
1044
1149
|
font-weight: 600;
|
|
1045
1150
|
margin-right: 16px;
|
|
1046
1151
|
}
|
|
1047
1152
|
|
|
1048
|
-
.emotion-
|
|
1153
|
+
.emotion-6 {
|
|
1049
1154
|
color: #313d3e;
|
|
1050
1155
|
font-size: 14px;
|
|
1051
1156
|
}
|
|
1052
1157
|
|
|
1053
|
-
.emotion-
|
|
1158
|
+
.emotion-8 {
|
|
1054
1159
|
margin-top: 6px;
|
|
1055
1160
|
font-size: 13px;
|
|
1056
1161
|
line-height: 1;
|
|
@@ -1060,7 +1165,7 @@ exports[`EditorToolbar should render with status=draft,useOpenAuthoring=true 1`]
|
|
|
1060
1165
|
color: #005614;
|
|
1061
1166
|
}
|
|
1062
1167
|
|
|
1063
|
-
.emotion-
|
|
1168
|
+
.emotion-10 {
|
|
1064
1169
|
height: 100%;
|
|
1065
1170
|
display: -webkit-box;
|
|
1066
1171
|
display: -webkit-flex;
|
|
@@ -1084,7 +1189,7 @@ exports[`EditorToolbar should render with status=draft,useOpenAuthoring=true 1`]
|
|
|
1084
1189
|
padding: 0 10px;
|
|
1085
1190
|
}
|
|
1086
1191
|
|
|
1087
|
-
.emotion-
|
|
1192
|
+
.emotion-12 {
|
|
1088
1193
|
display: -webkit-box;
|
|
1089
1194
|
display: -webkit-flex;
|
|
1090
1195
|
display: -ms-flexbox;
|
|
@@ -1095,7 +1200,7 @@ exports[`EditorToolbar should render with status=draft,useOpenAuthoring=true 1`]
|
|
|
1095
1200
|
align-items: center;
|
|
1096
1201
|
}
|
|
1097
1202
|
|
|
1098
|
-
.emotion-
|
|
1203
|
+
.emotion-14 {
|
|
1099
1204
|
border: 0;
|
|
1100
1205
|
border-radius: 5px;
|
|
1101
1206
|
cursor: pointer;
|
|
@@ -1115,18 +1220,18 @@ exports[`EditorToolbar should render with status=draft,useOpenAuthoring=true 1`]
|
|
|
1115
1220
|
}
|
|
1116
1221
|
|
|
1117
1222
|
@media (max-width: 1200px) {
|
|
1118
|
-
.emotion-
|
|
1223
|
+
.emotion-14 {
|
|
1119
1224
|
padding: 0 10px;
|
|
1120
1225
|
}
|
|
1121
1226
|
}
|
|
1122
1227
|
|
|
1123
|
-
.emotion-
|
|
1228
|
+
.emotion-14[disabled] {
|
|
1124
1229
|
background-color: #eff0f4;
|
|
1125
1230
|
color: #798291;
|
|
1126
1231
|
cursor: default;
|
|
1127
1232
|
}
|
|
1128
1233
|
|
|
1129
|
-
.emotion-
|
|
1234
|
+
.emotion-17 {
|
|
1130
1235
|
position: relative;
|
|
1131
1236
|
font-size: 14px;
|
|
1132
1237
|
-webkit-user-select: none;
|
|
@@ -1136,11 +1241,11 @@ exports[`EditorToolbar should render with status=draft,useOpenAuthoring=true 1`]
|
|
|
1136
1241
|
margin: 0 10px;
|
|
1137
1242
|
}
|
|
1138
1243
|
|
|
1139
|
-
.emotion-
|
|
1244
|
+
.emotion-17 .emotion-25 {
|
|
1140
1245
|
color: #17a2b8;
|
|
1141
1246
|
}
|
|
1142
1247
|
|
|
1143
|
-
.emotion-
|
|
1248
|
+
.emotion-19 {
|
|
1144
1249
|
border: 0;
|
|
1145
1250
|
border-radius: 5px;
|
|
1146
1251
|
cursor: pointer;
|
|
@@ -1161,7 +1266,7 @@ exports[`EditorToolbar should render with status=draft,useOpenAuthoring=true 1`]
|
|
|
1161
1266
|
color: #17a2b8;
|
|
1162
1267
|
}
|
|
1163
1268
|
|
|
1164
|
-
.emotion-
|
|
1269
|
+
.emotion-19:after {
|
|
1165
1270
|
color: #fff;
|
|
1166
1271
|
width: 0;
|
|
1167
1272
|
height: 0;
|
|
@@ -1178,26 +1283,26 @@ exports[`EditorToolbar should render with status=draft,useOpenAuthoring=true 1`]
|
|
|
1178
1283
|
}
|
|
1179
1284
|
|
|
1180
1285
|
@media (max-width: 1200px) {
|
|
1181
|
-
.emotion-
|
|
1286
|
+
.emotion-19 {
|
|
1182
1287
|
padding-left: 10px;
|
|
1183
1288
|
}
|
|
1184
1289
|
}
|
|
1185
1290
|
|
|
1186
|
-
.emotion-
|
|
1291
|
+
.emotion-21 {
|
|
1187
1292
|
position: relative;
|
|
1188
1293
|
}
|
|
1189
1294
|
|
|
1190
|
-
.emotion-
|
|
1295
|
+
.emotion-23 {
|
|
1191
1296
|
position: relative;
|
|
1192
1297
|
display: inline-block;
|
|
1193
1298
|
}
|
|
1194
1299
|
|
|
1195
|
-
.emotion-
|
|
1300
|
+
.emotion-23:hover+.emotion-29 {
|
|
1196
1301
|
visibility: visible;
|
|
1197
1302
|
opacity: 0.9;
|
|
1198
1303
|
}
|
|
1199
1304
|
|
|
1200
|
-
.emotion-
|
|
1305
|
+
.emotion-26 {
|
|
1201
1306
|
display: inline-block;
|
|
1202
1307
|
line-height: 0;
|
|
1203
1308
|
width: 18px;
|
|
@@ -1208,23 +1313,23 @@ exports[`EditorToolbar should render with status=draft,useOpenAuthoring=true 1`]
|
|
|
1208
1313
|
transform: rotate(0deg);
|
|
1209
1314
|
}
|
|
1210
1315
|
|
|
1211
|
-
.emotion-
|
|
1212
|
-
.emotion-
|
|
1213
|
-
.emotion-
|
|
1214
|
-
.emotion-
|
|
1316
|
+
.emotion-26 path:not(.no-fill),
|
|
1317
|
+
.emotion-26 circle:not(.no-fill),
|
|
1318
|
+
.emotion-26 polygon:not(.no-fill),
|
|
1319
|
+
.emotion-26 rect:not(.no-fill) {
|
|
1215
1320
|
fill: currentColor;
|
|
1216
1321
|
}
|
|
1217
1322
|
|
|
1218
|
-
.emotion-
|
|
1323
|
+
.emotion-26 path.clipped {
|
|
1219
1324
|
fill: transparent;
|
|
1220
1325
|
}
|
|
1221
1326
|
|
|
1222
|
-
.emotion-
|
|
1327
|
+
.emotion-26 svg {
|
|
1223
1328
|
width: 100%;
|
|
1224
1329
|
height: 100%;
|
|
1225
1330
|
}
|
|
1226
1331
|
|
|
1227
|
-
.emotion-
|
|
1332
|
+
.emotion-28 {
|
|
1228
1333
|
visibility: hidden;
|
|
1229
1334
|
width: 321px;
|
|
1230
1335
|
background-color: #555;
|
|
@@ -1242,7 +1347,7 @@ exports[`EditorToolbar should render with status=draft,useOpenAuthoring=true 1`]
|
|
|
1242
1347
|
transition: opacity 0.3s;
|
|
1243
1348
|
}
|
|
1244
1349
|
|
|
1245
|
-
.emotion-
|
|
1350
|
+
.emotion-30 {
|
|
1246
1351
|
display: -webkit-box;
|
|
1247
1352
|
display: -webkit-flex;
|
|
1248
1353
|
display: -ms-flexbox;
|
|
@@ -1257,7 +1362,7 @@ exports[`EditorToolbar should render with status=draft,useOpenAuthoring=true 1`]
|
|
|
1257
1362
|
justify-content: flex-end;
|
|
1258
1363
|
}
|
|
1259
1364
|
|
|
1260
|
-
.emotion-
|
|
1365
|
+
.emotion-32 {
|
|
1261
1366
|
height: 100%;
|
|
1262
1367
|
display: -webkit-box;
|
|
1263
1368
|
display: -webkit-flex;
|
|
@@ -1276,46 +1381,46 @@ exports[`EditorToolbar should render with status=draft,useOpenAuthoring=true 1`]
|
|
|
1276
1381
|
class="emotion-0 emotion-1"
|
|
1277
1382
|
>
|
|
1278
1383
|
<mock-link
|
|
1279
|
-
|
|
1384
|
+
class="emotion-2 emotion-3"
|
|
1280
1385
|
to=""
|
|
1281
1386
|
>
|
|
1282
1387
|
<div
|
|
1283
|
-
class="emotion-
|
|
1388
|
+
class="emotion-4 emotion-5"
|
|
1284
1389
|
>
|
|
1285
1390
|
←
|
|
1286
1391
|
</div>
|
|
1287
1392
|
<div>
|
|
1288
1393
|
<div
|
|
1289
|
-
class="emotion-
|
|
1394
|
+
class="emotion-6 emotion-7"
|
|
1290
1395
|
>
|
|
1291
1396
|
editor.editorToolbar.backCollection
|
|
1292
1397
|
</div>
|
|
1293
1398
|
<div
|
|
1294
|
-
class="emotion-
|
|
1399
|
+
class="emotion-8 emotion-9"
|
|
1295
1400
|
>
|
|
1296
1401
|
editor.editorToolbar.changesSaved
|
|
1297
1402
|
</div>
|
|
1298
1403
|
</div>
|
|
1299
1404
|
</mock-link>
|
|
1300
1405
|
<div
|
|
1301
|
-
class="emotion-
|
|
1406
|
+
class="emotion-10 emotion-11"
|
|
1302
1407
|
>
|
|
1303
1408
|
<div
|
|
1304
|
-
class="emotion-
|
|
1409
|
+
class="emotion-12 emotion-13"
|
|
1305
1410
|
>
|
|
1306
1411
|
<button
|
|
1307
|
-
class="emotion-
|
|
1412
|
+
class="emotion-14 emotion-15"
|
|
1308
1413
|
disabled=""
|
|
1309
1414
|
>
|
|
1310
1415
|
editor.editorToolbar.save
|
|
1311
1416
|
</button>
|
|
1312
1417
|
<div
|
|
1313
|
-
class="emotion-
|
|
1418
|
+
class="emotion-16 emotion-17 emotion-18"
|
|
1314
1419
|
>
|
|
1315
1420
|
<span
|
|
1316
1421
|
aria-expanded="false"
|
|
1317
1422
|
aria-haspopup="true"
|
|
1318
|
-
class="emotion-
|
|
1423
|
+
class="emotion-19 emotion-20"
|
|
1319
1424
|
role="button"
|
|
1320
1425
|
tabindex="0"
|
|
1321
1426
|
>
|
|
@@ -1323,13 +1428,13 @@ exports[`EditorToolbar should render with status=draft,useOpenAuthoring=true 1`]
|
|
|
1323
1428
|
</span>
|
|
1324
1429
|
</div>
|
|
1325
1430
|
<div
|
|
1326
|
-
class="emotion-
|
|
1431
|
+
class="emotion-21 emotion-22"
|
|
1327
1432
|
>
|
|
1328
1433
|
<div
|
|
1329
|
-
class="emotion-
|
|
1434
|
+
class="emotion-23 emotion-24"
|
|
1330
1435
|
>
|
|
1331
1436
|
<span
|
|
1332
|
-
class="tooltip emotion-
|
|
1437
|
+
class="tooltip emotion-25 emotion-26 emotion-27"
|
|
1333
1438
|
>
|
|
1334
1439
|
<svg
|
|
1335
1440
|
class="bi bi-info-circle"
|
|
@@ -1349,18 +1454,18 @@ exports[`EditorToolbar should render with status=draft,useOpenAuthoring=true 1`]
|
|
|
1349
1454
|
</span>
|
|
1350
1455
|
</div>
|
|
1351
1456
|
<div
|
|
1352
|
-
class="emotion-
|
|
1457
|
+
class="emotion-28 emotion-29"
|
|
1353
1458
|
>
|
|
1354
1459
|
editor.editorToolbar.statusInfoTooltipDraft
|
|
1355
1460
|
</div>
|
|
1356
1461
|
</div>
|
|
1357
1462
|
</div>
|
|
1358
1463
|
<div
|
|
1359
|
-
class="emotion-
|
|
1464
|
+
class="emotion-30 emotion-31"
|
|
1360
1465
|
/>
|
|
1361
1466
|
</div>
|
|
1362
1467
|
<div
|
|
1363
|
-
class="emotion-
|
|
1468
|
+
class="emotion-32 emotion-33"
|
|
1364
1469
|
>
|
|
1365
1470
|
<mock-settings-dropdown />
|
|
1366
1471
|
</div>
|
|
@@ -1390,18 +1495,39 @@ exports[`EditorToolbar should render with status=pending_publish,useOpenAuthorin
|
|
|
1390
1495
|
}
|
|
1391
1496
|
|
|
1392
1497
|
.emotion-2 {
|
|
1498
|
+
height: 100%;
|
|
1499
|
+
display: -webkit-box;
|
|
1500
|
+
display: -webkit-flex;
|
|
1501
|
+
display: -ms-flexbox;
|
|
1502
|
+
display: flex;
|
|
1503
|
+
-webkit-align-items: center;
|
|
1504
|
+
-webkit-box-align: center;
|
|
1505
|
+
-ms-flex-align: center;
|
|
1506
|
+
align-items: center;
|
|
1507
|
+
border: 0 solid #dfdfe3;
|
|
1508
|
+
border-right-width: 1px;
|
|
1509
|
+
font-weight: normal;
|
|
1510
|
+
padding: 0 20px;
|
|
1511
|
+
}
|
|
1512
|
+
|
|
1513
|
+
.emotion-2:hover,
|
|
1514
|
+
.emotion-2:focus {
|
|
1515
|
+
background-color: #f1f2f4;
|
|
1516
|
+
}
|
|
1517
|
+
|
|
1518
|
+
.emotion-4 {
|
|
1393
1519
|
color: #313d3e;
|
|
1394
1520
|
font-size: 21px;
|
|
1395
1521
|
font-weight: 600;
|
|
1396
1522
|
margin-right: 16px;
|
|
1397
1523
|
}
|
|
1398
1524
|
|
|
1399
|
-
.emotion-
|
|
1525
|
+
.emotion-6 {
|
|
1400
1526
|
color: #313d3e;
|
|
1401
1527
|
font-size: 14px;
|
|
1402
1528
|
}
|
|
1403
1529
|
|
|
1404
|
-
.emotion-
|
|
1530
|
+
.emotion-8 {
|
|
1405
1531
|
margin-top: 6px;
|
|
1406
1532
|
font-size: 13px;
|
|
1407
1533
|
line-height: 1;
|
|
@@ -1411,7 +1537,7 @@ exports[`EditorToolbar should render with status=pending_publish,useOpenAuthorin
|
|
|
1411
1537
|
color: #005614;
|
|
1412
1538
|
}
|
|
1413
1539
|
|
|
1414
|
-
.emotion-
|
|
1540
|
+
.emotion-10 {
|
|
1415
1541
|
height: 100%;
|
|
1416
1542
|
display: -webkit-box;
|
|
1417
1543
|
display: -webkit-flex;
|
|
@@ -1435,7 +1561,7 @@ exports[`EditorToolbar should render with status=pending_publish,useOpenAuthorin
|
|
|
1435
1561
|
padding: 0 10px;
|
|
1436
1562
|
}
|
|
1437
1563
|
|
|
1438
|
-
.emotion-
|
|
1564
|
+
.emotion-12 {
|
|
1439
1565
|
display: -webkit-box;
|
|
1440
1566
|
display: -webkit-flex;
|
|
1441
1567
|
display: -ms-flexbox;
|
|
@@ -1446,7 +1572,7 @@ exports[`EditorToolbar should render with status=pending_publish,useOpenAuthorin
|
|
|
1446
1572
|
align-items: center;
|
|
1447
1573
|
}
|
|
1448
1574
|
|
|
1449
|
-
.emotion-
|
|
1575
|
+
.emotion-14 {
|
|
1450
1576
|
border: 0;
|
|
1451
1577
|
border-radius: 5px;
|
|
1452
1578
|
cursor: pointer;
|
|
@@ -1466,18 +1592,18 @@ exports[`EditorToolbar should render with status=pending_publish,useOpenAuthorin
|
|
|
1466
1592
|
}
|
|
1467
1593
|
|
|
1468
1594
|
@media (max-width: 1200px) {
|
|
1469
|
-
.emotion-
|
|
1595
|
+
.emotion-14 {
|
|
1470
1596
|
padding: 0 10px;
|
|
1471
1597
|
}
|
|
1472
1598
|
}
|
|
1473
1599
|
|
|
1474
|
-
.emotion-
|
|
1600
|
+
.emotion-14[disabled] {
|
|
1475
1601
|
background-color: #eff0f4;
|
|
1476
1602
|
color: #798291;
|
|
1477
1603
|
cursor: default;
|
|
1478
1604
|
}
|
|
1479
1605
|
|
|
1480
|
-
.emotion-
|
|
1606
|
+
.emotion-17 {
|
|
1481
1607
|
position: relative;
|
|
1482
1608
|
font-size: 14px;
|
|
1483
1609
|
-webkit-user-select: none;
|
|
@@ -1487,11 +1613,11 @@ exports[`EditorToolbar should render with status=pending_publish,useOpenAuthorin
|
|
|
1487
1613
|
margin: 0 10px;
|
|
1488
1614
|
}
|
|
1489
1615
|
|
|
1490
|
-
.emotion-
|
|
1616
|
+
.emotion-17 .e1jeq5dr0 {
|
|
1491
1617
|
color: #17a2b8;
|
|
1492
1618
|
}
|
|
1493
1619
|
|
|
1494
|
-
.emotion-
|
|
1620
|
+
.emotion-19 {
|
|
1495
1621
|
border: 0;
|
|
1496
1622
|
border-radius: 5px;
|
|
1497
1623
|
cursor: pointer;
|
|
@@ -1512,7 +1638,7 @@ exports[`EditorToolbar should render with status=pending_publish,useOpenAuthorin
|
|
|
1512
1638
|
color: #17a2b8;
|
|
1513
1639
|
}
|
|
1514
1640
|
|
|
1515
|
-
.emotion-
|
|
1641
|
+
.emotion-19:after {
|
|
1516
1642
|
color: #fff;
|
|
1517
1643
|
width: 0;
|
|
1518
1644
|
height: 0;
|
|
@@ -1529,12 +1655,12 @@ exports[`EditorToolbar should render with status=pending_publish,useOpenAuthorin
|
|
|
1529
1655
|
}
|
|
1530
1656
|
|
|
1531
1657
|
@media (max-width: 1200px) {
|
|
1532
|
-
.emotion-
|
|
1658
|
+
.emotion-19 {
|
|
1533
1659
|
padding-left: 10px;
|
|
1534
1660
|
}
|
|
1535
1661
|
}
|
|
1536
1662
|
|
|
1537
|
-
.emotion-
|
|
1663
|
+
.emotion-21 {
|
|
1538
1664
|
border: 0;
|
|
1539
1665
|
border-radius: 5px;
|
|
1540
1666
|
cursor: pointer;
|
|
@@ -1554,12 +1680,12 @@ exports[`EditorToolbar should render with status=pending_publish,useOpenAuthorin
|
|
|
1554
1680
|
}
|
|
1555
1681
|
|
|
1556
1682
|
@media (max-width: 1200px) {
|
|
1557
|
-
.emotion-
|
|
1683
|
+
.emotion-21 {
|
|
1558
1684
|
padding: 0 10px;
|
|
1559
1685
|
}
|
|
1560
1686
|
}
|
|
1561
1687
|
|
|
1562
|
-
.emotion-
|
|
1688
|
+
.emotion-23 {
|
|
1563
1689
|
display: -webkit-box;
|
|
1564
1690
|
display: -webkit-flex;
|
|
1565
1691
|
display: -ms-flexbox;
|
|
@@ -1574,7 +1700,7 @@ exports[`EditorToolbar should render with status=pending_publish,useOpenAuthorin
|
|
|
1574
1700
|
justify-content: flex-end;
|
|
1575
1701
|
}
|
|
1576
1702
|
|
|
1577
|
-
.emotion-
|
|
1703
|
+
.emotion-25 {
|
|
1578
1704
|
height: 100%;
|
|
1579
1705
|
display: -webkit-box;
|
|
1580
1706
|
display: -webkit-flex;
|
|
@@ -1593,46 +1719,46 @@ exports[`EditorToolbar should render with status=pending_publish,useOpenAuthorin
|
|
|
1593
1719
|
class="emotion-0 emotion-1"
|
|
1594
1720
|
>
|
|
1595
1721
|
<mock-link
|
|
1596
|
-
|
|
1722
|
+
class="emotion-2 emotion-3"
|
|
1597
1723
|
to=""
|
|
1598
1724
|
>
|
|
1599
1725
|
<div
|
|
1600
|
-
class="emotion-
|
|
1726
|
+
class="emotion-4 emotion-5"
|
|
1601
1727
|
>
|
|
1602
1728
|
←
|
|
1603
1729
|
</div>
|
|
1604
1730
|
<div>
|
|
1605
1731
|
<div
|
|
1606
|
-
class="emotion-
|
|
1732
|
+
class="emotion-6 emotion-7"
|
|
1607
1733
|
>
|
|
1608
1734
|
editor.editorToolbar.backCollection
|
|
1609
1735
|
</div>
|
|
1610
1736
|
<div
|
|
1611
|
-
class="emotion-
|
|
1737
|
+
class="emotion-8 emotion-9"
|
|
1612
1738
|
>
|
|
1613
1739
|
editor.editorToolbar.changesSaved
|
|
1614
1740
|
</div>
|
|
1615
1741
|
</div>
|
|
1616
1742
|
</mock-link>
|
|
1617
1743
|
<div
|
|
1618
|
-
class="emotion-
|
|
1744
|
+
class="emotion-10 emotion-11"
|
|
1619
1745
|
>
|
|
1620
1746
|
<div
|
|
1621
|
-
class="emotion-
|
|
1747
|
+
class="emotion-12 emotion-13"
|
|
1622
1748
|
>
|
|
1623
1749
|
<button
|
|
1624
|
-
class="emotion-
|
|
1750
|
+
class="emotion-14 emotion-15"
|
|
1625
1751
|
disabled=""
|
|
1626
1752
|
>
|
|
1627
1753
|
editor.editorToolbar.save
|
|
1628
1754
|
</button>
|
|
1629
1755
|
<div
|
|
1630
|
-
class="emotion-
|
|
1756
|
+
class="emotion-16 emotion-17 emotion-18"
|
|
1631
1757
|
>
|
|
1632
1758
|
<span
|
|
1633
1759
|
aria-expanded="false"
|
|
1634
1760
|
aria-haspopup="true"
|
|
1635
|
-
class="emotion-
|
|
1761
|
+
class="emotion-19 emotion-20"
|
|
1636
1762
|
role="button"
|
|
1637
1763
|
tabindex="0"
|
|
1638
1764
|
>
|
|
@@ -1640,17 +1766,17 @@ exports[`EditorToolbar should render with status=pending_publish,useOpenAuthorin
|
|
|
1640
1766
|
</span>
|
|
1641
1767
|
</div>
|
|
1642
1768
|
<button
|
|
1643
|
-
class="emotion-
|
|
1769
|
+
class="emotion-21 emotion-22"
|
|
1644
1770
|
>
|
|
1645
1771
|
editor.editorToolbar.deletePublishedEntry
|
|
1646
1772
|
</button>
|
|
1647
1773
|
</div>
|
|
1648
1774
|
<div
|
|
1649
|
-
class="emotion-
|
|
1775
|
+
class="emotion-23 emotion-24"
|
|
1650
1776
|
/>
|
|
1651
1777
|
</div>
|
|
1652
1778
|
<div
|
|
1653
|
-
class="emotion-
|
|
1779
|
+
class="emotion-25 emotion-26"
|
|
1654
1780
|
>
|
|
1655
1781
|
<mock-settings-dropdown />
|
|
1656
1782
|
</div>
|
|
@@ -1680,18 +1806,39 @@ exports[`EditorToolbar should render with status=pending_publish,useOpenAuthorin
|
|
|
1680
1806
|
}
|
|
1681
1807
|
|
|
1682
1808
|
.emotion-2 {
|
|
1809
|
+
height: 100%;
|
|
1810
|
+
display: -webkit-box;
|
|
1811
|
+
display: -webkit-flex;
|
|
1812
|
+
display: -ms-flexbox;
|
|
1813
|
+
display: flex;
|
|
1814
|
+
-webkit-align-items: center;
|
|
1815
|
+
-webkit-box-align: center;
|
|
1816
|
+
-ms-flex-align: center;
|
|
1817
|
+
align-items: center;
|
|
1818
|
+
border: 0 solid #dfdfe3;
|
|
1819
|
+
border-right-width: 1px;
|
|
1820
|
+
font-weight: normal;
|
|
1821
|
+
padding: 0 20px;
|
|
1822
|
+
}
|
|
1823
|
+
|
|
1824
|
+
.emotion-2:hover,
|
|
1825
|
+
.emotion-2:focus {
|
|
1826
|
+
background-color: #f1f2f4;
|
|
1827
|
+
}
|
|
1828
|
+
|
|
1829
|
+
.emotion-4 {
|
|
1683
1830
|
color: #313d3e;
|
|
1684
1831
|
font-size: 21px;
|
|
1685
1832
|
font-weight: 600;
|
|
1686
1833
|
margin-right: 16px;
|
|
1687
1834
|
}
|
|
1688
1835
|
|
|
1689
|
-
.emotion-
|
|
1836
|
+
.emotion-6 {
|
|
1690
1837
|
color: #313d3e;
|
|
1691
1838
|
font-size: 14px;
|
|
1692
1839
|
}
|
|
1693
1840
|
|
|
1694
|
-
.emotion-
|
|
1841
|
+
.emotion-8 {
|
|
1695
1842
|
margin-top: 6px;
|
|
1696
1843
|
font-size: 13px;
|
|
1697
1844
|
line-height: 1;
|
|
@@ -1701,7 +1848,7 @@ exports[`EditorToolbar should render with status=pending_publish,useOpenAuthorin
|
|
|
1701
1848
|
color: #005614;
|
|
1702
1849
|
}
|
|
1703
1850
|
|
|
1704
|
-
.emotion-
|
|
1851
|
+
.emotion-10 {
|
|
1705
1852
|
height: 100%;
|
|
1706
1853
|
display: -webkit-box;
|
|
1707
1854
|
display: -webkit-flex;
|
|
@@ -1725,7 +1872,7 @@ exports[`EditorToolbar should render with status=pending_publish,useOpenAuthorin
|
|
|
1725
1872
|
padding: 0 10px;
|
|
1726
1873
|
}
|
|
1727
1874
|
|
|
1728
|
-
.emotion-
|
|
1875
|
+
.emotion-12 {
|
|
1729
1876
|
display: -webkit-box;
|
|
1730
1877
|
display: -webkit-flex;
|
|
1731
1878
|
display: -ms-flexbox;
|
|
@@ -1736,7 +1883,7 @@ exports[`EditorToolbar should render with status=pending_publish,useOpenAuthorin
|
|
|
1736
1883
|
align-items: center;
|
|
1737
1884
|
}
|
|
1738
1885
|
|
|
1739
|
-
.emotion-
|
|
1886
|
+
.emotion-14 {
|
|
1740
1887
|
border: 0;
|
|
1741
1888
|
border-radius: 5px;
|
|
1742
1889
|
cursor: pointer;
|
|
@@ -1756,18 +1903,18 @@ exports[`EditorToolbar should render with status=pending_publish,useOpenAuthorin
|
|
|
1756
1903
|
}
|
|
1757
1904
|
|
|
1758
1905
|
@media (max-width: 1200px) {
|
|
1759
|
-
.emotion-
|
|
1906
|
+
.emotion-14 {
|
|
1760
1907
|
padding: 0 10px;
|
|
1761
1908
|
}
|
|
1762
1909
|
}
|
|
1763
1910
|
|
|
1764
|
-
.emotion-
|
|
1911
|
+
.emotion-14[disabled] {
|
|
1765
1912
|
background-color: #eff0f4;
|
|
1766
1913
|
color: #798291;
|
|
1767
1914
|
cursor: default;
|
|
1768
1915
|
}
|
|
1769
1916
|
|
|
1770
|
-
.emotion-
|
|
1917
|
+
.emotion-17 {
|
|
1771
1918
|
position: relative;
|
|
1772
1919
|
font-size: 14px;
|
|
1773
1920
|
-webkit-user-select: none;
|
|
@@ -1777,11 +1924,11 @@ exports[`EditorToolbar should render with status=pending_publish,useOpenAuthorin
|
|
|
1777
1924
|
margin: 0 10px;
|
|
1778
1925
|
}
|
|
1779
1926
|
|
|
1780
|
-
.emotion-
|
|
1927
|
+
.emotion-17 .emotion-25 {
|
|
1781
1928
|
color: #17a2b8;
|
|
1782
1929
|
}
|
|
1783
1930
|
|
|
1784
|
-
.emotion-
|
|
1931
|
+
.emotion-19 {
|
|
1785
1932
|
border: 0;
|
|
1786
1933
|
border-radius: 5px;
|
|
1787
1934
|
cursor: pointer;
|
|
@@ -1802,7 +1949,7 @@ exports[`EditorToolbar should render with status=pending_publish,useOpenAuthorin
|
|
|
1802
1949
|
color: #17a2b8;
|
|
1803
1950
|
}
|
|
1804
1951
|
|
|
1805
|
-
.emotion-
|
|
1952
|
+
.emotion-19:after {
|
|
1806
1953
|
color: #fff;
|
|
1807
1954
|
width: 0;
|
|
1808
1955
|
height: 0;
|
|
@@ -1819,26 +1966,26 @@ exports[`EditorToolbar should render with status=pending_publish,useOpenAuthorin
|
|
|
1819
1966
|
}
|
|
1820
1967
|
|
|
1821
1968
|
@media (max-width: 1200px) {
|
|
1822
|
-
.emotion-
|
|
1969
|
+
.emotion-19 {
|
|
1823
1970
|
padding-left: 10px;
|
|
1824
1971
|
}
|
|
1825
1972
|
}
|
|
1826
1973
|
|
|
1827
|
-
.emotion-
|
|
1974
|
+
.emotion-21 {
|
|
1828
1975
|
position: relative;
|
|
1829
1976
|
}
|
|
1830
1977
|
|
|
1831
|
-
.emotion-
|
|
1978
|
+
.emotion-23 {
|
|
1832
1979
|
position: relative;
|
|
1833
1980
|
display: inline-block;
|
|
1834
1981
|
}
|
|
1835
1982
|
|
|
1836
|
-
.emotion-
|
|
1983
|
+
.emotion-23:hover+.e1d2l9mo26 {
|
|
1837
1984
|
visibility: visible;
|
|
1838
1985
|
opacity: 0.9;
|
|
1839
1986
|
}
|
|
1840
1987
|
|
|
1841
|
-
.emotion-
|
|
1988
|
+
.emotion-26 {
|
|
1842
1989
|
display: inline-block;
|
|
1843
1990
|
line-height: 0;
|
|
1844
1991
|
width: 18px;
|
|
@@ -1849,23 +1996,23 @@ exports[`EditorToolbar should render with status=pending_publish,useOpenAuthorin
|
|
|
1849
1996
|
transform: rotate(0deg);
|
|
1850
1997
|
}
|
|
1851
1998
|
|
|
1852
|
-
.emotion-
|
|
1853
|
-
.emotion-
|
|
1854
|
-
.emotion-
|
|
1855
|
-
.emotion-
|
|
1999
|
+
.emotion-26 path:not(.no-fill),
|
|
2000
|
+
.emotion-26 circle:not(.no-fill),
|
|
2001
|
+
.emotion-26 polygon:not(.no-fill),
|
|
2002
|
+
.emotion-26 rect:not(.no-fill) {
|
|
1856
2003
|
fill: currentColor;
|
|
1857
2004
|
}
|
|
1858
2005
|
|
|
1859
|
-
.emotion-
|
|
2006
|
+
.emotion-26 path.clipped {
|
|
1860
2007
|
fill: transparent;
|
|
1861
2008
|
}
|
|
1862
2009
|
|
|
1863
|
-
.emotion-
|
|
2010
|
+
.emotion-26 svg {
|
|
1864
2011
|
width: 100%;
|
|
1865
2012
|
height: 100%;
|
|
1866
2013
|
}
|
|
1867
2014
|
|
|
1868
|
-
.emotion-
|
|
2015
|
+
.emotion-28 {
|
|
1869
2016
|
display: -webkit-box;
|
|
1870
2017
|
display: -webkit-flex;
|
|
1871
2018
|
display: -ms-flexbox;
|
|
@@ -1880,7 +2027,7 @@ exports[`EditorToolbar should render with status=pending_publish,useOpenAuthorin
|
|
|
1880
2027
|
justify-content: flex-end;
|
|
1881
2028
|
}
|
|
1882
2029
|
|
|
1883
|
-
.emotion-
|
|
2030
|
+
.emotion-30 {
|
|
1884
2031
|
height: 100%;
|
|
1885
2032
|
display: -webkit-box;
|
|
1886
2033
|
display: -webkit-flex;
|
|
@@ -1899,46 +2046,46 @@ exports[`EditorToolbar should render with status=pending_publish,useOpenAuthorin
|
|
|
1899
2046
|
class="emotion-0 emotion-1"
|
|
1900
2047
|
>
|
|
1901
2048
|
<mock-link
|
|
1902
|
-
|
|
2049
|
+
class="emotion-2 emotion-3"
|
|
1903
2050
|
to=""
|
|
1904
2051
|
>
|
|
1905
2052
|
<div
|
|
1906
|
-
class="emotion-
|
|
2053
|
+
class="emotion-4 emotion-5"
|
|
1907
2054
|
>
|
|
1908
2055
|
←
|
|
1909
2056
|
</div>
|
|
1910
2057
|
<div>
|
|
1911
2058
|
<div
|
|
1912
|
-
class="emotion-
|
|
2059
|
+
class="emotion-6 emotion-7"
|
|
1913
2060
|
>
|
|
1914
2061
|
editor.editorToolbar.backCollection
|
|
1915
2062
|
</div>
|
|
1916
2063
|
<div
|
|
1917
|
-
class="emotion-
|
|
2064
|
+
class="emotion-8 emotion-9"
|
|
1918
2065
|
>
|
|
1919
2066
|
editor.editorToolbar.changesSaved
|
|
1920
2067
|
</div>
|
|
1921
2068
|
</div>
|
|
1922
2069
|
</mock-link>
|
|
1923
2070
|
<div
|
|
1924
|
-
class="emotion-
|
|
2071
|
+
class="emotion-10 emotion-11"
|
|
1925
2072
|
>
|
|
1926
2073
|
<div
|
|
1927
|
-
class="emotion-
|
|
2074
|
+
class="emotion-12 emotion-13"
|
|
1928
2075
|
>
|
|
1929
2076
|
<button
|
|
1930
|
-
class="emotion-
|
|
2077
|
+
class="emotion-14 emotion-15"
|
|
1931
2078
|
disabled=""
|
|
1932
2079
|
>
|
|
1933
2080
|
editor.editorToolbar.save
|
|
1934
2081
|
</button>
|
|
1935
2082
|
<div
|
|
1936
|
-
class="emotion-
|
|
2083
|
+
class="emotion-16 emotion-17 emotion-18"
|
|
1937
2084
|
>
|
|
1938
2085
|
<span
|
|
1939
2086
|
aria-expanded="false"
|
|
1940
2087
|
aria-haspopup="true"
|
|
1941
|
-
class="emotion-
|
|
2088
|
+
class="emotion-19 emotion-20"
|
|
1942
2089
|
role="button"
|
|
1943
2090
|
tabindex="0"
|
|
1944
2091
|
>
|
|
@@ -1946,13 +2093,13 @@ exports[`EditorToolbar should render with status=pending_publish,useOpenAuthorin
|
|
|
1946
2093
|
</span>
|
|
1947
2094
|
</div>
|
|
1948
2095
|
<div
|
|
1949
|
-
class="emotion-
|
|
2096
|
+
class="emotion-21 emotion-22"
|
|
1950
2097
|
>
|
|
1951
2098
|
<div
|
|
1952
|
-
class="emotion-
|
|
2099
|
+
class="emotion-23 emotion-24"
|
|
1953
2100
|
>
|
|
1954
2101
|
<span
|
|
1955
|
-
class="tooltip emotion-
|
|
2102
|
+
class="tooltip emotion-25 emotion-26 emotion-27"
|
|
1956
2103
|
>
|
|
1957
2104
|
<svg
|
|
1958
2105
|
class="bi bi-info-circle"
|
|
@@ -1974,11 +2121,11 @@ exports[`EditorToolbar should render with status=pending_publish,useOpenAuthorin
|
|
|
1974
2121
|
</div>
|
|
1975
2122
|
</div>
|
|
1976
2123
|
<div
|
|
1977
|
-
class="emotion-
|
|
2124
|
+
class="emotion-28 emotion-29"
|
|
1978
2125
|
/>
|
|
1979
2126
|
</div>
|
|
1980
2127
|
<div
|
|
1981
|
-
class="emotion-
|
|
2128
|
+
class="emotion-30 emotion-31"
|
|
1982
2129
|
>
|
|
1983
2130
|
<mock-settings-dropdown />
|
|
1984
2131
|
</div>
|
|
@@ -2008,18 +2155,39 @@ exports[`EditorToolbar should render with status=pending_review,useOpenAuthoring
|
|
|
2008
2155
|
}
|
|
2009
2156
|
|
|
2010
2157
|
.emotion-2 {
|
|
2158
|
+
height: 100%;
|
|
2159
|
+
display: -webkit-box;
|
|
2160
|
+
display: -webkit-flex;
|
|
2161
|
+
display: -ms-flexbox;
|
|
2162
|
+
display: flex;
|
|
2163
|
+
-webkit-align-items: center;
|
|
2164
|
+
-webkit-box-align: center;
|
|
2165
|
+
-ms-flex-align: center;
|
|
2166
|
+
align-items: center;
|
|
2167
|
+
border: 0 solid #dfdfe3;
|
|
2168
|
+
border-right-width: 1px;
|
|
2169
|
+
font-weight: normal;
|
|
2170
|
+
padding: 0 20px;
|
|
2171
|
+
}
|
|
2172
|
+
|
|
2173
|
+
.emotion-2:hover,
|
|
2174
|
+
.emotion-2:focus {
|
|
2175
|
+
background-color: #f1f2f4;
|
|
2176
|
+
}
|
|
2177
|
+
|
|
2178
|
+
.emotion-4 {
|
|
2011
2179
|
color: #313d3e;
|
|
2012
2180
|
font-size: 21px;
|
|
2013
2181
|
font-weight: 600;
|
|
2014
2182
|
margin-right: 16px;
|
|
2015
2183
|
}
|
|
2016
2184
|
|
|
2017
|
-
.emotion-
|
|
2185
|
+
.emotion-6 {
|
|
2018
2186
|
color: #313d3e;
|
|
2019
2187
|
font-size: 14px;
|
|
2020
2188
|
}
|
|
2021
2189
|
|
|
2022
|
-
.emotion-
|
|
2190
|
+
.emotion-8 {
|
|
2023
2191
|
margin-top: 6px;
|
|
2024
2192
|
font-size: 13px;
|
|
2025
2193
|
line-height: 1;
|
|
@@ -2029,7 +2197,7 @@ exports[`EditorToolbar should render with status=pending_review,useOpenAuthoring
|
|
|
2029
2197
|
color: #005614;
|
|
2030
2198
|
}
|
|
2031
2199
|
|
|
2032
|
-
.emotion-
|
|
2200
|
+
.emotion-10 {
|
|
2033
2201
|
height: 100%;
|
|
2034
2202
|
display: -webkit-box;
|
|
2035
2203
|
display: -webkit-flex;
|
|
@@ -2053,7 +2221,7 @@ exports[`EditorToolbar should render with status=pending_review,useOpenAuthoring
|
|
|
2053
2221
|
padding: 0 10px;
|
|
2054
2222
|
}
|
|
2055
2223
|
|
|
2056
|
-
.emotion-
|
|
2224
|
+
.emotion-12 {
|
|
2057
2225
|
display: -webkit-box;
|
|
2058
2226
|
display: -webkit-flex;
|
|
2059
2227
|
display: -ms-flexbox;
|
|
@@ -2064,7 +2232,7 @@ exports[`EditorToolbar should render with status=pending_review,useOpenAuthoring
|
|
|
2064
2232
|
align-items: center;
|
|
2065
2233
|
}
|
|
2066
2234
|
|
|
2067
|
-
.emotion-
|
|
2235
|
+
.emotion-14 {
|
|
2068
2236
|
border: 0;
|
|
2069
2237
|
border-radius: 5px;
|
|
2070
2238
|
cursor: pointer;
|
|
@@ -2084,18 +2252,18 @@ exports[`EditorToolbar should render with status=pending_review,useOpenAuthoring
|
|
|
2084
2252
|
}
|
|
2085
2253
|
|
|
2086
2254
|
@media (max-width: 1200px) {
|
|
2087
|
-
.emotion-
|
|
2255
|
+
.emotion-14 {
|
|
2088
2256
|
padding: 0 10px;
|
|
2089
2257
|
}
|
|
2090
2258
|
}
|
|
2091
2259
|
|
|
2092
|
-
.emotion-
|
|
2260
|
+
.emotion-14[disabled] {
|
|
2093
2261
|
background-color: #eff0f4;
|
|
2094
2262
|
color: #798291;
|
|
2095
2263
|
cursor: default;
|
|
2096
2264
|
}
|
|
2097
2265
|
|
|
2098
|
-
.emotion-
|
|
2266
|
+
.emotion-17 {
|
|
2099
2267
|
position: relative;
|
|
2100
2268
|
font-size: 14px;
|
|
2101
2269
|
-webkit-user-select: none;
|
|
@@ -2105,11 +2273,11 @@ exports[`EditorToolbar should render with status=pending_review,useOpenAuthoring
|
|
|
2105
2273
|
margin: 0 10px;
|
|
2106
2274
|
}
|
|
2107
2275
|
|
|
2108
|
-
.emotion-
|
|
2276
|
+
.emotion-17 .e1jeq5dr0 {
|
|
2109
2277
|
color: #17a2b8;
|
|
2110
2278
|
}
|
|
2111
2279
|
|
|
2112
|
-
.emotion-
|
|
2280
|
+
.emotion-19 {
|
|
2113
2281
|
border: 0;
|
|
2114
2282
|
border-radius: 5px;
|
|
2115
2283
|
cursor: pointer;
|
|
@@ -2130,7 +2298,7 @@ exports[`EditorToolbar should render with status=pending_review,useOpenAuthoring
|
|
|
2130
2298
|
color: #17a2b8;
|
|
2131
2299
|
}
|
|
2132
2300
|
|
|
2133
|
-
.emotion-
|
|
2301
|
+
.emotion-19:after {
|
|
2134
2302
|
color: #fff;
|
|
2135
2303
|
width: 0;
|
|
2136
2304
|
height: 0;
|
|
@@ -2147,12 +2315,12 @@ exports[`EditorToolbar should render with status=pending_review,useOpenAuthoring
|
|
|
2147
2315
|
}
|
|
2148
2316
|
|
|
2149
2317
|
@media (max-width: 1200px) {
|
|
2150
|
-
.emotion-
|
|
2318
|
+
.emotion-19 {
|
|
2151
2319
|
padding-left: 10px;
|
|
2152
2320
|
}
|
|
2153
2321
|
}
|
|
2154
2322
|
|
|
2155
|
-
.emotion-
|
|
2323
|
+
.emotion-21 {
|
|
2156
2324
|
border: 0;
|
|
2157
2325
|
border-radius: 5px;
|
|
2158
2326
|
cursor: pointer;
|
|
@@ -2172,12 +2340,12 @@ exports[`EditorToolbar should render with status=pending_review,useOpenAuthoring
|
|
|
2172
2340
|
}
|
|
2173
2341
|
|
|
2174
2342
|
@media (max-width: 1200px) {
|
|
2175
|
-
.emotion-
|
|
2343
|
+
.emotion-21 {
|
|
2176
2344
|
padding: 0 10px;
|
|
2177
2345
|
}
|
|
2178
2346
|
}
|
|
2179
2347
|
|
|
2180
|
-
.emotion-
|
|
2348
|
+
.emotion-23 {
|
|
2181
2349
|
display: -webkit-box;
|
|
2182
2350
|
display: -webkit-flex;
|
|
2183
2351
|
display: -ms-flexbox;
|
|
@@ -2192,7 +2360,7 @@ exports[`EditorToolbar should render with status=pending_review,useOpenAuthoring
|
|
|
2192
2360
|
justify-content: flex-end;
|
|
2193
2361
|
}
|
|
2194
2362
|
|
|
2195
|
-
.emotion-
|
|
2363
|
+
.emotion-25 {
|
|
2196
2364
|
height: 100%;
|
|
2197
2365
|
display: -webkit-box;
|
|
2198
2366
|
display: -webkit-flex;
|
|
@@ -2211,46 +2379,46 @@ exports[`EditorToolbar should render with status=pending_review,useOpenAuthoring
|
|
|
2211
2379
|
class="emotion-0 emotion-1"
|
|
2212
2380
|
>
|
|
2213
2381
|
<mock-link
|
|
2214
|
-
|
|
2382
|
+
class="emotion-2 emotion-3"
|
|
2215
2383
|
to=""
|
|
2216
2384
|
>
|
|
2217
2385
|
<div
|
|
2218
|
-
class="emotion-
|
|
2386
|
+
class="emotion-4 emotion-5"
|
|
2219
2387
|
>
|
|
2220
2388
|
←
|
|
2221
2389
|
</div>
|
|
2222
2390
|
<div>
|
|
2223
2391
|
<div
|
|
2224
|
-
class="emotion-
|
|
2392
|
+
class="emotion-6 emotion-7"
|
|
2225
2393
|
>
|
|
2226
2394
|
editor.editorToolbar.backCollection
|
|
2227
2395
|
</div>
|
|
2228
2396
|
<div
|
|
2229
|
-
class="emotion-
|
|
2397
|
+
class="emotion-8 emotion-9"
|
|
2230
2398
|
>
|
|
2231
2399
|
editor.editorToolbar.changesSaved
|
|
2232
2400
|
</div>
|
|
2233
2401
|
</div>
|
|
2234
2402
|
</mock-link>
|
|
2235
2403
|
<div
|
|
2236
|
-
class="emotion-
|
|
2404
|
+
class="emotion-10 emotion-11"
|
|
2237
2405
|
>
|
|
2238
2406
|
<div
|
|
2239
|
-
class="emotion-
|
|
2407
|
+
class="emotion-12 emotion-13"
|
|
2240
2408
|
>
|
|
2241
2409
|
<button
|
|
2242
|
-
class="emotion-
|
|
2410
|
+
class="emotion-14 emotion-15"
|
|
2243
2411
|
disabled=""
|
|
2244
2412
|
>
|
|
2245
2413
|
editor.editorToolbar.save
|
|
2246
2414
|
</button>
|
|
2247
2415
|
<div
|
|
2248
|
-
class="emotion-
|
|
2416
|
+
class="emotion-16 emotion-17 emotion-18"
|
|
2249
2417
|
>
|
|
2250
2418
|
<span
|
|
2251
2419
|
aria-expanded="false"
|
|
2252
2420
|
aria-haspopup="true"
|
|
2253
|
-
class="emotion-
|
|
2421
|
+
class="emotion-19 emotion-20"
|
|
2254
2422
|
role="button"
|
|
2255
2423
|
tabindex="0"
|
|
2256
2424
|
>
|
|
@@ -2258,17 +2426,17 @@ exports[`EditorToolbar should render with status=pending_review,useOpenAuthoring
|
|
|
2258
2426
|
</span>
|
|
2259
2427
|
</div>
|
|
2260
2428
|
<button
|
|
2261
|
-
class="emotion-
|
|
2429
|
+
class="emotion-21 emotion-22"
|
|
2262
2430
|
>
|
|
2263
2431
|
editor.editorToolbar.deletePublishedEntry
|
|
2264
2432
|
</button>
|
|
2265
2433
|
</div>
|
|
2266
2434
|
<div
|
|
2267
|
-
class="emotion-
|
|
2435
|
+
class="emotion-23 emotion-24"
|
|
2268
2436
|
/>
|
|
2269
2437
|
</div>
|
|
2270
2438
|
<div
|
|
2271
|
-
class="emotion-
|
|
2439
|
+
class="emotion-25 emotion-26"
|
|
2272
2440
|
>
|
|
2273
2441
|
<mock-settings-dropdown />
|
|
2274
2442
|
</div>
|
|
@@ -2298,18 +2466,39 @@ exports[`EditorToolbar should render with status=pending_review,useOpenAuthoring
|
|
|
2298
2466
|
}
|
|
2299
2467
|
|
|
2300
2468
|
.emotion-2 {
|
|
2469
|
+
height: 100%;
|
|
2470
|
+
display: -webkit-box;
|
|
2471
|
+
display: -webkit-flex;
|
|
2472
|
+
display: -ms-flexbox;
|
|
2473
|
+
display: flex;
|
|
2474
|
+
-webkit-align-items: center;
|
|
2475
|
+
-webkit-box-align: center;
|
|
2476
|
+
-ms-flex-align: center;
|
|
2477
|
+
align-items: center;
|
|
2478
|
+
border: 0 solid #dfdfe3;
|
|
2479
|
+
border-right-width: 1px;
|
|
2480
|
+
font-weight: normal;
|
|
2481
|
+
padding: 0 20px;
|
|
2482
|
+
}
|
|
2483
|
+
|
|
2484
|
+
.emotion-2:hover,
|
|
2485
|
+
.emotion-2:focus {
|
|
2486
|
+
background-color: #f1f2f4;
|
|
2487
|
+
}
|
|
2488
|
+
|
|
2489
|
+
.emotion-4 {
|
|
2301
2490
|
color: #313d3e;
|
|
2302
2491
|
font-size: 21px;
|
|
2303
2492
|
font-weight: 600;
|
|
2304
2493
|
margin-right: 16px;
|
|
2305
2494
|
}
|
|
2306
2495
|
|
|
2307
|
-
.emotion-
|
|
2496
|
+
.emotion-6 {
|
|
2308
2497
|
color: #313d3e;
|
|
2309
2498
|
font-size: 14px;
|
|
2310
2499
|
}
|
|
2311
2500
|
|
|
2312
|
-
.emotion-
|
|
2501
|
+
.emotion-8 {
|
|
2313
2502
|
margin-top: 6px;
|
|
2314
2503
|
font-size: 13px;
|
|
2315
2504
|
line-height: 1;
|
|
@@ -2319,7 +2508,7 @@ exports[`EditorToolbar should render with status=pending_review,useOpenAuthoring
|
|
|
2319
2508
|
color: #005614;
|
|
2320
2509
|
}
|
|
2321
2510
|
|
|
2322
|
-
.emotion-
|
|
2511
|
+
.emotion-10 {
|
|
2323
2512
|
height: 100%;
|
|
2324
2513
|
display: -webkit-box;
|
|
2325
2514
|
display: -webkit-flex;
|
|
@@ -2343,7 +2532,7 @@ exports[`EditorToolbar should render with status=pending_review,useOpenAuthoring
|
|
|
2343
2532
|
padding: 0 10px;
|
|
2344
2533
|
}
|
|
2345
2534
|
|
|
2346
|
-
.emotion-
|
|
2535
|
+
.emotion-12 {
|
|
2347
2536
|
display: -webkit-box;
|
|
2348
2537
|
display: -webkit-flex;
|
|
2349
2538
|
display: -ms-flexbox;
|
|
@@ -2354,7 +2543,7 @@ exports[`EditorToolbar should render with status=pending_review,useOpenAuthoring
|
|
|
2354
2543
|
align-items: center;
|
|
2355
2544
|
}
|
|
2356
2545
|
|
|
2357
|
-
.emotion-
|
|
2546
|
+
.emotion-14 {
|
|
2358
2547
|
border: 0;
|
|
2359
2548
|
border-radius: 5px;
|
|
2360
2549
|
cursor: pointer;
|
|
@@ -2374,18 +2563,18 @@ exports[`EditorToolbar should render with status=pending_review,useOpenAuthoring
|
|
|
2374
2563
|
}
|
|
2375
2564
|
|
|
2376
2565
|
@media (max-width: 1200px) {
|
|
2377
|
-
.emotion-
|
|
2566
|
+
.emotion-14 {
|
|
2378
2567
|
padding: 0 10px;
|
|
2379
2568
|
}
|
|
2380
2569
|
}
|
|
2381
2570
|
|
|
2382
|
-
.emotion-
|
|
2571
|
+
.emotion-14[disabled] {
|
|
2383
2572
|
background-color: #eff0f4;
|
|
2384
2573
|
color: #798291;
|
|
2385
2574
|
cursor: default;
|
|
2386
2575
|
}
|
|
2387
2576
|
|
|
2388
|
-
.emotion-
|
|
2577
|
+
.emotion-17 {
|
|
2389
2578
|
position: relative;
|
|
2390
2579
|
font-size: 14px;
|
|
2391
2580
|
-webkit-user-select: none;
|
|
@@ -2395,11 +2584,11 @@ exports[`EditorToolbar should render with status=pending_review,useOpenAuthoring
|
|
|
2395
2584
|
margin: 0 10px;
|
|
2396
2585
|
}
|
|
2397
2586
|
|
|
2398
|
-
.emotion-
|
|
2587
|
+
.emotion-17 .emotion-25 {
|
|
2399
2588
|
color: #17a2b8;
|
|
2400
2589
|
}
|
|
2401
2590
|
|
|
2402
|
-
.emotion-
|
|
2591
|
+
.emotion-19 {
|
|
2403
2592
|
border: 0;
|
|
2404
2593
|
border-radius: 5px;
|
|
2405
2594
|
cursor: pointer;
|
|
@@ -2420,7 +2609,7 @@ exports[`EditorToolbar should render with status=pending_review,useOpenAuthoring
|
|
|
2420
2609
|
color: #17a2b8;
|
|
2421
2610
|
}
|
|
2422
2611
|
|
|
2423
|
-
.emotion-
|
|
2612
|
+
.emotion-19:after {
|
|
2424
2613
|
color: #fff;
|
|
2425
2614
|
width: 0;
|
|
2426
2615
|
height: 0;
|
|
@@ -2437,26 +2626,26 @@ exports[`EditorToolbar should render with status=pending_review,useOpenAuthoring
|
|
|
2437
2626
|
}
|
|
2438
2627
|
|
|
2439
2628
|
@media (max-width: 1200px) {
|
|
2440
|
-
.emotion-
|
|
2629
|
+
.emotion-19 {
|
|
2441
2630
|
padding-left: 10px;
|
|
2442
2631
|
}
|
|
2443
2632
|
}
|
|
2444
2633
|
|
|
2445
|
-
.emotion-
|
|
2634
|
+
.emotion-21 {
|
|
2446
2635
|
position: relative;
|
|
2447
2636
|
}
|
|
2448
2637
|
|
|
2449
|
-
.emotion-
|
|
2638
|
+
.emotion-23 {
|
|
2450
2639
|
position: relative;
|
|
2451
2640
|
display: inline-block;
|
|
2452
2641
|
}
|
|
2453
2642
|
|
|
2454
|
-
.emotion-
|
|
2643
|
+
.emotion-23:hover+.emotion-29 {
|
|
2455
2644
|
visibility: visible;
|
|
2456
2645
|
opacity: 0.9;
|
|
2457
2646
|
}
|
|
2458
2647
|
|
|
2459
|
-
.emotion-
|
|
2648
|
+
.emotion-26 {
|
|
2460
2649
|
display: inline-block;
|
|
2461
2650
|
line-height: 0;
|
|
2462
2651
|
width: 18px;
|
|
@@ -2467,23 +2656,23 @@ exports[`EditorToolbar should render with status=pending_review,useOpenAuthoring
|
|
|
2467
2656
|
transform: rotate(0deg);
|
|
2468
2657
|
}
|
|
2469
2658
|
|
|
2470
|
-
.emotion-
|
|
2471
|
-
.emotion-
|
|
2472
|
-
.emotion-
|
|
2473
|
-
.emotion-
|
|
2659
|
+
.emotion-26 path:not(.no-fill),
|
|
2660
|
+
.emotion-26 circle:not(.no-fill),
|
|
2661
|
+
.emotion-26 polygon:not(.no-fill),
|
|
2662
|
+
.emotion-26 rect:not(.no-fill) {
|
|
2474
2663
|
fill: currentColor;
|
|
2475
2664
|
}
|
|
2476
2665
|
|
|
2477
|
-
.emotion-
|
|
2666
|
+
.emotion-26 path.clipped {
|
|
2478
2667
|
fill: transparent;
|
|
2479
2668
|
}
|
|
2480
2669
|
|
|
2481
|
-
.emotion-
|
|
2670
|
+
.emotion-26 svg {
|
|
2482
2671
|
width: 100%;
|
|
2483
2672
|
height: 100%;
|
|
2484
2673
|
}
|
|
2485
2674
|
|
|
2486
|
-
.emotion-
|
|
2675
|
+
.emotion-28 {
|
|
2487
2676
|
visibility: hidden;
|
|
2488
2677
|
width: 321px;
|
|
2489
2678
|
background-color: #555;
|
|
@@ -2501,7 +2690,7 @@ exports[`EditorToolbar should render with status=pending_review,useOpenAuthoring
|
|
|
2501
2690
|
transition: opacity 0.3s;
|
|
2502
2691
|
}
|
|
2503
2692
|
|
|
2504
|
-
.emotion-
|
|
2693
|
+
.emotion-30 {
|
|
2505
2694
|
display: -webkit-box;
|
|
2506
2695
|
display: -webkit-flex;
|
|
2507
2696
|
display: -ms-flexbox;
|
|
@@ -2516,7 +2705,7 @@ exports[`EditorToolbar should render with status=pending_review,useOpenAuthoring
|
|
|
2516
2705
|
justify-content: flex-end;
|
|
2517
2706
|
}
|
|
2518
2707
|
|
|
2519
|
-
.emotion-
|
|
2708
|
+
.emotion-32 {
|
|
2520
2709
|
height: 100%;
|
|
2521
2710
|
display: -webkit-box;
|
|
2522
2711
|
display: -webkit-flex;
|
|
@@ -2535,46 +2724,46 @@ exports[`EditorToolbar should render with status=pending_review,useOpenAuthoring
|
|
|
2535
2724
|
class="emotion-0 emotion-1"
|
|
2536
2725
|
>
|
|
2537
2726
|
<mock-link
|
|
2538
|
-
|
|
2727
|
+
class="emotion-2 emotion-3"
|
|
2539
2728
|
to=""
|
|
2540
2729
|
>
|
|
2541
2730
|
<div
|
|
2542
|
-
class="emotion-
|
|
2731
|
+
class="emotion-4 emotion-5"
|
|
2543
2732
|
>
|
|
2544
2733
|
←
|
|
2545
2734
|
</div>
|
|
2546
2735
|
<div>
|
|
2547
2736
|
<div
|
|
2548
|
-
class="emotion-
|
|
2737
|
+
class="emotion-6 emotion-7"
|
|
2549
2738
|
>
|
|
2550
2739
|
editor.editorToolbar.backCollection
|
|
2551
2740
|
</div>
|
|
2552
2741
|
<div
|
|
2553
|
-
class="emotion-
|
|
2742
|
+
class="emotion-8 emotion-9"
|
|
2554
2743
|
>
|
|
2555
2744
|
editor.editorToolbar.changesSaved
|
|
2556
2745
|
</div>
|
|
2557
2746
|
</div>
|
|
2558
2747
|
</mock-link>
|
|
2559
2748
|
<div
|
|
2560
|
-
class="emotion-
|
|
2749
|
+
class="emotion-10 emotion-11"
|
|
2561
2750
|
>
|
|
2562
2751
|
<div
|
|
2563
|
-
class="emotion-
|
|
2752
|
+
class="emotion-12 emotion-13"
|
|
2564
2753
|
>
|
|
2565
2754
|
<button
|
|
2566
|
-
class="emotion-
|
|
2755
|
+
class="emotion-14 emotion-15"
|
|
2567
2756
|
disabled=""
|
|
2568
2757
|
>
|
|
2569
2758
|
editor.editorToolbar.save
|
|
2570
2759
|
</button>
|
|
2571
2760
|
<div
|
|
2572
|
-
class="emotion-
|
|
2761
|
+
class="emotion-16 emotion-17 emotion-18"
|
|
2573
2762
|
>
|
|
2574
2763
|
<span
|
|
2575
2764
|
aria-expanded="false"
|
|
2576
2765
|
aria-haspopup="true"
|
|
2577
|
-
class="emotion-
|
|
2766
|
+
class="emotion-19 emotion-20"
|
|
2578
2767
|
role="button"
|
|
2579
2768
|
tabindex="0"
|
|
2580
2769
|
>
|
|
@@ -2582,13 +2771,13 @@ exports[`EditorToolbar should render with status=pending_review,useOpenAuthoring
|
|
|
2582
2771
|
</span>
|
|
2583
2772
|
</div>
|
|
2584
2773
|
<div
|
|
2585
|
-
class="emotion-
|
|
2774
|
+
class="emotion-21 emotion-22"
|
|
2586
2775
|
>
|
|
2587
2776
|
<div
|
|
2588
|
-
class="emotion-
|
|
2777
|
+
class="emotion-23 emotion-24"
|
|
2589
2778
|
>
|
|
2590
2779
|
<span
|
|
2591
|
-
class="tooltip emotion-
|
|
2780
|
+
class="tooltip emotion-25 emotion-26 emotion-27"
|
|
2592
2781
|
>
|
|
2593
2782
|
<svg
|
|
2594
2783
|
class="bi bi-info-circle"
|
|
@@ -2608,18 +2797,18 @@ exports[`EditorToolbar should render with status=pending_review,useOpenAuthoring
|
|
|
2608
2797
|
</span>
|
|
2609
2798
|
</div>
|
|
2610
2799
|
<div
|
|
2611
|
-
class="emotion-
|
|
2800
|
+
class="emotion-28 emotion-29"
|
|
2612
2801
|
>
|
|
2613
2802
|
editor.editorToolbar.statusInfoTooltipInReview
|
|
2614
2803
|
</div>
|
|
2615
2804
|
</div>
|
|
2616
2805
|
</div>
|
|
2617
2806
|
<div
|
|
2618
|
-
class="emotion-
|
|
2807
|
+
class="emotion-30 emotion-31"
|
|
2619
2808
|
/>
|
|
2620
2809
|
</div>
|
|
2621
2810
|
<div
|
|
2622
|
-
class="emotion-
|
|
2811
|
+
class="emotion-32 emotion-33"
|
|
2623
2812
|
>
|
|
2624
2813
|
<mock-settings-dropdown />
|
|
2625
2814
|
</div>
|
|
@@ -2649,18 +2838,39 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
2649
2838
|
}
|
|
2650
2839
|
|
|
2651
2840
|
.emotion-2 {
|
|
2841
|
+
height: 100%;
|
|
2842
|
+
display: -webkit-box;
|
|
2843
|
+
display: -webkit-flex;
|
|
2844
|
+
display: -ms-flexbox;
|
|
2845
|
+
display: flex;
|
|
2846
|
+
-webkit-align-items: center;
|
|
2847
|
+
-webkit-box-align: center;
|
|
2848
|
+
-ms-flex-align: center;
|
|
2849
|
+
align-items: center;
|
|
2850
|
+
border: 0 solid #dfdfe3;
|
|
2851
|
+
border-right-width: 1px;
|
|
2852
|
+
font-weight: normal;
|
|
2853
|
+
padding: 0 20px;
|
|
2854
|
+
}
|
|
2855
|
+
|
|
2856
|
+
.emotion-2:hover,
|
|
2857
|
+
.emotion-2:focus {
|
|
2858
|
+
background-color: #f1f2f4;
|
|
2859
|
+
}
|
|
2860
|
+
|
|
2861
|
+
.emotion-4 {
|
|
2652
2862
|
color: #313d3e;
|
|
2653
2863
|
font-size: 21px;
|
|
2654
2864
|
font-weight: 600;
|
|
2655
2865
|
margin-right: 16px;
|
|
2656
2866
|
}
|
|
2657
2867
|
|
|
2658
|
-
.emotion-
|
|
2868
|
+
.emotion-6 {
|
|
2659
2869
|
color: #313d3e;
|
|
2660
2870
|
font-size: 14px;
|
|
2661
2871
|
}
|
|
2662
2872
|
|
|
2663
|
-
.emotion-
|
|
2873
|
+
.emotion-8 {
|
|
2664
2874
|
margin-top: 6px;
|
|
2665
2875
|
font-size: 13px;
|
|
2666
2876
|
line-height: 1;
|
|
@@ -2670,7 +2880,7 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
2670
2880
|
color: #005614;
|
|
2671
2881
|
}
|
|
2672
2882
|
|
|
2673
|
-
.emotion-
|
|
2883
|
+
.emotion-10 {
|
|
2674
2884
|
height: 100%;
|
|
2675
2885
|
display: -webkit-box;
|
|
2676
2886
|
display: -webkit-flex;
|
|
@@ -2694,7 +2904,7 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
2694
2904
|
padding: 0 10px;
|
|
2695
2905
|
}
|
|
2696
2906
|
|
|
2697
|
-
.emotion-
|
|
2907
|
+
.emotion-12 {
|
|
2698
2908
|
display: -webkit-box;
|
|
2699
2909
|
display: -webkit-flex;
|
|
2700
2910
|
display: -ms-flexbox;
|
|
@@ -2705,7 +2915,7 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
2705
2915
|
align-items: center;
|
|
2706
2916
|
}
|
|
2707
2917
|
|
|
2708
|
-
.emotion-
|
|
2918
|
+
.emotion-14 {
|
|
2709
2919
|
border: 0;
|
|
2710
2920
|
border-radius: 5px;
|
|
2711
2921
|
cursor: pointer;
|
|
@@ -2725,18 +2935,18 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
2725
2935
|
}
|
|
2726
2936
|
|
|
2727
2937
|
@media (max-width: 1200px) {
|
|
2728
|
-
.emotion-
|
|
2938
|
+
.emotion-14 {
|
|
2729
2939
|
padding: 0 10px;
|
|
2730
2940
|
}
|
|
2731
2941
|
}
|
|
2732
2942
|
|
|
2733
|
-
.emotion-
|
|
2943
|
+
.emotion-14[disabled] {
|
|
2734
2944
|
background-color: #eff0f4;
|
|
2735
2945
|
color: #798291;
|
|
2736
2946
|
cursor: default;
|
|
2737
2947
|
}
|
|
2738
2948
|
|
|
2739
|
-
.emotion-
|
|
2949
|
+
.emotion-16 {
|
|
2740
2950
|
border: 0;
|
|
2741
2951
|
border-radius: 5px;
|
|
2742
2952
|
cursor: pointer;
|
|
@@ -2756,12 +2966,12 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
2756
2966
|
}
|
|
2757
2967
|
|
|
2758
2968
|
@media (max-width: 1200px) {
|
|
2759
|
-
.emotion-
|
|
2969
|
+
.emotion-16 {
|
|
2760
2970
|
padding: 0 10px;
|
|
2761
2971
|
}
|
|
2762
2972
|
}
|
|
2763
2973
|
|
|
2764
|
-
.emotion-
|
|
2974
|
+
.emotion-18 {
|
|
2765
2975
|
display: -webkit-box;
|
|
2766
2976
|
display: -webkit-flex;
|
|
2767
2977
|
display: -ms-flexbox;
|
|
@@ -2776,7 +2986,7 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
2776
2986
|
justify-content: flex-end;
|
|
2777
2987
|
}
|
|
2778
2988
|
|
|
2779
|
-
.emotion-
|
|
2989
|
+
.emotion-20 {
|
|
2780
2990
|
height: 100%;
|
|
2781
2991
|
display: -webkit-box;
|
|
2782
2992
|
display: -webkit-flex;
|
|
@@ -2795,51 +3005,51 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
2795
3005
|
class="emotion-0 emotion-1"
|
|
2796
3006
|
>
|
|
2797
3007
|
<mock-link
|
|
2798
|
-
|
|
3008
|
+
class="emotion-2 emotion-3"
|
|
2799
3009
|
to=""
|
|
2800
3010
|
>
|
|
2801
3011
|
<div
|
|
2802
|
-
class="emotion-
|
|
3012
|
+
class="emotion-4 emotion-5"
|
|
2803
3013
|
>
|
|
2804
3014
|
←
|
|
2805
3015
|
</div>
|
|
2806
3016
|
<div>
|
|
2807
3017
|
<div
|
|
2808
|
-
class="emotion-
|
|
3018
|
+
class="emotion-6 emotion-7"
|
|
2809
3019
|
>
|
|
2810
3020
|
editor.editorToolbar.backCollection
|
|
2811
3021
|
</div>
|
|
2812
3022
|
<div
|
|
2813
|
-
class="emotion-
|
|
3023
|
+
class="emotion-8 emotion-9"
|
|
2814
3024
|
>
|
|
2815
3025
|
editor.editorToolbar.changesSaved
|
|
2816
3026
|
</div>
|
|
2817
3027
|
</div>
|
|
2818
3028
|
</mock-link>
|
|
2819
3029
|
<div
|
|
2820
|
-
class="emotion-
|
|
3030
|
+
class="emotion-10 emotion-11"
|
|
2821
3031
|
>
|
|
2822
3032
|
<div
|
|
2823
|
-
class="emotion-
|
|
3033
|
+
class="emotion-12 emotion-13"
|
|
2824
3034
|
>
|
|
2825
3035
|
<button
|
|
2826
|
-
class="emotion-
|
|
3036
|
+
class="emotion-14 emotion-15"
|
|
2827
3037
|
disabled=""
|
|
2828
3038
|
>
|
|
2829
3039
|
editor.editorToolbar.save
|
|
2830
3040
|
</button>
|
|
2831
3041
|
<button
|
|
2832
|
-
class="emotion-
|
|
3042
|
+
class="emotion-16 emotion-17"
|
|
2833
3043
|
>
|
|
2834
3044
|
editor.editorToolbar.deletePublishedEntry
|
|
2835
3045
|
</button>
|
|
2836
3046
|
</div>
|
|
2837
3047
|
<div
|
|
2838
|
-
class="emotion-
|
|
3048
|
+
class="emotion-18 emotion-19"
|
|
2839
3049
|
/>
|
|
2840
3050
|
</div>
|
|
2841
3051
|
<div
|
|
2842
|
-
class="emotion-
|
|
3052
|
+
class="emotion-20 emotion-21"
|
|
2843
3053
|
>
|
|
2844
3054
|
<mock-settings-dropdown />
|
|
2845
3055
|
</div>
|
|
@@ -2869,18 +3079,39 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
2869
3079
|
}
|
|
2870
3080
|
|
|
2871
3081
|
.emotion-2 {
|
|
3082
|
+
height: 100%;
|
|
3083
|
+
display: -webkit-box;
|
|
3084
|
+
display: -webkit-flex;
|
|
3085
|
+
display: -ms-flexbox;
|
|
3086
|
+
display: flex;
|
|
3087
|
+
-webkit-align-items: center;
|
|
3088
|
+
-webkit-box-align: center;
|
|
3089
|
+
-ms-flex-align: center;
|
|
3090
|
+
align-items: center;
|
|
3091
|
+
border: 0 solid #dfdfe3;
|
|
3092
|
+
border-right-width: 1px;
|
|
3093
|
+
font-weight: normal;
|
|
3094
|
+
padding: 0 20px;
|
|
3095
|
+
}
|
|
3096
|
+
|
|
3097
|
+
.emotion-2:hover,
|
|
3098
|
+
.emotion-2:focus {
|
|
3099
|
+
background-color: #f1f2f4;
|
|
3100
|
+
}
|
|
3101
|
+
|
|
3102
|
+
.emotion-4 {
|
|
2872
3103
|
color: #313d3e;
|
|
2873
3104
|
font-size: 21px;
|
|
2874
3105
|
font-weight: 600;
|
|
2875
3106
|
margin-right: 16px;
|
|
2876
3107
|
}
|
|
2877
3108
|
|
|
2878
|
-
.emotion-
|
|
3109
|
+
.emotion-6 {
|
|
2879
3110
|
color: #313d3e;
|
|
2880
3111
|
font-size: 14px;
|
|
2881
3112
|
}
|
|
2882
3113
|
|
|
2883
|
-
.emotion-
|
|
3114
|
+
.emotion-8 {
|
|
2884
3115
|
margin-top: 6px;
|
|
2885
3116
|
font-size: 13px;
|
|
2886
3117
|
line-height: 1;
|
|
@@ -2890,7 +3121,7 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
2890
3121
|
color: #005614;
|
|
2891
3122
|
}
|
|
2892
3123
|
|
|
2893
|
-
.emotion-
|
|
3124
|
+
.emotion-10 {
|
|
2894
3125
|
height: 100%;
|
|
2895
3126
|
display: -webkit-box;
|
|
2896
3127
|
display: -webkit-flex;
|
|
@@ -2914,7 +3145,7 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
2914
3145
|
padding: 0 10px;
|
|
2915
3146
|
}
|
|
2916
3147
|
|
|
2917
|
-
.emotion-
|
|
3148
|
+
.emotion-12 {
|
|
2918
3149
|
display: -webkit-box;
|
|
2919
3150
|
display: -webkit-flex;
|
|
2920
3151
|
display: -ms-flexbox;
|
|
@@ -2925,7 +3156,7 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
2925
3156
|
align-items: center;
|
|
2926
3157
|
}
|
|
2927
3158
|
|
|
2928
|
-
.emotion-
|
|
3159
|
+
.emotion-14 {
|
|
2929
3160
|
border: 0;
|
|
2930
3161
|
border-radius: 5px;
|
|
2931
3162
|
cursor: pointer;
|
|
@@ -2945,18 +3176,18 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
2945
3176
|
}
|
|
2946
3177
|
|
|
2947
3178
|
@media (max-width: 1200px) {
|
|
2948
|
-
.emotion-
|
|
3179
|
+
.emotion-14 {
|
|
2949
3180
|
padding: 0 10px;
|
|
2950
3181
|
}
|
|
2951
3182
|
}
|
|
2952
3183
|
|
|
2953
|
-
.emotion-
|
|
3184
|
+
.emotion-14[disabled] {
|
|
2954
3185
|
background-color: #eff0f4;
|
|
2955
3186
|
color: #798291;
|
|
2956
3187
|
cursor: default;
|
|
2957
3188
|
}
|
|
2958
3189
|
|
|
2959
|
-
.emotion-
|
|
3190
|
+
.emotion-16 {
|
|
2960
3191
|
display: -webkit-box;
|
|
2961
3192
|
display: -webkit-flex;
|
|
2962
3193
|
display: -ms-flexbox;
|
|
@@ -2971,7 +3202,7 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
2971
3202
|
justify-content: flex-end;
|
|
2972
3203
|
}
|
|
2973
3204
|
|
|
2974
|
-
.emotion-
|
|
3205
|
+
.emotion-18 {
|
|
2975
3206
|
height: 100%;
|
|
2976
3207
|
display: -webkit-box;
|
|
2977
3208
|
display: -webkit-flex;
|
|
@@ -2990,46 +3221,46 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
2990
3221
|
class="emotion-0 emotion-1"
|
|
2991
3222
|
>
|
|
2992
3223
|
<mock-link
|
|
2993
|
-
|
|
3224
|
+
class="emotion-2 emotion-3"
|
|
2994
3225
|
to=""
|
|
2995
3226
|
>
|
|
2996
3227
|
<div
|
|
2997
|
-
class="emotion-
|
|
3228
|
+
class="emotion-4 emotion-5"
|
|
2998
3229
|
>
|
|
2999
3230
|
←
|
|
3000
3231
|
</div>
|
|
3001
3232
|
<div>
|
|
3002
3233
|
<div
|
|
3003
|
-
class="emotion-
|
|
3234
|
+
class="emotion-6 emotion-7"
|
|
3004
3235
|
>
|
|
3005
3236
|
editor.editorToolbar.backCollection
|
|
3006
3237
|
</div>
|
|
3007
3238
|
<div
|
|
3008
|
-
class="emotion-
|
|
3239
|
+
class="emotion-8 emotion-9"
|
|
3009
3240
|
>
|
|
3010
3241
|
editor.editorToolbar.changesSaved
|
|
3011
3242
|
</div>
|
|
3012
3243
|
</div>
|
|
3013
3244
|
</mock-link>
|
|
3014
3245
|
<div
|
|
3015
|
-
class="emotion-
|
|
3246
|
+
class="emotion-10 emotion-11"
|
|
3016
3247
|
>
|
|
3017
3248
|
<div
|
|
3018
|
-
class="emotion-
|
|
3249
|
+
class="emotion-12 emotion-13"
|
|
3019
3250
|
>
|
|
3020
3251
|
<button
|
|
3021
|
-
class="emotion-
|
|
3252
|
+
class="emotion-14 emotion-15"
|
|
3022
3253
|
disabled=""
|
|
3023
3254
|
>
|
|
3024
3255
|
editor.editorToolbar.save
|
|
3025
3256
|
</button>
|
|
3026
3257
|
</div>
|
|
3027
3258
|
<div
|
|
3028
|
-
class="emotion-
|
|
3259
|
+
class="emotion-16 emotion-17"
|
|
3029
3260
|
/>
|
|
3030
3261
|
</div>
|
|
3031
3262
|
<div
|
|
3032
|
-
class="emotion-
|
|
3263
|
+
class="emotion-18 emotion-19"
|
|
3033
3264
|
>
|
|
3034
3265
|
<mock-settings-dropdown />
|
|
3035
3266
|
</div>
|
|
@@ -3059,18 +3290,39 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
3059
3290
|
}
|
|
3060
3291
|
|
|
3061
3292
|
.emotion-2 {
|
|
3293
|
+
height: 100%;
|
|
3294
|
+
display: -webkit-box;
|
|
3295
|
+
display: -webkit-flex;
|
|
3296
|
+
display: -ms-flexbox;
|
|
3297
|
+
display: flex;
|
|
3298
|
+
-webkit-align-items: center;
|
|
3299
|
+
-webkit-box-align: center;
|
|
3300
|
+
-ms-flex-align: center;
|
|
3301
|
+
align-items: center;
|
|
3302
|
+
border: 0 solid #dfdfe3;
|
|
3303
|
+
border-right-width: 1px;
|
|
3304
|
+
font-weight: normal;
|
|
3305
|
+
padding: 0 20px;
|
|
3306
|
+
}
|
|
3307
|
+
|
|
3308
|
+
.emotion-2:hover,
|
|
3309
|
+
.emotion-2:focus {
|
|
3310
|
+
background-color: #f1f2f4;
|
|
3311
|
+
}
|
|
3312
|
+
|
|
3313
|
+
.emotion-4 {
|
|
3062
3314
|
color: #313d3e;
|
|
3063
3315
|
font-size: 21px;
|
|
3064
3316
|
font-weight: 600;
|
|
3065
3317
|
margin-right: 16px;
|
|
3066
3318
|
}
|
|
3067
3319
|
|
|
3068
|
-
.emotion-
|
|
3320
|
+
.emotion-6 {
|
|
3069
3321
|
color: #313d3e;
|
|
3070
3322
|
font-size: 14px;
|
|
3071
3323
|
}
|
|
3072
3324
|
|
|
3073
|
-
.emotion-
|
|
3325
|
+
.emotion-8 {
|
|
3074
3326
|
margin-top: 6px;
|
|
3075
3327
|
font-size: 13px;
|
|
3076
3328
|
line-height: 1;
|
|
@@ -3080,7 +3332,7 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
3080
3332
|
color: #005614;
|
|
3081
3333
|
}
|
|
3082
3334
|
|
|
3083
|
-
.emotion-
|
|
3335
|
+
.emotion-10 {
|
|
3084
3336
|
height: 100%;
|
|
3085
3337
|
display: -webkit-box;
|
|
3086
3338
|
display: -webkit-flex;
|
|
@@ -3104,7 +3356,7 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
3104
3356
|
padding: 0 10px;
|
|
3105
3357
|
}
|
|
3106
3358
|
|
|
3107
|
-
.emotion-
|
|
3359
|
+
.emotion-12 {
|
|
3108
3360
|
display: -webkit-box;
|
|
3109
3361
|
display: -webkit-flex;
|
|
3110
3362
|
display: -ms-flexbox;
|
|
@@ -3115,7 +3367,7 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
3115
3367
|
align-items: center;
|
|
3116
3368
|
}
|
|
3117
3369
|
|
|
3118
|
-
.emotion-
|
|
3370
|
+
.emotion-14 {
|
|
3119
3371
|
border: 0;
|
|
3120
3372
|
border-radius: 5px;
|
|
3121
3373
|
cursor: pointer;
|
|
@@ -3135,18 +3387,18 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
3135
3387
|
}
|
|
3136
3388
|
|
|
3137
3389
|
@media (max-width: 1200px) {
|
|
3138
|
-
.emotion-
|
|
3390
|
+
.emotion-14 {
|
|
3139
3391
|
padding: 0 10px;
|
|
3140
3392
|
}
|
|
3141
3393
|
}
|
|
3142
3394
|
|
|
3143
|
-
.emotion-
|
|
3395
|
+
.emotion-14[disabled] {
|
|
3144
3396
|
background-color: #eff0f4;
|
|
3145
3397
|
color: #798291;
|
|
3146
3398
|
cursor: default;
|
|
3147
3399
|
}
|
|
3148
3400
|
|
|
3149
|
-
.emotion-
|
|
3401
|
+
.emotion-16 {
|
|
3150
3402
|
border: 0;
|
|
3151
3403
|
border-radius: 5px;
|
|
3152
3404
|
cursor: pointer;
|
|
@@ -3166,12 +3418,12 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
3166
3418
|
}
|
|
3167
3419
|
|
|
3168
3420
|
@media (max-width: 1200px) {
|
|
3169
|
-
.emotion-
|
|
3421
|
+
.emotion-16 {
|
|
3170
3422
|
padding: 0 10px;
|
|
3171
3423
|
}
|
|
3172
3424
|
}
|
|
3173
3425
|
|
|
3174
|
-
.emotion-
|
|
3426
|
+
.emotion-18 {
|
|
3175
3427
|
display: -webkit-box;
|
|
3176
3428
|
display: -webkit-flex;
|
|
3177
3429
|
display: -ms-flexbox;
|
|
@@ -3186,7 +3438,7 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
3186
3438
|
justify-content: flex-end;
|
|
3187
3439
|
}
|
|
3188
3440
|
|
|
3189
|
-
.emotion-
|
|
3441
|
+
.emotion-20 {
|
|
3190
3442
|
height: 100%;
|
|
3191
3443
|
display: -webkit-box;
|
|
3192
3444
|
display: -webkit-flex;
|
|
@@ -3205,51 +3457,51 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
3205
3457
|
class="emotion-0 emotion-1"
|
|
3206
3458
|
>
|
|
3207
3459
|
<mock-link
|
|
3208
|
-
|
|
3460
|
+
class="emotion-2 emotion-3"
|
|
3209
3461
|
to=""
|
|
3210
3462
|
>
|
|
3211
3463
|
<div
|
|
3212
|
-
class="emotion-
|
|
3464
|
+
class="emotion-4 emotion-5"
|
|
3213
3465
|
>
|
|
3214
3466
|
←
|
|
3215
3467
|
</div>
|
|
3216
3468
|
<div>
|
|
3217
3469
|
<div
|
|
3218
|
-
class="emotion-
|
|
3470
|
+
class="emotion-6 emotion-7"
|
|
3219
3471
|
>
|
|
3220
3472
|
editor.editorToolbar.backCollection
|
|
3221
3473
|
</div>
|
|
3222
3474
|
<div
|
|
3223
|
-
class="emotion-
|
|
3475
|
+
class="emotion-8 emotion-9"
|
|
3224
3476
|
>
|
|
3225
3477
|
editor.editorToolbar.changesSaved
|
|
3226
3478
|
</div>
|
|
3227
3479
|
</div>
|
|
3228
3480
|
</mock-link>
|
|
3229
3481
|
<div
|
|
3230
|
-
class="emotion-
|
|
3482
|
+
class="emotion-10 emotion-11"
|
|
3231
3483
|
>
|
|
3232
3484
|
<div
|
|
3233
|
-
class="emotion-
|
|
3485
|
+
class="emotion-12 emotion-13"
|
|
3234
3486
|
>
|
|
3235
3487
|
<button
|
|
3236
|
-
class="emotion-
|
|
3488
|
+
class="emotion-14 emotion-15"
|
|
3237
3489
|
disabled=""
|
|
3238
3490
|
>
|
|
3239
3491
|
editor.editorToolbar.save
|
|
3240
3492
|
</button>
|
|
3241
3493
|
<button
|
|
3242
|
-
class="emotion-
|
|
3494
|
+
class="emotion-16 emotion-17"
|
|
3243
3495
|
>
|
|
3244
3496
|
editor.editorToolbar.deleteUnpublishedEntry
|
|
3245
3497
|
</button>
|
|
3246
3498
|
</div>
|
|
3247
3499
|
<div
|
|
3248
|
-
class="emotion-
|
|
3500
|
+
class="emotion-18 emotion-19"
|
|
3249
3501
|
/>
|
|
3250
3502
|
</div>
|
|
3251
3503
|
<div
|
|
3252
|
-
class="emotion-
|
|
3504
|
+
class="emotion-20 emotion-21"
|
|
3253
3505
|
>
|
|
3254
3506
|
<mock-settings-dropdown />
|
|
3255
3507
|
</div>
|
|
@@ -3279,18 +3531,39 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
3279
3531
|
}
|
|
3280
3532
|
|
|
3281
3533
|
.emotion-2 {
|
|
3534
|
+
height: 100%;
|
|
3535
|
+
display: -webkit-box;
|
|
3536
|
+
display: -webkit-flex;
|
|
3537
|
+
display: -ms-flexbox;
|
|
3538
|
+
display: flex;
|
|
3539
|
+
-webkit-align-items: center;
|
|
3540
|
+
-webkit-box-align: center;
|
|
3541
|
+
-ms-flex-align: center;
|
|
3542
|
+
align-items: center;
|
|
3543
|
+
border: 0 solid #dfdfe3;
|
|
3544
|
+
border-right-width: 1px;
|
|
3545
|
+
font-weight: normal;
|
|
3546
|
+
padding: 0 20px;
|
|
3547
|
+
}
|
|
3548
|
+
|
|
3549
|
+
.emotion-2:hover,
|
|
3550
|
+
.emotion-2:focus {
|
|
3551
|
+
background-color: #f1f2f4;
|
|
3552
|
+
}
|
|
3553
|
+
|
|
3554
|
+
.emotion-4 {
|
|
3282
3555
|
color: #313d3e;
|
|
3283
3556
|
font-size: 21px;
|
|
3284
3557
|
font-weight: 600;
|
|
3285
3558
|
margin-right: 16px;
|
|
3286
3559
|
}
|
|
3287
3560
|
|
|
3288
|
-
.emotion-
|
|
3561
|
+
.emotion-6 {
|
|
3289
3562
|
color: #313d3e;
|
|
3290
3563
|
font-size: 14px;
|
|
3291
3564
|
}
|
|
3292
3565
|
|
|
3293
|
-
.emotion-
|
|
3566
|
+
.emotion-8 {
|
|
3294
3567
|
margin-top: 6px;
|
|
3295
3568
|
font-size: 13px;
|
|
3296
3569
|
line-height: 1;
|
|
@@ -3300,7 +3573,7 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
3300
3573
|
color: #005614;
|
|
3301
3574
|
}
|
|
3302
3575
|
|
|
3303
|
-
.emotion-
|
|
3576
|
+
.emotion-10 {
|
|
3304
3577
|
height: 100%;
|
|
3305
3578
|
display: -webkit-box;
|
|
3306
3579
|
display: -webkit-flex;
|
|
@@ -3324,7 +3597,7 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
3324
3597
|
padding: 0 10px;
|
|
3325
3598
|
}
|
|
3326
3599
|
|
|
3327
|
-
.emotion-
|
|
3600
|
+
.emotion-12 {
|
|
3328
3601
|
display: -webkit-box;
|
|
3329
3602
|
display: -webkit-flex;
|
|
3330
3603
|
display: -ms-flexbox;
|
|
@@ -3335,7 +3608,7 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
3335
3608
|
align-items: center;
|
|
3336
3609
|
}
|
|
3337
3610
|
|
|
3338
|
-
.emotion-
|
|
3611
|
+
.emotion-14 {
|
|
3339
3612
|
border: 0;
|
|
3340
3613
|
border-radius: 5px;
|
|
3341
3614
|
cursor: pointer;
|
|
@@ -3355,18 +3628,18 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
3355
3628
|
}
|
|
3356
3629
|
|
|
3357
3630
|
@media (max-width: 1200px) {
|
|
3358
|
-
.emotion-
|
|
3631
|
+
.emotion-14 {
|
|
3359
3632
|
padding: 0 10px;
|
|
3360
3633
|
}
|
|
3361
3634
|
}
|
|
3362
3635
|
|
|
3363
|
-
.emotion-
|
|
3636
|
+
.emotion-14[disabled] {
|
|
3364
3637
|
background-color: #eff0f4;
|
|
3365
3638
|
color: #798291;
|
|
3366
3639
|
cursor: default;
|
|
3367
3640
|
}
|
|
3368
3641
|
|
|
3369
|
-
.emotion-
|
|
3642
|
+
.emotion-16 {
|
|
3370
3643
|
border: 0;
|
|
3371
3644
|
border-radius: 5px;
|
|
3372
3645
|
cursor: pointer;
|
|
@@ -3386,12 +3659,12 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
3386
3659
|
}
|
|
3387
3660
|
|
|
3388
3661
|
@media (max-width: 1200px) {
|
|
3389
|
-
.emotion-
|
|
3662
|
+
.emotion-16 {
|
|
3390
3663
|
padding: 0 10px;
|
|
3391
3664
|
}
|
|
3392
3665
|
}
|
|
3393
3666
|
|
|
3394
|
-
.emotion-
|
|
3667
|
+
.emotion-18 {
|
|
3395
3668
|
display: -webkit-box;
|
|
3396
3669
|
display: -webkit-flex;
|
|
3397
3670
|
display: -ms-flexbox;
|
|
@@ -3406,7 +3679,7 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
3406
3679
|
justify-content: flex-end;
|
|
3407
3680
|
}
|
|
3408
3681
|
|
|
3409
|
-
.emotion-
|
|
3682
|
+
.emotion-20 {
|
|
3410
3683
|
height: 100%;
|
|
3411
3684
|
display: -webkit-box;
|
|
3412
3685
|
display: -webkit-flex;
|
|
@@ -3425,51 +3698,51 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
3425
3698
|
class="emotion-0 emotion-1"
|
|
3426
3699
|
>
|
|
3427
3700
|
<mock-link
|
|
3428
|
-
|
|
3701
|
+
class="emotion-2 emotion-3"
|
|
3429
3702
|
to=""
|
|
3430
3703
|
>
|
|
3431
3704
|
<div
|
|
3432
|
-
class="emotion-
|
|
3705
|
+
class="emotion-4 emotion-5"
|
|
3433
3706
|
>
|
|
3434
3707
|
←
|
|
3435
3708
|
</div>
|
|
3436
3709
|
<div>
|
|
3437
3710
|
<div
|
|
3438
|
-
class="emotion-
|
|
3711
|
+
class="emotion-6 emotion-7"
|
|
3439
3712
|
>
|
|
3440
3713
|
editor.editorToolbar.backCollection
|
|
3441
3714
|
</div>
|
|
3442
3715
|
<div
|
|
3443
|
-
class="emotion-
|
|
3716
|
+
class="emotion-8 emotion-9"
|
|
3444
3717
|
>
|
|
3445
3718
|
editor.editorToolbar.changesSaved
|
|
3446
3719
|
</div>
|
|
3447
3720
|
</div>
|
|
3448
3721
|
</mock-link>
|
|
3449
3722
|
<div
|
|
3450
|
-
class="emotion-
|
|
3723
|
+
class="emotion-10 emotion-11"
|
|
3451
3724
|
>
|
|
3452
3725
|
<div
|
|
3453
|
-
class="emotion-
|
|
3726
|
+
class="emotion-12 emotion-13"
|
|
3454
3727
|
>
|
|
3455
3728
|
<button
|
|
3456
|
-
class="emotion-
|
|
3729
|
+
class="emotion-14 emotion-15"
|
|
3457
3730
|
disabled=""
|
|
3458
3731
|
>
|
|
3459
3732
|
editor.editorToolbar.save
|
|
3460
3733
|
</button>
|
|
3461
3734
|
<button
|
|
3462
|
-
class="emotion-
|
|
3735
|
+
class="emotion-16 emotion-17"
|
|
3463
3736
|
>
|
|
3464
3737
|
editor.editorToolbar.deleteUnpublishedEntry
|
|
3465
3738
|
</button>
|
|
3466
3739
|
</div>
|
|
3467
3740
|
<div
|
|
3468
|
-
class="emotion-
|
|
3741
|
+
class="emotion-18 emotion-19"
|
|
3469
3742
|
/>
|
|
3470
3743
|
</div>
|
|
3471
3744
|
<div
|
|
3472
|
-
class="emotion-
|
|
3745
|
+
class="emotion-20 emotion-21"
|
|
3473
3746
|
>
|
|
3474
3747
|
<mock-settings-dropdown />
|
|
3475
3748
|
</div>
|
|
@@ -3499,18 +3772,39 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
3499
3772
|
}
|
|
3500
3773
|
|
|
3501
3774
|
.emotion-2 {
|
|
3775
|
+
height: 100%;
|
|
3776
|
+
display: -webkit-box;
|
|
3777
|
+
display: -webkit-flex;
|
|
3778
|
+
display: -ms-flexbox;
|
|
3779
|
+
display: flex;
|
|
3780
|
+
-webkit-align-items: center;
|
|
3781
|
+
-webkit-box-align: center;
|
|
3782
|
+
-ms-flex-align: center;
|
|
3783
|
+
align-items: center;
|
|
3784
|
+
border: 0 solid #dfdfe3;
|
|
3785
|
+
border-right-width: 1px;
|
|
3786
|
+
font-weight: normal;
|
|
3787
|
+
padding: 0 20px;
|
|
3788
|
+
}
|
|
3789
|
+
|
|
3790
|
+
.emotion-2:hover,
|
|
3791
|
+
.emotion-2:focus {
|
|
3792
|
+
background-color: #f1f2f4;
|
|
3793
|
+
}
|
|
3794
|
+
|
|
3795
|
+
.emotion-4 {
|
|
3502
3796
|
color: #313d3e;
|
|
3503
3797
|
font-size: 21px;
|
|
3504
3798
|
font-weight: 600;
|
|
3505
3799
|
margin-right: 16px;
|
|
3506
3800
|
}
|
|
3507
3801
|
|
|
3508
|
-
.emotion-
|
|
3802
|
+
.emotion-6 {
|
|
3509
3803
|
color: #313d3e;
|
|
3510
3804
|
font-size: 14px;
|
|
3511
3805
|
}
|
|
3512
3806
|
|
|
3513
|
-
.emotion-
|
|
3807
|
+
.emotion-8 {
|
|
3514
3808
|
margin-top: 6px;
|
|
3515
3809
|
font-size: 13px;
|
|
3516
3810
|
line-height: 1;
|
|
@@ -3520,7 +3814,7 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
3520
3814
|
color: #005614;
|
|
3521
3815
|
}
|
|
3522
3816
|
|
|
3523
|
-
.emotion-
|
|
3817
|
+
.emotion-10 {
|
|
3524
3818
|
height: 100%;
|
|
3525
3819
|
display: -webkit-box;
|
|
3526
3820
|
display: -webkit-flex;
|
|
@@ -3544,7 +3838,7 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
3544
3838
|
padding: 0 10px;
|
|
3545
3839
|
}
|
|
3546
3840
|
|
|
3547
|
-
.emotion-
|
|
3841
|
+
.emotion-12 {
|
|
3548
3842
|
display: -webkit-box;
|
|
3549
3843
|
display: -webkit-flex;
|
|
3550
3844
|
display: -ms-flexbox;
|
|
@@ -3555,7 +3849,7 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
3555
3849
|
align-items: center;
|
|
3556
3850
|
}
|
|
3557
3851
|
|
|
3558
|
-
.emotion-
|
|
3852
|
+
.emotion-14 {
|
|
3559
3853
|
border: 0;
|
|
3560
3854
|
border-radius: 5px;
|
|
3561
3855
|
cursor: pointer;
|
|
@@ -3575,18 +3869,18 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
3575
3869
|
}
|
|
3576
3870
|
|
|
3577
3871
|
@media (max-width: 1200px) {
|
|
3578
|
-
.emotion-
|
|
3872
|
+
.emotion-14 {
|
|
3579
3873
|
padding: 0 10px;
|
|
3580
3874
|
}
|
|
3581
3875
|
}
|
|
3582
3876
|
|
|
3583
|
-
.emotion-
|
|
3877
|
+
.emotion-14[disabled] {
|
|
3584
3878
|
background-color: #eff0f4;
|
|
3585
3879
|
color: #798291;
|
|
3586
3880
|
cursor: default;
|
|
3587
3881
|
}
|
|
3588
3882
|
|
|
3589
|
-
.emotion-
|
|
3883
|
+
.emotion-16 {
|
|
3590
3884
|
border: 0;
|
|
3591
3885
|
border-radius: 5px;
|
|
3592
3886
|
cursor: pointer;
|
|
@@ -3606,12 +3900,12 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
3606
3900
|
}
|
|
3607
3901
|
|
|
3608
3902
|
@media (max-width: 1200px) {
|
|
3609
|
-
.emotion-
|
|
3903
|
+
.emotion-16 {
|
|
3610
3904
|
padding: 0 10px;
|
|
3611
3905
|
}
|
|
3612
3906
|
}
|
|
3613
3907
|
|
|
3614
|
-
.emotion-
|
|
3908
|
+
.emotion-18 {
|
|
3615
3909
|
display: -webkit-box;
|
|
3616
3910
|
display: -webkit-flex;
|
|
3617
3911
|
display: -ms-flexbox;
|
|
@@ -3626,7 +3920,7 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
3626
3920
|
justify-content: flex-end;
|
|
3627
3921
|
}
|
|
3628
3922
|
|
|
3629
|
-
.emotion-
|
|
3923
|
+
.emotion-20 {
|
|
3630
3924
|
height: 100%;
|
|
3631
3925
|
display: -webkit-box;
|
|
3632
3926
|
display: -webkit-flex;
|
|
@@ -3645,51 +3939,51 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
3645
3939
|
class="emotion-0 emotion-1"
|
|
3646
3940
|
>
|
|
3647
3941
|
<mock-link
|
|
3648
|
-
|
|
3942
|
+
class="emotion-2 emotion-3"
|
|
3649
3943
|
to=""
|
|
3650
3944
|
>
|
|
3651
3945
|
<div
|
|
3652
|
-
class="emotion-
|
|
3946
|
+
class="emotion-4 emotion-5"
|
|
3653
3947
|
>
|
|
3654
3948
|
←
|
|
3655
3949
|
</div>
|
|
3656
3950
|
<div>
|
|
3657
3951
|
<div
|
|
3658
|
-
class="emotion-
|
|
3952
|
+
class="emotion-6 emotion-7"
|
|
3659
3953
|
>
|
|
3660
3954
|
editor.editorToolbar.backCollection
|
|
3661
3955
|
</div>
|
|
3662
3956
|
<div
|
|
3663
|
-
class="emotion-
|
|
3957
|
+
class="emotion-8 emotion-9"
|
|
3664
3958
|
>
|
|
3665
3959
|
editor.editorToolbar.changesSaved
|
|
3666
3960
|
</div>
|
|
3667
3961
|
</div>
|
|
3668
3962
|
</mock-link>
|
|
3669
3963
|
<div
|
|
3670
|
-
class="emotion-
|
|
3964
|
+
class="emotion-10 emotion-11"
|
|
3671
3965
|
>
|
|
3672
3966
|
<div
|
|
3673
|
-
class="emotion-
|
|
3967
|
+
class="emotion-12 emotion-13"
|
|
3674
3968
|
>
|
|
3675
3969
|
<button
|
|
3676
|
-
class="emotion-
|
|
3970
|
+
class="emotion-14 emotion-15"
|
|
3677
3971
|
disabled=""
|
|
3678
3972
|
>
|
|
3679
3973
|
editor.editorToolbar.save
|
|
3680
3974
|
</button>
|
|
3681
3975
|
<button
|
|
3682
|
-
class="emotion-
|
|
3976
|
+
class="emotion-16 emotion-17"
|
|
3683
3977
|
>
|
|
3684
3978
|
editor.editorToolbar.deleteUnpublishedChanges
|
|
3685
3979
|
</button>
|
|
3686
3980
|
</div>
|
|
3687
3981
|
<div
|
|
3688
|
-
class="emotion-
|
|
3982
|
+
class="emotion-18 emotion-19"
|
|
3689
3983
|
/>
|
|
3690
3984
|
</div>
|
|
3691
3985
|
<div
|
|
3692
|
-
class="emotion-
|
|
3986
|
+
class="emotion-20 emotion-21"
|
|
3693
3987
|
>
|
|
3694
3988
|
<mock-settings-dropdown />
|
|
3695
3989
|
</div>
|
|
@@ -3719,18 +4013,39 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
3719
4013
|
}
|
|
3720
4014
|
|
|
3721
4015
|
.emotion-2 {
|
|
4016
|
+
height: 100%;
|
|
4017
|
+
display: -webkit-box;
|
|
4018
|
+
display: -webkit-flex;
|
|
4019
|
+
display: -ms-flexbox;
|
|
4020
|
+
display: flex;
|
|
4021
|
+
-webkit-align-items: center;
|
|
4022
|
+
-webkit-box-align: center;
|
|
4023
|
+
-ms-flex-align: center;
|
|
4024
|
+
align-items: center;
|
|
4025
|
+
border: 0 solid #dfdfe3;
|
|
4026
|
+
border-right-width: 1px;
|
|
4027
|
+
font-weight: normal;
|
|
4028
|
+
padding: 0 20px;
|
|
4029
|
+
}
|
|
4030
|
+
|
|
4031
|
+
.emotion-2:hover,
|
|
4032
|
+
.emotion-2:focus {
|
|
4033
|
+
background-color: #f1f2f4;
|
|
4034
|
+
}
|
|
4035
|
+
|
|
4036
|
+
.emotion-4 {
|
|
3722
4037
|
color: #313d3e;
|
|
3723
4038
|
font-size: 21px;
|
|
3724
4039
|
font-weight: 600;
|
|
3725
4040
|
margin-right: 16px;
|
|
3726
4041
|
}
|
|
3727
4042
|
|
|
3728
|
-
.emotion-
|
|
4043
|
+
.emotion-6 {
|
|
3729
4044
|
color: #313d3e;
|
|
3730
4045
|
font-size: 14px;
|
|
3731
4046
|
}
|
|
3732
4047
|
|
|
3733
|
-
.emotion-
|
|
4048
|
+
.emotion-8 {
|
|
3734
4049
|
margin-top: 6px;
|
|
3735
4050
|
font-size: 13px;
|
|
3736
4051
|
line-height: 1;
|
|
@@ -3740,7 +4055,7 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
3740
4055
|
color: #005614;
|
|
3741
4056
|
}
|
|
3742
4057
|
|
|
3743
|
-
.emotion-
|
|
4058
|
+
.emotion-10 {
|
|
3744
4059
|
height: 100%;
|
|
3745
4060
|
display: -webkit-box;
|
|
3746
4061
|
display: -webkit-flex;
|
|
@@ -3764,7 +4079,7 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
3764
4079
|
padding: 0 10px;
|
|
3765
4080
|
}
|
|
3766
4081
|
|
|
3767
|
-
.emotion-
|
|
4082
|
+
.emotion-12 {
|
|
3768
4083
|
display: -webkit-box;
|
|
3769
4084
|
display: -webkit-flex;
|
|
3770
4085
|
display: -ms-flexbox;
|
|
@@ -3775,7 +4090,7 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
3775
4090
|
align-items: center;
|
|
3776
4091
|
}
|
|
3777
4092
|
|
|
3778
|
-
.emotion-
|
|
4093
|
+
.emotion-14 {
|
|
3779
4094
|
border: 0;
|
|
3780
4095
|
border-radius: 5px;
|
|
3781
4096
|
cursor: pointer;
|
|
@@ -3795,18 +4110,18 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
3795
4110
|
}
|
|
3796
4111
|
|
|
3797
4112
|
@media (max-width: 1200px) {
|
|
3798
|
-
.emotion-
|
|
4113
|
+
.emotion-14 {
|
|
3799
4114
|
padding: 0 10px;
|
|
3800
4115
|
}
|
|
3801
4116
|
}
|
|
3802
4117
|
|
|
3803
|
-
.emotion-
|
|
4118
|
+
.emotion-14[disabled] {
|
|
3804
4119
|
background-color: #eff0f4;
|
|
3805
4120
|
color: #798291;
|
|
3806
4121
|
cursor: default;
|
|
3807
4122
|
}
|
|
3808
4123
|
|
|
3809
|
-
.emotion-
|
|
4124
|
+
.emotion-16 {
|
|
3810
4125
|
border: 0;
|
|
3811
4126
|
border-radius: 5px;
|
|
3812
4127
|
cursor: pointer;
|
|
@@ -3826,12 +4141,12 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
3826
4141
|
}
|
|
3827
4142
|
|
|
3828
4143
|
@media (max-width: 1200px) {
|
|
3829
|
-
.emotion-
|
|
4144
|
+
.emotion-16 {
|
|
3830
4145
|
padding: 0 10px;
|
|
3831
4146
|
}
|
|
3832
4147
|
}
|
|
3833
4148
|
|
|
3834
|
-
.emotion-
|
|
4149
|
+
.emotion-18 {
|
|
3835
4150
|
display: -webkit-box;
|
|
3836
4151
|
display: -webkit-flex;
|
|
3837
4152
|
display: -ms-flexbox;
|
|
@@ -3846,7 +4161,7 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
3846
4161
|
justify-content: flex-end;
|
|
3847
4162
|
}
|
|
3848
4163
|
|
|
3849
|
-
.emotion-
|
|
4164
|
+
.emotion-20 {
|
|
3850
4165
|
height: 100%;
|
|
3851
4166
|
display: -webkit-box;
|
|
3852
4167
|
display: -webkit-flex;
|
|
@@ -3865,51 +4180,51 @@ exports[`EditorToolbar should render with workflow controls hasUnpublishedChange
|
|
|
3865
4180
|
class="emotion-0 emotion-1"
|
|
3866
4181
|
>
|
|
3867
4182
|
<mock-link
|
|
3868
|
-
|
|
4183
|
+
class="emotion-2 emotion-3"
|
|
3869
4184
|
to=""
|
|
3870
4185
|
>
|
|
3871
4186
|
<div
|
|
3872
|
-
class="emotion-
|
|
4187
|
+
class="emotion-4 emotion-5"
|
|
3873
4188
|
>
|
|
3874
4189
|
←
|
|
3875
4190
|
</div>
|
|
3876
4191
|
<div>
|
|
3877
4192
|
<div
|
|
3878
|
-
class="emotion-
|
|
4193
|
+
class="emotion-6 emotion-7"
|
|
3879
4194
|
>
|
|
3880
4195
|
editor.editorToolbar.backCollection
|
|
3881
4196
|
</div>
|
|
3882
4197
|
<div
|
|
3883
|
-
class="emotion-
|
|
4198
|
+
class="emotion-8 emotion-9"
|
|
3884
4199
|
>
|
|
3885
4200
|
editor.editorToolbar.changesSaved
|
|
3886
4201
|
</div>
|
|
3887
4202
|
</div>
|
|
3888
4203
|
</mock-link>
|
|
3889
4204
|
<div
|
|
3890
|
-
class="emotion-
|
|
4205
|
+
class="emotion-10 emotion-11"
|
|
3891
4206
|
>
|
|
3892
4207
|
<div
|
|
3893
|
-
class="emotion-
|
|
4208
|
+
class="emotion-12 emotion-13"
|
|
3894
4209
|
>
|
|
3895
4210
|
<button
|
|
3896
|
-
class="emotion-
|
|
4211
|
+
class="emotion-14 emotion-15"
|
|
3897
4212
|
disabled=""
|
|
3898
4213
|
>
|
|
3899
4214
|
editor.editorToolbar.save
|
|
3900
4215
|
</button>
|
|
3901
4216
|
<button
|
|
3902
|
-
class="emotion-
|
|
4217
|
+
class="emotion-16 emotion-17"
|
|
3903
4218
|
>
|
|
3904
4219
|
editor.editorToolbar.deleteUnpublishedChanges
|
|
3905
4220
|
</button>
|
|
3906
4221
|
</div>
|
|
3907
4222
|
<div
|
|
3908
|
-
class="emotion-
|
|
4223
|
+
class="emotion-18 emotion-19"
|
|
3909
4224
|
/>
|
|
3910
4225
|
</div>
|
|
3911
4226
|
<div
|
|
3912
|
-
class="emotion-
|
|
4227
|
+
class="emotion-20 emotion-21"
|
|
3913
4228
|
>
|
|
3914
4229
|
<mock-settings-dropdown />
|
|
3915
4230
|
</div>
|