vault backup: 2025-07-24 16:44:33
This commit is contained in:
+35882
File diff suppressed because one or more lines are too long
+10
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "breadcrumbs",
|
||||
"name": "Breadcrumbs",
|
||||
"version": "3.6.11",
|
||||
"minAppVersion": "0.15.2",
|
||||
"description": "Visualise & navigate your vault's structure",
|
||||
"author": "SkepticMystic",
|
||||
"authorUrl": "https://github.com/SkepticMystic/breadcrumbs",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
+113
@@ -0,0 +1,113 @@
|
||||
.BC-trail {
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
border-radius: 5px;
|
||||
padding: 5px;
|
||||
margin-bottom: 5px !important;
|
||||
}
|
||||
|
||||
/* completely hides the trail when "no path found message" is left empty and no path is found */
|
||||
.BC-trail:empty {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.BC-matrix-square li {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
/* ensure empty headers not leaving an element */
|
||||
.BC-Matrix .BC-Matrix-square .BC-Matrix-header:empty {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.internal-link.BC-Link {
|
||||
color: var(--text-accent);
|
||||
}
|
||||
|
||||
.internal-link.BC-Link:hover {
|
||||
color: var(--text-accent-hover, var(--text-accent));
|
||||
}
|
||||
|
||||
.vis-view-options > * {
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
/* Source: https://svelte.dev/repl/3153faf7584d40bd8ddebecf39f24ac1?version=3.41.0 */
|
||||
[data-tooltip] {
|
||||
position: relative;
|
||||
/* z-index: 2; */
|
||||
/* display: block; */
|
||||
}
|
||||
|
||||
[data-tooltip]:before,
|
||||
[data-tooltip]:after {
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
transition: 0.2s ease-out;
|
||||
transform: translate(-50%, 5px);
|
||||
}
|
||||
|
||||
[data-tooltip]:before {
|
||||
position: absolute;
|
||||
top: 80%;
|
||||
/* bottom: 100%; */
|
||||
left: 50%;
|
||||
margin-bottom: 5px;
|
||||
padding: 7px;
|
||||
width: fit-content;
|
||||
height: fit-content;
|
||||
min-width: 200px;
|
||||
min-height: 200px;
|
||||
-webkit-border-radius: 3px;
|
||||
-moz-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
background-color: var(--background-primary);
|
||||
color: var(--text-normal);
|
||||
content: attr(data-tooltip);
|
||||
text-align: center;
|
||||
font-size: var(--font-medium);
|
||||
line-height: 1.2;
|
||||
transition: 0.2s ease-out;
|
||||
white-space: pre-line;
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
/* [data-tooltip]:after {
|
||||
position: absolute;
|
||||
top: 80%;
|
||||
left: 50%;
|
||||
width: 0;
|
||||
border-top: 5px solid #000;
|
||||
border-top: 5px solid hsla(0, 0%, 20%, 0.9);
|
||||
border-right: 5px solid transparent;
|
||||
border-left: 5px solid transparent;
|
||||
background-color: red;
|
||||
content: " ";
|
||||
font-size: 0;
|
||||
line-height: 0;
|
||||
} */
|
||||
|
||||
[data-tooltip]:hover:before,
|
||||
[data-tooltip]:hover:after {
|
||||
visibility: visible;
|
||||
opacity: 1;
|
||||
transform: translate(-50%, 0);
|
||||
}
|
||||
[data-tooltip="false"]:hover:before,
|
||||
[data-tooltip="false"]:hover:after {
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.thread-dir-templates .setting-item-control {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.juggl-hide {
|
||||
display: none;
|
||||
}
|
||||
|
||||
[data-type="BC-matrix"] div.view-content {
|
||||
overflow: hidden !important;
|
||||
}
|
||||
+45
@@ -0,0 +1,45 @@
|
||||
{
|
||||
"displayMethod": "NAME",
|
||||
"alwaysOpen": true,
|
||||
"ignoreDocTags": "",
|
||||
"ignoreTags": "",
|
||||
"hideOnRootTags": "",
|
||||
"sortType": "DISPNAME_ASC",
|
||||
"sortExactFirst": false,
|
||||
"sortTypeTag": "NAME_ASC",
|
||||
"expandLimit": 0,
|
||||
"disableNestedTags": false,
|
||||
"hideItems": "NONE",
|
||||
"ignoreFolders": "",
|
||||
"targetFolders": "",
|
||||
"scanDelay": 250,
|
||||
"useTitle": false,
|
||||
"reduceNestedParent": true,
|
||||
"frontmatterKey": "title",
|
||||
"useTagInfo": false,
|
||||
"tagInfo": "pininfo.md",
|
||||
"mergeRedundantCombination": false,
|
||||
"useVirtualTag": false,
|
||||
"useFrontmatterTagsForNewNotes": false,
|
||||
"doNotSimplifyTags": false,
|
||||
"overrideTagClicking": false,
|
||||
"useMultiPaneList": false,
|
||||
"archiveTags": "",
|
||||
"disableNarrowingDown": true,
|
||||
"expandUntaggedToRoot": false,
|
||||
"disableDragging": false,
|
||||
"linkConfig": {
|
||||
"incoming": {
|
||||
"enabled": true,
|
||||
"key": ""
|
||||
},
|
||||
"outgoing": {
|
||||
"enabled": true,
|
||||
"key": ""
|
||||
}
|
||||
},
|
||||
"linkShowOnlyFDR": true,
|
||||
"linkCombineOtherTree": true,
|
||||
"showListIn": "",
|
||||
"displayFolderAsTag": false
|
||||
}
|
||||
+5746
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "obsidian-tagfolder",
|
||||
"name": "TagFolder",
|
||||
"version": "0.18.11",
|
||||
"minAppVersion": "0.12.0",
|
||||
"description": "Show tags as folder",
|
||||
"author": "vorotamoroz",
|
||||
"authorUrl": "https://github.com/vrtmrz",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
+139
@@ -0,0 +1,139 @@
|
||||
.workspace-leaf-content[data-type="tagfolder-view"]>.view-content,
|
||||
.workspace-leaf-content[data-type="tagfolder-view-list"]>.view-content {
|
||||
padding: 0;
|
||||
height: 100%;
|
||||
overflow: unset;
|
||||
}
|
||||
|
||||
.override-input {
|
||||
flex-direction: column-reverse;
|
||||
}
|
||||
|
||||
.tagfolder-tag::before {
|
||||
all: inherit;
|
||||
color: inherit;
|
||||
font: inherit;
|
||||
}
|
||||
|
||||
.tagfolder-tag.tag-tag::before {
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
|
||||
.tagfolder-tag.tag-tag span.tf-tag-each:empty {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.tagfolder-tag.tag-tag.tf-tag span.tf-tag-each:first-child:not(:empty):before {
|
||||
content: "#";
|
||||
margin-left: 0.3em;
|
||||
}
|
||||
|
||||
.tagfolder-tag.tag-tag.tf-link span.tf-tag-each:first-child:not(:empty):before {
|
||||
content: "";
|
||||
margin-left: 0.3em;
|
||||
}
|
||||
|
||||
.tagfolder-tag.tag-tag.tf-link.link-cross span.tf-tag-each:first-child:not(:empty):before {
|
||||
content: "⇔ ";
|
||||
margin-left: 0.3em;
|
||||
}
|
||||
|
||||
.tagfolder-tag.tag-tag.tf-link.link-forward span.tf-tag-each:first-child:not(:empty):before {
|
||||
content: "⇒ ";
|
||||
margin-left: 0.3em;
|
||||
}
|
||||
|
||||
.tagfolder-tag.tag-tag.tf-link.link-reverse span.tf-tag-each:first-child:not(:empty):before {
|
||||
content: "⇐ ";
|
||||
margin-left: 0.3em;
|
||||
}
|
||||
|
||||
.tagfolder-tag.tag-tag span.tf-tag-each::before {
|
||||
content: "→ ";
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
|
||||
.tf-taglist {
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
display: inline-block;
|
||||
flex-shrink: 100;
|
||||
margin-left: auto;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.tf-taglist:not(:empty) {
|
||||
min-width: 3em;
|
||||
}
|
||||
|
||||
.tf-taglist .tf-tag {
|
||||
background-color: var(--background-secondary-alt);
|
||||
border-radius: 4px;
|
||||
padding: 2px 4px;
|
||||
margin-left: 4px;
|
||||
color: var(--nav-item-color);
|
||||
}
|
||||
|
||||
.nav-folder-title:hover .tagfolder-quantity,
|
||||
.nav-file-title:hover .tf-taglist {
|
||||
color: var(--text-on-accent);
|
||||
}
|
||||
|
||||
.nav-folder-title:hover .tagfolder-quantity span,
|
||||
.nav-file-title:hover .tf-taglist span.tf-tag {
|
||||
color: var(--text-on-accent);
|
||||
background-color: var(--interactive-accent-hover);
|
||||
}
|
||||
|
||||
|
||||
.lsl-f {
|
||||
flex-direction: row;
|
||||
display: flex;
|
||||
flex-grow: 1;
|
||||
overflow: hidden;
|
||||
flex-shrink: 1;
|
||||
}
|
||||
|
||||
.lsl-f:not(:last-child) {
|
||||
min-width: 3em;
|
||||
}
|
||||
|
||||
.lsl-f:empty::before {
|
||||
content: "...";
|
||||
}
|
||||
|
||||
.tagfolder-titletagname {
|
||||
flex-grow: 1;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.tagfolder-quantity span {
|
||||
background-color: var(--background-secondary-alt);
|
||||
color: var(--nav-item-color);
|
||||
border-radius: 4px;
|
||||
padding: 2px 4px;
|
||||
}
|
||||
|
||||
.tagfolder-quantity {
|
||||
width: 3em;
|
||||
text-align: right;
|
||||
cursor: pointer;
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.tag-folder-title {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.tree-item.nav-folder.updating {
|
||||
background: linear-gradient(135deg, var(--interactive-accent-hover) 0%, var(--interactive-accent-hover) 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
|
||||
background-repeat: no-repeat;
|
||||
background-position: 0 0;
|
||||
background-size: 10px 10px;
|
||||
}
|
||||
Reference in New Issue
Block a user