master
old-tom 7 months ago
parent f79e85fc5f
commit c119a20827

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -1,10 +1,22 @@
/* -------- FRONT MATTER --------- /* -------- FRONT MATTER ---------
** Theme: Obsidian Typewriter ** Theme: Obsidian Typewriter
** Version number: 2.1.6 ** Version number: 2.1.9
** GitHub Repo: https://github.com/crashmoney/obsidian-typewriter ** GitHub Repo: https://github.com/crashmoney/obsidian-typewriter
** Made by: crashmoney ** Made by: crashmoney
----------------------------------- */ ----------------------------------- */
/* +++ TOC
|_ FONT FACES
|_ COLOR VARIABLES
|_ LIGHT MODE
|_ DARK MODE
|_ TYPOGRAPHY & FONTS
|_ UI ELEMENTS
|_ PLUGINS
|_ STYLE SETTINGS
|_ OBSIDIAN HUB
*/
/* +++ FONT FACES */ /* +++ FONT FACES */
@font-face /* iA Writer Mono V */ { @font-face /* iA Writer Mono V */ {
@ -86,7 +98,7 @@ body {
*/ */
} }
/* +++ LIGHT MDOE */ /* +++ LIGHT MODE */
.theme-light { .theme-light {
--background-primary: hsl( --background-primary: hsl(
calc(var(--base-h) + 44), calc(var(--base-h) + 44),
@ -190,6 +202,8 @@ body {
--icon-color: var(--text-muted); --icon-color: var(--text-muted);
--icon-hex: 000; --icon-hex: 000;
--graph-line-color: #c0c9ce;
} }
/* +++ DARK MODE */ /* +++ DARK MODE */
@ -267,6 +281,8 @@ body {
--scrollbar-bg: rgba(255, 255, 255, 0.05); --scrollbar-bg: rgba(255, 255, 255, 0.05);
--scrollbar-thumb-bg: rgba(255, 255, 255, 0.1); --scrollbar-thumb-bg: rgba(255, 255, 255, 0.1);
--highlight-mix-blend-mode: lighten; --highlight-mix-blend-mode: lighten;
--graph-line-color: #6f7577;
} }
/* +++ TYPOGRAPHY & FONTS */ /* +++ TYPOGRAPHY & FONTS */
@ -279,12 +295,12 @@ body {
--metadata-input-font-size: var(--font-small); --metadata-input-font-size: var(--font-small);
--font-normal: 1em; --font-normal-size: 1em;
--font-small: 0.813em; --font-small: 0.813em;
--font-smaller: 0.688em; --font-smaller: 0.688em;
--font-smallest: 0.625em; --font-smallest: 0.625em;
--code-size: var(--font-normal); --code-size: var(--font-small);
--code-normal: var(--blue); --code-normal: var(--blue);
--h1: 1.8em; --h1: 1.8em;
@ -357,6 +373,12 @@ body {
font-size: var(--font-smaller) !important; font-size: var(--font-smaller) !important;
} }
/* increase blockquote height */
.markdown-source-view.mod-cm6.is-live-preview .HyperMD-quote {
padding-top: 7px;
padding-bottom: 7px;
}
/* HIGHLIGHT ACTIVE LINE */ /* HIGHLIGHT ACTIVE LINE */
.active-line-highlight .markdown-source-view .CodeMirror-activeline, .active-line-highlight .markdown-source-view .CodeMirror-activeline,
.active-line-highlight .markdown-source-view.mod-cm6 .cm-active.cm-line { .active-line-highlight .markdown-source-view.mod-cm6 .cm-active.cm-line {
@ -364,6 +386,7 @@ body {
border-radius: 8px; border-radius: 8px;
} }
/* SIDEBAR NOTES */
/* make sidebar notes' background var(--background-primary) */ /* make sidebar notes' background var(--background-primary) */
.mod-right-split .markdown-preview-view, .mod-right-split .markdown-preview-view,
.mod-left-split .markdown-preview-view, .mod-left-split .markdown-preview-view,
@ -473,6 +496,11 @@ body {
margin-top: 0; margin-top: 0;
} }
/* FIX: background color for titlebar buttons on Windows */
div.titlebar-button-container.mod-right {
background-color: var(--background-primary) !important;
}
/* EDITOR: font-scalable edit-block-button */ /* EDITOR: font-scalable edit-block-button */
/* add header padding for button if last column is right-aligned */ /* add header padding for button if last column is right-aligned */
.markdown-source-view table th:last-child[align="right"] { .markdown-source-view table th:last-child[align="right"] {
@ -492,6 +520,23 @@ body {
height: 1em; height: 1em;
} }
/* DARKEN GRAPH VIEW LINS */
.graph-view.color-line {
color: var(--graph-line-color);
}
/* FOLD INDICATOR SPACING */
/* prevent overlap with text */
div.cm-fold-indicator {
margin-right: 0;
}
.markdown-source-view.mod-cm6 .cm-fold-indicator .collapse-indicator {
padding-right: 4px;
right: 0;
}
/* +++ PLUGINS */ /* +++ PLUGINS */
/* ZOOM by @vslinko */ /* ZOOM by @vslinko */

@ -0,0 +1,4 @@
{
"nodes":[],
"edges":[]
}

@ -165,3 +165,11 @@ $ docker-compose --profile all up -d
``` ```
[http://localhost:12345/dolphinscheduler/ui](http://localhost:12345/dolphinscheduler/ui) admin/dolphinscheduler123 [http://localhost:12345/dolphinscheduler/ui](http://localhost:12345/dolphinscheduler/ui) admin/dolphinscheduler123
+ dify (windwos)
参考文档 [Deploy with Docker Compose | Dify](https://docs.dify.ai/getting-started/install-self-hosted/docker-compose)
```text
cd E:\code\opensource\dify\docker
docker compose up -d
```

Loading…
Cancel
Save