vault backup: 2026-05-14 15:36:26
This commit is contained in:
22
.obsidian/plugins/export-graph-view/main.js
vendored
Normal file
22
.obsidian/plugins/export-graph-view/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
11
.obsidian/plugins/export-graph-view/manifest.json
vendored
Normal file
11
.obsidian/plugins/export-graph-view/manifest.json
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"id": "export-graph-view",
|
||||
"name": "Export Graph View",
|
||||
"version": "1.2.2",
|
||||
"minAppVersion": "0.15.0",
|
||||
"description": "Export your vault's graph view to mermaid and dot format.",
|
||||
"author": "Sean McGhee",
|
||||
"authorUrl": "https://www.seantiz.com",
|
||||
"fundingUrl": "https://github.com/sponsors/seantiz",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
119
.obsidian/plugins/export-graph-view/styles.css
vendored
Normal file
119
.obsidian/plugins/export-graph-view/styles.css
vendored
Normal file
@@ -0,0 +1,119 @@
|
||||
.quick-export-button,
|
||||
.export-button {
|
||||
font-size: 16px;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.metadata-section {
|
||||
text-align: center;
|
||||
margin-top: 20px;
|
||||
padding: 15px;
|
||||
border: 1px solid #ccc;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.metadata-section p {
|
||||
margin: 5px 0;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
|
||||
.help-text {
|
||||
font-size: 12px;
|
||||
border-bottom: none;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.root-notice {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.section-button-section {
|
||||
text-align: right;
|
||||
margin-top: 50px;
|
||||
}
|
||||
|
||||
.view-button-section {
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.egv-choice-container {
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.egv-choice-header {
|
||||
text-align: center;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.egv-choice-description {
|
||||
text-align: center;
|
||||
margin-bottom: 30px;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.egv-cards-container {
|
||||
display: flex;
|
||||
gap: 30px;
|
||||
justify-content: center;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.egv-choice-card {
|
||||
background-color: var(--background-secondary);
|
||||
border-radius: 10px;
|
||||
padding: 25px;
|
||||
min-width: 250px;
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
transition: transform 0.2s, box-shadow 0.2s;
|
||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
||||
cursor: pointer;
|
||||
max-width: 350px;
|
||||
}
|
||||
|
||||
.egv-choice-card:hover {
|
||||
transform: translateY(-5px);
|
||||
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
.egv-choice-card h3 {
|
||||
margin-top: 15px;
|
||||
margin-bottom: 10px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.egv-choice-card p {
|
||||
flex-grow: 1;
|
||||
color: var(--text-muted);
|
||||
margin-bottom: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.egv-card-icon {
|
||||
height: 60px;
|
||||
margin: 0 auto 15px;
|
||||
background-size: contain;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
width: 60px;
|
||||
}
|
||||
|
||||
.single-parent-icon {
|
||||
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="8" r="5"/><path d="M5 18c0-4 7-4 7-4v4"/><path d="M19 18c0-4-7-4-7-4v4"/></svg>');
|
||||
}
|
||||
|
||||
.full-graph-icon {
|
||||
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="5" cy="6" r="3"/><circle cx="19" cy="6" r="3"/><circle cx="5" cy="18" r="3"/><circle cx="19" cy="18" r="3"/><line x1="5" y1="9" x2="5" y2="15"/><line x1="19" y1="9" x2="19" y2="15"/><line x1="8" y1="6" x2="16" y2="6"/><line x1="8" y1="18" x2="16" y2="18"/><line x1="8" y1="6" x2="16" y2="18"/></svg>');
|
||||
}
|
||||
|
||||
.egv-card-button-container {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.egv-card-button-container button {
|
||||
width: 100%;
|
||||
Reference in New Issue
Block a user