Skip to content

Commit

Permalink
deploy: e6f1597
Browse files Browse the repository at this point in the history
  • Loading branch information
max-nextcloud committed Feb 11, 2025
1 parent 038701e commit 1b81cfe
Show file tree
Hide file tree
Showing 48 changed files with 168 additions and 92 deletions.
39 changes: 23 additions & 16 deletions assets/highlight.css
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
:root {
--light-hl-0: #AF00DB;
--dark-hl-0: #C586C0;
--light-hl-1: #000000;
--dark-hl-1: #D4D4D4;
--light-hl-2: #001080;
--dark-hl-2: #9CDCFE;
--light-hl-3: #A31515;
--dark-hl-3: #CE9178;
--light-hl-4: #795E26;
--dark-hl-4: #DCDCAA;
--light-hl-5: #008000;
--dark-hl-5: #6A9955;
--light-hl-6: #0000FF;
--dark-hl-6: #569CD6;
--light-hl-7: #0070C1;
--dark-hl-7: #4FC1FF;
--light-hl-0: #000000;
--dark-hl-0: #D4D4D4;
--light-hl-1: #001080;
--dark-hl-1: #9CDCFE;
--light-hl-2: #A31515;
--dark-hl-2: #CE9178;
--light-hl-3: #0451A5;
--dark-hl-3: #9CDCFE;
--light-hl-4: #AF00DB;
--dark-hl-4: #C586C0;
--light-hl-5: #795E26;
--dark-hl-5: #DCDCAA;
--light-hl-6: #008000;
--dark-hl-6: #6A9955;
--light-hl-7: #0000FF;
--dark-hl-7: #569CD6;
--light-hl-8: #0070C1;
--dark-hl-8: #4FC1FF;
--light-code-background: #FFFFFF;
--dark-code-background: #1E1E1E;
}
Expand All @@ -28,6 +30,7 @@
--hl-5: var(--light-hl-5);
--hl-6: var(--light-hl-6);
--hl-7: var(--light-hl-7);
--hl-8: var(--light-hl-8);
--code-background: var(--light-code-background);
} }

Expand All @@ -40,6 +43,7 @@
--hl-5: var(--dark-hl-5);
--hl-6: var(--dark-hl-6);
--hl-7: var(--dark-hl-7);
--hl-8: var(--dark-hl-8);
--code-background: var(--dark-code-background);
} }

Expand All @@ -52,6 +56,7 @@
--hl-5: var(--light-hl-5);
--hl-6: var(--light-hl-6);
--hl-7: var(--light-hl-7);
--hl-8: var(--light-hl-8);
--code-background: var(--light-code-background);
}

Expand All @@ -64,6 +69,7 @@
--hl-5: var(--dark-hl-5);
--hl-6: var(--dark-hl-6);
--hl-7: var(--dark-hl-7);
--hl-8: var(--dark-hl-8);
--code-background: var(--dark-code-background);
}

Expand All @@ -75,4 +81,5 @@
.hl-5 { color: var(--hl-5); }
.hl-6 { color: var(--hl-6); }
.hl-7 { color: var(--hl-7); }
.hl-8 { color: var(--hl-8); }
pre, code { background: var(--code-background); }
8 changes: 4 additions & 4 deletions assets/main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/navigation.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion assets/search.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions assets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -991,14 +991,15 @@
vertical-align: text-top;
}
/*
We need to be careful to target the arrow indicating whether the accordion
is open, but not any other SVGs included in the details element.
*/
* We need to be careful to target the arrow indicating whether the accordion
* is open, but not any other SVGs included in the details element.
*/
.tsd-accordion:not([open]) > .tsd-accordion-summary > svg:first-child,
.tsd-accordion:not([open]) > .tsd-accordion-summary > h1 > svg:first-child,
.tsd-accordion:not([open]) > .tsd-accordion-summary > h2 > svg:first-child,
.tsd-accordion:not([open]) > .tsd-accordion-summary > h3 > svg:first-child,
.tsd-accordion:not([open]) > .tsd-accordion-summary > h4 > svg:first-child {
.tsd-accordion:not([open]) > .tsd-accordion-summary > h4 > svg:first-child,
.tsd-accordion:not([open]) > .tsd-accordion-summary > h5 > svg:first-child {
transform: rotate(-90deg);
}
.tsd-index-content > :not(:first-child) {
Expand Down
Loading

0 comments on commit 1b81cfe

Please sign in to comment.