vault backup: 2026-08-26 17:23:27
This commit is contained in:
+490
-522
File diff suppressed because one or more lines are too long
+2
-2
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"id": "obsidian-quiet-outline",
|
||||
"name": "Quiet Outline",
|
||||
"version": "0.5.3",
|
||||
"minAppVersion": "0.15.6",
|
||||
"version": "0.5.18",
|
||||
"minAppVersion": "1.7.2",
|
||||
"description": "Make outline quiet and more powerful, including no-auto-expand, rendering heading as markdown, and search support.",
|
||||
"author": "the_tree",
|
||||
"authorUrl": "",
|
||||
|
||||
@@ -74,5 +74,39 @@
|
||||
"item-1-0",
|
||||
"item-2-2"
|
||||
]
|
||||
},
|
||||
"Research/FSL/提示工程.md": {
|
||||
"expandedKeys": [],
|
||||
"cursor": {
|
||||
"from": {
|
||||
"line": 3,
|
||||
"ch": 0
|
||||
},
|
||||
"to": {
|
||||
"line": 3,
|
||||
"ch": 0
|
||||
}
|
||||
}
|
||||
},
|
||||
"Record/未命名.md": {
|
||||
"expandedKeys": []
|
||||
},
|
||||
"Record/CS231N/未命名.md": {
|
||||
"expandedKeys": []
|
||||
},
|
||||
"Record/CS231N/正则化与优化.md": {
|
||||
"cursor": {
|
||||
"from": {
|
||||
"line": 5,
|
||||
"ch": 18
|
||||
},
|
||||
"to": {
|
||||
"line": 5,
|
||||
"ch": 18
|
||||
}
|
||||
},
|
||||
"expandedKeys": [
|
||||
"item-2-0"
|
||||
]
|
||||
}
|
||||
}
|
||||
+415
-251
@@ -1,266 +1,430 @@
|
||||
/* 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(--custom-font-size);
|
||||
font-family: var(--custom-font-family);
|
||||
font-weight: var(--custom-font-weight);
|
||||
padding-top: 5px;
|
||||
}
|
||||
|
||||
/* RTL language support */
|
||||
.quiet-outline .n-tree .n-tree-node-content :is(p, h1, h2, h3, h4, h5) {
|
||||
unicode-bidi: var(--d98dd3a0);
|
||||
}
|
||||
|
||||
/* ============ */
|
||||
/* 彩虹大纲线 */
|
||||
/* rainbow line */
|
||||
/* ============ */
|
||||
.quiet-outline .n-tree .n-tree-node-indent {
|
||||
content: "";
|
||||
height: unset;
|
||||
align-self: stretch;
|
||||
}
|
||||
.quiet-outline .n-tree-node-indent {
|
||||
flex: 0 0 13px !important;
|
||||
position: relative;
|
||||
}
|
||||
.quiet-outline .n-tree-node-indent::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
height: 100%;
|
||||
right: 8px;
|
||||
}
|
||||
:is(
|
||||
.quiet-outline .level-2 .n-tree-node-indent:first-child,
|
||||
.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
|
||||
)::after {
|
||||
border-right: var(--nav-indentation-guide-width) solid var(--v159969f5);
|
||||
/* border-right: 2px solid rgb(253, 139, 31, 0.6); */
|
||||
}
|
||||
:is(
|
||||
.quiet-outline .level-3 .n-tree-node-indent:nth-child(2),
|
||||
.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)
|
||||
)::after {
|
||||
border-right: var(--nav-indentation-guide-width) solid var(--v159969f6);
|
||||
/* border-right: 2px solid rgb(255, 223, 0, 0.6); */
|
||||
}
|
||||
:is(
|
||||
.quiet-outline .level-4 .n-tree-node-indent:nth-child(3),
|
||||
.quiet-outline .level-5 .n-tree-node-indent:nth-child(3),
|
||||
.quiet-outline .level-6 .n-tree-node-indent:nth-child(3)
|
||||
)::after {
|
||||
border-right: var(--nav-indentation-guide-width) solid var(--v159969f7);
|
||||
/* border-right: 2px solid rgb(7, 235, 35, 0.6); */
|
||||
}
|
||||
:is(
|
||||
.quiet-outline .level-5 .n-tree-node-indent:nth-child(4),
|
||||
.quiet-outline .level-6 .n-tree-node-indent:nth-child(4)
|
||||
)::after {
|
||||
border-right: var(--nav-indentation-guide-width) solid var(--v159969f8);
|
||||
/* border-right: 2px solid rgb(45, 143, 240, 0.6); */
|
||||
}
|
||||
.quiet-outline .level-6 .n-tree-node-indent:nth-child(5)::after {
|
||||
border-right: var(--nav-indentation-guide-width) solid var(--v159969f9);
|
||||
/* border-right: 2px solid rgb(188, 1, 226, 0.6); */
|
||||
}
|
||||
|
||||
/* located heading*/
|
||||
.quiet-outline .n-tree {
|
||||
color: var(--nav-item-color);
|
||||
}
|
||||
.quiet-outline .n-tree-node-wrapper {
|
||||
padding: 0px;
|
||||
border-radius: var(--nav-item-radius);
|
||||
&:has(.n-tree-node.located) {
|
||||
background-color: var(--nav-item-background-active);
|
||||
}
|
||||
.quiet-outline .n-tree-node.n-tree-node--selectable {
|
||||
align-items: center;
|
||||
}
|
||||
.quiet-outline .n-tree-node .n-tree-node-content {
|
||||
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;
|
||||
}
|
||||
.quiet-outline .n-tree.ellipsis {
|
||||
overflow-x: hidden;
|
||||
}
|
||||
.quiet-outline .n-tree.ellipsis .n-tree-node .n-tree-node-content p {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.quiet-outline .n-tree.ellipsis .n-tree-node-content__text {
|
||||
overflow: hidden;
|
||||
}
|
||||
.quiet-outline .n-tree.ellipsis .n-tree-node-content {
|
||||
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);
|
||||
background-color: var(--nav-item-background-active);
|
||||
font-weight: var(--nav-item-weight-active);
|
||||
}
|
||||
.quiet-outline .function-bar {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 0px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
.quiet-outline .function-bar .n-button {
|
||||
margin-right: 5px;
|
||||
text-align: center;
|
||||
}
|
||||
.quiet-outline .function-bar .n-input {
|
||||
flex: 1;
|
||||
min-width: 10px;
|
||||
}
|
||||
.is-mobile .quiet-outline .function-bar .n-button {
|
||||
margin-right: 5px;
|
||||
text-align: center;
|
||||
flex: 1;
|
||||
}
|
||||
.is-mobile .quiet-outline .function-bar .n-input {
|
||||
min-width: 10px;
|
||||
flex: none;
|
||||
}
|
||||
.quiet-outline .n-button__icon {
|
||||
--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);
|
||||
background-color: var(--code-background);
|
||||
border-radius: var(--radius-s);
|
||||
}
|
||||
.quiet-outline a.tag {
|
||||
white-space: nowrap;
|
||||
padding: 0.2em 0.6em;
|
||||
}
|
||||
.quiet-outline a:not(.tag) {
|
||||
color: var(--link-external-color);
|
||||
}
|
||||
.quiet-outline span.internal-link {
|
||||
color: var(--link-color);
|
||||
}
|
||||
.quiet-outline mark {
|
||||
background-color: var(--text-highlight-bg);
|
||||
color: var(--text-normal);
|
||||
}
|
||||
.n-tree .n-tree-node-switcher {
|
||||
height: 0px;
|
||||
}
|
||||
.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;
|
||||
}
|
||||
.n-tree-node.located mjx-math {
|
||||
font-weight: bold !important;
|
||||
}
|
||||
.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;
|
||||
}
|
||||
.quiet-outline .n-tree.n-tree--block-node.n-tree--block-line {
|
||||
padding-bottom: var(--size-4-8);
|
||||
}
|
||||
.quiet-outline {
|
||||
height: 100%;
|
||||
}
|
||||
.quiet-outline #container {
|
||||
height: 100%;
|
||||
}
|
||||
.quiet-outline .n-config-provider {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
}
|
||||
.quiet-outline .n-tree {
|
||||
overflow: auto;
|
||||
padding-inline: 2px;
|
||||
}
|
||||
.n-tree__empty {
|
||||
display: none;
|
||||
}
|
||||
.canvas-node .markdown-embed-content .is-flashing {
|
||||
mix-blend-mode: normal;
|
||||
}
|
||||
|
||||
/* 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(--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(--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(--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(--61117f8c-rainbowColor4);
|
||||
}
|
||||
.quiet-outline .level-6 .n-tree-node-indent {
|
||||
border-right: var(--nav-indentation-guide-width) solid var(--61117f8c-rainbowColor5);
|
||||
}
|
||||
.n-tree-node.located p {
|
||||
color: var(--61117f8c-locatedColor);
|
||||
}
|
||||
/* adjust indent */
|
||||
|
||||
/* .quiet-outline .n-tree .n-tree-node .n-tree-node-content {
|
||||
padding-left: 0;
|
||||
} */
|
||||
.quiet-outline .n-tree .n-tree-node .n-tree-node-content .n-tree-node-content__prefix {
|
||||
margin-right: 0;
|
||||
margin-right: 0;
|
||||
}
|
||||
.quiet-outline .n-tree .n-tree-node .n-tree-node-content .n-tree-node-content__prefix > *:last-child {
|
||||
margin-right: 8px;
|
||||
margin-right: 8px;
|
||||
}
|
||||
.n-tree-node-switcher__icon {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
/* Tab Styles */
|
||||
/* Custom Style Variables */
|
||||
.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;
|
||||
}
|
||||
|
||||
/* src/main.css */
|
||||
/* ConfirmModal: improve spacing/typography for a cleaner layout */
|
||||
.quiet-outline-confirm-modal {
|
||||
/* Slightly increase line-height for multi-line warnings */
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
/* Title spacing */
|
||||
.quiet-outline-confirm-modal .modal-title {
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
/* Paragraph spacing (supports multi-paragraph messages) */
|
||||
.quiet-outline-confirm-modal p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* Spacing between paragraphs */
|
||||
.quiet-outline-confirm-modal p + p {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
/* ConfirmModal: right-aligned buttons with spacing + vertically centered icons */
|
||||
.quiet-outline-confirm-modal .quiet-outline-confirm-modal__buttons {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
gap: 10px;
|
||||
margin-top: 14px;
|
||||
}
|
||||
|
||||
/* Make buttons feel consistent and aligned */
|
||||
.quiet-outline-confirm-modal .quiet-outline-confirm-modal__buttons button {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
min-height: 30px;
|
||||
}
|
||||
|
||||
/* Add spacing between icon and label, and keep the icon vertically centered */
|
||||
.quiet-outline-confirm-modal .quiet-outline-confirm-modal__btn-icon {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin-right: 6px;
|
||||
}
|
||||
|
||||
/* Fix SVG baseline alignment so it appears visually centered inside the button */
|
||||
.quiet-outline-confirm-modal .quiet-outline-confirm-modal__btn-icon svg {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.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-export-format-input {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.quiet-outline-tab-content {
|
||||
min-height: 400px;
|
||||
}
|
||||
|
||||
.quiet-outline-setting-group {
|
||||
border-radius: var(--radius-m);
|
||||
background-color: var(--background-secondary);
|
||||
}
|
||||
|
||||
.quiet-outline-setting-group .setting-item:not(:first-child) {
|
||||
padding-left: 32px;
|
||||
}
|
||||
|
||||
.quiet-outline .n-tree {
|
||||
font-size: var(--custom-font-size);
|
||||
font-family: var(--custom-font-family);
|
||||
font-weight: var(--custom-font-weight);
|
||||
}
|
||||
|
||||
.quiet-outline .n-tree-node-wrapper {
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
.quiet-outline .n-tree-node.n-tree-node--selectable {
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
/* heading的间距,通过行高来设置 */
|
||||
/* heading line spacing */
|
||||
.quiet-outline .n-tree-node .n-tree-node-content {
|
||||
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;
|
||||
}
|
||||
|
||||
/* ellipsis */
|
||||
.quiet-outline .n-tree.ellipsis {
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
.quiet-outline .n-tree.ellipsis .n-tree-node .n-tree-node-content p {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.quiet-outline .n-tree.ellipsis .n-tree-node-content__text {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.quiet-outline .n-tree.ellipsis .n-tree-node-content {
|
||||
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);
|
||||
background-color: var(--nav-item-background-active);
|
||||
font-weight: var(--nav-item-weight-active);
|
||||
}
|
||||
|
||||
/* 功能栏 */
|
||||
.quiet-outline .function-bar {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 0px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.quiet-outline .function-bar .n-button {
|
||||
margin-right: 5px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.quiet-outline .function-bar .n-input {
|
||||
flex: 1;
|
||||
min-width: 10px;
|
||||
}
|
||||
|
||||
/* avoid <input> style overriding by theme */
|
||||
.quiet-outline .function-bar input[type="text"] {
|
||||
&:hover,
|
||||
&:focus {
|
||||
background-color: transparent;
|
||||
box-shadow: none;
|
||||
border: none;
|
||||
}
|
||||
background-color: transparent;
|
||||
box-shadow: none;
|
||||
border: none;
|
||||
}
|
||||
|
||||
/* 图标大小 */
|
||||
.quiet-outline .n-button__icon {
|
||||
--n-icon-size: 22px;
|
||||
font-size: 22px;
|
||||
}
|
||||
|
||||
.quiet-outline .n-tree-node-content .n-input {
|
||||
.n-input-wrapper {
|
||||
padding: 0px;
|
||||
/*padding-left: 4px;
|
||||
padding-right: 4px;*/
|
||||
}
|
||||
.n-input__input-el {
|
||||
line-height: var(--custom-line-height);
|
||||
font-size: var(--custom-font-size);
|
||||
height: var(--custom-line-height);
|
||||
}
|
||||
}
|
||||
|
||||
.quiet-outline code {
|
||||
/* color:var(--text-color-code, var(--code-normal)); */
|
||||
font-weight: bold;
|
||||
/* font-size: var(--font-size-code, var(--code-size)); */
|
||||
font-family: var(--font-monospace);
|
||||
background-color: var(--code-background);
|
||||
border-radius: var(--radius-s);
|
||||
}
|
||||
|
||||
.quiet-outline a.tag {
|
||||
white-space: nowrap;
|
||||
padding: 0.2em 0.6em;
|
||||
}
|
||||
.quiet-outline a:not(.tag) {
|
||||
color: var(--link-external-color);
|
||||
}
|
||||
.quiet-outline span.internal-link {
|
||||
color: var(--link-color);
|
||||
}
|
||||
|
||||
.quiet-outline mark {
|
||||
background-color: var(--text-highlight-bg);
|
||||
color: var(--text-normal);
|
||||
}
|
||||
|
||||
/* ===================== */
|
||||
/* 对不同级别标题进行设置 */
|
||||
/* ===================== */
|
||||
.n-tree .n-tree-node-switcher {
|
||||
height: 0px;
|
||||
}
|
||||
|
||||
/* 设置除一级标题之外的所有标题 */
|
||||
/* setting h2-h6 */
|
||||
.quiet-outline [class*="level-"]:not(.level-1) .n-tree-node-content {
|
||||
/*
|
||||
color: red;
|
||||
font-weight:bold;
|
||||
*/
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
/* Custom font colors for different heading levels */
|
||||
.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);
|
||||
}
|
||||
|
||||
/* location */
|
||||
|
||||
.n-tree.n-tree--block-line
|
||||
.n-tree-node-wrapper
|
||||
.n-tree-node:not(.n-tree-node--disabled).n-tree-node--selected {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.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;
|
||||
}
|
||||
|
||||
.quiet-outline .n-tree.n-tree--block-node.n-tree--block-line {
|
||||
padding-bottom: var(--size-4-8);
|
||||
}
|
||||
|
||||
/* 固定功能栏 */
|
||||
.quiet-outline {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.quiet-outline .n-config-provider {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
}
|
||||
.quiet-outline .n-tree {
|
||||
overflow: auto;
|
||||
padding-inline: 2px;
|
||||
}
|
||||
|
||||
/*remove 'no data'*/
|
||||
.n-tree__empty {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/*fix content blur in canvas embed markdown*/
|
||||
.canvas-node .markdown-embed-content .is-flashing {
|
||||
mix-blend-mode: normal;
|
||||
}
|
||||
|
||||
/* experimental */
|
||||
/*$vite$:1*/
|
||||
Reference in New Issue
Block a user