Skip to content

Commit f3a0132

Browse files
authored
Fix key:value Dataview plugin text colors (#121)
See: Issue #120
1 parent dfb1593 commit f3a0132

File tree

4 files changed

+38
-1
lines changed

4 files changed

+38
-1
lines changed

HISTORY.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77
+ update ./scss/base/_app-variables.scss with any changes to app.css
88
+ rewrite theme
99

10+
## [0.4.44] - 2025-4-9
11+
### Fixes
12+
+ Issue 120 found that key:value pairs in the Dataview plugin were not readable
13+
1014
## [0.4.43] - 2025-3-25
1115
### Fixes
1216
+ Issue 117 noted a visual problem with background and text colors when using features of the Dataview pllugin

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Catppuccin",
3-
"version": "0.4.43",
3+
"version": "0.4.44",
44
"minAppVersion": "1.0.0",
55
"author": "Marshall Beckrich",
66
"authorUrl": "https://github.com/catppuccin/obsidian"

scss/vendors/_plugins.scss

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -294,3 +294,21 @@ body:not(.is-grabbing) .tree-item-self.fn-is-active:hover {
294294
background-color: var(--background-primary);
295295
font-size: var(--font-smaller);
296296
}
297+
298+
/*
299+
* 1. Fix for #120
300+
* 2. Colors left side of dataview info
301+
* 3. Colors right side of dataview info
302+
*/
303+
304+
.dataview.inline-field-key {
305+
--nav-item-color-selected: var(--text-normal);
306+
307+
font-size: var(--font-smaller);
308+
}
309+
310+
.dataview.inline-field-value {
311+
--nav-item-color-selected: var(--text-normal);
312+
313+
font-size: var(--font-smaller);
314+
}

theme.css

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)