Initial commit

This commit is contained in:
Mathis Gauthey
2023-08-05 19:14:53 +01:00
parent 13a70a46bf
commit f366d5b7b6
7803 changed files with 186098 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
{
"showAllNumbers": true,
"filterList": [
"md"
],
"blacklist": false,
"filterFolderNote": true
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,10 @@
{
"id": "file-explorer-note-count",
"name": "File Explorer Note Count",
"version": "1.2.1",
"minAppVersion": "1.2.0",
"description": "The plugin helps you to see the number of notes under each folder within the file explorer.",
"author": "Ozan Tellioglu",
"authorUrl": "https://www.ozan.pl",
"isDesktopOnly": false
}

View File

@@ -0,0 +1,28 @@
.nav-folder-title[data-count]::after {
content: attr(data-count);
display: inline-block;
position: relative;
font-size: calc(100% * 0.8);
margin-right: 4px;
/* border-radius: 3px; */
padding: 2px 0;
/* background-color: var(--background-secondary-alt); */
transition: opacity 100ms ease-in-out;
}
.nav-folder-title.oz-root-hidden[data-count]::after {
display: none;
}
body:not(.oz-show-all-num)
.nav-folder:not(.is-collapsed)
> .nav-folder-title.oz-with-subfolder[data-count]:not([data-path='/'])::after {
opacity: 0;
}
.nav-folder-title[data-count='0']::after {
display: none;
}
.nav-folder-title-content {
flex-grow: 1;
}