vault backup: 2023-01-24 17:12:40
This commit is contained in:
3
.obsidian/community-plugins.json
vendored
3
.obsidian/community-plugins.json
vendored
@@ -7,5 +7,6 @@
|
||||
"obsidian-tasks-plugin",
|
||||
"oz-image-plugin",
|
||||
"periodic-notes",
|
||||
"obsidian-git"
|
||||
"obsidian-git",
|
||||
"obsidian-quiet-outline"
|
||||
]
|
||||
21
.obsidian/plugins/obsidian-quiet-outline/data.json
vendored
Normal file
21
.obsidian/plugins/obsidian-quiet-outline/data.json
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"patch_color": true,
|
||||
"primary_color_light": "#18a058",
|
||||
"primary_color_dark": "#63e2b7",
|
||||
"rainbow_line": true,
|
||||
"rainbow_color_1": "#FD8B1F",
|
||||
"rainbow_color_2": "#FFDF00",
|
||||
"rainbow_color_3": "#07EB23",
|
||||
"rainbow_color_4": "#2D8FF0",
|
||||
"rainbow_color_5": "#BC01E2",
|
||||
"search_support": true,
|
||||
"level_switch": true,
|
||||
"markdown": true,
|
||||
"expand_level": "3",
|
||||
"hide_unsearched": true,
|
||||
"auto_expand": true,
|
||||
"regex_search": false,
|
||||
"ellipsis": false,
|
||||
"label_direction": "left",
|
||||
"drag_modify": false
|
||||
}
|
||||
1015
.obsidian/plugins/obsidian-quiet-outline/main.js
vendored
Normal file
1015
.obsidian/plugins/obsidian-quiet-outline/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
11
.obsidian/plugins/obsidian-quiet-outline/manifest.json
vendored
Normal file
11
.obsidian/plugins/obsidian-quiet-outline/manifest.json
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"id": "obsidian-quiet-outline",
|
||||
"name": "Quiet Outline",
|
||||
"version": "0.3.14",
|
||||
"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
|
||||
}
|
||||
150
.obsidian/plugins/obsidian-quiet-outline/styles.css
vendored
Normal file
150
.obsidian/plugins/obsidian-quiet-outline/styles.css
vendored
Normal file
@@ -0,0 +1,150 @@
|
||||
/* src/stalin.css */
|
||||
.quiet-outline .n-tree {
|
||||
font-size: var(--nav-item-size);
|
||||
}
|
||||
.quiet-outline .n-tree-node-indent {
|
||||
flex: 0 0 13px !important;
|
||||
}
|
||||
.quiet-outline .n-tree-node-wrapper {
|
||||
padding: 0px;
|
||||
}
|
||||
.quiet-outline .n-tree-node.n-tree-node--selectable {
|
||||
align-items: center;
|
||||
}
|
||||
.quiet-outline .n-tree-node .n-tree-node-content {
|
||||
line-height: 1.6em;
|
||||
min-height: 10px;
|
||||
}
|
||||
.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 {
|
||||
width: 100%;
|
||||
}
|
||||
.quiet-outline .n-tree.ellipsis .n-tree-node-content {
|
||||
width: 90%;
|
||||
}
|
||||
.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 code {
|
||||
color: var(--text-color-code, var(--code-normal));
|
||||
font-weight: bold;
|
||||
font-family: var(--font-monospace);
|
||||
background-color: var(--code-background);
|
||||
border-radius: var(--radius-s);
|
||||
}
|
||||
.quiet-outline .internal-link {
|
||||
color: var(--link-external-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;
|
||||
}
|
||||
.n-tree-node.located {
|
||||
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;
|
||||
}
|
||||
.quiet-outline {
|
||||
height: 100%;
|
||||
padding-bottom: 24px;
|
||||
}
|
||||
.quiet-outline #container {
|
||||
height: 100%;
|
||||
}
|
||||
.quiet-outline .n-config-provider {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
}
|
||||
.quiet-outline .n-tree {
|
||||
overflow: auto;
|
||||
}
|
||||
.n-tree__empty {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* main.css */
|
||||
.quiet-outline .n-tree .n-tree-node-indent {
|
||||
content: "";
|
||||
height: unset;
|
||||
align-self: stretch;
|
||||
}
|
||||
.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(--762e1073-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(--762e1073-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(--762e1073-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(--762e1073-rainbowColor4);
|
||||
}
|
||||
.quiet-outline .level-6 .n-tree-node-indent {
|
||||
border-right: var(--nav-indentation-guide-width) solid var(--762e1073-rainbowColor5);
|
||||
}
|
||||
|
||||
/* src/main.css */
|
||||
44
.obsidian/workspace.json
vendored
44
.obsidian/workspace.json
vendored
@@ -4,17 +4,17 @@
|
||||
"type": "split",
|
||||
"children": [
|
||||
{
|
||||
"id": "f0e8bbeac440be31",
|
||||
"id": "9d3d87c621a43a2f",
|
||||
"type": "tabs",
|
||||
"children": [
|
||||
{
|
||||
"id": "11a9323f8567de8a",
|
||||
"id": "29047b4d363f1eb0",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "01. 個人/01. Daily/2023/01/2023-01-24(週二).md",
|
||||
"mode": "source",
|
||||
"file": "00. Inbox/01. TODO.md",
|
||||
"mode": "preview",
|
||||
"source": true
|
||||
}
|
||||
}
|
||||
@@ -77,7 +77,7 @@
|
||||
"state": {
|
||||
"type": "backlink",
|
||||
"state": {
|
||||
"file": "01. 個人/01. Daily/2023/01/2023-01-24(週二).md",
|
||||
"file": "00. Inbox/01. TODO.md",
|
||||
"collapseAll": false,
|
||||
"extraContext": false,
|
||||
"sortOrder": "alphabetical",
|
||||
@@ -94,17 +94,10 @@
|
||||
"state": {
|
||||
"type": "outline",
|
||||
"state": {
|
||||
"file": "01. 個人/01. Daily/2023/01/2023-01-24(週二).md"
|
||||
"file": "00. Inbox/01. TODO.md"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"currentTab": 1
|
||||
},
|
||||
{
|
||||
"id": "a0240ced26011060",
|
||||
"type": "tabs",
|
||||
"children": [
|
||||
},
|
||||
{
|
||||
"id": "18b9707a37e1188a",
|
||||
"type": "leaf",
|
||||
@@ -115,8 +108,17 @@
|
||||
"useHierarchy": true
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "412b934ac56eabdb",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "quiet-outline",
|
||||
"state": {}
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
"currentTab": 3
|
||||
}
|
||||
],
|
||||
"direction": "horizontal",
|
||||
@@ -137,17 +139,17 @@
|
||||
"periodic-notes:Open today": false
|
||||
}
|
||||
},
|
||||
"active": "11a9323f8567de8a",
|
||||
"active": "29047b4d363f1eb0",
|
||||
"lastOpenFiles": [
|
||||
"01. 個人/01. Daily/2023/01/2023-01-01(週日).md",
|
||||
"00. Inbox/01. TODO.md",
|
||||
"01. 個人/01. Daily/2023/01/2023-01-24(週二).md",
|
||||
"05. 資料收集/軟體工具/MkDocs.md",
|
||||
"01. 個人/01. Daily/2023-01-24.md",
|
||||
"01. 個人/01. Daily/2023/01/2023-01-01(週日).md",
|
||||
"01. 個人/01. Daily/2023/01/2023-01-23(週一).md",
|
||||
"01. 個人/01. Daily/2023/01/2023-01-22(週日).md",
|
||||
"01. 個人/01. Daily/2023/01/2023-01-21(週六).md",
|
||||
"01. 個人/01. Daily/2023/01/2023-01-20(週五).md",
|
||||
"01. 個人/01. Daily/2023/01/2023-01-17(週二).md",
|
||||
"02. 工作/01. Logitech/Kong.md",
|
||||
"01. 個人/01. Daily/2023/01/2023-01-16(週一).md",
|
||||
"01. 個人/20230227 - 日本福岡旅遊.md"
|
||||
"01. 個人/01. Daily/2023/01/2023-01-17(週二).md"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user