chore(vault): track .obsidian plugin configs (incl. obsidian-git settings)

This commit is contained in:
hehaiguang1123
2026-07-01 08:20:57 +08:00
parent e166ef1052
commit c7037119a5
216 changed files with 447823 additions and 0 deletions
+69
View File
@@ -0,0 +1,69 @@
/*--DKLN-V1.3.2-IFPM--*/
/*Obsidian-normal*/
table {
margin: auto; /*基础表格居中*/
}
/*IFPM-Zotero*/
div span.highlight {
color: black; /*批注高亮内文本黑色*/
}
/*IFPM-DV*/
ifpm ~ select,
ifpm ~ input /*metaedit*/ {
color: darkcyan;
width: 15em;
}
ifpm ~ div thead th /*表头居中*/ {
text-align: center;
}
ifpm ~ div thead span.small-text /*5.0表头序列*/ {
display: none;
}
ifpm ~ div tbody td span /*表内文本*/ {
display: block;
}
ifpm ~ div tbody td span a.tag /*表内文本*/ {
display: inline-block;
}
ifpm.dvcards ~ div thead th:nth-child(1)/*列宽限制*/ {
width: 10em;
}
ifpm.dvcards ~ div tbody td /*cards靠上*/ {
vertical-align: top;
}
ifpm.dvcards ~ div tbody li /*表内列表样式*/ {
display: block;
}
ifpm ~ div table,
ifpm ~ div table.table-view-table td /*表内框线*/ {
border-collapse: collapse;
border-width: 1px;
border-style: solid;
border-color: darkslategrey;
}
ifpm ~ center.exportButton a {
overflow-wrap: break-word;
-webkit-font-smoothing: subpixel-antialiased;
box-sizing: border-box;
color: var(--text-normal);
background-color: var(--interactive-normal);
border-radius: 4px;
border: none;
padding: 6px 20px;
cursor: var(--cursor);
margin-right: 12px;
font-family: inherit;
outline: none;
white-space: nowrap;
}
+34
View File
@@ -0,0 +1,34 @@
/*--DKLN-V1.0.0-IFPM--*/
/*高亮部分内文本黑色*/
div span.highlight {
color: black;
}
/*下拉dataview+metaedit内部文本颜色+下拉框宽度*/
div>p>select {
color: darkcyan;
width: 15em
}
/* 表格居中 */
table {
margin: auto;
}
/*左列顶端对齐*/
tbody.table-view-tbody tr td {
vertical-align: center;
}
/*标题居中*/
tr.table-view-tr-header th.table-view-th {
text-align: center;
}
+34
View File
@@ -0,0 +1,34 @@
/*--DKLN-V1.0.0-IFPM--*/
/*高亮部分内文本黑色*/
div span.highlight {
color: black;
}
/*下拉dataview+metaedit内部文本颜色+下拉框宽度*/
div>p>select {
color: darkcyan;
width: 15em
}
/* 表格居中 */
table {
margin: auto;
}
/*左列顶端对齐*/
tbody.table-view-tbody tr td {
vertical-align: top;
}
/*标题居中*/
tr.table-view-tr-header th.table-view-th {
text-align: center;
}
+48
View File
@@ -0,0 +1,48 @@
/* Stocks */
.stock-cards {
margin: 2em 0;
width: 100%;
display: flex;
flex-flow: row wrap;
gap: 6px;
justify-content: center;
& .stock-card {
position: relative;
a {
cursor: pointer;
position: absolute;
width: 100%;
height: 100%;
}
&:hover .stock-card-inner {
background-color: var(--background-primary);
}
}
}
.stock-chart, .stock-financials, .stock-card-inner {
box-sizing: border-box;
display: block;
border: 1px solid var(--background-modifier-border);
border-radius: var(--radius-m);
background-color: var(--background-primary);
}
.stock-chart {
width: 100%;
min-height: 340px;
height: 40vh;
margin-bottom: 1em;
}
.stock-container {
width: var(--line-width);
margin: 0 auto;
}
.stock-financials {
width: 100%;
height: 800px;
}
.stock-card-inner {
height: 94px;
width: 270px;
}