-
-
Notifications
You must be signed in to change notification settings - Fork 283
Remove deprecated v3.0.0 docs and UI Changes #785
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| /** | ||
| * Creating a sidebar enables you to: | ||
| - create an ordered group of docs | ||
| - render a sidebar for each doc of that group | ||
| - provide next/previous navigation | ||
|
|
||
| The sidebars can be generated from the filesystem, or explicitly defined here. | ||
|
|
||
| Create as many sidebars as you want. | ||
| */ | ||
|
|
||
| // @ts-check | ||
|
|
||
| /** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */ | ||
| const sidebars = { | ||
| // By default, Docusaurus generates a sidebar from the docs folder structure | ||
| // tutorialSidebar: [{type: 'autogenerated', dirName: '.'}], | ||
|
|
||
| // But you can create a sidebar manually | ||
| /* | ||
| tutorialSidebar: [ | ||
| 'intro', | ||
| 'hello', | ||
| { | ||
| type: 'category', | ||
| label: 'Tutorial', | ||
| items: ['tutorial-basics/create-a-document'], | ||
| }, | ||
| ], | ||
| */ | ||
| }; | ||
|
|
||
| module.exports = sidebars; |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -2721,3 +2721,208 @@ html[data-theme="dark"] div[class^="sidebar_"] > nav > ul > li > .menu__list-ite | |||||
| line-height: 1.4; | ||||||
| } | ||||||
| } | ||||||
|
|
||||||
| /* ===== CONSISTENT SPACING FOR DOCUMENTATION PAGES ===== */ | ||||||
| /* Fix inconsistent vertical spacing in documentation content */ | ||||||
| article header + * { | ||||||
| margin-top: 2rem !important; /* Consistent space after page title */ | ||||||
| } | ||||||
|
|
||||||
| article h1 { | ||||||
| margin-bottom: 1.5rem !important; /* Consistent space after H1 */ | ||||||
| } | ||||||
|
|
||||||
| article h2 { | ||||||
| margin-top: 2.5rem !important; /* Consistent space before H2 */ | ||||||
| margin-bottom: 1rem !important; /* Consistent space after H2 */ | ||||||
| } | ||||||
|
|
||||||
| article h3 { | ||||||
| margin-top: 2rem !important; /* Consistent space before H3 */ | ||||||
| margin-bottom: 0.75rem !important; /* Consistent space after H3 */ | ||||||
| } | ||||||
|
|
||||||
| article p { | ||||||
| margin-bottom: 1rem !important; /* Consistent space after paragraphs */ | ||||||
| } | ||||||
|
|
||||||
| article img { | ||||||
| margin-top: 1.5rem !important; /* Consistent space before images */ | ||||||
| margin-bottom: 1.5rem !important; /* Consistent space after images */ | ||||||
| } | ||||||
|
|
||||||
| article \u003e div[style*='backgroundColor'] { | ||||||
| margin-top: 1.5rem !important; /* Consistent space before styled divs */ | ||||||
| margin-bottom: 1.5rem !important; /* Consistent space after styled divs */ | ||||||
| } | ||||||
|
|
||||||
|
|
||||||
| /* Override Tailwind prose spacing for better consistency */ | ||||||
| .prose.md\\:prose-md { | ||||||
| margin-top: 1.5rem !important; | ||||||
| margin-bottom: 1.5rem !important; | ||||||
| } | ||||||
|
|
||||||
| /* More specific overrides for prose elements */ | ||||||
| .prose p { | ||||||
| margin-top: 1rem !important; | ||||||
| margin-bottom: 1rem !important; | ||||||
| } | ||||||
|
|
||||||
| .prose h1 { | ||||||
| margin-top: 0 !important; | ||||||
| margin-bottom: 1.5rem !important; | ||||||
| } | ||||||
|
|
||||||
| .prose h2 { | ||||||
| margin-top: 2rem !important; | ||||||
| margin-bottom: 1rem !important; | ||||||
| } | ||||||
|
|
||||||
| .prose h3 { | ||||||
| margin-top: 1.5rem !important; | ||||||
| margin-bottom: 0.75rem !important; | ||||||
| } | ||||||
|
|
||||||
| .prose img { | ||||||
| margin-top: 1.5rem !important; | ||||||
| margin-bottom: 1.5rem !important; | ||||||
| } | ||||||
|
|
||||||
| /* Fix the large top margin on first element after header */ | ||||||
| .markdown \u003e *:first-child, | ||||||
|
||||||
| .markdown \u003e *:first-child, | |
| .markdown > *:first-child, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CRITICAL: Invalid CSS selector - \u003e should be >
Multiple occurrences of \u003e that should be > characters.
| article \u003e .markdown \u003e *:first-child { | |
| article > .markdown > *:first-child { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| --- | ||
| id: installation | ||
| id: windows-installation | ||
| title: Windows Installation | ||
| sidebar_label: Windows | ||
| tags: | ||
|
|
||


There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CRITICAL: Invalid CSS selector -
\u003eshould be>The literal string
\u003eis being used instead of the>(child combinator) character. This CSS selector will not work as intended.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.