@netfoundry/docusaurus-theme 0.7.1 → 0.7.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css/.claude/settings.local.json +12 -0
- package/css/legacy.css +6 -1
- package/dist/css/legacy.css +6 -1
- package/package.json +1 -1
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"permissions": {
|
|
3
|
+
"allow": [
|
|
4
|
+
"WebFetch(domain:netfoundry.io)",
|
|
5
|
+
"WebSearch",
|
|
6
|
+
"WebFetch(domain:github.com)",
|
|
7
|
+
"WebFetch(domain:colineberhardt.github.io)",
|
|
8
|
+
"WebFetch(domain:cla-assistant.io)",
|
|
9
|
+
"WebFetch(domain:raw.githubusercontent.com)"
|
|
10
|
+
]
|
|
11
|
+
}
|
|
12
|
+
}
|
package/css/legacy.css
CHANGED
|
@@ -1974,7 +1974,7 @@ code {
|
|
|
1974
1974
|
background: var(--ziti-code-block-background-color);
|
|
1975
1975
|
color: var(--ziti-code-block-font-color);
|
|
1976
1976
|
border-color: var(--ziti-code-block-border-color);
|
|
1977
|
-
white-space:
|
|
1977
|
+
white-space: pre;
|
|
1978
1978
|
}
|
|
1979
1979
|
|
|
1980
1980
|
code p {
|
|
@@ -2312,3 +2312,8 @@ aside nav {
|
|
|
2312
2312
|
margin-top: 0 !important;
|
|
2313
2313
|
}
|
|
2314
2314
|
}
|
|
2315
|
+
|
|
2316
|
+
li .theme-admonition { /* mar-03-2026. Admonitions inside lists didn't have any padding/margin */
|
|
2317
|
+
margin-top: 1em;
|
|
2318
|
+
margin-bottom: 1em;
|
|
2319
|
+
}
|
package/dist/css/legacy.css
CHANGED
|
@@ -1974,7 +1974,7 @@ code {
|
|
|
1974
1974
|
background: var(--ziti-code-block-background-color);
|
|
1975
1975
|
color: var(--ziti-code-block-font-color);
|
|
1976
1976
|
border-color: var(--ziti-code-block-border-color);
|
|
1977
|
-
white-space:
|
|
1977
|
+
white-space: pre;
|
|
1978
1978
|
}
|
|
1979
1979
|
|
|
1980
1980
|
code p {
|
|
@@ -2312,3 +2312,8 @@ aside nav {
|
|
|
2312
2312
|
margin-top: 0 !important;
|
|
2313
2313
|
}
|
|
2314
2314
|
}
|
|
2315
|
+
|
|
2316
|
+
li .theme-admonition { /* mar-03-2026. Admonitions inside lists didn't have any padding/margin */
|
|
2317
|
+
margin-top: 1em;
|
|
2318
|
+
margin-bottom: 1em;
|
|
2319
|
+
}
|
package/package.json
CHANGED