vault backup: 2025-12-24 10:44:19

This commit is contained in:
2025-12-24 10:44:19 +08:00
parent a432670752
commit 5169177772
28 changed files with 2257 additions and 9810 deletions

View File

@@ -0,0 +1,42 @@
{
"search_support": true,
"level_switch": true,
"markdown": true,
"expand_level": "0",
"hide_unsearched": true,
"auto_expand_ext": "only-expand",
"regex_search": false,
"ellipsis": false,
"label_direction": "left",
"drag_modify": false,
"locate_by_cursor": false,
"show_popover_key": "ctrlKey",
"persist_md_states": true,
"keep_search_input": false,
"export_format": "{title}",
"lang_direction_decide_by": "system",
"auto_scroll_into_view": true,
"vimlize_canvas": true,
"canvas_sort_by": "area",
"patch_color": true,
"primary_color_light": "#18a058",
"primary_color_dark": "#63e2b7",
"rainbow_line": false,
"rainbow_color_1": "#FD8B1F",
"rainbow_color_2": "#FFDF00",
"rainbow_color_3": "#07EB23",
"rainbow_color_4": "#2D8FF0",
"rainbow_color_5": "#BC01E2",
"font_size": "",
"font_family": "",
"font_weight": "",
"line_height": "",
"line_gap": "",
"custom_font_color": false,
"h1_color": "#000000",
"h2_color": "#000000",
"h3_color": "#000000",
"h4_color": "#000000",
"h5_color": "#000000",
"h6_color": "#000000"
}

File diff suppressed because one or more lines are too long

View File

@@ -1,11 +1,11 @@
{
"id": "obsidian-quiet-outline",
"name": "Quiet Outline",
"version": "0.3.40",
"version": "0.5.3",
"minAppVersion": "0.15.6",
"description": "Make outline quiet and more powerful, including no-auto-expand, rendering heading as markdown, and search support.",
"author": "the_tree",
"authorUrl": "",
"fundingUrl": "https://www.buymeacoffee.com/thtree",
"isDesktopOnly": false
}
}

View File

@@ -0,0 +1,16 @@
{
"Books/代码随想录/代码模版.md": {
"scroll": 0,
"cursor": {
"from": {
"line": 0,
"ch": 0
},
"to": {
"line": 0,
"ch": 0
}
},
"expandedKeys": []
}
}

View File

@@ -1,6 +1,48 @@
/* src/stalin.css */
.quiet-outline {
--custom-font-size: var(--nav-item-size);
--custom-font-family: inherit;
--custom-font-weight: inherit;
--custom-line-height: 1.6em;
--custom-line-gap: 0px;
--h1-color: inherit;
--h2-color: inherit;
--h3-color: inherit;
--h4-color: inherit;
--h5-color: inherit;
--h6-color: inherit;
}
.quiet-outline-tabs {
display: flex;
border-bottom: 1px solid var(--background-modifier-border);
margin-bottom: 16px;
}
.quiet-outline-tabs button {
background: none;
border: none;
padding: 8px 16px;
cursor: pointer;
color: var(--text-muted);
border-bottom: 2px solid transparent;
transition: all 0.2s ease;
font-size: var(--font-ui-medium);
}
.quiet-outline-tabs button:hover {
color: var(--text-normal);
background-color: var(--background-modifier-hover);
}
.quiet-outline-tabs button.active {
color: var(--text-accent);
border-bottom-color: var(--text-accent);
font-weight: var(--font-semibold);
}
.quiet-outline-tab-content {
min-height: 400px;
}
.quiet-outline .n-tree {
font-size: var(--nav-item-size);
font-size: var(--custom-font-size);
font-family: var(--custom-font-family);
font-weight: var(--custom-font-weight);
}
.quiet-outline .n-tree-node-indent {
flex: 0 0 13px !important;
@@ -12,8 +54,9 @@
align-items: center;
}
.quiet-outline .n-tree-node .n-tree-node-content {
line-height: 1.6em;
line-height: var(--custom-line-height);
min-height: 10px;
margin-bottom: var(--custom-line-gap);
}
.quiet-outline .n-tree-node-content__text p {
margin: 0;
@@ -27,10 +70,14 @@
white-space: nowrap;
}
.quiet-outline .n-tree.ellipsis .n-tree-node-content__text {
width: 100%;
overflow: hidden;
}
.quiet-outline .n-tree.ellipsis .n-tree-node-content {
width: 90%;
overflow: hidden;
flex: 1;
}
.quiet-outline .n-tree.n-tree--block-line .n-tree-node:not(.n-tree-node--disabled).n-tree-node--pending {
background-color: unset;
}
.quiet-outline .n-tree.n-tree--block-line .n-tree-node:not(.n-tree-node--disabled):hover {
color: var(--nav-item-color-active);
@@ -64,6 +111,16 @@
--n-icon-size: 22px;
font-size: 22px;
}
.quiet-outline .n-tree-node-content .n-input {
.n-input-wrapper {
padding: 0px;
}
.n-input__input-el {
line-height: var(--custom-line-height);
font-size: var(--custom-font-size);
height: var(--custom-line-height);
}
}
.quiet-outline code {
font-weight: bold;
font-family: var(--font-monospace);
@@ -90,8 +147,29 @@
.quiet-outline [class*=level-]:not(.level-1) .n-tree-node-content {
font-size: 1em;
}
.quiet-outline .level-1 .n-tree-node-content {
color: var(--h1-color);
}
.quiet-outline .level-2 .n-tree-node-content {
color: var(--h2-color);
}
.quiet-outline .level-3 .n-tree-node-content {
color: var(--h3-color);
}
.quiet-outline .level-4 .n-tree-node-content {
color: var(--h4-color);
}
.quiet-outline .level-5 .n-tree-node-content {
color: var(--h5-color);
}
.quiet-outline .level-6 .n-tree-node-content {
color: var(--h6-color);
}
.n-tree-node.located {
font-weight: bold !important;
:is(a) {
font-weight: bold !important;
}
}
.n-tree-node.located code {
font-weight: 1000 !important;
@@ -102,6 +180,9 @@
.n-tree.n-tree--block-line .n-tree-node:not(.n-tree-node--disabled).n-tree-node--selected {
background-color: transparent !important;
}
.n-tree.n-tree--block-line:focus .n-tree-node:not(.n-tree-node--disabled).n-tree-node--selected {
box-shadow: 0 0 0 2px var(--background-modifier-border-focus);
}
.view-content:has(.quiet-outline) {
padding-bottom: 0px;
}
@@ -121,6 +202,7 @@
}
.quiet-outline .n-tree {
overflow: auto;
padding-inline: 2px;
}
.n-tree__empty {
display: none;
@@ -128,43 +210,46 @@
.canvas-node .markdown-embed-content .is-flashing {
mix-blend-mode: normal;
}
.quiet-outline .n-tree .n-tree-node-content :is(p, h1, h2, h3, h4, h5) {
unicode-bidi: plaintext;
}
/* main.css */
.quiet-outline .n-tree {
padding-top: 5px;
}
.quiet-outline .n-tree .n-tree-node-indent {
content: "";
height: unset;
align-self: stretch;
}
.quiet-outline .n-tree .n-tree-node-content :is(p, h1, h2, h3, h4, h5) {
unicode-bidi: var(--61117f8c-biDi);
}
.quiet-outline .level-2 .n-tree-node-indent,
.quiet-outline .level-3 .n-tree-node-indent:first-child,
.quiet-outline .level-4 .n-tree-node-indent:first-child,
.quiet-outline .level-5 .n-tree-node-indent:first-child,
.quiet-outline .level-6 .n-tree-node-indent:first-child {
border-right: var(--nav-indentation-guide-width) solid var(--8de97876-rainbowColor1);
border-right: var(--nav-indentation-guide-width) solid var(--61117f8c-rainbowColor1);
}
.quiet-outline .level-3 .n-tree-node-indent,
.quiet-outline .level-4 .n-tree-node-indent:nth-child(2),
.quiet-outline .level-5 .n-tree-node-indent:nth-child(2),
.quiet-outline .level-6 .n-tree-node-indent:nth-child(2) {
border-right: var(--nav-indentation-guide-width) solid var(--8de97876-rainbowColor2);
border-right: var(--nav-indentation-guide-width) solid var(--61117f8c-rainbowColor2);
}
.quiet-outline .level-4 .n-tree-node-indent,
.quiet-outline .level-5 .n-tree-node-indent:nth-child(3),
.quiet-outline .level-6 .n-tree-node-indent:nth-child(3) {
border-right: var(--nav-indentation-guide-width) solid var(--8de97876-rainbowColor3);
border-right: var(--nav-indentation-guide-width) solid var(--61117f8c-rainbowColor3);
}
.quiet-outline .level-5 .n-tree-node-indent,
.quiet-outline .level-6 .n-tree-node-indent:nth-child(4) {
border-right: var(--nav-indentation-guide-width) solid var(--8de97876-rainbowColor4);
border-right: var(--nav-indentation-guide-width) solid var(--61117f8c-rainbowColor4);
}
.quiet-outline .level-6 .n-tree-node-indent {
border-right: var(--nav-indentation-guide-width) solid var(--8de97876-rainbowColor5);
border-right: var(--nav-indentation-guide-width) solid var(--61117f8c-rainbowColor5);
}
.n-tree-node.located p {
color: var(--8de97876-locatedColor);
color: var(--61117f8c-locatedColor);
}
.quiet-outline .n-tree .n-tree-node .n-tree-node-content .n-tree-node-content__prefix {
margin-right: 0;