mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-22 23:37:53 +00:00
theme: apply Prettier config #947
This commit is contained in:
parent
85d43bcef3
commit
348702d8c2
22 changed files with 5976 additions and 6376 deletions
57
.grenrc.js
57
.grenrc.js
|
@ -1,51 +1,20 @@
|
||||||
module.exports = {
|
module.exports = {
|
||||||
changelogFilename: "CHANGELOG.md",
|
changelogFilename: 'CHANGELOG.md',
|
||||||
dataSource: "milestones",
|
dataSource: 'milestones',
|
||||||
groupBy: {
|
groupBy: {
|
||||||
"Enhancements": [
|
'Enhancements': ['feature'],
|
||||||
"feature",
|
'Fixes': ['bug'],
|
||||||
],
|
'Maintenance': ['task'],
|
||||||
"Fixes": [
|
'Uncategorised': ['closed'],
|
||||||
"bug"
|
|
||||||
],
|
|
||||||
"Maintenance": [
|
|
||||||
"task",
|
|
||||||
],
|
|
||||||
"Uncategorised": [
|
|
||||||
"closed",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
ignoreLabels: [
|
ignoreLabels: ['asciidoc', 'blocked', 'browser', 'device', 'helpwanted', 'hugo', 'idea', 'mermaid', 'needsfeedback', 'undecided'],
|
||||||
"asciidoc",
|
ignoreIssuesWith: ['discussion', 'documentation', 'duplicate', 'invalid', 'support', 'unresolved', 'update', 'wontchange'],
|
||||||
"blocked",
|
ignoreTagsWith: ['Relearn', 'x'],
|
||||||
"browser",
|
milestoneMatch: '{{tag_name}}',
|
||||||
"device",
|
|
||||||
"helpwanted",
|
|
||||||
"hugo",
|
|
||||||
"idea",
|
|
||||||
"mermaid",
|
|
||||||
"needsfeedback",
|
|
||||||
"undecided",
|
|
||||||
],
|
|
||||||
ignoreIssuesWith: [
|
|
||||||
"discussion",
|
|
||||||
"documentation",
|
|
||||||
"duplicate",
|
|
||||||
"invalid",
|
|
||||||
"support",
|
|
||||||
"unresolved",
|
|
||||||
"update",
|
|
||||||
"wontchange",
|
|
||||||
],
|
|
||||||
ignoreTagsWith: [
|
|
||||||
"Relearn",
|
|
||||||
"x",
|
|
||||||
],
|
|
||||||
milestoneMatch: "{{tag_name}}",
|
|
||||||
onlyMilestones: true,
|
onlyMilestones: true,
|
||||||
template: {
|
template: {
|
||||||
changelogTitle: "",
|
changelogTitle: '',
|
||||||
group: "\n### {{heading}}\n",
|
group: '\n### {{heading}}\n',
|
||||||
release: ({ body, date, release }) => `## ${release} (` + date.replace( /(\d+)\/(\d+)\/(\d+)/, '$3-$2-$1' ) + `)\n${body}`,
|
release: ({ body, date, release }) => `## ${release} (` + date.replace(/(\d+)\/(\d+)\/(\d+)/, '$3-$2-$1') + `)\n${body}`,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
{
|
{
|
||||||
"schedule": "daily",
|
"schedule": "daily",
|
||||||
"ignoredFiles": [
|
"ignoredFiles": ["static/*"],
|
||||||
"static/*"
|
"prTitle": "autobot: optimize images"
|
||||||
],
|
|
||||||
"prTitle": "autobot: optimize images"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,95 +4,108 @@
|
||||||
@import '{{ printf "chroma-%s.css%s" .themevariant.chroma $assetBusting }}';
|
@import '{{ printf "chroma-%s.css%s" .themevariant.chroma $assetBusting }}';
|
||||||
|
|
||||||
#R-sidebar {
|
#R-sidebar {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
#R-body {
|
#R-body {
|
||||||
margin-left: 0 !important;
|
margin-left: 0 !important;
|
||||||
margin-right: 0 !important;
|
margin-right: 0 !important;
|
||||||
min-width: 100% !important;
|
min-width: 100% !important;
|
||||||
max-width: 100% !important;
|
max-width: 100% !important;
|
||||||
width: 100% !important;
|
width: 100% !important;
|
||||||
}
|
}
|
||||||
#R-body #navigation {
|
#R-body #navigation {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
html{
|
html {
|
||||||
font-size: 8.763pt;
|
font-size: 8.763pt;
|
||||||
}
|
}
|
||||||
body {
|
body {
|
||||||
background-color: rgba( 255, 255, 255, 1 );
|
background-color: rgba(255, 255, 255, 1);
|
||||||
}
|
}
|
||||||
code.copy-to-clipboard-code {
|
code.copy-to-clipboard-code {
|
||||||
border-start-end-radius: 2px;
|
border-start-end-radius: 2px;
|
||||||
border-end-end-radius: 2px;
|
border-end-end-radius: 2px;
|
||||||
border-inline-end-width: 1px;
|
border-inline-end-width: 1px;
|
||||||
}
|
}
|
||||||
pre:not(.mermaid) {
|
pre:not(.mermaid) {
|
||||||
border: 1px solid rgba( 204, 204, 204, 1 );
|
border: 1px solid rgba(204, 204, 204, 1);
|
||||||
}
|
}
|
||||||
#R-body #R-topbar{
|
#R-body #R-topbar {
|
||||||
background-color: rgba( 255, 255, 255, 1 ); /* avoid background bleeding*/
|
background-color: rgba(255, 255, 255, 1); /* avoid background bleeding*/
|
||||||
border-bottom: 1px solid rgba( 221, 221, 221, 1 );
|
border-bottom: 1px solid rgba(221, 221, 221, 1);
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
color: rgba( 119, 119, 119, 1 );
|
color: rgba(119, 119, 119, 1);
|
||||||
padding-left: 0; /* for print, we want to align with the footer to ease the layout */
|
padding-left: 0; /* for print, we want to align with the footer to ease the layout */
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
#R-body .topbar-button {
|
#R-body .topbar-button {
|
||||||
/* we don't need the buttons while printing */
|
/* we don't need the buttons while printing */
|
||||||
/* we need !important to turn off JS topbar button handling setting element styles */
|
/* we need !important to turn off JS topbar button handling setting element styles */
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
@media screen and (max-width: 47.999rem) {
|
@media screen and (max-width: 47.999rem) {
|
||||||
#R-body .topbar-breadcrumbs {
|
#R-body .topbar-breadcrumbs {
|
||||||
visibility: visible;
|
visibility: visible;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#R-body .copy-to-clipboard-button {
|
#R-body .copy-to-clipboard-button {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#R-body .svg-reset-button {
|
#R-body .svg-reset-button {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#R-body h1, #R-body h2, #R-body h3, #R-body .article-subheading, #R-body h4, #R-body h5, #R-body h6 {
|
#R-body h1,
|
||||||
/* better contrast for colored elements */
|
#R-body h2,
|
||||||
color: rgba( 0, 0, 0, 1 );
|
#R-body h3,
|
||||||
|
#R-body .article-subheading,
|
||||||
|
#R-body h4,
|
||||||
|
#R-body h5,
|
||||||
|
#R-body h6 {
|
||||||
|
/* better contrast for colored elements */
|
||||||
|
color: rgba(0, 0, 0, 1);
|
||||||
}
|
}
|
||||||
#R-body th, #R-body td,
|
#R-body th,
|
||||||
#R-body code, #R-body strong, #R-body b,
|
#R-body td,
|
||||||
#R-body li, #R-body dd, #R-body dt,
|
#R-body code,
|
||||||
|
#R-body strong,
|
||||||
|
#R-body b,
|
||||||
|
#R-body li,
|
||||||
|
#R-body dd,
|
||||||
|
#R-body dt,
|
||||||
#R-body p,
|
#R-body p,
|
||||||
#R-body a, #R-body button, #R-body .badge .badge-content {
|
#R-body a,
|
||||||
/* better contrast for colored elements */
|
#R-body button,
|
||||||
color: rgba( 0, 0, 0, 1 );
|
#R-body .badge .badge-content {
|
||||||
|
/* better contrast for colored elements */
|
||||||
|
color: rgba(0, 0, 0, 1);
|
||||||
}
|
}
|
||||||
#R-body .anchor{
|
#R-body .anchor {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
#R-body pre:not(.mermaid),
|
#R-body pre:not(.mermaid),
|
||||||
#R-body code {
|
#R-body code {
|
||||||
background-color: rgba( 255, 255, 255, 1 );
|
background-color: rgba(255, 255, 255, 1);
|
||||||
border-color: rgba( 221, 221, 221, 1 );
|
border-color: rgba(221, 221, 221, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
hr{
|
hr {
|
||||||
border-bottom: 1px solid rgba( 221, 221, 221, 1 );
|
border-bottom: 1px solid rgba(221, 221, 221, 1);
|
||||||
}
|
}
|
||||||
#R-body #R-body-inner {
|
#R-body #R-body-inner {
|
||||||
overflow: visible; /* turn off limitations for perfect scrollbar */
|
overflow: visible; /* turn off limitations for perfect scrollbar */
|
||||||
/* reset paddings for chapters in screen */
|
/* reset paddings for chapters in screen */
|
||||||
padding: 0 3.25rem 4rem 3.25rem;
|
padding: 0 3.25rem 4rem 3.25rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
#R-body #R-body-inner h1 {
|
#R-body #R-body-inner h1 {
|
||||||
border-bottom: 1px solid rgba( 221, 221, 221, 1 );
|
border-bottom: 1px solid rgba(221, 221, 221, 1);
|
||||||
margin-bottom: 2rem;
|
margin-bottom: 2rem;
|
||||||
padding-bottom: .75rem;
|
padding-bottom: 0.75rem;
|
||||||
}
|
}
|
||||||
#R-body-inner .chapter h3:first-of-type {
|
#R-body-inner .chapter h3:first-of-type {
|
||||||
margin-top: 2rem;
|
margin-top: 2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Children shortcode */
|
/* Children shortcode */
|
||||||
|
@ -100,77 +113,77 @@ hr{
|
||||||
.children-li p,
|
.children-li p,
|
||||||
.children-h2 p,
|
.children-h2 p,
|
||||||
.children-h3 p {
|
.children-h3 p {
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.footline {
|
.footline {
|
||||||
/* in print mode show footer line to signal reader the end of document */
|
/* in print mode show footer line to signal reader the end of document */
|
||||||
border-top: 1px solid rgba( 221, 221, 221, 1 );
|
border-top: 1px solid rgba(221, 221, 221, 1);
|
||||||
color: rgba( 119, 119, 119, 1 );
|
color: rgba(119, 119, 119, 1);
|
||||||
margin-top: 1.5rem;
|
margin-top: 1.5rem;
|
||||||
padding-top: .75rem;
|
padding-top: 0.75rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 + .footline{
|
h1 + .footline {
|
||||||
/* if we have no content in the page we remove the footer as it is of no real value in print */
|
/* if we have no content in the page we remove the footer as it is of no real value in print */
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#R-body #R-body-inner .headline a,
|
#R-body #R-body-inner .headline a,
|
||||||
#R-body #R-body-inner .footline a,
|
#R-body #R-body-inner .footline a,
|
||||||
#R-body #R-body-inner .btn a {
|
#R-body #R-body-inner .btn a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
#R-body #R-body-inner a {
|
#R-body #R-body-inner a {
|
||||||
/* in print we want to distinguish links in our content from
|
/* in print we want to distinguish links in our content from
|
||||||
normal text even if printed black/white;
|
normal text even if printed black/white;
|
||||||
don't use a.highlight in selector to also get links that are
|
don't use a.highlight in selector to also get links that are
|
||||||
put as HTML into markdown */
|
put as HTML into markdown */
|
||||||
text-decoration-line: underline;
|
text-decoration-line: underline;
|
||||||
}
|
}
|
||||||
#R-topbar{
|
#R-topbar {
|
||||||
/* the header is sticky which is not suitable for print; */
|
/* the header is sticky which is not suitable for print; */
|
||||||
position: initial;
|
position: initial;
|
||||||
}
|
}
|
||||||
#R-topbar > .topbar-wrapper {
|
#R-topbar > .topbar-wrapper {
|
||||||
background-color: initial;
|
background-color: initial;
|
||||||
}
|
}
|
||||||
#R-body .topbar-sidebar-divider {
|
#R-body .topbar-sidebar-divider {
|
||||||
border-width: 0;
|
border-width: 0;
|
||||||
}
|
}
|
||||||
article .R-taxonomy {
|
article .R-taxonomy {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
mark.search {
|
mark.search {
|
||||||
background: inherit;
|
background: inherit;
|
||||||
color: inherit;
|
color: inherit;
|
||||||
}
|
}
|
||||||
.mermaid.zoom:hover {
|
.mermaid.zoom:hover {
|
||||||
border-color: transparent;
|
border-color: transparent;
|
||||||
}
|
}
|
||||||
div.box > .box-content {
|
div.box > .box-content {
|
||||||
background-color: rgba( 255, 255, 255, 1 );
|
background-color: rgba(255, 255, 255, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn,
|
.btn,
|
||||||
#R-body .tab-nav-button {
|
#R-body .tab-nav-button {
|
||||||
color: rgba( 0, 0, 0, 1 );
|
color: rgba(0, 0, 0, 1);
|
||||||
}
|
}
|
||||||
#R-body .tab-nav-button.active {
|
#R-body .tab-nav-button.active {
|
||||||
border-bottom-color: rgba( 255, 255, 255, 1 );
|
border-bottom-color: rgba(255, 255, 255, 1);
|
||||||
color: rgba( 0, 0, 0, 1 );
|
color: rgba(0, 0, 0, 1);
|
||||||
}
|
}
|
||||||
#R-body .tab-nav-button.active > .tab-nav-text {
|
#R-body .tab-nav-button.active > .tab-nav-text {
|
||||||
background-color: rgba( 255, 255, 255, 1 );
|
background-color: rgba(255, 255, 255, 1);
|
||||||
}
|
}
|
||||||
#R-body .tab-content-text {
|
#R-body .tab-content-text {
|
||||||
background-color: rgba( 255, 255, 255, 1 ) ;
|
background-color: rgba(255, 255, 255, 1);
|
||||||
color: rgba( 0, 0, 0, 1 );
|
color: rgba(0, 0, 0, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
article {
|
article {
|
||||||
break-before: page;
|
break-before: page;
|
||||||
}
|
}
|
||||||
#R-body-inner article:first-of-type {
|
#R-body-inner article:first-of-type {
|
||||||
break-before: avoid;
|
break-before: avoid;
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,413 +4,414 @@
|
||||||
/* prettier-ignore */
|
/* prettier-ignore */
|
||||||
@import '{{ printf "variables.css%s" $assetBusting }}';
|
@import '{{ printf "variables.css%s" $assetBusting }}';
|
||||||
|
|
||||||
body{
|
body {
|
||||||
line-height: 1.574;
|
line-height: 1.574;
|
||||||
font-variation-settings: var(--INTERNAL-MAIN-font-variation-settings);
|
font-variation-settings: var(--INTERNAL-MAIN-font-variation-settings);
|
||||||
font-weight: var(--INTERNAL-MAIN-font-weight);
|
font-weight: var(--INTERNAL-MAIN-font-weight);
|
||||||
font-family: var(--INTERNAL-MAIN-font);
|
font-family: var(--INTERNAL-MAIN-font);
|
||||||
letter-spacing: var(--INTERNAL-MAIN-letter-spacing);
|
letter-spacing: var(--INTERNAL-MAIN-letter-spacing);
|
||||||
margin: 0;
|
margin: 0;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
body,
|
body,
|
||||||
.swagger-ui .info *,
|
.swagger-ui .info *,
|
||||||
#relearn-swagger-ui .renderedMarkdown *,
|
#relearn-swagger-ui .renderedMarkdown *,
|
||||||
#relearn-swagger-ui p{
|
#relearn-swagger-ui p {
|
||||||
font-size: 1.015625rem;
|
font-size: 1.015625rem;
|
||||||
}
|
}
|
||||||
.swagger-ui .scheme-container{
|
.swagger-ui .scheme-container {
|
||||||
padding-left: 1rem;
|
padding-left: 1rem;
|
||||||
padding-right: 1rem;
|
padding-right: 1rem;
|
||||||
}
|
}
|
||||||
.swagger-ui .wrapper{
|
.swagger-ui .wrapper {
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
h2 {
|
h2 {
|
||||||
color: var(--INTERNAL-MAIN-TITLES-H2-TEXT-color);
|
color: var(--INTERNAL-MAIN-TITLES-H2-TEXT-color);
|
||||||
font-variation-settings: var(--INTERNAL-MAIN-TITLES-H2-font-variation-settings);
|
font-variation-settings: var(--INTERNAL-MAIN-TITLES-H2-font-variation-settings);
|
||||||
font-weight: var(--INTERNAL-MAIN-TITLES-H2-font-weight);
|
font-weight: var(--INTERNAL-MAIN-TITLES-H2-font-weight);
|
||||||
font-family: var(--INTERNAL-MAIN-TITLES-H2-font);
|
font-family: var(--INTERNAL-MAIN-TITLES-H2-font);
|
||||||
letter-spacing: var(--INTERNAL-MAIN-TITLES-H2-letter-spacing);
|
letter-spacing: var(--INTERNAL-MAIN-TITLES-H2-letter-spacing);
|
||||||
}
|
}
|
||||||
svg{
|
svg {
|
||||||
fill: var(--INTERNAL-MAIN-TEXT-color);
|
fill: var(--INTERNAL-MAIN-TEXT-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .info h2.title {
|
.swagger-ui .info h2.title {
|
||||||
color: var(--INTERNAL-MAIN-TITLES-H2-TEXT-color);
|
color: var(--INTERNAL-MAIN-TITLES-H2-TEXT-color);
|
||||||
font-variation-settings: var(--INTERNAL-MAIN-TITLES-H2-font-variation-settings);
|
font-variation-settings: var(--INTERNAL-MAIN-TITLES-H2-font-variation-settings);
|
||||||
font-weight: var(--INTERNAL-MAIN-TITLES-H2-font-weight);
|
font-weight: var(--INTERNAL-MAIN-TITLES-H2-font-weight);
|
||||||
font-family: var(--INTERNAL-MAIN-TITLES-H2-font);
|
font-family: var(--INTERNAL-MAIN-TITLES-H2-font);
|
||||||
letter-spacing: var(--INTERNAL-MAIN-TITLES-H2-letter-spacing);
|
letter-spacing: var(--INTERNAL-MAIN-TITLES-H2-letter-spacing);
|
||||||
}
|
}
|
||||||
.relearn-expander{
|
.relearn-expander {
|
||||||
display: block;
|
display: block;
|
||||||
float: right;
|
float: right;
|
||||||
margin: .5rem;
|
margin: 0.5rem;
|
||||||
}
|
}
|
||||||
#relearn-swagger-ui{
|
#relearn-swagger-ui {
|
||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Styles extracted from swagger-dark.css generated by Dark Reader */
|
/* Styles extracted from swagger-dark.css generated by Dark Reader */
|
||||||
|
|
||||||
html {
|
html {
|
||||||
background-color: var(--INTERNAL-MAIN-BG-color) !important;
|
background-color: var(--INTERNAL-MAIN-BG-color) !important;
|
||||||
color-scheme: var(--INTERNAL-BROWSER-theme) !important;
|
color-scheme: var(--INTERNAL-BROWSER-theme) !important;
|
||||||
}
|
}
|
||||||
html, body {
|
html,
|
||||||
background-color: var(--INTERNAL-MAIN-BG-color);
|
body {
|
||||||
color: var(--INTERNAL-MAIN-TEXT-color);
|
background-color: var(--INTERNAL-MAIN-BG-color);
|
||||||
|
color: var(--INTERNAL-MAIN-TEXT-color);
|
||||||
}
|
}
|
||||||
a {
|
a {
|
||||||
color: var(--INTERNAL-MAIN-LINK-color);
|
color: var(--INTERNAL-MAIN-LINK-color);
|
||||||
}
|
}
|
||||||
input:-webkit-autofill,
|
input:-webkit-autofill,
|
||||||
textarea:-webkit-autofill,
|
textarea:-webkit-autofill,
|
||||||
select:-webkit-autofill {
|
select:-webkit-autofill {
|
||||||
color: var(--INTERNAL-MAIN-TEXT-color) !important;
|
color: var(--INTERNAL-MAIN-TEXT-color) !important;
|
||||||
}
|
}
|
||||||
::-webkit-scrollbar-corner {
|
::-webkit-scrollbar-corner {
|
||||||
background-color: var(--INTERNAL-MAIN-BG-color);
|
background-color: var(--INTERNAL-MAIN-BG-color);
|
||||||
}
|
}
|
||||||
::selection {
|
::selection {
|
||||||
color: var(--INTERNAL-MAIN-TEXT-color) !important;
|
color: var(--INTERNAL-MAIN-TEXT-color) !important;
|
||||||
}
|
}
|
||||||
::-moz-selection {
|
::-moz-selection {
|
||||||
color: var(--INTERNAL-MAIN-TEXT-color) !important;
|
color: var(--INTERNAL-MAIN-TEXT-color) !important;
|
||||||
}
|
}
|
||||||
*:not(pre, pre *, code, .far, .fa, .glyphicon, [class*="vjs-"], .fab, .fa-github, .fas, .material-icons, .icofont, .typcn, mu, [class*="mu-"], .glyphicon, .icon) {
|
*:not(pre, pre *, code, .far, .fa, .glyphicon, [class*='vjs-'], .fab, .fa-github, .fas, .material-icons, .icofont, .typcn, mu, [class*='mu-'], .glyphicon, .icon) {
|
||||||
font-variation-settings: var(--INTERNAL-MAIN-font-variation-settings);
|
font-variation-settings: var(--INTERNAL-MAIN-font-variation-settings);
|
||||||
font-family: var(--INTERNAL-MAIN-font) !important;
|
font-family: var(--INTERNAL-MAIN-font) !important;
|
||||||
letter-spacing: var(--INTERNAL-MAIN-letter-spacing) !important;
|
letter-spacing: var(--INTERNAL-MAIN-letter-spacing) !important;
|
||||||
line-height: 1.574 !important;
|
line-height: 1.574 !important;
|
||||||
}
|
}
|
||||||
:root {
|
:root {
|
||||||
--darkreader-neutral-background: var(--INTERNAL-MAIN-BG-color);
|
--darkreader-neutral-background: var(--INTERNAL-MAIN-BG-color);
|
||||||
--darkreader-neutral-text: var(--INTERNAL-MAIN-TEXT-color);
|
--darkreader-neutral-text: var(--INTERNAL-MAIN-TEXT-color);
|
||||||
--darkreader-selection-text: var(--INTERNAL-MAIN-TEXT-color);
|
--darkreader-selection-text: var(--INTERNAL-MAIN-TEXT-color);
|
||||||
}
|
}
|
||||||
.swagger-ui {
|
.swagger-ui {
|
||||||
color: var(--INTERNAL-MAIN-TEXT-color);
|
color: var(--INTERNAL-MAIN-TEXT-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .nested-links a {
|
.swagger-ui .nested-links a {
|
||||||
color: var(--INTERNAL-MAIN-LINK-color);
|
color: var(--INTERNAL-MAIN-LINK-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .nested-links a:focus,
|
.swagger-ui .nested-links a:focus,
|
||||||
.swagger-ui .nested-links a:hover {
|
.swagger-ui .nested-links a:hover {
|
||||||
color: var(--INTERNAL-MAIN-LINK-HOVER-color);
|
color: var(--INTERNAL-MAIN-LINK-HOVER-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .opblock-tag {
|
.swagger-ui .opblock-tag {
|
||||||
color: var(--INTERNAL-MAIN-TEXT-color);
|
color: var(--INTERNAL-MAIN-TEXT-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .opblock-tag small {
|
.swagger-ui .opblock-tag small {
|
||||||
color: var(--INTERNAL-MAIN-TEXT-color);
|
color: var(--INTERNAL-MAIN-TEXT-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .parameter__type {
|
.swagger-ui .parameter__type {
|
||||||
color: var(--INTERNAL-MAIN-TEXT-color);
|
color: var(--INTERNAL-MAIN-TEXT-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .opblock .opblock-section-header > label {
|
.swagger-ui .opblock .opblock-section-header > label {
|
||||||
color: var(--INTERNAL-MAIN-TEXT-color);
|
color: var(--INTERNAL-MAIN-TEXT-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .opblock .opblock-section-header h4 {
|
.swagger-ui .opblock .opblock-section-header h4 {
|
||||||
color: var(--INTERNAL-MAIN-TITLES-H4-TEXT-color);
|
color: var(--INTERNAL-MAIN-TITLES-H4-TEXT-color);
|
||||||
font-variation-settings: var(--INTERNAL-MAIN-TITLES-H4-font-variation-settings);
|
font-variation-settings: var(--INTERNAL-MAIN-TITLES-H4-font-variation-settings);
|
||||||
!font-weight: var(--INTERNAL-MAIN-TITLES-H4-font-weight);
|
!font-weight: var(--INTERNAL-MAIN-TITLES-H4-font-weight);
|
||||||
font-family: var(--INTERNAL-MAIN-TITLES-H4-font);
|
font-family: var(--INTERNAL-MAIN-TITLES-H4-font);
|
||||||
letter-spacing: var(--INTERNAL-MAIN-TITLES-H4-letter-spacing);
|
letter-spacing: var(--INTERNAL-MAIN-TITLES-H4-letter-spacing);
|
||||||
}
|
}
|
||||||
.swagger-ui .opblock .opblock-summary-operation-id,
|
.swagger-ui .opblock .opblock-summary-operation-id,
|
||||||
.swagger-ui .opblock .opblock-summary-path,
|
.swagger-ui .opblock .opblock-summary-path,
|
||||||
.swagger-ui .opblock .opblock-summary-path__deprecated {
|
.swagger-ui .opblock .opblock-summary-path__deprecated {
|
||||||
color: var(--INTERNAL-MAIN-TEXT-color);
|
color: var(--INTERNAL-MAIN-TEXT-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .opblock .opblock-summary-description {
|
.swagger-ui .opblock .opblock-summary-description {
|
||||||
color: var(--INTERNAL-MAIN-TEXT-color);
|
color: var(--INTERNAL-MAIN-TEXT-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .opblock.opblock-post {
|
.swagger-ui .opblock.opblock-post {
|
||||||
border-color: var(--INTERNAL-BOX-GREEN-color);
|
border-color: var(--INTERNAL-BOX-GREEN-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .opblock.opblock-post .opblock-summary-method {
|
.swagger-ui .opblock.opblock-post .opblock-summary-method {
|
||||||
background-color: var(--INTERNAL-BOX-GREEN-color);
|
background-color: var(--INTERNAL-BOX-GREEN-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .opblock.opblock-post .opblock-summary {
|
.swagger-ui .opblock.opblock-post .opblock-summary {
|
||||||
border-color: var(--INTERNAL-BOX-GREEN-color);
|
border-color: var(--INTERNAL-BOX-GREEN-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .opblock.opblock-post .tab-header .tab-item.active h4 span::after {
|
.swagger-ui .opblock.opblock-post .tab-header .tab-item.active h4 span::after {
|
||||||
background-color: var(--INTERNAL-BOX-GREEN-color);
|
background-color: var(--INTERNAL-BOX-GREEN-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .opblock.opblock-put {
|
.swagger-ui .opblock.opblock-put {
|
||||||
border-color: var(--INTERNAL-BOX-ORANGE-color);
|
border-color: var(--INTERNAL-BOX-ORANGE-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .opblock.opblock-put .opblock-summary-method {
|
.swagger-ui .opblock.opblock-put .opblock-summary-method {
|
||||||
background-color: var(--INTERNAL-BOX-ORANGE-color);
|
background-color: var(--INTERNAL-BOX-ORANGE-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .opblock.opblock-put .opblock-summary {
|
.swagger-ui .opblock.opblock-put .opblock-summary {
|
||||||
border-color: var(--INTERNAL-BOX-ORANGE-color);
|
border-color: var(--INTERNAL-BOX-ORANGE-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .opblock.opblock-put .tab-header .tab-item.active h4 span::after {
|
.swagger-ui .opblock.opblock-put .tab-header .tab-item.active h4 span::after {
|
||||||
background-color: var(--INTERNAL-BOX-ORANGE-color);
|
background-color: var(--INTERNAL-BOX-ORANGE-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .opblock.opblock-delete {
|
.swagger-ui .opblock.opblock-delete {
|
||||||
border-color: var(--INTERNAL-BOX-RED-color);
|
border-color: var(--INTERNAL-BOX-RED-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .opblock.opblock-delete .opblock-summary-method {
|
.swagger-ui .opblock.opblock-delete .opblock-summary-method {
|
||||||
background-color: var(--INTERNAL-BOX-RED-color);
|
background-color: var(--INTERNAL-BOX-RED-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .opblock.opblock-delete .opblock-summary {
|
.swagger-ui .opblock.opblock-delete .opblock-summary {
|
||||||
border-color: var(--INTERNAL-BOX-RED-color);
|
border-color: var(--INTERNAL-BOX-RED-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .opblock.opblock-delete .tab-header .tab-item.active h4 span::after {
|
.swagger-ui .opblock.opblock-delete .tab-header .tab-item.active h4 span::after {
|
||||||
background-color: var(--INTERNAL-BOX-RED-color);
|
background-color: var(--INTERNAL-BOX-RED-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .opblock.opblock-get {
|
.swagger-ui .opblock.opblock-get {
|
||||||
border-color: var(--INTERNAL-BOX-BLUE-color);
|
border-color: var(--INTERNAL-BOX-BLUE-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .opblock.opblock-get .opblock-summary-method {
|
.swagger-ui .opblock.opblock-get .opblock-summary-method {
|
||||||
background-color: var(--INTERNAL-BOX-BLUE-color);
|
background-color: var(--INTERNAL-BOX-BLUE-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .opblock.opblock-get .opblock-summary {
|
.swagger-ui .opblock.opblock-get .opblock-summary {
|
||||||
border-color: var(--INTERNAL-BOX-BLUE-color);
|
border-color: var(--INTERNAL-BOX-BLUE-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .opblock.opblock-get .tab-header .tab-item.active h4 span::after {
|
.swagger-ui .opblock.opblock-get .tab-header .tab-item.active h4 span::after {
|
||||||
background-color: var(--INTERNAL-BOX-BLUE-color);
|
background-color: var(--INTERNAL-BOX-BLUE-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .opblock.opblock-patch {
|
.swagger-ui .opblock.opblock-patch {
|
||||||
border-color: var(--INTERNAL-BOX-CYAN-color);
|
border-color: var(--INTERNAL-BOX-CYAN-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .opblock.opblock-patch .opblock-summary-method {
|
.swagger-ui .opblock.opblock-patch .opblock-summary-method {
|
||||||
background-color: var(--INTERNAL-BOX-CYAN-color);
|
background-color: var(--INTERNAL-BOX-CYAN-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .opblock.opblock-patch .opblock-summary {
|
.swagger-ui .opblock.opblock-patch .opblock-summary {
|
||||||
border-color: var(--INTERNAL-BOX-CYAN-color);
|
border-color: var(--INTERNAL-BOX-CYAN-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .opblock.opblock-patch .tab-header .tab-item.active h4 span::after {
|
.swagger-ui .opblock.opblock-patch .tab-header .tab-item.active h4 span::after {
|
||||||
background-color: var(--INTERNAL-BOX-CYAN-color);
|
background-color: var(--INTERNAL-BOX-CYAN-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .opblock.opblock-options {
|
.swagger-ui .opblock.opblock-options {
|
||||||
border-color: var(--INTERNAL-BOX-MAGENTA-color);
|
border-color: var(--INTERNAL-BOX-MAGENTA-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .opblock.opblock-options .opblock-summary-method {
|
.swagger-ui .opblock.opblock-options .opblock-summary-method {
|
||||||
background-color: var(--INTERNAL-BOX-MAGENTA-color);
|
background-color: var(--INTERNAL-BOX-MAGENTA-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .opblock.opblock-options .opblock-summary {
|
.swagger-ui .opblock.opblock-options .opblock-summary {
|
||||||
border-color: var(--INTERNAL-BOX-MAGENTA-color);
|
border-color: var(--INTERNAL-BOX-MAGENTA-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .opblock.opblock-options .tab-header .tab-item.active h4 span::after {
|
.swagger-ui .opblock.opblock-options .tab-header .tab-item.active h4 span::after {
|
||||||
background-color: var(--INTERNAL-BOX-MAGENTA-color);
|
background-color: var(--INTERNAL-BOX-MAGENTA-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .tab li {
|
.swagger-ui .tab li {
|
||||||
color: var(--INTERNAL-MAIN-TEXT-color);
|
color: var(--INTERNAL-MAIN-TEXT-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .opblock-description-wrapper,
|
.swagger-ui .opblock-description-wrapper,
|
||||||
.swagger-ui .opblock-external-docs-wrapper,
|
.swagger-ui .opblock-external-docs-wrapper,
|
||||||
.swagger-ui .opblock-title_normal {
|
.swagger-ui .opblock-title_normal {
|
||||||
color: var(--INTERNAL-MAIN-TEXT-color);
|
color: var(--INTERNAL-MAIN-TEXT-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .opblock-description-wrapper h4,
|
.swagger-ui .opblock-description-wrapper h4,
|
||||||
.swagger-ui .opblock-external-docs-wrapper h4,
|
.swagger-ui .opblock-external-docs-wrapper h4,
|
||||||
.swagger-ui .opblock-title_normal h4 {
|
.swagger-ui .opblock-title_normal h4 {
|
||||||
color: var(--INTERNAL-MAIN-TITLES-H4-TEXT-color);
|
color: var(--INTERNAL-MAIN-TITLES-H4-TEXT-color);
|
||||||
font-variation-settings: var(--INTERNAL-MAIN-TITLES-H4-font-variation-settings);
|
font-variation-settings: var(--INTERNAL-MAIN-TITLES-H4-font-variation-settings);
|
||||||
!font-weight: var(--INTERNAL-MAIN-TITLES-H4-font-weight);
|
!font-weight: var(--INTERNAL-MAIN-TITLES-H4-font-weight);
|
||||||
font-family: var(--INTERNAL-MAIN-TITLES-H4-font);
|
font-family: var(--INTERNAL-MAIN-TITLES-H4-font);
|
||||||
letter-spacing: var(--INTERNAL-MAIN-TITLES-H4-letter-spacing);
|
letter-spacing: var(--INTERNAL-MAIN-TITLES-H4-letter-spacing);
|
||||||
}
|
}
|
||||||
.swagger-ui .opblock-description-wrapper p,
|
.swagger-ui .opblock-description-wrapper p,
|
||||||
.swagger-ui .opblock-external-docs-wrapper p,
|
.swagger-ui .opblock-external-docs-wrapper p,
|
||||||
.swagger-ui .opblock-title_normal p {
|
.swagger-ui .opblock-title_normal p {
|
||||||
color: var(--INTERNAL-MAIN-TEXT-color);
|
color: var(--INTERNAL-MAIN-TEXT-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .responses-inner h4{
|
.swagger-ui .responses-inner h4 {
|
||||||
color: var(--INTERNAL-MAIN-TITLES-H4-TEXT-color);
|
color: var(--INTERNAL-MAIN-TITLES-H4-TEXT-color);
|
||||||
font-variation-settings: var(--INTERNAL-MAIN-TITLES-H4-font-variation-settings);
|
font-variation-settings: var(--INTERNAL-MAIN-TITLES-H4-font-variation-settings);
|
||||||
!font-weight: var(--INTERNAL-MAIN-TITLES-H4-font-weight);
|
!font-weight: var(--INTERNAL-MAIN-TITLES-H4-font-weight);
|
||||||
font-family: var(--INTERNAL-MAIN-TITLES-H4-font);
|
font-family: var(--INTERNAL-MAIN-TITLES-H4-font);
|
||||||
letter-spacing: var(--INTERNAL-MAIN-TITLES-H4-letter-spacing);
|
letter-spacing: var(--INTERNAL-MAIN-TITLES-H4-letter-spacing);
|
||||||
}
|
}
|
||||||
.swagger-ui .responses-inner h5 {
|
.swagger-ui .responses-inner h5 {
|
||||||
color: var(--INTERNAL-MAIN-TITLES-H5-TEXT-color);
|
color: var(--INTERNAL-MAIN-TITLES-H5-TEXT-color);
|
||||||
font-variation-settings: var(--INTERNAL-MAIN-TITLES-H5-font-variation-settings);
|
font-variation-settings: var(--INTERNAL-MAIN-TITLES-H5-font-variation-settings);
|
||||||
!font-weight: var(--INTERNAL-MAIN-TITLES-H5-font-weight);
|
!font-weight: var(--INTERNAL-MAIN-TITLES-H5-font-weight);
|
||||||
font-family: var(--INTERNAL-MAIN-TITLES-H5-font);
|
font-family: var(--INTERNAL-MAIN-TITLES-H5-font);
|
||||||
letter-spacing: var(--INTERNAL-MAIN-TITLES-H5-letter-spacing);
|
letter-spacing: var(--INTERNAL-MAIN-TITLES-H5-letter-spacing);
|
||||||
}
|
}
|
||||||
.swagger-ui .response-col_status {
|
.swagger-ui .response-col_status {
|
||||||
color: var(--INTERNAL-MAIN-TEXT-color);
|
color: var(--INTERNAL-MAIN-TEXT-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .response-col_links {
|
.swagger-ui .response-col_links {
|
||||||
color: var(--INTERNAL-MAIN-TEXT-color);
|
color: var(--INTERNAL-MAIN-TEXT-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .opblock-body pre.microlight {
|
.swagger-ui .opblock-body pre.microlight {
|
||||||
background-color: var(--INTERNAL-MAIN-BG-color);
|
background-color: var(--INTERNAL-MAIN-BG-color);
|
||||||
color: var(--INTERNAL-MAIN-TEXT-color);
|
color: var(--INTERNAL-MAIN-TEXT-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .scheme-container .schemes > label {
|
.swagger-ui .scheme-container .schemes > label {
|
||||||
color: var(--INTERNAL-MAIN-TEXT-color);
|
color: var(--INTERNAL-MAIN-TEXT-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .loading-container .loading::after {
|
.swagger-ui .loading-container .loading::after {
|
||||||
color: var(--INTERNAL-MAIN-TEXT-color);
|
color: var(--INTERNAL-MAIN-TEXT-color);
|
||||||
}
|
}
|
||||||
.swagger-ui section h3 {
|
.swagger-ui section h3 {
|
||||||
color: var(--INTERNAL-MAIN-TITLES-H3-TEXT-color);
|
color: var(--INTERNAL-MAIN-TITLES-H3-TEXT-color);
|
||||||
font-variation-settings: var(--INTERNAL-MAIN-TITLES-H3-font-variation-settings);
|
font-variation-settings: var(--INTERNAL-MAIN-TITLES-H3-font-variation-settings);
|
||||||
!font-weight: var(--INTERNAL-MAIN-TITLES-H3-font-weight);
|
!font-weight: var(--INTERNAL-MAIN-TITLES-H3-font-weight);
|
||||||
font-family: var(--INTERNAL-MAIN-TITLES-H3-font);
|
font-family: var(--INTERNAL-MAIN-TITLES-H3-font);
|
||||||
letter-spacing: var(--INTERNAL-MAIN-TITLES-H3-letter-spacing);
|
letter-spacing: var(--INTERNAL-MAIN-TITLES-H3-letter-spacing);
|
||||||
}
|
}
|
||||||
.swagger-ui .btn {
|
.swagger-ui .btn {
|
||||||
color: var(--INTERNAL-MAIN-TEXT-color);
|
color: var(--INTERNAL-MAIN-TEXT-color);
|
||||||
}
|
}
|
||||||
.swagger-ui select {
|
.swagger-ui select {
|
||||||
color: var(--INTERNAL-MAIN-TEXT-color);
|
color: var(--INTERNAL-MAIN-TEXT-color);
|
||||||
}
|
}
|
||||||
.swagger-ui label {
|
.swagger-ui label {
|
||||||
color: var(--INTERNAL-MAIN-TEXT-color);
|
color: var(--INTERNAL-MAIN-TEXT-color);
|
||||||
}
|
}
|
||||||
.swagger-ui textarea {
|
.swagger-ui textarea {
|
||||||
color: var(--INTERNAL-MAIN-TEXT-color);
|
color: var(--INTERNAL-MAIN-TEXT-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .checkbox p {
|
.swagger-ui .checkbox p {
|
||||||
color: var(--INTERNAL-MAIN-TEXT-color);
|
color: var(--INTERNAL-MAIN-TEXT-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .dialog-ux .modal-ux-content p {
|
.swagger-ui .dialog-ux .modal-ux-content p {
|
||||||
color: var(--INTERNAL-MAIN-TEXT-color);
|
color: var(--INTERNAL-MAIN-TEXT-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .dialog-ux .modal-ux-content h4 {
|
.swagger-ui .dialog-ux .modal-ux-content h4 {
|
||||||
color: var(--INTERNAL-MAIN-TITLES-H4-TEXT-color);
|
color: var(--INTERNAL-MAIN-TITLES-H4-TEXT-color);
|
||||||
font-variation-settings: var(--INTERNAL-MAIN-TITLES-H4-font-variation-settings);
|
font-variation-settings: var(--INTERNAL-MAIN-TITLES-H4-font-variation-settings);
|
||||||
!font-weight: var(--INTERNAL-MAIN-TITLES-H4-font-weight);
|
!font-weight: var(--INTERNAL-MAIN-TITLES-H4-font-weight);
|
||||||
font-family: var(--INTERNAL-MAIN-TITLES-H4-font);
|
font-family: var(--INTERNAL-MAIN-TITLES-H4-font);
|
||||||
letter-spacing: var(--INTERNAL-MAIN-TITLES-H4-letter-spacing);
|
letter-spacing: var(--INTERNAL-MAIN-TITLES-H4-letter-spacing);
|
||||||
}
|
}
|
||||||
.swagger-ui .dialog-ux .modal-ux-header h3 {
|
.swagger-ui .dialog-ux .modal-ux-header h3 {
|
||||||
color: var(--INTERNAL-MAIN-TITLES-H3-TEXT-color);
|
color: var(--INTERNAL-MAIN-TITLES-H3-TEXT-color);
|
||||||
font-variation-settings: var(--INTERNAL-MAIN-TITLES-H3-font-variation-settings);
|
font-variation-settings: var(--INTERNAL-MAIN-TITLES-H3-font-variation-settings);
|
||||||
!font-weight: var(--INTERNAL-MAIN-TITLES-H3-font-weight);
|
!font-weight: var(--INTERNAL-MAIN-TITLES-H3-font-weight);
|
||||||
font-family: var(--INTERNAL-MAIN-TITLES-H3-font);
|
font-family: var(--INTERNAL-MAIN-TITLES-H3-font);
|
||||||
letter-spacing: var(--INTERNAL-MAIN-TITLES-H3-letter-spacing);
|
letter-spacing: var(--INTERNAL-MAIN-TITLES-H3-letter-spacing);
|
||||||
}
|
}
|
||||||
.swagger-ui .model {
|
.swagger-ui .model {
|
||||||
color: var(--INTERNAL-MAIN-TEXT-color);
|
color: var(--INTERNAL-MAIN-TEXT-color);
|
||||||
}
|
}
|
||||||
.swagger-ui section.models h4 {
|
.swagger-ui section.models h4 {
|
||||||
color: var(--INTERNAL-MAIN-TITLES-H4-TEXT-color);
|
color: var(--INTERNAL-MAIN-TITLES-H4-TEXT-color);
|
||||||
font-variation-settings: var(--INTERNAL-MAIN-TITLES-H4-font-variation-settings);
|
font-variation-settings: var(--INTERNAL-MAIN-TITLES-H4-font-variation-settings);
|
||||||
!font-weight: var(--INTERNAL-MAIN-TITLES-H4-font-weight);
|
!font-weight: var(--INTERNAL-MAIN-TITLES-H4-font-weight);
|
||||||
font-family: var(--INTERNAL-MAIN-TITLES-H4-font);
|
font-family: var(--INTERNAL-MAIN-TITLES-H4-font);
|
||||||
letter-spacing: var(--INTERNAL-MAIN-TITLES-H4-letter-spacing);
|
letter-spacing: var(--INTERNAL-MAIN-TITLES-H4-letter-spacing);
|
||||||
}
|
}
|
||||||
.swagger-ui section.models h5 {
|
.swagger-ui section.models h5 {
|
||||||
color: var(--INTERNAL-MAIN-TITLES-H5-TEXT-color);
|
color: var(--INTERNAL-MAIN-TITLES-H5-TEXT-color);
|
||||||
font-variation-settings: var(--INTERNAL-MAIN-TITLES-H5-font-variation-settings);
|
font-variation-settings: var(--INTERNAL-MAIN-TITLES-H5-font-variation-settings);
|
||||||
!font-weight: var(--INTERNAL-MAIN-TITLES-H5-font-weight);
|
!font-weight: var(--INTERNAL-MAIN-TITLES-H5-font-weight);
|
||||||
font-family: var(--INTERNAL-MAIN-TITLES-H5-font);
|
font-family: var(--INTERNAL-MAIN-TITLES-H5-font);
|
||||||
letter-spacing: var(--INTERNAL-MAIN-TITLES-H5-letter-spacing);
|
letter-spacing: var(--INTERNAL-MAIN-TITLES-H5-letter-spacing);
|
||||||
}
|
}
|
||||||
.swagger-ui .model-title {
|
.swagger-ui .model-title {
|
||||||
color: var(--INTERNAL-MAIN-TITLES-TEXT-color);
|
color: var(--INTERNAL-MAIN-TITLES-TEXT-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .prop-format {
|
.swagger-ui .prop-format {
|
||||||
color: var(--INTERNAL-MAIN-TITLES-TEXT-color);
|
color: var(--INTERNAL-MAIN-TITLES-TEXT-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .servers > label {
|
.swagger-ui .servers > label {
|
||||||
color: var(--INTERNAL-MAIN-TEXT-color);
|
color: var(--INTERNAL-MAIN-TEXT-color);
|
||||||
}
|
}
|
||||||
.swagger-ui table.headers td {
|
.swagger-ui table.headers td {
|
||||||
color: var(--INTERNAL-MAIN-TEXT-color);
|
color: var(--INTERNAL-MAIN-TEXT-color);
|
||||||
}
|
}
|
||||||
.swagger-ui table thead tr td,
|
.swagger-ui table thead tr td,
|
||||||
.swagger-ui table thead tr th {
|
.swagger-ui table thead tr th {
|
||||||
color: var(--INTERNAL-MAIN-TEXT-color);
|
color: var(--INTERNAL-MAIN-TEXT-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .parameter__name {
|
.swagger-ui .parameter__name {
|
||||||
color: var(--INTERNAL-MAIN-TEXT-color);
|
color: var(--INTERNAL-MAIN-TEXT-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .info li,
|
.swagger-ui .info li,
|
||||||
.swagger-ui .info p,
|
.swagger-ui .info p,
|
||||||
.swagger-ui .info table {
|
.swagger-ui .info table {
|
||||||
color: var(--INTERNAL-MAIN-TEXT-color);
|
color: var(--INTERNAL-MAIN-TEXT-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .info h1 {
|
.swagger-ui .info h1 {
|
||||||
color: var(--INTERNAL-MAIN-TITLES-H1-TEXT-color);
|
color: var(--INTERNAL-MAIN-TITLES-H1-TEXT-color);
|
||||||
font-variation-settings: var(--INTERNAL-MAIN-TITLES-H1-font-variation-settings);
|
font-variation-settings: var(--INTERNAL-MAIN-TITLES-H1-font-variation-settings);
|
||||||
!font-weight: var(--INTERNAL-MAIN-TITLES-H1-font-weight);
|
!font-weight: var(--INTERNAL-MAIN-TITLES-H1-font-weight);
|
||||||
font-family: var(--INTERNAL-MAIN-TITLES-H1-font);
|
font-family: var(--INTERNAL-MAIN-TITLES-H1-font);
|
||||||
letter-spacing: var(--INTERNAL-MAIN-TITLES-H1-letter-spacing);
|
letter-spacing: var(--INTERNAL-MAIN-TITLES-H1-letter-spacing);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
.swagger-ui .info h2 {
|
.swagger-ui .info h2 {
|
||||||
color: var(--INTERNAL-MAIN-TITLES-H2-TEXT-color);
|
color: var(--INTERNAL-MAIN-TITLES-H2-TEXT-color);
|
||||||
font-variation-settings: var(--INTERNAL-MAIN-TITLES-H2-font-variation-settings);
|
font-variation-settings: var(--INTERNAL-MAIN-TITLES-H2-font-variation-settings);
|
||||||
!font-weight: var(--INTERNAL-MAIN-TITLES-H2-font-weight);
|
!font-weight: var(--INTERNAL-MAIN-TITLES-H2-font-weight);
|
||||||
font-family: var(--INTERNAL-MAIN-TITLES-H2-font);
|
font-family: var(--INTERNAL-MAIN-TITLES-H2-font);
|
||||||
letter-spacing: var(--INTERNAL-MAIN-TITLES-H2-letter-spacing);
|
letter-spacing: var(--INTERNAL-MAIN-TITLES-H2-letter-spacing);
|
||||||
}
|
}
|
||||||
.swagger-ui .info h3 {
|
.swagger-ui .info h3 {
|
||||||
color: var(--INTERNAL-MAIN-TITLES-H3-TEXT-color);
|
color: var(--INTERNAL-MAIN-TITLES-H3-TEXT-color);
|
||||||
font-variation-settings: var(--INTERNAL-MAIN-TITLES-H3-font-variation-settings);
|
font-variation-settings: var(--INTERNAL-MAIN-TITLES-H3-font-variation-settings);
|
||||||
!font-weight: var(--INTERNAL-MAIN-TITLES-H3-font-weight);
|
!font-weight: var(--INTERNAL-MAIN-TITLES-H3-font-weight);
|
||||||
font-family: var(--INTERNAL-MAIN-TITLES-H3-font);
|
font-family: var(--INTERNAL-MAIN-TITLES-H3-font);
|
||||||
letter-spacing: var(--INTERNAL-MAIN-TITLES-H3-letter-spacing);
|
letter-spacing: var(--INTERNAL-MAIN-TITLES-H3-letter-spacing);
|
||||||
}
|
}
|
||||||
.swagger-ui .info h4 {
|
.swagger-ui .info h4 {
|
||||||
color: var(--INTERNAL-MAIN-TITLES-H4-TEXT-color);
|
color: var(--INTERNAL-MAIN-TITLES-H4-TEXT-color);
|
||||||
font-variation-settings: var(--INTERNAL-MAIN-TITLES-H4-font-variation-settings);
|
font-variation-settings: var(--INTERNAL-MAIN-TITLES-H4-font-variation-settings);
|
||||||
!font-weight: var(--INTERNAL-MAIN-TITLES-H4-font-weight);
|
!font-weight: var(--INTERNAL-MAIN-TITLES-H4-font-weight);
|
||||||
font-family: var(--INTERNAL-MAIN-TITLES-H4-font);
|
font-family: var(--INTERNAL-MAIN-TITLES-H4-font);
|
||||||
letter-spacing: var(--INTERNAL-MAIN-TITLES-H4-letter-spacing);
|
letter-spacing: var(--INTERNAL-MAIN-TITLES-H4-letter-spacing);
|
||||||
}
|
}
|
||||||
.swagger-ui .info h5 {
|
.swagger-ui .info h5 {
|
||||||
color: var(--INTERNAL-MAIN-TITLES-H5-TEXT-color);
|
color: var(--INTERNAL-MAIN-TITLES-H5-TEXT-color);
|
||||||
font-variation-settings: var(--INTERNAL-MAIN-TITLES-H5-font-variation-settings);
|
font-variation-settings: var(--INTERNAL-MAIN-TITLES-H5-font-variation-settings);
|
||||||
!font-weight: var(--INTERNAL-MAIN-TITLES-H5-font-weight);
|
!font-weight: var(--INTERNAL-MAIN-TITLES-H5-font-weight);
|
||||||
font-family: var(--INTERNAL-MAIN-TITLES-H5-font);
|
font-family: var(--INTERNAL-MAIN-TITLES-H5-font);
|
||||||
letter-spacing: var(--INTERNAL-MAIN-TITLES-H5-letter-spacing);
|
letter-spacing: var(--INTERNAL-MAIN-TITLES-H5-letter-spacing);
|
||||||
}
|
}
|
||||||
.swagger-ui .info a {
|
.swagger-ui .info a {
|
||||||
color: var(--INTERNAL-MAIN-LINK-color);
|
color: var(--INTERNAL-MAIN-LINK-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .info a:hover {
|
.swagger-ui .info a:hover {
|
||||||
color: var(--INTERNAL-MAIN-LINK-HOVER-color);
|
color: var(--INTERNAL-MAIN-LINK-HOVER-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .info .base-url {
|
.swagger-ui .info .base-url {
|
||||||
color: var(--INTERNAL-MAIN-TEXT-color);
|
color: var(--INTERNAL-MAIN-TEXT-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .info .title {
|
.swagger-ui .info .title {
|
||||||
color: var(--INTERNAL-MAIN-TITLES-TEXT-color);
|
color: var(--INTERNAL-MAIN-TITLES-TEXT-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .auth-container .errors {
|
.swagger-ui .auth-container .errors {
|
||||||
color: var(--INTERNAL-MAIN-TEXT-color);
|
color: var(--INTERNAL-MAIN-TEXT-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .scopes h2 {
|
.swagger-ui .scopes h2 {
|
||||||
color: var(--INTERNAL-MAIN-TITLES-H2-TEXT-color);
|
color: var(--INTERNAL-MAIN-TITLES-H2-TEXT-color);
|
||||||
font-variation-settings: var(--INTERNAL-MAIN-TITLES-H2-font-variation-settings);
|
font-variation-settings: var(--INTERNAL-MAIN-TITLES-H2-font-variation-settings);
|
||||||
!font-weight: var(--INTERNAL-MAIN-TITLES-H2-font-weight);
|
!font-weight: var(--INTERNAL-MAIN-TITLES-H2-font-weight);
|
||||||
font-family: var(--INTERNAL-MAIN-TITLES-H2-font);
|
font-family: var(--INTERNAL-MAIN-TITLES-H2-font);
|
||||||
letter-spacing: var(--INTERNAL-MAIN-TITLES-H2-letter-spacing);
|
letter-spacing: var(--INTERNAL-MAIN-TITLES-H2-letter-spacing);
|
||||||
}
|
}
|
||||||
.swagger-ui .scopes h2 a {
|
.swagger-ui .scopes h2 a {
|
||||||
color: var(--INTERNAL-MAIN-LINK-color);
|
color: var(--INTERNAL-MAIN-LINK-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .errors-wrapper .errors h4 {
|
.swagger-ui .errors-wrapper .errors h4 {
|
||||||
color: var(--INTERNAL-MAIN-TITLES-H4-TEXT-color);
|
color: var(--INTERNAL-MAIN-TITLES-H4-TEXT-color);
|
||||||
font-variation-settings: var(--INTERNAL-MAIN-TITLES-H4-font-variation-settings);
|
font-variation-settings: var(--INTERNAL-MAIN-TITLES-H4-font-variation-settings);
|
||||||
!font-weight: var(--INTERNAL-MAIN-TITLES-H4-font-weight);
|
!font-weight: var(--INTERNAL-MAIN-TITLES-H4-font-weight);
|
||||||
font-family: var(--INTERNAL-MAIN-TITLES-H4-font);
|
font-family: var(--INTERNAL-MAIN-TITLES-H4-font);
|
||||||
letter-spacing: var(--INTERNAL-MAIN-TITLES-H4-letter-spacing);
|
letter-spacing: var(--INTERNAL-MAIN-TITLES-H4-letter-spacing);
|
||||||
}
|
}
|
||||||
.swagger-ui .errors-wrapper .errors small {
|
.swagger-ui .errors-wrapper .errors small {
|
||||||
color: var(--INTERNAL-MAIN-TITLES-TEXT-color);
|
color: var(--INTERNAL-MAIN-TITLES-TEXT-color);
|
||||||
}
|
}
|
||||||
.swagger-ui .errors-wrapper hgroup h4 {
|
.swagger-ui .errors-wrapper hgroup h4 {
|
||||||
color: var(--INTERNAL-MAIN-TITLES-H4-TEXT-color);
|
color: var(--INTERNAL-MAIN-TITLES-H4-TEXT-color);
|
||||||
font-variation-settings: var(--INTERNAL-MAIN-TITLES-H4-font-variation-settings);
|
font-variation-settings: var(--INTERNAL-MAIN-TITLES-H4-font-variation-settings);
|
||||||
!font-weight: var(--INTERNAL-MAIN-TITLES-H4-font-weight);
|
!font-weight: var(--INTERNAL-MAIN-TITLES-H4-font-weight);
|
||||||
font-family: var(--INTERNAL-MAIN-TITLES-H4-font);
|
font-family: var(--INTERNAL-MAIN-TITLES-H4-font);
|
||||||
letter-spacing: var(--INTERNAL-MAIN-TITLES-H4-letter-spacing);
|
letter-spacing: var(--INTERNAL-MAIN-TITLES-H4-letter-spacing);
|
||||||
}
|
}
|
||||||
body {
|
body {
|
||||||
background-color: var(--INTERNAL-MAIN-BG-color);
|
background-color: var(--INTERNAL-MAIN-BG-color);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,41 +1,41 @@
|
||||||
:root {
|
:root {
|
||||||
--MAIN-TEXT-color: rgba( 50, 50, 50, 1 ); /* Color of text by default */
|
--MAIN-TEXT-color: rgba(50, 50, 50, 1); /* Color of text by default */
|
||||||
--MAIN-TITLES-TEXT-color: rgba( 94, 94, 94, 1 ); /* Color of titles h2-h3-h4-h5-h6 */
|
--MAIN-TITLES-TEXT-color: rgba(94, 94, 94, 1); /* Color of titles h2-h3-h4-h5-h6 */
|
||||||
--MAIN-TITLES-H1-TEXT-color: rgba( 34, 34, 34, 1 ); /* text color of h1 titles */
|
--MAIN-TITLES-H1-TEXT-color: rgba(34, 34, 34, 1); /* text color of h1 titles */
|
||||||
--MAIN-LINK-color: rgba( 28, 144, 243, 1 ); /* Color of links */
|
--MAIN-LINK-color: rgba(28, 144, 243, 1); /* Color of links */
|
||||||
--MAIN-LINK-HOVER-color: rgba( 22, 122, 208, 1 ); /* Color of hovered links */
|
--MAIN-LINK-HOVER-color: rgba(22, 122, 208, 1); /* Color of hovered links */
|
||||||
--MAIN-BG-color: rgba( 255, 255, 255, 1 ); /* color of text by default */
|
--MAIN-BG-color: rgba(255, 255, 255, 1); /* color of text by default */
|
||||||
|
|
||||||
--CODE-theme: learn; /* name of the chroma stylesheet file */
|
--CODE-theme: learn; /* name of the chroma stylesheet file */
|
||||||
--CODE-BLOCK-color: rgba( 226, 228, 229, 1 ); /* fallback color for code text */
|
--CODE-BLOCK-color: rgba(226, 228, 229, 1); /* fallback color for code text */
|
||||||
--CODE-BLOCK-BG-color: rgba( 40, 42, 54, 1 ); /* fallback color for code background */
|
--CODE-BLOCK-BG-color: rgba(40, 42, 54, 1); /* fallback color for code background */
|
||||||
--CODE-BLOCK-BORDER-color: rgba( 40, 42, 54, 1 ); /* color of block code border */
|
--CODE-BLOCK-BORDER-color: rgba(40, 42, 54, 1); /* color of block code border */
|
||||||
--CODE-INLINE-color: rgba( 94, 94, 94, 1 ); /* color for inline code text */
|
--CODE-INLINE-color: rgba(94, 94, 94, 1); /* color for inline code text */
|
||||||
--CODE-INLINE-BG-color: rgba( 255, 250, 233, 1 ); /* color for inline code background */
|
--CODE-INLINE-BG-color: rgba(255, 250, 233, 1); /* color for inline code background */
|
||||||
--CODE-INLINE-BORDER-color: rgba( 248, 232, 200, 1 ); /* color of inline code border */
|
--CODE-INLINE-BORDER-color: rgba(248, 232, 200, 1); /* color of inline code border */
|
||||||
|
|
||||||
--MENU-HOME-LINK-color: rgba( 45, 54, 63, 1 ); /* Color of the home button text */
|
--MENU-HOME-LINK-color: rgba(45, 54, 63, 1); /* Color of the home button text */
|
||||||
--MENU-HOME-LINK-HOVER-color: rgba( 0, 0, 0, 1 ); /* Color of the hovered home button text */
|
--MENU-HOME-LINK-HOVER-color: rgba(0, 0, 0, 1); /* Color of the hovered home button text */
|
||||||
|
|
||||||
--MENU-HEADER-BG-color: rgba( 28, 144, 243, 1 ); /* Background color of menu header */
|
--MENU-HEADER-BG-color: rgba(28, 144, 243, 1); /* Background color of menu header */
|
||||||
--MENU-HEADER-BORDER-color: rgba( 51, 161, 255, 1 ); /*Color of menu header border */
|
--MENU-HEADER-BORDER-color: rgba(51, 161, 255, 1); /*Color of menu header border */
|
||||||
|
|
||||||
--MENU-SEARCH-color: rgba( 255, 255, 255, 1 ); /* Color of search field text */
|
--MENU-SEARCH-color: rgba(255, 255, 255, 1); /* Color of search field text */
|
||||||
--MENU-SEARCH-BG-color: rgba( 22, 122, 208, 1 ); /* Search field background color (by default borders + icons) */
|
--MENU-SEARCH-BG-color: rgba(22, 122, 208, 1); /* Search field background color (by default borders + icons) */
|
||||||
--MENU-SEARCH-BORDER-color: rgba( 51, 161, 255, 1 ); /* Override search field border color */
|
--MENU-SEARCH-BORDER-color: rgba(51, 161, 255, 1); /* Override search field border color */
|
||||||
|
|
||||||
--MENU-SECTIONS-ACTIVE-BG-color: rgba( 32, 39, 43, 1 ); /* Background color of the active section and its children */
|
--MENU-SECTIONS-ACTIVE-BG-color: rgba(32, 39, 43, 1); /* Background color of the active section and its children */
|
||||||
--MENU-SECTIONS-BG-color: rgba( 37, 44, 49, 1 ); /* Background color of other sections */
|
--MENU-SECTIONS-BG-color: rgba(37, 44, 49, 1); /* Background color of other sections */
|
||||||
--MENU-SECTIONS-LINK-color: rgba( 204, 204, 204, 1 ); /* Color of links in menu */
|
--MENU-SECTIONS-LINK-color: rgba(204, 204, 204, 1); /* Color of links in menu */
|
||||||
--MENU-SECTIONS-LINK-HOVER-color: rgba( 230, 230, 230, 1 ); /* Color of links in menu, when hovered */
|
--MENU-SECTIONS-LINK-HOVER-color: rgba(230, 230, 230, 1); /* Color of links in menu, when hovered */
|
||||||
--MENU-SECTION-ACTIVE-CATEGORY-color: rgba( 119, 119, 119, 1 ); /* Color of active category text */
|
--MENU-SECTION-ACTIVE-CATEGORY-color: rgba(119, 119, 119, 1); /* Color of active category text */
|
||||||
--MENU-SECTION-ACTIVE-CATEGORY-BG-color: rgba( 255, 255, 255, 1 ); /* Color of background for the active category (only) */
|
--MENU-SECTION-ACTIVE-CATEGORY-BG-color: rgba(255, 255, 255, 1); /* Color of background for the active category (only) */
|
||||||
|
|
||||||
--MENU-VISITED-color: rgba( 28, 144, 243, 1 ); /* Color of 'page visited' icons in menu */
|
--MENU-VISITED-color: rgba(28, 144, 243, 1); /* Color of 'page visited' icons in menu */
|
||||||
--MENU-SECTION-SEPARATOR-color: rgba( 32, 39, 43, 1 ); /* Color of <hr> separator in menu */
|
--MENU-SECTION-SEPARATOR-color: rgba(32, 39, 43, 1); /* Color of <hr> separator in menu */
|
||||||
|
|
||||||
/* base styling for boxes */
|
/* base styling for boxes */
|
||||||
--BOX-CAPTION-color: rgba( 255, 255, 255, 1 ); /* color of the title text */
|
--BOX-CAPTION-color: rgba(255, 255, 255, 1); /* color of the title text */
|
||||||
--BOX-BG-color: rgba( 255, 255, 255, .833 ); /* color of the content background */
|
--BOX-BG-color: rgba(255, 255, 255, 0.833); /* color of the content background */
|
||||||
--BOX-TEXT-color: rgba( 16, 16, 16, 1 ); /* fixed color of the content text */
|
--BOX-TEXT-color: rgba(16, 16, 16, 1); /* fixed color of the content text */
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,41 +1,41 @@
|
||||||
:root {
|
:root {
|
||||||
--MAIN-TEXT-color: rgba( 50, 50, 50, 1 ); /* Color of text by default */
|
--MAIN-TEXT-color: rgba(50, 50, 50, 1); /* Color of text by default */
|
||||||
--MAIN-TITLES-TEXT-color: rgba( 94, 94, 94, 1 ); /* Color of titles h2-h3-h4-h5-h6 */
|
--MAIN-TITLES-TEXT-color: rgba(94, 94, 94, 1); /* Color of titles h2-h3-h4-h5-h6 */
|
||||||
--MAIN-TITLES-H1-TEXT-color: rgba( 34, 34, 34, 1 ); /* text color of h1 titles */
|
--MAIN-TITLES-H1-TEXT-color: rgba(34, 34, 34, 1); /* text color of h1 titles */
|
||||||
--MAIN-LINK-color: rgba( 89, 154, 62, 1 ); /* Color of links */
|
--MAIN-LINK-color: rgba(89, 154, 62, 1); /* Color of links */
|
||||||
--MAIN-LINK-HOVER-color: rgba( 63, 109, 44, 1 ); /* Color of hovered links */
|
--MAIN-LINK-HOVER-color: rgba(63, 109, 44, 1); /* Color of hovered links */
|
||||||
--MAIN-BG-color: rgba( 255, 255, 255, 1 ); /* color of text by default */
|
--MAIN-BG-color: rgba(255, 255, 255, 1); /* color of text by default */
|
||||||
|
|
||||||
--CODE-theme: learn; /* name of the chroma stylesheet file */
|
--CODE-theme: learn; /* name of the chroma stylesheet file */
|
||||||
--CODE-BLOCK-color: rgba( 226, 228, 229, 1 ); /* fallback color for code text */
|
--CODE-BLOCK-color: rgba(226, 228, 229, 1); /* fallback color for code text */
|
||||||
--CODE-BLOCK-BG-color: rgba( 40, 42, 54, 1 ); /* fallback color for code background */
|
--CODE-BLOCK-BG-color: rgba(40, 42, 54, 1); /* fallback color for code background */
|
||||||
--CODE-BLOCK-BORDER-color: rgba( 40, 42, 54, 1 ); /* color of block code border */
|
--CODE-BLOCK-BORDER-color: rgba(40, 42, 54, 1); /* color of block code border */
|
||||||
--CODE-INLINE-color: rgba( 94, 94, 94, 1 ); /* color for inline code text */
|
--CODE-INLINE-color: rgba(94, 94, 94, 1); /* color for inline code text */
|
||||||
--CODE-INLINE-BG-color: rgba( 255, 250, 233, 1 ); /* color for inline code background */
|
--CODE-INLINE-BG-color: rgba(255, 250, 233, 1); /* color for inline code background */
|
||||||
--CODE-INLINE-BORDER-color: rgba( 248, 232, 200, 1 ); /* color of inline code border */
|
--CODE-INLINE-BORDER-color: rgba(248, 232, 200, 1); /* color of inline code border */
|
||||||
|
|
||||||
--MENU-HOME-LINK-color: rgba( 46, 59, 46, 1 ); /* Color of the home button text */
|
--MENU-HOME-LINK-color: rgba(46, 59, 46, 1); /* Color of the home button text */
|
||||||
--MENU-HOME-LINK-HOVER-color: rgba( 0, 0, 0, 1 ); /* Color of the hovered home button text */
|
--MENU-HOME-LINK-HOVER-color: rgba(0, 0, 0, 1); /* Color of the hovered home button text */
|
||||||
|
|
||||||
--MENU-HEADER-BG-color: rgba( 116, 181, 89, 1 ); /* Background color of menu header */
|
--MENU-HEADER-BG-color: rgba(116, 181, 89, 1); /* Background color of menu header */
|
||||||
--MENU-HEADER-BORDER-color: rgba( 156, 212, 132, 1 ); /*Color of menu header border */
|
--MENU-HEADER-BORDER-color: rgba(156, 212, 132, 1); /*Color of menu header border */
|
||||||
|
|
||||||
--MENU-SEARCH-color: rgba( 255, 255, 255, 1 ); /* Color of search field text */
|
--MENU-SEARCH-color: rgba(255, 255, 255, 1); /* Color of search field text */
|
||||||
--MENU-SEARCH-BG-color: rgba( 89, 154, 62, 1 ); /* Search field background color (by default borders + icons) */
|
--MENU-SEARCH-BG-color: rgba(89, 154, 62, 1); /* Search field background color (by default borders + icons) */
|
||||||
--MENU-SEARCH-BORDER-color: rgba( 132, 199, 103, 1 ); /* Override search field border color */
|
--MENU-SEARCH-BORDER-color: rgba(132, 199, 103, 1); /* Override search field border color */
|
||||||
|
|
||||||
--MENU-SECTIONS-ACTIVE-BG-color: rgba( 27, 33, 28, 1 ); /* Background color of the active section and its children */
|
--MENU-SECTIONS-ACTIVE-BG-color: rgba(27, 33, 28, 1); /* Background color of the active section and its children */
|
||||||
--MENU-SECTIONS-BG-color: rgba( 34, 39, 35, 1 ); /* Background color of other sections */
|
--MENU-SECTIONS-BG-color: rgba(34, 39, 35, 1); /* Background color of other sections */
|
||||||
--MENU-SECTIONS-LINK-color: rgba( 204, 204, 204, 1 ); /* Color of links in menu */
|
--MENU-SECTIONS-LINK-color: rgba(204, 204, 204, 1); /* Color of links in menu */
|
||||||
--MENU-SECTIONS-LINK-HOVER-color: rgba( 230, 230, 230, 1 ); /* Color of links in menu, when hovered */
|
--MENU-SECTIONS-LINK-HOVER-color: rgba(230, 230, 230, 1); /* Color of links in menu, when hovered */
|
||||||
--MENU-SECTION-ACTIVE-CATEGORY-color: rgba( 119, 119, 119, 1 ); /* Color of active category text */
|
--MENU-SECTION-ACTIVE-CATEGORY-color: rgba(119, 119, 119, 1); /* Color of active category text */
|
||||||
--MENU-SECTION-ACTIVE-CATEGORY-BG-color: rgba( 255, 255, 255, 1 ); /* Color of background for the active category (only) */
|
--MENU-SECTION-ACTIVE-CATEGORY-BG-color: rgba(255, 255, 255, 1); /* Color of background for the active category (only) */
|
||||||
|
|
||||||
--MENU-VISITED-color: rgba( 89, 154, 62, 1 ); /* Color of 'page visited' icons in menu */
|
--MENU-VISITED-color: rgba(89, 154, 62, 1); /* Color of 'page visited' icons in menu */
|
||||||
--MENU-SECTION-SEPARATOR-color: rgba( 24, 33, 28, 1 ); /* Color of <hr> separator in menu */
|
--MENU-SECTION-SEPARATOR-color: rgba(24, 33, 28, 1); /* Color of <hr> separator in menu */
|
||||||
|
|
||||||
/* base styling for boxes */
|
/* base styling for boxes */
|
||||||
--BOX-CAPTION-color: rgba( 255, 255, 255, 1 ); /* color of the title text */
|
--BOX-CAPTION-color: rgba(255, 255, 255, 1); /* color of the title text */
|
||||||
--BOX-BG-color: rgba( 255, 255, 255, .833 ); /* color of the content background */
|
--BOX-BG-color: rgba(255, 255, 255, 0.833); /* color of the content background */
|
||||||
--BOX-TEXT-color: rgba( 16, 16, 16, 1 ); /* fixed color of the content text */
|
--BOX-TEXT-color: rgba(16, 16, 16, 1); /* fixed color of the content text */
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,49 +1,49 @@
|
||||||
:root {
|
:root {
|
||||||
--MAIN-TEXT-color: rgba( 50, 50, 50, 1 ); /* Color of text by default */
|
--MAIN-TEXT-color: rgba(50, 50, 50, 1); /* Color of text by default */
|
||||||
--MAIN-TITLES-TEXT-color: rgba( 94, 94, 94, 1 ); /* Color of titles h2-h3-h4-h5-h6 */
|
--MAIN-TITLES-TEXT-color: rgba(94, 94, 94, 1); /* Color of titles h2-h3-h4-h5-h6 */
|
||||||
--MAIN-TITLES-H1-TEXT-color: rgba( 34, 34, 34, 1 ); /* text color of h1 titles */
|
--MAIN-TITLES-H1-TEXT-color: rgba(34, 34, 34, 1); /* text color of h1 titles */
|
||||||
--MAIN-LINK-color: rgba( 0, 189, 243, 1 ); /* Color of links */
|
--MAIN-LINK-color: rgba(0, 189, 243, 1); /* Color of links */
|
||||||
--MAIN-LINK-HOVER-color: rgba( 0, 130, 167, 1 ); /* Color of hovered links */
|
--MAIN-LINK-HOVER-color: rgba(0, 130, 167, 1); /* Color of hovered links */
|
||||||
--MAIN-BG-color: rgba( 255, 255, 255, 1 ); /* color of text by default */
|
--MAIN-BG-color: rgba(255, 255, 255, 1); /* color of text by default */
|
||||||
|
|
||||||
--CODE-theme: learn; /* name of the chroma stylesheet file */
|
--CODE-theme: learn; /* name of the chroma stylesheet file */
|
||||||
--CODE-BLOCK-color: rgba( 226, 228, 229, 1 ); /* fallback color for code text */
|
--CODE-BLOCK-color: rgba(226, 228, 229, 1); /* fallback color for code text */
|
||||||
--CODE-BLOCK-BG-color: rgba( 40, 42, 54, 1 ); /* fallback color for code background */
|
--CODE-BLOCK-BG-color: rgba(40, 42, 54, 1); /* fallback color for code background */
|
||||||
--CODE-BLOCK-BORDER-color: rgba( 40, 42, 54, 1 ); /* color of block code border */
|
--CODE-BLOCK-BORDER-color: rgba(40, 42, 54, 1); /* color of block code border */
|
||||||
--CODE-INLINE-color: rgba( 94, 94, 94, 1 ); /* color for inline code text */
|
--CODE-INLINE-color: rgba(94, 94, 94, 1); /* color for inline code text */
|
||||||
--CODE-INLINE-BG-color: rgba( 255, 247, 221, 1 ); /* color for inline code background */
|
--CODE-INLINE-BG-color: rgba(255, 247, 221, 1); /* color for inline code background */
|
||||||
--CODE-INLINE-BORDER-color: rgba( 251, 240, 203, 1 ); /* color of inline code border */
|
--CODE-INLINE-BORDER-color: rgba(251, 240, 203, 1); /* color of inline code border */
|
||||||
|
|
||||||
--MENU-HOME-LINK-color: rgba( 224, 224, 224, 1 ); /* Color of the home button text */
|
--MENU-HOME-LINK-color: rgba(224, 224, 224, 1); /* Color of the home button text */
|
||||||
--MENU-HOME-LINK-HOVER-color: rgba( 240, 240, 240, 1 ); /* Color of the hovered home button text */
|
--MENU-HOME-LINK-HOVER-color: rgba(240, 240, 240, 1); /* Color of the hovered home button text */
|
||||||
|
|
||||||
--MENU-HEADER-BG-color: rgba( 132, 81, 161, 1 ); /* Background color of menu header */
|
--MENU-HEADER-BG-color: rgba(132, 81, 161, 1); /* Background color of menu header */
|
||||||
--MENU-HEADER-BORDER-color: rgba( 156, 111, 182, 1 ); /*Color of menu header border */
|
--MENU-HEADER-BORDER-color: rgba(156, 111, 182, 1); /*Color of menu header border */
|
||||||
|
|
||||||
--MENU-SEARCH-color: rgba( 255, 255, 255, 1 ); /* Color of search field text */
|
--MENU-SEARCH-color: rgba(255, 255, 255, 1); /* Color of search field text */
|
||||||
--MENU-SEARCH-BG-color: rgba( 118, 72, 144, 1 ); /* Search field background color (by default borders + icons) */
|
--MENU-SEARCH-BG-color: rgba(118, 72, 144, 1); /* Search field background color (by default borders + icons) */
|
||||||
--MENU-SEARCH-BORDER-color: rgba( 145, 94, 174, 1 ); /* Override search field border color */
|
--MENU-SEARCH-BORDER-color: rgba(145, 94, 174, 1); /* Override search field border color */
|
||||||
|
|
||||||
--MENU-SECTIONS-ACTIVE-BG-color: rgba( 37, 31, 41, 1 ); /* Background color of the active section and its children */
|
--MENU-SECTIONS-ACTIVE-BG-color: rgba(37, 31, 41, 1); /* Background color of the active section and its children */
|
||||||
--MENU-SECTIONS-BG-color: rgba( 50, 42, 56, 1 ); /* Background color of other sections */
|
--MENU-SECTIONS-BG-color: rgba(50, 42, 56, 1); /* Background color of other sections */
|
||||||
--MENU-SECTIONS-LINK-color: rgba( 204, 204, 204, 1 ); /* Color of links in menu */
|
--MENU-SECTIONS-LINK-color: rgba(204, 204, 204, 1); /* Color of links in menu */
|
||||||
--MENU-SECTIONS-LINK-HOVER-color: rgba( 230, 230, 230, 1 ); /* Color of links in menu, when hovered */
|
--MENU-SECTIONS-LINK-HOVER-color: rgba(230, 230, 230, 1); /* Color of links in menu, when hovered */
|
||||||
--MENU-SECTION-ACTIVE-CATEGORY-color: rgba( 119, 119, 119, 1 ); /* Color of active category text */
|
--MENU-SECTION-ACTIVE-CATEGORY-color: rgba(119, 119, 119, 1); /* Color of active category text */
|
||||||
--MENU-SECTION-ACTIVE-CATEGORY-BG-color: rgba( 255, 255, 255, 1 ); /* Color of background for the active category (only) */
|
--MENU-SECTION-ACTIVE-CATEGORY-BG-color: rgba(255, 255, 255, 1); /* Color of background for the active category (only) */
|
||||||
|
|
||||||
--MENU-VISITED-color: rgba( 0, 189, 243, 1 ); /* Color of 'page visited' icons in menu */
|
--MENU-VISITED-color: rgba(0, 189, 243, 1); /* Color of 'page visited' icons in menu */
|
||||||
--MENU-SECTION-SEPARATOR-color: rgba( 42, 35, 47, 1 ); /* Color of <hr> separator in menu */
|
--MENU-SECTION-SEPARATOR-color: rgba(42, 35, 47, 1); /* Color of <hr> separator in menu */
|
||||||
|
|
||||||
/* base styling for boxes */
|
/* base styling for boxes */
|
||||||
--BOX-CAPTION-color: rgba( 255, 255, 255, 1 ); /* color of the title text */
|
--BOX-CAPTION-color: rgba(255, 255, 255, 1); /* color of the title text */
|
||||||
--BOX-BG-color: rgba( 255, 255, 255, .833 ); /* color of the content background */
|
--BOX-BG-color: rgba(255, 255, 255, 0.833); /* color of the content background */
|
||||||
--BOX-TEXT-color: rgba( 16, 16, 16, 1 ); /* fixed color of the content text */
|
--BOX-TEXT-color: rgba(16, 16, 16, 1); /* fixed color of the content text */
|
||||||
}
|
}
|
||||||
|
|
||||||
body a#R-logo,
|
body a#R-logo,
|
||||||
body a#R-logo:hover,
|
body a#R-logo:hover,
|
||||||
body #R-logo svg,
|
body #R-logo svg,
|
||||||
body #R-logo svg * {
|
body #R-logo svg * {
|
||||||
color: var(--INTERNAL-MENU-SEARCH-color);
|
color: var(--INTERNAL-MENU-SEARCH-color);
|
||||||
fill: var(--INTERNAL-MENU-SEARCH-color) !important;
|
fill: var(--INTERNAL-MENU-SEARCH-color) !important;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,150 +1,151 @@
|
||||||
:root {
|
:root {
|
||||||
--PRIMARY-color: rgba( 243, 0, 178, 1 ); /* brand primary color */
|
--PRIMARY-color: rgba(243, 0, 178, 1); /* brand primary color */
|
||||||
--SECONDARY-color: rgb( 50, 189, 243, 1 ); /* brand secondary color */
|
--SECONDARY-color: rgb(50, 189, 243, 1); /* brand secondary color */
|
||||||
--ACCENT-color: rgba( 255, 255, 0, 1 ); /* brand accent color, used for search highlights */
|
--ACCENT-color: rgba(255, 255, 0, 1); /* brand accent color, used for search highlights */
|
||||||
|
|
||||||
--MAIN-TEXT-color: rgba( 224, 224, 224, 1 ); /* text color of content and h1 titles */
|
--MAIN-TEXT-color: rgba(224, 224, 224, 1); /* text color of content and h1 titles */
|
||||||
--MAIN-LINK-HOVER-color: rgb( 80, 215, 255, 1 ); /* hovered link color of content */
|
--MAIN-LINK-HOVER-color: rgb(80, 215, 255, 1); /* hovered link color of content */
|
||||||
--MAIN-BG-color: rgba( 16, 16, 16, 1 ); /* background color of content */
|
--MAIN-BG-color: rgba(16, 16, 16, 1); /* background color of content */
|
||||||
|
|
||||||
/* optional overwrites for specific headers */
|
/* optional overwrites for specific headers */
|
||||||
--MAIN-TITLES-TEXT-color: rgba( 243, 0, 178, 1 ); /* text color of h2-h6 titles and transparent box titles */
|
--MAIN-TITLES-TEXT-color: rgba(243, 0, 178, 1); /* text color of h2-h6 titles and transparent box titles */
|
||||||
--MAIN-TITLES-H3-TEXT-color: rgba( 255, 255, 0, 1 ); /* text color of h3-h6 titles */
|
--MAIN-TITLES-H3-TEXT-color: rgba(255, 255, 0, 1); /* text color of h3-h6 titles */
|
||||||
--MAIN-TITLES-H4-TEXT-color: rgba( 154, 111, 255, 1 ); /* text color of h4-h6 titles */
|
--MAIN-TITLES-H4-TEXT-color: rgba(154, 111, 255, 1); /* text color of h4-h6 titles */
|
||||||
|
|
||||||
--CODE-theme: neon; /* name of the chroma stylesheet file */
|
--CODE-theme: neon; /* name of the chroma stylesheet file */
|
||||||
--CODE-BLOCK-color: rgba( 248, 248, 242, 1 ); /* fallback text color of block code; should be adjusted to your selected chroma style */
|
--CODE-BLOCK-color: rgba(248, 248, 242, 1); /* fallback text color of block code; should be adjusted to your selected chroma style */
|
||||||
--CODE-BLOCK-BG-color: rgba( 0, 0, 0, 1 ); /* fallback background color of block code; should be adjusted to your selected chroma style */
|
--CODE-BLOCK-BG-color: rgba(0, 0, 0, 1); /* fallback background color of block code; should be adjusted to your selected chroma style */
|
||||||
--CODE-INLINE-color: rgba( 130, 229, 80, 1 ); /* text color of inline code */
|
--CODE-INLINE-color: rgba(130, 229, 80, 1); /* text color of inline code */
|
||||||
--CODE-INLINE-BG-color: rgba( 40, 42, 54, 1 ); /* background color of inline code */
|
--CODE-INLINE-BG-color: rgba(40, 42, 54, 1); /* background color of inline code */
|
||||||
--CODE-INLINE-BORDER-color: rgba( 70, 70, 70, 1 ); /* border color of inline code */
|
--CODE-INLINE-BORDER-color: rgba(70, 70, 70, 1); /* border color of inline code */
|
||||||
|
|
||||||
--BROWSER-theme: dark; /* name of the theme for browser scrollbars of the main section */
|
--BROWSER-theme: dark; /* name of the theme for browser scrollbars of the main section */
|
||||||
--MERMAID-theme: dark; /* name of the default Mermaid theme for this variant, can be overridden in hugo.toml */
|
--MERMAID-theme: dark; /* name of the default Mermaid theme for this variant, can be overridden in hugo.toml */
|
||||||
--OPENAPI-theme: dark; /* name of the default OpenAPI theme for this variant, can be overridden in hugo.toml */
|
--OPENAPI-theme: dark; /* name of the default OpenAPI theme for this variant, can be overridden in hugo.toml */
|
||||||
--OPENAPI-CODE-theme: tomorrow-night; /* name of the default OpenAPI code theme for this variant, can be overridden in hugo.toml */
|
--OPENAPI-CODE-theme: tomorrow-night; /* name of the default OpenAPI code theme for this variant, can be overridden in hugo.toml */
|
||||||
|
|
||||||
--MENU-HEADER-BG-color: rgba( 0, 0, 0, 0 ); /* background color of menu header */
|
--MENU-HEADER-BG-color: rgba(0, 0, 0, 0); /* background color of menu header */
|
||||||
|
|
||||||
--MENU-HOME-LINK-color: rgba( 255, 255, 255, 1 ); /* home button color if configured */
|
--MENU-HOME-LINK-color: rgba(255, 255, 255, 1); /* home button color if configured */
|
||||||
--MENU-HOME-LINK-HOVER-color: rgba( 208, 208, 208, 1 ); /* hovered home button color if configured */
|
--MENU-HOME-LINK-HOVER-color: rgba(208, 208, 208, 1); /* hovered home button color if configured */
|
||||||
|
|
||||||
--MENU-SEARCH-color: rgba( 248, 248, 248, 1 ); /* text and icon color of search box */
|
--MENU-SEARCH-color: rgba(248, 248, 248, 1); /* text and icon color of search box */
|
||||||
--MENU-SEARCH-BG-color: rgba( 16, 16, 16, .6 ); /* background color of search box */
|
--MENU-SEARCH-BG-color: rgba(16, 16, 16, 0.6); /* background color of search box */
|
||||||
--MENU-SEARCH-BORDER-color: rgba( 232, 232, 232, 1 ); /* border color of search box */
|
--MENU-SEARCH-BORDER-color: rgba(232, 232, 232, 1); /* border color of search box */
|
||||||
|
|
||||||
--MENU-SECTIONS-BG-color: linear-gradient( 165deg, rgba( 243, 0, 178, .825 ) 0%, rgba( 28, 144, 243, .7 ) 65%, rgba( 0, 227, 211, .7 ) 100% ); /* background of the menu; this is NOT just a color value but can be a complete CSS background definition including gradients, etc. */
|
--MENU-SECTIONS-BG-color: linear-gradient(165deg, rgba(243, 0, 178, 0.825) 0%, rgba(28, 144, 243, 0.7) 65%, rgba(0, 227, 211, 0.7) 100%); /* background of the menu; this is NOT just a color value but can be a complete CSS background definition including gradients, etc. */
|
||||||
--MENU-SECTIONS-ACTIVE-BG-color: rgba( 0, 0, 0, .166 ); /* background color of the active menu section */
|
--MENU-SECTIONS-ACTIVE-BG-color: rgba(0, 0, 0, 0.166); /* background color of the active menu section */
|
||||||
--MENU-SECTIONS-LINK-color: rgba( 255, 255, 255, 1 ); /* link color of menu topics */
|
--MENU-SECTIONS-LINK-color: rgba(255, 255, 255, 1); /* link color of menu topics */
|
||||||
--MENU-SECTIONS-LINK-HOVER-color: rgba( 208, 208, 208, 1 ); /* hovered link color of menu topics */
|
--MENU-SECTIONS-LINK-HOVER-color: rgba(208, 208, 208, 1); /* hovered link color of menu topics */
|
||||||
--MENU-SECTION-ACTIVE-CATEGORY-color: rgba( 86, 255, 232, 1 ); /* text color of the displayed menu topic */
|
--MENU-SECTION-ACTIVE-CATEGORY-color: rgba(86, 255, 232, 1); /* text color of the displayed menu topic */
|
||||||
--MENU-SECTION-SEPARATOR-color: rgba( 186, 186, 186, 1 ); /* separator color between menu sections and menu footer */
|
--MENU-SECTION-SEPARATOR-color: rgba(186, 186, 186, 1); /* separator color between menu sections and menu footer */
|
||||||
|
|
||||||
--MENU-VISITED-color: rgba( 51, 161, 255, 1 ); /* icon color of visited menu topics if configured */
|
--MENU-VISITED-color: rgba(51, 161, 255, 1); /* icon color of visited menu topics if configured */
|
||||||
|
|
||||||
/* base styling for boxes */
|
/* base styling for boxes */
|
||||||
--BOX-CAPTION-color: rgba( 240, 240, 240, 1 ); /* text color of colored box titles */
|
--BOX-CAPTION-color: rgba(240, 240, 240, 1); /* text color of colored box titles */
|
||||||
--BOX-BG-color: rgba( 8, 8, 8, 1 ); /* background color of colored boxes */
|
--BOX-BG-color: rgba(8, 8, 8, 1); /* background color of colored boxes */
|
||||||
--BOX-TEXT-color: initial; /* text color of colored box content */
|
--BOX-TEXT-color: initial; /* text color of colored box content */
|
||||||
|
|
||||||
/* optional base colors for colored boxes as in badges, buttons, notice, etc. shortcode */
|
/* optional base colors for colored boxes as in badges, buttons, notice, etc. shortcode */
|
||||||
--BOX-BLUE-color: rgba( 48, 117, 229, 1 ); /* background color of blue boxes */
|
--BOX-BLUE-color: rgba(48, 117, 229, 1); /* background color of blue boxes */
|
||||||
--BOX-BLUE-TEXT-color: var( --BOX-BLUE-color ); /* text color of blue boxes */
|
--BOX-BLUE-TEXT-color: var(--BOX-BLUE-color); /* text color of blue boxes */
|
||||||
--BOX-CYAN-color: rgba( 30, 190, 190, 1 ); /* background color of cyan boxes */
|
--BOX-CYAN-color: rgba(30, 190, 190, 1); /* background color of cyan boxes */
|
||||||
--BOX-CYAN-TEXT-color: var( --BOX-CYAN-color ); /* text color of cyan boxes */
|
--BOX-CYAN-TEXT-color: var(--BOX-CYAN-color); /* text color of cyan boxes */
|
||||||
--BOX-GREEN-color: rgba( 42, 178, 24, 1 ); /* background color of green boxes */
|
--BOX-GREEN-color: rgba(42, 178, 24, 1); /* background color of green boxes */
|
||||||
--BOX-GREEN-TEXT-color: var( --BOX-GREEN-color ); /* text color of green boxes */
|
--BOX-GREEN-TEXT-color: var(--BOX-GREEN-color); /* text color of green boxes */
|
||||||
--BOX-GREY-color: rgba( 128, 128, 128, 1 ); /* background color of grey boxes */
|
--BOX-GREY-color: rgba(128, 128, 128, 1); /* background color of grey boxes */
|
||||||
--BOX-GREY-TEXT-color: var( --BOX-GREY-color ); /* text color of grey boxes */
|
--BOX-GREY-TEXT-color: var(--BOX-GREY-color); /* text color of grey boxes */
|
||||||
--BOX-MAGENTA-color: rgba( 237, 33, 220, 1 ); /* background color of magenta boxes */
|
--BOX-MAGENTA-color: rgba(237, 33, 220, 1); /* background color of magenta boxes */
|
||||||
--BOX-MAGENTA-TEXT-color: var( --BOX-MAGENTA-color ); /* text color of magenta boxes */
|
--BOX-MAGENTA-TEXT-color: var(--BOX-MAGENTA-color); /* text color of magenta boxes */
|
||||||
--BOX-ORANGE-color: rgba( 237, 153, 9, 1 ); /* background color of orange boxes */
|
--BOX-ORANGE-color: rgba(237, 153, 9, 1); /* background color of orange boxes */
|
||||||
--BOX-ORANGE-TEXT-color: var( --BOX-ORANGE-color ); /* text color of orange boxes */
|
--BOX-ORANGE-TEXT-color: var(--BOX-ORANGE-color); /* text color of orange boxes */
|
||||||
--BOX-RED-color: rgba( 224, 62, 62, 1 ); /* background color of red boxes */
|
--BOX-RED-color: rgba(224, 62, 62, 1); /* background color of red boxes */
|
||||||
--BOX-RED-TEXT-color: var( --BOX-RED-color ); /* text color of red boxes */
|
--BOX-RED-TEXT-color: var(--BOX-RED-color); /* text color of red boxes */
|
||||||
}
|
}
|
||||||
|
|
||||||
body a#R-logo,
|
body a#R-logo,
|
||||||
body a#R-logo:hover,
|
body a#R-logo:hover,
|
||||||
body #R-logo svg,
|
body #R-logo svg,
|
||||||
body #R-logo svg * {
|
body #R-logo svg * {
|
||||||
color: var(--INTERNAL-MENU-SEARCH-BORDER-color);
|
color: var(--INTERNAL-MENU-SEARCH-BORDER-color);
|
||||||
fill: var(--INTERNAL-MENU-SEARCH-BORDER-color) !important;
|
fill: var(--INTERNAL-MENU-SEARCH-BORDER-color) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
body a#R-logo{
|
body a#R-logo {
|
||||||
text-shadow:
|
text-shadow:
|
||||||
0 0 1px var(--INTERNAL-MENU-SEARCH-BORDER-color),
|
0 0 1px var(--INTERNAL-MENU-SEARCH-BORDER-color),
|
||||||
0 0 2px var(--INTERNAL-MENU-SEARCH-BORDER-color),
|
0 0 2px var(--INTERNAL-MENU-SEARCH-BORDER-color),
|
||||||
0 0 4px var(--INTERNAL-MENU-SEARCH-BORDER-color),
|
0 0 4px var(--INTERNAL-MENU-SEARCH-BORDER-color),
|
||||||
0 0 8px rgba( 128, 128, 128, 1 ),
|
0 0 8px rgba(128, 128, 128, 1),
|
||||||
0 0 4px var(--INTERNAL-MENU-SECTIONS-LINK-HOVER-color),
|
0 0 4px var(--INTERNAL-MENU-SECTIONS-LINK-HOVER-color),
|
||||||
0 0 8px var(--INTERNAL-MENU-SECTIONS-LINK-HOVER-color);
|
0 0 8px var(--INTERNAL-MENU-SECTIONS-LINK-HOVER-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
body h1 {
|
body h1 {
|
||||||
color: rgba( 255, 255, 255, 1 );
|
color: rgba(255, 255, 255, 1);
|
||||||
text-shadow:
|
text-shadow:
|
||||||
0 0 1px rgba( 255, 255, 255, 1 ),
|
0 0 1px rgba(255, 255, 255, 1),
|
||||||
0 0 2px rgba( 255, 255, 255, 1 ),
|
0 0 2px rgba(255, 255, 255, 1),
|
||||||
0 0 4px rgba( 255, 255, 255, 1 ),
|
0 0 4px rgba(255, 255, 255, 1),
|
||||||
0 0 8px rgba( 255, 255, 255, 1 ),
|
0 0 8px rgba(255, 255, 255, 1),
|
||||||
0 0 3px var(--INTERNAL-MAIN-TITLES-H1-TEXT-color),
|
0 0 3px var(--INTERNAL-MAIN-TITLES-H1-TEXT-color),
|
||||||
0 0 6px var(--INTERNAL-MAIN-TITLES-H1-TEXT-color),
|
0 0 6px var(--INTERNAL-MAIN-TITLES-H1-TEXT-color),
|
||||||
0 0 8px var(--INTERNAL-MAIN-TITLES-H1-TEXT-color);
|
0 0 8px var(--INTERNAL-MAIN-TITLES-H1-TEXT-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
body h2 {
|
body h2 {
|
||||||
color: rgba( 255, 255, 255, 1 );
|
color: rgba(255, 255, 255, 1);
|
||||||
text-shadow:
|
text-shadow:
|
||||||
0 0 1px rgba( 255, 255, 255, 1 ),
|
0 0 1px rgba(255, 255, 255, 1),
|
||||||
0 0 2px rgba( 255, 255, 255, 1 ),
|
0 0 2px rgba(255, 255, 255, 1),
|
||||||
0 0 8px rgba( 128, 128, 128, 1 ),
|
0 0 8px rgba(128, 128, 128, 1),
|
||||||
0 0 4px var(--INTERNAL-MAIN-TITLES-H2-TEXT-color),
|
0 0 4px var(--INTERNAL-MAIN-TITLES-H2-TEXT-color),
|
||||||
0 0 8px var(--INTERNAL-MAIN-TITLES-H2-TEXT-color),
|
0 0 8px var(--INTERNAL-MAIN-TITLES-H2-TEXT-color),
|
||||||
0 0 10px var(--INTERNAL-MAIN-TITLES-H2-TEXT-color);
|
0 0 10px var(--INTERNAL-MAIN-TITLES-H2-TEXT-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
body h3, body .article-subheading {
|
body h3,
|
||||||
color: rgba( 255, 255, 255, 1 );
|
body .article-subheading {
|
||||||
text-shadow:
|
color: rgba(255, 255, 255, 1);
|
||||||
0 0 1px rgba( 255, 255, 255, 1 ),
|
text-shadow:
|
||||||
0 0 2px rgba( 255, 255, 255, 1 ),
|
0 0 1px rgba(255, 255, 255, 1),
|
||||||
0 0 8px rgba( 128, 128, 128, 1 ),
|
0 0 2px rgba(255, 255, 255, 1),
|
||||||
0 0 4px var(--INTERNAL-MAIN-TITLES-H3-TEXT-color),
|
0 0 8px rgba(128, 128, 128, 1),
|
||||||
0 0 8px var(--INTERNAL-MAIN-TITLES-H3-TEXT-color),
|
0 0 4px var(--INTERNAL-MAIN-TITLES-H3-TEXT-color),
|
||||||
0 0 10px var(--INTERNAL-MAIN-TITLES-H3-TEXT-color);
|
0 0 8px var(--INTERNAL-MAIN-TITLES-H3-TEXT-color),
|
||||||
|
0 0 10px var(--INTERNAL-MAIN-TITLES-H3-TEXT-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
body h4 {
|
body h4 {
|
||||||
color: rgba( 255, 255, 255, 1 );
|
color: rgba(255, 255, 255, 1);
|
||||||
text-shadow:
|
text-shadow:
|
||||||
0 0 1px rgba( 255, 255, 255, 1 ),
|
0 0 1px rgba(255, 255, 255, 1),
|
||||||
0 0 2px rgba( 255, 255, 255, 1 ),
|
0 0 2px rgba(255, 255, 255, 1),
|
||||||
0 0 8px rgba( 128, 128, 128, 1 ),
|
0 0 8px rgba(128, 128, 128, 1),
|
||||||
0 0 4px var(--INTERNAL-MAIN-TITLES-H4-TEXT-color),
|
0 0 4px var(--INTERNAL-MAIN-TITLES-H4-TEXT-color),
|
||||||
0 0 8px var(--INTERNAL-MAIN-TITLES-H4-TEXT-color),
|
0 0 8px var(--INTERNAL-MAIN-TITLES-H4-TEXT-color),
|
||||||
0 0 10px var(--INTERNAL-MAIN-TITLES-H4-TEXT-color);
|
0 0 10px var(--INTERNAL-MAIN-TITLES-H4-TEXT-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
body h5 {
|
body h5 {
|
||||||
color: rgba( 255, 255, 255, 1 );
|
color: rgba(255, 255, 255, 1);
|
||||||
text-shadow:
|
text-shadow:
|
||||||
0 0 1px rgba( 255, 255, 255, 1 ),
|
0 0 1px rgba(255, 255, 255, 1),
|
||||||
0 0 3px rgba( 255, 255, 255, 1 ),
|
0 0 3px rgba(255, 255, 255, 1),
|
||||||
0 0 6px rgba( 128, 128, 128, 1 ),
|
0 0 6px rgba(128, 128, 128, 1),
|
||||||
0 0 4px var(--INTERNAL-MAIN-TITLES-H5-TEXT-color),
|
0 0 4px var(--INTERNAL-MAIN-TITLES-H5-TEXT-color),
|
||||||
0 0 8px var(--INTERNAL-MAIN-TITLES-H5-TEXT-color);
|
0 0 8px var(--INTERNAL-MAIN-TITLES-H5-TEXT-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
body h6 {
|
body h6 {
|
||||||
color: rgba( 255, 255, 255, 1 );
|
color: rgba(255, 255, 255, 1);
|
||||||
text-shadow:
|
text-shadow:
|
||||||
0 0 1px rgba( 255, 255, 255, 1 ),
|
0 0 1px rgba(255, 255, 255, 1),
|
||||||
0 0 2px rgba( 255, 255, 255, 1 ),
|
0 0 2px rgba(255, 255, 255, 1),
|
||||||
0 0 4px rgba( 128, 128, 128, 1 ),
|
0 0 4px rgba(128, 128, 128, 1),
|
||||||
0 0 4px var(--INTERNAL-MAIN-TITLES-H6-TEXT-color),
|
0 0 4px var(--INTERNAL-MAIN-TITLES-H6-TEXT-color),
|
||||||
0 0 8px var(--INTERNAL-MAIN-TITLES-H6-TEXT-color);
|
0 0 8px var(--INTERNAL-MAIN-TITLES-H6-TEXT-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.swagger-ui h1,
|
.swagger-ui h1,
|
||||||
|
@ -152,18 +153,18 @@ body h6 {
|
||||||
.swagger-ui h3,
|
.swagger-ui h3,
|
||||||
.swagger-ui h4,
|
.swagger-ui h4,
|
||||||
.swagger-ui h5,
|
.swagger-ui h5,
|
||||||
.swagger-ui h6{
|
.swagger-ui h6 {
|
||||||
color: rgba( 255, 255, 255, 1 ) !important;
|
color: rgba(255, 255, 255, 1) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
body #R-sidebar .searchbox button:hover{
|
body #R-sidebar .searchbox button:hover {
|
||||||
color: rgba( 255, 255, 255, 1 );
|
color: rgba(255, 255, 255, 1);
|
||||||
text-shadow:
|
text-shadow:
|
||||||
0 0 1px rgba( 255, 255, 255, 1 ),
|
0 0 1px rgba(255, 255, 255, 1),
|
||||||
0 0 2px rgba( 255, 255, 255, 1 ),
|
0 0 2px rgba(255, 255, 255, 1),
|
||||||
0 0 8px rgba( 128, 128, 128, 1 ),
|
0 0 8px rgba(128, 128, 128, 1),
|
||||||
0 0 4px var(--INTERNAL-MENU-SEARCH-color),
|
0 0 4px var(--INTERNAL-MENU-SEARCH-color),
|
||||||
0 0 8px var(--INTERNAL-MENU-SEARCH-color);
|
0 0 8px var(--INTERNAL-MENU-SEARCH-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
body #R-sidebar select:hover,
|
body #R-sidebar select:hover,
|
||||||
|
@ -171,34 +172,34 @@ body #R-sidebar .collapsible-menu li:not(.active) > label:hover,
|
||||||
body #R-sidebar .menu-control:hover,
|
body #R-sidebar .menu-control:hover,
|
||||||
body #R-sidebar a:hover,
|
body #R-sidebar a:hover,
|
||||||
body #R-prefooter button:hover {
|
body #R-prefooter button:hover {
|
||||||
color: rgba( 255, 255, 255, 1 );
|
color: rgba(255, 255, 255, 1);
|
||||||
text-shadow:
|
text-shadow:
|
||||||
0 0 1px rgba( 255, 255, 255, 1 ),
|
0 0 1px rgba(255, 255, 255, 1),
|
||||||
0 0 2px rgba( 255, 255, 255, 1 ),
|
0 0 2px rgba(255, 255, 255, 1),
|
||||||
0 0 8px rgba( 128, 128, 128, 1 ),
|
0 0 8px rgba(128, 128, 128, 1),
|
||||||
0 0 4px var(--INTERNAL-MENU-SECTIONS-LINK-HOVER-color),
|
0 0 4px var(--INTERNAL-MENU-SECTIONS-LINK-HOVER-color),
|
||||||
0 0 8px var(--INTERNAL-MENU-SECTIONS-LINK-HOVER-color);
|
0 0 8px var(--INTERNAL-MENU-SECTIONS-LINK-HOVER-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
body #R-sidebar li.active > label,
|
body #R-sidebar li.active > label,
|
||||||
body #R-sidebar li.active > :is( a, span ) {
|
body #R-sidebar li.active > :is(a, span) {
|
||||||
color: rgba( 255, 255, 255, 1 );
|
color: rgba(255, 255, 255, 1);
|
||||||
text-shadow:
|
text-shadow:
|
||||||
0 0 1px rgba( 255, 255, 255, 1 ),
|
0 0 1px rgba(255, 255, 255, 1),
|
||||||
0 0 2px rgba( 255, 255, 255, 1 ),
|
0 0 2px rgba(255, 255, 255, 1),
|
||||||
0 0 8px rgba( 128, 128, 128, 1 ),
|
0 0 8px rgba(128, 128, 128, 1),
|
||||||
0 0 4px var(--INTERNAL-MENU-SECTION-ACTIVE-CATEGORY-color),
|
0 0 4px var(--INTERNAL-MENU-SECTION-ACTIVE-CATEGORY-color),
|
||||||
0 0 8px var(--INTERNAL-MENU-SECTION-ACTIVE-CATEGORY-color);
|
0 0 8px var(--INTERNAL-MENU-SECTION-ACTIVE-CATEGORY-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
body #R-homelinks.homelinks a:hover {
|
body #R-homelinks.homelinks a:hover {
|
||||||
color: rgba( 255, 255, 255, 1 );
|
color: rgba(255, 255, 255, 1);
|
||||||
text-shadow:
|
text-shadow:
|
||||||
0 0 1px rgba( 255, 255, 255, 1 ),
|
0 0 1px rgba(255, 255, 255, 1),
|
||||||
0 0 2px rgba( 255, 255, 255, 1 ),
|
0 0 2px rgba(255, 255, 255, 1),
|
||||||
0 0 8px rgba( 128, 128, 128, 1 ),
|
0 0 8px rgba(128, 128, 128, 1),
|
||||||
0 0 4px var(--INTERNAL-MENU-HOME-LINK-HOVER-color),
|
0 0 4px var(--INTERNAL-MENU-HOME-LINK-HOVER-color),
|
||||||
0 0 8px var(--INTERNAL-MENU-HOME-LINK-HOVER-color);
|
0 0 8px var(--INTERNAL-MENU-HOME-LINK-HOVER-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
body h1 a,
|
body h1 a,
|
||||||
|
@ -208,90 +209,92 @@ body h4 a,
|
||||||
body h5 a,
|
body h5 a,
|
||||||
body h6 a,
|
body h6 a,
|
||||||
body .anchor {
|
body .anchor {
|
||||||
text-shadow: none;
|
text-shadow: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
body .badge,
|
body .badge,
|
||||||
body .btn,
|
body .btn,
|
||||||
body div.box {
|
body div.box {
|
||||||
box-shadow:
|
box-shadow:
|
||||||
0 0 1px rgba( 255, 255, 255, 1 ),
|
0 0 1px rgba(255, 255, 255, 1),
|
||||||
0 0 2px rgba( 255, 255, 255, 1 ),
|
0 0 2px rgba(255, 255, 255, 1),
|
||||||
0 0 4px rgba( 128, 128, 128, 1 ),
|
0 0 4px rgba(128, 128, 128, 1),
|
||||||
0 0 4px var(--VARIABLE-BOX-color);
|
0 0 4px var(--VARIABLE-BOX-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
body .badge > .badge-content,
|
body .badge > .badge-content,
|
||||||
body .btn,
|
body .btn,
|
||||||
body .btn > *,
|
body .btn > *,
|
||||||
body div.box > .box-label {
|
body div.box > .box-label {
|
||||||
text-shadow:
|
text-shadow:
|
||||||
0 0 1px rgba( 255, 255, 255, 1 ),
|
0 0 1px rgba(255, 255, 255, 1),
|
||||||
0 0 2px rgba( 255, 255, 255, 1 ),
|
0 0 2px rgba(255, 255, 255, 1),
|
||||||
0 0 4px rgba( 128, 128, 128, 1 ),
|
0 0 4px rgba(128, 128, 128, 1),
|
||||||
0 0 4px var(--VARIABLE-BOX-CAPTION-color);
|
0 0 4px var(--VARIABLE-BOX-CAPTION-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
body .tab-panel-cstyle:not(.transparent),
|
body .tab-panel-cstyle:not(.transparent),
|
||||||
body .badge.cstyle:not(.transparent),
|
body .badge.cstyle:not(.transparent),
|
||||||
body .btn.cstyle {
|
body .btn.cstyle {
|
||||||
--VARIABLE-BOX-TEXT-color: var(--VARIABLE-BOX-CAPTION-color);
|
--VARIABLE-BOX-TEXT-color: var(--VARIABLE-BOX-CAPTION-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
body .badge.cstyle.transparent,
|
body .badge.cstyle.transparent,
|
||||||
body .btn.cstyle.transparent {
|
body .btn.cstyle.transparent {
|
||||||
--VARIABLE-BOX-BG-color: var(--INTERNAL-BOX-BG-color);
|
--VARIABLE-BOX-BG-color: var(--INTERNAL-BOX-BG-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
body .btn.cstyle.transparent > * {
|
body .btn.cstyle.transparent > * {
|
||||||
border-color: var(--VARIABLE-BOX-color);
|
border-color: var(--VARIABLE-BOX-color);
|
||||||
color: var(--VARIABLE-BOX-CAPTION-color);
|
color: var(--VARIABLE-BOX-CAPTION-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
body .btn.cstyle.interactive.transparent > *:hover,
|
body .btn.cstyle.interactive.transparent > *:hover,
|
||||||
body .btn.cstyle.interactive.transparent > *:active,
|
body .btn.cstyle.interactive.transparent > *:active,
|
||||||
body .btn.cstyle.interactive.transparent > *:focus {
|
body .btn.cstyle.interactive.transparent > *:focus {
|
||||||
background-color: var(--INTERNAL-MAIN-TITLES-TEXT-color);
|
background-color: var(--INTERNAL-MAIN-TITLES-TEXT-color);
|
||||||
color: var(--INTERNAL-MAIN-TEXT-color);
|
color: var(--INTERNAL-MAIN-TEXT-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
body .box.cstyle.transparent {
|
body .box.cstyle.transparent {
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media print {
|
@media print {
|
||||||
#R-body h1,
|
#R-body h1,
|
||||||
#R-body h2,
|
#R-body h2,
|
||||||
#R-body h3, #R-body .article-subheading,
|
#R-body h3,
|
||||||
#R-body h4,
|
#R-body .article-subheading,
|
||||||
#R-body h5,
|
#R-body h4,
|
||||||
#R-body h6 {
|
#R-body h5,
|
||||||
text-shadow: none;
|
#R-body h6 {
|
||||||
}
|
text-shadow: none;
|
||||||
#R-body .badge,
|
}
|
||||||
#R-body .badge > .badge-content,
|
#R-body .badge,
|
||||||
#R-body .btn,
|
#R-body .badge > .badge-content,
|
||||||
#R-body .btn > *,
|
#R-body .btn,
|
||||||
#R-body div.box,
|
#R-body .btn > *,
|
||||||
#R-body div.box > .box-label {
|
#R-body div.box,
|
||||||
box-shadow: none;
|
#R-body div.box > .box-label {
|
||||||
text-shadow: none;
|
box-shadow: none;
|
||||||
}
|
text-shadow: none;
|
||||||
#R-body .badge.cstyle:not(.transparent),
|
}
|
||||||
#R-body .btn.cstyle {
|
#R-body .badge.cstyle:not(.transparent),
|
||||||
--VARIABLE-BOX-TEXT-color: var(--INTERNAL-BOX-NEUTRAL-TEXT-color);
|
#R-body .btn.cstyle {
|
||||||
}
|
--VARIABLE-BOX-TEXT-color: var(--INTERNAL-BOX-NEUTRAL-TEXT-color);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* if we are in print chapter preview our @media statement from
|
/* if we are in print chapter preview our @media statement from
|
||||||
above will not apply, so we have to repeat it here */
|
above will not apply, so we have to repeat it here */
|
||||||
.print #R-body h1,
|
.print #R-body h1,
|
||||||
.print #R-body h2,
|
.print #R-body h2,
|
||||||
.print #R-body h3, .print #R-body .article-subheading,
|
.print #R-body h3,
|
||||||
|
.print #R-body .article-subheading,
|
||||||
.print #R-body h4,
|
.print #R-body h4,
|
||||||
.print #R-body h5,
|
.print #R-body h5,
|
||||||
.print #R-body h6 {
|
.print #R-body h6 {
|
||||||
text-shadow: none;
|
text-shadow: none;
|
||||||
}
|
}
|
||||||
.print #R-body .badge,
|
.print #R-body .badge,
|
||||||
.print #R-body .badge > .badge-content,
|
.print #R-body .badge > .badge-content,
|
||||||
|
@ -299,15 +302,15 @@ above will not apply, so we have to repeat it here */
|
||||||
.print #R-body .btn > *,
|
.print #R-body .btn > *,
|
||||||
.print #R-body div.box,
|
.print #R-body div.box,
|
||||||
.print #R-body div.box > .box-label {
|
.print #R-body div.box > .box-label {
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
text-shadow: none;
|
text-shadow: none;
|
||||||
}
|
}
|
||||||
.print #R-body .badge.cstyle:not(.transparent),
|
.print #R-body .badge.cstyle:not(.transparent),
|
||||||
.print #R-body .btn.cstyle {
|
.print #R-body .btn.cstyle {
|
||||||
--VARIABLE-BOX-TEXT-color: var(--INTERNAL-BOX-NEUTRAL-TEXT-color);
|
--VARIABLE-BOX-TEXT-color: var(--INTERNAL-BOX-NEUTRAL-TEXT-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
#R-content-wrapper {
|
#R-content-wrapper {
|
||||||
--ps-thumb-color: rgba( 208, 208, 208, 1 );
|
--ps-thumb-color: rgba(208, 208, 208, 1);
|
||||||
--ps-thumb-hover-color: rgba( 204, 204, 204, 1 );
|
--ps-thumb-hover-color: rgba(204, 204, 204, 1);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,41 +1,41 @@
|
||||||
:root {
|
:root {
|
||||||
--MAIN-TEXT-color: rgba( 50, 50, 50, 1 ); /* Color of text by default */
|
--MAIN-TEXT-color: rgba(50, 50, 50, 1); /* Color of text by default */
|
||||||
--MAIN-TITLES-TEXT-color: rgba( 94, 94, 94, 1 ); /* Color of titles h2-h3-h4-h5-h6 */
|
--MAIN-TITLES-TEXT-color: rgba(94, 94, 94, 1); /* Color of titles h2-h3-h4-h5-h6 */
|
||||||
--MAIN-TITLES-H1-TEXT-color: rgba( 34, 34, 34, 1 ); /* text color of h1 titles */
|
--MAIN-TITLES-H1-TEXT-color: rgba(34, 34, 34, 1); /* text color of h1 titles */
|
||||||
--MAIN-LINK-color: rgba( 243, 28, 28, 1 ); /* Color of links */
|
--MAIN-LINK-color: rgba(243, 28, 28, 1); /* Color of links */
|
||||||
--MAIN-LINK-HOVER-color: rgba( 208, 22, 22, 1 ); /* Color of hovered links */
|
--MAIN-LINK-HOVER-color: rgba(208, 22, 22, 1); /* Color of hovered links */
|
||||||
--MAIN-BG-color: rgba( 255, 255, 255, 1 ); /* color of text by default */
|
--MAIN-BG-color: rgba(255, 255, 255, 1); /* color of text by default */
|
||||||
|
|
||||||
--CODE-theme: learn; /* name of the chroma stylesheet file */
|
--CODE-theme: learn; /* name of the chroma stylesheet file */
|
||||||
--CODE-BLOCK-color: rgba( 226, 228, 229, 1 ); /* fallback color for code text */
|
--CODE-BLOCK-color: rgba(226, 228, 229, 1); /* fallback color for code text */
|
||||||
--CODE-BLOCK-BG-color: rgba( 40, 42, 54, 1 ); /* fallback color for code background */
|
--CODE-BLOCK-BG-color: rgba(40, 42, 54, 1); /* fallback color for code background */
|
||||||
--CODE-BLOCK-BORDER-color: rgba( 40, 42, 54, 1 ); /* color of block code border */
|
--CODE-BLOCK-BORDER-color: rgba(40, 42, 54, 1); /* color of block code border */
|
||||||
--CODE-INLINE-color: rgba( 94, 94, 94, 1 ); /* color for inline code text */
|
--CODE-INLINE-color: rgba(94, 94, 94, 1); /* color for inline code text */
|
||||||
--CODE-INLINE-BG-color: rgba( 255, 250, 233, 1 ); /* color for inline code background */
|
--CODE-INLINE-BG-color: rgba(255, 250, 233, 1); /* color for inline code background */
|
||||||
--CODE-INLINE-BORDER-color: rgba( 248, 232, 200, 1 ); /* color of inline code border */
|
--CODE-INLINE-BORDER-color: rgba(248, 232, 200, 1); /* color of inline code border */
|
||||||
|
|
||||||
--MENU-HOME-LINK-color: rgba( 56, 43, 43, 1 ); /* Color of the home button text */
|
--MENU-HOME-LINK-color: rgba(56, 43, 43, 1); /* Color of the home button text */
|
||||||
--MENU-HOME-LINK-HOVER-color: rgba( 0, 0, 0, 1 ); /* Color of the hovered home button text */
|
--MENU-HOME-LINK-HOVER-color: rgba(0, 0, 0, 1); /* Color of the hovered home button text */
|
||||||
|
|
||||||
--MENU-HEADER-BG-color: rgba( 220, 16, 16, 1 ); /* Background color of menu header */
|
--MENU-HEADER-BG-color: rgba(220, 16, 16, 1); /* Background color of menu header */
|
||||||
--MENU-HEADER-BORDER-color: rgba( 226, 49, 49, 1 ); /*Color of menu header border */
|
--MENU-HEADER-BORDER-color: rgba(226, 49, 49, 1); /*Color of menu header border */
|
||||||
|
|
||||||
--MENU-SEARCH-color: rgba( 255, 255, 255, 1 ); /* Color of search field text */
|
--MENU-SEARCH-color: rgba(255, 255, 255, 1); /* Color of search field text */
|
||||||
--MENU-SEARCH-BG-color: rgba( 185, 0, 0, 1 ); /* Search field background color (by default borders + icons) */
|
--MENU-SEARCH-BG-color: rgba(185, 0, 0, 1); /* Search field background color (by default borders + icons) */
|
||||||
--MENU-SEARCH-BORDER-color: rgba( 239, 32, 32, 1 ); /* Override search field border color */
|
--MENU-SEARCH-BORDER-color: rgba(239, 32, 32, 1); /* Override search field border color */
|
||||||
|
|
||||||
--MENU-SECTIONS-ACTIVE-BG-color: rgba( 43, 32, 32, 1 ); /* Background color of the active section and its children */
|
--MENU-SECTIONS-ACTIVE-BG-color: rgba(43, 32, 32, 1); /* Background color of the active section and its children */
|
||||||
--MENU-SECTIONS-BG-color: rgba( 49, 37, 37, 1 ); /* Background color of other sections */
|
--MENU-SECTIONS-BG-color: rgba(49, 37, 37, 1); /* Background color of other sections */
|
||||||
--MENU-SECTIONS-LINK-color: rgba( 204, 204, 204, 1 ); /* Color of links in menu */
|
--MENU-SECTIONS-LINK-color: rgba(204, 204, 204, 1); /* Color of links in menu */
|
||||||
--MENU-SECTIONS-LINK-HOVER-color: rgba( 230, 230, 230, 1 ); /* Color of links in menu, when hovered */
|
--MENU-SECTIONS-LINK-HOVER-color: rgba(230, 230, 230, 1); /* Color of links in menu, when hovered */
|
||||||
--MENU-SECTION-ACTIVE-CATEGORY-color: rgba( 119, 119, 119, 1 ); /* Color of active category text */
|
--MENU-SECTION-ACTIVE-CATEGORY-color: rgba(119, 119, 119, 1); /* Color of active category text */
|
||||||
--MENU-SECTION-ACTIVE-CATEGORY-BG-color: rgba( 255, 255, 255, 1 ); /* Color of background for the active category (only) */
|
--MENU-SECTION-ACTIVE-CATEGORY-BG-color: rgba(255, 255, 255, 1); /* Color of background for the active category (only) */
|
||||||
|
|
||||||
--MENU-VISITED-color: rgba( 243, 28, 28, 1 ); /* Color of 'page visited' icons in menu */
|
--MENU-VISITED-color: rgba(243, 28, 28, 1); /* Color of 'page visited' icons in menu */
|
||||||
--MENU-SECTION-SEPARATOR-color: rgba( 43, 32, 32, 1 ); /* Color of <hr> separator in menu */
|
--MENU-SECTION-SEPARATOR-color: rgba(43, 32, 32, 1); /* Color of <hr> separator in menu */
|
||||||
|
|
||||||
/* base styling for boxes */
|
/* base styling for boxes */
|
||||||
--BOX-CAPTION-color: rgba( 255, 255, 255, 1 ); /* color of the title text */
|
--BOX-CAPTION-color: rgba(255, 255, 255, 1); /* color of the title text */
|
||||||
--BOX-BG-color: rgba( 255, 255, 255, .833 ); /* color of the content background */
|
--BOX-BG-color: rgba(255, 255, 255, 0.833); /* color of the content background */
|
||||||
--BOX-TEXT-color: rgba( 16, 16, 16, 1 ); /* fixed color of the content text */
|
--BOX-TEXT-color: rgba(16, 16, 16, 1); /* fixed color of the content text */
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,52 +1,52 @@
|
||||||
:root {
|
:root {
|
||||||
--PRIMARY-color: rgba( 131, 201, 50, 1 ); /* brand primary color */
|
--PRIMARY-color: rgba(131, 201, 50, 1); /* brand primary color */
|
||||||
--SECONDARY-color: rgba( 99, 128, 208, 1 ); /* brand secondary color */
|
--SECONDARY-color: rgba(99, 128, 208, 1); /* brand secondary color */
|
||||||
--ACCENT-color: rgb( 255, 102, 78, 1 ); /* brand accent color, used for search highlights */
|
--ACCENT-color: rgb(255, 102, 78, 1); /* brand accent color, used for search highlights */
|
||||||
|
|
||||||
--MAIN-TEXT-color: rgba( 0, 0, 0, 1 ); /* text color of content and h1 titles */
|
--MAIN-TEXT-color: rgba(0, 0, 0, 1); /* text color of content and h1 titles */
|
||||||
--MAIN-LINK-HOVER-color: rgba( 32, 40, 145, 1 ); /* hovered link color of content */
|
--MAIN-LINK-HOVER-color: rgba(32, 40, 145, 1); /* hovered link color of content */
|
||||||
--MAIN-BG-color: rgba( 255, 255, 255, 1 ); /* background color of content */
|
--MAIN-BG-color: rgba(255, 255, 255, 1); /* background color of content */
|
||||||
--MAIN-TITLES-TEXT-color: rgba( 16, 16, 16, 1 ); /* text color of h2-h6 titles and transparent box titles */
|
--MAIN-TITLES-TEXT-color: rgba(16, 16, 16, 1); /* text color of h2-h6 titles and transparent box titles */
|
||||||
|
|
||||||
--CODE-theme: relearn-light; /* name of the chroma stylesheet file */
|
--CODE-theme: relearn-light; /* name of the chroma stylesheet file */
|
||||||
--CODE-BLOCK-color: rgba( 39, 40, 34, 1 ); /* fallback text color of block code; should be adjusted to your selected chroma style */
|
--CODE-BLOCK-color: rgba(39, 40, 34, 1); /* fallback text color of block code; should be adjusted to your selected chroma style */
|
||||||
--CODE-BLOCK-BG-color: rgba( 250, 250, 250, 1 ); /* fallback background color of block code; should be adjusted to your selected chroma style */
|
--CODE-BLOCK-BG-color: rgba(250, 250, 250, 1); /* fallback background color of block code; should be adjusted to your selected chroma style */
|
||||||
--CODE-BLOCK-BORDER-color: rgba( 216, 216, 216, 1 ); /* border color of block code */
|
--CODE-BLOCK-BORDER-color: rgba(216, 216, 216, 1); /* border color of block code */
|
||||||
--CODE-INLINE-color: rgba( 94, 94, 94, 1 ); /* text color of inline code */
|
--CODE-INLINE-color: rgba(94, 94, 94, 1); /* text color of inline code */
|
||||||
--CODE-INLINE-BG-color: rgba( 255, 250, 233, 1 ); /* background color of inline code */
|
--CODE-INLINE-BG-color: rgba(255, 250, 233, 1); /* background color of inline code */
|
||||||
--CODE-INLINE-BORDER-color: rgba( 248, 232, 200, 1 ); /* border color of inline code */
|
--CODE-INLINE-BORDER-color: rgba(248, 232, 200, 1); /* border color of inline code */
|
||||||
|
|
||||||
--BROWSER-theme: light; /* name of the theme for browser scrollbars of the main section */
|
--BROWSER-theme: light; /* name of the theme for browser scrollbars of the main section */
|
||||||
--MERMAID-theme: default; /* name of the default Mermaid theme for this variant, can be overridden in hugo.toml */
|
--MERMAID-theme: default; /* name of the default Mermaid theme for this variant, can be overridden in hugo.toml */
|
||||||
--OPENAPI-theme: light; /* name of the default OpenAPI theme for this variant, can be overridden in hugo.toml */
|
--OPENAPI-theme: light; /* name of the default OpenAPI theme for this variant, can be overridden in hugo.toml */
|
||||||
--OPENAPI-CODE-theme: idea; /* name of the default OpenAPI code theme for this variant, can be overridden in hugo.toml */
|
--OPENAPI-CODE-theme: idea; /* name of the default OpenAPI code theme for this variant, can be overridden in hugo.toml */
|
||||||
|
|
||||||
--MENU-HEADER-BG-color: rgba( 0, 0, 0, 0 ); /* background color of menu header */
|
--MENU-HEADER-BG-color: rgba(0, 0, 0, 0); /* background color of menu header */
|
||||||
--MENU-HEADER-SEPARATOR-color: rgba( 96, 96, 96, 1 ); /* separator color between menu header and menu */
|
--MENU-HEADER-SEPARATOR-color: rgba(96, 96, 96, 1); /* separator color between menu header and menu */
|
||||||
|
|
||||||
--MENU-HOME-LINK-color: rgba( 64, 64, 64, 1 ); /* home button color if configured */
|
--MENU-HOME-LINK-color: rgba(64, 64, 64, 1); /* home button color if configured */
|
||||||
--MENU-HOME-LINK-HOVER-color: rgba( 0, 0, 0, 1 ); /* hovered home button color if configured */
|
--MENU-HOME-LINK-HOVER-color: rgba(0, 0, 0, 1); /* hovered home button color if configured */
|
||||||
|
|
||||||
--MENU-SEARCH-color: rgba( 64, 64, 64, 1 ); /* text and icon color of search box */
|
--MENU-SEARCH-color: rgba(64, 64, 64, 1); /* text and icon color of search box */
|
||||||
--MENU-SEARCH-BG-color: rgba( 255, 255, 255, .2 ); /* background color of search box */
|
--MENU-SEARCH-BG-color: rgba(255, 255, 255, 0.2); /* background color of search box */
|
||||||
--MENU-SEARCH-BORDER-color: transparent; /* border color of search box */
|
--MENU-SEARCH-BORDER-color: transparent; /* border color of search box */
|
||||||
|
|
||||||
--MENU-SECTIONS-BG-color: rgba( 131, 201, 50, 1 ); /* background of the menu; this is NOT just a color value but can be a complete CSS background definition including gradients, etc. */
|
--MENU-SECTIONS-BG-color: rgba(131, 201, 50, 1); /* background of the menu; this is NOT just a color value but can be a complete CSS background definition including gradients, etc. */
|
||||||
--MENU-SECTIONS-ACTIVE-BG-color: transparent; /* background color of the active menu section */
|
--MENU-SECTIONS-ACTIVE-BG-color: transparent; /* background color of the active menu section */
|
||||||
--MENU-SECTIONS-LINK-color: rgba( 50, 50, 50, 1 ); /* link color of menu topics */
|
--MENU-SECTIONS-LINK-color: rgba(50, 50, 50, 1); /* link color of menu topics */
|
||||||
--MENU-SECTIONS-LINK-HOVER-color: rgba( 255, 255, 255, 1 ); /* hovered link color of menu topics */
|
--MENU-SECTIONS-LINK-HOVER-color: rgba(255, 255, 255, 1); /* hovered link color of menu topics */
|
||||||
--MENU-SECTION-ACTIVE-CATEGORY-color: rgba( 50, 50, 50, 1 ); /* text color of the displayed menu topic */
|
--MENU-SECTION-ACTIVE-CATEGORY-color: rgba(50, 50, 50, 1); /* text color of the displayed menu topic */
|
||||||
--MENU-SECTION-SEPARATOR-color: rgba( 96, 96, 96, 1 ); /* separator color between menu sections and menu footer */
|
--MENU-SECTION-SEPARATOR-color: rgba(96, 96, 96, 1); /* separator color between menu sections and menu footer */
|
||||||
|
|
||||||
--BOX-CAPTION-color: rgba( 255, 255, 255, 1 ); /* text color of colored box titles */
|
--BOX-CAPTION-color: rgba(255, 255, 255, 1); /* text color of colored box titles */
|
||||||
--BOX-BG-color: rgba( 255, 255, 255, .833 ); /* background color of colored boxes */
|
--BOX-BG-color: rgba(255, 255, 255, 0.833); /* background color of colored boxes */
|
||||||
--BOX-TEXT-color: rgba( 16, 16, 16, 1 ); /* text color of colored box content */
|
--BOX-TEXT-color: rgba(16, 16, 16, 1); /* text color of colored box content */
|
||||||
}
|
}
|
||||||
|
|
||||||
body a#R-logo,
|
body a#R-logo,
|
||||||
body a#R-logo:hover,
|
body a#R-logo:hover,
|
||||||
body #R-logo svg,
|
body #R-logo svg,
|
||||||
body #R-logo svg * {
|
body #R-logo svg * {
|
||||||
color: var(--MENU-SEARCH-color);
|
color: var(--MENU-SEARCH-color);
|
||||||
fill: var(--MENU-SEARCH-color) !important;
|
fill: var(--MENU-SEARCH-color) !important;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,43 +1,43 @@
|
||||||
:root {
|
:root {
|
||||||
--PRIMARY-color: rgba( 125, 201, 3, 1 ); /* brand primary color */
|
--PRIMARY-color: rgba(125, 201, 3, 1); /* brand primary color */
|
||||||
--SECONDARY-color: rgba( 108, 140, 227, 1 ); /* brand secondary color */
|
--SECONDARY-color: rgba(108, 140, 227, 1); /* brand secondary color */
|
||||||
--ACCENT-color: rgb( 255, 102, 78, 1 ); /* brand accent color, used for search highlights */
|
--ACCENT-color: rgb(255, 102, 78, 1); /* brand accent color, used for search highlights */
|
||||||
|
|
||||||
--MAIN-TEXT-color: rgba( 224, 224, 224, 1 ); /* text color of content and h1 titles */
|
--MAIN-TEXT-color: rgba(224, 224, 224, 1); /* text color of content and h1 titles */
|
||||||
--MAIN-LINK-HOVER-color: rgba( 147, 176, 255, 1 ); /* hovered link color of content */
|
--MAIN-LINK-HOVER-color: rgba(147, 176, 255, 1); /* hovered link color of content */
|
||||||
--MAIN-BG-color: rgba( 32, 32, 32, 1 ); /* background color of content */
|
--MAIN-BG-color: rgba(32, 32, 32, 1); /* background color of content */
|
||||||
--MAIN-TITLES-TEXT-color: rgba( 255, 255, 255, 1 ); /* text color of h2-h6 titles and transparent box titles */
|
--MAIN-TITLES-TEXT-color: rgba(255, 255, 255, 1); /* text color of h2-h6 titles and transparent box titles */
|
||||||
|
|
||||||
--CODE-theme: relearn-dark; /* name of the chroma stylesheet file */
|
--CODE-theme: relearn-dark; /* name of the chroma stylesheet file */
|
||||||
--CODE-BLOCK-color: rgba( 248, 248, 242, 1 ); /* fallback text color of block code; should be adjusted to your selected chroma style */
|
--CODE-BLOCK-color: rgba(248, 248, 242, 1); /* fallback text color of block code; should be adjusted to your selected chroma style */
|
||||||
--CODE-BLOCK-BG-color: rgba( 43, 43, 43, 1 ); /* fallback background color of block code; should be adjusted to your selected chroma style */
|
--CODE-BLOCK-BG-color: rgba(43, 43, 43, 1); /* fallback background color of block code; should be adjusted to your selected chroma style */
|
||||||
--CODE-BLOCK-BORDER-color: rgba( 71, 71, 71, 1 ); /* border color of block code */
|
--CODE-BLOCK-BORDER-color: rgba(71, 71, 71, 1); /* border color of block code */
|
||||||
--CODE-INLINE-color: rgba( 130, 229, 80, 1 ); /* text color of inline code */
|
--CODE-INLINE-color: rgba(130, 229, 80, 1); /* text color of inline code */
|
||||||
--CODE-INLINE-BG-color: rgba( 45, 45, 45, 1 ); /* background color of inline code */
|
--CODE-INLINE-BG-color: rgba(45, 45, 45, 1); /* background color of inline code */
|
||||||
--CODE-INLINE-BORDER-color: rgba( 70, 70, 70, 1 ); /* border color of inline code */
|
--CODE-INLINE-BORDER-color: rgba(70, 70, 70, 1); /* border color of inline code */
|
||||||
|
|
||||||
--BROWSER-theme: dark; /* name of the theme for browser scrollbars of the main section */
|
--BROWSER-theme: dark; /* name of the theme for browser scrollbars of the main section */
|
||||||
--MERMAID-theme: dark; /* name of the default Mermaid theme for this variant, can be overridden in hugo.toml */
|
--MERMAID-theme: dark; /* name of the default Mermaid theme for this variant, can be overridden in hugo.toml */
|
||||||
--OPENAPI-theme: dark; /* name of the default OpenAPI theme for this variant, can be overridden in hugo.toml */
|
--OPENAPI-theme: dark; /* name of the default OpenAPI theme for this variant, can be overridden in hugo.toml */
|
||||||
--OPENAPI-CODE-theme: obsidian; /* name of the default OpenAPI code theme for this variant, can be overridden in hugo.toml */
|
--OPENAPI-CODE-theme: obsidian; /* name of the default OpenAPI code theme for this variant, can be overridden in hugo.toml */
|
||||||
|
|
||||||
--MENU-HOME-LINK-color: rgba( 64, 64, 64, 1 ); /* home button color if configured */
|
--MENU-HOME-LINK-color: rgba(64, 64, 64, 1); /* home button color if configured */
|
||||||
--MENU-HOME-LINK-HOVER-color: rgba( 0, 0, 0, 1 ); /* hovered home button color if configured */
|
--MENU-HOME-LINK-HOVER-color: rgba(0, 0, 0, 1); /* hovered home button color if configured */
|
||||||
|
|
||||||
--MENU-SEARCH-color: rgba( 224, 224, 224, 1 ); /* text and icon color of search box */
|
--MENU-SEARCH-color: rgba(224, 224, 224, 1); /* text and icon color of search box */
|
||||||
--MENU-SEARCH-BG-color: rgba( 50, 50, 50, 1 ); /* background color of search box */
|
--MENU-SEARCH-BG-color: rgba(50, 50, 50, 1); /* background color of search box */
|
||||||
--MENU-SEARCH-BORDER-color: rgba( 224, 224, 224, 1 ); /* border color of search box */
|
--MENU-SEARCH-BORDER-color: rgba(224, 224, 224, 1); /* border color of search box */
|
||||||
|
|
||||||
--MENU-SECTIONS-BG-color: rgba( 43, 43, 43, 1 ); /* background of the menu; this is NOT just a color value but can be a complete CSS background definition including gradients, etc. */
|
--MENU-SECTIONS-BG-color: rgba(43, 43, 43, 1); /* background of the menu; this is NOT just a color value but can be a complete CSS background definition including gradients, etc. */
|
||||||
--MENU-SECTIONS-LINK-color: rgba( 186, 186, 186, 1 ); /* link color of menu topics */
|
--MENU-SECTIONS-LINK-color: rgba(186, 186, 186, 1); /* link color of menu topics */
|
||||||
--MENU-SECTIONS-LINK-HOVER-color: rgba( 255, 255, 255, 1 ); /* hovered link color of menu topics */
|
--MENU-SECTIONS-LINK-HOVER-color: rgba(255, 255, 255, 1); /* hovered link color of menu topics */
|
||||||
--MENU-SECTIONS-ACTIVE-BG-color: rgba( 50, 50, 50, 1 ); /* background color of the active menu section */
|
--MENU-SECTIONS-ACTIVE-BG-color: rgba(50, 50, 50, 1); /* background color of the active menu section */
|
||||||
--MENU-SECTION-ACTIVE-CATEGORY-color: rgba( 130, 229, 80, 1 ); /* text color of the displayed menu topic */
|
--MENU-SECTION-ACTIVE-CATEGORY-color: rgba(130, 229, 80, 1); /* text color of the displayed menu topic */
|
||||||
--MENU-SECTION-SEPARATOR-color: rgba( 96, 96, 96, 1 ); /* separator color between menu sections and menu footer */
|
--MENU-SECTION-SEPARATOR-color: rgba(96, 96, 96, 1); /* separator color between menu sections and menu footer */
|
||||||
|
|
||||||
--MENU-VISITED-color: rgba( 72, 106, 201, 1 ); /* icon color of visited menu topics if configured */
|
--MENU-VISITED-color: rgba(72, 106, 201, 1); /* icon color of visited menu topics if configured */
|
||||||
|
|
||||||
--BOX-CAPTION-color: rgba( 240, 240, 240, 1 ); /* text color of colored box titles */
|
--BOX-CAPTION-color: rgba(240, 240, 240, 1); /* text color of colored box titles */
|
||||||
--BOX-BG-color: rgba( 20, 20, 20, 1 ); /* background color of colored boxes */
|
--BOX-BG-color: rgba(20, 20, 20, 1); /* background color of colored boxes */
|
||||||
--BOX-TEXT-color: rgba( 224, 224, 224, 1 ); /* text color of colored box content */
|
--BOX-TEXT-color: rgba(224, 224, 224, 1); /* text color of colored box content */
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,41 +1,41 @@
|
||||||
:root {
|
:root {
|
||||||
--PRIMARY-color: rgba( 125, 201, 3, 1 ); /* brand primary color */
|
--PRIMARY-color: rgba(125, 201, 3, 1); /* brand primary color */
|
||||||
--SECONDARY-color: rgba( 72, 106, 201, 1 ); /* brand secondary color */
|
--SECONDARY-color: rgba(72, 106, 201, 1); /* brand secondary color */
|
||||||
--ACCENT-color: rgb( 255, 102, 78 ); /* brand accent color, used for search highlights */
|
--ACCENT-color: rgb(255, 102, 78); /* brand accent color, used for search highlights */
|
||||||
|
|
||||||
--MAIN-TEXT-color: rgba( 0, 0, 0, 1 ); /* text color of content and h1 titles */
|
--MAIN-TEXT-color: rgba(0, 0, 0, 1); /* text color of content and h1 titles */
|
||||||
--MAIN-LINK-HOVER-color: rgba( 32, 40, 145, 1 ); /* hovered link color of content */
|
--MAIN-LINK-HOVER-color: rgba(32, 40, 145, 1); /* hovered link color of content */
|
||||||
--MAIN-BG-color: rgba( 255, 255, 255, 1 ); /* background color of content */
|
--MAIN-BG-color: rgba(255, 255, 255, 1); /* background color of content */
|
||||||
--MAIN-TITLES-TEXT-color: rgba( 16, 16, 16, 1 ); /* text color of h2-h6 titles and transparent box titles */
|
--MAIN-TITLES-TEXT-color: rgba(16, 16, 16, 1); /* text color of h2-h6 titles and transparent box titles */
|
||||||
|
|
||||||
--CODE-theme: relearn-light; /* name of the chroma stylesheet file */
|
--CODE-theme: relearn-light; /* name of the chroma stylesheet file */
|
||||||
--CODE-BLOCK-color: rgba( 39, 40, 34, 1 ); /* fallback text color of block code; should be adjusted to your selected chroma style */
|
--CODE-BLOCK-color: rgba(39, 40, 34, 1); /* fallback text color of block code; should be adjusted to your selected chroma style */
|
||||||
--CODE-BLOCK-BG-color: rgba( 250, 250, 250, 1 ); /* fallback background color of block code; should be adjusted to your selected chroma style */
|
--CODE-BLOCK-BG-color: rgba(250, 250, 250, 1); /* fallback background color of block code; should be adjusted to your selected chroma style */
|
||||||
--CODE-BLOCK-BORDER-color: rgba( 216, 216, 216, 1 ); /* border color of block code */
|
--CODE-BLOCK-BORDER-color: rgba(216, 216, 216, 1); /* border color of block code */
|
||||||
--CODE-INLINE-color: rgba( 94, 94, 94, 1 ); /* text color of inline code */
|
--CODE-INLINE-color: rgba(94, 94, 94, 1); /* text color of inline code */
|
||||||
--CODE-INLINE-BG-color: rgba( 255, 250, 233, 1 ); /* background color of inline code */
|
--CODE-INLINE-BG-color: rgba(255, 250, 233, 1); /* background color of inline code */
|
||||||
--CODE-INLINE-BORDER-color: rgba( 248, 232, 200, 1 ); /* border color of inline code */
|
--CODE-INLINE-BORDER-color: rgba(248, 232, 200, 1); /* border color of inline code */
|
||||||
|
|
||||||
--BROWSER-theme: light; /* name of the theme for browser scrollbars of the main section */
|
--BROWSER-theme: light; /* name of the theme for browser scrollbars of the main section */
|
||||||
--MERMAID-theme: default; /* name of the default Mermaid theme for this variant, can be overridden in hugo.toml */
|
--MERMAID-theme: default; /* name of the default Mermaid theme for this variant, can be overridden in hugo.toml */
|
||||||
--OPENAPI-theme: light; /* name of the default OpenAPI theme for this variant, can be overridden in hugo.toml */
|
--OPENAPI-theme: light; /* name of the default OpenAPI theme for this variant, can be overridden in hugo.toml */
|
||||||
--OPENAPI-CODE-theme: idea; /* name of the default OpenAPI code theme for this variant, can be overridden in hugo.toml */
|
--OPENAPI-CODE-theme: idea; /* name of the default OpenAPI code theme for this variant, can be overridden in hugo.toml */
|
||||||
|
|
||||||
--MENU-HOME-LINK-color: rgba( 64, 64, 64, 1 ); /* home button color if configured */
|
--MENU-HOME-LINK-color: rgba(64, 64, 64, 1); /* home button color if configured */
|
||||||
--MENU-HOME-LINK-HOVER-color: rgba( 0, 0, 0, 1 ); /* hovered home button color if configured */
|
--MENU-HOME-LINK-HOVER-color: rgba(0, 0, 0, 1); /* hovered home button color if configured */
|
||||||
|
|
||||||
--MENU-SEARCH-color: rgba( 224, 224, 224, 1 ); /* text and icon color of search box */
|
--MENU-SEARCH-color: rgba(224, 224, 224, 1); /* text and icon color of search box */
|
||||||
--MENU-SEARCH-BG-color: rgba( 50, 50, 50, 1 ); /* background color of search box */
|
--MENU-SEARCH-BG-color: rgba(50, 50, 50, 1); /* background color of search box */
|
||||||
--MENU-SEARCH-BORDER-color: rgba( 224, 224, 224, 1 ); /* border color of search box */
|
--MENU-SEARCH-BORDER-color: rgba(224, 224, 224, 1); /* border color of search box */
|
||||||
|
|
||||||
--MENU-SECTIONS-BG-color: rgba( 40, 40, 40, 1 ); /* background of the menu; this is NOT just a color value but can be a complete CSS background definition including gradients, etc. */
|
--MENU-SECTIONS-BG-color: rgba(40, 40, 40, 1); /* background of the menu; this is NOT just a color value but can be a complete CSS background definition including gradients, etc. */
|
||||||
--MENU-SECTIONS-ACTIVE-BG-color: rgba( 0, 0, 0, .166 ); /* background color of the active menu section */
|
--MENU-SECTIONS-ACTIVE-BG-color: rgba(0, 0, 0, 0.166); /* background color of the active menu section */
|
||||||
--MENU-SECTIONS-LINK-color: rgba( 186, 186, 186, 1 ); /* link color of menu topics */
|
--MENU-SECTIONS-LINK-color: rgba(186, 186, 186, 1); /* link color of menu topics */
|
||||||
--MENU-SECTIONS-LINK-HOVER-color: rgba( 255, 255, 255, 1 ); /* hovered link color of menu topics */
|
--MENU-SECTIONS-LINK-HOVER-color: rgba(255, 255, 255, 1); /* hovered link color of menu topics */
|
||||||
--MENU-SECTION-ACTIVE-CATEGORY-color: rgba( 68, 68, 68, 1 ); /* text color of the displayed menu topic */
|
--MENU-SECTION-ACTIVE-CATEGORY-color: rgba(68, 68, 68, 1); /* text color of the displayed menu topic */
|
||||||
--MENU-SECTION-SEPARATOR-color: rgba( 96, 96, 96, 1 ); /* separator color between menu sections and menu footer */
|
--MENU-SECTION-SEPARATOR-color: rgba(96, 96, 96, 1); /* separator color between menu sections and menu footer */
|
||||||
|
|
||||||
--BOX-CAPTION-color: rgba( 255, 255, 255, 1 ); /* text color of colored box titles */
|
--BOX-CAPTION-color: rgba(255, 255, 255, 1); /* text color of colored box titles */
|
||||||
--BOX-BG-color: rgba( 255, 255, 255, .833 ); /* background color of colored boxes */
|
--BOX-BG-color: rgba(255, 255, 255, 0.833); /* background color of colored boxes */
|
||||||
--BOX-TEXT-color: rgba( 16, 16, 16, 1 ); /* text color of colored box content */
|
--BOX-TEXT-color: rgba(16, 16, 16, 1); /* text color of colored box content */
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,59 +1,59 @@
|
||||||
:root {
|
:root {
|
||||||
--PRIMARY-color: rgba( 47, 129, 235, 1 ); /* brand primary color */
|
--PRIMARY-color: rgba(47, 129, 235, 1); /* brand primary color */
|
||||||
--SECONDARY-color: rgba( 47, 129, 235, 1 ); /* brand secondary color */
|
--SECONDARY-color: rgba(47, 129, 235, 1); /* brand secondary color */
|
||||||
|
|
||||||
--MAIN-TOPBAR-BORDER-color: rgba( 71, 71, 71, 1 ); /* border color between topbar and content */
|
--MAIN-TOPBAR-BORDER-color: rgba(71, 71, 71, 1); /* border color between topbar and content */
|
||||||
--MAIN-LINK-HOVER-color: rgb(112, 174, 245); /* hovered link color of content */
|
--MAIN-LINK-HOVER-color: rgb(112, 174, 245); /* hovered link color of content */
|
||||||
--MAIN-BG-color: rgba( 32, 32, 32, 1 ); /* background color of content */
|
--MAIN-BG-color: rgba(32, 32, 32, 1); /* background color of content */
|
||||||
--MAIN-TEXT-color: rgba( 224, 224, 224, 1 ); /* text color of content and h1 titles */
|
--MAIN-TEXT-color: rgba(224, 224, 224, 1); /* text color of content and h1 titles */
|
||||||
--MAIN-TITLES-TEXT-color: rgba( 255, 255, 255, 1 ); /* text color of h2-h6 titles and transparent box titles */
|
--MAIN-TITLES-TEXT-color: rgba(255, 255, 255, 1); /* text color of h2-h6 titles and transparent box titles */
|
||||||
|
|
||||||
--CODE-theme: relearn-dark; /* name of the chroma stylesheet file */
|
--CODE-theme: relearn-dark; /* name of the chroma stylesheet file */
|
||||||
--CODE-BLOCK-color: rgba( 248, 248, 242, 1 ); /* fallback text color of block code; should be adjusted to your selected chroma style */
|
--CODE-BLOCK-color: rgba(248, 248, 242, 1); /* fallback text color of block code; should be adjusted to your selected chroma style */
|
||||||
--CODE-BLOCK-BG-color: rgba( 43, 43, 43, 1 ); /* fallback background color of block code; should be adjusted to your selected chroma style */
|
--CODE-BLOCK-BG-color: rgba(43, 43, 43, 1); /* fallback background color of block code; should be adjusted to your selected chroma style */
|
||||||
--CODE-BLOCK-BORDER-color: rgba( 71, 71, 71, 1 ); /* border color of block code */
|
--CODE-BLOCK-BORDER-color: rgba(71, 71, 71, 1); /* border color of block code */
|
||||||
--CODE-INLINE-color: rgba( 130, 229, 80, 1 ); /* text color of inline code */
|
--CODE-INLINE-color: rgba(130, 229, 80, 1); /* text color of inline code */
|
||||||
--CODE-INLINE-BG-color: rgba( 45, 45, 45, 1 ); /* background color of inline code */
|
--CODE-INLINE-BG-color: rgba(45, 45, 45, 1); /* background color of inline code */
|
||||||
--CODE-INLINE-BORDER-color: rgba( 71, 71, 71, 1 ); /* border color of inline code */
|
--CODE-INLINE-BORDER-color: rgba(71, 71, 71, 1); /* border color of inline code */
|
||||||
|
|
||||||
--BROWSER-theme: dark; /* name of the theme for browser scrollbars of the main section */
|
--BROWSER-theme: dark; /* name of the theme for browser scrollbars of the main section */
|
||||||
--MERMAID-theme: dark; /* name of the default Mermaid theme for this variant, can be overridden in hugo.toml */
|
--MERMAID-theme: dark; /* name of the default Mermaid theme for this variant, can be overridden in hugo.toml */
|
||||||
--OPENAPI-theme: dark; /* name of the default OpenAPI theme for this variant, can be overridden in hugo.toml */
|
--OPENAPI-theme: dark; /* name of the default OpenAPI theme for this variant, can be overridden in hugo.toml */
|
||||||
--OPENAPI-CODE-theme: obsidian; /* name of the default OpenAPI code theme for this variant, can be overridden in hugo.toml */
|
--OPENAPI-CODE-theme: obsidian; /* name of the default OpenAPI code theme for this variant, can be overridden in hugo.toml */
|
||||||
|
|
||||||
--MENU-BORDER-color: rgba( 71, 71, 71, 1 ); /* border color between menu and content */
|
--MENU-BORDER-color: rgba(71, 71, 71, 1); /* border color between menu and content */
|
||||||
--MENU-TOPBAR-BORDER-color: rgba( 39, 39, 39, 1 ); /* separator color of vertical line between menu and topbar */
|
--MENU-TOPBAR-BORDER-color: rgba(39, 39, 39, 1); /* separator color of vertical line between menu and topbar */
|
||||||
--MENU-TOPBAR-SEPARATOR-color: rgba( 71, 71, 71, 1 ); /* separator color of vertical line between menu and topbar */
|
--MENU-TOPBAR-SEPARATOR-color: rgba(71, 71, 71, 1); /* separator color of vertical line between menu and topbar */
|
||||||
--MENU-HEADER-BG-color: transparent; /* background color of menu header */
|
--MENU-HEADER-BG-color: transparent; /* background color of menu header */
|
||||||
--MENU-HEADER-BORDER-color: transparent; /* border color between menu header and menu */
|
--MENU-HEADER-BORDER-color: transparent; /* border color between menu header and menu */
|
||||||
--MENU-HEADER-SEPARATOR-color: rgba( 71, 71, 71, .66 ); /* separator color between menu header and menu */
|
--MENU-HEADER-SEPARATOR-color: rgba(71, 71, 71, 0.66); /* separator color between menu header and menu */
|
||||||
|
|
||||||
--MENU-HOME-LINK-color: rgba( 224, 224, 224, 1 ); /* home button color if configured */
|
--MENU-HOME-LINK-color: rgba(224, 224, 224, 1); /* home button color if configured */
|
||||||
--MENU-HOME-LINK-HOVER-color: rgba( 47, 129, 235, 1 ); /* hovered home button color if configured */
|
--MENU-HOME-LINK-HOVER-color: rgba(47, 129, 235, 1); /* hovered home button color if configured */
|
||||||
|
|
||||||
--MENU-SEARCH-color: rgba( 47, 129, 235, 1 ); /* text and icon color of search box */
|
--MENU-SEARCH-color: rgba(47, 129, 235, 1); /* text and icon color of search box */
|
||||||
--MENU-SEARCH-BG-color: rgba( 32, 32, 32, 1 ); /* background color of search box */
|
--MENU-SEARCH-BG-color: rgba(32, 32, 32, 1); /* background color of search box */
|
||||||
--MENU-SEARCH-BORDER-color: rgba( 71, 71, 71, .66 ); /* border color of search box */
|
--MENU-SEARCH-BORDER-color: rgba(71, 71, 71, 0.66); /* border color of search box */
|
||||||
|
|
||||||
--MENU-SECTIONS-BG-color: rgba( 39, 39, 39, 1 ); /* background of the menu; this is NOT just a color value but can be a complete CSS background definition including gradients, etc. */
|
--MENU-SECTIONS-BG-color: rgba(39, 39, 39, 1); /* background of the menu; this is NOT just a color value but can be a complete CSS background definition including gradients, etc. */
|
||||||
--MENU-SECTIONS-ACTIVE-BG-color: transparent; /* background color of the active menu section */
|
--MENU-SECTIONS-ACTIVE-BG-color: transparent; /* background color of the active menu section */
|
||||||
--MENU-SECTIONS-LINK-color: rgba( 224, 224, 224, .75 ); /* link color of menu topics */
|
--MENU-SECTIONS-LINK-color: rgba(224, 224, 224, 0.75); /* link color of menu topics */
|
||||||
--MENU-SECTIONS-LINK-HOVER-color: rgba( 47, 129, 235, 1 ); /* hoverd link color of menu topics */
|
--MENU-SECTIONS-LINK-HOVER-color: rgba(47, 129, 235, 1); /* hoverd link color of menu topics */
|
||||||
--MENU-SECTION-ACTIVE-CATEGORY-color: rgba( 47, 129, 235, 1 ); /* text color of the displayed menu topic */
|
--MENU-SECTION-ACTIVE-CATEGORY-color: rgba(47, 129, 235, 1); /* text color of the displayed menu topic */
|
||||||
--MENU-SECTION-ACTIVE-CATEGORY-BG-color: rgba( 32, 32, 32, 1 ); /* background color of the displayed menu topic */
|
--MENU-SECTION-ACTIVE-CATEGORY-BG-color: rgba(32, 32, 32, 1); /* background color of the displayed menu topic */
|
||||||
--MENU-SECTION-SEPARATOR-color: rgba( 71, 71, 71, .66 ); /* separator color between menu sections and menu footer */
|
--MENU-SECTION-SEPARATOR-color: rgba(71, 71, 71, 0.66); /* separator color between menu sections and menu footer */
|
||||||
|
|
||||||
--BOX-CAPTION-color: rgba( 240, 240, 240, 1 ); /* text color of colored box titles */
|
--BOX-CAPTION-color: rgba(240, 240, 240, 1); /* text color of colored box titles */
|
||||||
--BOX-BG-color: rgba( 20, 20, 20, 1 ); /* background color of colored boxes */
|
--BOX-BG-color: rgba(20, 20, 20, 1); /* background color of colored boxes */
|
||||||
--BOX-TEXT-color: rgba( 224, 224, 224, 1 ); /* text color of colored box content */
|
--BOX-TEXT-color: rgba(224, 224, 224, 1); /* text color of colored box content */
|
||||||
|
|
||||||
--BOX-GREY-color: rgba( 71, 71, 71, 1 ); /* background color of grey boxes */
|
--BOX-GREY-color: rgba(71, 71, 71, 1); /* background color of grey boxes */
|
||||||
}
|
}
|
||||||
|
|
||||||
body a#R-logo,
|
body a#R-logo,
|
||||||
body a#R-logo:hover,
|
body a#R-logo:hover,
|
||||||
body #R-logo svg,
|
body #R-logo svg,
|
||||||
body #R-logo svg * {
|
body #R-logo svg * {
|
||||||
color: var(--MENU-HOME-LINK-color);
|
color: var(--MENU-HOME-LINK-color);
|
||||||
fill: var(--MENU-HOME-LINK-color) !important;
|
fill: var(--MENU-HOME-LINK-color) !important;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,59 +1,59 @@
|
||||||
:root {
|
:root {
|
||||||
--PRIMARY-color: rgba( 26, 115, 232, 1 ); /* brand primary color */
|
--PRIMARY-color: rgba(26, 115, 232, 1); /* brand primary color */
|
||||||
--SECONDARY-color: rgba( 26, 115, 232, 1 ); /* brand secondary color */
|
--SECONDARY-color: rgba(26, 115, 232, 1); /* brand secondary color */
|
||||||
|
|
||||||
--MAIN-TOPBAR-BORDER-color: rgba( 210, 210, 210, 1 ); /* border color between topbar and content */
|
--MAIN-TOPBAR-BORDER-color: rgba(210, 210, 210, 1); /* border color between topbar and content */
|
||||||
--MAIN-LINK-HOVER-color: rgba( 32, 40, 145, 1 ); /* hoverd link color of content */
|
--MAIN-LINK-HOVER-color: rgba(32, 40, 145, 1); /* hoverd link color of content */
|
||||||
--MAIN-BG-color: rgba( 255, 255, 255, 1 ); /* background color of content */
|
--MAIN-BG-color: rgba(255, 255, 255, 1); /* background color of content */
|
||||||
--MAIN-TEXT-color: rgba( 0, 0, 0, 1 ); /* text color of content and h1 titles */
|
--MAIN-TEXT-color: rgba(0, 0, 0, 1); /* text color of content and h1 titles */
|
||||||
--MAIN-TITLES-TEXT-color: rgba( 16, 16, 16, 1 ); /* text color of h2-h6 titles and transparent box titles */
|
--MAIN-TITLES-TEXT-color: rgba(16, 16, 16, 1); /* text color of h2-h6 titles and transparent box titles */
|
||||||
|
|
||||||
--CODE-theme: relearn-light; /* name of the chroma stylesheet file */
|
--CODE-theme: relearn-light; /* name of the chroma stylesheet file */
|
||||||
--CODE-BLOCK-color: rgba( 39, 40, 34, 1 ); /* fallback text color of block code; should be adjusted to your selected chroma style */
|
--CODE-BLOCK-color: rgba(39, 40, 34, 1); /* fallback text color of block code; should be adjusted to your selected chroma style */
|
||||||
--CODE-BLOCK-BG-color: rgba( 250, 250, 250, 1 ); /* fallback background color of block code; should be adjusted to your selected chroma style */
|
--CODE-BLOCK-BG-color: rgba(250, 250, 250, 1); /* fallback background color of block code; should be adjusted to your selected chroma style */
|
||||||
--CODE-BLOCK-BORDER-color: rgba( 210, 210, 210, 1 ); /* border color of block code */
|
--CODE-BLOCK-BORDER-color: rgba(210, 210, 210, 1); /* border color of block code */
|
||||||
--CODE-INLINE-color: rgba( 94, 94, 94, 1 ); /* text color of inline code */
|
--CODE-INLINE-color: rgba(94, 94, 94, 1); /* text color of inline code */
|
||||||
--CODE-INLINE-BG-color: rgba( 255, 250, 233, 1 ); /* background color of inline code */
|
--CODE-INLINE-BG-color: rgba(255, 250, 233, 1); /* background color of inline code */
|
||||||
--CODE-INLINE-BORDER-color: rgba( 248, 232, 200, 1 ); /* border color of inline code */
|
--CODE-INLINE-BORDER-color: rgba(248, 232, 200, 1); /* border color of inline code */
|
||||||
|
|
||||||
--BROWSER-theme: light; /* name of the theme for browser scrollbars of the main section */
|
--BROWSER-theme: light; /* name of the theme for browser scrollbars of the main section */
|
||||||
--MERMAID-theme: default; /* name of the default Mermaid theme for this variant, can be overridden in hugo.toml */
|
--MERMAID-theme: default; /* name of the default Mermaid theme for this variant, can be overridden in hugo.toml */
|
||||||
--OPENAPI-theme: light; /* name of the default OpenAPI theme for this variant, can be overridden in hugo.toml */
|
--OPENAPI-theme: light; /* name of the default OpenAPI theme for this variant, can be overridden in hugo.toml */
|
||||||
--OPENAPI-CODE-theme: idea; /* name of the default OpenAPI code theme for this variant, can be overridden in hugo.toml */
|
--OPENAPI-CODE-theme: idea; /* name of the default OpenAPI code theme for this variant, can be overridden in hugo.toml */
|
||||||
|
|
||||||
--MENU-BORDER-color: rgba( 210, 210, 210, 1 ); /* border color between menu and content */
|
--MENU-BORDER-color: rgba(210, 210, 210, 1); /* border color between menu and content */
|
||||||
--MENU-TOPBAR-BORDER-color: rgba( 247, 247, 247, 1 ); /* border color of vertical line between menu and topbar */
|
--MENU-TOPBAR-BORDER-color: rgba(247, 247, 247, 1); /* border color of vertical line between menu and topbar */
|
||||||
--MENU-TOPBAR-SEPARATOR-color: rgba( 210, 210, 210, 1 ); /* separator color of vertical line between menu and topbar */
|
--MENU-TOPBAR-SEPARATOR-color: rgba(210, 210, 210, 1); /* separator color of vertical line between menu and topbar */
|
||||||
--MENU-HEADER-BG-color: transparent; /* background color of menu header */
|
--MENU-HEADER-BG-color: transparent; /* background color of menu header */
|
||||||
--MENU-HEADER-BORDER-color: transparent; /* border color between menu header and menu */
|
--MENU-HEADER-BORDER-color: transparent; /* border color between menu header and menu */
|
||||||
--MENU-HEADER-SEPARATOR-color: rgba( 210, 210, 210, .66 ); /* separator color between menu header and menu */
|
--MENU-HEADER-SEPARATOR-color: rgba(210, 210, 210, 0.66); /* separator color between menu header and menu */
|
||||||
|
|
||||||
--MENU-HOME-LINK-color: rgba( 64, 64, 64, 1 ); /* home button color if configured */
|
--MENU-HOME-LINK-color: rgba(64, 64, 64, 1); /* home button color if configured */
|
||||||
--MENU-HOME-LINK-HOVER-color: rgba( 26, 115, 232, 1 ); /* hoverd home button color if configured */
|
--MENU-HOME-LINK-HOVER-color: rgba(26, 115, 232, 1); /* hoverd home button color if configured */
|
||||||
|
|
||||||
--MENU-SEARCH-color: rgba( 26, 115, 232, 1 ); /* text and icon color of search box */
|
--MENU-SEARCH-color: rgba(26, 115, 232, 1); /* text and icon color of search box */
|
||||||
--MENU-SEARCH-BG-color: rgba( 255, 255, 255, 1 ); /* background color of search box */
|
--MENU-SEARCH-BG-color: rgba(255, 255, 255, 1); /* background color of search box */
|
||||||
--MENU-SEARCH-BORDER-color: rgba( 210, 210, 210, .66 ); /* border color of search box */
|
--MENU-SEARCH-BORDER-color: rgba(210, 210, 210, 0.66); /* border color of search box */
|
||||||
|
|
||||||
--MENU-SECTIONS-BG-color: rgba( 134, 134, 134, .066 ); /* background of the menu; this is NOT just a color value but can be a complete CSS background definition including gradients, etc. */
|
--MENU-SECTIONS-BG-color: rgba(134, 134, 134, 0.066); /* background of the menu; this is NOT just a color value but can be a complete CSS background definition including gradients, etc. */
|
||||||
--MENU-SECTIONS-ACTIVE-BG-color: transparent; /* background color of the active menu section */
|
--MENU-SECTIONS-ACTIVE-BG-color: transparent; /* background color of the active menu section */
|
||||||
--MENU-SECTIONS-LINK-color: rgba( 16, 16, 16, 1 ); /* link color of menu topics */
|
--MENU-SECTIONS-LINK-color: rgba(16, 16, 16, 1); /* link color of menu topics */
|
||||||
--MENU-SECTIONS-LINK-HOVER-color: rgba( 26, 115, 232, 1 ); /* hoverd link color of menu topics */
|
--MENU-SECTIONS-LINK-HOVER-color: rgba(26, 115, 232, 1); /* hoverd link color of menu topics */
|
||||||
--MENU-SECTION-ACTIVE-CATEGORY-color: rgba( 26, 115, 232, 1 ); /* text color of the displayed menu topic */
|
--MENU-SECTION-ACTIVE-CATEGORY-color: rgba(26, 115, 232, 1); /* text color of the displayed menu topic */
|
||||||
--MENU-SECTION-ACTIVE-CATEGORY-BG-color: rgba( 255, 255, 255, 1 ); /* background color of the displayed menu topic */
|
--MENU-SECTION-ACTIVE-CATEGORY-BG-color: rgba(255, 255, 255, 1); /* background color of the displayed menu topic */
|
||||||
--MENU-SECTION-SEPARATOR-color: rgba( 210, 210, 210, .66 ); /* separator color between menu sections and menu footer */
|
--MENU-SECTION-SEPARATOR-color: rgba(210, 210, 210, 0.66); /* separator color between menu sections and menu footer */
|
||||||
|
|
||||||
--BOX-CAPTION-color: rgba( 255, 255, 255, 1 ); /* text color of colored box titles */
|
--BOX-CAPTION-color: rgba(255, 255, 255, 1); /* text color of colored box titles */
|
||||||
--BOX-BG-color: rgba( 255, 255, 255, .833 ); /* background color of colored boxes */
|
--BOX-BG-color: rgba(255, 255, 255, 0.833); /* background color of colored boxes */
|
||||||
--BOX-TEXT-color: rgba( 16, 16, 16, 1 ); /* text color of colored box content */
|
--BOX-TEXT-color: rgba(16, 16, 16, 1); /* text color of colored box content */
|
||||||
|
|
||||||
--BOX-GREY-color: rgba( 210, 210, 210, 1 ); /* background color of grey boxes */
|
--BOX-GREY-color: rgba(210, 210, 210, 1); /* background color of grey boxes */
|
||||||
}
|
}
|
||||||
|
|
||||||
body a#R-logo,
|
body a#R-logo,
|
||||||
body a#R-logo:hover,
|
body a#R-logo:hover,
|
||||||
body #R-logo svg,
|
body #R-logo svg,
|
||||||
body #R-logo svg * {
|
body #R-logo svg * {
|
||||||
color: var(--MENU-HOME-LINK-color);
|
color: var(--MENU-HOME-LINK-color);
|
||||||
fill: var(--MENU-HOME-LINK-color) !important;
|
fill: var(--MENU-HOME-LINK-color) !important;
|
||||||
}
|
}
|
||||||
|
|
2948
assets/css/theme.css
2948
assets/css/theme.css
File diff suppressed because it is too large
Load diff
|
@ -68,12 +68,12 @@ function processDirectory(directoryPath, oldDirectory, newDirectory, langs) {
|
||||||
if (!processDirectory(filePath, oldDirectory, newDirectory, langs)) {
|
if (!processDirectory(filePath, oldDirectory, newDirectory, langs)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
} else if (stats.isFile()){
|
} else if (stats.isFile()) {
|
||||||
// non-language files are a different beast: copy the file into all languages that don't have a language file
|
// non-language files are a different beast: copy the file into all languages that don't have a language file
|
||||||
const nonLangRegex = /^(.*?)(\.([^.]+))?$/;
|
const nonLangRegex = /^(.*?)(\.([^.]+))?$/;
|
||||||
const nonLangMatch = file.match(nonLangRegex);
|
const nonLangMatch = file.match(nonLangRegex);
|
||||||
const fileName = nonLangMatch[1];
|
const fileName = nonLangMatch[1];
|
||||||
const fileExtension = nonLangMatch.length > 3 ? nonLangMatch[3] : "";
|
const fileExtension = nonLangMatch.length > 3 ? nonLangMatch[3] : '';
|
||||||
Object.keys(langs).forEach((fileLang) => {
|
Object.keys(langs).forEach((fileLang) => {
|
||||||
const langFilePath = path.join(directoryPath, fileName + '.' + fileLang + '.' + fileExtension);
|
const langFilePath = path.join(directoryPath, fileName + '.' + fileLang + '.' + fileExtension);
|
||||||
const langExists = fs.existsSync(langFilePath);
|
const langExists = fs.existsSync(langFilePath);
|
||||||
|
@ -103,14 +103,12 @@ function processDirectory(directoryPath, oldDirectory, newDirectory, langs) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
function modifyConfig(configDirectory) {
|
function modifyConfig(configDirectory) {}
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
function runThatShit(contentDirectory) {
|
function runThatShit(contentDirectory) {
|
||||||
const sourceDirectory = contentDirectory;
|
const sourceDirectory = contentDirectory;
|
||||||
const backupDirectory = contentDirectory + ".backup";
|
const backupDirectory = contentDirectory + '.backup';
|
||||||
const targetDirectory = contentDirectory + ".temp";
|
const targetDirectory = contentDirectory + '.temp';
|
||||||
|
|
||||||
// check directories
|
// check directories
|
||||||
try {
|
try {
|
||||||
|
@ -149,7 +147,7 @@ function runThatShit(contentDirectory) {
|
||||||
|
|
||||||
// convert that shit
|
// convert that shit
|
||||||
const langs = getLanguages(sourceDirectory);
|
const langs = getLanguages(sourceDirectory);
|
||||||
if( !processDirectory(sourceDirectory, sourceDirectory, targetDirectory, langs) ){
|
if (!processDirectory(sourceDirectory, sourceDirectory, targetDirectory, langs)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -164,7 +162,7 @@ function runThatShit(contentDirectory) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// edit the config file accordingly
|
// edit the config file accordingly
|
||||||
modifyConfig(path.join(sourceDirectory, ".."));
|
modifyConfig(path.join(sourceDirectory, '..'));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
7.1.1+57defcfab75859c444feb8af753a2b764cb6f64c
|
7.1.1+85d43bcef3403a38c509d04606f2cd8ca91c8bd5
|
|
@ -1,128 +1,130 @@
|
||||||
window.relearn = window.relearn || {};
|
window.relearn = window.relearn || {};
|
||||||
|
|
||||||
window.relearn.runInitialSearch = function(){
|
window.relearn.runInitialSearch = function () {
|
||||||
if( window.relearn.isSearchInit && window.relearn.isLunrInit ){
|
if (window.relearn.isSearchInit && window.relearn.isLunrInit) {
|
||||||
var input = document.querySelector('#R-search-by-detail');
|
var input = document.querySelector('#R-search-by-detail');
|
||||||
if( !input ){
|
if (!input) {
|
||||||
return;
|
return;
|
||||||
}
|
|
||||||
var value = input.value;
|
|
||||||
searchDetail( value );
|
|
||||||
}
|
}
|
||||||
}
|
var value = input.value;
|
||||||
|
searchDetail(value);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
var lunrIndex, pagesIndex;
|
var lunrIndex, pagesIndex;
|
||||||
|
|
||||||
function initLunrIndex( index ){
|
function initLunrIndex(index) {
|
||||||
pagesIndex = index;
|
pagesIndex = index;
|
||||||
// Set up Lunr by declaring the fields we use
|
// Set up Lunr by declaring the fields we use
|
||||||
// Also provide their boost level for the ranking
|
// Also provide their boost level for the ranking
|
||||||
lunrIndex = lunr(function() {
|
lunrIndex = lunr(function () {
|
||||||
this.use(lunr.multiLanguage.apply(null, contentLangs));
|
this.use(lunr.multiLanguage.apply(null, contentLangs));
|
||||||
this.ref('index');
|
this.ref('index');
|
||||||
this.field('title', {
|
this.field('title', {
|
||||||
boost: 15
|
boost: 15,
|
||||||
});
|
});
|
||||||
this.field('tags', {
|
this.field('tags', {
|
||||||
boost: 10
|
boost: 10,
|
||||||
});
|
});
|
||||||
this.field('content', {
|
this.field('content', {
|
||||||
boost: 5
|
boost: 5,
|
||||||
});
|
|
||||||
|
|
||||||
this.pipeline.remove(lunr.stemmer);
|
|
||||||
this.searchPipeline.remove(lunr.stemmer);
|
|
||||||
|
|
||||||
// Feed Lunr with each file and let LUnr actually index them
|
|
||||||
pagesIndex.forEach(function(page, idx) {
|
|
||||||
page.index = idx;
|
|
||||||
this.add(page);
|
|
||||||
}, this);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
window.relearn.isLunrInit = true;
|
this.pipeline.remove(lunr.stemmer);
|
||||||
window.relearn.runInitialSearch();
|
this.searchPipeline.remove(lunr.stemmer);
|
||||||
|
|
||||||
|
// Feed Lunr with each file and let LUnr actually index them
|
||||||
|
pagesIndex.forEach(function (page, idx) {
|
||||||
|
page.index = idx;
|
||||||
|
this.add(page);
|
||||||
|
}, this);
|
||||||
|
});
|
||||||
|
|
||||||
|
window.relearn.isLunrInit = true;
|
||||||
|
window.relearn.runInitialSearch();
|
||||||
}
|
}
|
||||||
|
|
||||||
function triggerSearch(){
|
function triggerSearch() {
|
||||||
var input = document.querySelector('#R-search-by-detail');
|
var input = document.querySelector('#R-search-by-detail');
|
||||||
if( !input ){
|
if (!input) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
var value = input.value;
|
var value = input.value;
|
||||||
searchDetail( value );
|
searchDetail(value);
|
||||||
|
|
||||||
// add a new entry to the history after the user
|
// add a new entry to the history after the user
|
||||||
// changed the term; this does not reload the page
|
// changed the term; this does not reload the page
|
||||||
// but will add to the history and update the address bar URL
|
// but will add to the history and update the address bar URL
|
||||||
var url = new URL( window.location );
|
var url = new URL(window.location);
|
||||||
var oldValue = url.searchParams.get( 'search-by' );
|
var oldValue = url.searchParams.get('search-by');
|
||||||
if( value != oldValue ){
|
if (value != oldValue) {
|
||||||
var state = window.history.state || {};
|
var state = window.history.state || {};
|
||||||
state = Object.assign( {}, ( typeof state === 'object' ) ? state : {} );
|
state = Object.assign({}, typeof state === 'object' ? state : {});
|
||||||
url.searchParams.set( 'search-by', value );
|
url.searchParams.set('search-by', value);
|
||||||
state.search = url.toString();
|
state.search = url.toString();
|
||||||
// with normal pages, this is handled by the 'pagehide' event, but this
|
// with normal pages, this is handled by the 'pagehide' event, but this
|
||||||
// doesn't fire in case of pushState, so we have to do the same thing
|
// doesn't fire in case of pushState, so we have to do the same thing
|
||||||
// here, too
|
// here, too
|
||||||
state.contentScrollTop = +elc.scrollTop;
|
state.contentScrollTop = +elc.scrollTop;
|
||||||
window.history.pushState( state, '', url );
|
window.history.pushState(state, '', url);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
window.addEventListener( 'popstate', function ( event ){
|
window.addEventListener('popstate', function (event) {
|
||||||
// restart search if browsed through history
|
// restart search if browsed through history
|
||||||
if( event.state ){
|
if (event.state) {
|
||||||
var state = window.history.state || {};
|
var state = window.history.state || {};
|
||||||
state = Object.assign( {}, ( typeof state === 'object' ) ? state : {} );
|
state = Object.assign({}, typeof state === 'object' ? state : {});
|
||||||
if( state.search ) {
|
if (state.search) {
|
||||||
var url = new URL( state.search );
|
var url = new URL(state.search);
|
||||||
if( url.searchParams.has('search-by') ){
|
if (url.searchParams.has('search-by')) {
|
||||||
var search = url.searchParams.get( 'search-by' );
|
var search = url.searchParams.get('search-by');
|
||||||
|
|
||||||
// we have to insert the old search term into the inputs
|
// we have to insert the old search term into the inputs
|
||||||
var inputs = document.querySelectorAll( 'input.search-by' );
|
var inputs = document.querySelectorAll('input.search-by');
|
||||||
inputs.forEach( function( e ){
|
inputs.forEach(function (e) {
|
||||||
e.value = search;
|
e.value = search;
|
||||||
var event = document.createEvent( 'Event' );
|
var event = document.createEvent('Event');
|
||||||
event.initEvent( 'input', false, false );
|
event.initEvent('input', false, false);
|
||||||
e.dispatchEvent( event );
|
e.dispatchEvent(event);
|
||||||
});
|
});
|
||||||
|
|
||||||
// recreate the last search results and eventually
|
// recreate the last search results and eventually
|
||||||
// restore the previous scrolling position
|
// restore the previous scrolling position
|
||||||
searchDetail( search );
|
searchDetail(search);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
var input = document.querySelector('#R-search-by-detail');
|
var input = document.querySelector('#R-search-by-detail');
|
||||||
if( input ){
|
if (input) {
|
||||||
input.addEventListener( 'keydown', function(event) {
|
input.addEventListener('keydown', function (event) {
|
||||||
// if we are pressing ESC in the searchdetail our focus will
|
// if we are pressing ESC in the searchdetail our focus will
|
||||||
// be stolen by the other event handlers, so we have to refocus
|
// be stolen by the other event handlers, so we have to refocus
|
||||||
// here after a short while
|
// here after a short while
|
||||||
if (event.key == "Escape") {
|
if (event.key == 'Escape') {
|
||||||
setTimeout( function(){ input.focus(); }, 0 );
|
setTimeout(function () {
|
||||||
}
|
input.focus();
|
||||||
});
|
}, 0);
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function initLunrJs() {
|
function initLunrJs() {
|
||||||
// new way to load our search index
|
// new way to load our search index
|
||||||
if( window.index_js_url ){
|
if (window.index_js_url) {
|
||||||
var js = document.createElement("script");
|
var js = document.createElement('script');
|
||||||
js.src = index_js_url;
|
js.src = index_js_url;
|
||||||
js.setAttribute("async", "");
|
js.setAttribute('async', '');
|
||||||
js.onload = function(){
|
js.onload = function () {
|
||||||
initLunrIndex(relearn_searchindex);
|
initLunrIndex(relearn_searchindex);
|
||||||
};
|
};
|
||||||
js.onerror = function(e){
|
js.onerror = function (e) {
|
||||||
console.error('Error getting Hugo index file');
|
console.error('Error getting Hugo index file');
|
||||||
};
|
};
|
||||||
document.head.appendChild(js);
|
document.head.appendChild(js);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -132,158 +134,186 @@ function initLunrJs() {
|
||||||
* @return {Array} results
|
* @return {Array} results
|
||||||
*/
|
*/
|
||||||
function search(term) {
|
function search(term) {
|
||||||
// Find the item in our index corresponding to the Lunr one to have more info
|
// Find the item in our index corresponding to the Lunr one to have more info
|
||||||
// Remove Lunr special search characters: https://lunrjs.com/guides/searching.html
|
// Remove Lunr special search characters: https://lunrjs.com/guides/searching.html
|
||||||
term = term.replace( /[*:^~+-]/g, ' ' );
|
term = term.replace(/[*:^~+-]/g, ' ');
|
||||||
var searchTerm = lunr.tokenizer( term ).reduce( function(a,token){return a.concat(searchPatterns(token.str))}, []).join(' ');
|
var searchTerm = lunr
|
||||||
return !searchTerm || !lunrIndex ? [] : lunrIndex.search(searchTerm).map(function(result) {
|
.tokenizer(term)
|
||||||
return { index: result.ref, matches: Object.keys(result.matchData.metadata) }
|
.reduce(function (a, token) {
|
||||||
});
|
return a.concat(searchPatterns(token.str));
|
||||||
|
}, [])
|
||||||
|
.join(' ');
|
||||||
|
return !searchTerm || !lunrIndex
|
||||||
|
? []
|
||||||
|
: lunrIndex.search(searchTerm).map(function (result) {
|
||||||
|
return { index: result.ref, matches: Object.keys(result.matchData.metadata) };
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function searchPatterns(word) {
|
function searchPatterns(word) {
|
||||||
// for short words high amounts of typos doesn't make sense
|
// for short words high amounts of typos doesn't make sense
|
||||||
// for long words we allow less typos because this largly increases search time
|
// for long words we allow less typos because this largly increases search time
|
||||||
var typos = [
|
var typos = [
|
||||||
{ len: -1, typos: 1 },
|
{ len: -1, typos: 1 },
|
||||||
{ len: 60, typos: 2 },
|
{ len: 60, typos: 2 },
|
||||||
{ len: 40, typos: 3 },
|
{ len: 40, typos: 3 },
|
||||||
{ len: 20, typos: 4 },
|
{ len: 20, typos: 4 },
|
||||||
{ len: 16, typos: 3 },
|
{ len: 16, typos: 3 },
|
||||||
{ len: 12, typos: 2 },
|
{ len: 12, typos: 2 },
|
||||||
{ len: 8, typos: 1 },
|
{ len: 8, typos: 1 },
|
||||||
{ len: 4, typos: 0 },
|
{ len: 4, typos: 0 },
|
||||||
];
|
];
|
||||||
return [
|
return [
|
||||||
word + '^100',
|
word + '^100',
|
||||||
word + '*^10',
|
word + '*^10',
|
||||||
'*' + word + '^10',
|
'*' + word + '^10',
|
||||||
word + '~' + typos.reduce( function( a, c, i ){ return word.length < c.len ? c : a; } ).typos + '^1'
|
word +
|
||||||
];
|
'~' +
|
||||||
|
typos.reduce(function (a, c, i) {
|
||||||
|
return word.length < c.len ? c : a;
|
||||||
|
}).typos +
|
||||||
|
'^1',
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function resolvePlaceholders(s, args) {
|
||||||
|
var args = args || [];
|
||||||
|
// use replace to iterate over the string
|
||||||
|
// select the match and check if the related argument is present
|
||||||
|
// if yes, replace the match with the argument
|
||||||
|
return s.replace(/{([0-9]+)}/g, function (match, index) {
|
||||||
|
// check if the argument is present
|
||||||
|
return typeof args[index] == 'undefined' ? match : args[index];
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
function resolvePlaceholders( s, args ) {
|
function searchDetail(value) {
|
||||||
var args = args || [];
|
var results = document.querySelector('#R-searchresults');
|
||||||
// use replace to iterate over the string
|
var hint = document.querySelector('.searchhint');
|
||||||
// select the match and check if the related argument is present
|
hint.innerText = '';
|
||||||
// if yes, replace the match with the argument
|
results.textContent = '';
|
||||||
return s.replace(/{([0-9]+)}/g, function (match, index) {
|
var a = search(value);
|
||||||
// check if the argument is present
|
if (a.length) {
|
||||||
return typeof args[index] == 'undefined' ? match : args[index];
|
hint.innerText = resolvePlaceholders(window.T_N_results_found, [value, a.length]);
|
||||||
|
a.forEach(function (item) {
|
||||||
|
var page = pagesIndex[item.index];
|
||||||
|
var numContextWords = 10;
|
||||||
|
var contextPattern =
|
||||||
|
'(?:\\S+ +){0,' +
|
||||||
|
numContextWords +
|
||||||
|
'}\\S*\\b(?:' +
|
||||||
|
item.matches
|
||||||
|
.map(function (match) {
|
||||||
|
return match.replace(/\W/g, '\\$&');
|
||||||
|
})
|
||||||
|
.join('|') +
|
||||||
|
')\\b\\S*(?: +\\S+){0,' +
|
||||||
|
numContextWords +
|
||||||
|
'}';
|
||||||
|
var context = page.content.match(new RegExp(contextPattern, 'i'));
|
||||||
|
var divsuggestion = document.createElement('a');
|
||||||
|
divsuggestion.className = 'autocomplete-suggestion';
|
||||||
|
divsuggestion.setAttribute('data-term', value);
|
||||||
|
divsuggestion.setAttribute('data-title', page.title);
|
||||||
|
divsuggestion.setAttribute('href', window.relearn.relBaseUri + page.uri);
|
||||||
|
divsuggestion.setAttribute('data-context', context);
|
||||||
|
var divtitle = document.createElement('div');
|
||||||
|
divtitle.className = 'title';
|
||||||
|
divtitle.innerText = '» ' + page.title;
|
||||||
|
divsuggestion.appendChild(divtitle);
|
||||||
|
var divbreadcrumb = document.createElement('div');
|
||||||
|
divbreadcrumb.className = 'breadcrumbs';
|
||||||
|
divbreadcrumb.innerText = page.breadcrumb || '';
|
||||||
|
divsuggestion.appendChild(divbreadcrumb);
|
||||||
|
if (context) {
|
||||||
|
var divcontext = document.createElement('div');
|
||||||
|
divcontext.className = 'context';
|
||||||
|
divcontext.innerText = context || '';
|
||||||
|
divsuggestion.appendChild(divcontext);
|
||||||
|
}
|
||||||
|
results.appendChild(divsuggestion);
|
||||||
});
|
});
|
||||||
};
|
window.relearn.markSearch();
|
||||||
|
} else if (value.length) {
|
||||||
|
hint.innerText = resolvePlaceholders(window.T_No_results_found, [value]);
|
||||||
|
}
|
||||||
|
input.focus();
|
||||||
|
setTimeout(adjustContentWidth, 0);
|
||||||
|
|
||||||
function searchDetail( value ) {
|
// if we are initiating search because of a browser history
|
||||||
var results = document.querySelector('#R-searchresults');
|
// operation, we have to restore the scrolling postion the
|
||||||
var hint = document.querySelector('.searchhint');
|
// user previously has used; if this search isn't initiated
|
||||||
hint.innerText = '';
|
// by a browser history operation, it simply does nothing
|
||||||
results.textContent = '';
|
var state = window.history.state || {};
|
||||||
var a = search( value );
|
state = Object.assign({}, typeof state === 'object' ? state : {});
|
||||||
if( a.length ){
|
if (state.hasOwnProperty('contentScrollTop')) {
|
||||||
hint.innerText = resolvePlaceholders( window.T_N_results_found, [ value, a.length ] );
|
window.setTimeout(function () {
|
||||||
a.forEach( function(item){
|
elc.scrollTop = +state.contentScrollTop;
|
||||||
var page = pagesIndex[item.index];
|
}, 10);
|
||||||
var numContextWords = 10;
|
return;
|
||||||
var contextPattern = '(?:\\S+ +){0,' + numContextWords + '}\\S*\\b(?:' +
|
}
|
||||||
item.matches.map( function(match){return match.replace(/\W/g, '\\$&')} ).join('|') +
|
|
||||||
')\\b\\S*(?: +\\S+){0,' + numContextWords + '}';
|
|
||||||
var context = page.content.match(new RegExp(contextPattern, 'i'));
|
|
||||||
var divsuggestion = document.createElement('a');
|
|
||||||
divsuggestion.className = 'autocomplete-suggestion';
|
|
||||||
divsuggestion.setAttribute('data-term', value);
|
|
||||||
divsuggestion.setAttribute('data-title', page.title);
|
|
||||||
divsuggestion.setAttribute('href', window.relearn.relBaseUri + page.uri);
|
|
||||||
divsuggestion.setAttribute('data-context', context);
|
|
||||||
var divtitle = document.createElement('div');
|
|
||||||
divtitle.className = 'title';
|
|
||||||
divtitle.innerText = '» ' + page.title;
|
|
||||||
divsuggestion.appendChild( divtitle );
|
|
||||||
var divbreadcrumb = document.createElement('div');
|
|
||||||
divbreadcrumb.className = 'breadcrumbs';
|
|
||||||
divbreadcrumb.innerText = (page.breadcrumb || '');
|
|
||||||
divsuggestion.appendChild( divbreadcrumb );
|
|
||||||
if( context ){
|
|
||||||
var divcontext = document.createElement('div');
|
|
||||||
divcontext.className = 'context';
|
|
||||||
divcontext.innerText = (context || '');
|
|
||||||
divsuggestion.appendChild( divcontext );
|
|
||||||
}
|
|
||||||
results.appendChild( divsuggestion );
|
|
||||||
});
|
|
||||||
window.relearn.markSearch();
|
|
||||||
}
|
|
||||||
else if( value.length ) {
|
|
||||||
hint.innerText = resolvePlaceholders( window.T_No_results_found, [ value ] );
|
|
||||||
}
|
|
||||||
input.focus();
|
|
||||||
setTimeout( adjustContentWidth, 0 );
|
|
||||||
|
|
||||||
// if we are initiating search because of a browser history
|
|
||||||
// operation, we have to restore the scrolling postion the
|
|
||||||
// user previously has used; if this search isn't initiated
|
|
||||||
// by a browser history operation, it simply does nothing
|
|
||||||
var state = window.history.state || {};
|
|
||||||
state = Object.assign( {}, ( typeof state === 'object' ) ? state : {} );
|
|
||||||
if( state.hasOwnProperty( 'contentScrollTop' ) ){
|
|
||||||
window.setTimeout( function(){
|
|
||||||
elc.scrollTop = +state.contentScrollTop;
|
|
||||||
}, 10 );
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
initLunrJs();
|
initLunrJs();
|
||||||
|
|
||||||
function startSearch(){
|
function startSearch() {
|
||||||
var input = document.querySelector('#R-search-by-detail');
|
var input = document.querySelector('#R-search-by-detail');
|
||||||
if( input ){
|
if (input) {
|
||||||
var state = window.history.state || {};
|
var state = window.history.state || {};
|
||||||
state = Object.assign( {}, ( typeof state === 'object' ) ? state : {} );
|
state = Object.assign({}, typeof state === 'object' ? state : {});
|
||||||
state.search = window.location.toString();
|
state.search = window.location.toString();
|
||||||
window.history.replaceState( state, '', window.location );
|
window.history.replaceState(state, '', window.location);
|
||||||
}
|
}
|
||||||
|
|
||||||
var searchList = new autoComplete({
|
var searchList = new autoComplete({
|
||||||
/* selector for the search box element */
|
/* selector for the search box element */
|
||||||
selectorToInsert: 'search:has(.searchbox)',
|
selectorToInsert: 'search:has(.searchbox)',
|
||||||
selector: '#R-search-by',
|
selector: '#R-search-by',
|
||||||
/* source is the callback to perform the search */
|
/* source is the callback to perform the search */
|
||||||
source: function(term, response) {
|
source: function (term, response) {
|
||||||
response(search(term));
|
response(search(term));
|
||||||
},
|
},
|
||||||
/* renderItem displays individual search results */
|
/* renderItem displays individual search results */
|
||||||
renderItem: function(item, term) {
|
renderItem: function (item, term) {
|
||||||
var page = pagesIndex[item.index];
|
var page = pagesIndex[item.index];
|
||||||
var numContextWords = 2;
|
var numContextWords = 2;
|
||||||
var contextPattern = '(?:\\S+ +){0,' + numContextWords + '}\\S*\\b(?:' +
|
var contextPattern =
|
||||||
item.matches.map( function(match){return match.replace(/\W/g, '\\$&')} ).join('|') +
|
'(?:\\S+ +){0,' +
|
||||||
')\\b\\S*(?: +\\S+){0,' + numContextWords + '}';
|
numContextWords +
|
||||||
var context = page.content.match(new RegExp(contextPattern, 'i'));
|
'}\\S*\\b(?:' +
|
||||||
var divsuggestion = document.createElement('div');
|
item.matches
|
||||||
divsuggestion.className = 'autocomplete-suggestion';
|
.map(function (match) {
|
||||||
divsuggestion.setAttribute('data-term', term);
|
return match.replace(/\W/g, '\\$&');
|
||||||
divsuggestion.setAttribute('data-title', page.title);
|
})
|
||||||
divsuggestion.setAttribute('data-uri', window.relearn.relBaseUri + page.uri);
|
.join('|') +
|
||||||
divsuggestion.setAttribute('data-context', context);
|
')\\b\\S*(?: +\\S+){0,' +
|
||||||
var divtitle = document.createElement('div');
|
numContextWords +
|
||||||
divtitle.className = 'title';
|
'}';
|
||||||
divtitle.innerText = '» ' + page.title;
|
var context = page.content.match(new RegExp(contextPattern, 'i'));
|
||||||
divsuggestion.appendChild( divtitle );
|
var divsuggestion = document.createElement('div');
|
||||||
if( context ){
|
divsuggestion.className = 'autocomplete-suggestion';
|
||||||
var divcontext = document.createElement('div');
|
divsuggestion.setAttribute('data-term', term);
|
||||||
divcontext.className = 'context';
|
divsuggestion.setAttribute('data-title', page.title);
|
||||||
divcontext.innerText = (context || '');
|
divsuggestion.setAttribute('data-uri', window.relearn.relBaseUri + page.uri);
|
||||||
divsuggestion.appendChild( divcontext );
|
divsuggestion.setAttribute('data-context', context);
|
||||||
}
|
var divtitle = document.createElement('div');
|
||||||
return divsuggestion.outerHTML;
|
divtitle.className = 'title';
|
||||||
},
|
divtitle.innerText = '» ' + page.title;
|
||||||
/* onSelect callback fires when a search suggestion is chosen */
|
divsuggestion.appendChild(divtitle);
|
||||||
onSelect: function(e, term, item) {
|
if (context) {
|
||||||
location.href = item.getAttribute('data-uri');
|
var divcontext = document.createElement('div');
|
||||||
e.preventDefault();
|
divcontext.className = 'context';
|
||||||
}
|
divcontext.innerText = context || '';
|
||||||
});
|
divsuggestion.appendChild(divcontext);
|
||||||
};
|
}
|
||||||
|
return divsuggestion.outerHTML;
|
||||||
|
},
|
||||||
|
/* onSelect callback fires when a search suggestion is chosen */
|
||||||
|
onSelect: function (e, term, item) {
|
||||||
|
location.href = item.getAttribute('data-uri');
|
||||||
|
e.preventDefault();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
ready( startSearch );
|
ready(startSearch);
|
||||||
|
|
3220
static/js/theme.js
3220
static/js/theme.js
File diff suppressed because it is too large
Load diff
1280
static/js/variant.js
1280
static/js/variant.js
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue