master-wiki/.obsidian/plugins/dataview/styles.css
aleidk d02c99f724 Update from obsidian - thinkpad
Affected files:
.obsidian/community-plugins.json
.obsidian/plugins/dataview/main.js
.obsidian/plugins/dataview/manifest.json
.obsidian/plugins/dataview/styles.css
.obsidian/plugins/dbfolder/data.json
.obsidian/plugins/dbfolder/main.js
.obsidian/plugins/dbfolder/manifest.json
.obsidian/plugins/dbfolder/styles.css
.obsidian/plugins/obsidian-projects/data.json
.obsidian/workspace.json
games/Castlevania symphony of the Night.md
games/Mega Man X2.md
games/batman-arkham-asylum-game-of-the-year-edition.md
games/batman-arkham-city.md
games/celeste.md
games/god-of-war--1.md
games/god-of-war-ii.md
games/god-of-war.md
games/hollow-knight.md
games/metroid-prime-remastered.md
games/monster-hunter-rise.md
games/nier-automata.md
games/persona-4-golden--1.md
games/persona-5-royal.md
games/persona-5.md
games/super-mario-galaxy-2.md
games/the-elder-scrolls-v-skyrim.md
games/the-last-of-us-part-ii.md
games/the-last-of-us.md
games/the-legend-of-zelda-twilight-princess--1.md
games/uncharted-2-among-thieves.md
games/uncharted-3-drake-s-deception.md
games/uncharted-drake-s-fortune.md
projects/games.md
2023-08-31 22:39:46 -04:00

146 lines
3.1 KiB
CSS

/** 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: ")";
}