pages_core 3.13.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 +704 -388
- 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 +26 -0
- 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 +87 -0
- data/app/controllers/admin/invites_controller.rb +3 -2
- data/app/controllers/admin/otp_secrets_controller.rb +45 -0
- data/app/controllers/admin/pages_controller.rb +22 -42
- data/app/controllers/admin/recovery_codes_controller.rb +32 -0
- data/app/controllers/admin/sessions_controller.rb +65 -0
- data/app/controllers/admin/users_controller.rb +2 -8
- data/app/controllers/concerns/pages_core/authentication.rb +12 -10
- 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 +1 -3
- 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 +13 -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 -14
- 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/mailers/admin_mailer.rb +2 -2
- 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 +101 -0
- data/app/models/page.rb +0 -3
- data/app/models/user.rb +2 -68
- data/app/policies/page_policy.rb +6 -2
- data/app/policies/user_policy.rb +4 -0
- 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/account_recoveries/new.html.erb +22 -0
- data/app/views/admin/account_recoveries/show.html.erb +37 -0
- data/app/views/admin/invites/show.html.erb +1 -1
- data/app/views/admin/news/_sidebar.html.erb +2 -4
- data/app/views/admin/news/index.html.erb +0 -1
- data/app/views/admin/otp_secrets/create.html.erb +7 -0
- data/app/views/admin/otp_secrets/new.html.erb +60 -0
- 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/recovery_codes/_codes.html.erb +14 -0
- data/app/views/admin/recovery_codes/create.html.erb +7 -0
- data/app/views/admin/recovery_codes/new.html.erb +11 -0
- data/app/views/admin/sessions/_otp_form.html.erb +13 -0
- data/app/views/admin/sessions/new.html.erb +31 -0
- data/app/views/admin/sessions/verify_otp.html.erb +19 -0
- data/app/views/admin/users/_access_control.html.erb +5 -1
- data/app/views/admin/users/_list.html.erb +12 -7
- data/app/views/admin/users/edit.html.erb +31 -1
- data/app/views/admin/users/new.html.erb +1 -1
- data/app/views/admin_mailer/account_recovery.text.erb +10 -0
- data/app/views/layouts/admin/_header.html.erb +3 -5
- data/app/views/layouts/admin/_page_header.html.erb +1 -2
- data/app/views/layouts/admin/_toast.html.erb +12 -0
- data/app/views/layouts/admin.html.erb +2 -2
- data/config/locales/en.yml +11 -7
- data/config/routes.rb +13 -12
- data/db/migrate/20240126160700_add_2fa_fields.rb +26 -0
- data/db/migrate/20240129201300_remove_password_reset_tokens.rb +13 -0
- 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/pages_core.rb +6 -0
- 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 +143 -35
- data/app/assets/stylesheets/pages_core/admin/components/login.css +0 -33
- data/app/controllers/admin/categories_controller.rb +0 -56
- data/app/controllers/admin/password_resets_controller.rb +0 -85
- data/app/controllers/concerns/pages_core/admin/persistent_params.rb +0 -75
- data/app/controllers/sessions_controller.rb +0 -27
- 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/LoginController.ts +0 -32
- 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/page_category.rb +0 -6
- data/app/models/password_reset_token.rb +0 -34
- 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/app/views/admin/password_resets/show.html.erb +0 -21
- data/app/views/admin/users/login.html.erb +0 -65
- data/app/views/admin_mailer/password_reset.text.erb +0 -11
- 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,63 +7463,13 @@ th {
|
|
7086
7463
|
}
|
7087
7464
|
|
7088
7465
|
div.content {
|
7089
|
-
margin:
|
7090
|
-
}
|
7091
|
-
|
7092
|
-
table.show th,
|
7093
|
-
td {
|
7094
|
-
font-weight: normal;
|
7095
|
-
padding: 2px 16px 2px 0;
|
7096
|
-
}
|
7097
|
-
|
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);
|
7466
|
+
margin: 1.5rem 2rem;
|
7467
|
+
}
|
7468
|
+
|
7469
|
+
table.show th,
|
7470
|
+
td {
|
7471
|
+
font-weight: normal;
|
7472
|
+
padding: 2px 16px 2px 0;
|
7146
7473
|
}
|
7147
7474
|
|
7148
7475
|
img.thumbnail {
|
@@ -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,40 +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
|
-
.login-tab.hidden {
|
8374
|
-
display: none;
|
8375
|
-
}
|
8376
|
-
|
8377
8775
|
body.modal > .wrapper {
|
8378
8776
|
transition: filter 1000ms linear;
|
8379
8777
|
filter: blur(10px);
|
@@ -8476,6 +8874,7 @@ body.modal > .wrapper {
|
|
8476
8874
|
margin: 20px 0 40px 0;
|
8477
8875
|
margin-left: -20px;
|
8478
8876
|
margin-right: -10px;
|
8877
|
+
max-width: 90rem;
|
8479
8878
|
}
|
8480
8879
|
|
8481
8880
|
.page-tree .draggable {
|
@@ -8497,31 +8896,44 @@ body.modal > .wrapper {
|
|
8497
8896
|
|
8498
8897
|
.page-tree .node .inner {
|
8499
8898
|
position: relative;
|
8500
|
-
|
8501
|
-
|
8899
|
+
padding-left: 1.75rem;
|
8900
|
+
display: flex;
|
8901
|
+
border-radius: 5px;
|
8502
8902
|
}
|
8503
8903
|
|
8904
|
+
.page-tree .node .inner:hover {
|
8905
|
+
background: #e7f3f9;
|
8906
|
+
background: var(--background-highlight-color);
|
8907
|
+
}
|
8908
|
+
|
8504
8909
|
.page-tree .node .collapse {
|
8505
8910
|
position: absolute;
|
8506
|
-
left: 0;
|
8911
|
+
left: 0.625rem;
|
8912
|
+
top: 0.5rem;
|
8507
8913
|
cursor: pointer;
|
8508
|
-
|
8509
|
-
|
8914
|
+
padding-top: 0px;
|
8915
|
+
transition: transform 250ms cubic-bezier(0.165, 0.84, 0.44, 1);
|
8510
8916
|
}
|
8511
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
|
+
|
8512
8926
|
.page-tree .page {
|
8513
|
-
|
8514
|
-
|
8515
|
-
|
8516
|
-
}
|
8927
|
+
padding: 0.2rem;
|
8928
|
+
display: flex;
|
8929
|
+
flex-wrap: wrap;
|
8517
8930
|
|
8518
|
-
|
8519
|
-
|
8520
|
-
|
8521
|
-
|
8522
|
-
}
|
8931
|
+
gap: 0.5rem;
|
8932
|
+
align-items: baseline;
|
8933
|
+
width: 100%;
|
8934
|
+
}
|
8523
8935
|
|
8524
|
-
.page-tree .page:
|
8936
|
+
.page-tree .page:hove2r {
|
8525
8937
|
border: 1px solid #eee;
|
8526
8938
|
border: 1px solid var(--border-color-light);
|
8527
8939
|
background: linear-gradient(
|
@@ -8536,43 +8948,36 @@ body.modal > .wrapper {
|
|
8536
8948
|
);
|
8537
8949
|
}
|
8538
8950
|
|
8951
|
+
.page-tree .page .page-icon {
|
8952
|
+
margin-right: 0rem;
|
8953
|
+
}
|
8954
|
+
|
8539
8955
|
.page-tree .page .date {
|
8540
|
-
font-size: 12px;
|
8541
8956
|
margin-left: 10px;
|
8542
8957
|
color: #666;
|
8543
8958
|
color: var(--text-light-color);
|
8544
8959
|
}
|
8545
8960
|
|
8546
8961
|
.page-tree .page .name {
|
8547
|
-
font-weight:
|
8548
|
-
|
8549
|
-
|
8550
|
-
.page-tree .page .icon {
|
8551
|
-
margin-right: 8px;
|
8962
|
+
font-weight: 600;
|
8963
|
+
font-weight: var(--bold-weight);
|
8552
8964
|
}
|
8553
8965
|
|
8554
|
-
.page-tree .page .
|
8555
|
-
.page-tree .page .collapsed-label {
|
8556
|
-
margin-left: 3px;
|
8557
|
-
font-size: 12px;
|
8558
|
-
}
|
8559
|
-
|
8560
|
-
.page-tree .page form {
|
8561
|
-
display: inline;
|
8966
|
+
.page-tree .page .edit-name {
|
8562
8967
|
margin: 0;
|
8563
8968
|
padding: 0;
|
8969
|
+
flex-grow: 1;
|
8970
|
+
display: flex;
|
8971
|
+
gap: 0.5rem;
|
8564
8972
|
}
|
8565
8973
|
|
8566
|
-
.page-tree .page
|
8567
|
-
|
8568
|
-
|
8569
|
-
margin-top: -2px;
|
8570
|
-
margin-bottom: -2px;
|
8571
|
-
margin-right: 5px;
|
8974
|
+
.page-tree .page .edit-name input {
|
8975
|
+
max-width: 100%;
|
8976
|
+
flex: 1 1 auto;
|
8572
8977
|
}
|
8573
8978
|
|
8574
|
-
.page-tree .page
|
8575
|
-
|
8979
|
+
.page-tree .page .edit-name button {
|
8980
|
+
white-space: nowrap;
|
8576
8981
|
}
|
8577
8982
|
|
8578
8983
|
.page-tree .page a,
|
@@ -8603,74 +9008,19 @@ body.modal > .wrapper {
|
|
8603
9008
|
}
|
8604
9009
|
|
8605
9010
|
.page-tree .page .actions {
|
8606
|
-
float: right;
|
8607
9011
|
visibility: hidden;
|
8608
|
-
|
9012
|
+
flex-grow: 1;
|
9013
|
+
display: flex;
|
9014
|
+
justify-content: flex-end;
|
9015
|
+
gap: 0.5rem;
|
8609
9016
|
}
|
8610
9017
|
|
8611
|
-
.page-tree .page .actions button {
|
8612
|
-
margin-left: 5px;
|
8613
|
-
}
|
8614
|
-
|
8615
9018
|
.page-tree .page:hover .actions {
|
8616
9019
|
visibility: visible;
|
8617
9020
|
}
|
8618
9021
|
|
8619
|
-
.page-tree button {
|
8620
|
-
padding: 0;
|
8621
|
-
border: 0;
|
8622
|
-
background: transparent;
|
8623
|
-
cursor: pointer;
|
8624
|
-
font-size: 13px;
|
8625
|
-
padding: 3px 5px;
|
8626
|
-
border-radius: 3px;
|
8627
|
-
color: #15516a;
|
8628
|
-
color: var(--link-hover-color);
|
8629
|
-
}
|
8630
|
-
|
8631
|
-
.page-tree button .icon {
|
8632
|
-
margin-right: 8px;
|
8633
|
-
}
|
8634
|
-
|
8635
|
-
.page-tree button:hover,
|
8636
|
-
.page-tree button:focus {
|
8637
|
-
color: #15516a;
|
8638
|
-
color: var(--blue-hover);
|
8639
|
-
background: rgba(29,113,149,0.25098);
|
8640
|
-
background: var(--blue-transparent);
|
8641
|
-
}
|
8642
|
-
|
8643
|
-
.page-tree button.add {
|
8644
|
-
color: #19ac1e;
|
8645
|
-
color: var(--green);
|
8646
|
-
}
|
8647
|
-
|
8648
|
-
.page-tree button.add:hover,
|
8649
|
-
.page-tree button.add:focus {
|
8650
|
-
color: #137f16;
|
8651
|
-
color: var(--green-hover);
|
8652
|
-
background: rgba(25,172,30,0.25098);
|
8653
|
-
background: var(--green-transparent);
|
8654
|
-
}
|
8655
|
-
|
8656
|
-
.page-tree button.delete,
|
8657
|
-
.page-tree button.cancel {
|
8658
|
-
color: #c00007;
|
8659
|
-
color: var(--red);
|
8660
|
-
}
|
8661
|
-
|
8662
|
-
.page-tree button.delete:hover,
|
8663
|
-
.page-tree button.cancel:hover,
|
8664
|
-
.page-tree button.delete:focus,
|
8665
|
-
.page-tree button.cancel:focus {
|
8666
|
-
color: #8d0005;
|
8667
|
-
color: var(--red-hover);
|
8668
|
-
background: rgba(192,0,7,0.25098);
|
8669
|
-
background: var(--red-transparent);
|
8670
|
-
}
|
8671
|
-
|
8672
9022
|
.page-tree button.add-inline {
|
8673
|
-
margin:
|
9023
|
+
margin: 0.25rem 0 0.25rem 2.875rem;
|
8674
9024
|
}
|
8675
9025
|
|
8676
9026
|
.page-tree .node .node .node .page .name {
|
@@ -8680,7 +9030,6 @@ body.modal > .wrapper {
|
|
8680
9030
|
.pagination {
|
8681
9031
|
margin: 30px 30px;
|
8682
9032
|
line-height: 20px;
|
8683
|
-
font-size: 14px;
|
8684
9033
|
}
|
8685
9034
|
|
8686
9035
|
.pagination a,
|
@@ -8730,27 +9079,11 @@ body.modal > .wrapper {
|
|
8730
9079
|
margin: 20px -2px;
|
8731
9080
|
}
|
8732
9081
|
|
8733
|
-
.search-bar {
|
8734
|
-
display: flex;
|
8735
|
-
}
|
8736
|
-
|
8737
9082
|
.search-bar input {
|
8738
|
-
flex: 1 1 auto;
|
8739
|
-
border-right: none;
|
8740
9083
|
max-width: 600px;
|
8741
9084
|
min-width: 50px;
|
8742
9085
|
}
|
8743
9086
|
|
8744
|
-
.search-bar input:focus {
|
8745
|
-
z-index: 20;
|
8746
|
-
}
|
8747
|
-
|
8748
|
-
.search-bar button {
|
8749
|
-
border-top-left-radius: 0px;
|
8750
|
-
border-bottom-left-radius: 0px;
|
8751
|
-
white-space: nowrap;
|
8752
|
-
}
|
8753
|
-
|
8754
9087
|
main .search-bar {
|
8755
9088
|
background: #f8f8f8;
|
8756
9089
|
background: var(--background-disabled-color);
|
@@ -8758,10 +9091,6 @@ main .search-bar {
|
|
8758
9091
|
margin: 0px 0px 16px 0px;
|
8759
9092
|
}
|
8760
9093
|
|
8761
|
-
.sidebar .search-bar {
|
8762
|
-
margin-top: 16px;
|
8763
|
-
}
|
8764
|
-
|
8765
9094
|
.sidebar {
|
8766
9095
|
background: #f8f8f8;
|
8767
9096
|
background: var(--background-disabled-color);
|
@@ -8772,19 +9101,12 @@ main .search-bar {
|
|
8772
9101
|
}
|
8773
9102
|
|
8774
9103
|
.sidebar h2 {
|
8775
|
-
margin: 20px 0 0px 0;
|
8776
|
-
padding: 0 0 10px 0;
|
8777
|
-
color: #111;
|
8778
|
-
color: var(--text-color);
|
8779
|
-
font-size: 18px;
|
8780
9104
|
border-bottom: 1px solid #ddd;
|
8781
9105
|
border-bottom: 1px solid var(--border-color);
|
9106
|
+
padding-bottom: 0.5rem;
|
9107
|
+
margin-bottom: 0.5rem;
|
8782
9108
|
}
|
8783
9109
|
|
8784
|
-
.sidebar h2:first-child {
|
8785
|
-
margin-top: 16px;
|
8786
|
-
}
|
8787
|
-
|
8788
9110
|
.sidebar ul {
|
8789
9111
|
list-style-type: disc;
|
8790
9112
|
margin: 1em 0 1em 14px;
|
@@ -8801,46 +9123,49 @@ main .search-bar {
|
|
8801
9123
|
}
|
8802
9124
|
|
8803
9125
|
.tag-editor {
|
8804
|
-
margin-top:
|
8805
|
-
margin-bottom: 1.
|
9126
|
+
margin-top: 0.5rem;
|
9127
|
+
margin-bottom: 1.5rem;
|
9128
|
+
display: flex;
|
9129
|
+
flex-wrap: wrap;
|
9130
|
+
gap: 0.5rem;
|
8806
9131
|
}
|
8807
9132
|
|
8808
|
-
.tag-editor .tags {
|
8809
|
-
line-height: 1.5;
|
8810
|
-
}
|
8811
|
-
|
8812
9133
|
.tag-editor .tag {
|
8813
|
-
font-size:
|
9134
|
+
font-size: 1rem;
|
8814
9135
|
cursor: pointer;
|
8815
|
-
display: block;
|
8816
|
-
float: left;
|
8817
|
-
margin: 0 5px 5px 0;
|
8818
9136
|
padding: 0px;
|
8819
9137
|
background: #f8f8f8;
|
8820
9138
|
background: var(--background-disabled-color);
|
8821
9139
|
border-radius: 5px;
|
8822
|
-
line-height: 26px;
|
8823
|
-
line-height: 36px;
|
8824
9140
|
min-width: 40px;
|
9141
|
+
height: 2rem;
|
8825
9142
|
transition: all 200ms ease-out;
|
8826
9143
|
-webkit-user-select: none;
|
8827
9144
|
-moz-user-select: none;
|
8828
9145
|
user-select: none;
|
9146
|
+
display: flex;
|
8829
9147
|
}
|
8830
9148
|
|
8831
9149
|
.tag-editor .tag label {
|
9150
|
+
display: flex;
|
8832
9151
|
margin: 0px;
|
8833
9152
|
padding: 0px 10px;
|
8834
9153
|
color: inherit;
|
9154
|
+
align-items: center;
|
9155
|
+
gap: 0.5rem;
|
8835
9156
|
}
|
8836
9157
|
|
8837
9158
|
.tag-editor .tag input {
|
8838
|
-
margin: 2px 3px 0 0
|
9159
|
+
/*margin: 2px 3px 0 0;*/
|
8839
9160
|
}
|
8840
9161
|
|
8841
9162
|
.tag-editor .tag .name {
|
8842
|
-
|
8843
|
-
|
9163
|
+
}
|
9164
|
+
|
9165
|
+
.tag-editor .tag:hover,
|
9166
|
+
.tag-editor .tag:focus {
|
9167
|
+
background: #e7f3f9;
|
9168
|
+
background: var(--background-highlight-color);
|
8844
9169
|
}
|
8845
9170
|
|
8846
9171
|
.tag-editor .tag.enabled {
|
@@ -8849,23 +9174,6 @@ main .search-bar {
|
|
8849
9174
|
background: var(--blue-dark);
|
8850
9175
|
}
|
8851
9176
|
|
8852
|
-
.tag-editor .add-tag-form {
|
8853
|
-
float: left;
|
8854
|
-
width: 178px;
|
8855
|
-
white-space: nowrap;
|
8856
|
-
}
|
8857
|
-
|
8858
|
-
.tag-editor input.add-tag {
|
8859
|
-
margin-top: 0px;
|
8860
|
-
border-radius: 5px;
|
8861
|
-
margin: 0 4px 0 0;
|
8862
|
-
}
|
8863
|
-
|
8864
|
-
.tag-editor input.add-tag.example {
|
8865
|
-
color: #666;
|
8866
|
-
color: var(--text-light-color);
|
8867
|
-
}
|
8868
|
-
|
8869
9177
|
textarea.rich {
|
8870
9178
|
margin-top: -32px;
|
8871
9179
|
padding-top: 40px;
|
@@ -8883,7 +9191,6 @@ textarea.rich {
|
|
8883
9191
|
}
|
8884
9192
|
|
8885
9193
|
.toast-wrapper .toast {
|
8886
|
-
font-size: 14px;
|
8887
9194
|
display: inline-block;
|
8888
9195
|
background: #000;
|
8889
9196
|
background: var(--background-invert-color);
|
@@ -8989,13 +9296,13 @@ textarea.rich {
|
|
8989
9296
|
border-right: 1px solid var(--border-color);
|
8990
9297
|
color: #666;
|
8991
9298
|
color: var(--text-light-color);
|
8992
|
-
font-size:
|
9299
|
+
font-size: 0.875rem;
|
8993
9300
|
background-color: #f8f8f8;
|
8994
9301
|
transition: all 200ms ease-out;
|
8995
9302
|
}
|
8996
9303
|
|
8997
9304
|
.toolbar .button i.fa, .toolbar button i.fa {
|
8998
|
-
font-size:
|
9305
|
+
font-size: 1rem;
|
8999
9306
|
}
|
9000
9307
|
|
9001
9308
|
.toolbar .button:focus,
|
@@ -9081,6 +9388,33 @@ textarea.rich {
|
|
9081
9388
|
box-shadow: 0px 1px 1px #fff;
|
9082
9389
|
}
|
9083
9390
|
|
9391
|
+
.totp-enrollment .qr-code {
|
9392
|
+
width: 20rem;
|
9393
|
+
height: 20rem;
|
9394
|
+
border: 1px solid #ddd;
|
9395
|
+
border: 1px solid var(--border-color);
|
9396
|
+
padding: 1rem;
|
9397
|
+
border-radius: 5px;
|
9398
|
+
}
|
9399
|
+
|
9400
|
+
.totp-enrollment .qr-code svg {
|
9401
|
+
width: 100%;
|
9402
|
+
height: 100%;
|
9403
|
+
}
|
9404
|
+
|
9405
|
+
ul.recovery-codes {
|
9406
|
+
list-style-type: none;
|
9407
|
+
padding: 0rem;
|
9408
|
+
margin: 2rem 0rem;
|
9409
|
+
font-family: monospace;
|
9410
|
+
display: flex;
|
9411
|
+
flex-direction: column;
|
9412
|
+
align-items: flex-start;
|
9413
|
+
gap: 1rem;
|
9414
|
+
font-size: 1.2rem;
|
9415
|
+
font-weight: bold;
|
9416
|
+
}
|
9417
|
+
|
9084
9418
|
.drag-handle {
|
9085
9419
|
cursor: pointer;
|
9086
9420
|
float: left;
|
@@ -9108,12 +9442,9 @@ td.drag-handle {
|
|
9108
9442
|
margin-top: 16px;
|
9109
9443
|
}
|
9110
9444
|
|
9111
|
-
.page-list .page-listing {
|
9112
|
-
padding: 3px 8px 2px 8px !important;
|
9113
|
-
}
|
9114
|
-
|
9115
9445
|
.page-list .page-listing {
|
9116
9446
|
border: 1px solid transparent;
|
9447
|
+
padding: 3px 8px 2px 8px !important;
|
9117
9448
|
}
|
9118
9449
|
|
9119
9450
|
.page-list ul {
|
@@ -9166,7 +9497,8 @@ td.drag-handle {
|
|
9166
9497
|
}
|
9167
9498
|
|
9168
9499
|
.page-list li {
|
9169
|
-
font-weight:
|
9500
|
+
font-weight: 600;
|
9501
|
+
font-weight: var(--bold-weight);
|
9170
9502
|
margin: 0;
|
9171
9503
|
padding: 0;
|
9172
9504
|
clear: both;
|
@@ -9236,24 +9568,10 @@ td.drag-handle {
|
|
9236
9568
|
width: auto;
|
9237
9569
|
}
|
9238
9570
|
|
9239
|
-
.edit-page
|
9240
|
-
|
9241
|
-
}
|
9242
|
-
|
9243
|
-
.edit-page .hidden-options {
|
9244
|
-
display: none;
|
9245
|
-
}
|
9246
|
-
|
9247
|
-
.edit-page .autopublish-notice,
|
9248
|
-
.edit-page .published-date,
|
9249
|
-
.edit-page .advanced-options {
|
9250
|
-
display: none;
|
9571
|
+
.edit-page .advanced-options {
|
9572
|
+
margin-top: 1.5rem;
|
9251
9573
|
}
|
9252
9574
|
|
9253
|
-
.edit-page .autopublish-notice.show, .edit-page .published-date.show, .edit-page .advanced-options.show {
|
9254
|
-
display: block;
|
9255
|
-
}
|
9256
|
-
|
9257
9575
|
.edit-page main input[type="text"],
|
9258
9576
|
.edit-page main textarea {
|
9259
9577
|
width: 100%;
|
@@ -9261,7 +9579,8 @@ td.drag-handle {
|
|
9261
9579
|
}
|
9262
9580
|
|
9263
9581
|
.edit-page main input.page_title {
|
9264
|
-
font-weight:
|
9582
|
+
font-weight: 600;
|
9583
|
+
font-weight: var(--bold-weight);
|
9265
9584
|
font-size: 1.4em;
|
9266
9585
|
color: #111;
|
9267
9586
|
color: var(--text-color);
|
@@ -9305,9 +9624,6 @@ td.drag-handle {
|
|
9305
9624
|
.file-list .ui-sortable-helper {
|
9306
9625
|
border: 1px solid #ddd !important;
|
9307
9626
|
border: 1px solid var(--border-color) !important;
|
9308
|
-
}
|
9309
|
-
|
9310
|
-
.file-list .ui-sortable-helper {
|
9311
9627
|
background: rgba(250, 250, 250, 0.8);
|
9312
9628
|
}
|
9313
9629
|
|