vault backup: 2024-04-15 11:54:03

This commit is contained in:
2024-04-15 11:54:03 +08:00
parent 839f2a0fd6
commit 6bb6abaa04
126 changed files with 104482 additions and 70653 deletions

View File

@@ -0,0 +1,6 @@
{
"imgDataFolder": "08-Assets/Gallery",
"galleryLoadPath": "",
"width": 400,
"reverseDisplay": true
}

15210
.obsidian/plugins/obsidian-gallery/main.js vendored Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,10 @@
{
"id": "obsidian-gallery",
"name": "Gallery",
"version": "0.5.8",
"minAppVersion": "0.10.11",
"description": "Main Gallery to tag / filter / add notes to images. Display blocks to embed images inside notes. Display block to an image information",
"author": "darakah",
"authorUrl": "https://github.com/Darakah/",
"isDesktopOnly": false
}

View File

@@ -0,0 +1,130 @@
.ob-gallery-control {
height: 100%;
width: 100%;
position: unset;
float: right;
background-color: var(--background-secondary);
}
.ob-gallery-display {
height: 100%;
width: 100%;
position: relative;
float: left;
background-color: var(--background-primary);
overflow-x: auto;
}
.ob-gallery-filter {
height: 70px;
width: 100%;
position: relative;
border: none;
background-color: var(--background-secondary);
border-radius: 5px;
padding: 20px;
}
.ob-gallery-filter-input {
width: 20%;
left: 20px;
position: static;
margin-right: 20px;
}
.ob-gallery-image-focus {
display: none;
position: fixed;
top: 0px;
height: 100%;
width: 100%;
background-color: rgb(16, 17, 17, 0.83);
;
}
.ob-gallery-image-focus>img {
opacity: 1;
margin-left: auto;
margin-right: auto;
max-height: 100%;
display: block;
padding: 40px;
float: unset !important;
}
.image-info-edit {
position: fixed;
right: 0px;
margin: 10px;
color: var(--text-normal) !important;
}
.image-info-edit:hover {
color: var(--text-a) !important;
}
.image-info-open {
position: fixed;
right: 30px;
top: 5px;
color: var(--text-normal) !important;
}
.image-info-open:hover {
color: var(--text-a) !important;
}
.gallery-span-info {
display: none;
}
/* active-thumb View CSS */
.gallery-widget {
background: var(--background-secondary);
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
padding-bottom: 60%;
background-size: cover;
background-position: center center;
border-radius: 0px 0px 0px 0px;
}
.gallery-container {
max-width: auto;
width: auto;
}
.gallery-span-info br {
display: none;
}
.gallery-grid-img {
opacity: 0.9;
transition: 0.1;
}
.gallery-grid-img:hover {
opacity: 1;
transform: scale(1.04);
}
.gallery-resources-alert {
padding: 20px;
background-color: var(--background-modifier-error-hover);
color: var(--light0-hard);
}
.ob-gallery-video-focus {
opacity: 1;
margin-left: auto;
margin-right: auto;
max-height: 100%;
display: block;
padding: 40px;
float: unset !important;
}