Updated: Monday, August 28,2023-08-28 03:04:18
parent
317f50f67c
commit
30bc9c4377
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"id": "dataview",
|
||||||
|
"name": "Dataview",
|
||||||
|
"version": "0.5.56",
|
||||||
|
"minAppVersion": "0.13.11",
|
||||||
|
"description": "Complex data views for the data-obsessed.",
|
||||||
|
"author": "Michael Brenan <blacksmithgu@gmail.com>",
|
||||||
|
"authorUrl": "https://github.com/blacksmithgu",
|
||||||
|
"isDesktopOnly": false
|
||||||
|
}
|
|
@ -0,0 +1,146 @@
|
||||||
|
/** Live Preview padding fixes, specifically for DataviewJS custom HTML elements. */
|
||||||
|
.is-live-preview .block-language-dataviewjs > p, .is-live-preview .block-language-dataviewjs > span {
|
||||||
|
line-height: 1.0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.block-language-dataview {
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*****************/
|
||||||
|
/** Table Views **/
|
||||||
|
/*****************/
|
||||||
|
|
||||||
|
/* List View Default Styling; rendered internally as a table. */
|
||||||
|
.table-view-table {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table-view-table > thead > tr, .table-view-table > tbody > tr {
|
||||||
|
margin-top: 1em;
|
||||||
|
margin-bottom: 1em;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table-view-table > tbody > tr:hover {
|
||||||
|
background-color: var(--text-selection) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table-view-table > thead > tr > th {
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: larger;
|
||||||
|
border-top: none;
|
||||||
|
border-left: none;
|
||||||
|
border-right: none;
|
||||||
|
border-bottom: solid;
|
||||||
|
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table-view-table > tbody > tr > td {
|
||||||
|
text-align: left;
|
||||||
|
border: none;
|
||||||
|
font-weight: 400;
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table-view-table ul, .table-view-table ol {
|
||||||
|
margin-block-start: 0.2em !important;
|
||||||
|
margin-block-end: 0.2em !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Rendered value styling for any view. */
|
||||||
|
.dataview-result-list-root-ul {
|
||||||
|
padding: 0em !important;
|
||||||
|
margin: 0em !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dataview-result-list-ul {
|
||||||
|
margin-block-start: 0.2em !important;
|
||||||
|
margin-block-end: 0.2em !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Generic grouping styling. */
|
||||||
|
.dataview.result-group {
|
||||||
|
padding-left: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*******************/
|
||||||
|
/** Inline Fields **/
|
||||||
|
/*******************/
|
||||||
|
|
||||||
|
.dataview.inline-field-key {
|
||||||
|
padding-left: 8px;
|
||||||
|
padding-right: 8px;
|
||||||
|
font-family: var(--font-monospace);
|
||||||
|
background-color: var(--background-primary-alt);
|
||||||
|
color: var(--text-nav-selected);
|
||||||
|
}
|
||||||
|
|
||||||
|
.dataview.inline-field-value {
|
||||||
|
padding-left: 8px;
|
||||||
|
padding-right: 8px;
|
||||||
|
font-family: var(--font-monospace);
|
||||||
|
background-color: var(--background-secondary-alt);
|
||||||
|
color: var(--text-nav-selected);
|
||||||
|
}
|
||||||
|
|
||||||
|
.dataview.inline-field-standalone-value {
|
||||||
|
padding-left: 8px;
|
||||||
|
padding-right: 8px;
|
||||||
|
font-family: var(--font-monospace);
|
||||||
|
background-color: var(--background-secondary-alt);
|
||||||
|
color: var(--text-nav-selected);
|
||||||
|
}
|
||||||
|
|
||||||
|
/***************/
|
||||||
|
/** Task View **/
|
||||||
|
/***************/
|
||||||
|
|
||||||
|
.dataview.task-list-item, .dataview.task-list-basic-item {
|
||||||
|
margin-top: 3px;
|
||||||
|
margin-bottom: 3px;
|
||||||
|
transition: 0.4s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dataview.task-list-item:hover, .dataview.task-list-basic-item:hover {
|
||||||
|
background-color: var(--text-selection);
|
||||||
|
box-shadow: -40px 0 0 var(--text-selection);
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*****************/
|
||||||
|
/** Error Views **/
|
||||||
|
/*****************/
|
||||||
|
|
||||||
|
div.dataview-error-box {
|
||||||
|
width: 100%;
|
||||||
|
min-height: 150px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
border: 4px dashed var(--background-secondary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.dataview-error-message {
|
||||||
|
color: var(--text-muted);
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*************************/
|
||||||
|
/** Additional Metadata **/
|
||||||
|
/*************************/
|
||||||
|
|
||||||
|
.dataview.small-text {
|
||||||
|
font-size: smaller;
|
||||||
|
color: var(--text-muted);
|
||||||
|
margin-left: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dataview.small-text::before {
|
||||||
|
content: "(";
|
||||||
|
}
|
||||||
|
|
||||||
|
.dataview.small-text::after {
|
||||||
|
content: ")";
|
||||||
|
}
|
|
@ -25,7 +25,7 @@
|
||||||
"state": {
|
"state": {
|
||||||
"type": "markdown",
|
"type": "markdown",
|
||||||
"state": {
|
"state": {
|
||||||
"file": "Coding Tips (Classical)/Terminal Tips/Languages/About Languages.md",
|
"file": "Coding Tips (Classical)/Terminal Tips/About terminal.md",
|
||||||
"mode": "source",
|
"mode": "source",
|
||||||
"source": false
|
"source": false
|
||||||
}
|
}
|
||||||
|
@ -98,7 +98,7 @@
|
||||||
"state": {
|
"state": {
|
||||||
"type": "backlink",
|
"type": "backlink",
|
||||||
"state": {
|
"state": {
|
||||||
"file": "Coding Tips (Classical)/Terminal Tips/Languages/About Languages.md",
|
"file": "Coding Tips (Classical)/Terminal Tips/About terminal.md",
|
||||||
"collapseAll": false,
|
"collapseAll": false,
|
||||||
"extraContext": false,
|
"extraContext": false,
|
||||||
"sortOrder": "alphabetical",
|
"sortOrder": "alphabetical",
|
||||||
|
@ -115,7 +115,7 @@
|
||||||
"state": {
|
"state": {
|
||||||
"type": "outgoing-link",
|
"type": "outgoing-link",
|
||||||
"state": {
|
"state": {
|
||||||
"file": "Coding Tips (Classical)/Terminal Tips/Languages/About Languages.md",
|
"file": "Coding Tips (Classical)/Terminal Tips/About terminal.md",
|
||||||
"linksCollapsed": false,
|
"linksCollapsed": false,
|
||||||
"unlinkedCollapsed": true
|
"unlinkedCollapsed": true
|
||||||
}
|
}
|
||||||
|
@ -138,7 +138,7 @@
|
||||||
"state": {
|
"state": {
|
||||||
"type": "outline",
|
"type": "outline",
|
||||||
"state": {
|
"state": {
|
||||||
"file": "Coding Tips (Classical)/Terminal Tips/Languages/About Languages.md"
|
"file": "Coding Tips (Classical)/Terminal Tips/About terminal.md"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -164,9 +164,11 @@
|
||||||
},
|
},
|
||||||
"active": "ba204b9a12a9e8ae",
|
"active": "ba204b9a12a9e8ae",
|
||||||
"lastOpenFiles": [
|
"lastOpenFiles": [
|
||||||
|
"Coding Tips (Classical)/Terminal Tips/Languages/XML.md",
|
||||||
|
"Coding Tips (Classical)/Terminal Tips/Languages/Documentation.md",
|
||||||
|
"Coding Tips (Classical)/Terminal Tips/Languages/About Languages.md",
|
||||||
"Machine Tips (Quantum)/Physics/Particle Terms.md",
|
"Machine Tips (Quantum)/Physics/Particle Terms.md",
|
||||||
"Machine Tips (Quantum)/Physics/Ions.md",
|
"Machine Tips (Quantum)/Physics/Ions.md",
|
||||||
"Coding Tips (Classical)/Terminal Tips/Languages/About Languages.md",
|
|
||||||
"Machine Tips (Quantum)/Physics/Anti Charm Meson.md",
|
"Machine Tips (Quantum)/Physics/Anti Charm Meson.md",
|
||||||
"Machine Tips (Quantum)/Physics/Optics.md",
|
"Machine Tips (Quantum)/Physics/Optics.md",
|
||||||
"Coding Tips (Classical)/Project Vault/hi.mainsite/Main Page.md",
|
"Coding Tips (Classical)/Project Vault/hi.mainsite/Main Page.md",
|
||||||
|
@ -192,8 +194,6 @@
|
||||||
"Coding Tips (Classical)/Project Vault/hi.mainsite/Thought Catalog - notion export/Your Calendar 972b0ac16795420291d0267c5640614a.md",
|
"Coding Tips (Classical)/Project Vault/hi.mainsite/Thought Catalog - notion export/Your Calendar 972b0ac16795420291d0267c5640614a.md",
|
||||||
"Coding Tips (Classical)/Project Vault/hi.mainsite/Thought Catalog - notion export/Medium-worthy affa57a58bc74b09b1311b348ac70a45/Essay Drafts (1) 5c24ae12ed1f46428e18a9a9c7d4cb65.csv",
|
"Coding Tips (Classical)/Project Vault/hi.mainsite/Thought Catalog - notion export/Medium-worthy affa57a58bc74b09b1311b348ac70a45/Essay Drafts (1) 5c24ae12ed1f46428e18a9a9c7d4cb65.csv",
|
||||||
"Coding Tips (Classical)/Project Vault/hi.mainsite/Thought Catalog - notion export/Medium-worthy affa57a58bc74b09b1311b348ac70a45/The Family Tharavad (1) c4c767d7a0d14fecaf221313371996ac/The Homes 25f3cf42239942eda48517edb2513ecd/09 Autumn Circle f0eb16357b194a5da3adfd7fcd83b206.md",
|
"Coding Tips (Classical)/Project Vault/hi.mainsite/Thought Catalog - notion export/Medium-worthy affa57a58bc74b09b1311b348ac70a45/The Family Tharavad (1) c4c767d7a0d14fecaf221313371996ac/The Homes 25f3cf42239942eda48517edb2513ecd/09 Autumn Circle f0eb16357b194a5da3adfd7fcd83b206.md",
|
||||||
"Coding Tips (Classical)/Project Vault/hi.mainsite/Thought Catalog - notion export/Medium-worthy affa57a58bc74b09b1311b348ac70a45/The Family Tharavad (1) c4c767d7a0d14fecaf221313371996ac/The Homes 25f3cf42239942eda48517edb2513ecd/Aaradhana 6359bb0931ef482a97c5d196ba916480.md",
|
|
||||||
"Coding Tips (Classical)/Project Vault/hi.mainsite/Thought Catalog - notion export/Medium-worthy affa57a58bc74b09b1311b348ac70a45/The Family Tharavad (1) c4c767d7a0d14fecaf221313371996ac/The Homes 25f3cf42239942eda48517edb2513ecd/33 Windy Hill Lane 58757547a2b14950a1b95cf92b2370d3.md",
|
|
||||||
"Coding Tips (Classical)/Project Vault/hi.mainsite/Thought Catalog - notion export/Medium-worthy affa57a58bc74b09b1311b348ac70a45/The Family Tharavad (1) c4c767d7a0d14fecaf221313371996ac/The Homes 25f3cf42239942eda48517edb2513ecd",
|
"Coding Tips (Classical)/Project Vault/hi.mainsite/Thought Catalog - notion export/Medium-worthy affa57a58bc74b09b1311b348ac70a45/The Family Tharavad (1) c4c767d7a0d14fecaf221313371996ac/The Homes 25f3cf42239942eda48517edb2513ecd",
|
||||||
"Coding Tips (Classical)/Project Vault/hi.mainsite/Thought Catalog - notion export/Medium-worthy affa57a58bc74b09b1311b348ac70a45/The Family Tharavad (1) c4c767d7a0d14fecaf221313371996ac/The Homes 25f3cf42239942eda48517edb2513ecd_all.csv",
|
"Coding Tips (Classical)/Project Vault/hi.mainsite/Thought Catalog - notion export/Medium-worthy affa57a58bc74b09b1311b348ac70a45/The Family Tharavad (1) c4c767d7a0d14fecaf221313371996ac/The Homes 25f3cf42239942eda48517edb2513ecd_all.csv",
|
||||||
"Coding Tips (Classical)/Project Vault/hi.mainsite/Thought Catalog - notion export/Medium-worthy affa57a58bc74b09b1311b348ac70a45/The Family Tharavad (1) c4c767d7a0d14fecaf221313371996ac/The Homes 25f3cf42239942eda48517edb2513ecd.csv",
|
"Coding Tips (Classical)/Project Vault/hi.mainsite/Thought Catalog - notion export/Medium-worthy affa57a58bc74b09b1311b348ac70a45/The Family Tharavad (1) c4c767d7a0d14fecaf221313371996ac/The Homes 25f3cf42239942eda48517edb2513ecd.csv",
|
||||||
|
|
Loading…
Reference in New Issue