@spacemade/ui 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +705 -0
- package/app.sh +806 -0
- package/cmd.sh +152 -0
- package/docs/cms-quickstart.md +206 -0
- package/docs/gallery-quickstart.md +24 -0
- package/docs/gpu-marketplace-quickstart.md +27 -0
- package/docs/metaverse-quickstart.md +25 -0
- package/docs/migration-plan.md +41 -0
- package/docs/modules.md +34 -0
- package/docs/nft-quickstart.md +26 -0
- package/docs/simple-cms-quickstart.md +22 -0
- package/middleware.ts +77 -0
- package/next-env.d.ts +6 -0
- package/next.config.ts +39 -0
- package/package.json +92 -0
- package/public/android-chrome-192x192.png +0 -0
- package/public/android-chrome-512x512.png +0 -0
- package/public/apple-touch-icon.png +0 -0
- package/public/favicon-16x16.png +0 -0
- package/public/favicon-32x32.png +0 -0
- package/public/favicon.ico +0 -0
- package/public/images/default-profile/1.png +0 -0
- package/public/images/default-profile/2.png +0 -0
- package/public/images/default-profile/3.png +0 -0
- package/public/images/default-profile/4.png +0 -0
- package/public/images/default-profile/5.png +0 -0
- package/public/images/default-profile/6.png +0 -0
- package/public/images/default-profile/7.png +0 -0
- package/public/images/defaults/Login-Person-Icon-dark.svg +13 -0
- package/public/images/defaults/Login-Person-Icon.svg +16 -0
- package/public/images/defaults/default-avatar.png +0 -0
- package/public/images/defaults/image-not-available.jpg +0 -0
- package/public/images/icons/amazon-icon.jpg +0 -0
- package/public/images/icons/azure-icon.png +0 -0
- package/public/images/icons/google-icon.jpg +0 -0
- package/public/site.webmanifest +1 -0
- package/scripts/crud-scaffold/bin/crud-scaffold.mjs +23 -0
- package/scripts/crud-scaffold/src/api/index.mjs +666 -0
- package/scripts/crud-scaffold/src/app/patches.mjs +355 -0
- package/scripts/crud-scaffold/src/core/fields.mjs +165 -0
- package/scripts/crud-scaffold/src/core/utils.mjs +161 -0
- package/scripts/crud-scaffold/src/frontend/index.mjs +1078 -0
- package/scripts/crud-scaffold/src/generator.mjs +103 -0
- package/scripts/crud-scaffold/src/templates/.gitkeep +1 -0
- package/scripts/crud-scaffold/src/utils/generator-utils.mjs +35 -0
- package/scripts/defs/cms-definition.mjs +1393 -0
- package/scripts/defs/gallery-definition.mjs +171 -0
- package/scripts/defs/gpu-definition.mjs +174 -0
- package/scripts/defs/metaverse-definition.mjs +170 -0
- package/scripts/defs/nft-definition.mjs +191 -0
- package/scripts/defs/simple-cms-definition.mjs +141 -0
- package/scripts/generate-cms-install-system.mjs +4 -0
- package/scripts/generate-gallery-system.mjs +4 -0
- package/scripts/generate-gpu-marketplace-system.mjs +4 -0
- package/scripts/generate-metaverse-system.mjs +4 -0
- package/scripts/generate-nft-system.mjs +4 -0
- package/scripts/generate-simple-cms-system.mjs +4 -0
- package/scripts/link-core.mjs +72 -0
- package/scripts/spacemade.mjs +446 -0
- package/scripts/test-generate-app.mjs +60 -0
- package/src/components/Dashboard/DashboardList.tsx +70 -0
- package/src/components/Dashboard/dashboardLayout.tsx +57 -0
- package/src/components/admin/nav/AdminLeftNav.tsx +168 -0
- package/src/components/auth/AuthBootstrap.tsx +47 -0
- package/src/components/auth/auth-card-shell.tsx +23 -0
- package/src/components/auth/forgot-password-form-template.tsx +37 -0
- package/src/components/auth/form/ForgotForm.tsx +146 -0
- package/src/components/auth/form/ResetPasswordForm.tsx +122 -0
- package/src/components/auth/form/SignInForm.tsx +139 -0
- package/src/components/auth/form/SignUpForm.tsx +166 -0
- package/src/components/auth/form/UpdateForm.tsx +165 -0
- package/src/components/auth/login-form-template.tsx +45 -0
- package/src/components/billing/CardBrandIcon.tsx +126 -0
- package/src/components/billing/block/BillingDetailsCard.tsx +120 -0
- package/src/components/billing/block/BillingHistory.tsx +143 -0
- package/src/components/billing/block/PlanDetails.tsx +138 -0
- package/src/components/billing/modal/UpdateCardDetailsModal.tsx +451 -0
- package/src/components/billing/modal/UpdatePlanModal.tsx +194 -0
- package/src/components/category/modal/UpdateCategoryModal.tsx +170 -0
- package/src/components/category/table/CategoryTable.tsx +137 -0
- package/src/components/common/Icons/BrainCircuitIcon.tsx +14 -0
- package/src/components/common/Icons/MagnifyingGlassChartIcon.tsx +14 -0
- package/src/components/common/Icons/PeopleGroupIcon.tsx +14 -0
- package/src/components/common/Icons/ScrewdriverWrenchIcon.tsx +14 -0
- package/src/components/common/Icons/SendMessageIcon.tsx +15 -0
- package/src/components/common/Icons/ShareIcon.tsx +22 -0
- package/src/components/common/Icons/XTwitterIcon.tsx +14 -0
- package/src/components/common/Image/OptimizedImage.tsx +17 -0
- package/src/components/common/SettingsPanel.tsx +119 -0
- package/src/components/common/badge/Badge.tsx +69 -0
- package/src/components/common/blocks/BackgroundImageBlock.tsx +43 -0
- package/src/components/common/blocks/Carousel.tsx +59 -0
- package/src/components/common/blocks/CodeSnippet.tsx +46 -0
- package/src/components/common/blocks/InfinityScrollWrapper.tsx +43 -0
- package/src/components/common/blocks/SplitBlock.tsx +47 -0
- package/src/components/common/blocks/TopImageBlock.tsx +39 -0
- package/src/components/common/button/Button.tsx +49 -0
- package/src/components/common/button/ButtonWithActions.tsx +71 -0
- package/src/components/common/button/DropdownButton.tsx +61 -0
- package/src/components/common/button/ScrollDownArrow.tsx +23 -0
- package/src/components/common/button/SharerActionBox.tsx +248 -0
- package/src/components/common/button/UserButton.tsx +209 -0
- package/src/components/common/contact/ContactForm.tsx +214 -0
- package/src/components/common/cta/Cta.tsx +18 -0
- package/src/components/common/dialog/ConversationFullscreenModal.tsx +95 -0
- package/src/components/common/dialog/DeleteDialog.tsx +90 -0
- package/src/components/common/dialog/MobileFiltersDrawer.tsx +60 -0
- package/src/components/common/dialog/RenameDialog.tsx +128 -0
- package/src/components/common/faq/FAQSection.tsx +119 -0
- package/src/components/common/filters/NameSearch.tsx +87 -0
- package/src/components/common/footer/SmallFooter.tsx +62 -0
- package/src/components/common/forms/AdvanceAccordion.tsx +154 -0
- package/src/components/common/forms/CheckBox.tsx +29 -0
- package/src/components/common/forms/DateTimePicker.tsx +101 -0
- package/src/components/common/forms/Dropzone.tsx +278 -0
- package/src/components/common/forms/EmailTagInput.tsx +67 -0
- package/src/components/common/forms/FieldAssistantBar.tsx +32 -0
- package/src/components/common/forms/HTMLEditor.tsx +48 -0
- package/src/components/common/forms/IconPicker.tsx +129 -0
- package/src/components/common/forms/Input.tsx +362 -0
- package/src/components/common/forms/InputColor.tsx +36 -0
- package/src/components/common/forms/RadioInputs.tsx +62 -0
- package/src/components/common/forms/Select.tsx +214 -0
- package/src/components/common/forms/SimpleTagsInput.tsx +89 -0
- package/src/components/common/forms/TagInput.tsx +111 -0
- package/src/components/common/forms/Textarea.tsx +99 -0
- package/src/components/common/forms/ToggleButton.tsx +67 -0
- package/src/components/common/forms/UserInvitePicker.tsx +600 -0
- package/src/components/common/header/AppPageTitle.tsx +34 -0
- package/src/components/common/header/SubtitleAccordion.tsx +63 -0
- package/src/components/common/home/block/GetStarted.tsx +17 -0
- package/src/components/common/home/block/Hero.tsx +33 -0
- package/src/components/common/home/block/InstallShortcut.tsx +41 -0
- package/src/components/common/home/block/MarketplaceBlock.tsx +34 -0
- package/src/components/common/home/block/OriginStoryBanner.tsx +17 -0
- package/src/components/common/home/block/OsirusCTABlock.tsx +21 -0
- package/src/components/common/home/block/PromoFeatureSlider.tsx +260 -0
- package/src/components/common/layout/DetailHero.tsx +87 -0
- package/src/components/common/layout/SideNavLayout.tsx +1016 -0
- package/src/components/common/layout/account/AccountLayout.tsx +99 -0
- package/src/components/common/layout/admin/AdminLayout.tsx +17 -0
- package/src/components/common/layout/explore/ExploreLayout.tsx +23 -0
- package/src/components/common/layout/explore/ExploreLayoutContent.tsx +20 -0
- package/src/components/common/layout/explore/ExploreLayoutFilters.tsx +28 -0
- package/src/components/common/loading/LoadingScreen.tsx +86 -0
- package/src/components/common/loading/Spinner.tsx +12 -0
- package/src/components/common/state/InvalidInviteCard.tsx +32 -0
- package/src/components/common/table/TableFilter.tsx +205 -0
- package/src/components/common/table/TableHeader.tsx +33 -0
- package/src/components/common/table/TablePaging.tsx +190 -0
- package/src/components/common/table/TablePagingButton.tsx +64 -0
- package/src/components/common/table/TablePagingInput.tsx +79 -0
- package/src/components/common/useUrlSelectedModel.ts +7 -0
- package/src/components/docs/DocsSitePreviewPage.tsx +122 -0
- package/src/components/docs/block/DocsPageDetailBlock.tsx +333 -0
- package/src/components/docs/block/DocsSidebarTopContent.tsx +8 -0
- package/src/components/docs/block/DocsSitePagesBlock.tsx +81 -0
- package/src/components/docs/block/DocsSitesBlock.tsx +35 -0
- package/src/components/docs/modal/CreateDocsSiteModal.tsx +132 -0
- package/src/components/docs/table/DocsPagesTable.tsx +163 -0
- package/src/components/docs/table/DocsSitesTable.tsx +109 -0
- package/src/components/groups/block/GroupInitialAvatar.tsx +53 -0
- package/src/components/groups/grid/OrgGroupMembersGrid.tsx +253 -0
- package/src/components/groups/modal/AddGroupModal.tsx +138 -0
- package/src/components/groups/modal/OrgGroupMembersModal.tsx +171 -0
- package/src/components/groups/modal/OrgGroupPermissionsModal.tsx +184 -0
- package/src/components/groups/table/OrgGroupsTable.tsx +470 -0
- package/src/components/head/DefaultMetadata.tsx +135 -0
- package/src/components/head/PageSeo.tsx +198 -0
- package/src/components/hoc/WithAuth.tsx +82 -0
- package/src/components/hoc/WithCustomerIO.tsx +48 -0
- package/src/components/hoc/WithGTM.tsx +31 -0
- package/src/components/hoc/WithGlobalContext.tsx +30 -0
- package/src/components/hoc/WithReCaptcha.tsx +31 -0
- package/src/components/hoc/WithStripe.tsx +68 -0
- package/src/components/layout/SidebarSizer.tsx +63 -0
- package/src/components/layout/app-left-nav.tsx +31 -0
- package/src/components/layout/app-main-layout.tsx +39 -0
- package/src/components/layout/site-footer.tsx +11 -0
- package/src/components/layout/site-header.tsx +19 -0
- package/src/components/marketplace/card/ProductCard.tsx +178 -0
- package/src/components/media/blocks/MediaAttachmentsList.tsx +79 -0
- package/src/components/media/blocks/MediaDetails.tsx +139 -0
- package/src/components/media/blocks/MediaGrid.tsx +245 -0
- package/src/components/media/form/MediaMiniForm.tsx +105 -0
- package/src/components/media/form/UpdateMediaForm.tsx +209 -0
- package/src/components/media/items/CircleMediaPicker.tsx +76 -0
- package/src/components/media/items/MediaAttachmentLinks.tsx +98 -0
- package/src/components/media/items/MediaDocumentPreview.tsx +43 -0
- package/src/components/media/items/MediaFileIcon.tsx +30 -0
- package/src/components/media/items/MediaPickerBox.tsx +94 -0
- package/src/components/media/items/MediaPickerButton.tsx +37 -0
- package/src/components/media/items/MediaSourcePreview.tsx +35 -0
- package/src/components/media/modal/AddMediaModal.tsx +237 -0
- package/src/components/media/modal/MediaAttachmentsModal.tsx +113 -0
- package/src/components/media/modal/MediaBulkDeleteWarningModal.tsx +142 -0
- package/src/components/media/modal/MediaDeleteWarningModal.tsx +98 -0
- package/src/components/media/modal/MediaPickerModal.tsx +201 -0
- package/src/components/media/table/MediaTable.tsx +340 -0
- package/src/components/media/table/MediaTableActions.tsx +130 -0
- package/src/components/media/table/MediaTableFilter.tsx +163 -0
- package/src/components/modules/module-card-grid.tsx +19 -0
- package/src/components/modules/module-page.tsx +27 -0
- package/src/components/modules/resource-page.tsx +15 -0
- package/src/components/nav/AdminMobileMenu.tsx +228 -0
- package/src/components/nav/AppTopNav.tsx +53 -0
- package/src/components/nav/MobileMenu.tsx +132 -0
- package/src/components/nav/TopNav.tsx +137 -0
- package/src/components/openapi/DeleteTokenModal.tsx +72 -0
- package/src/components/openapi/actions/ApiTokenActionsMenu.tsx +141 -0
- package/src/components/openapi/actions/ApiTokenCreateModal.tsx +107 -0
- package/src/components/openapi/actions/ApiTokenEditModal.tsx +168 -0
- package/src/components/orgs/OrgCreateModal.tsx +126 -0
- package/src/components/orgs/OrgJumpRedirect.tsx +150 -0
- package/src/components/page/SiteContentPage.tsx +129 -0
- package/src/components/post/accordion/FilterPostCategoriesAccordion.tsx +126 -0
- package/src/components/post/block/FeaturedProductCard.tsx +31 -0
- package/src/components/post/block/FeaturedProviderCard.tsx +51 -0
- package/src/components/post/block/InTheNews.tsx +77 -0
- package/src/components/post/block/PostCardsGrid.tsx +56 -0
- package/src/components/post/block/PostContent.tsx +128 -0
- package/src/components/post/block/PostDetailPage.tsx +95 -0
- package/src/components/post/block/PostList.tsx +111 -0
- package/src/components/post/block/PostNextAndPrevButtons.tsx +78 -0
- package/src/components/post/block/PostPeopleAlsoReadBlock.tsx +69 -0
- package/src/components/post/block/PostRelatedCards.tsx +43 -0
- package/src/components/post/card/FeaturedPostCard.tsx +107 -0
- package/src/components/post/card/InTheNewsCard.tsx +162 -0
- package/src/components/post/card/PostCard.tsx +125 -0
- package/src/components/post/card/RelatedPostCard.tsx +115 -0
- package/src/components/post/form/UpdatePostForm.tsx +639 -0
- package/src/components/post/modal/CreatePostModal.tsx +115 -0
- package/src/components/post/modal/PreviewPostModal.tsx +82 -0
- package/src/components/post/nav/BlogCategoriesSideNav.tsx +55 -0
- package/src/components/post/table/PostsTable.tsx +284 -0
- package/src/components/pricing/block/AddOnRow.tsx +78 -0
- package/src/components/pricing/block/CompletePurchase.tsx +546 -0
- package/src/components/pricing/block/PlanPicker.tsx +76 -0
- package/src/components/pricing/card/PricingCard.tsx +291 -0
- package/src/components/pricing/form/AddBillingInformationForm.tsx +212 -0
- package/src/components/pricing/form/AddPaymentMethodForm.tsx +252 -0
- package/src/components/pricing/form/CouponCodeForm.tsx +118 -0
- package/src/components/pricing/form/StripePaymentForm.tsx +106 -0
- package/src/components/product/block/ProductScreenshot.tsx +22 -0
- package/src/components/product/block/ProductScreenshotPreview.tsx +46 -0
- package/src/components/product/button/MediaScreenshotPicker.tsx +72 -0
- package/src/components/product/form/UpdateProductForm.tsx +718 -0
- package/src/components/product/modal/CreateProductModal.tsx +128 -0
- package/src/components/product/modal/UpdateProductCouponModal.tsx +227 -0
- package/src/components/product/modal/UpdateProductPlanModal.tsx +291 -0
- package/src/components/product/modal/UpdateProductVersionModal.tsx +236 -0
- package/src/components/product/table/ProductCouponsTable.tsx +100 -0
- package/src/components/product/table/ProductPlansTable.tsx +118 -0
- package/src/components/product/table/ProductVersionsAdminTable.tsx +103 -0
- package/src/components/product/table/ProductVersionsTable.tsx +111 -0
- package/src/components/product/table/ProductsTable.tsx +133 -0
- package/src/components/projects/ProjectFilesCard.tsx +134 -0
- package/src/components/projects/ProjectItemOptionButton.tsx +112 -0
- package/src/components/projects/ProjectPickerNav.tsx +440 -0
- package/src/components/projects/ProjectQuickCreateModal.tsx +159 -0
- package/src/components/projects/ProjectSidebarList.tsx +183 -0
- package/src/components/projects/actions/ProjectActionsMenu.tsx +77 -0
- package/src/components/projects/actions/ProjectCreateModal.tsx +577 -0
- package/src/components/projects/actions/ProjectEditModal.tsx +345 -0
- package/src/components/projects/actions/ProjectFileGrid.tsx +153 -0
- package/src/components/projects/actions/ProjectFilesModal.tsx +259 -0
- package/src/components/projects/actions/ProjectFilesPicker.tsx +31 -0
- package/src/components/projects/actions/ProjectFilesUploadModal.tsx +181 -0
- package/src/components/projects/actions/ProjectInstructions.tsx +160 -0
- package/src/components/projects/actions/RenameProjectModal.tsx +120 -0
- package/src/components/projects/actions/index.tsx +98 -0
- package/src/components/projects/block/HeaderProjectImagePicker.tsx +52 -0
- package/src/components/projects/permission/ProjectPermissionInviteModal.tsx +181 -0
- package/src/components/projects/permission/ProjectUserPermission.tsx +170 -0
- package/src/components/projects/postByCategory.tsx +118 -0
- package/src/components/projects/projectFileHistory.tsx +48 -0
- package/src/components/projects/table/ProjectTable.tsx +365 -0
- package/src/components/provider/BuildspecForm.tsx +288 -0
- package/src/components/provider/CreateProviderModal.tsx +210 -0
- package/src/components/provider/FeaturedProviders.tsx +137 -0
- package/src/components/provider/ProviderConnectModal.tsx +324 -0
- package/src/components/provider/form/UpdateProviderForm.tsx +449 -0
- package/src/components/provider/table/ProvidersTable.tsx +144 -0
- package/src/components/providers/ProviderFeaturesSideNav.tsx +52 -0
- package/src/components/settings/SettingsLayout.tsx +14 -0
- package/src/components/settings/SettingsSidebarNav.tsx +53 -0
- package/src/components/settings/settingsNav.ts +96 -0
- package/src/components/site/modal/UpdateSiteModal.tsx +134 -0
- package/src/components/site/table/SiteTable.tsx +198 -0
- package/src/components/starter/list-panel.tsx +12 -0
- package/src/components/starter/starter-overview.tsx +32 -0
- package/src/components/starter/stats-grid.tsx +20 -0
- package/src/components/storage/VectorStoreFileDeleteButton.tsx +71 -0
- package/src/components/storage/actions/VectorStoreActionsMenu.tsx +70 -0
- package/src/components/storage/actions/VectorStoreEditModal.tsx +220 -0
- package/src/components/storage/actions/VectorStoreFileActions.tsx +61 -0
- package/src/components/storage/actions/index.tsx +76 -0
- package/src/components/storage/addStorageModal.tsx +552 -0
- package/src/components/storage/table/vectorStoreTable.tsx +461 -0
- package/src/components/storage/vectorFilesModal.tsx +209 -0
- package/src/components/storage/vectorStoreFileGrid.tsx +384 -0
- package/src/components/tag/modal/UpdateTagModal.tsx +192 -0
- package/src/components/tag/table/TagTable.tsx +138 -0
- package/src/components/user/block/BadgesBlock.tsx +26 -0
- package/src/components/user/form/ChangePasswordForm.tsx +119 -0
- package/src/components/user/form/ProfileForm.tsx +168 -0
- package/src/components/user/grid/UserGrid.tsx +475 -0
- package/src/components/user/modal/AddUserModal.tsx +165 -0
- package/src/components/user/modal/UpdateUserDetailsModal.tsx +319 -0
- package/src/components/user/modal/UpgradeUserLimitModal.tsx +123 -0
- package/src/components/user/modal/UserPermissionsModal.tsx +251 -0
- package/src/components/user/table/UserTable.tsx +202 -0
- package/src/config/app.ts +16 -0
- package/src/config/modules.ts +100 -0
- package/src/config/navigation.ts +28 -0
- package/src/config/runtime.ts +3 -0
- package/src/context/CheckoutContext.tsx +123 -0
- package/src/context/ProjectContext.tsx +123 -0
- package/src/context/RouterContext.tsx +127 -0
- package/src/context/UIContext.tsx +47 -0
- package/src/context/UserAuthContext.tsx +26 -0
- package/src/context/VectorStoreContext.tsx +51 -0
- package/src/context/index.ts +2 -0
- package/src/data/bootstrap-icons.json +2080 -0
- package/src/data/bootstrap.ts +196 -0
- package/src/data/bootstrapIcons.ts +28 -0
- package/src/enum/AppEnvironments.ts +4 -0
- package/src/enum/HTTPErrorStatus.ts +10 -0
- package/src/helpers/api/index.ts +123 -0
- package/src/helpers/constants/index.ts +4 -0
- package/src/helpers/constants/messages.ts +1 -0
- package/src/helpers/constants/regex.ts +10 -0
- package/src/helpers/constants/stripe.ts +1 -0
- package/src/helpers/constants/system-agent.ts +12 -0
- package/src/helpers/data-transform/bytesToSize.ts +8 -0
- package/src/helpers/data-transform/dropzone.ts +116 -0
- package/src/helpers/data-transform/filterUtils.ts +21 -0
- package/src/helpers/data-transform/index.ts +4 -0
- package/src/helpers/data-transform/operations.ts +3 -0
- package/src/helpers/data-transform/paging.ts +24 -0
- package/src/helpers/data-transform/stringCaseTransform.ts +34 -0
- package/src/helpers/date/index.ts +149 -0
- package/src/helpers/error/formErrorHandler.tsx +38 -0
- package/src/helpers/images/assets.ts +32 -0
- package/src/helpers/images/defaultProfileImage.ts +21 -0
- package/src/helpers/images/fileType.ts +123 -0
- package/src/helpers/images/index.ts +3 -0
- package/src/helpers/navigation/routeScroll.ts +29 -0
- package/src/helpers/pageScreenshot.ts +176 -0
- package/src/helpers/permissions/index.ts +292 -0
- package/src/helpers/providers/providerFeatures.ts +29 -0
- package/src/helpers/sharer/index.ts +44 -0
- package/src/helpers/sitemap/sitemap-utils.ts +50 -0
- package/src/helpers/slugUtils/index.ts +39 -0
- package/src/helpers/sonicVoices.ts +22 -0
- package/src/helpers/string/index.ts +93 -0
- package/src/helpers/theme/colors.ts +27 -0
- package/src/helpers/types/api.ts +22 -0
- package/src/helpers/types/customer-io.ts +47 -0
- package/src/helpers/types/data-layer.ts +25 -0
- package/src/helpers/types/index.ts +4 -0
- package/src/helpers/types/nav.ts +13 -0
- package/src/helpers/types/page-props.ts +31 -0
- package/src/helpers/types/select-option.ts +4 -0
- package/src/helpers/types/utils.ts +7 -0
- package/src/helpers/url/index.ts +26 -0
- package/src/hooks/auth/useAccountStore.ts +69 -0
- package/src/hooks/auth/useAuthStore.ts +162 -0
- package/src/hooks/category/useCategoryStore.ts +71 -0
- package/src/hooks/index.ts +17 -0
- package/src/hooks/media/useMediaStore.ts +46 -0
- package/src/hooks/post/usePostStore.ts +64 -0
- package/src/hooks/post/usePostUtils.ts +27 -0
- package/src/hooks/product/useProductPlanStore.ts +73 -0
- package/src/hooks/product/useProductStore.ts +64 -0
- package/src/hooks/product/useProductVersionStore.ts +57 -0
- package/src/hooks/site/useSiteStore.ts +53 -0
- package/src/hooks/tag/useTagStore.ts +65 -0
- package/src/hooks/utils/useAutosizeTextArea.ts +20 -0
- package/src/hooks/utils/useCountries.ts +25 -0
- package/src/hooks/utils/useGA4DataLayer.ts +25 -0
- package/src/hooks/utils/useNavOptions.ts +241 -0
- package/src/hooks/utils/useSearchAndFilterCommon.ts +78 -0
- package/src/hooks/utils/useTrackingEvents.ts +65 -0
- package/src/lib/app-paths.ts +19 -0
- package/src/lib/auth.ts +42 -0
- package/src/lib/next-router.ts +164 -0
- package/src/lib/routes.ts +36 -0
- package/src/lib/security.ts +19 -0
- package/src/pages/404.tsx +104 -0
- package/src/pages/500.tsx +26 -0
- package/src/pages/_app.tsx +87 -0
- package/src/pages/_document.tsx +26 -0
- package/src/pages/account/verify.tsx +178 -0
- package/src/pages/admin/activity/[activityId].tsx +77 -0
- package/src/pages/admin/activity/bans.tsx +197 -0
- package/src/pages/admin/activity/index.tsx +207 -0
- package/src/pages/admin/activity/settings.tsx +189 -0
- package/src/pages/admin/categories/index.tsx +61 -0
- package/src/pages/admin/coupons/index.tsx +38 -0
- package/src/pages/admin/entitlements/index.tsx +646 -0
- package/src/pages/admin/index.tsx +65 -0
- package/src/pages/admin/media/[id]/index.tsx +55 -0
- package/src/pages/admin/media/index.tsx +62 -0
- package/src/pages/admin/orgs/[orgId]/[name].tsx +1 -0
- package/src/pages/admin/orgs/index.tsx +256 -0
- package/src/pages/admin/plans/index.tsx +26 -0
- package/src/pages/admin/posts/[id].tsx +80 -0
- package/src/pages/admin/posts/index.tsx +63 -0
- package/src/pages/admin/products/[id].tsx +71 -0
- package/src/pages/admin/products/index.tsx +62 -0
- package/src/pages/admin/profile/index.tsx +26 -0
- package/src/pages/admin/providers/[id].tsx +77 -0
- package/src/pages/admin/providers/index.tsx +63 -0
- package/src/pages/admin/tags/index.tsx +58 -0
- package/src/pages/admin/users/[userId]/[name].tsx +1 -0
- package/src/pages/admin/users/index.tsx +295 -0
- package/src/pages/admin/versions/[id].tsx +211 -0
- package/src/pages/admin/versions/index.tsx +25 -0
- package/src/pages/blog/[postSlug].tsx +106 -0
- package/src/pages/blog/c/[categorySlug]/index.tsx +126 -0
- package/src/pages/blog/index.tsx +37 -0
- package/src/pages/cart/[productPlanSlug].tsx +631 -0
- package/src/pages/checkout/[productPlanSlug].tsx +368 -0
- package/src/pages/docs/index.tsx +24 -0
- package/src/pages/docs/sites/[siteId]/[siteName]/index.tsx +67 -0
- package/src/pages/docs/sites/[siteId]/[siteName]/pages/[pagesId].tsx +79 -0
- package/src/pages/docs/sites/[siteId]/[siteName]/pages/index.tsx +67 -0
- package/src/pages/docs/sites/[siteId]/[siteName]/preview/[[...slug]].tsx +7 -0
- package/src/pages/forgot.tsx +46 -0
- package/src/pages/groups/[groupId]/[name].tsx +337 -0
- package/src/pages/groups/index.tsx +62 -0
- package/src/pages/healthcheck.tsx +7 -0
- package/src/pages/index.tsx +309 -0
- package/src/pages/login.tsx +75 -0
- package/src/pages/marketplace/[slug].tsx +171 -0
- package/src/pages/marketplace/index.tsx +92 -0
- package/src/pages/openapi/index.tsx +77 -0
- package/src/pages/openapi/tokens/index.tsx +128 -0
- package/src/pages/org/[name]/settings.tsx +14 -0
- package/src/pages/org/[name]/token/index.tsx +109 -0
- package/src/pages/pricing.tsx +242 -0
- package/src/pages/projects/[projectId]/[name]/files/index.tsx +121 -0
- package/src/pages/projects/[projectId]/[name]/index.tsx +305 -0
- package/src/pages/projects/[projectId]/[name]/permission/index.tsx +143 -0
- package/src/pages/projects/[projectId]/token/index.tsx +120 -0
- package/src/pages/projects/index.tsx +129 -0
- package/src/pages/providers/[name].tsx +512 -0
- package/src/pages/providers/index.tsx +472 -0
- package/src/pages/reset.tsx +69 -0
- package/src/pages/settings/billing/index.tsx +41 -0
- package/src/pages/settings/index.tsx +133 -0
- package/src/pages/settings/organizations/[orgId]/invite/index.tsx +162 -0
- package/src/pages/settings/organizations/[orgId]/settings/index.tsx +98 -0
- package/src/pages/settings/organizations/[orgId]/token/index.tsx +109 -0
- package/src/pages/settings/organizations/index.tsx +148 -0
- package/src/pages/settings/organizations/new/index.tsx +252 -0
- package/src/pages/settings/profile/change-password.tsx +26 -0
- package/src/pages/settings/profile/index.tsx +103 -0
- package/src/pages/settings/profile/org-profile.tsx +127 -0
- package/src/pages/settings/profile/profile.tsx +26 -0
- package/src/pages/settings/sites/index.tsx +85 -0
- package/src/pages/settings/subscriptions/index.tsx +76 -0
- package/src/pages/settings/tokens/index.tsx +149 -0
- package/src/pages/signup/index.tsx +83 -0
- package/src/pages/signup/verify.tsx +138 -0
- package/src/pages/sites/[siteId]/[siteName]/[[...slug]].tsx +103 -0
- package/src/pages/sites/[siteId]/[siteName]/pages/[pageId].tsx +243 -0
- package/src/pages/sites/[siteId]/[siteName]/pages/index.tsx +140 -0
- package/src/pages/sites/host/[[...slug]].tsx +75 -0
- package/src/pages/storage/[vectorStoreId]/[name].tsx +653 -0
- package/src/pages/storage/index.tsx +526 -0
- package/src/pages/update/index.tsx +109 -0
- package/src/pages/update/verify.tsx +121 -0
- package/src/pages/users/[userId]/[name].tsx +791 -0
- package/src/pages/users/index.tsx +152 -0
- package/src/sass/app.scss +59 -0
- package/src/sass/base/_animations.scss +70 -0
- package/src/sass/base/_borders.scss +78 -0
- package/src/sass/base/_custom-backgrounds.scss +107 -0
- package/src/sass/base/_interactions.scss +35 -0
- package/src/sass/base/_main.scss +239 -0
- package/src/sass/base/_positions.scss +111 -0
- package/src/sass/base/_sizes.scss +120 -0
- package/src/sass/base/_typography.scss +184 -0
- package/src/sass/components/_accordion.scss +63 -0
- package/src/sass/components/_ad.scss +44 -0
- package/src/sass/components/_avatar.scss +18 -0
- package/src/sass/components/_badge.scss +6 -0
- package/src/sass/components/_button.scss +53 -0
- package/src/sass/components/_checkbox.scss +52 -0
- package/src/sass/components/_circle-media-picker.scss +32 -0
- package/src/sass/components/_code-snipped.scss +50 -0
- package/src/sass/components/_date-time-picker.scss +796 -0
- package/src/sass/components/_dialog.scss +27 -0
- package/src/sass/components/_gradients.scss +7 -0
- package/src/sass/components/_group-detail.scss +620 -0
- package/src/sass/components/_input.scss +567 -0
- package/src/sass/components/_menu.scss +31 -0
- package/src/sass/components/_modal.scss +273 -0
- package/src/sass/components/_popover.scss +29 -0
- package/src/sass/components/_rich-content.scss +531 -0
- package/src/sass/components/_spinner.scss +71 -0
- package/src/sass/components/_swagger.scss +7 -0
- package/src/sass/components/_swiper.scss +16 -0
- package/src/sass/components/_switch.scss +46 -0
- package/src/sass/components/_table.scss +39 -0
- package/src/sass/components/_tabs.scss +38 -0
- package/src/sass/components/_tag-input.scss +28 -0
- package/src/sass/components/_toast.scss +26 -0
- package/src/sass/components/_tooltip.scss +31 -0
- package/src/sass/layout/_base.scss +937 -0
- package/src/sass/layout/_footer.scss +148 -0
- package/src/sass/layout/_hero.scss +33 -0
- package/src/sass/layout/_nav.scss +77 -0
- package/src/sass/layout/_news-card-grid.scss +507 -0
- package/src/sass/utilities/_mixins.scss +21 -0
- package/src/sass/utilities/_sizes.scss +137 -0
- package/src/sass/utilities/_utils.scss +23 -0
- package/src/sass/utilities/_variables.scss +115 -0
- package/src/store/hooks.ts +5 -0
- package/src/store/hydrate.ts +1 -0
- package/src/store/model/activity.model.ts +52 -0
- package/src/store/model/address.model.ts +9 -0
- package/src/store/model/apiToken.model.ts +26 -0
- package/src/store/model/category.model.ts +20 -0
- package/src/store/model/entityStatus.model.ts +25 -0
- package/src/store/model/index.ts +25 -0
- package/src/store/model/invoice.model.ts +37 -0
- package/src/store/model/media.model.ts +70 -0
- package/src/store/model/org-group-permission.model.ts +16 -0
- package/src/store/model/org-group.model.ts +14 -0
- package/src/store/model/org-membership.model.ts +23 -0
- package/src/store/model/org.model.ts +13 -0
- package/src/store/model/page.model.ts +33 -0
- package/src/store/model/post.model.ts +60 -0
- package/src/store/model/product-coupon.model.ts +42 -0
- package/src/store/model/product-feature-entitlement.ts +40 -0
- package/src/store/model/product-feature.ts +29 -0
- package/src/store/model/product-plan.model.ts +120 -0
- package/src/store/model/product-version.model.ts +24 -0
- package/src/store/model/product.model.ts +91 -0
- package/src/store/model/project-file.model.ts +18 -0
- package/src/store/model/project-user-permission.model.ts +41 -0
- package/src/store/model/project.model.ts +48 -0
- package/src/store/model/provider.model.ts +118 -0
- package/src/store/model/purchase.model.ts +19 -0
- package/src/store/model/site-crawl-job.model.ts +31 -0
- package/src/store/model/site-page.model.ts +37 -0
- package/src/store/model/site.model.ts +15 -0
- package/src/store/model/subscription.model.ts +60 -0
- package/src/store/model/tag.model.ts +18 -0
- package/src/store/model/user-permission.model.ts +21 -0
- package/src/store/model/user.model.ts +97 -0
- package/src/store/model/vector-store-file.model.ts +40 -0
- package/src/store/model/vector-store.model.ts +41 -0
- package/src/store/slice/api/accountApiSlice.ts +92 -0
- package/src/store/slice/api/accountSlice.ts +57 -0
- package/src/store/slice/api/activityApiSlice.ts +218 -0
- package/src/store/slice/api/apiTokenSlice.ts +153 -0
- package/src/store/slice/api/authApiSlice.ts +220 -0
- package/src/store/slice/api/base-domain-api.ts +19 -0
- package/src/store/slice/api/billingUnitTypesApiSlice.ts +45 -0
- package/src/store/slice/api/bootstrapIconApiSlice.ts +36 -0
- package/src/store/slice/api/categoriesApiSlice.ts +101 -0
- package/src/store/slice/api/fontawesomeApiSlice.ts +43 -0
- package/src/store/slice/api/invoiceApiSlice.ts +37 -0
- package/src/store/slice/api/leadApiSlice.ts +48 -0
- package/src/store/slice/api/mediaApiSlice.ts +276 -0
- package/src/store/slice/api/orgApiSlice.ts +185 -0
- package/src/store/slice/api/orgGroupApiSlice.ts +146 -0
- package/src/store/slice/api/pageApiSlice.ts +111 -0
- package/src/store/slice/api/paymentApiSlice.ts +27 -0
- package/src/store/slice/api/postApiSlice.ts +369 -0
- package/src/store/slice/api/productCouponsApiSlice.ts +101 -0
- package/src/store/slice/api/productFeaturesApiSlice.ts +93 -0
- package/src/store/slice/api/productPlansApiSlice.ts +142 -0
- package/src/store/slice/api/productSubscriptionsApiSlice.ts +156 -0
- package/src/store/slice/api/productVersionsApiSlice.ts +116 -0
- package/src/store/slice/api/productsApiSlice.ts +169 -0
- package/src/store/slice/api/projectApiSlice.ts +135 -0
- package/src/store/slice/api/projectFileApiSlice.ts +152 -0
- package/src/store/slice/api/projectUserPermissionApiSlice.ts +153 -0
- package/src/store/slice/api/providerApiSlice.ts +259 -0
- package/src/store/slice/api/providerSettingApiSlice.ts +174 -0
- package/src/store/slice/api/siteApiSlice.ts +93 -0
- package/src/store/slice/api/stripeApiSlice.ts +114 -0
- package/src/store/slice/api/tagsApiSlice.ts +96 -0
- package/src/store/slice/api/userApiSlice.ts +305 -0
- package/src/store/slice/api/vectorStoreApiSlice.ts +119 -0
- package/src/store/slice/api/vectorStoreFileApiSlice.ts +127 -0
- package/src/store/store.ts +130 -0
- package/src/types/bootstrap.ts +30 -0
- package/tsconfig.json +103 -0
|
@@ -0,0 +1,937 @@
|
|
|
1
|
+
/* 1. Simple CSS Reset */
|
|
2
|
+
* {
|
|
3
|
+
margin: 0;
|
|
4
|
+
padding: 0;
|
|
5
|
+
box-sizing: border-box;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
/* 2. Prevent body from scrolling if content fits */
|
|
9
|
+
html,
|
|
10
|
+
body,
|
|
11
|
+
.body {
|
|
12
|
+
width: 100%;
|
|
13
|
+
height: 100%;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
html,
|
|
17
|
+
body {
|
|
18
|
+
overflow: hidden auto;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.icon-fw {
|
|
22
|
+
display: inline-block;
|
|
23
|
+
width: 1.25em; /* similar to icon-fw */
|
|
24
|
+
text-align: center;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
#page-area {
|
|
28
|
+
display: flex;
|
|
29
|
+
flex-direction: column;
|
|
30
|
+
height: 100vh;
|
|
31
|
+
/* full viewport height */
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
/* 3. Root layout control */
|
|
35
|
+
#__next {
|
|
36
|
+
width: 100%;
|
|
37
|
+
height: 100%;
|
|
38
|
+
display: flex;
|
|
39
|
+
flex-direction: column;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
/* 4. Optional: Prevent text zoom on mobile double-tap */
|
|
43
|
+
html {
|
|
44
|
+
-webkit-text-size-adjust: 100%;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.text-truncate {
|
|
48
|
+
@for $i from 2 through 6 {
|
|
49
|
+
&--max-lines-#{$i} {
|
|
50
|
+
@include max-lines($i);
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
/* Sidebar Styles */
|
|
56
|
+
.sidebar {
|
|
57
|
+
&-column {
|
|
58
|
+
width: 240px;
|
|
59
|
+
transition: width 0.3s;
|
|
60
|
+
background-color: #fff;
|
|
61
|
+
border-right: 1px solid var(--bs-light-gray);
|
|
62
|
+
padding: 0;
|
|
63
|
+
|
|
64
|
+
&.collapsed {
|
|
65
|
+
width: 50px;
|
|
66
|
+
|
|
67
|
+
.sidebar-heading {
|
|
68
|
+
display: none;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.sidebar-link {
|
|
72
|
+
justify-content: center;
|
|
73
|
+
|
|
74
|
+
span {
|
|
75
|
+
display: none;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.expand-button {
|
|
80
|
+
opacity: 0;
|
|
81
|
+
visibility: hidden;
|
|
82
|
+
transition: opacity 0.2s ease, visibility 0.2s ease;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
&:hover .expand-button {
|
|
86
|
+
opacity: 1;
|
|
87
|
+
visibility: visible;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
/* Mobile specific styles */
|
|
91
|
+
@media (max-width: 767px) {
|
|
92
|
+
/* On mobile, don't show sidebar when collapsed */
|
|
93
|
+
display: none;
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
/* Mobile: sidebar is position fixed and full width when open */
|
|
98
|
+
@media (max-width: 767px) {
|
|
99
|
+
position: fixed;
|
|
100
|
+
top: 0;
|
|
101
|
+
left: 0;
|
|
102
|
+
height: 100vh;
|
|
103
|
+
width: 250px;
|
|
104
|
+
z-index: 1230;
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
&-heading {
|
|
109
|
+
font-size: 0.875rem;
|
|
110
|
+
text-transform: none;
|
|
111
|
+
color: var(--bs-dark-900);
|
|
112
|
+
font-weight: 700;
|
|
113
|
+
letter-spacing: normal;
|
|
114
|
+
margin: 0.75rem 0 0.5rem;
|
|
115
|
+
padding: 0 .75rem;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
&-list {
|
|
119
|
+
display: flex;
|
|
120
|
+
flex-direction: column;
|
|
121
|
+
list-style: none;
|
|
122
|
+
padding: 0;
|
|
123
|
+
margin: 0;
|
|
124
|
+
|
|
125
|
+
.sidebar-item {
|
|
126
|
+
width: 100%;
|
|
127
|
+
font-weight: 400;
|
|
128
|
+
display: flex;
|
|
129
|
+
align-items: center;
|
|
130
|
+
border-radius: 0.45rem;
|
|
131
|
+
cursor: pointer;
|
|
132
|
+
transition: background-color 0.2s;
|
|
133
|
+
|
|
134
|
+
&:hover {
|
|
135
|
+
background-color: var(--bs-light-gray);
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.sidebar-link {
|
|
139
|
+
display: flex;
|
|
140
|
+
align-items: center;
|
|
141
|
+
gap: 0.5rem;
|
|
142
|
+
width: 100%;
|
|
143
|
+
color: #212529;
|
|
144
|
+
overflow: hidden;
|
|
145
|
+
text-overflow: ellipsis;
|
|
146
|
+
white-space: nowrap;
|
|
147
|
+
padding: 0.15rem .25rem;
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.sidebar-search-wrapper {
|
|
152
|
+
padding: 0 0.75rem;
|
|
153
|
+
margin-bottom: 0.5rem;
|
|
154
|
+
|
|
155
|
+
input.form-control {
|
|
156
|
+
font-size: 0.875rem;
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
/* Logo Row Inside Sidebar - Enhanced */
|
|
163
|
+
.logo-row {
|
|
164
|
+
display: flex;
|
|
165
|
+
align-items: center;
|
|
166
|
+
justify-content: space-between;
|
|
167
|
+
position: relative;
|
|
168
|
+
width: 100%;
|
|
169
|
+
margin-bottom: 0.5rem;
|
|
170
|
+
height: 48px;
|
|
171
|
+
|
|
172
|
+
&.logo-row-collapsed {
|
|
173
|
+
justify-content: center;
|
|
174
|
+
|
|
175
|
+
.logo-link {
|
|
176
|
+
z-index: 1;
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.logo-link {
|
|
181
|
+
display: flex;
|
|
182
|
+
align-items: center;
|
|
183
|
+
|
|
184
|
+
img {
|
|
185
|
+
width: 24px;
|
|
186
|
+
height: 24px;
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.collapse-button {
|
|
191
|
+
position: absolute;
|
|
192
|
+
right: 0;
|
|
193
|
+
top: 50%;
|
|
194
|
+
transform: translateY(-50%);
|
|
195
|
+
display: flex;
|
|
196
|
+
align-items: center;
|
|
197
|
+
justify-content: center;
|
|
198
|
+
padding: 0;
|
|
199
|
+
min-width: 0;
|
|
200
|
+
height: auto;
|
|
201
|
+
width: auto;
|
|
202
|
+
background: none;
|
|
203
|
+
border: none;
|
|
204
|
+
box-shadow: none;
|
|
205
|
+
transition: background-color 0.2s ease;
|
|
206
|
+
|
|
207
|
+
i {
|
|
208
|
+
color: #212529;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
&:hover {
|
|
212
|
+
background-color: rgba(184, 184, 184, 0.3);
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.expand-button {
|
|
217
|
+
position: absolute;
|
|
218
|
+
top: 50%;
|
|
219
|
+
left: 50%;
|
|
220
|
+
transform: translate(-50%, -50%);
|
|
221
|
+
display: flex;
|
|
222
|
+
align-items: center;
|
|
223
|
+
justify-content: center;
|
|
224
|
+
padding: 0.5rem;
|
|
225
|
+
min-width: 0;
|
|
226
|
+
height: auto;
|
|
227
|
+
width: auto;
|
|
228
|
+
background: rgba(255, 255, 255, 0.95);
|
|
229
|
+
border: 1px solid #e5e7eb;
|
|
230
|
+
border-radius: 4px;
|
|
231
|
+
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
232
|
+
cursor: pointer;
|
|
233
|
+
opacity: 0;
|
|
234
|
+
visibility: hidden;
|
|
235
|
+
transition: opacity 0.2s ease, visibility 0.2s ease, background-color 0.2s ease;
|
|
236
|
+
z-index: 2;
|
|
237
|
+
|
|
238
|
+
i {
|
|
239
|
+
color: #212529;
|
|
240
|
+
font-size: 14px;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
&:hover {
|
|
244
|
+
background-color: #fbfbfb;
|
|
245
|
+
box-shadow: none;
|
|
246
|
+
border: none;
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
&.logo-row-collapsed {
|
|
251
|
+
&:hover {
|
|
252
|
+
.expand-button {
|
|
253
|
+
opacity: 1;
|
|
254
|
+
visibility: visible;
|
|
255
|
+
background-color: #fbfbfb;
|
|
256
|
+
box-shadow: none;
|
|
257
|
+
border: none;
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
/* Beat .chat-text h* rules that use rem */
|
|
264
|
+
.agent-content .chat-text h1,
|
|
265
|
+
.agent-content h1 { font-size: calc(1.5rem * 0.7) !important; }
|
|
266
|
+
|
|
267
|
+
.agent-content .chat-text h2,
|
|
268
|
+
.agent-content h2 { font-size: calc(1.25rem * 0.7) !important; }
|
|
269
|
+
|
|
270
|
+
.agent-content .chat-text h3,
|
|
271
|
+
.agent-content h3 { font-size: calc(1.125rem * 0.7) !important; }
|
|
272
|
+
|
|
273
|
+
/* Optional: scale margins/borders used by your base.scss heading rules */
|
|
274
|
+
.agent-content .chat-text h1,
|
|
275
|
+
.agent-content h1 {
|
|
276
|
+
margin: calc(1rem * 0.7) 0 calc(0.5rem * 0.7) 0 !important;
|
|
277
|
+
padding-bottom: calc(0.25rem * 0.7) !important;
|
|
278
|
+
border-bottom-width: calc(2px * 0.7) !important;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
/* Icons & emoji (font icons, Bootstrap .bi, SVG) */
|
|
282
|
+
.agent-content i,
|
|
283
|
+
.agent-content .bi,
|
|
284
|
+
.agent-content svg { font-size: 70% !important; }
|
|
285
|
+
|
|
286
|
+
.agent-content hr {
|
|
287
|
+
border: none; /* Remove default styles */
|
|
288
|
+
height: 1px; /* Slim line */
|
|
289
|
+
background-color: rgba(0, 0, 0, 0.1); /* Light gray */
|
|
290
|
+
margin: 0.75rem 0; /* Less vertical spacing */
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
#mainContentArea {
|
|
294
|
+
/* Mobile-first base style */
|
|
295
|
+
width: 100%;
|
|
296
|
+
height: 100%;
|
|
297
|
+
max-width: 100%;
|
|
298
|
+
box-sizing: border-box;
|
|
299
|
+
|
|
300
|
+
/* Align children to the top */
|
|
301
|
+
display: flex;
|
|
302
|
+
flex-direction: column;
|
|
303
|
+
justify-content: flex-start; /* pushes content to top */
|
|
304
|
+
align-items: flex-start; /* aligns to left */
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
/* Medium breakpoint: tablets */
|
|
308
|
+
@media screen and (min-width: 768px) {
|
|
309
|
+
#mainContentArea {
|
|
310
|
+
max-width: 720px;
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
/* Large breakpoint: small desktops */
|
|
315
|
+
@media screen and (min-width: 992px) {
|
|
316
|
+
#mainContentArea {
|
|
317
|
+
max-width: 940px;
|
|
318
|
+
}
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
/* Extra large breakpoint: wide desktops */
|
|
322
|
+
@media screen and (min-width: 1200px) {
|
|
323
|
+
#mainContentArea {
|
|
324
|
+
max-width: 1040px;
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
/* bootstrap-compatible helper */
|
|
329
|
+
.min-h-0 {
|
|
330
|
+
min-height: 0 !important;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
/* Chat Area Styles */
|
|
334
|
+
.chat {
|
|
335
|
+
&-area {
|
|
336
|
+
padding: 0 2rem;
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
&--footer {
|
|
340
|
+
left: 10rem;
|
|
341
|
+
right: 10rem;
|
|
342
|
+
|
|
343
|
+
@include media-breakpoint-down(md) {
|
|
344
|
+
left: 0;
|
|
345
|
+
right: 0;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.d-flex:has(.sidebar-column:not(.collapsed)) & {
|
|
349
|
+
left: 25rem;
|
|
350
|
+
}
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
&-message {
|
|
354
|
+
display: flex;
|
|
355
|
+
flex-direction: column;
|
|
356
|
+
width: 100%;
|
|
357
|
+
|
|
358
|
+
&--user {
|
|
359
|
+
align-items: flex-end;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
&--osirus {
|
|
363
|
+
align-items: flex-start;
|
|
364
|
+
}
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
&-bubble {
|
|
368
|
+
border-radius: 0.8rem;
|
|
369
|
+
gap: 0.25rem;
|
|
370
|
+
color: #000;
|
|
371
|
+
|
|
372
|
+
&--user {
|
|
373
|
+
background-color: var(--primary, #f5f5f5);
|
|
374
|
+
padding: 1rem;
|
|
375
|
+
// overflow-x: auto;
|
|
376
|
+
max-width: 80%;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
&--osirus {
|
|
380
|
+
width: 100%;
|
|
381
|
+
padding: 0 !important;
|
|
382
|
+
}
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
&-text {
|
|
386
|
+
color: #1f2937;
|
|
387
|
+
word-wrap: break-word;
|
|
388
|
+
max-width: 100%;
|
|
389
|
+
|
|
390
|
+
p {
|
|
391
|
+
display: inline;
|
|
392
|
+
margin: 0;
|
|
393
|
+
padding: 0;
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
h1,
|
|
397
|
+
h2,
|
|
398
|
+
h3 {
|
|
399
|
+
font-weight: 600;
|
|
400
|
+
margin: 1rem 0 0.5rem;
|
|
401
|
+
color: #111827;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
h1 {
|
|
405
|
+
font-size: 1.5rem;
|
|
406
|
+
border-bottom: 2px solid #e5e7eb;
|
|
407
|
+
padding-bottom: 0.25rem;
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
h2 {
|
|
411
|
+
font-size: 1.25rem;
|
|
412
|
+
border-bottom: 1px solid #e5e7eb;
|
|
413
|
+
padding-bottom: 0.25rem;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
h3 {
|
|
417
|
+
font-size: 1.1rem;
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
|
|
421
|
+
h4 {
|
|
422
|
+
padding-top: 1rem;
|
|
423
|
+
font-size: 1rem;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
h5 {
|
|
427
|
+
font-size: .85rem;
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
h6 {
|
|
431
|
+
font-size: .65rem;
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
ul {
|
|
435
|
+
list-style-type: disc;
|
|
436
|
+
padding: .1rem .25rem;
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
ol {
|
|
440
|
+
list-style-type: none;
|
|
441
|
+
margin: 1.5rem 0 1rem 0;
|
|
442
|
+
padding: 0;
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
li {
|
|
446
|
+
list-style-position: inside;
|
|
447
|
+
margin: 0;
|
|
448
|
+
padding: 0;
|
|
449
|
+
margin-bottom: .5em;
|
|
450
|
+
margin-top: .5em;
|
|
451
|
+
|
|
452
|
+
p {
|
|
453
|
+
display: inline;
|
|
454
|
+
margin: 0;
|
|
455
|
+
padding: 0;
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
>input[type="checkbox"] {
|
|
459
|
+
margin-right: 0.5rem;
|
|
460
|
+
}
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
a {
|
|
464
|
+
color: #3b82f6;
|
|
465
|
+
text-decoration: underline;
|
|
466
|
+
|
|
467
|
+
&:hover {
|
|
468
|
+
text-decoration: none;
|
|
469
|
+
}
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
blockquote {
|
|
473
|
+
margin: 1rem 0;
|
|
474
|
+
padding: 0.75rem 1rem;
|
|
475
|
+
background: #f3f4f6;
|
|
476
|
+
border-left: 4px solid #3b82f6;
|
|
477
|
+
color: #374151;
|
|
478
|
+
font-style: italic;
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
code,
|
|
482
|
+
pre {
|
|
483
|
+
font-family: 'Fira Code', 'Courier New', monospace;
|
|
484
|
+
border-radius: 0.25rem;
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
code {
|
|
488
|
+
padding: 0.15rem 0.4rem;
|
|
489
|
+
font-size: 0.95rem;
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
table {
|
|
493
|
+
width: 100%;
|
|
494
|
+
border-collapse: collapse;
|
|
495
|
+
margin: 1rem 0;
|
|
496
|
+
|
|
497
|
+
th,
|
|
498
|
+
td {
|
|
499
|
+
border: 1px solid #d1d5db;
|
|
500
|
+
padding: 0.5rem;
|
|
501
|
+
text-align: left;
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
th {
|
|
505
|
+
background: #f3f4f6;
|
|
506
|
+
font-weight: 600;
|
|
507
|
+
}
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
p:has(+ ul),
|
|
511
|
+
p:has(+ ol) {
|
|
512
|
+
margin-bottom: 0.25rem;
|
|
513
|
+
}
|
|
514
|
+
}
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
/* squash outer gaps so content growth is smoother */
|
|
518
|
+
.chat-bubble .prose > :first-child { margin-top: 0 !important; }
|
|
519
|
+
.chat-bubble .prose > :last-child { margin-bottom: 0 !important; }
|
|
520
|
+
|
|
521
|
+
/* smaller vertical rhythm inside bubbles */
|
|
522
|
+
.chat-bubble .prose p { margin-top: .25rem; margin-bottom: .25rem; }
|
|
523
|
+
.chat-bubble .prose pre { margin-top: .25rem; margin-bottom: .25rem; }
|
|
524
|
+
|
|
525
|
+
/* override highlight.js theme margin on code blocks, if present */
|
|
526
|
+
.chat-bubble pre code { margin: 0 !important; }
|
|
527
|
+
|
|
528
|
+
/* Keep code block box metrics constant while content grows */
|
|
529
|
+
.chat-bubble .prose pre {
|
|
530
|
+
margin-top: .25rem !important;
|
|
531
|
+
margin-bottom: .25rem !important;
|
|
532
|
+
padding: .5rem .75rem !important;
|
|
533
|
+
line-height: 1.4 !important;
|
|
534
|
+
font-size: 0.95rem !important;
|
|
535
|
+
border-radius: .5rem;
|
|
536
|
+
overflow: auto; /* no wrap + scroll if needed */
|
|
537
|
+
white-space: pre; /* avoid wrap reflows */
|
|
538
|
+
scrollbar-gutter: stable both-edges; /* prevent layout shift when scrollbar appears */
|
|
539
|
+
transition: none !important; /* no animated margin/size changes */
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
/* Prevent highlight.js / prose from re-introducing margins inside */
|
|
543
|
+
.chat-bubble .prose pre code {
|
|
544
|
+
display: block; /* avoid inline sizing quirks */
|
|
545
|
+
margin: 0 !important;
|
|
546
|
+
padding: 0 !important;
|
|
547
|
+
background: transparent !important;
|
|
548
|
+
line-height: inherit !important;
|
|
549
|
+
font-size: inherit !important;
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
/* Inline code should not jump size relative to paragraph text */
|
|
553
|
+
.chat-bubble .prose :not(pre) > code {
|
|
554
|
+
font-size: 0.95em !important;
|
|
555
|
+
line-height: inherit !important;
|
|
556
|
+
padding: 0 .25rem;
|
|
557
|
+
margin: 0;
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
/* Make sure first/last-child space doesn't add/remove on re-render */
|
|
561
|
+
.chat-bubble .prose > :first-child { margin-top: 0 !important; }
|
|
562
|
+
.chat-bubble .prose > :last-child { margin-bottom: 0 !important; }
|
|
563
|
+
|
|
564
|
+
/* Belt-and-suspenders: disable any CSS transitions inside code blocks */
|
|
565
|
+
.chat-bubble .prose pre,
|
|
566
|
+
.chat-bubble .prose pre *,
|
|
567
|
+
.chat-bubble .prose code {
|
|
568
|
+
transition: none !important;
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
.thinking-bubble {
|
|
572
|
+
width: auto; // override chat-bubble--osirus width: 100%
|
|
573
|
+
max-width: 100%; // but never exceed the line
|
|
574
|
+
display: inline-flex;
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
#chat {
|
|
578
|
+
&-area {
|
|
579
|
+
height: 82vh;
|
|
580
|
+
}
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
.chat-actions {
|
|
584
|
+
margin: 0;
|
|
585
|
+
// border-top: 1px #ebebeb solid;
|
|
586
|
+
width: 100%;
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
.chat-actions .btn {
|
|
590
|
+
color: #6c757d;
|
|
591
|
+
font-size: 1rem;
|
|
592
|
+
padding: 0;
|
|
593
|
+
line-height: 1;
|
|
594
|
+
min-width: 0;
|
|
595
|
+
width: 0;
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
.chat-actions .btn:hover {
|
|
599
|
+
color: #212529;
|
|
600
|
+
background: transparent;
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
.chat-actions .btn:focus {
|
|
604
|
+
box-shadow: none;
|
|
605
|
+
}
|
|
606
|
+
|
|
607
|
+
/* Loader Animation */
|
|
608
|
+
.loader {
|
|
609
|
+
border: 3px solid rgba(255, 255, 255, 0.3);
|
|
610
|
+
border-top: 3px solid #fff;
|
|
611
|
+
border-radius: 50%;
|
|
612
|
+
width: 16px;
|
|
613
|
+
height: 16px;
|
|
614
|
+
animation: spin 1s linear infinite;
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
.loader.small {
|
|
618
|
+
width: 12px;
|
|
619
|
+
height: 12px;
|
|
620
|
+
border-width: 2px;
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
/* Layout for loader + text inside bubble */
|
|
624
|
+
.chat-bubble--osirus.d-flex {
|
|
625
|
+
display: flex;
|
|
626
|
+
align-items: center;
|
|
627
|
+
gap: 8px;
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
/* Loader Animation Keyframes */
|
|
631
|
+
@keyframes spin {
|
|
632
|
+
0% {
|
|
633
|
+
transform: rotate(0deg);
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
100% {
|
|
637
|
+
transform: rotate(360deg);
|
|
638
|
+
}
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
.osirus-image {
|
|
642
|
+
max-height: 40px;
|
|
643
|
+
width: auto;
|
|
644
|
+
object-fit: contain;
|
|
645
|
+
animation: spin 2s linear infinite;
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
.osirus-image-static {
|
|
649
|
+
max-height: 40px;
|
|
650
|
+
width: auto;
|
|
651
|
+
object-fit: contain;
|
|
652
|
+
animation: none;
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
p {
|
|
656
|
+
margin-top: 0;
|
|
657
|
+
margin-bottom: .75rem;
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
.visually-hidden {
|
|
661
|
+
position: absolute;
|
|
662
|
+
left: -10000px;
|
|
663
|
+
top: auto;
|
|
664
|
+
width: 1px;
|
|
665
|
+
height: 1px;
|
|
666
|
+
overflow: hidden;
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
select {
|
|
670
|
+
border-radius: 0;
|
|
671
|
+
background-color: white;
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
select:focus {
|
|
675
|
+
outline: none;
|
|
676
|
+
box-shadow: none;
|
|
677
|
+
}
|
|
678
|
+
|
|
679
|
+
.transition-background {
|
|
680
|
+
transition: background-image 0.5s ease-in-out;
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
/* Default: Mobile-first approach */
|
|
684
|
+
// .unauthenticated-padding {
|
|
685
|
+
// padding: 4rem .5rem 0;
|
|
686
|
+
// }
|
|
687
|
+
|
|
688
|
+
// .authenticated-padding {
|
|
689
|
+
// padding: 0 1rem;
|
|
690
|
+
// }
|
|
691
|
+
|
|
692
|
+
/* Desktop styles */
|
|
693
|
+
@media (min-width: 768px) {
|
|
694
|
+
.unauthenticated-padding {
|
|
695
|
+
// padding: 4rem 2.5rem 1rem;
|
|
696
|
+
max-width: 1200px;
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
.authenticated-padding {
|
|
700
|
+
padding: 0 3.5rem 0 2.5rem;
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
/* Desktop sidebar adjustments */
|
|
704
|
+
.sidebar-column {
|
|
705
|
+
position: relative !important;
|
|
706
|
+
|
|
707
|
+
&.collapsed {
|
|
708
|
+
display: block !important;
|
|
709
|
+
}
|
|
710
|
+
}
|
|
711
|
+
|
|
712
|
+
}
|
|
713
|
+
|
|
714
|
+
.extra-small-mobile-text {
|
|
715
|
+
font-size: 0.8rem;
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
@media (min-width: 768px) {
|
|
719
|
+
.extra-small-mobile-text {
|
|
720
|
+
font-size: 1rem;
|
|
721
|
+
}
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
.body {
|
|
725
|
+
position: relative;
|
|
726
|
+
z-index: 0;
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
#topNav {
|
|
730
|
+
position: relative;
|
|
731
|
+
width: 100%;
|
|
732
|
+
z-index: 1030;
|
|
733
|
+
background-color: #fff;
|
|
734
|
+
border-bottom: 1px solid #e6e8ec;
|
|
735
|
+
}
|
|
736
|
+
|
|
737
|
+
#topNav.top-nav-shell--pinned {
|
|
738
|
+
position: fixed;
|
|
739
|
+
top: 0;
|
|
740
|
+
left: 0;
|
|
741
|
+
right: 0;
|
|
742
|
+
box-shadow: 0 4px 14px rgba(17, 24, 39, 0.08);
|
|
743
|
+
animation: topNavFadeIn 180ms ease-out;
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
@keyframes topNavFadeIn {
|
|
747
|
+
from {
|
|
748
|
+
opacity: 0;
|
|
749
|
+
transform: translateY(-8px);
|
|
750
|
+
}
|
|
751
|
+
to {
|
|
752
|
+
opacity: 1;
|
|
753
|
+
transform: translateY(0);
|
|
754
|
+
}
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
.top-nav-inner {
|
|
758
|
+
min-height: 60px;
|
|
759
|
+
display: flex;
|
|
760
|
+
align-items: center;
|
|
761
|
+
justify-content: space-between;
|
|
762
|
+
gap: 0.75rem;
|
|
763
|
+
padding: 0.5rem 1.5rem;
|
|
764
|
+
overflow: visible;
|
|
765
|
+
}
|
|
766
|
+
|
|
767
|
+
.top-nav {
|
|
768
|
+
height: 60px;
|
|
769
|
+
}
|
|
770
|
+
|
|
771
|
+
.top-nav-left,
|
|
772
|
+
.top-nav-right {
|
|
773
|
+
flex: 0 0 auto;
|
|
774
|
+
display: flex;
|
|
775
|
+
align-items: center;
|
|
776
|
+
}
|
|
777
|
+
|
|
778
|
+
.top-nav-left {
|
|
779
|
+
min-width: 2.5rem;
|
|
780
|
+
}
|
|
781
|
+
|
|
782
|
+
.top-nav-right {
|
|
783
|
+
min-width: 7rem;
|
|
784
|
+
justify-content: flex-end;
|
|
785
|
+
}
|
|
786
|
+
|
|
787
|
+
.top-nav-center {
|
|
788
|
+
flex: 1 1 auto;
|
|
789
|
+
min-width: 0;
|
|
790
|
+
justify-content: center;
|
|
791
|
+
overflow: visible;
|
|
792
|
+
}
|
|
793
|
+
|
|
794
|
+
.top-nav-links {
|
|
795
|
+
display: flex;
|
|
796
|
+
align-items: center;
|
|
797
|
+
flex-wrap: nowrap;
|
|
798
|
+
white-space: nowrap;
|
|
799
|
+
gap: 1.75rem;
|
|
800
|
+
max-width: 100%;
|
|
801
|
+
overflow: visible;
|
|
802
|
+
}
|
|
803
|
+
|
|
804
|
+
.top-nav-link {
|
|
805
|
+
color: #4b5563;
|
|
806
|
+
font-size: 0.95rem;
|
|
807
|
+
font-weight: 500;
|
|
808
|
+
line-height: 1;
|
|
809
|
+
text-decoration: none;
|
|
810
|
+
padding: 0.2rem 0 0.55rem;
|
|
811
|
+
position: relative;
|
|
812
|
+
transition: color 0.2s ease;
|
|
813
|
+
}
|
|
814
|
+
|
|
815
|
+
.top-nav-dropdown {
|
|
816
|
+
position: relative;
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
.top-nav-dropdown-trigger {
|
|
820
|
+
display: inline-flex;
|
|
821
|
+
align-items: center;
|
|
822
|
+
gap: 0.45rem;
|
|
823
|
+
}
|
|
824
|
+
|
|
825
|
+
.top-nav-dropdown-link,
|
|
826
|
+
.top-nav-dropdown-toggle {
|
|
827
|
+
border: 0;
|
|
828
|
+
background: transparent;
|
|
829
|
+
color: inherit;
|
|
830
|
+
padding: 0;
|
|
831
|
+
}
|
|
832
|
+
.top-nav-shell--hero {
|
|
833
|
+
.top-nav-dropdown-link {
|
|
834
|
+
&:hover {
|
|
835
|
+
color: var(--bs-white);
|
|
836
|
+
}
|
|
837
|
+
}
|
|
838
|
+
}
|
|
839
|
+
.top-nav-dropdown-link {
|
|
840
|
+
text-decoration: none;
|
|
841
|
+
}
|
|
842
|
+
|
|
843
|
+
.top-nav-dropdown-toggle {
|
|
844
|
+
display: inline-flex;
|
|
845
|
+
align-items: center;
|
|
846
|
+
justify-content: center;
|
|
847
|
+
}
|
|
848
|
+
|
|
849
|
+
.top-nav-dropdown-icon {
|
|
850
|
+
font-size: 0.75rem;
|
|
851
|
+
transition: transform 0.2s ease;
|
|
852
|
+
}
|
|
853
|
+
|
|
854
|
+
.top-nav-dropdown.open .top-nav-dropdown-icon {
|
|
855
|
+
transform: rotate(180deg);
|
|
856
|
+
}
|
|
857
|
+
|
|
858
|
+
.top-nav-dropdown-menu {
|
|
859
|
+
position: absolute;
|
|
860
|
+
top: calc(100% + 0.6rem);
|
|
861
|
+
left: 0;
|
|
862
|
+
min-width: 13rem;
|
|
863
|
+
padding: 0.45rem;
|
|
864
|
+
border: 1px solid rgba(17, 24, 39, 0.08);
|
|
865
|
+
border-radius: 0.9rem;
|
|
866
|
+
background: #fff;
|
|
867
|
+
box-shadow: 0 18px 40px rgba(17, 24, 39, 0.14);
|
|
868
|
+
opacity: 0;
|
|
869
|
+
pointer-events: none;
|
|
870
|
+
transform: translateY(-6px);
|
|
871
|
+
transition: opacity 0.18s ease, transform 0.18s ease;
|
|
872
|
+
z-index: 1040;
|
|
873
|
+
}
|
|
874
|
+
|
|
875
|
+
.top-nav-dropdown.open .top-nav-dropdown-menu {
|
|
876
|
+
opacity: 1;
|
|
877
|
+
pointer-events: auto;
|
|
878
|
+
transform: translateY(0);
|
|
879
|
+
}
|
|
880
|
+
|
|
881
|
+
.top-nav-dropdown-item {
|
|
882
|
+
display: block;
|
|
883
|
+
padding: 0.7rem 0.9rem;
|
|
884
|
+
color: #374151;
|
|
885
|
+
font-size: 0.95rem;
|
|
886
|
+
font-weight: 500;
|
|
887
|
+
text-decoration: none;
|
|
888
|
+
transition: background-color 0.18s ease, color 0.18s ease;
|
|
889
|
+
}
|
|
890
|
+
|
|
891
|
+
.top-nav-dropdown-section-break {
|
|
892
|
+
display: block;
|
|
893
|
+
margin-bottom: 0.35rem;
|
|
894
|
+
padding-bottom: 0.35rem;
|
|
895
|
+
border-bottom: 1px solid rgba(17, 24, 39, 0.12);
|
|
896
|
+
}
|
|
897
|
+
|
|
898
|
+
.top-nav-dropdown-item:hover,
|
|
899
|
+
.top-nav-dropdown-item.active {
|
|
900
|
+
background: rgba(74, 104, 216, 0.08);
|
|
901
|
+
color: #111827;
|
|
902
|
+
}
|
|
903
|
+
|
|
904
|
+
.top-nav-link:hover,
|
|
905
|
+
.top-nav-link.active {
|
|
906
|
+
color: #111827;
|
|
907
|
+
}
|
|
908
|
+
|
|
909
|
+
.top-nav-link.active::after {
|
|
910
|
+
content: '';
|
|
911
|
+
position: absolute;
|
|
912
|
+
left: 0;
|
|
913
|
+
right: 0;
|
|
914
|
+
bottom: 0;
|
|
915
|
+
height: 3px;
|
|
916
|
+
border-radius: 999px;
|
|
917
|
+
background: #4a68d8;
|
|
918
|
+
}
|
|
919
|
+
|
|
920
|
+
.top-nav-user-float {
|
|
921
|
+
position: fixed;
|
|
922
|
+
top: 0.75rem;
|
|
923
|
+
right: 1rem;
|
|
924
|
+
z-index: 1035;
|
|
925
|
+
}
|
|
926
|
+
|
|
927
|
+
.page-content {
|
|
928
|
+
margin-top: 60px;
|
|
929
|
+
}
|
|
930
|
+
|
|
931
|
+
.btn-hover-primary:hover {
|
|
932
|
+
background-color: var(--bs-primary);
|
|
933
|
+
}
|
|
934
|
+
|
|
935
|
+
.btn-hover-primary:hover i {
|
|
936
|
+
color: var(--bs-white);
|
|
937
|
+
}
|