pages_core 3.14.0 → 3.15.0
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 +19 -8
- data/app/assets/builds/pages_core/admin-dist.js.map +4 -4
- data/app/assets/builds/pages_core/admin.css +672 -379
- data/app/assets/fonts/Inter-Black.woff2 +0 -0
- data/app/assets/fonts/Inter-BlackItalic.woff2 +0 -0
- data/app/assets/fonts/Inter-Bold.woff2 +0 -0
- data/app/assets/fonts/Inter-BoldItalic.woff2 +0 -0
- data/app/assets/fonts/Inter-ExtraBold.woff2 +0 -0
- data/app/assets/fonts/Inter-ExtraBoldItalic.woff2 +0 -0
- data/app/assets/fonts/Inter-ExtraLight.woff2 +0 -0
- data/app/assets/fonts/Inter-ExtraLightItalic.woff2 +0 -0
- data/app/assets/fonts/Inter-Italic.woff2 +0 -0
- data/app/assets/fonts/Inter-Light.woff2 +0 -0
- data/app/assets/fonts/Inter-LightItalic.woff2 +0 -0
- data/app/assets/fonts/Inter-Medium.woff2 +0 -0
- data/app/assets/fonts/Inter-MediumItalic.woff2 +0 -0
- data/app/assets/fonts/Inter-Regular.woff2 +0 -0
- data/app/assets/fonts/Inter-SemiBold.woff2 +0 -0
- data/app/assets/fonts/Inter-SemiBoldItalic.woff2 +0 -0
- data/app/assets/fonts/Inter-Thin.woff2 +0 -0
- data/app/assets/fonts/Inter-ThinItalic.woff2 +0 -0
- data/app/assets/fonts/InterDisplay-Black.woff2 +0 -0
- data/app/assets/fonts/InterDisplay-BlackItalic.woff2 +0 -0
- data/app/assets/fonts/InterDisplay-Bold.woff2 +0 -0
- data/app/assets/fonts/InterDisplay-BoldItalic.woff2 +0 -0
- data/app/assets/fonts/InterDisplay-ExtraBold.woff2 +0 -0
- data/app/assets/fonts/InterDisplay-ExtraBoldItalic.woff2 +0 -0
- data/app/assets/fonts/InterDisplay-ExtraLight.woff2 +0 -0
- data/app/assets/fonts/InterDisplay-ExtraLightItalic.woff2 +0 -0
- data/app/assets/fonts/InterDisplay-Italic.woff2 +0 -0
- data/app/assets/fonts/InterDisplay-Light.woff2 +0 -0
- data/app/assets/fonts/InterDisplay-LightItalic.woff2 +0 -0
- data/app/assets/fonts/InterDisplay-Medium.woff2 +0 -0
- data/app/assets/fonts/InterDisplay-MediumItalic.woff2 +0 -0
- data/app/assets/fonts/InterDisplay-Regular.woff2 +0 -0
- data/app/assets/fonts/InterDisplay-SemiBold.woff2 +0 -0
- data/app/assets/fonts/InterDisplay-SemiBoldItalic.woff2 +0 -0
- data/app/assets/fonts/InterDisplay-Thin.woff2 +0 -0
- data/app/assets/fonts/InterDisplay-ThinItalic.woff2 +0 -0
- data/app/assets/fonts/InterVariable-Italic.woff2 +0 -0
- data/app/assets/fonts/InterVariable.woff2 +0 -0
- data/app/assets/stylesheets/pages_core/admin/components/archive.css +1 -1
- data/app/assets/stylesheets/pages_core/admin/components/attachments.css +22 -34
- data/app/assets/stylesheets/pages_core/admin/components/base.css +1 -68
- data/app/assets/stylesheets/pages_core/admin/components/forms.css +107 -48
- data/app/assets/stylesheets/pages_core/admin/components/header.css +56 -58
- data/app/assets/stylesheets/pages_core/admin/components/image_editor.css +35 -24
- data/app/assets/stylesheets/pages_core/admin/components/image_grid.css +28 -27
- data/app/assets/stylesheets/pages_core/admin/components/image_uploader.css +5 -5
- data/app/assets/stylesheets/pages_core/admin/components/layout.css +7 -1
- data/app/assets/stylesheets/pages_core/admin/components/list_table.css +24 -15
- data/app/assets/stylesheets/pages_core/admin/components/page_tree.css +63 -104
- data/app/assets/stylesheets/pages_core/admin/components/pagination.css +12 -13
- data/app/assets/stylesheets/pages_core/admin/components/search.css +1 -16
- data/app/assets/stylesheets/pages_core/admin/components/sidebar.css +5 -11
- data/app/assets/stylesheets/pages_core/admin/components/tag_editor.css +22 -36
- data/app/assets/stylesheets/pages_core/admin/components/toast.css +1 -2
- data/app/assets/stylesheets/pages_core/admin/components/toolbar.css +10 -10
- data/app/assets/stylesheets/pages_core/admin/components/totp.css +1 -1
- data/app/assets/stylesheets/pages_core/admin/controllers/pages.css +37 -51
- data/app/assets/stylesheets/pages_core/admin/global/fonts.css +271 -0
- data/app/assets/stylesheets/pages_core/admin/global/typography.css +109 -0
- data/app/assets/stylesheets/pages_core/admin/vars.css +1 -3
- data/app/assets/stylesheets/pages_core/admin.postcss.css +1 -0
- data/app/controllers/admin/account_recoveries_controller.rb +2 -2
- data/app/controllers/admin/pages_controller.rb +22 -42
- data/app/controllers/concerns/pages_core/error_reporting.rb +1 -1
- data/app/controllers/concerns/pages_core/page_parameters.rb +29 -0
- data/app/controllers/concerns/pages_core/policies_helper.rb +1 -1
- data/app/controllers/concerns/pages_core/preview_pages_controller.rb +20 -20
- data/app/controllers/pages_core/admin_controller.rb +0 -2
- data/app/controllers/pages_core/frontend/pages_controller.rb +2 -6
- data/app/formatters/pages_core/html_formatter.rb +2 -4
- data/app/helpers/admin/menu_helper.rb +5 -4
- data/app/helpers/admin/pages_helper.rb +1 -21
- data/app/helpers/pages_core/admin/admin_helper.rb +2 -3
- data/app/helpers/pages_core/admin/content_tabs_helper.rb +1 -2
- data/app/helpers/pages_core/admin/labelled_field_helper.rb +1 -1
- data/app/helpers/pages_core/frontend_helper.rb +1 -1
- data/app/helpers/pages_core/images_helper.rb +10 -8
- data/app/helpers/pages_core/labelled_form_builder.rb +2 -7
- data/app/helpers/pages_core/page_path_helper.rb +1 -1
- data/app/javascript/components/Attachments/Attachment.tsx +20 -18
- data/app/javascript/components/Attachments/AttachmentEditor.tsx +11 -9
- data/app/javascript/components/{Attachments.jsx → Attachments/List.tsx} +58 -63
- data/app/javascript/components/Attachments/useAttachments.ts +15 -0
- data/app/javascript/components/Attachments.tsx +14 -0
- data/app/javascript/components/DateRangeSelect.tsx +105 -0
- data/app/javascript/components/DateTimeSelect.tsx +136 -0
- data/app/javascript/components/EditableImage.tsx +11 -9
- data/app/javascript/components/FileUploadButton.tsx +7 -7
- data/app/javascript/components/ImageCropper/FocalPoint.tsx +9 -12
- data/app/javascript/components/ImageCropper/Image.tsx +10 -8
- data/app/javascript/components/ImageCropper/Toolbar.tsx +11 -12
- data/app/javascript/components/ImageCropper/useCrop.ts +24 -53
- data/app/javascript/components/ImageCropper.tsx +10 -15
- data/app/javascript/components/ImageEditor/Form.tsx +12 -8
- data/app/javascript/components/ImageEditor.tsx +12 -7
- data/app/javascript/components/ImageGrid/DragElement.tsx +9 -12
- data/app/javascript/components/{ImageGrid.jsx → ImageGrid/Grid.tsx} +62 -71
- data/app/javascript/components/ImageGrid/GridImage.tsx +22 -23
- data/app/javascript/components/ImageGrid/Placeholder.tsx +2 -2
- data/app/javascript/components/ImageGrid/useImageGrid.ts +26 -0
- data/app/javascript/components/ImageGrid.tsx +15 -0
- data/app/javascript/components/ImageUploader.tsx +35 -22
- data/app/javascript/components/LabelledField.tsx +34 -0
- data/app/javascript/components/Modal.tsx +2 -2
- data/app/javascript/components/PageForm/Block.tsx +81 -0
- data/app/javascript/components/PageForm/Content.tsx +54 -0
- data/app/javascript/components/PageForm/Dates.tsx +66 -0
- data/app/javascript/components/PageForm/Files.tsx +28 -0
- data/app/javascript/components/PageForm/Form.tsx +41 -0
- data/app/javascript/components/PageForm/Images.tsx +28 -0
- data/app/javascript/components/PageForm/LocaleLinks.tsx +36 -0
- data/app/javascript/components/PageForm/Metadata.tsx +67 -0
- data/app/javascript/components/PageForm/Options.tsx +180 -0
- data/app/javascript/components/PageForm/PageDescription.tsx +48 -0
- data/app/javascript/components/PageForm/PathSegment.tsx +65 -0
- data/app/javascript/components/PageForm/TabPanel.tsx +21 -0
- data/app/javascript/components/PageForm/Tabs.tsx +33 -0
- data/app/javascript/components/PageForm/UnconfiguredContent.tsx +42 -0
- data/app/javascript/components/PageForm/pageParams.ts +95 -0
- data/app/javascript/components/PageForm/preview.ts +23 -0
- data/app/javascript/components/PageForm/usePage.ts +169 -0
- data/app/javascript/components/PageForm/useTabs.ts +46 -0
- data/app/javascript/components/PageForm.tsx +163 -0
- data/app/javascript/components/PageImages.tsx +7 -9
- data/app/javascript/components/PageTree/Draggable.tsx +40 -39
- data/app/javascript/components/PageTree/Node.tsx +62 -56
- data/app/javascript/components/PageTree/PageName.tsx +28 -0
- data/app/javascript/components/PageTree.tsx +65 -53
- data/app/javascript/components/{RichTextArea.jsx → RichTextArea.tsx} +98 -79
- data/app/javascript/components/RichTextToolbarButton.tsx +4 -6
- data/app/javascript/components/TagEditor/AddTagForm.tsx +19 -12
- data/app/javascript/components/TagEditor/Editor.tsx +32 -0
- data/app/javascript/components/TagEditor/Tag.tsx +6 -4
- data/app/javascript/components/TagEditor/useTags.ts +58 -0
- data/app/javascript/components/TagEditor.tsx +8 -58
- data/app/javascript/components/Toast.tsx +3 -3
- data/app/javascript/components/drag/draggedOrder.ts +22 -14
- data/app/javascript/components/drag/useDragCollection.ts +35 -30
- data/app/javascript/components/drag/useDragUploader.ts +32 -21
- data/app/javascript/components/drag/useDraggable.ts +7 -6
- data/app/javascript/components/drag.ts +0 -1
- data/app/javascript/components.ts +1 -3
- data/app/javascript/features/RichText.tsx +2 -3
- data/app/javascript/features/contentTabs.ts +79 -0
- data/app/javascript/index.ts +5 -12
- data/app/javascript/lib/Tree.ts +31 -45
- data/app/javascript/lib/request.ts +11 -11
- data/app/javascript/stores/useToastStore.ts +1 -1
- data/app/javascript/types/Attachments.ts +29 -0
- data/app/javascript/types/Crop.ts +36 -0
- data/app/javascript/types/Drag.ts +34 -0
- data/app/javascript/types/Images.ts +47 -0
- data/app/javascript/types/PageEditor.ts +26 -0
- data/app/javascript/types/Pages.ts +75 -0
- data/app/javascript/types/Tags.ts +9 -0
- data/app/javascript/types/Template.ts +24 -0
- data/app/javascript/types/Trees.ts +19 -0
- data/app/javascript/types.ts +2 -25
- data/app/models/attachment.rb +1 -1
- data/app/models/concerns/pages_core/authenticable_user.rb +63 -0
- data/app/models/concerns/pages_core/emailable.rb +16 -0
- data/app/models/concerns/pages_core/page_model/templateable.rb +2 -16
- data/app/models/invite.rb +2 -6
- data/app/models/otp_secret.rb +4 -4
- data/app/models/page.rb +0 -3
- data/app/models/user.rb +2 -46
- data/app/policies/page_policy.rb +6 -2
- data/app/resources/admin/page_resource.rb +95 -0
- data/app/resources/admin/page_tree_resource.rb +27 -0
- data/app/resources/admin/template_configuration_resource.rb +50 -0
- data/app/views/admin/news/_sidebar.html.erb +2 -4
- data/app/views/admin/news/index.html.erb +0 -1
- data/app/views/admin/pages/_form.html.erb +10 -30
- data/app/views/admin/pages/_search_bar.html.erb +1 -1
- data/app/views/admin/pages/edit.html.erb +1 -57
- data/app/views/admin/pages/index.html.erb +1 -1
- data/app/views/admin/pages/new.html.erb +1 -44
- data/app/views/admin/sessions/new.html.erb +9 -11
- data/app/views/admin/users/_access_control.html.erb +5 -1
- data/app/views/admin/users/_list.html.erb +12 -7
- data/app/views/layouts/admin/_header.html.erb +2 -4
- data/app/views/layouts/admin/_page_header.html.erb +1 -2
- data/app/views/layouts/admin.html.erb +1 -1
- data/config/locales/en.yml +0 -4
- data/config/routes.rb +3 -7
- data/db/migrate/20240126160700_add_2fa_fields.rb +5 -1
- data/db/migrate/20240131140700_change_email_to_citext.rb +18 -0
- data/db/migrate/20240201160700_remove_persistent_data.rb +7 -0
- data/db/migrate/20240508145300_remove_categories.rb +21 -0
- data/lib/pages_core/configuration/base.rb +2 -2
- data/lib/pages_core/templates/configuration.rb +1 -1
- data/lib/pages_core/templates/configuration_proxy.rb +2 -2
- data/lib/pages_core/templates/template_configuration.rb +11 -1
- data/lib/pages_core/templates.rb +6 -4
- data/lib/pages_core/version.rb +1 -1
- data/lib/rails/generators/pages_core/frontend/templates/javascript/lib/gridOverlay.ts +6 -7
- data/lib/rails/generators/pages_core/frontend/templates/javascript/lib/responsiveEmbeds.ts +17 -12
- data/lib/rails/generators/pages_core/rspec/rspec_generator.rb +0 -2
- data/lib/rails/generators/pages_core/rspec/templates/rails_helper.rb +3 -4
- metadata +95 -29
- data/app/assets/stylesheets/pages_core/admin/components/login.css +0 -27
- data/app/controllers/admin/categories_controller.rb +0 -56
- data/app/controllers/concerns/pages_core/admin/persistent_params.rb +0 -75
- data/app/helpers/pages_core/admin/page_blocks_helper.rb +0 -66
- data/app/helpers/pages_core/admin/page_json_helper.rb +0 -23
- data/app/javascript/components/DateRangeSelect.jsx +0 -225
- data/app/javascript/components/PageDates.jsx +0 -73
- data/app/javascript/components/PageFiles.jsx +0 -25
- data/app/javascript/components/PageTree/types.ts +0 -15
- data/app/javascript/components/drag/types.ts +0 -28
- data/app/javascript/controllers/EditPageController.ts +0 -22
- data/app/javascript/controllers/MainController.ts +0 -74
- data/app/javascript/controllers/PageOptionsController.js +0 -67
- data/app/models/category.rb +0 -22
- data/app/models/concerns/pages_core/has_otp.rb +0 -27
- data/app/models/page_category.rb +0 -6
- data/app/views/admin/pages/_edit_content.html.erb +0 -19
- data/app/views/admin/pages/_edit_files.html.erb +0 -4
- data/app/views/admin/pages/_edit_images.html.erb +0 -4
- data/app/views/admin/pages/_edit_metadata.html.erb +0 -35
- data/app/views/admin/pages/_edit_options.html.erb +0 -91
- data/lib/rails/generators/pages_core/rspec/templates/mailer_macros.rb +0 -11
@@ -6855,9 +6855,6 @@ readers do not read off random characters that represent icons */
|
|
6855
6855
|
font-weight: 400; }
|
6856
6856
|
|
6857
6857
|
:root {
|
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;
|
6860
|
-
|
6861
6858
|
--red: #c00007;
|
6862
6859
|
--red-transparent: rgba(192,0,7,0.25098);
|
6863
6860
|
--red-hover: #8d0005;
|
@@ -6874,6 +6871,7 @@ readers do not read off random characters that represent icons */
|
|
6874
6871
|
--background-invert-color: #000;
|
6875
6872
|
--background-disabled-color: #f8f8f8;
|
6876
6873
|
--background-warning-color: #ffdfa0;
|
6874
|
+
--background-highlight-color: #e7f3f9;
|
6877
6875
|
--text-color: #111;
|
6878
6876
|
--text-light-color: #666;
|
6879
6877
|
--text-lighter-color: #999;
|
@@ -6887,6 +6885,419 @@ readers do not read off random characters that represent icons */
|
|
6887
6885
|
--button-color-hover: #d8d8d8;
|
6888
6886
|
}
|
6889
6887
|
|
6888
|
+
/* Inter */
|
6889
|
+
|
6890
|
+
@font-face {
|
6891
|
+
font-family: "InterVariable";
|
6892
|
+
font-style: normal;
|
6893
|
+
font-weight: 100 900;
|
6894
|
+
font-display: swap;
|
6895
|
+
src: url("InterVariable.woff2") format("woff2");
|
6896
|
+
}
|
6897
|
+
|
6898
|
+
@font-face {
|
6899
|
+
font-family: "InterVariable";
|
6900
|
+
font-style: italic;
|
6901
|
+
font-weight: 100 900;
|
6902
|
+
font-display: swap;
|
6903
|
+
src: url("InterVariable-Italic.woff2") format("woff2");
|
6904
|
+
}
|
6905
|
+
|
6906
|
+
@font-face {
|
6907
|
+
font-family: "Inter";
|
6908
|
+
font-style: normal;
|
6909
|
+
font-weight: 100;
|
6910
|
+
src: url("Inter-Thin.woff2") format("woff2");
|
6911
|
+
}
|
6912
|
+
|
6913
|
+
@font-face {
|
6914
|
+
font-family: "Inter";
|
6915
|
+
font-style: italic;
|
6916
|
+
font-weight: 100;
|
6917
|
+
src: url("Inter-ThinItalic.woff2") format("woff2");
|
6918
|
+
}
|
6919
|
+
|
6920
|
+
@font-face {
|
6921
|
+
font-family: "Inter";
|
6922
|
+
font-style: normal;
|
6923
|
+
font-weight: 200;
|
6924
|
+
src: url("Inter-ExtraLight.woff2") format("woff2");
|
6925
|
+
}
|
6926
|
+
|
6927
|
+
@font-face {
|
6928
|
+
font-family: "Inter";
|
6929
|
+
font-style: italic;
|
6930
|
+
font-weight: 200;
|
6931
|
+
src: url("Inter-ExtraLightItalic.woff2") format("woff2");
|
6932
|
+
}
|
6933
|
+
|
6934
|
+
@font-face {
|
6935
|
+
font-family: "Inter";
|
6936
|
+
font-style: normal;
|
6937
|
+
font-weight: 300;
|
6938
|
+
src: url("Inter-Light.woff2") format("woff2");
|
6939
|
+
}
|
6940
|
+
|
6941
|
+
@font-face {
|
6942
|
+
font-family: "Inter";
|
6943
|
+
font-style: italic;
|
6944
|
+
font-weight: 300;
|
6945
|
+
src: url("Inter-LightItalic.woff2") format("woff2");
|
6946
|
+
}
|
6947
|
+
|
6948
|
+
@font-face {
|
6949
|
+
font-family: "Inter";
|
6950
|
+
font-style: normal;
|
6951
|
+
font-weight: 400;
|
6952
|
+
src: url("Inter-Regular.woff2") format("woff2");
|
6953
|
+
}
|
6954
|
+
|
6955
|
+
@font-face {
|
6956
|
+
font-family: "Inter";
|
6957
|
+
font-style: italic;
|
6958
|
+
font-weight: 400;
|
6959
|
+
src: url("Inter-Italic.woff2") format("woff2");
|
6960
|
+
}
|
6961
|
+
|
6962
|
+
@font-face {
|
6963
|
+
font-family: "Inter";
|
6964
|
+
font-style: normal;
|
6965
|
+
font-weight: 500;
|
6966
|
+
src: url("Inter-Medium.woff2") format("woff2");
|
6967
|
+
}
|
6968
|
+
|
6969
|
+
@font-face {
|
6970
|
+
font-family: "Inter";
|
6971
|
+
font-style: italic;
|
6972
|
+
font-weight: 500;
|
6973
|
+
src: url("Inter-MediumItalic.woff2") format("woff2");
|
6974
|
+
}
|
6975
|
+
|
6976
|
+
@font-face {
|
6977
|
+
font-family: "Inter";
|
6978
|
+
font-style: normal;
|
6979
|
+
font-weight: 600;
|
6980
|
+
src: url("Inter-SemiBold.woff2") format("woff2");
|
6981
|
+
}
|
6982
|
+
|
6983
|
+
@font-face {
|
6984
|
+
font-family: "Inter";
|
6985
|
+
font-style: italic;
|
6986
|
+
font-weight: 600;
|
6987
|
+
src: url("Inter-SemiBoldItalic.woff2") format("woff2");
|
6988
|
+
}
|
6989
|
+
|
6990
|
+
@font-face {
|
6991
|
+
font-family: "Inter";
|
6992
|
+
font-style: normal;
|
6993
|
+
font-weight: 700;
|
6994
|
+
src: url("Inter-Bold.woff2") format("woff2");
|
6995
|
+
}
|
6996
|
+
|
6997
|
+
@font-face {
|
6998
|
+
font-family: "Inter";
|
6999
|
+
font-style: italic;
|
7000
|
+
font-weight: 700;
|
7001
|
+
src: url("Inter-BoldItalic.woff2") format("woff2");
|
7002
|
+
}
|
7003
|
+
|
7004
|
+
@font-face {
|
7005
|
+
font-family: "Inter";
|
7006
|
+
font-style: normal;
|
7007
|
+
font-weight: 800;
|
7008
|
+
src: url("Inter-ExtraBold.woff2") format("woff2");
|
7009
|
+
}
|
7010
|
+
|
7011
|
+
@font-face {
|
7012
|
+
font-family: "Inter";
|
7013
|
+
font-style: italic;
|
7014
|
+
font-weight: 800;
|
7015
|
+
src: url("Inter-ExtraBoldItalic.woff2") format("woff2");
|
7016
|
+
}
|
7017
|
+
|
7018
|
+
@font-face {
|
7019
|
+
font-family: "Inter";
|
7020
|
+
font-style: normal;
|
7021
|
+
font-weight: 900;
|
7022
|
+
src: url("Inter-Black.woff2") format("woff2");
|
7023
|
+
}
|
7024
|
+
|
7025
|
+
@font-face {
|
7026
|
+
font-family: "Inter";
|
7027
|
+
font-style: italic;
|
7028
|
+
font-weight: 900;
|
7029
|
+
src: url("Inter-BlackItalic.woff2") format("woff2");
|
7030
|
+
}
|
7031
|
+
|
7032
|
+
/* InterDisplay */
|
7033
|
+
|
7034
|
+
@font-face {
|
7035
|
+
font-family: "InterDisplay";
|
7036
|
+
font-style: normal;
|
7037
|
+
font-weight: 100;
|
7038
|
+
src: url("InterDisplay-Thin.woff2") format("woff2");
|
7039
|
+
}
|
7040
|
+
|
7041
|
+
@font-face {
|
7042
|
+
font-family: "InterDisplay";
|
7043
|
+
font-style: italic;
|
7044
|
+
font-weight: 100;
|
7045
|
+
src: url("InterDisplay-ThinItalic.woff2") format("woff2");
|
7046
|
+
}
|
7047
|
+
|
7048
|
+
@font-face {
|
7049
|
+
font-family: "InterDisplay";
|
7050
|
+
font-style: normal;
|
7051
|
+
font-weight: 200;
|
7052
|
+
src: url("InterDisplay-ExtraLight.woff2") format("woff2");
|
7053
|
+
}
|
7054
|
+
|
7055
|
+
@font-face {
|
7056
|
+
font-family: "InterDisplay";
|
7057
|
+
font-style: italic;
|
7058
|
+
font-weight: 200;
|
7059
|
+
src: url("InterDisplay-ExtraLightItalic.woff2") format("woff2");
|
7060
|
+
}
|
7061
|
+
|
7062
|
+
@font-face {
|
7063
|
+
font-family: "InterDisplay";
|
7064
|
+
font-style: normal;
|
7065
|
+
font-weight: 300;
|
7066
|
+
src: url("InterDisplay-Light.woff2") format("woff2");
|
7067
|
+
}
|
7068
|
+
|
7069
|
+
@font-face {
|
7070
|
+
font-family: "InterDisplay";
|
7071
|
+
font-style: italic;
|
7072
|
+
font-weight: 300;
|
7073
|
+
src: url("InterDisplay-LightItalic.woff2") format("woff2");
|
7074
|
+
}
|
7075
|
+
|
7076
|
+
@font-face {
|
7077
|
+
font-family: "InterDisplay";
|
7078
|
+
font-style: normal;
|
7079
|
+
font-weight: 400;
|
7080
|
+
src: url("InterDisplay-Regular.woff2") format("woff2");
|
7081
|
+
}
|
7082
|
+
|
7083
|
+
@font-face {
|
7084
|
+
font-family: "InterDisplay";
|
7085
|
+
font-style: italic;
|
7086
|
+
font-weight: 400;
|
7087
|
+
src: url("InterDisplay-Italic.woff2") format("woff2");
|
7088
|
+
}
|
7089
|
+
|
7090
|
+
@font-face {
|
7091
|
+
font-family: "InterDisplay";
|
7092
|
+
font-style: normal;
|
7093
|
+
font-weight: 500;
|
7094
|
+
src: url("InterDisplay-Medium.woff2") format("woff2");
|
7095
|
+
}
|
7096
|
+
|
7097
|
+
@font-face {
|
7098
|
+
font-family: "InterDisplay";
|
7099
|
+
font-style: italic;
|
7100
|
+
font-weight: 500;
|
7101
|
+
src: url("InterDisplay-MediumItalic.woff2") format("woff2");
|
7102
|
+
}
|
7103
|
+
|
7104
|
+
@font-face {
|
7105
|
+
font-family: "InterDisplay";
|
7106
|
+
font-style: normal;
|
7107
|
+
font-weight: 600;
|
7108
|
+
src: url("InterDisplay-SemiBold.woff2") format("woff2");
|
7109
|
+
}
|
7110
|
+
|
7111
|
+
@font-face {
|
7112
|
+
font-family: "InterDisplay";
|
7113
|
+
font-style: italic;
|
7114
|
+
font-weight: 600;
|
7115
|
+
src: url("InterDisplay-SemiBoldItalic.woff2") format("woff2");
|
7116
|
+
}
|
7117
|
+
|
7118
|
+
@font-face {
|
7119
|
+
font-family: "InterDisplay";
|
7120
|
+
font-style: normal;
|
7121
|
+
font-weight: 700;
|
7122
|
+
src: url("InterDisplay-Bold.woff2") format("woff2");
|
7123
|
+
}
|
7124
|
+
|
7125
|
+
@font-face {
|
7126
|
+
font-family: "InterDisplay";
|
7127
|
+
font-style: italic;
|
7128
|
+
font-weight: 700;
|
7129
|
+
src: url("InterDisplay-BoldItalic.woff2") format("woff2");
|
7130
|
+
}
|
7131
|
+
|
7132
|
+
@font-face {
|
7133
|
+
font-family: "InterDisplay";
|
7134
|
+
font-style: normal;
|
7135
|
+
font-weight: 800;
|
7136
|
+
src: url("InterDisplay-ExtraBold.woff2") format("woff2");
|
7137
|
+
}
|
7138
|
+
|
7139
|
+
@font-face {
|
7140
|
+
font-family: "InterDisplay";
|
7141
|
+
font-style: italic;
|
7142
|
+
font-weight: 800;
|
7143
|
+
src: url("InterDisplay-ExtraBoldItalic.woff2") format("woff2");
|
7144
|
+
}
|
7145
|
+
|
7146
|
+
@font-face {
|
7147
|
+
font-family: "InterDisplay";
|
7148
|
+
font-style: normal;
|
7149
|
+
font-weight: 900;
|
7150
|
+
src: url("InterDisplay-Black.woff2") format("woff2");
|
7151
|
+
}
|
7152
|
+
|
7153
|
+
@font-face {
|
7154
|
+
font-family: "InterDisplay";
|
7155
|
+
font-style: italic;
|
7156
|
+
font-weight: 900;
|
7157
|
+
src: url("InterDisplay-BlackItalic.woff2") format("woff2");
|
7158
|
+
}
|
7159
|
+
|
7160
|
+
:root {
|
7161
|
+
--bold-weight: 600;
|
7162
|
+
|
7163
|
+
--font-os-sans: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, "Segoe UI",
|
7164
|
+
Roboto, Ubuntu, "Helvetica Neue", Oxygen, Cantarell, sans-serif;
|
7165
|
+
--font-sans: "Inter", var(--font-os-sans);
|
7166
|
+
|
7167
|
+
--font-heading-2: 600 1.4rem/1.2 var(--font-sans);
|
7168
|
+
--font-heading-3: 600 1.2rem/1.4 var(--font-sans);
|
7169
|
+
|
7170
|
+
--font-large: 400 1.2rem/1.4 var(--font-sans);
|
7171
|
+
--font-normal: 400 1rem/1.5 var(--font-sans);
|
7172
|
+
--font-small: 400 0.875rem/1.33 var(--font-sans);
|
7173
|
+
}
|
7174
|
+
|
7175
|
+
html {
|
7176
|
+
font-size: 1rem;
|
7177
|
+
}
|
7178
|
+
|
7179
|
+
body {
|
7180
|
+
font: 400 1rem/1.5 "Inter", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, "Segoe UI",
|
7181
|
+
Roboto, Ubuntu, "Helvetica Neue", Oxygen, Cantarell, sans-serif;
|
7182
|
+
font: var(--font-normal);
|
7183
|
+
}
|
7184
|
+
|
7185
|
+
b,
|
7186
|
+
strong {
|
7187
|
+
font-weight: 600;
|
7188
|
+
font-weight: var(--bold-weight);
|
7189
|
+
}
|
7190
|
+
|
7191
|
+
h1,
|
7192
|
+
h2,
|
7193
|
+
h3,
|
7194
|
+
h4,
|
7195
|
+
h5,
|
7196
|
+
h6,
|
7197
|
+
p {
|
7198
|
+
margin: 1.25rem 0;
|
7199
|
+
}
|
7200
|
+
|
7201
|
+
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child, p:first-child {
|
7202
|
+
margin-top: 0px;
|
7203
|
+
}
|
7204
|
+
|
7205
|
+
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child, p:last-child {
|
7206
|
+
margin-bottom: 0px;
|
7207
|
+
}
|
7208
|
+
|
7209
|
+
h2 {
|
7210
|
+
font: 600 1.4rem/1.2 "Inter", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, "Segoe UI",
|
7211
|
+
Roboto, Ubuntu, "Helvetica Neue", Oxygen, Cantarell, sans-serif;
|
7212
|
+
font: var(--font-heading-2);
|
7213
|
+
margin-top: 3rem;
|
7214
|
+
letter-spacing: -0.04rem;
|
7215
|
+
}
|
7216
|
+
|
7217
|
+
h2:first-child {
|
7218
|
+
margin-top: 0px;
|
7219
|
+
}
|
7220
|
+
|
7221
|
+
h2:last-child {
|
7222
|
+
margin-bottom: 0px;
|
7223
|
+
}
|
7224
|
+
|
7225
|
+
form h2:first-of-type {
|
7226
|
+
margin-top: 0px;
|
7227
|
+
}
|
7228
|
+
|
7229
|
+
h3,
|
7230
|
+
.sidebar h2 {
|
7231
|
+
font: 600 1.2rem/1.4 "Inter", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, "Segoe UI",
|
7232
|
+
Roboto, Ubuntu, "Helvetica Neue", Oxygen, Cantarell, sans-serif;
|
7233
|
+
font: var(--font-heading-3);
|
7234
|
+
margin-top: 2rem;
|
7235
|
+
letter-spacing: -0.02rem;
|
7236
|
+
}
|
7237
|
+
|
7238
|
+
h3:first-child, .sidebar h2:first-child {
|
7239
|
+
margin-top: 0px;
|
7240
|
+
}
|
7241
|
+
|
7242
|
+
h3:last-child, .sidebar h2:last-child {
|
7243
|
+
margin-bottom: 0px;
|
7244
|
+
}
|
7245
|
+
|
7246
|
+
table,
|
7247
|
+
small,
|
7248
|
+
.page-description,
|
7249
|
+
header,
|
7250
|
+
.sidebar,
|
7251
|
+
.pagination {
|
7252
|
+
font: 400 0.875rem/1.33 "Inter", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, "Segoe UI",
|
7253
|
+
Roboto, Ubuntu, "Helvetica Neue", Oxygen, Cantarell, sans-serif;
|
7254
|
+
font: var(--font-small);
|
7255
|
+
}
|
7256
|
+
|
7257
|
+
.page-tree .date,
|
7258
|
+
.page-tree .status-label,
|
7259
|
+
.page-tree .collapsed-label,
|
7260
|
+
.page-tree button {
|
7261
|
+
font: 400 0.875rem/1.33 "Inter", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, "Segoe UI",
|
7262
|
+
Roboto, Ubuntu, "Helvetica Neue", Oxygen, Cantarell, sans-serif;
|
7263
|
+
font: var(--font-small);
|
7264
|
+
}
|
7265
|
+
|
7266
|
+
.login-form label, form .field label {
|
7267
|
+
font-weight: 600;
|
7268
|
+
font-weight: var(--bold-weight);
|
7269
|
+
}
|
7270
|
+
|
7271
|
+
.login-form label,
|
7272
|
+
form .field label,
|
7273
|
+
.login-form .description,
|
7274
|
+
form .field .description {
|
7275
|
+
font: 400 0.875rem/1.33 "Inter", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, "Segoe UI",
|
7276
|
+
Roboto, Ubuntu, "Helvetica Neue", Oxygen, Cantarell, sans-serif;
|
7277
|
+
font: var(--font-small);
|
7278
|
+
}
|
7279
|
+
|
7280
|
+
input,
|
7281
|
+
textarea {
|
7282
|
+
font: 400 1rem/1.5 "Inter", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, "Segoe UI",
|
7283
|
+
Roboto, Ubuntu, "Helvetica Neue", Oxygen, Cantarell, sans-serif;
|
7284
|
+
font: var(--font-normal);
|
7285
|
+
}
|
7286
|
+
|
7287
|
+
button,
|
7288
|
+
select {
|
7289
|
+
font: 400 0.875rem/1.33 "Inter", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, "Segoe UI",
|
7290
|
+
Roboto, Ubuntu, "Helvetica Neue", Oxygen, Cantarell, sans-serif;
|
7291
|
+
font: var(--font-small);
|
7292
|
+
}
|
7293
|
+
|
7294
|
+
input[type="text"].large,
|
7295
|
+
input[type="password"].large {
|
7296
|
+
font: 400 1.2rem/1.4 "Inter", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, "Segoe UI",
|
7297
|
+
Roboto, Ubuntu, "Helvetica Neue", Oxygen, Cantarell, sans-serif;
|
7298
|
+
font: var(--font-large);
|
7299
|
+
}
|
7300
|
+
|
6890
7301
|
.archive-index .count {
|
6891
7302
|
font-weight: normal;
|
6892
7303
|
color: #666;
|
@@ -6901,7 +7312,6 @@ readers do not read off random characters that represent icons */
|
|
6901
7312
|
position: relative;
|
6902
7313
|
width: 100%;
|
6903
7314
|
text-align: center;
|
6904
|
-
line-height: 1.6;
|
6905
7315
|
margin-top: 20px;
|
6906
7316
|
}
|
6907
7317
|
|
@@ -6926,7 +7336,8 @@ readers do not read off random characters that represent icons */
|
|
6926
7336
|
padding: 16px 0px 16px 40px;
|
6927
7337
|
cursor: pointer;
|
6928
7338
|
background: #fff;
|
6929
|
-
transition:
|
7339
|
+
transition:
|
7340
|
+
padding-left 50ms ease-in-out, background 150ms ease-in-out;
|
6930
7341
|
}
|
6931
7342
|
|
6932
7343
|
.attachments .attachment .attachment-info {
|
@@ -6934,7 +7345,7 @@ readers do not read off random characters that represent icons */
|
|
6934
7345
|
}
|
6935
7346
|
|
6936
7347
|
.attachments .attachment.drop-placeholder {
|
6937
|
-
font-size:
|
7348
|
+
font-size: 0.875rem;
|
6938
7349
|
margin-top: -1px;
|
6939
7350
|
border-top: 1px solid #ddd;
|
6940
7351
|
border-top: 1px solid var(--border-color);
|
@@ -6967,6 +7378,8 @@ readers do not read off random characters that represent icons */
|
|
6967
7378
|
|
6968
7379
|
.attachments .attachment .actions {
|
6969
7380
|
float: right;
|
7381
|
+
display: flex;
|
7382
|
+
gap: 0.25rem;
|
6970
7383
|
}
|
6971
7384
|
|
6972
7385
|
.attachments .attachment h3 {
|
@@ -6984,24 +7397,6 @@ readers do not read off random characters that represent icons */
|
|
6984
7397
|
margin-bottom: 0px;
|
6985
7398
|
}
|
6986
7399
|
|
6987
|
-
.attachments .attachment button {
|
6988
|
-
cursor: pointer;
|
6989
|
-
border: 1px solid #ddd;
|
6990
|
-
border: 1px solid var(--border-color);
|
6991
|
-
border-radius: 3px;
|
6992
|
-
background: #e8e8e8;
|
6993
|
-
background: var(--button-color);
|
6994
|
-
padding: 5px 20px;
|
6995
|
-
font-size: 12px;
|
6996
|
-
color: #111;
|
6997
|
-
color: var(--text-color);
|
6998
|
-
}
|
6999
|
-
|
7000
|
-
.attachments .attachment button:hover,
|
7001
|
-
.attachments .attachment button:focus {
|
7002
|
-
background: #fff;
|
7003
|
-
}
|
7004
|
-
|
7005
7400
|
.attachment-editor {
|
7006
7401
|
width: 60vw;
|
7007
7402
|
min-height: 450px;
|
@@ -7045,29 +7440,11 @@ body {
|
|
7045
7440
|
color: var(--text-color);
|
7046
7441
|
}
|
7047
7442
|
|
7048
|
-
body,
|
7049
|
-
td,
|
7050
|
-
th {
|
7051
|
-
font-family: Helvetica, Arial, sans-serif;
|
7052
|
-
font-size: 12px;
|
7053
|
-
}
|
7054
|
-
|
7055
|
-
h1,
|
7056
|
-
h2,
|
7057
|
-
h3,
|
7058
|
-
h4,
|
7059
|
-
h5,
|
7060
|
-
h6,
|
7061
|
-
p {
|
7062
|
-
margin: 16px 0;
|
7063
|
-
}
|
7064
|
-
|
7065
7443
|
img {
|
7066
7444
|
border: 0;
|
7067
7445
|
}
|
7068
7446
|
|
7069
7447
|
small {
|
7070
|
-
font-size: 0.9em;
|
7071
7448
|
color: #666;
|
7072
7449
|
color: var(--text-light-color);
|
7073
7450
|
}
|
@@ -7086,7 +7463,7 @@ th {
|
|
7086
7463
|
}
|
7087
7464
|
|
7088
7465
|
div.content {
|
7089
|
-
margin:
|
7466
|
+
margin: 1.5rem 2rem;
|
7090
7467
|
}
|
7091
7468
|
|
7092
7469
|
table.show th,
|
@@ -7095,56 +7472,6 @@ td {
|
|
7095
7472
|
padding: 2px 16px 2px 0;
|
7096
7473
|
}
|
7097
7474
|
|
7098
|
-
.errorExplanation {
|
7099
|
-
background-color: #ffd;
|
7100
|
-
border-bottom: 1px solid #dda;
|
7101
|
-
margin: -32px -32px 16px -32px;
|
7102
|
-
padding: 0px 32px;
|
7103
|
-
color: #333;
|
7104
|
-
}
|
7105
|
-
|
7106
|
-
.errorExplanation h2 {
|
7107
|
-
font-weight: normal;
|
7108
|
-
font-size: 1.4em;
|
7109
|
-
margin: 0 -32px 16px -32px;
|
7110
|
-
padding: 8px 32px;
|
7111
|
-
background-color: #c00007;
|
7112
|
-
background-color: var(--red);
|
7113
|
-
color: #fff;
|
7114
|
-
}
|
7115
|
-
|
7116
|
-
.errorExplanation p {
|
7117
|
-
margin-bottom: 0;
|
7118
|
-
padding: 0;
|
7119
|
-
}
|
7120
|
-
|
7121
|
-
.errorExplanation ul {
|
7122
|
-
padding: 0;
|
7123
|
-
list-style-position: inside;
|
7124
|
-
}
|
7125
|
-
|
7126
|
-
.errorExplanation ul li {
|
7127
|
-
font-weight: bold;
|
7128
|
-
}
|
7129
|
-
|
7130
|
-
.flash {
|
7131
|
-
background: #fffbdf;
|
7132
|
-
border-bottom: 1px solid #ccc9b2;
|
7133
|
-
margin: -32px -32px 32px -32px;
|
7134
|
-
padding: 16px 32px;
|
7135
|
-
font-weight: bold;
|
7136
|
-
color: #6f2d1b;
|
7137
|
-
font-size: 1.2em;
|
7138
|
-
}
|
7139
|
-
|
7140
|
-
div.paginator {
|
7141
|
-
margin: 32px 0;
|
7142
|
-
font-size: 1.5em;
|
7143
|
-
font-weight: bold;
|
7144
|
-
color: #666;
|
7145
|
-
color: var(--text-light-color);
|
7146
|
-
}
|
7147
|
-
|
7148
7475
|
img.thumbnail {
|
7149
7476
|
border: 1px solid #555;
|
7150
7477
|
}
|
@@ -7152,7 +7479,6 @@ img.thumbnail {
|
|
7152
7479
|
li .actions {
|
7153
7480
|
font-weight: normal;
|
7154
7481
|
display: inline;
|
7155
|
-
font-size: 12px;
|
7156
7482
|
color: #666;
|
7157
7483
|
color: var(--text-light-color);
|
7158
7484
|
margin-top: 1px;
|
@@ -7172,14 +7498,33 @@ li .actions {
|
|
7172
7498
|
}
|
7173
7499
|
|
7174
7500
|
main form {
|
7175
|
-
margin:
|
7501
|
+
margin: 1.5rem 2rem;
|
7176
7502
|
}
|
7177
7503
|
|
7178
7504
|
form .field {
|
7179
|
-
margin:
|
7505
|
+
margin: 1.5rem 0;
|
7180
7506
|
padding: 0;
|
7181
7507
|
}
|
7182
7508
|
|
7509
|
+
form .field:first-child {
|
7510
|
+
margin-top: 0px;
|
7511
|
+
}
|
7512
|
+
|
7513
|
+
form .field:last-child {
|
7514
|
+
margin-bottom: 0px;
|
7515
|
+
}
|
7516
|
+
|
7517
|
+
form .field .date-select {
|
7518
|
+
display: flex;
|
7519
|
+
gap: 4px;
|
7520
|
+
flex-wrap: wrap;
|
7521
|
+
}
|
7522
|
+
|
7523
|
+
form .field .date-select .time {
|
7524
|
+
width: 4rem;
|
7525
|
+
min-width: 2rem;
|
7526
|
+
}
|
7527
|
+
|
7183
7528
|
form .field input[type="text"],
|
7184
7529
|
form .field input[type="password"],
|
7185
7530
|
form .field input[type="email"],
|
@@ -7191,8 +7536,8 @@ form .field label {
|
|
7191
7536
|
display: block;
|
7192
7537
|
padding: 0;
|
7193
7538
|
margin: 0 0 4px 0;
|
7194
|
-
font-weight:
|
7195
|
-
font-
|
7539
|
+
font-weight: 600;
|
7540
|
+
font-weight: var(--bold-weight);
|
7196
7541
|
color: #111;
|
7197
7542
|
color: var(--text-color);
|
7198
7543
|
transition: color 150ms ease-out;
|
@@ -7209,6 +7554,7 @@ form .field label.radio-button {
|
|
7209
7554
|
}
|
7210
7555
|
|
7211
7556
|
form .field .description {
|
7557
|
+
display: block;
|
7212
7558
|
color: #666;
|
7213
7559
|
color: var(--text-light-color);
|
7214
7560
|
margin: 0 0 6px 0;
|
@@ -7270,10 +7616,6 @@ form .date-range-select .date {
|
|
7270
7616
|
white-space: nowrap;
|
7271
7617
|
}
|
7272
7618
|
|
7273
|
-
form .date-range-select .date .date-select {
|
7274
|
-
display: inline-block;
|
7275
|
-
}
|
7276
|
-
|
7277
7619
|
form .date-range-select .date input[type="text"] {
|
7278
7620
|
display: inline;
|
7279
7621
|
width: auto;
|
@@ -7326,12 +7668,13 @@ textarea {
|
|
7326
7668
|
border: 1px solid #ddd;
|
7327
7669
|
border: 1px solid var(--border-color);
|
7328
7670
|
box-shadow: inset 0px 5px 5px rgba(0, 0, 0, 0.03);
|
7329
|
-
padding:
|
7330
|
-
line-height: 1.4;
|
7331
|
-
font-family: Helvetica, Arial, sans-serif;
|
7332
|
-
font-size: 13px;
|
7671
|
+
padding: 0.5rem 0.75rem;
|
7333
7672
|
}
|
7334
7673
|
|
7674
|
+
input.tight[type="text"], input.tight[type="password"], textarea.tight {
|
7675
|
+
padding: 0.25rem 0.5rem;
|
7676
|
+
}
|
7677
|
+
|
7335
7678
|
input[type="text"]:disabled, input[type="password"]:disabled, textarea:disabled {
|
7336
7679
|
border-color: #eee;
|
7337
7680
|
border-color: var(--border-color-light);
|
@@ -7343,13 +7686,6 @@ input.warn[type="text"], input.warn[type="password"], textarea.warn {
|
|
7343
7686
|
border-color: red;
|
7344
7687
|
}
|
7345
7688
|
|
7346
|
-
main .login-form input[type="text"],
|
7347
|
-
main .login-form input[type="password"],
|
7348
|
-
input[type="text"].large,
|
7349
|
-
input[type="password"].large {
|
7350
|
-
font-size: 1.4em;
|
7351
|
-
}
|
7352
|
-
|
7353
7689
|
fieldset {
|
7354
7690
|
padding: 0px;
|
7355
7691
|
margin: 0px;
|
@@ -7358,6 +7694,10 @@ fieldset {
|
|
7358
7694
|
border-bottom: 1px solid var(--border-color);
|
7359
7695
|
}
|
7360
7696
|
|
7697
|
+
.buttons {
|
7698
|
+
gap: 4px;
|
7699
|
+
}
|
7700
|
+
|
7361
7701
|
button,
|
7362
7702
|
select {
|
7363
7703
|
-webkit-appearance: none;
|
@@ -7367,7 +7707,7 @@ select {
|
|
7367
7707
|
font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, "Segoe UI",
|
7368
7708
|
Roboto, Ubuntu, "Helvetica Neue", Oxygen, Cantarell, sans-serif;
|
7369
7709
|
font-family: var(--font-os-sans);
|
7370
|
-
font-size:
|
7710
|
+
font-size: 0.875rem;
|
7371
7711
|
color: #111;
|
7372
7712
|
color: var(--text-color);
|
7373
7713
|
line-height: 1.5;
|
@@ -7380,6 +7720,10 @@ select {
|
|
7380
7720
|
box-shadow: inset 0px 0.75em 0.75em rgba(255, 255, 255, 0.25);
|
7381
7721
|
}
|
7382
7722
|
|
7723
|
+
button .icon, select .icon {
|
7724
|
+
margin-right: 8px;
|
7725
|
+
}
|
7726
|
+
|
7383
7727
|
button:hover, select:hover {
|
7384
7728
|
background-color: #d8d8d8;
|
7385
7729
|
background-color: var(--button-color-hover);
|
@@ -7396,6 +7740,35 @@ button:disabled:hover, select:disabled:hover {
|
|
7396
7740
|
background-color: var(--button-color);
|
7397
7741
|
}
|
7398
7742
|
|
7743
|
+
button.primary, select.primary {
|
7744
|
+
background: #111;
|
7745
|
+
background: var(--text-color);
|
7746
|
+
border-color: #111;
|
7747
|
+
border-color: var(--text-color);
|
7748
|
+
color: #fff;
|
7749
|
+
color: var(--text-invert-color);
|
7750
|
+
box-shadow: inset 0px 0.75em 0.75em rgba(255, 255, 255, 0.2);
|
7751
|
+
}
|
7752
|
+
|
7753
|
+
button.primary:hover, select.primary:hover {
|
7754
|
+
box-shadow: inset 0px 0.75em 0.75em rgba(255, 255, 255, 0.1);
|
7755
|
+
}
|
7756
|
+
|
7757
|
+
button.transparent, select.transparent {
|
7758
|
+
border: none;
|
7759
|
+
background: transparent;
|
7760
|
+
cursor: pointer;
|
7761
|
+
padding: 0.25rem 0.25rem;
|
7762
|
+
}
|
7763
|
+
|
7764
|
+
button.transparent:hover,
|
7765
|
+
select.transparent:hover,
|
7766
|
+
button.transparent:focus,
|
7767
|
+
select.transparent:focus {
|
7768
|
+
-webkit-text-decoration: underline;
|
7769
|
+
text-decoration: underline;
|
7770
|
+
}
|
7771
|
+
|
7399
7772
|
select {
|
7400
7773
|
padding-right: 2em;
|
7401
7774
|
background-image: url("pages/admin/angle-down-solid.svg");
|
@@ -7411,12 +7784,47 @@ form.button-to {
|
|
7411
7784
|
padding: 0;
|
7412
7785
|
}
|
7413
7786
|
|
7787
|
+
.buttons {
|
7788
|
+
display: flex;
|
7789
|
+
flex-wrap: wrap;
|
7790
|
+
gap: 0.25rem;
|
7791
|
+
}
|
7792
|
+
|
7793
|
+
.inline-form {
|
7794
|
+
display: flex;
|
7795
|
+
}
|
7796
|
+
|
7797
|
+
.inline-form input {
|
7798
|
+
flex: 1 1 auto;
|
7799
|
+
border-right: none;
|
7800
|
+
}
|
7801
|
+
|
7802
|
+
.inline-form input:focus {
|
7803
|
+
z-index: 20;
|
7804
|
+
}
|
7805
|
+
|
7806
|
+
.inline-form button {
|
7807
|
+
border-radius: 0px;
|
7808
|
+
white-space: nowrap;
|
7809
|
+
border-right: none;
|
7810
|
+
}
|
7811
|
+
|
7812
|
+
.inline-form button:last-child {
|
7813
|
+
border-top-right-radius: 5px;
|
7814
|
+
border-bottom-right-radius: 5px;
|
7815
|
+
border-right: 1px solid #aaa;
|
7816
|
+
border-right: 1px solid var(--button-border-color);
|
7817
|
+
}
|
7818
|
+
|
7414
7819
|
header {
|
7415
7820
|
background: #000;
|
7416
7821
|
background: var(--background-invert-color);
|
7417
|
-
|
7822
|
+
padding: 1.25rem 1rem 0rem 1rem;
|
7418
7823
|
color: #fff;
|
7419
7824
|
color: var(--text-invert-color);
|
7825
|
+
display: flex;
|
7826
|
+
flex-wrap: wrap;
|
7827
|
+
gap: 1rem;
|
7420
7828
|
}
|
7421
7829
|
|
7422
7830
|
header a,
|
@@ -7430,43 +7838,37 @@ header a,
|
|
7430
7838
|
}
|
7431
7839
|
|
7432
7840
|
header .logo {
|
7433
|
-
|
7434
|
-
|
7435
|
-
|
7436
|
-
left:
|
7437
|
-
width: 21px;
|
7438
|
-
height: 27px;
|
7841
|
+
background: url("pages/admin/icon.svg");
|
7842
|
+
background-repeat: no-repeat;
|
7843
|
+
min-height: 27px;
|
7844
|
+
padding-left: 38px;
|
7439
7845
|
}
|
7440
7846
|
|
7441
7847
|
header .site-name {
|
7442
7848
|
color: #fff;
|
7443
7849
|
color: var(--text-invert-color);
|
7444
|
-
|
7445
|
-
top: 15px;
|
7446
|
-
left: 52px;
|
7850
|
+
flex-grow: 1;
|
7447
7851
|
}
|
7448
7852
|
|
7449
7853
|
header .site-name h1 {
|
7450
7854
|
margin: 0;
|
7451
7855
|
padding: 0;
|
7452
|
-
font-family: Arial, Helvetica, sans-serif;
|
7453
7856
|
display: inline;
|
7454
|
-
font-size:
|
7857
|
+
font-size: 1.4rem;
|
7858
|
+
letter-spacing: -0.04rem;
|
7455
7859
|
font-weight: normal;
|
7456
7860
|
}
|
7457
7861
|
|
7458
7862
|
header .site-name h1 a {
|
7459
|
-
font-weight:
|
7863
|
+
font-weight: 800;
|
7460
7864
|
-webkit-text-decoration: none;
|
7461
7865
|
text-decoration: none;
|
7462
7866
|
padding-right: 6px;
|
7463
7867
|
}
|
7464
7868
|
|
7465
7869
|
header .user {
|
7466
|
-
|
7467
|
-
|
7468
|
-
top: 20px;
|
7469
|
-
right: 16px;
|
7870
|
+
display: flex;
|
7871
|
+
align-items: center;
|
7470
7872
|
}
|
7471
7873
|
|
7472
7874
|
header .user a {
|
@@ -7483,31 +7885,28 @@ header .user a:first-of-type {
|
|
7483
7885
|
}
|
7484
7886
|
|
7485
7887
|
header .tabs {
|
7486
|
-
|
7487
|
-
|
7488
|
-
|
7489
|
-
|
7490
|
-
right: 8px;
|
7888
|
+
display: flex;
|
7889
|
+
overflow: scroll;
|
7890
|
+
width: 100%;
|
7891
|
+
gap: 8px;
|
7491
7892
|
}
|
7492
7893
|
|
7493
7894
|
header .tabs ul {
|
7494
|
-
padding:
|
7495
|
-
margin:
|
7895
|
+
padding: 0px;
|
7896
|
+
margin: 0px;
|
7496
7897
|
list-style-type: none;
|
7497
|
-
display:
|
7498
|
-
|
7898
|
+
display: flex;
|
7899
|
+
gap: 4px;
|
7499
7900
|
}
|
7500
7901
|
|
7501
7902
|
header .tabs ul.account {
|
7502
|
-
|
7903
|
+
flex-grow: 1;
|
7904
|
+
justify-content: flex-end;
|
7503
7905
|
}
|
7504
7906
|
|
7505
7907
|
header .tabs li {
|
7506
|
-
display: inline;
|
7507
7908
|
margin: 0;
|
7508
7909
|
padding: 0;
|
7509
|
-
font-weight: normal;
|
7510
|
-
font-size: 13px;
|
7511
7910
|
}
|
7512
7911
|
|
7513
7912
|
header .tabs a,
|
@@ -7520,7 +7919,7 @@ header .tabs a,
|
|
7520
7919
|
padding: 0 15px;
|
7521
7920
|
line-height: 32px;
|
7522
7921
|
height: 32px;
|
7523
|
-
margin:
|
7922
|
+
margin: 0px;
|
7524
7923
|
-webkit-text-decoration: none;
|
7525
7924
|
text-decoration: none;
|
7526
7925
|
}
|
@@ -7544,7 +7943,6 @@ header .tabs a:hover,
|
|
7544
7943
|
display: inline;
|
7545
7944
|
background: transparent;
|
7546
7945
|
padding: 6px 17px;
|
7547
|
-
font-weight: bold;
|
7548
7946
|
}
|
7549
7947
|
|
7550
7948
|
.content-tabs li.current {
|
@@ -7554,6 +7952,8 @@ header .tabs a:hover,
|
|
7554
7952
|
border: 1px solid #cae6f1;
|
7555
7953
|
border-bottom: 1px solid #fff;
|
7556
7954
|
border-bottom: 1px solid var(--background-color);
|
7955
|
+
font-weight: 600;
|
7956
|
+
font-weight: var(--bold-weight);
|
7557
7957
|
}
|
7558
7958
|
|
7559
7959
|
.content-tabs li.current a,
|
@@ -7573,6 +7973,11 @@ header .tabs a:hover,
|
|
7573
7973
|
color: var(--text-color);
|
7574
7974
|
}
|
7575
7975
|
|
7976
|
+
.page-description h3 {
|
7977
|
+
font-weight: 600;
|
7978
|
+
font-weight: var(--bold-weight);
|
7979
|
+
}
|
7980
|
+
|
7576
7981
|
.page-description em {
|
7577
7982
|
font-style: normal;
|
7578
7983
|
color: #4a5357;
|
@@ -7595,7 +8000,8 @@ header .tabs a:hover,
|
|
7595
8000
|
}
|
7596
8001
|
|
7597
8002
|
.page-description .links a.current {
|
7598
|
-
font-weight:
|
8003
|
+
font-weight: 600;
|
8004
|
+
font-weight: var(--bold-weight);
|
7599
8005
|
-webkit-text-decoration: none;
|
7600
8006
|
text-decoration: none;
|
7601
8007
|
color: #111;
|
@@ -7610,14 +8016,15 @@ header .tabs a:hover,
|
|
7610
8016
|
main .page-description h3 {
|
7611
8017
|
margin: 0;
|
7612
8018
|
padding: 0;
|
7613
|
-
font-size:
|
8019
|
+
font-size: 0.875rem;
|
7614
8020
|
text-shadow: #e9f6ff 1px 1px 1px;
|
7615
8021
|
}
|
7616
8022
|
|
7617
8023
|
.editable-image {
|
7618
8024
|
cursor: pointer;
|
7619
8025
|
display: block;
|
7620
|
-
transition:
|
8026
|
+
transition:
|
8027
|
+
transform 200ms, box-shadow 200ms, border-color 200ms ease-out;
|
7621
8028
|
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0);
|
7622
8029
|
border: 1px solid #fff;
|
7623
8030
|
position: relative;
|
@@ -7628,7 +8035,7 @@ main .page-description h3 {
|
|
7628
8035
|
position: absolute;
|
7629
8036
|
bottom: 5px;
|
7630
8037
|
right: 6px;
|
7631
|
-
font-size:
|
8038
|
+
font-size: 1rem;
|
7632
8039
|
color: #ffdfa0;
|
7633
8040
|
color: var(--background-warning-color);
|
7634
8041
|
text-shadow: 0px 0px 5px rgba(0, 0, 0, 1);
|
@@ -7642,7 +8049,7 @@ main .page-description h3 {
|
|
7642
8049
|
.editable-image:hover {
|
7643
8050
|
border-color: rgba(20, 20, 20, 0.5);
|
7644
8051
|
transform: scale(1.01) translate(0px, -1px);
|
7645
|
-
box-shadow: 0px 5px
|
8052
|
+
box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
|
7646
8053
|
}
|
7647
8054
|
|
7648
8055
|
.image-editor {
|
@@ -7680,7 +8087,11 @@ main .page-description h3 {
|
|
7680
8087
|
linear-gradient(45deg, transparent 75%, #fff 75%),
|
7681
8088
|
linear-gradient(135deg, transparent 75%, #fff 75%);
|
7682
8089
|
background-size: 12px 12px;
|
7683
|
-
background-position:
|
8090
|
+
background-position:
|
8091
|
+
0 0,
|
8092
|
+
6px 0,
|
8093
|
+
6px -6px,
|
8094
|
+
0px 6px;
|
7684
8095
|
display: flex;
|
7685
8096
|
flex-direction: column;
|
7686
8097
|
justify-content: center;
|
@@ -7803,7 +8214,8 @@ main .page-description h3 {
|
|
7803
8214
|
-moz-user-select: none;
|
7804
8215
|
user-select: none;
|
7805
8216
|
cursor: pointer;
|
7806
|
-
transition:
|
8217
|
+
transition:
|
8218
|
+
border-radius 200ms, margin 200ms, width 200ms, height 200ms, border-color 200ms ease-out;
|
7807
8219
|
}
|
7808
8220
|
|
7809
8221
|
.image-editor .focal-editor .focal-point:after {
|
@@ -7834,9 +8246,10 @@ main .page-description h3 {
|
|
7834
8246
|
}
|
7835
8247
|
|
7836
8248
|
.image-grid {
|
7837
|
-
--image-padding:
|
8249
|
+
--image-padding: 0.5rem;
|
7838
8250
|
margin-bottom: 40px;
|
7839
8251
|
display: flex;
|
8252
|
+
gap: 1rem;
|
7840
8253
|
}
|
7841
8254
|
|
7842
8255
|
@media screen and (max-width: 900px) {
|
@@ -8167,6 +8580,12 @@ body {
|
|
8167
8580
|
height: 100vh;
|
8168
8581
|
}
|
8169
8582
|
|
8583
|
+
.wrapper > div[data-react-class] {
|
8584
|
+
flex-grow: 1;
|
8585
|
+
display: flex;
|
8586
|
+
flex-flow: column nowrap;
|
8587
|
+
}
|
8588
|
+
|
8170
8589
|
.wrapper > *,
|
8171
8590
|
.wrapper .main-wrapper {
|
8172
8591
|
flex-shrink: 0;
|
@@ -8193,7 +8612,7 @@ body {
|
|
8193
8612
|
.main-wrapper > aside {
|
8194
8613
|
min-width: 300px;
|
8195
8614
|
width: 20%;
|
8196
|
-
padding:
|
8615
|
+
padding: 1rem;
|
8197
8616
|
}
|
8198
8617
|
|
8199
8618
|
@media screen and (max-width: 900px) {
|
@@ -8246,12 +8665,9 @@ a.delete:focus {
|
|
8246
8665
|
}
|
8247
8666
|
|
8248
8667
|
button a {
|
8668
|
+
padding: 5px 0;
|
8249
8669
|
color: #111 !important;
|
8250
8670
|
color: var(--text-color) !important;
|
8251
|
-
}
|
8252
|
-
|
8253
|
-
button a {
|
8254
|
-
padding: 5px 0;
|
8255
8671
|
-webkit-text-decoration: none;
|
8256
8672
|
text-decoration: none;
|
8257
8673
|
}
|
@@ -8282,7 +8698,8 @@ table.list th {
|
|
8282
8698
|
);
|
8283
8699
|
color: #666;
|
8284
8700
|
color: var(--text-light-color);
|
8285
|
-
font-weight:
|
8701
|
+
font-weight: 600;
|
8702
|
+
font-weight: var(--bold-weight);
|
8286
8703
|
border-bottom: 1px solid #ddd;
|
8287
8704
|
border-bottom: 1px solid var(--border-color);
|
8288
8705
|
}
|
@@ -8298,9 +8715,24 @@ table.list td.note {
|
|
8298
8715
|
}
|
8299
8716
|
|
8300
8717
|
table.list td.name {
|
8301
|
-
font-weight:
|
8718
|
+
font-weight: 600;
|
8719
|
+
font-weight: var(--bold-weight);
|
8302
8720
|
}
|
8303
8721
|
|
8722
|
+
table.list td.name a,
|
8723
|
+
table.list td.name a:visited {
|
8724
|
+
-webkit-text-decoration: none;
|
8725
|
+
text-decoration: none;
|
8726
|
+
color: #111;
|
8727
|
+
color: var(--text-color);
|
8728
|
+
}
|
8729
|
+
|
8730
|
+
table.list td.name a:focus,
|
8731
|
+
table.list td.name a:hover {
|
8732
|
+
border-bottom: 1px solid #111;
|
8733
|
+
border-bottom: 1px solid var(--text-color);
|
8734
|
+
}
|
8735
|
+
|
8304
8736
|
table.list tr td:first-child,
|
8305
8737
|
table.list tr th:first-child {
|
8306
8738
|
padding-left: 32px;
|
@@ -8340,36 +8772,6 @@ table.list p {
|
|
8340
8772
|
padding: 0;
|
8341
8773
|
}
|
8342
8774
|
|
8343
|
-
main .login-form {
|
8344
|
-
padding-top: 10px;
|
8345
|
-
}
|
8346
|
-
|
8347
|
-
main .login-form label {
|
8348
|
-
display: block;
|
8349
|
-
font-weight: bold;
|
8350
|
-
margin-bottom: 8px;
|
8351
|
-
font-size: 1.2em;
|
8352
|
-
color: #111;
|
8353
|
-
color: var(--text-color);
|
8354
|
-
}
|
8355
|
-
|
8356
|
-
main .login-form ul {
|
8357
|
-
margin: 0px;
|
8358
|
-
padding: 0px;
|
8359
|
-
margin-top: 30px;
|
8360
|
-
list-style-position: inside;
|
8361
|
-
list-style-type: disc;
|
8362
|
-
color: #ddd;
|
8363
|
-
color: var(--border-color);
|
8364
|
-
line-height: 1.5;
|
8365
|
-
}
|
8366
|
-
|
8367
|
-
main .login-form ul li {
|
8368
|
-
margin: 0px;
|
8369
|
-
padding: 0px;
|
8370
|
-
font-size: 1.2em;
|
8371
|
-
}
|
8372
|
-
|
8373
8775
|
body.modal > .wrapper {
|
8374
8776
|
transition: filter 1000ms linear;
|
8375
8777
|
filter: blur(10px);
|
@@ -8472,6 +8874,7 @@ body.modal > .wrapper {
|
|
8472
8874
|
margin: 20px 0 40px 0;
|
8473
8875
|
margin-left: -20px;
|
8474
8876
|
margin-right: -10px;
|
8877
|
+
max-width: 90rem;
|
8475
8878
|
}
|
8476
8879
|
|
8477
8880
|
.page-tree .draggable {
|
@@ -8493,31 +8896,44 @@ body.modal > .wrapper {
|
|
8493
8896
|
|
8494
8897
|
.page-tree .node .inner {
|
8495
8898
|
position: relative;
|
8496
|
-
|
8497
|
-
|
8899
|
+
padding-left: 1.75rem;
|
8900
|
+
display: flex;
|
8901
|
+
border-radius: 5px;
|
8498
8902
|
}
|
8499
8903
|
|
8904
|
+
.page-tree .node .inner:hover {
|
8905
|
+
background: #e7f3f9;
|
8906
|
+
background: var(--background-highlight-color);
|
8907
|
+
}
|
8908
|
+
|
8500
8909
|
.page-tree .node .collapse {
|
8501
8910
|
position: absolute;
|
8502
|
-
left: 0;
|
8911
|
+
left: 0.625rem;
|
8912
|
+
top: 0.5rem;
|
8503
8913
|
cursor: pointer;
|
8504
|
-
|
8505
|
-
|
8914
|
+
padding-top: 0px;
|
8915
|
+
transition: transform 250ms cubic-bezier(0.165, 0.84, 0.44, 1);
|
8506
8916
|
}
|
8507
8917
|
|
8918
|
+
.page-tree .node .collapse.open {
|
8919
|
+
transform: rotate(90deg);
|
8920
|
+
}
|
8921
|
+
|
8922
|
+
.page-tree .node .inner:has(.edit-name) .collapse {
|
8923
|
+
top: 0.75rem;
|
8924
|
+
}
|
8925
|
+
|
8508
8926
|
.page-tree .page {
|
8509
|
-
|
8510
|
-
|
8511
|
-
|
8512
|
-
}
|
8927
|
+
padding: 0.2rem;
|
8928
|
+
display: flex;
|
8929
|
+
flex-wrap: wrap;
|
8513
8930
|
|
8514
|
-
|
8515
|
-
|
8516
|
-
|
8517
|
-
|
8518
|
-
}
|
8931
|
+
gap: 0.5rem;
|
8932
|
+
align-items: baseline;
|
8933
|
+
width: 100%;
|
8934
|
+
}
|
8519
8935
|
|
8520
|
-
.page-tree .page:
|
8936
|
+
.page-tree .page:hove2r {
|
8521
8937
|
border: 1px solid #eee;
|
8522
8938
|
border: 1px solid var(--border-color-light);
|
8523
8939
|
background: linear-gradient(
|
@@ -8532,43 +8948,36 @@ body.modal > .wrapper {
|
|
8532
8948
|
);
|
8533
8949
|
}
|
8534
8950
|
|
8951
|
+
.page-tree .page .page-icon {
|
8952
|
+
margin-right: 0rem;
|
8953
|
+
}
|
8954
|
+
|
8535
8955
|
.page-tree .page .date {
|
8536
|
-
font-size: 12px;
|
8537
8956
|
margin-left: 10px;
|
8538
8957
|
color: #666;
|
8539
8958
|
color: var(--text-light-color);
|
8540
8959
|
}
|
8541
8960
|
|
8542
8961
|
.page-tree .page .name {
|
8543
|
-
font-weight:
|
8544
|
-
|
8545
|
-
|
8546
|
-
.page-tree .page .icon {
|
8547
|
-
margin-right: 8px;
|
8548
|
-
}
|
8549
|
-
|
8550
|
-
.page-tree .page .status-label,
|
8551
|
-
.page-tree .page .collapsed-label {
|
8552
|
-
margin-left: 3px;
|
8553
|
-
font-size: 12px;
|
8962
|
+
font-weight: 600;
|
8963
|
+
font-weight: var(--bold-weight);
|
8554
8964
|
}
|
8555
8965
|
|
8556
|
-
.page-tree .page
|
8557
|
-
display: inline;
|
8966
|
+
.page-tree .page .edit-name {
|
8558
8967
|
margin: 0;
|
8559
8968
|
padding: 0;
|
8969
|
+
flex-grow: 1;
|
8970
|
+
display: flex;
|
8971
|
+
gap: 0.5rem;
|
8560
8972
|
}
|
8561
8973
|
|
8562
|
-
.page-tree .page
|
8563
|
-
|
8564
|
-
|
8565
|
-
margin-top: -2px;
|
8566
|
-
margin-bottom: -2px;
|
8567
|
-
margin-right: 5px;
|
8974
|
+
.page-tree .page .edit-name input {
|
8975
|
+
max-width: 100%;
|
8976
|
+
flex: 1 1 auto;
|
8568
8977
|
}
|
8569
8978
|
|
8570
|
-
.page-tree .page
|
8571
|
-
|
8979
|
+
.page-tree .page .edit-name button {
|
8980
|
+
white-space: nowrap;
|
8572
8981
|
}
|
8573
8982
|
|
8574
8983
|
.page-tree .page a,
|
@@ -8599,74 +9008,19 @@ body.modal > .wrapper {
|
|
8599
9008
|
}
|
8600
9009
|
|
8601
9010
|
.page-tree .page .actions {
|
8602
|
-
float: right;
|
8603
9011
|
visibility: hidden;
|
8604
|
-
|
9012
|
+
flex-grow: 1;
|
9013
|
+
display: flex;
|
9014
|
+
justify-content: flex-end;
|
9015
|
+
gap: 0.5rem;
|
8605
9016
|
}
|
8606
9017
|
|
8607
|
-
.page-tree .page .actions button {
|
8608
|
-
margin-left: 5px;
|
8609
|
-
}
|
8610
|
-
|
8611
9018
|
.page-tree .page:hover .actions {
|
8612
9019
|
visibility: visible;
|
8613
9020
|
}
|
8614
9021
|
|
8615
|
-
.page-tree button {
|
8616
|
-
padding: 0;
|
8617
|
-
border: 0;
|
8618
|
-
background: transparent;
|
8619
|
-
cursor: pointer;
|
8620
|
-
font-size: 13px;
|
8621
|
-
padding: 3px 5px;
|
8622
|
-
border-radius: 3px;
|
8623
|
-
color: #15516a;
|
8624
|
-
color: var(--link-hover-color);
|
8625
|
-
}
|
8626
|
-
|
8627
|
-
.page-tree button .icon {
|
8628
|
-
margin-right: 8px;
|
8629
|
-
}
|
8630
|
-
|
8631
|
-
.page-tree button:hover,
|
8632
|
-
.page-tree button:focus {
|
8633
|
-
color: #15516a;
|
8634
|
-
color: var(--blue-hover);
|
8635
|
-
background: rgba(29,113,149,0.25098);
|
8636
|
-
background: var(--blue-transparent);
|
8637
|
-
}
|
8638
|
-
|
8639
|
-
.page-tree button.add {
|
8640
|
-
color: #19ac1e;
|
8641
|
-
color: var(--green);
|
8642
|
-
}
|
8643
|
-
|
8644
|
-
.page-tree button.add:hover,
|
8645
|
-
.page-tree button.add:focus {
|
8646
|
-
color: #137f16;
|
8647
|
-
color: var(--green-hover);
|
8648
|
-
background: rgba(25,172,30,0.25098);
|
8649
|
-
background: var(--green-transparent);
|
8650
|
-
}
|
8651
|
-
|
8652
|
-
.page-tree button.delete,
|
8653
|
-
.page-tree button.cancel {
|
8654
|
-
color: #c00007;
|
8655
|
-
color: var(--red);
|
8656
|
-
}
|
8657
|
-
|
8658
|
-
.page-tree button.delete:hover,
|
8659
|
-
.page-tree button.cancel:hover,
|
8660
|
-
.page-tree button.delete:focus,
|
8661
|
-
.page-tree button.cancel:focus {
|
8662
|
-
color: #8d0005;
|
8663
|
-
color: var(--red-hover);
|
8664
|
-
background: rgba(192,0,7,0.25098);
|
8665
|
-
background: var(--red-transparent);
|
8666
|
-
}
|
8667
|
-
|
8668
9022
|
.page-tree button.add-inline {
|
8669
|
-
margin:
|
9023
|
+
margin: 0.25rem 0 0.25rem 2.875rem;
|
8670
9024
|
}
|
8671
9025
|
|
8672
9026
|
.page-tree .node .node .node .page .name {
|
@@ -8676,7 +9030,6 @@ body.modal > .wrapper {
|
|
8676
9030
|
.pagination {
|
8677
9031
|
margin: 30px 30px;
|
8678
9032
|
line-height: 20px;
|
8679
|
-
font-size: 14px;
|
8680
9033
|
}
|
8681
9034
|
|
8682
9035
|
.pagination a,
|
@@ -8726,27 +9079,11 @@ body.modal > .wrapper {
|
|
8726
9079
|
margin: 20px -2px;
|
8727
9080
|
}
|
8728
9081
|
|
8729
|
-
.search-bar {
|
8730
|
-
display: flex;
|
8731
|
-
}
|
8732
|
-
|
8733
9082
|
.search-bar input {
|
8734
|
-
flex: 1 1 auto;
|
8735
|
-
border-right: none;
|
8736
9083
|
max-width: 600px;
|
8737
9084
|
min-width: 50px;
|
8738
9085
|
}
|
8739
9086
|
|
8740
|
-
.search-bar input:focus {
|
8741
|
-
z-index: 20;
|
8742
|
-
}
|
8743
|
-
|
8744
|
-
.search-bar button {
|
8745
|
-
border-top-left-radius: 0px;
|
8746
|
-
border-bottom-left-radius: 0px;
|
8747
|
-
white-space: nowrap;
|
8748
|
-
}
|
8749
|
-
|
8750
9087
|
main .search-bar {
|
8751
9088
|
background: #f8f8f8;
|
8752
9089
|
background: var(--background-disabled-color);
|
@@ -8754,10 +9091,6 @@ main .search-bar {
|
|
8754
9091
|
margin: 0px 0px 16px 0px;
|
8755
9092
|
}
|
8756
9093
|
|
8757
|
-
.sidebar .search-bar {
|
8758
|
-
margin-top: 16px;
|
8759
|
-
}
|
8760
|
-
|
8761
9094
|
.sidebar {
|
8762
9095
|
background: #f8f8f8;
|
8763
9096
|
background: var(--background-disabled-color);
|
@@ -8768,19 +9101,12 @@ main .search-bar {
|
|
8768
9101
|
}
|
8769
9102
|
|
8770
9103
|
.sidebar h2 {
|
8771
|
-
margin: 20px 0 0px 0;
|
8772
|
-
padding: 0 0 10px 0;
|
8773
|
-
color: #111;
|
8774
|
-
color: var(--text-color);
|
8775
|
-
font-size: 18px;
|
8776
9104
|
border-bottom: 1px solid #ddd;
|
8777
9105
|
border-bottom: 1px solid var(--border-color);
|
9106
|
+
padding-bottom: 0.5rem;
|
9107
|
+
margin-bottom: 0.5rem;
|
8778
9108
|
}
|
8779
9109
|
|
8780
|
-
.sidebar h2:first-child {
|
8781
|
-
margin-top: 16px;
|
8782
|
-
}
|
8783
|
-
|
8784
9110
|
.sidebar ul {
|
8785
9111
|
list-style-type: disc;
|
8786
9112
|
margin: 1em 0 1em 14px;
|
@@ -8797,46 +9123,49 @@ main .search-bar {
|
|
8797
9123
|
}
|
8798
9124
|
|
8799
9125
|
.tag-editor {
|
8800
|
-
margin-top:
|
8801
|
-
margin-bottom: 1.
|
9126
|
+
margin-top: 0.5rem;
|
9127
|
+
margin-bottom: 1.5rem;
|
9128
|
+
display: flex;
|
9129
|
+
flex-wrap: wrap;
|
9130
|
+
gap: 0.5rem;
|
8802
9131
|
}
|
8803
9132
|
|
8804
|
-
.tag-editor .tags {
|
8805
|
-
line-height: 1.5;
|
8806
|
-
}
|
8807
|
-
|
8808
9133
|
.tag-editor .tag {
|
8809
|
-
font-size:
|
9134
|
+
font-size: 1rem;
|
8810
9135
|
cursor: pointer;
|
8811
|
-
display: block;
|
8812
|
-
float: left;
|
8813
|
-
margin: 0 5px 5px 0;
|
8814
9136
|
padding: 0px;
|
8815
9137
|
background: #f8f8f8;
|
8816
9138
|
background: var(--background-disabled-color);
|
8817
9139
|
border-radius: 5px;
|
8818
|
-
line-height: 26px;
|
8819
|
-
line-height: 36px;
|
8820
9140
|
min-width: 40px;
|
9141
|
+
height: 2rem;
|
8821
9142
|
transition: all 200ms ease-out;
|
8822
9143
|
-webkit-user-select: none;
|
8823
9144
|
-moz-user-select: none;
|
8824
9145
|
user-select: none;
|
9146
|
+
display: flex;
|
8825
9147
|
}
|
8826
9148
|
|
8827
9149
|
.tag-editor .tag label {
|
9150
|
+
display: flex;
|
8828
9151
|
margin: 0px;
|
8829
9152
|
padding: 0px 10px;
|
8830
9153
|
color: inherit;
|
9154
|
+
align-items: center;
|
9155
|
+
gap: 0.5rem;
|
8831
9156
|
}
|
8832
9157
|
|
8833
9158
|
.tag-editor .tag input {
|
8834
|
-
margin: 2px 3px 0 0
|
9159
|
+
/*margin: 2px 3px 0 0;*/
|
8835
9160
|
}
|
8836
9161
|
|
8837
9162
|
.tag-editor .tag .name {
|
8838
|
-
|
8839
|
-
|
9163
|
+
}
|
9164
|
+
|
9165
|
+
.tag-editor .tag:hover,
|
9166
|
+
.tag-editor .tag:focus {
|
9167
|
+
background: #e7f3f9;
|
9168
|
+
background: var(--background-highlight-color);
|
8840
9169
|
}
|
8841
9170
|
|
8842
9171
|
.tag-editor .tag.enabled {
|
@@ -8845,23 +9174,6 @@ main .search-bar {
|
|
8845
9174
|
background: var(--blue-dark);
|
8846
9175
|
}
|
8847
9176
|
|
8848
|
-
.tag-editor .add-tag-form {
|
8849
|
-
float: left;
|
8850
|
-
width: 178px;
|
8851
|
-
white-space: nowrap;
|
8852
|
-
}
|
8853
|
-
|
8854
|
-
.tag-editor input.add-tag {
|
8855
|
-
margin-top: 0px;
|
8856
|
-
border-radius: 5px;
|
8857
|
-
margin: 0 4px 0 0;
|
8858
|
-
}
|
8859
|
-
|
8860
|
-
.tag-editor input.add-tag.example {
|
8861
|
-
color: #666;
|
8862
|
-
color: var(--text-light-color);
|
8863
|
-
}
|
8864
|
-
|
8865
9177
|
textarea.rich {
|
8866
9178
|
margin-top: -32px;
|
8867
9179
|
padding-top: 40px;
|
@@ -8879,7 +9191,6 @@ textarea.rich {
|
|
8879
9191
|
}
|
8880
9192
|
|
8881
9193
|
.toast-wrapper .toast {
|
8882
|
-
font-size: 14px;
|
8883
9194
|
display: inline-block;
|
8884
9195
|
background: #000;
|
8885
9196
|
background: var(--background-invert-color);
|
@@ -8985,13 +9296,13 @@ textarea.rich {
|
|
8985
9296
|
border-right: 1px solid var(--border-color);
|
8986
9297
|
color: #666;
|
8987
9298
|
color: var(--text-light-color);
|
8988
|
-
font-size:
|
9299
|
+
font-size: 0.875rem;
|
8989
9300
|
background-color: #f8f8f8;
|
8990
9301
|
transition: all 200ms ease-out;
|
8991
9302
|
}
|
8992
9303
|
|
8993
9304
|
.toolbar .button i.fa, .toolbar button i.fa {
|
8994
|
-
font-size:
|
9305
|
+
font-size: 1rem;
|
8995
9306
|
}
|
8996
9307
|
|
8997
9308
|
.toolbar .button:focus,
|
@@ -9100,7 +9411,7 @@ ul.recovery-codes {
|
|
9100
9411
|
flex-direction: column;
|
9101
9412
|
align-items: flex-start;
|
9102
9413
|
gap: 1rem;
|
9103
|
-
font-size: 1.
|
9414
|
+
font-size: 1.2rem;
|
9104
9415
|
font-weight: bold;
|
9105
9416
|
}
|
9106
9417
|
|
@@ -9131,12 +9442,9 @@ td.drag-handle {
|
|
9131
9442
|
margin-top: 16px;
|
9132
9443
|
}
|
9133
9444
|
|
9134
|
-
.page-list .page-listing {
|
9135
|
-
padding: 3px 8px 2px 8px !important;
|
9136
|
-
}
|
9137
|
-
|
9138
9445
|
.page-list .page-listing {
|
9139
9446
|
border: 1px solid transparent;
|
9447
|
+
padding: 3px 8px 2px 8px !important;
|
9140
9448
|
}
|
9141
9449
|
|
9142
9450
|
.page-list ul {
|
@@ -9189,7 +9497,8 @@ td.drag-handle {
|
|
9189
9497
|
}
|
9190
9498
|
|
9191
9499
|
.page-list li {
|
9192
|
-
font-weight:
|
9500
|
+
font-weight: 600;
|
9501
|
+
font-weight: var(--bold-weight);
|
9193
9502
|
margin: 0;
|
9194
9503
|
padding: 0;
|
9195
9504
|
clear: both;
|
@@ -9259,24 +9568,10 @@ td.drag-handle {
|
|
9259
9568
|
width: auto;
|
9260
9569
|
}
|
9261
9570
|
|
9262
|
-
.edit-page
|
9263
|
-
|
9264
|
-
}
|
9265
|
-
|
9266
|
-
.edit-page .hidden-options {
|
9267
|
-
display: none;
|
9268
|
-
}
|
9269
|
-
|
9270
|
-
.edit-page .autopublish-notice,
|
9271
|
-
.edit-page .published-date,
|
9272
|
-
.edit-page .advanced-options {
|
9273
|
-
display: none;
|
9571
|
+
.edit-page .advanced-options {
|
9572
|
+
margin-top: 1.5rem;
|
9274
9573
|
}
|
9275
9574
|
|
9276
|
-
.edit-page .autopublish-notice.show, .edit-page .published-date.show, .edit-page .advanced-options.show {
|
9277
|
-
display: block;
|
9278
|
-
}
|
9279
|
-
|
9280
9575
|
.edit-page main input[type="text"],
|
9281
9576
|
.edit-page main textarea {
|
9282
9577
|
width: 100%;
|
@@ -9284,7 +9579,8 @@ td.drag-handle {
|
|
9284
9579
|
}
|
9285
9580
|
|
9286
9581
|
.edit-page main input.page_title {
|
9287
|
-
font-weight:
|
9582
|
+
font-weight: 600;
|
9583
|
+
font-weight: var(--bold-weight);
|
9288
9584
|
font-size: 1.4em;
|
9289
9585
|
color: #111;
|
9290
9586
|
color: var(--text-color);
|
@@ -9328,9 +9624,6 @@ td.drag-handle {
|
|
9328
9624
|
.file-list .ui-sortable-helper {
|
9329
9625
|
border: 1px solid #ddd !important;
|
9330
9626
|
border: 1px solid var(--border-color) !important;
|
9331
|
-
}
|
9332
|
-
|
9333
|
-
.file-list .ui-sortable-helper {
|
9334
9627
|
background: rgba(250, 250, 250, 0.8);
|
9335
9628
|
}
|
9336
9629
|
|