vault backup: 2026-06-01 15:31:32
This commit is contained in:
Vendored
+2
-1
@@ -14,5 +14,6 @@
|
|||||||
"obsidian-transcription",
|
"obsidian-transcription",
|
||||||
"obsidian-excalidraw-plugin",
|
"obsidian-excalidraw-plugin",
|
||||||
"terminal",
|
"terminal",
|
||||||
"typewriter-mode"
|
"typewriter-mode",
|
||||||
|
"3d-graph-new"
|
||||||
]
|
]
|
||||||
+60
@@ -0,0 +1,60 @@
|
|||||||
|
{
|
||||||
|
"savedSettings": [],
|
||||||
|
"temporaryLocalGraphSetting": {
|
||||||
|
"filter": {
|
||||||
|
"searchQuery": "",
|
||||||
|
"showOrphans": true,
|
||||||
|
"showAttachments": false,
|
||||||
|
"depth": 1,
|
||||||
|
"linkType": "both"
|
||||||
|
},
|
||||||
|
"groups": [],
|
||||||
|
"display": {
|
||||||
|
"nodeSize": 3,
|
||||||
|
"linkThickness": 2,
|
||||||
|
"linkDistance": 100,
|
||||||
|
"nodeRepulsion": 2800,
|
||||||
|
"distanceFromFocal": 300,
|
||||||
|
"nodeHoverColor": "#ff0000",
|
||||||
|
"nodeHoverNeighbourColor": "#00ff00",
|
||||||
|
"linkHoverColor": "#0000ff",
|
||||||
|
"showExtension": false,
|
||||||
|
"showFullPath": false,
|
||||||
|
"showCenterCoordinates": true,
|
||||||
|
"showLinkArrow": true,
|
||||||
|
"dontMoveWhenDrag": false,
|
||||||
|
"dagOrientation": "null"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"temporaryGlobalGraphSetting": {
|
||||||
|
"filter": {
|
||||||
|
"searchQuery": "",
|
||||||
|
"showOrphans": true,
|
||||||
|
"showAttachments": false
|
||||||
|
},
|
||||||
|
"groups": [],
|
||||||
|
"display": {
|
||||||
|
"nodeSize": 3,
|
||||||
|
"linkThickness": 2.2,
|
||||||
|
"linkDistance": 72,
|
||||||
|
"nodeRepulsion": 2900,
|
||||||
|
"distanceFromFocal": 170,
|
||||||
|
"nodeHoverColor": "#ff0000",
|
||||||
|
"nodeHoverNeighbourColor": "#00ff00",
|
||||||
|
"linkHoverColor": "#0000ff",
|
||||||
|
"showExtension": false,
|
||||||
|
"showFullPath": false,
|
||||||
|
"showCenterCoordinates": true,
|
||||||
|
"showLinkArrow": true,
|
||||||
|
"dontMoveWhenDrag": false,
|
||||||
|
"dagOrientation": "null"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"pluginSetting": {
|
||||||
|
"maxNodeNumber": 1000,
|
||||||
|
"searchEngine": "default",
|
||||||
|
"rightClickToPan": false,
|
||||||
|
"commandLeftClickNode": "openNodeInNewTab",
|
||||||
|
"commandRightClickNode": "focusNode"
|
||||||
|
}
|
||||||
|
}
|
||||||
+67207
File diff suppressed because one or more lines are too long
+136
@@ -0,0 +1,136 @@
|
|||||||
|
.graph-3d-view .tree-item.is-collapsed > .tree-item-children {
|
||||||
|
display: none;
|
||||||
|
visibility: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.graph-3d-view {
|
||||||
|
padding: 0 !important;
|
||||||
|
position: relative;
|
||||||
|
overflow: hidden !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.graph-3d-view .graph-controls.is-collapsed > .graph-control-section {
|
||||||
|
display: none;
|
||||||
|
visibility: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.graph-control-section .tree-item-inner {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
|
||||||
|
.graph-3d-view .graph-control-section.is-collapsed .tree-item-inner::before {
|
||||||
|
content: "▶";
|
||||||
|
margin-right: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.graph-3d-view .graph-control-section:not(.is-collapsed) .tree-item-inner::before {
|
||||||
|
content: "▼";
|
||||||
|
margin-right: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.graph-3d-view .graph-controls:hover > .control-buttons {
|
||||||
|
opacity: 0.5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.graph-3d-view .graph-controls > .control-buttons:hover {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.graph-3d-view .graph-controls > .control-buttons {
|
||||||
|
float: right;
|
||||||
|
margin-right: 0;
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.graph-3d-view .hidden {
|
||||||
|
display: none;
|
||||||
|
visibility: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.graph-3d-view .control-buttons {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.graph-3d-view .control-buttons > * {
|
||||||
|
display: inline-block;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.graph-3d-view .graph-settings-view > .clickable-icon {
|
||||||
|
position: absolute;
|
||||||
|
top: 8px;
|
||||||
|
right: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.graph-3d-view .node-label {
|
||||||
|
color: var(--text-normal);
|
||||||
|
}
|
||||||
|
|
||||||
|
.graph-3d-view .scene-nav-info {
|
||||||
|
display: block;
|
||||||
|
visibility: visible;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mod-search-input {
|
||||||
|
width: 100%;
|
||||||
|
padding: 0.5em;
|
||||||
|
border: 1px solid var(--border-color);
|
||||||
|
border-radius: 0.25em;
|
||||||
|
background-color: var(--background-color);
|
||||||
|
color: var(--text-normal);
|
||||||
|
}
|
||||||
|
|
||||||
|
.graph-3d-view .graph-controls:not(.is-close) {
|
||||||
|
max-height: calc(90% - var(--size-4-4));
|
||||||
|
}
|
||||||
|
|
||||||
|
.workspace-leaf-content:has(.search-result-container.is-loading) .graph-controls {
|
||||||
|
/* border color purple */
|
||||||
|
border-color: var(--color-purple);
|
||||||
|
|
||||||
|
/* create the animation */
|
||||||
|
animation: color-oscillation 2s ease infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes color-oscillation {
|
||||||
|
0% {
|
||||||
|
border: 1px solid var(--color-purple);
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
border: 1px solid var(--background-modifier-border);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
border: 1px solid var(--color-purple);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.workspace-leaf-content:has(.search-result-container.is-loading) .search-input-container input {
|
||||||
|
animation: outline-gradient-animation 2s linear infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes outline-gradient-animation {
|
||||||
|
0% {
|
||||||
|
box-shadow: 0 2px 0 var(--color-purple);
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
box-shadow: 0 2px 0 var(--background-modifier-border);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
box-shadow: 0 2px 0 var(--color-purple);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* section: setting tab */
|
||||||
|
.graph-3d-setting-tab {
|
||||||
|
> h2 {
|
||||||
|
color: var(--color-purple);
|
||||||
|
font-size: var(--h2-size);
|
||||||
|
}
|
||||||
|
|
||||||
|
> h2 + .setting-item {
|
||||||
|
border-top: 0px;
|
||||||
|
}
|
||||||
|
}
|
||||||
Vendored
+12
-6
@@ -26,10 +26,15 @@
|
|||||||
"id": "f9f00768d079d176",
|
"id": "f9f00768d079d176",
|
||||||
"type": "leaf",
|
"type": "leaf",
|
||||||
"state": {
|
"state": {
|
||||||
"type": "graph",
|
"type": "markdown",
|
||||||
"state": {},
|
"state": {
|
||||||
"icon": "lucide-git-fork",
|
"file": "90 Library/Finance/Бухгалтерский учет/Отчет о финансовых результатах.md",
|
||||||
"title": "Graph view"
|
"mode": "preview",
|
||||||
|
"source": false,
|
||||||
|
"backlinks": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "Отчет о финансовых результатах"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -250,11 +255,13 @@
|
|||||||
"templater-obsidian:Templater": false,
|
"templater-obsidian:Templater": false,
|
||||||
"obsidian-git:Open Git source control": false,
|
"obsidian-git:Open Git source control": false,
|
||||||
"obsidian-excalidraw-plugin:New drawing": false,
|
"obsidian-excalidraw-plugin:New drawing": false,
|
||||||
"terminal:Open terminal": false
|
"terminal:Open terminal": false,
|
||||||
|
"3d-graph-new:Global 3D Graph": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"active": "f9f00768d079d176",
|
"active": "f9f00768d079d176",
|
||||||
"lastOpenFiles": [
|
"lastOpenFiles": [
|
||||||
|
"90 Library/Finance/Бухгалтерский учет/Бухгалтерский баланс.md",
|
||||||
"90 Library/Other/Other - MOC.md",
|
"90 Library/Other/Other - MOC.md",
|
||||||
"90 Library/Networking/Networking - MOC.md",
|
"90 Library/Networking/Networking - MOC.md",
|
||||||
"90 Library/Other/Принцип via negativa.md",
|
"90 Library/Other/Принцип via negativa.md",
|
||||||
@@ -284,7 +291,6 @@
|
|||||||
"AGENTS.md",
|
"AGENTS.md",
|
||||||
"00 Inbox/Bitrix AO il.md",
|
"00 Inbox/Bitrix AO il.md",
|
||||||
"90 Library/Programming/Ruby On Rails/Rails 8 Migration Guide.md",
|
"90 Library/Programming/Ruby On Rails/Rails 8 Migration Guide.md",
|
||||||
"90 Library/Programming/Ruby On Rails/Rails credentials edit не открывает редактор.md",
|
|
||||||
"99 System/INDEX.md.tmp.236926.c2e3fe42eb5d",
|
"99 System/INDEX.md.tmp.236926.c2e3fe42eb5d",
|
||||||
"90 Library/Programming/Ruby On Rails/Deploy - finreport-analyzer.md.tmp.236926.95a7bebd66b4",
|
"90 Library/Programming/Ruby On Rails/Deploy - finreport-analyzer.md.tmp.236926.95a7bebd66b4",
|
||||||
"99 System/Archive/Экзамен.pdf",
|
"99 System/Archive/Экзамен.pdf",
|
||||||
|
|||||||
Reference in New Issue
Block a user