From 1aaafcf631f95f29c599870c1b7b1c1dd6ec1206 Mon Sep 17 00:00:00 2001 From: Carson Yang Date: Tue, 12 Sep 2023 22:36:34 +0800 Subject: [PATCH] Docs: update weight (#290) Signed-off-by: Carson Yang --- docSite/content/docs/custom-models/_index.md | 2 +- .../docs/custom-models/chatglm2-m3e.md | 2 +- .../content/docs/custom-models/chatglm2.md | 2 +- docSite/content/docs/custom-models/m3e.md | 2 +- docSite/content/docs/development/_index.md | 2 +- .../content/docs/development/configuration.md | 2 +- docSite/content/docs/development/intro.md | 2 +- docSite/content/docs/intro.md | 2 +- docSite/content/docs/use-cases/_index.md | 2 +- docSite/content/docs/use-cases/kb.md | 2 +- docSite/content/docs/use-cases/onwechat.md | 2 +- docSite/content/docs/use-cases/openai.md | 2 +- docSite/content/docs/use-cases/prompt.md | 2 +- docSite/content/docs/workflow/_index.md | 2 +- .../content/docs/workflow/examples/_index.md | 2 +- .../docs/workflow/examples/fixingEvidence.md | 2 +- .../docs/workflow/examples/google_search.md | 2 +- .../docs/workflow/examples/lab_appointment.md | 2 +- .../docs/workflow/examples/op_question.md | 2 +- docSite/content/docs/workflow/intro.md | 2 +- .../content/docs/workflow/modules/_index.md | 2 +- .../content/docs/workflow/modules/ai_chat.md | 2 +- .../docs/workflow/modules/content_extract.md | 2 +- .../content/docs/workflow/modules/guide.md | 2 +- .../content/docs/workflow/modules/history.md | 2 +- docSite/content/docs/workflow/modules/http.md | 2 +- .../content/docs/workflow/modules/input.md | 2 +- .../docs/workflow/modules/kb_search.md | 2 +- .../content/docs/workflow/modules/question.md | 2 +- .../content/docs/workflow/modules/reply.md | 2 +- .../content/docs/workflow/modules/trigger.md | 2 +- .../content/docs/workflow/modules/variable.md | 2 +- ...s_b97bf3f19a5ec64d7a7c5d60f7e31818.content | 130 ++++----- ...s_6d90bf46f7cdc038e33af2850006d4ba.content | 255 +++++++++--------- 34 files changed, 229 insertions(+), 220 deletions(-) diff --git a/docSite/content/docs/custom-models/_index.md b/docSite/content/docs/custom-models/_index.md index 102c689f0..faab40388 100644 --- a/docSite/content/docs/custom-models/_index.md +++ b/docSite/content/docs/custom-models/_index.md @@ -1,5 +1,5 @@ --- -weight: 800 +weight: 900 title: '本地模型使用' description: 'FastGPT 对接本地模型' icon: 'model_training' diff --git a/docSite/content/docs/custom-models/chatglm2-m3e.md b/docSite/content/docs/custom-models/chatglm2-m3e.md index 3d6d09b95..99753dbaa 100644 --- a/docSite/content/docs/custom-models/chatglm2-m3e.md +++ b/docSite/content/docs/custom-models/chatglm2-m3e.md @@ -4,7 +4,7 @@ description: ' 将 FastGPT 接入私有化模型 ChatGLM2和m3e-large' icon: 'model_training' draft: false toc: true -weight: 200 +weight: 930 --- ## 前言 diff --git a/docSite/content/docs/custom-models/chatglm2.md b/docSite/content/docs/custom-models/chatglm2.md index 4c8e8ed02..a2f1840d4 100644 --- a/docSite/content/docs/custom-models/chatglm2.md +++ b/docSite/content/docs/custom-models/chatglm2.md @@ -4,7 +4,7 @@ description: ' 将 FastGPT 接入私有化模型 ChatGLM2-6B' icon: 'model_training' draft: false toc: true -weight: 100 +weight: 910 --- ## 前言 diff --git a/docSite/content/docs/custom-models/m3e.md b/docSite/content/docs/custom-models/m3e.md index afcf31b22..0c232c6ec 100644 --- a/docSite/content/docs/custom-models/m3e.md +++ b/docSite/content/docs/custom-models/m3e.md @@ -4,7 +4,7 @@ description: ' 将 FastGPT 接入私有化模型 M3E' icon: 'model_training' draft: false toc: true -weight: 100 +weight: 920 --- ## 前言 diff --git a/docSite/content/docs/development/_index.md b/docSite/content/docs/development/_index.md index a603a2e08..6e1f9a935 100644 --- a/docSite/content/docs/development/_index.md +++ b/docSite/content/docs/development/_index.md @@ -1,5 +1,5 @@ --- -weight: 200 +weight: 500 title: '开发指南' description: '本地开发 FastGPT 必看' icon: 'code_blocks' diff --git a/docSite/content/docs/development/configuration.md b/docSite/content/docs/development/configuration.md index ea3310dc0..3243ed9d7 100644 --- a/docSite/content/docs/development/configuration.md +++ b/docSite/content/docs/development/configuration.md @@ -4,7 +4,7 @@ description: 'FastGPT 配置参数介绍' icon: 'settings' draft: false toc: true -weight: 100 +weight: 520 --- 由于环境变量不利于配置复杂的内容,新版 FastGPT 采用了 ConfigMap 的形式挂载配置文件,你可以在 `client/data/config.json` 看到默认的配置文件。可以参考 [docker-compose 快速部署](/docs/installation/docker/) 来挂载配置文件。 diff --git a/docSite/content/docs/development/intro.md b/docSite/content/docs/development/intro.md index 6c0677649..693ee1f93 100644 --- a/docSite/content/docs/development/intro.md +++ b/docSite/content/docs/development/intro.md @@ -4,7 +4,7 @@ description: '对 FastGPT 进行开发调试' icon: 'developer_guide' draft: false toc: true -weight: -10 +weight: 510 --- 本文档介绍了如何设置开发环境以构建和测试 [FastGPT](https://fastgpt.run)。 diff --git a/docSite/content/docs/intro.md b/docSite/content/docs/intro.md index e487c957f..25c62b876 100644 --- a/docSite/content/docs/intro.md +++ b/docSite/content/docs/intro.md @@ -4,7 +4,7 @@ description: 'FastGPT 的能力与优势' icon: 'rocket_launch' draft: false toc: true -weight: -100 +weight: -10 --- FastGPT 是一个基于 LLM 大语言模型的知识库问答系统,提供开箱即用的数据处理、模型调用等能力。同时可以通过 Flow 可视化进行工作流编排,从而实现复杂的问答场景! diff --git a/docSite/content/docs/use-cases/_index.md b/docSite/content/docs/use-cases/_index.md index b2093dda7..6950ed45c 100644 --- a/docSite/content/docs/use-cases/_index.md +++ b/docSite/content/docs/use-cases/_index.md @@ -1,5 +1,5 @@ --- -weight: 100 +weight: 300 title: '使用案例' description: '有关 FastGPT 其他实践案例的更多信息' icon: 'cases' diff --git a/docSite/content/docs/use-cases/kb.md b/docSite/content/docs/use-cases/kb.md index a68285c6d..2eedd487e 100644 --- a/docSite/content/docs/use-cases/kb.md +++ b/docSite/content/docs/use-cases/kb.md @@ -4,7 +4,7 @@ description: " 利用 FastGPT 打造高质量 AI 知识库" icon: "school" draft: false toc: true -weight: 640 +weight: 340 --- ## 前言 diff --git a/docSite/content/docs/use-cases/onwechat.md b/docSite/content/docs/use-cases/onwechat.md index 44d0711dd..17dd91a8b 100644 --- a/docSite/content/docs/use-cases/onwechat.md +++ b/docSite/content/docs/use-cases/onwechat.md @@ -4,7 +4,7 @@ description: "FastGPT 对接 OnWeChat" icon: "chat" draft: false toc: true -weight: 620 +weight: 320 --- # 1 分钟对接 OnWeChat diff --git a/docSite/content/docs/use-cases/openai.md b/docSite/content/docs/use-cases/openai.md index 40eca9462..52eecf0bd 100644 --- a/docSite/content/docs/use-cases/openai.md +++ b/docSite/content/docs/use-cases/openai.md @@ -4,7 +4,7 @@ description: "通过与 OpenAI 兼容的 API 对接第三方应用" icon: "model_training" draft: false toc: true -weight: 620 +weight: 330 --- ## 获取 API 秘钥 diff --git a/docSite/content/docs/use-cases/prompt.md b/docSite/content/docs/use-cases/prompt.md index 21e3ada5b..aeedc4d7e 100644 --- a/docSite/content/docs/use-cases/prompt.md +++ b/docSite/content/docs/use-cases/prompt.md @@ -4,7 +4,7 @@ description: "FastGPT 提示词 & 限定词说明" icon: "sign_language" draft: false toc: true -weight: 10 +weight: 310 --- # AI 对话消息组成 diff --git a/docSite/content/docs/workflow/_index.md b/docSite/content/docs/workflow/_index.md index 50c1ef829..ef5e3d1a6 100644 --- a/docSite/content/docs/workflow/_index.md +++ b/docSite/content/docs/workflow/_index.md @@ -1,5 +1,5 @@ --- -weight: 10 +weight: 100 title: '高级编排' description: 'FastGPT 高级编排文档' icon: 'family_history' diff --git a/docSite/content/docs/workflow/examples/_index.md b/docSite/content/docs/workflow/examples/_index.md index e76b9dfda..173496297 100644 --- a/docSite/content/docs/workflow/examples/_index.md +++ b/docSite/content/docs/workflow/examples/_index.md @@ -1,5 +1,5 @@ --- -weight: 440 +weight: 140 title: "编排示例" description: "介绍 FastGPT 的高级编排实践案例" icon: "list" diff --git a/docSite/content/docs/workflow/examples/fixingEvidence.md b/docSite/content/docs/workflow/examples/fixingEvidence.md index 5c788f1f0..a81627837 100644 --- a/docSite/content/docs/workflow/examples/fixingEvidence.md +++ b/docSite/content/docs/workflow/examples/fixingEvidence.md @@ -4,7 +4,7 @@ description: '利用指定回复,创建固定的开头和结尾' icon: 'healing' draft: false toc: true -weight: 500 +weight: 142 --- ![](/imgs/demo-fix-evidence1.png) diff --git a/docSite/content/docs/workflow/examples/google_search.md b/docSite/content/docs/workflow/examples/google_search.md index 27b5fc651..d5d603b14 100644 --- a/docSite/content/docs/workflow/examples/google_search.md +++ b/docSite/content/docs/workflow/examples/google_search.md @@ -4,7 +4,7 @@ description: '将 FastGPT 外接搜索引擎' icon: 'search' draft: false toc: true -weight: 500 +weight: 143 --- ![](/imgs/google_search_1.png) diff --git a/docSite/content/docs/workflow/examples/lab_appointment.md b/docSite/content/docs/workflow/examples/lab_appointment.md index d4025e6d2..cc5730c68 100644 --- a/docSite/content/docs/workflow/examples/lab_appointment.md +++ b/docSite/content/docs/workflow/examples/lab_appointment.md @@ -4,7 +4,7 @@ description: '展示高级编排操作数据库的能力' icon: 'database' draft: false toc: true -weight: 499 +weight: 141 --- ![](/imgs/demo-appointment1.png) diff --git a/docSite/content/docs/workflow/examples/op_question.md b/docSite/content/docs/workflow/examples/op_question.md index 8e6d711cc..c4a8e9ccd 100644 --- a/docSite/content/docs/workflow/examples/op_question.md +++ b/docSite/content/docs/workflow/examples/op_question.md @@ -4,7 +4,7 @@ description: '利用 GPT 优化和完善知识库搜索词,实现上下文关 icon: 'search' draft: false toc: true -weight: 500 +weight: 144 --- ![](/imgs/demo_op_question1.png) diff --git a/docSite/content/docs/workflow/intro.md b/docSite/content/docs/workflow/intro.md index fe5300a21..1b68da830 100644 --- a/docSite/content/docs/workflow/intro.md +++ b/docSite/content/docs/workflow/intro.md @@ -4,7 +4,7 @@ description: "快速了解 FastGPT 高级编排" icon: "circle" draft: false toc: true -weight: 410 +weight: 110 --- FastGPT 从 V4 版本开始采用新的交互方式来构建 AI 应用。使用了 Flow 节点编排的方式来实现复杂工作流,提高可玩性和扩展性。但同时也提高了上手的门槛,有一定开发背景的用户使用起来会比较容易。 diff --git a/docSite/content/docs/workflow/modules/_index.md b/docSite/content/docs/workflow/modules/_index.md index 9e97a14a8..67fd59fa8 100644 --- a/docSite/content/docs/workflow/modules/_index.md +++ b/docSite/content/docs/workflow/modules/_index.md @@ -1,5 +1,5 @@ --- -weight: 420 +weight: 120 title: "模块介绍" description: "介绍 FastGPT 的常用模块" icon: "apps" diff --git a/docSite/content/docs/workflow/modules/ai_chat.md b/docSite/content/docs/workflow/modules/ai_chat.md index fd33f7c28..9a45eed20 100644 --- a/docSite/content/docs/workflow/modules/ai_chat.md +++ b/docSite/content/docs/workflow/modules/ai_chat.md @@ -4,7 +4,7 @@ description: "FastGPT AI 对话模块介绍" icon: "chat" draft: false toc: true -weight: 423 +weight: 123 --- ## 特点 diff --git a/docSite/content/docs/workflow/modules/content_extract.md b/docSite/content/docs/workflow/modules/content_extract.md index ecc7b33d5..c59405cf7 100644 --- a/docSite/content/docs/workflow/modules/content_extract.md +++ b/docSite/content/docs/workflow/modules/content_extract.md @@ -4,7 +4,7 @@ description: "FastGPT 内容提取模块介绍" icon: "content_paste_go" draft: false toc: true -weight: 424 +weight: 125 --- ## 特点 diff --git a/docSite/content/docs/workflow/modules/guide.md b/docSite/content/docs/workflow/modules/guide.md index 7cbe1d5c7..71cd719a2 100644 --- a/docSite/content/docs/workflow/modules/guide.md +++ b/docSite/content/docs/workflow/modules/guide.md @@ -4,7 +4,7 @@ description: "FastGPT 用户引导模块介绍" icon: "psychology" draft: false toc: true -weight: 426 +weight: 127 --- ## 特点 diff --git a/docSite/content/docs/workflow/modules/history.md b/docSite/content/docs/workflow/modules/history.md index 702a66919..4234cfceb 100644 --- a/docSite/content/docs/workflow/modules/history.md +++ b/docSite/content/docs/workflow/modules/history.md @@ -4,7 +4,7 @@ description: "FastGPT 历史记录模块介绍" icon: "history" draft: false toc: true -weight: 427 +weight: 128 --- # 特点 diff --git a/docSite/content/docs/workflow/modules/http.md b/docSite/content/docs/workflow/modules/http.md index 6660f179e..c1b3b2424 100644 --- a/docSite/content/docs/workflow/modules/http.md +++ b/docSite/content/docs/workflow/modules/http.md @@ -4,7 +4,7 @@ description: "FastGPT HTTP 模块介绍" icon: "http" draft: false toc: true -weight: 428 +weight: 129 --- ## 特点 diff --git a/docSite/content/docs/workflow/modules/input.md b/docSite/content/docs/workflow/modules/input.md index 53956269a..4001c8a10 100644 --- a/docSite/content/docs/workflow/modules/input.md +++ b/docSite/content/docs/workflow/modules/input.md @@ -4,7 +4,7 @@ description: "FastGPT 用户问题模块介绍" icon: "input" draft: false toc: true -weight: 430 +weight: 131 --- ## 特点 diff --git a/docSite/content/docs/workflow/modules/kb_search.md b/docSite/content/docs/workflow/modules/kb_search.md index 5bccc3445..066e40cb7 100644 --- a/docSite/content/docs/workflow/modules/kb_search.md +++ b/docSite/content/docs/workflow/modules/kb_search.md @@ -4,7 +4,7 @@ description: 'FastGPT AI 知识库搜索模块介绍' icon: 'chat' draft: false toc: true -weight: 423 +weight: 124 --- ## 特点 diff --git a/docSite/content/docs/workflow/modules/question.md b/docSite/content/docs/workflow/modules/question.md index 20f55ef55..51e116b19 100644 --- a/docSite/content/docs/workflow/modules/question.md +++ b/docSite/content/docs/workflow/modules/question.md @@ -4,7 +4,7 @@ description: "FastGPT 问题分类模块介绍" icon: "quiz" draft: false toc: true -weight: 425 +weight: 126 --- ## 特点 diff --git a/docSite/content/docs/workflow/modules/reply.md b/docSite/content/docs/workflow/modules/reply.md index 30e076bf4..3c5ffd8f5 100644 --- a/docSite/content/docs/workflow/modules/reply.md +++ b/docSite/content/docs/workflow/modules/reply.md @@ -4,7 +4,7 @@ description: "FastGPT 指定回复模块介绍" icon: "reply" draft: false toc: true -weight: 429 +weight: 130 --- ## 特点 diff --git a/docSite/content/docs/workflow/modules/trigger.md b/docSite/content/docs/workflow/modules/trigger.md index 38aa361ef..066e78e84 100644 --- a/docSite/content/docs/workflow/modules/trigger.md +++ b/docSite/content/docs/workflow/modules/trigger.md @@ -4,7 +4,7 @@ description: "FastGPT 触发器模块介绍" icon: "work_history" draft: false toc: true -weight: 421 +weight: 121 --- 细心的同学可以发现,在每个功能模块里都会有一个叫【触发器】的外部输入,并且是 any 类型。 diff --git a/docSite/content/docs/workflow/modules/variable.md b/docSite/content/docs/workflow/modules/variable.md index 0ac2dff8f..a5c095290 100644 --- a/docSite/content/docs/workflow/modules/variable.md +++ b/docSite/content/docs/workflow/modules/variable.md @@ -4,7 +4,7 @@ description: "FastGPT 全局变量模块介绍" icon: "variables" draft: false toc: true -weight: 422 +weight: 122 --- ## 特点 diff --git a/docSite/resources/_gen/assets/scss/docs/scss/style.scss_b97bf3f19a5ec64d7a7c5d60f7e31818.content b/docSite/resources/_gen/assets/scss/docs/scss/style.scss_b97bf3f19a5ec64d7a7c5d60f7e31818.content index 6955a5db7..b9202b876 100644 --- a/docSite/resources/_gen/assets/scss/docs/scss/style.scss_b97bf3f19a5ec64d7a7c5d60f7e31818.content +++ b/docSite/resources/_gen/assets/scss/docs/scss/style.scss_b97bf3f19a5ec64d7a7c5d60f7e31818.content @@ -9638,14 +9638,11 @@ img { order: 1; } .docs-content .main-content a { - font-weight: 600; color: var(--content-link-color); } .docs-content .main-content a:hover { text-decoration: underline 2px var(--primary-200); text-underline-offset: 2.5px !important; transition: 0s !important; } - .docs-content .main-content a code { - color: var(--content-link-color); } .docs-content .main-content #edit-this-page a:hover, .docs-content .main-content #list-item a:hover { @@ -9666,24 +9663,22 @@ img { font-weight: 700; color: var(--body-color); } -.docs-content .content-title { - font-weight: 700; - align-self: center; } +.docs-content .main-content a { + font-weight: 600; } + +.docs-content .content-title { + font-weight: 700; } + .docs-content .content-title i { + width: 44px; + height: 44px; + color: var(--content-icon-color); + background-color: var(--content-icon-bg); + display: inline-flex !important; + align-items: center; + justify-content: center; + font-size: 24px; + border-radius: 5px; } -i.title-icon { - width: 44px; - height: 44px; - color: var(--content-icon-color); - background-color: var(--content-icon-bg); - display: inline-flex !important; - align-self: center; - align-items: center; - justify-content: center; - font-size: 24px; - border-radius: 5px; } - @media (max-width: 768px) { - i.title-icon { - align-self: auto; } } .docs-content p.lead { color: var(--text-muted); font-weight: 400; } @@ -9697,17 +9692,17 @@ i.title-icon { .docs-content p.lead { font-size: 1rem; } } -.docs-content .main-content img, -.docs-content .main-content svg { - max-width: 100%; - height: auto; } +.docs-content .main-content img { + max-width: 100%; } .docs-content .main-content ul { + list-style: none; + line-height: 26px; padding-left: 0; } - .docs-content .main-content ul > li { + .docs-content .main-content ul li { position: relative; padding-left: 32px; } - .docs-content .main-content ul > li::before { + .docs-content .main-content ul li::before { content: ""; position: absolute; width: 6px; @@ -9718,12 +9713,13 @@ i.title-icon { background: var(--gray-500); } .docs-content .main-content ol { - counter-reset: listitem; } - .docs-content .main-content ol > li { + list-style: none; + line-height: 26px; } + .docs-content .main-content ol li { counter-increment: listitem; position: relative; padding-left: 32px; } - .docs-content .main-content ol > li::before { + .docs-content .main-content ol li::before { content: counter(listitem); background: var(--ordered-list-bg); color: var(--ordered-list-color); @@ -9739,11 +9735,6 @@ i.title-icon { left: 0; top: 3px; } -.docs-content .main-content ol, -.docs-content .main-content ul { - list-style: none; - line-height: 26px; } - .docs-content .main-content blockquote { margin-bottom: 1rem; font-size: 1.25rem; @@ -9761,7 +9752,7 @@ i.title-icon { .docs-content .main-content code { font-size: inherit; color: var(--text-default); - font-weight: 400; + font-weight: 500; padding: 1px 2px; background: var(--inline-code-bg); border: var(--inline-code-border); @@ -9831,20 +9822,11 @@ i.title-icon { overflow-y: overlay; position: relative; border-right: 1px solid var(--sidebar-border-color); - scrollbar-width: thin; - scrollbar-color: var(--sidebar-bg) var(--sidebar-bg); } + scrollbar-width: none; } .page-wrapper .sidebar-wrapper .sidebar-content.desktop { overflow-y: hidden; } - .page-wrapper .sidebar-wrapper .sidebar-content:hover { - scrollbar-color: var(--sidebar-scrollbar-thumb-color) var(--sidebar-bg); } - .page-wrapper .sidebar-wrapper .sidebar-content::-webkit-scrollbar { - width: 5px; - height: 8px; } - .page-wrapper .sidebar-wrapper .sidebar-content::-webkit-scrollbar-track { - background: var(--sidebar-bg); - display: none; } - .page-wrapper .sidebar-wrapper .sidebar-content:hover::-webkit-scrollbar-thumb { - background: var(--sidebar-scrollbar-thumb-color); } + .page-wrapper .sidebar-wrapper .sidebar-content::-webkit-scrollbar { + display: none; } .page-wrapper .sidebar-wrapper .sidebar-brand { background: var(--sidebar-bg); padding: 10px 20px; @@ -9855,7 +9837,6 @@ i.title-icon { .page-wrapper .sidebar-wrapper .sidebar-brand > a { text-transform: uppercase; font-weight: bold; - flex-grow: 1; transition: all 0.3s ease; } .page-wrapper .sidebar-wrapper .sidebar-brand > a:focus { outline: none; } @@ -10599,16 +10580,25 @@ button:not(:disabled) { background-size: 1.5rem; filter: invert(1) grayscale(100%) brightness(200%); } +@media (min-width: 768px) { + .alert-dismissible .btn-close { + background-size: 1.25rem; } } + [data-global-alert="closed"] #announcement { display: none; } +.alert code { + background: #e7e8e9; + color: #000; + padding: 0.25rem 0.5rem; } + :root { --card-title-color: var(--text-default); --card-text-color: var(--text-muted); } [data-dark-mode] { --card-title-color: var(--text-default); - --card-text-color: var(--gray-500); } + --card-text-color: #6c757d; } .card { background: var(--card-bg); @@ -10627,8 +10617,7 @@ button:not(:disabled) { color: var(--card-title-color); } .card-text { - color: var(--card-text-color); - font-weight: 500; } + color: var(--card-text-color); } :root { --form-border-color: var(--gray-200); @@ -10666,12 +10655,12 @@ button:not(:disabled) { background-color: var(--body-bg); text-align: left; } .form-control:focus { - border-color: var(--primary); + border-color: #2f55d4; box-shadow: none; } .form-control[readonly] { - background-color: var(--white); } + background-color: #fff; } .form-control:disabled { - background-color: var(--gray-300); } + background-color: #dee2e6; } .form-control::placeholder { color: var(--form-control-placeholder-color); } @@ -10684,7 +10673,7 @@ button:not(:disabled) { border: 1px solid var(--form-check-input-border-color); background-color: var(--body-bg); } .form-check-input:focus { - border-color: var(--primary); + border-color: #2f55d4; box-shadow: none; } .form-check-input.form-check-input:checked { background-color: var(--form-check-input-background-color); @@ -10710,6 +10699,7 @@ table td:last-child, table th:last-child { .table { --bs-table-color: var(--text-default); --bs-table-bg: transparent; + --bs-table-border-color: var(--bs-border-color); --bs-table-accent-bg: none; --bs-table-striped-color: var(--text-default); --bs-table-striped-bg: var(--alert-primary-bg); @@ -10817,12 +10807,10 @@ table td:last-child, table th:last-child { :root { --feature-icon-color: var(--primary); - --feature-icon-faint: var(--gray-200); --feature-link-hover-bg-color: var(--primary); } [data-dark-mode] { --feature-icon-color: var(--primary-300); - --feature-icon-faint: var(--gray-900); --feature-link-hover-bg-color: var(--gray-900); } .features .icon { @@ -10846,10 +10834,6 @@ table td:last-child, table th:last-child { .features.feature-full-bg .icon-color { color: var(--feature-icon-color) !important; } -.features.feature-full-bg .icon-faint { - color: var(--feature-icon-faint) !important; - transition: all 0.5s ease; } - .features.feature-full-bg:hover { background-color: var(--feature-link-hover-bg-color) !important; } @@ -11144,6 +11128,30 @@ table td:last-child, table th:last-child { .rounded-lg { border-radius: 30px !important; } +.border-primary { + border-color: #2f55d4 !important; } + +.border-secondary { + border-color: #6c757d !important; } + +.border-success { + border-color: #2eca8b !important; } + +.border-info { + border-color: #17a2b8 !important; } + +.border-warning { + border-color: #f17425 !important; } + +.border-danger { + border-color: #e43f52 !important; } + +.border-light { + border-color: #f8f9fa !important; } + +.border-dark { + border-color: #0e1420 !important; } + .bg-white-color { background: var(--bg-white-color); } diff --git a/docSite/resources/_gen/assets/scss/scss/style.scss_6d90bf46f7cdc038e33af2850006d4ba.content b/docSite/resources/_gen/assets/scss/scss/style.scss_6d90bf46f7cdc038e33af2850006d4ba.content index fc958c3dc..e2214ae1b 100644 --- a/docSite/resources/_gen/assets/scss/scss/style.scss_6d90bf46f7cdc038e33af2850006d4ba.content +++ b/docSite/resources/_gen/assets/scss/scss/style.scss_6d90bf46f7cdc038e33af2850006d4ba.content @@ -9465,134 +9465,139 @@ p { @media (max-width: 767px) { .four-oh-four { min-height: calc(100vh - 241px); } } -#topnav { - position: fixed; - right: 0; - left: 0; +#topnav .logo { + float: left; + color: #3c4858 !important; } + #topnav .logo .l-dark, + #topnav .logo .logo-dark-mode { + display: none; } + #topnav .logo .l-light, + #topnav .logo .logo-light-mode { + display: inline-block; } + #topnav .logo:focus { + outline: none; } + +#topnav #navigation.toggle-menu { + position: relative; + display: block; top: 0; - background-color: transparent; - z-index: 999; + border: none; } + #topnav #navigation.toggle-menu .toggle-menu-item { + display: block; } + #topnav #navigation.toggle-menu .toggle-menu-item > li { + float: none; + margin: 0 16px !important; + text-align: center; } + #topnav #navigation.toggle-menu .toggle-menu-item > li > a { + padding: 16px 0; + min-height: auto; + font-size: 18px; } + +#topnav .navbar-toggle { border: 0; - -webkit-transition: all .5s ease; - transition: all .5s ease; } - #topnav .logo { - float: left; - color: #3c4858 !important; } - #topnav .logo .l-dark, - #topnav .logo .logo-dark-mode { - display: none; } - #topnav .logo .l-light, - #topnav .logo .logo-light-mode { - display: inline-block; } - #topnav .logo:focus { - outline: none; } - #topnav #navigation.toggle-menu { - position: relative; + position: relative; + padding: 0; + margin: 0; + cursor: pointer; } + #topnav .navbar-toggle .lines { + width: 20px; display: block; - top: 0; - border: none; } - #topnav #navigation.toggle-menu .toggle-menu-item { - display: block; } - #topnav #navigation.toggle-menu .toggle-menu-item > li { - float: none; - margin: 0 16px !important; - text-align: center; } - #topnav #navigation.toggle-menu .toggle-menu-item > li > a { - padding: 16px 0; - min-height: auto; - font-size: 18px; } - #topnav .navbar-toggle { - border: 0; position: relative; - padding: 0; - margin: 0; - cursor: pointer; } - #topnav .navbar-toggle .lines { - width: 20px; - display: block; - position: relative; - margin: 4px 0 0 0; - height: 18px; } - #topnav .navbar-toggle span { - height: 2px; - width: 100%; - background-color: #0066ff; - display: block; - margin-bottom: 5px; - transition: transform .5s ease; } - #topnav .navbar-toggle span:last-child { - margin-bottom: 0; } - #topnav .navbar-toggle.open span { - position: absolute; } - #topnav .navbar-toggle.open span:first-child { - top: 6px; - transform: rotate(45deg); } - #topnav .navbar-toggle.open span:nth-child(2) { - visibility: hidden; } - #topnav .navbar-toggle.open span:last-child { - width: 100%; - top: 6px; - transform: rotate(-45deg); } - #topnav .navbar-toggle.open span:hover { - background-color: #0066ff; } - #topnav .navbar-toggle:hover, #topnav .navbar-toggle:focus, - #topnav .navbar-toggle .navigation-menu > li > a:hover, #topnav .navbar-toggle:focus { - background-color: transparent; } - #topnav .navigation-menu { - list-style: none; - margin: 0; - padding: 0; } - #topnav .navigation-menu > li { - float: left; - display: block; - position: relative; - margin: 0 10px; } - #topnav .navigation-menu > li:hover > a, #topnav .navigation-menu > li.active > a { - color: #0066ff !important; } - #topnav .navigation-menu > li > a { - display: flex; - color: #3c4858; - font-size: 15px; - background-color: transparent !important; - font-weight: 700; - letter-spacing: 1px; - line-height: 24px; - font-family: var(--bs-font-sans-serif); - padding-left: 15px; - padding-right: 15px; - align-items: center; } - #topnav .navigation-menu > li > a:hover, #topnav .navigation-menu > li > a:active { - color: #0066ff; } - #topnav.scroll { - background-color: #ffffff; - border: none; - box-shadow: 0 0 3px rgba(60, 72, 88, 0.15); } - #topnav.scroll .navigation-menu > li > a { - color: #3c4858; } - #topnav.scroll .navigation-menu > li > .menu-arrow { - border-color: #3c4858; } - #topnav.scroll .navigation-menu > li:hover > a, #topnav.scroll .navigation-menu > li.active > a { - color: #0066ff; } - #topnav.scroll .navigation-menu > li:hover > .menu-arrow, #topnav.scroll .navigation-menu > li.active > .menu-arrow { - border-color: #0066ff; } - #topnav.nav-sticky { - background: #fff; - -webkit-box-shadow: 0 0 3px rgba(60, 72, 88, 0.15); - box-shadow: 0 0 3px rgba(60, 72, 88, 0.15); } - #topnav.nav-sticky .navigation-menu.nav-light > li > a { - color: #3c4858; } - #topnav.nav-sticky .navigation-menu.nav-light > li.active > a { + margin: 4px 0 0 0; + height: 18px; } + #topnav .navbar-toggle span { + height: 2px; + width: 100%; + background-color: #0066ff; + display: block; + margin-bottom: 5px; + transition: transform .5s ease; } + #topnav .navbar-toggle span:last-child { + margin-bottom: 0; } + +#topnav .navbar-toggle.open span { + position: absolute; } + #topnav .navbar-toggle.open span:first-child { + top: 6px; + transform: rotate(45deg); } + #topnav .navbar-toggle.open span:nth-child(2) { + visibility: hidden; } + #topnav .navbar-toggle.open span:last-child { + width: 100%; + top: 6px; + transform: rotate(-45deg); } + #topnav .navbar-toggle.open span:hover { + background-color: #0066ff; } + +#topnav .navbar-toggle:hover, #topnav .navbar-toggle:focus, +#topnav .navbar-toggle .navigation-menu > li > a:hover, #topnav .navbar-toggle:focus { + background-color: transparent; } + +#topnav .navigation-menu { + list-style: none; + margin: 0; + padding: 0; } + #topnav .navigation-menu > li { + float: left; + display: block; + position: relative; + margin: 0 10px; } + #topnav .navigation-menu > li:hover > a, #topnav .navigation-menu > li.active > a { color: #0066ff !important; } - #topnav.nav-sticky .navigation-menu.nav-light > li:hover > .menu-arrow, #topnav.nav-sticky .navigation-menu.nav-light > li.active > .menu-arrow { - border-color: #0066ff !important; } - #topnav.nav-sticky .navigation-menu.nav-light > li:hover > a, #topnav.nav-sticky .navigation-menu.nav-light > li.active > a { - color: #0066ff !important; } - #topnav.nav-sticky.tagline-height { - top: 0 !important; } - #topnav.nav-sticky .logo .l-dark { - display: inline-block; } - #topnav.nav-sticky .logo .l-light { - display: none; } + #topnav .navigation-menu > li > a { + display: flex; + color: #3c4858; + font-size: 15px; + background-color: transparent !important; + font-weight: 700; + letter-spacing: 1px; + line-height: 24px; + font-family: var(--bs-font-sans-serif); + padding-left: 15px; + padding-right: 15px; + align-items: center; } + #topnav .navigation-menu > li > a:hover, #topnav .navigation-menu > li > a:active { + color: #0066ff; } + +#topnav.scroll { + background-color: #ffffff; + border: none; + box-shadow: 0 0 3px rgba(60, 72, 88, 0.15); } + #topnav.scroll .navigation-menu > li > a { + color: #3c4858; } + #topnav.scroll .navigation-menu > li > .menu-arrow { + border-color: #3c4858; } + #topnav.scroll .navigation-menu > li:hover > a, #topnav.scroll .navigation-menu > li.active > a { + color: #0066ff; } + #topnav.scroll .navigation-menu > li:hover > .menu-arrow, #topnav.scroll .navigation-menu > li.active > .menu-arrow { + border-color: #0066ff; } + +#topnav.defaultscroll.dark-menubar .logo { + line-height: 70px; } + +#topnav.defaultscroll.scroll .logo { + line-height: 62px; } + +#topnav.defaultscroll.scroll.dark-menubar .logo { + line-height: 62px; } + +#topnav.nav-sticky { + background: #fff; + box-shadow: 0 0 3px rgba(60, 72, 88, 0.15); } + #topnav.nav-sticky .navigation-menu.nav-light > li > a { + color: #3c4858; } + #topnav.nav-sticky .navigation-menu.nav-light > li.active > a { + color: #0066ff !important; } + #topnav.nav-sticky .navigation-menu.nav-light > li:hover > .menu-arrow, #topnav.nav-sticky .navigation-menu.nav-light > li.active > .menu-arrow { + border-color: #0066ff !important; } + #topnav.nav-sticky .navigation-menu.nav-light > li:hover > a, #topnav.nav-sticky .navigation-menu.nav-light > li.active > a { + color: #0066ff !important; } + #topnav.nav-sticky.tagline-height { + top: 0 !important; } + #topnav.nav-sticky .logo .l-dark { + display: inline-block; } + #topnav.nav-sticky .logo .l-light { + display: none; } .logo { font-weight: 700; @@ -11006,10 +11011,6 @@ span.menu-icon { max-width: 100%; height: auto; } } -.hero { - background-size: cover; - padding-top: 70px; } - .icv { position: relative; overflow: hidden;