Skip to content

Commit

Permalink
Merge branch 'main' into john/api-ref-update
Browse files Browse the repository at this point in the history
  • Loading branch information
donjo authored Jun 14, 2024
2 parents fbfddbd + bc3fbae commit 71ccaae
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 8 deletions.
2 changes: 1 addition & 1 deletion replacements.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"CLI_VERSION": "1.44.1",
"CLI_VERSION": "1.44.2",
"STD_VERSION": "0.224.0"
}
34 changes: 27 additions & 7 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,15 @@ html:root {
--ifm-alert-padding-horizontal: 2rem;
--ifm-color-info-dark: var(--deploy-medium);
--ifm-color-info-contrast-background: var(--deploy-lightest);
--ifm-color-emphasis-300: var(--gray-00);
--ifm-color-emphasis-300: var(--gray-000);
--ifm-menu-color-background-hover: var(--deploy-lightest);
--ifm-code-font-size: 0.875em;
--ifm-code-padding-horizontal: 0.375em;
--ifm-code-padding-vertical: 0.1875em;
--ifm-code-background: #f6f8fa; /* Matches Prism highlighting */
--ifm-code-color: #393a34;
--ifm-toc-padding-vertical: 0.5rem;
--ifm-toc-border-color: var(--gray-00);
--ifm-toc-border-color: var(--gray-000);
--ifm-color-content-secondary: var(--gray-2);
--ifm-menu-color: var(--gray-2);
--ifm-navbar-search-input-background-color: var(--white);
Expand Down Expand Up @@ -122,7 +122,7 @@ html[data-theme="dark"][data-theme="dark"] {
--ifm-color-info-contrast-background: var(--deploy-dark);
--ifm-color-content-secondary: var(--gray-0);
--ifm-menu-color-background-active: var(--runtime-dark);
--ifm-code-background: #282a36;
--ifm-code-background: var(--gray-4);
--ifm-menu-color: var(--gray-00);
--ifm-navbar-shadow-dark: 0 1px 2px 0 rgba(255, 255, 255, 0.1);
--docsearch-footer-background: var(--runtime-dark);
Expand Down Expand Up @@ -160,14 +160,30 @@ html[data-theme="light"] .secondary-navbar {
border-top: 1px solid var(--gray-000);
}

html[data-theme="dark"]
.codeBlockTitle_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-Content-styles-module {
border-bottom: 1px solid var(--offblack);
font-weight: var(--ifm-font-weight-bold);
font-size: 1rem;
background-color: var(--gray-4);
}
html[data-theme="dark"]
.codeBlockLines_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-Content-styles-module {
background-color: var(--gray-4);
border-top-left-radius: 0;
border-top-right-radius: 0;
}

/* Multiple selectors to override defaults in light mode */

html[data-theme="light"] kbd.DocSearch-Button-Key,
html[data-theme="light"] kbd.DocSearch-Commands-Key {
box-shadow: none;
color: var(--gray-3);
color: var(--gray-0);
}

html[data-theme="light"] .DocSearch-Button {
border: 1px solid var(--gray-4);
border: 1px solid var(--gray-00);
background-color: var(--white);
padding: 0 1rem;
}
Expand Down Expand Up @@ -303,7 +319,7 @@ td p:last-child {
color: var(--ifm-navbar-link-color);
font-size: 0.75rem;
text-transform: uppercase;
border-bottom: 1px solid var(--gray-00);
border-bottom: 1px solid var(--gray-000);
margin: 1rem var(--ifm-menu-link-padding-horizontal);
padding: 0.5rem 0 0.1rem 0;
}
Expand All @@ -321,7 +337,7 @@ td p:last-child {
.subsection-header {
padding: 2px 0;
margin: 5px var(--ifm-menu-link-padding-horizontal);
border-bottom: 1px solid var(--gray-00);
border-bottom: 1px solid var(--gray-000);
font-size: 0.8rem;
}

Expand Down Expand Up @@ -612,3 +628,7 @@ kbd.DocSearch-Commands-Key {
border-bottom-color: var(--ifm-tabs-color-active-border);
color: var(--ifm-tabs-color-active);
}

.codeBlockLines_node_modules-\@docusaurus-theme-classic-lib-theme-CodeBlock-Content-styles-module {
background-color: var(--ifm-code-background);
}

0 comments on commit 71ccaae

Please sign in to comment.