pages_core 3.12.4 → 3.12.5
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.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/app/assets/builds/pages_core/admin-dist.js +8 -43
- data/app/assets/builds/pages_core/admin-dist.js.map +4 -4
- data/app/assets/builds/pages_core/admin.css +264 -133
- data/app/assets/stylesheets/pages_core/admin/components/attachments.css +3 -4
- data/app/assets/stylesheets/pages_core/admin/components/forms.css +17 -16
- data/app/assets/stylesheets/pages_core/admin/components/image_editor.css +8 -4
- data/app/assets/stylesheets/pages_core/admin/components/image_grid.css +1 -1
- data/app/assets/stylesheets/pages_core/admin/components/list_table.css +11 -3
- data/app/assets/stylesheets/pages_core/admin/components/modal.css +9 -5
- data/app/assets/stylesheets/pages_core/admin/components/page_tree.css +5 -1
- data/app/assets/stylesheets/pages_core/admin/components/toast.css +2 -2
- data/app/assets/stylesheets/pages_core/admin/controllers/pages.css +4 -2
- data/app/assets/stylesheets/pages_core/admin/vars.css +2 -1
- data/app/controllers/admin/calendars_controller.rb +2 -2
- data/app/controllers/admin/categories_controller.rb +3 -3
- data/app/controllers/admin/news_controller.rb +6 -6
- data/app/controllers/admin/pages_controller.rb +12 -11
- data/app/controllers/admin/users_controller.rb +1 -1
- data/app/controllers/concerns/pages_core/preview_pages_controller.rb +15 -17
- data/app/controllers/pages_core/admin_controller.rb +2 -2
- data/app/controllers/pages_core/base_controller.rb +1 -8
- data/app/controllers/pages_core/frontend/pages_controller.rb +13 -5
- data/app/controllers/pages_core/frontend_controller.rb +12 -7
- data/app/helpers/admin/menu_helper.rb +2 -0
- data/app/helpers/admin/pages_helper.rb +1 -4
- data/app/helpers/pages_core/admin/admin_helper.rb +0 -1
- data/app/helpers/pages_core/admin/content_tabs_helper.rb +9 -2
- data/app/helpers/pages_core/application_helper.rb +2 -3
- data/app/helpers/pages_core/frontend_helper.rb +1 -1
- data/app/helpers/pages_core/head_tags_helper.rb +15 -46
- data/app/helpers/pages_core/images_helper.rb +76 -21
- data/app/helpers/pages_core/locales_helper.rb +9 -0
- data/app/helpers/pages_core/open_graph_tags_helper.rb +3 -5
- data/app/helpers/pages_core/page_path_helper.rb +1 -1
- data/app/javascript/components/Attachments/Attachment.tsx +55 -52
- data/app/javascript/components/Attachments/AttachmentEditor.tsx +45 -50
- data/app/javascript/components/Attachments/Placeholder.tsx +1 -2
- data/app/javascript/components/Attachments.jsx +69 -57
- data/app/javascript/components/DateRangeSelect.jsx +94 -54
- data/app/javascript/components/EditableImage.tsx +20 -16
- data/app/javascript/components/FileUploadButton.tsx +12 -12
- data/app/javascript/components/ImageCropper/FocalPoint.tsx +22 -20
- data/app/javascript/components/ImageCropper/Image.tsx +20 -16
- data/app/javascript/components/ImageCropper/Toolbar.tsx +35 -27
- data/app/javascript/components/ImageCropper/useCrop.ts +105 -91
- data/app/javascript/components/ImageCropper.tsx +34 -25
- data/app/javascript/components/ImageEditor/Form.tsx +32 -43
- data/app/javascript/components/ImageEditor.tsx +29 -21
- data/app/javascript/components/ImageGrid/DragElement.tsx +6 -4
- data/app/javascript/components/ImageGrid/GridImage.tsx +56 -52
- data/app/javascript/components/ImageGrid/Placeholder.tsx +1 -1
- data/app/javascript/components/ImageGrid.jsx +132 -101
- data/app/javascript/components/ImageUploader.tsx +59 -55
- data/app/javascript/components/Modal.tsx +2 -4
- data/app/javascript/components/PageDates.jsx +25 -20
- data/app/javascript/components/PageFiles.jsx +7 -5
- data/app/javascript/components/PageImages.tsx +9 -7
- data/app/javascript/components/PageTree/Draggable.tsx +46 -40
- data/app/javascript/components/PageTree/Node.tsx +111 -95
- data/app/javascript/components/PageTree/types.ts +9 -9
- data/app/javascript/components/PageTree.tsx +44 -29
- data/app/javascript/components/RichTextArea.jsx +51 -37
- data/app/javascript/components/RichTextToolbarButton.tsx +8 -5
- data/app/javascript/components/TagEditor/AddTagForm.tsx +11 -10
- data/app/javascript/components/TagEditor/Tag.tsx +10 -8
- data/app/javascript/components/TagEditor.tsx +15 -10
- data/app/javascript/components/Toast.tsx +3 -7
- data/app/javascript/components/drag/draggedOrder.ts +16 -15
- data/app/javascript/components/drag/types.ts +12 -12
- data/app/javascript/components/drag/useDragCollection.ts +36 -42
- data/app/javascript/components/drag/useDragUploader.ts +3 -2
- data/app/javascript/components/drag.ts +5 -4
- data/app/javascript/controllers/LoginController.ts +0 -1
- data/app/javascript/controllers/MainController.ts +6 -2
- data/app/javascript/controllers/PageOptionsController.js +7 -2
- data/app/javascript/features/RichText.tsx +9 -7
- data/app/javascript/index.ts +5 -3
- data/app/javascript/lib/Tree.ts +27 -24
- data/app/javascript/lib/copyToClipboard.ts +5 -4
- data/app/javascript/lib/readyHandler.ts +4 -4
- data/app/javascript/lib/request.ts +7 -3
- data/app/javascript/stores/useModalStore.ts +3 -3
- data/app/javascript/stores/useToastStore.ts +14 -12
- data/app/javascript/types.ts +22 -22
- data/app/models/concerns/pages_core/page_model/templateable.rb +1 -1
- data/app/views/admin/calendars/show.html.erb +1 -1
- data/app/views/admin/news/index.html.erb +1 -1
- data/app/views/admin/pages/_edit_files.html.erb +1 -1
- data/app/views/admin/pages/_edit_images.html.erb +1 -1
- data/app/views/admin/pages/_list_item.html.erb +1 -1
- data/app/views/admin/pages/_search_bar.html.erb +1 -1
- data/app/views/admin/pages/deleted.html.erb +2 -2
- data/app/views/admin/pages/edit.html.erb +3 -3
- data/app/views/admin/pages/index.html.erb +4 -4
- data/app/views/admin/pages/new.html.erb +1 -1
- data/app/views/admin/pages/search.html.erb +3 -3
- data/app/views/feeds/pages.rss.builder +2 -2
- data/app/views/layouts/admin/_page_header.html.erb +4 -4
- data/app/views/layouts/admin.html.erb +1 -2
- data/config/locales/en.yml +1 -0
- data/lib/pages_core/pages_plugin.rb +5 -3
- data/lib/rails/generators/pages_core/frontend/templates/application.html.erb +15 -13
- data/lib/tasks/pages/reports.rake +26 -0
- metadata +32 -4
- data/app/helpers/pages_core/admin/deprecated_admin_helper.rb +0 -40
- data/app/views/pages_core/_google_analytics.html.erb +0 -8
|
@@ -350,99 +350,197 @@ template {
|
|
|
350
350
|
display: none;
|
|
351
351
|
}
|
|
352
352
|
|
|
353
|
-
.ReactCrop{
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
.ReactCrop__child-wrapper>img,.ReactCrop__child-wrapper>video{display:block;max-width:100%;max-height:inherit}
|
|
362
|
-
|
|
363
|
-
.ReactCrop:not(.ReactCrop--disabled) .ReactCrop__child-wrapper>img,.ReactCrop:not(.ReactCrop--disabled) .ReactCrop__child-wrapper>video{touch-action:none}
|
|
364
|
-
|
|
365
|
-
.ReactCrop:not(.ReactCrop--disabled) .ReactCrop__crop-selection{touch-action:none}
|
|
366
|
-
|
|
367
|
-
.ReactCrop__crop-selection{position:absolute;top:0;left:0;transform:translate3d(0, 0, 0);cursor:move;box-shadow:0 0 0 9999em rgba(0,0,0,.5);border:1px dashed #fff}
|
|
368
|
-
|
|
369
|
-
.ReactCrop--disabled .ReactCrop__crop-selection{cursor:inherit}
|
|
370
|
-
|
|
371
|
-
.ReactCrop--circular-crop .ReactCrop__crop-selection{border-radius:50%;box-shadow:0px 0px 1px 1px #fff,0 0 0 9999em rgba(0,0,0,.5)}
|
|
372
|
-
|
|
373
|
-
.ReactCrop__crop-selection:focus{outline:none;border-color:blue;border-style:solid}
|
|
374
|
-
|
|
375
|
-
.ReactCrop--invisible-crop .ReactCrop__crop-selection{display:none}
|
|
376
|
-
|
|
377
|
-
.ReactCrop__rule-of-thirds-vt::before,.ReactCrop__rule-of-thirds-vt::after,.ReactCrop__rule-of-thirds-hz::before,.ReactCrop__rule-of-thirds-hz::after{content:"";display:block;position:absolute;background-color:rgba(255,255,255,.4)}
|
|
378
|
-
|
|
379
|
-
.ReactCrop__rule-of-thirds-vt::before,.ReactCrop__rule-of-thirds-vt::after{width:1px;height:100%}
|
|
380
|
-
|
|
381
|
-
.ReactCrop__rule-of-thirds-vt::before{left:33.3333%;left:33.3333333333%}
|
|
382
|
-
|
|
383
|
-
.ReactCrop__rule-of-thirds-vt::after{left:66.6666%;left:66.6666666667%}
|
|
384
|
-
|
|
385
|
-
.ReactCrop__rule-of-thirds-hz::before,.ReactCrop__rule-of-thirds-hz::after{width:100%;height:1px}
|
|
386
|
-
|
|
387
|
-
.ReactCrop__rule-of-thirds-hz::before{top:33.3333%;top:33.3333333333%}
|
|
388
|
-
|
|
389
|
-
.ReactCrop__rule-of-thirds-hz::after{top:66.6666%;top:66.6666666667%}
|
|
390
|
-
|
|
391
|
-
.ReactCrop__drag-handle{position:absolute}
|
|
392
|
-
|
|
393
|
-
.ReactCrop__drag-handle::after{position:absolute;content:"";display:block;width:10px;height:10px;background-color:rgba(0,0,0,.2);border:1px solid rgba(255,255,255,.7);outline:1px solid rgba(0,0,0,0)}
|
|
394
|
-
|
|
395
|
-
.ReactCrop__drag-handle:focus::after{border-color:blue;background:#2dbfff}
|
|
396
|
-
|
|
397
|
-
.ReactCrop .ord-nw{top:0;left:0;margin-top:-5px;margin-left:-5px;cursor:nw-resize}
|
|
398
|
-
|
|
399
|
-
.ReactCrop .ord-nw::after{top:0;left:0}
|
|
400
|
-
|
|
401
|
-
.ReactCrop .ord-n{top:0;left:50%;margin-top:-5px;margin-left:-5px;cursor:n-resize}
|
|
402
|
-
|
|
403
|
-
.ReactCrop .ord-n::after{top:0}
|
|
404
|
-
|
|
405
|
-
.ReactCrop .ord-ne{top:0;right:0;margin-top:-5px;margin-right:-5px;cursor:ne-resize}
|
|
406
|
-
|
|
407
|
-
.ReactCrop .ord-ne::after{top:0;right:0}
|
|
408
|
-
|
|
409
|
-
.ReactCrop .ord-e{top:50%;right:0;margin-top:-5px;margin-right:-5px;cursor:e-resize}
|
|
410
|
-
|
|
411
|
-
.ReactCrop .ord-e::after{right:0}
|
|
412
|
-
|
|
413
|
-
.ReactCrop .ord-se{bottom:0;right:0;margin-bottom:-5px;margin-right:-5px;cursor:se-resize}
|
|
414
|
-
|
|
415
|
-
.ReactCrop .ord-se::after{bottom:0;right:0}
|
|
416
|
-
|
|
417
|
-
.ReactCrop .ord-s{bottom:0;left:50%;margin-bottom:-5px;margin-left:-5px;cursor:s-resize}
|
|
418
|
-
|
|
419
|
-
.ReactCrop .ord-s::after{bottom:0}
|
|
420
|
-
|
|
421
|
-
.ReactCrop .ord-sw{bottom:0;left:0;margin-bottom:-5px;margin-left:-5px;cursor:sw-resize}
|
|
422
|
-
|
|
423
|
-
.ReactCrop .ord-sw::after{bottom:0;left:0}
|
|
424
|
-
|
|
425
|
-
.ReactCrop .ord-w{top:50%;left:0;margin-top:-5px;margin-left:-5px;cursor:w-resize}
|
|
426
|
-
|
|
427
|
-
.ReactCrop .ord-w::after{left:0}
|
|
428
|
-
|
|
429
|
-
.ReactCrop__disabled .ReactCrop__drag-handle{cursor:inherit}
|
|
430
|
-
|
|
431
|
-
.ReactCrop__drag-bar{position:absolute}
|
|
432
|
-
|
|
433
|
-
.ReactCrop__drag-bar.ord-n{top:0;left:0;width:100%;height:6px;margin-top:-3px}
|
|
353
|
+
.ReactCrop {
|
|
354
|
+
position: relative;
|
|
355
|
+
display: inline-block;
|
|
356
|
+
cursor: crosshair;
|
|
357
|
+
overflow: hidden;
|
|
358
|
+
max-width: 100%;
|
|
359
|
+
background-color: #000; }
|
|
434
360
|
|
|
435
|
-
.
|
|
361
|
+
.ReactCrop:focus {
|
|
362
|
+
outline: none; }
|
|
436
363
|
|
|
437
|
-
.
|
|
364
|
+
.ReactCrop--disabled {
|
|
365
|
+
cursor: inherit; }
|
|
438
366
|
|
|
439
|
-
.
|
|
367
|
+
.ReactCrop__image {
|
|
368
|
+
/* autoprefixer: off */
|
|
369
|
+
display: block;
|
|
370
|
+
max-width: 100%;
|
|
371
|
+
max-height: -webkit-fill-available;
|
|
372
|
+
max-height: -moz-available;
|
|
373
|
+
max-height: stretch; }
|
|
440
374
|
|
|
441
|
-
.ReactCrop--
|
|
375
|
+
.ReactCrop--crop-invisible .ReactCrop__image {
|
|
376
|
+
opacity: 0.5; }
|
|
442
377
|
|
|
443
|
-
.
|
|
378
|
+
.ReactCrop__crop-selection {
|
|
379
|
+
position: absolute;
|
|
380
|
+
top: 0;
|
|
381
|
+
left: 0;
|
|
382
|
+
transform: translate3d(0, 0, 0);
|
|
383
|
+
box-sizing: border-box;
|
|
384
|
+
cursor: move;
|
|
385
|
+
box-shadow: 0 0 0 9999em rgba(0, 0, 0, 0.5);
|
|
386
|
+
border: 1px solid;
|
|
387
|
+
border-image-source: url("data:image/gif;base64,R0lGODlhCgAKAJECAAAAAP///////wAAACH/C05FVFNDQVBFMi4wAwEAAAAh/wtYTVAgRGF0YVhNUDw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OEI5RDc5MTFDNkE2MTFFM0JCMDZEODI2QTI4MzJBOTIiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OEI5RDc5MTBDNkE2MTFFM0JCMDZEODI2QTI4MzJBOTIiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuZGlkOjAyODAxMTc0MDcyMDY4MTE4MDgzQzNDMjA5MzREQ0ZDIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjAyODAxMTc0MDcyMDY4MTE4MDgzQzNDMjA5MzREQ0ZDIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Af/+/fz7+vn49/b19PPy8fDv7u3s6+rp6Ofm5eTj4uHg397d3Nva2djX1tXU09LR0M/OzczLysnIx8bFxMPCwcC/vr28u7q5uLe2tbSzsrGwr66trKuqqainpqWko6KhoJ+enZybmpmYl5aVlJOSkZCPjo2Mi4qJiIeGhYSDgoGAf359fHt6eXh3dnV0c3JxcG9ubWxramloZ2ZlZGNiYWBfXl1cW1pZWFdWVVRTUlFQT05NTEtKSUhHRkVEQ0JBQD8+PTw7Ojk4NzY1NDMyMTAvLi0sKyopKCcmJSQjIiEgHx4dHBsaGRgXFhUUExIREA8ODQwLCgkIBwYFBAMCAQAAIfkEBQoAAgAsAAAAAAoACgAAAhWEERkn7W3ei7KlagMWF/dKgYeyGAUAIfkEBQoAAgAsAAAAAAoACgAAAg+UYwLJ7RnQm7QmsCyVKhUAIfkEBQoAAgAsAAAAAAoACgAAAhCUYgLJHdiinNSAVfOEKoUCACH5BAUKAAIALAAAAAAKAAoAAAIRVISAdusPo3RAzYtjaMIaUQAAIfkEBQoAAgAsAAAAAAoACgAAAg+MDiem7Q8bSLFaG5il6xQAIfkEBQoAAgAsAAAAAAoACgAAAg+UYRLJ7QnQm7SmsCyVKhUAIfkEBQoAAgAsAAAAAAoACgAAAhCUYBLJDdiinNSEVfOEKoECACH5BAUKAAIALAAAAAAKAAoAAAIRFISBdusPo3RBzYsjaMIaUQAAOw==");
|
|
388
|
+
border-image-slice: 1;
|
|
389
|
+
border-image-repeat: repeat; }
|
|
390
|
+
|
|
391
|
+
.ReactCrop--disabled .ReactCrop__crop-selection {
|
|
392
|
+
cursor: inherit; }
|
|
393
|
+
|
|
394
|
+
.ReactCrop__drag-handle {
|
|
395
|
+
position: absolute;
|
|
396
|
+
width: 9px;
|
|
397
|
+
height: 9px;
|
|
398
|
+
background-color: rgba(0, 0, 0, 0.2);
|
|
399
|
+
border: 1px solid rgba(255, 255, 255, 0.7);
|
|
400
|
+
box-sizing: border-box;
|
|
401
|
+
outline: 1px solid transparent; }
|
|
402
|
+
|
|
403
|
+
.ReactCrop .ord-nw {
|
|
404
|
+
top: 0;
|
|
405
|
+
left: 0;
|
|
406
|
+
margin-top: -5px;
|
|
407
|
+
margin-left: -5px;
|
|
408
|
+
cursor: nw-resize; }
|
|
409
|
+
|
|
410
|
+
.ReactCrop .ord-n {
|
|
411
|
+
top: 0;
|
|
412
|
+
left: 50%;
|
|
413
|
+
margin-top: -5px;
|
|
414
|
+
margin-left: -5px;
|
|
415
|
+
cursor: n-resize; }
|
|
416
|
+
|
|
417
|
+
.ReactCrop .ord-ne {
|
|
418
|
+
top: 0;
|
|
419
|
+
right: 0;
|
|
420
|
+
margin-top: -5px;
|
|
421
|
+
margin-right: -5px;
|
|
422
|
+
cursor: ne-resize; }
|
|
423
|
+
|
|
424
|
+
.ReactCrop .ord-e {
|
|
425
|
+
top: 50%;
|
|
426
|
+
right: 0;
|
|
427
|
+
margin-top: -5px;
|
|
428
|
+
margin-right: -5px;
|
|
429
|
+
cursor: e-resize; }
|
|
430
|
+
|
|
431
|
+
.ReactCrop .ord-se {
|
|
432
|
+
bottom: 0;
|
|
433
|
+
right: 0;
|
|
434
|
+
margin-bottom: -5px;
|
|
435
|
+
margin-right: -5px;
|
|
436
|
+
cursor: se-resize; }
|
|
437
|
+
|
|
438
|
+
.ReactCrop .ord-s {
|
|
439
|
+
bottom: 0;
|
|
440
|
+
left: 50%;
|
|
441
|
+
margin-bottom: -5px;
|
|
442
|
+
margin-left: -5px;
|
|
443
|
+
cursor: s-resize; }
|
|
444
|
+
|
|
445
|
+
.ReactCrop .ord-sw {
|
|
446
|
+
bottom: 0;
|
|
447
|
+
left: 0;
|
|
448
|
+
margin-bottom: -5px;
|
|
449
|
+
margin-left: -5px;
|
|
450
|
+
cursor: sw-resize; }
|
|
451
|
+
|
|
452
|
+
.ReactCrop .ord-w {
|
|
453
|
+
top: 50%;
|
|
454
|
+
left: 0;
|
|
455
|
+
margin-top: -5px;
|
|
456
|
+
margin-left: -5px;
|
|
457
|
+
cursor: w-resize; }
|
|
458
|
+
|
|
459
|
+
.ReactCrop__disabled .ReactCrop__drag-handle {
|
|
460
|
+
cursor: inherit; }
|
|
461
|
+
|
|
462
|
+
.ReactCrop__drag-bar {
|
|
463
|
+
position: absolute; }
|
|
464
|
+
|
|
465
|
+
.ReactCrop__drag-bar.ord-n {
|
|
466
|
+
top: 0;
|
|
467
|
+
left: 0;
|
|
468
|
+
width: 100%;
|
|
469
|
+
height: 6px;
|
|
470
|
+
margin-top: -3px; }
|
|
471
|
+
|
|
472
|
+
.ReactCrop__drag-bar.ord-e {
|
|
473
|
+
right: 0;
|
|
474
|
+
top: 0;
|
|
475
|
+
width: 6px;
|
|
476
|
+
height: 100%;
|
|
477
|
+
margin-right: -3px; }
|
|
478
|
+
|
|
479
|
+
.ReactCrop__drag-bar.ord-s {
|
|
480
|
+
bottom: 0;
|
|
481
|
+
left: 0;
|
|
482
|
+
width: 100%;
|
|
483
|
+
height: 6px;
|
|
484
|
+
margin-bottom: -3px; }
|
|
444
485
|
|
|
445
|
-
|
|
486
|
+
.ReactCrop__drag-bar.ord-w {
|
|
487
|
+
top: 0;
|
|
488
|
+
left: 0;
|
|
489
|
+
width: 6px;
|
|
490
|
+
height: 100%;
|
|
491
|
+
margin-left: -3px; }
|
|
492
|
+
|
|
493
|
+
.ReactCrop--new-crop .ReactCrop__drag-bar,
|
|
494
|
+
.ReactCrop--new-crop .ReactCrop__drag-handle,
|
|
495
|
+
.ReactCrop--fixed-aspect .ReactCrop__drag-bar {
|
|
496
|
+
display: none; }
|
|
497
|
+
|
|
498
|
+
.ReactCrop--fixed-aspect .ReactCrop__drag-handle.ord-n,
|
|
499
|
+
.ReactCrop--fixed-aspect .ReactCrop__drag-handle.ord-e,
|
|
500
|
+
.ReactCrop--fixed-aspect .ReactCrop__drag-handle.ord-s,
|
|
501
|
+
.ReactCrop--fixed-aspect .ReactCrop__drag-handle.ord-w {
|
|
502
|
+
display: none; }
|
|
503
|
+
|
|
504
|
+
@media (max-width: 768px), (pointer: coarse) {
|
|
505
|
+
.ReactCrop__drag-handle {
|
|
506
|
+
width: 17px;
|
|
507
|
+
height: 17px; }
|
|
508
|
+
.ReactCrop .ord-nw {
|
|
509
|
+
margin-top: -9px;
|
|
510
|
+
margin-left: -9px; }
|
|
511
|
+
.ReactCrop .ord-n {
|
|
512
|
+
margin-top: -9px;
|
|
513
|
+
margin-left: -9px; }
|
|
514
|
+
.ReactCrop .ord-ne {
|
|
515
|
+
margin-top: -9px;
|
|
516
|
+
margin-right: -9px; }
|
|
517
|
+
.ReactCrop .ord-e {
|
|
518
|
+
margin-top: -9px;
|
|
519
|
+
margin-right: -9px; }
|
|
520
|
+
.ReactCrop .ord-se {
|
|
521
|
+
margin-bottom: -9px;
|
|
522
|
+
margin-right: -9px; }
|
|
523
|
+
.ReactCrop .ord-s {
|
|
524
|
+
margin-bottom: -9px;
|
|
525
|
+
margin-left: -9px; }
|
|
526
|
+
.ReactCrop .ord-sw {
|
|
527
|
+
margin-bottom: -9px;
|
|
528
|
+
margin-left: -9px; }
|
|
529
|
+
.ReactCrop .ord-w {
|
|
530
|
+
margin-top: -9px;
|
|
531
|
+
margin-left: -9px; }
|
|
532
|
+
.ReactCrop__drag-bar.ord-n {
|
|
533
|
+
height: 14px;
|
|
534
|
+
margin-top: -7px; }
|
|
535
|
+
.ReactCrop__drag-bar.ord-e {
|
|
536
|
+
width: 14px;
|
|
537
|
+
margin-right: -7px; }
|
|
538
|
+
.ReactCrop__drag-bar.ord-s {
|
|
539
|
+
height: 14px;
|
|
540
|
+
margin-bottom: -7px; }
|
|
541
|
+
.ReactCrop__drag-bar.ord-w {
|
|
542
|
+
width: 14px;
|
|
543
|
+
margin-left: -7px; } }
|
|
446
544
|
|
|
447
545
|
/*!
|
|
448
546
|
* Font Awesome Free 6.2.1 by @fontawesome - https://fontawesome.com
|
|
@@ -6757,7 +6855,8 @@ readers do not read off random characters that represent icons */
|
|
|
6757
6855
|
font-weight: 400; }
|
|
6758
6856
|
|
|
6759
6857
|
:root {
|
|
6760
|
-
--font-os-sans: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, "Segoe UI",
|
|
6858
|
+
--font-os-sans: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, "Segoe UI",
|
|
6859
|
+
Roboto, Ubuntu, "Helvetica Neue", Oxygen, Cantarell, sans-serif;
|
|
6761
6860
|
|
|
6762
6861
|
--red: #c00007;
|
|
6763
6862
|
--red-transparent: rgba(192,0,7,0.25098);
|
|
@@ -6827,8 +6926,7 @@ readers do not read off random characters that represent icons */
|
|
|
6827
6926
|
padding: 16px 0px 16px 40px;
|
|
6828
6927
|
cursor: pointer;
|
|
6829
6928
|
background: #fff;
|
|
6830
|
-
transition: padding-left 50ms ease-in-out,
|
|
6831
|
-
background 150ms ease-in-out;
|
|
6929
|
+
transition: padding-left 50ms ease-in-out, background 150ms ease-in-out;
|
|
6832
6930
|
}
|
|
6833
6931
|
|
|
6834
6932
|
.attachments .attachment .attachment-info {
|
|
@@ -6925,18 +7023,18 @@ readers do not read off random characters that represent icons */
|
|
|
6925
7023
|
margin-top: 24px;
|
|
6926
7024
|
}
|
|
6927
7025
|
|
|
6928
|
-
.attachment-editor form .embed-code input[type=text] {
|
|
7026
|
+
.attachment-editor form .embed-code input[type="text"] {
|
|
6929
7027
|
width: 50%;
|
|
6930
7028
|
max-width: 100px;
|
|
6931
7029
|
margin-right: 8px;
|
|
6932
7030
|
}
|
|
6933
7031
|
|
|
6934
7032
|
.attachment-editor form textarea,
|
|
6935
|
-
.attachment-editor form input[type=text] {
|
|
7033
|
+
.attachment-editor form input[type="text"] {
|
|
6936
7034
|
max-width: 100%;
|
|
6937
7035
|
}
|
|
6938
7036
|
|
|
6939
|
-
.attachment-editor form textarea.description, .attachment-editor form input.description[type=text] {
|
|
7037
|
+
.attachment-editor form textarea.description, .attachment-editor form input.description[type="text"] {
|
|
6940
7038
|
height: 100px;
|
|
6941
7039
|
}
|
|
6942
7040
|
|
|
@@ -7082,9 +7180,9 @@ form .field {
|
|
|
7082
7180
|
padding: 0;
|
|
7083
7181
|
}
|
|
7084
7182
|
|
|
7085
|
-
form .field input[type=text],
|
|
7086
|
-
form .field input[type=password],
|
|
7087
|
-
form .field input[type=email],
|
|
7183
|
+
form .field input[type="text"],
|
|
7184
|
+
form .field input[type="password"],
|
|
7185
|
+
form .field input[type="email"],
|
|
7088
7186
|
form .field textarea {
|
|
7089
7187
|
transition: border-color 150ms ease-out;
|
|
7090
7188
|
}
|
|
@@ -7116,9 +7214,9 @@ form .field .description {
|
|
|
7116
7214
|
margin: 0 0 6px 0;
|
|
7117
7215
|
}
|
|
7118
7216
|
|
|
7119
|
-
form .field-with-warning input[type=text],
|
|
7120
|
-
form .field-with-warning input[type=password],
|
|
7121
|
-
form .field-with-warning input[type=email],
|
|
7217
|
+
form .field-with-warning input[type="text"],
|
|
7218
|
+
form .field-with-warning input[type="password"],
|
|
7219
|
+
form .field-with-warning input[type="email"],
|
|
7122
7220
|
form .field-with-warning textarea {
|
|
7123
7221
|
border-color: #d6a6a8;
|
|
7124
7222
|
border-color: var(--red-light);
|
|
@@ -7160,8 +7258,8 @@ form .row .field.text-field {
|
|
|
7160
7258
|
min-width: 300px;
|
|
7161
7259
|
}
|
|
7162
7260
|
|
|
7163
|
-
form .row input[type=text],
|
|
7164
|
-
form .row input[type=password] {
|
|
7261
|
+
form .row input[type="text"],
|
|
7262
|
+
form .row input[type="password"] {
|
|
7165
7263
|
width: 100%;
|
|
7166
7264
|
max-width: none;
|
|
7167
7265
|
}
|
|
@@ -7176,7 +7274,7 @@ form .date-range-select .date .date-select {
|
|
|
7176
7274
|
display: inline-block;
|
|
7177
7275
|
}
|
|
7178
7276
|
|
|
7179
|
-
form .date-range-select .date input[type=text] {
|
|
7277
|
+
form .date-range-select .date input[type="text"] {
|
|
7180
7278
|
display: inline;
|
|
7181
7279
|
width: auto;
|
|
7182
7280
|
min-width: auto;
|
|
@@ -7215,11 +7313,12 @@ form .page-dates .remove-dates {
|
|
|
7215
7313
|
display: table;
|
|
7216
7314
|
padding: 1px;
|
|
7217
7315
|
padding-right: 22px;
|
|
7218
|
-
background: transparent url("pages/admin/warning-icon.gif") right 5px
|
|
7316
|
+
background: transparent url("pages/admin/warning-icon.gif") right 5px
|
|
7317
|
+
no-repeat;
|
|
7219
7318
|
}
|
|
7220
7319
|
|
|
7221
|
-
input[type=text],
|
|
7222
|
-
input[type=password],
|
|
7320
|
+
input[type="text"],
|
|
7321
|
+
input[type="password"],
|
|
7223
7322
|
textarea {
|
|
7224
7323
|
width: 100%;
|
|
7225
7324
|
max-width: 450px;
|
|
@@ -7233,21 +7332,21 @@ textarea {
|
|
|
7233
7332
|
font-size: 13px;
|
|
7234
7333
|
}
|
|
7235
7334
|
|
|
7236
|
-
input[type=text]:disabled, input[type=password]:disabled, textarea:disabled {
|
|
7335
|
+
input[type="text"]:disabled, input[type="password"]:disabled, textarea:disabled {
|
|
7237
7336
|
border-color: #eee;
|
|
7238
7337
|
border-color: var(--border-color-light);
|
|
7239
7338
|
color: #666;
|
|
7240
7339
|
color: var(--text-light-color);
|
|
7241
7340
|
}
|
|
7242
7341
|
|
|
7243
|
-
input.warn[type=text], input.warn[type=password], textarea.warn {
|
|
7342
|
+
input.warn[type="text"], input.warn[type="password"], textarea.warn {
|
|
7244
7343
|
border-color: red;
|
|
7245
7344
|
}
|
|
7246
7345
|
|
|
7247
|
-
main .login-form input[type=text],
|
|
7248
|
-
main .login-form input[type=password],
|
|
7249
|
-
input[type=text].large,
|
|
7250
|
-
input[type=password].large {
|
|
7346
|
+
main .login-form input[type="text"],
|
|
7347
|
+
main .login-form input[type="password"],
|
|
7348
|
+
input[type="text"].large,
|
|
7349
|
+
input[type="password"].large {
|
|
7251
7350
|
font-size: 1.4em;
|
|
7252
7351
|
}
|
|
7253
7352
|
|
|
@@ -7265,7 +7364,8 @@ select {
|
|
|
7265
7364
|
-moz-appearance: none;
|
|
7266
7365
|
appearance: none;
|
|
7267
7366
|
cursor: inherit;
|
|
7268
|
-
font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, "Segoe UI",
|
|
7367
|
+
font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, "Segoe UI",
|
|
7368
|
+
Roboto, Ubuntu, "Helvetica Neue", Oxygen, Cantarell, sans-serif;
|
|
7269
7369
|
font-family: var(--font-os-sans);
|
|
7270
7370
|
font-size: 13px;
|
|
7271
7371
|
color: #111;
|
|
@@ -7518,7 +7618,7 @@ main .page-description h3 {
|
|
|
7518
7618
|
cursor: pointer;
|
|
7519
7619
|
display: block;
|
|
7520
7620
|
transition: transform 200ms, box-shadow 200ms, border-color 200ms ease-out;
|
|
7521
|
-
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0
|
|
7621
|
+
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0);
|
|
7522
7622
|
border: 1px solid #fff;
|
|
7523
7623
|
position: relative;
|
|
7524
7624
|
-webkit-perspective: 1000;
|
|
@@ -7531,7 +7631,7 @@ main .page-description h3 {
|
|
|
7531
7631
|
font-size: 14px;
|
|
7532
7632
|
color: #ffdfa0;
|
|
7533
7633
|
color: var(--background-warning-color);
|
|
7534
|
-
text-shadow: 0px 0px 5px rgba(0, 0, 0, 1
|
|
7634
|
+
text-shadow: 0px 0px 5px rgba(0, 0, 0, 1);
|
|
7535
7635
|
z-index: 100;
|
|
7536
7636
|
}
|
|
7537
7637
|
|
|
@@ -7575,7 +7675,10 @@ main .page-description h3 {
|
|
|
7575
7675
|
width: 100%;
|
|
7576
7676
|
height: 100%;
|
|
7577
7677
|
background: #e5e5e5;
|
|
7578
|
-
background-image: linear-gradient(45deg, #fff 25%, transparent 25%),
|
|
7678
|
+
background-image: linear-gradient(45deg, #fff 25%, transparent 25%),
|
|
7679
|
+
linear-gradient(135deg, #fff 25%, transparent 25%),
|
|
7680
|
+
linear-gradient(45deg, transparent 75%, #fff 75%),
|
|
7681
|
+
linear-gradient(135deg, transparent 75%, #fff 75%);
|
|
7579
7682
|
background-size: 12px 12px;
|
|
7580
7683
|
background-position: 0 0, 6px 0, 6px -6px, 0px 6px;
|
|
7581
7684
|
display: flex;
|
|
@@ -7700,7 +7803,8 @@ main .page-description h3 {
|
|
|
7700
7803
|
-moz-user-select: none;
|
|
7701
7804
|
user-select: none;
|
|
7702
7805
|
cursor: pointer;
|
|
7703
|
-
transition: border-radius 200ms, margin 200ms, width 200ms, height 200ms,
|
|
7806
|
+
transition: border-radius 200ms, margin 200ms, width 200ms, height 200ms,
|
|
7807
|
+
border-color 200ms ease-out;
|
|
7704
7808
|
}
|
|
7705
7809
|
|
|
7706
7810
|
.image-editor .focal-editor .focal-point:after {
|
|
@@ -7743,7 +7847,7 @@ main .page-description h3 {
|
|
|
7743
7847
|
}
|
|
7744
7848
|
}
|
|
7745
7849
|
|
|
7746
|
-
.image-grid input[type=file] {
|
|
7850
|
+
.image-grid input[type="file"] {
|
|
7747
7851
|
display: none;
|
|
7748
7852
|
}
|
|
7749
7853
|
|
|
@@ -8167,8 +8271,16 @@ table.list td,
|
|
|
8167
8271
|
}
|
|
8168
8272
|
|
|
8169
8273
|
table.list th {
|
|
8170
|
-
background: linear-gradient(
|
|
8171
|
-
|
|
8274
|
+
background: linear-gradient(
|
|
8275
|
+
to bottom,
|
|
8276
|
+
#fff 0%,
|
|
8277
|
+
#f8f8f8 100%
|
|
8278
|
+
);
|
|
8279
|
+
background: linear-gradient(
|
|
8280
|
+
to bottom,
|
|
8281
|
+
var(--background-color) 0%,
|
|
8282
|
+
var(--background-disabled-color) 100%
|
|
8283
|
+
);
|
|
8172
8284
|
color: #666;
|
|
8173
8285
|
color: var(--text-light-color);
|
|
8174
8286
|
font-weight: bold;
|
|
@@ -8205,12 +8317,16 @@ table.list tr.disabled td {
|
|
|
8205
8317
|
}
|
|
8206
8318
|
|
|
8207
8319
|
table.list tr.disabled td:first-child {
|
|
8208
|
-
background: transparent
|
|
8320
|
+
background: transparent
|
|
8321
|
+
radial-gradient(ellipse at center, #bdbdbd 50%, transparent 50%) no-repeat
|
|
8322
|
+
left 12px top 50%;
|
|
8209
8323
|
background-size: 10px 10px;
|
|
8210
8324
|
}
|
|
8211
8325
|
|
|
8212
8326
|
table.list tr.active td:first-child {
|
|
8213
|
-
background: transparent
|
|
8327
|
+
background: transparent
|
|
8328
|
+
radial-gradient(ellipse at center, #92b6c4 50%, transparent 50%) no-repeat
|
|
8329
|
+
left 12px top 50%;
|
|
8214
8330
|
background-size: 10px 10px;
|
|
8215
8331
|
}
|
|
8216
8332
|
|
|
@@ -8278,7 +8394,11 @@ body.modal > .wrapper {
|
|
|
8278
8394
|
}
|
|
8279
8395
|
|
|
8280
8396
|
.modal-wrapper .background {
|
|
8281
|
-
background: radial-gradient(
|
|
8397
|
+
background: radial-gradient(
|
|
8398
|
+
rgba(255, 255, 255, 0.9),
|
|
8399
|
+
rgba(255, 255, 255, 0.9) 50%,
|
|
8400
|
+
rgba(80, 80, 80, 0.9)
|
|
8401
|
+
);
|
|
8282
8402
|
cursor: pointer;
|
|
8283
8403
|
position: absolute;
|
|
8284
8404
|
top: 0px;
|
|
@@ -8333,18 +8453,18 @@ body.modal > .wrapper {
|
|
|
8333
8453
|
}
|
|
8334
8454
|
|
|
8335
8455
|
100% {
|
|
8336
|
-
opacity: 1
|
|
8337
|
-
transform: scale(1
|
|
8456
|
+
opacity: 1;
|
|
8457
|
+
transform: scale(1);
|
|
8338
8458
|
}
|
|
8339
8459
|
}
|
|
8340
8460
|
|
|
8341
8461
|
@keyframes modal-background-appear {
|
|
8342
8462
|
0% {
|
|
8343
|
-
opacity: 0
|
|
8463
|
+
opacity: 0;
|
|
8344
8464
|
}
|
|
8345
8465
|
|
|
8346
8466
|
100% {
|
|
8347
|
-
opacity: 1
|
|
8467
|
+
opacity: 1;
|
|
8348
8468
|
}
|
|
8349
8469
|
}
|
|
8350
8470
|
|
|
@@ -8405,8 +8525,16 @@ body.modal > .wrapper {
|
|
|
8405
8525
|
.page-tree .page:hover {
|
|
8406
8526
|
border: 1px solid #eee;
|
|
8407
8527
|
border: 1px solid var(--border-color-light);
|
|
8408
|
-
background: linear-gradient(
|
|
8409
|
-
|
|
8528
|
+
background: linear-gradient(
|
|
8529
|
+
to bottom,
|
|
8530
|
+
#fff 0%,
|
|
8531
|
+
#f8f8f8 100%
|
|
8532
|
+
);
|
|
8533
|
+
background: linear-gradient(
|
|
8534
|
+
to bottom,
|
|
8535
|
+
var(--background-color) 0%,
|
|
8536
|
+
var(--background-disabled-color) 100%
|
|
8537
|
+
);
|
|
8410
8538
|
}
|
|
8411
8539
|
|
|
8412
8540
|
.page-tree .page .date {
|
|
@@ -8767,7 +8895,7 @@ textarea.rich {
|
|
|
8767
8895
|
text-align: left;
|
|
8768
8896
|
animation-duration: 500ms;
|
|
8769
8897
|
animation-name: toast-appear;
|
|
8770
|
-
animation-timing-function: cubic-bezier(0.215, 0.
|
|
8898
|
+
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
|
|
8771
8899
|
animation-fill-mode: forwards;
|
|
8772
8900
|
}
|
|
8773
8901
|
|
|
@@ -8779,7 +8907,7 @@ textarea.rich {
|
|
|
8779
8907
|
.toast-wrapper .toast.fadeout {
|
|
8780
8908
|
animation-duration: 300ms;
|
|
8781
8909
|
animation-name: toast-disappear;
|
|
8782
|
-
animation-timing-function: cubic-bezier(0.
|
|
8910
|
+
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
|
|
8783
8911
|
}
|
|
8784
8912
|
|
|
8785
8913
|
@keyframes toast-appear {
|
|
@@ -8913,7 +9041,8 @@ textarea.rich {
|
|
|
8913
9041
|
}
|
|
8914
9042
|
|
|
8915
9043
|
.toolbar .button.header i:after, .toolbar button.header i:after {
|
|
8916
|
-
font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, "Segoe UI",
|
|
9044
|
+
font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, "Segoe UI",
|
|
9045
|
+
Roboto, Ubuntu, "Helvetica Neue", Oxygen, Cantarell, sans-serif;
|
|
8917
9046
|
font-family: var(--font-os-sans);
|
|
8918
9047
|
font-weight: bold;
|
|
8919
9048
|
font-size: 13px;
|
|
@@ -9098,7 +9227,9 @@ td.drag-handle {
|
|
|
9098
9227
|
}
|
|
9099
9228
|
|
|
9100
9229
|
.news-item-list .pinned .name, .calendar-item-list .pinned .name {
|
|
9101
|
-
background: transparent
|
|
9230
|
+
background: transparent
|
|
9231
|
+
radial-gradient(ellipse at center, #92b6c4 50%, transparent 50%) no-repeat
|
|
9232
|
+
left 12px top 50%;
|
|
9102
9233
|
background-size: 10px 10px;
|
|
9103
9234
|
}
|
|
9104
9235
|
|
|
@@ -9124,7 +9255,7 @@ td.drag-handle {
|
|
|
9124
9255
|
display: block;
|
|
9125
9256
|
}
|
|
9126
9257
|
|
|
9127
|
-
.edit-page main input[type=text],
|
|
9258
|
+
.edit-page main input[type="text"],
|
|
9128
9259
|
.edit-page main textarea {
|
|
9129
9260
|
width: 100%;
|
|
9130
9261
|
max-width: 100%;
|
|
@@ -28,8 +28,7 @@
|
|
|
28
28
|
padding: 16px 0px 16px 40px;
|
|
29
29
|
cursor: pointer;
|
|
30
30
|
background: #fff;
|
|
31
|
-
transition: padding-left 50ms ease-in-out,
|
|
32
|
-
background 150ms ease-in-out;
|
|
31
|
+
transition: padding-left 50ms ease-in-out, background 150ms ease-in-out;
|
|
33
32
|
|
|
34
33
|
& .attachment-info {
|
|
35
34
|
transition: all 50ms ease-in-out;
|
|
@@ -118,7 +117,7 @@
|
|
|
118
117
|
}
|
|
119
118
|
|
|
120
119
|
& .embed-code {
|
|
121
|
-
& input[type=text] {
|
|
120
|
+
& input[type="text"] {
|
|
122
121
|
width: 50%;
|
|
123
122
|
max-width: 100px;
|
|
124
123
|
margin-right: 8px;
|
|
@@ -126,7 +125,7 @@
|
|
|
126
125
|
}
|
|
127
126
|
|
|
128
127
|
& textarea,
|
|
129
|
-
& input[type=text] {
|
|
128
|
+
& input[type="text"] {
|
|
130
129
|
max-width: 100%;
|
|
131
130
|
|
|
132
131
|
&.description {
|