Skip to content

Commit 330cd0f

Browse files
committed
Fixes for #752 and #745
1 parent 5ba835d commit 330cd0f

File tree

9 files changed

+38
-5
lines changed

9 files changed

+38
-5
lines changed

Minimal.css

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3087,6 +3087,9 @@ li[data-task=b] > p > input:checked {
30873087
color: var(--text-on-accent);
30883088
opacity: 0.6;
30893089
}
3090+
.colorful-active .tree-item-self.is-being-renamed:focus-within {
3091+
--nav-item-color-active: var(--text-normal);
3092+
}
30903093
.colorful-active #calendar-container .active,
30913094
.colorful-active #calendar-container .active.today,
30923095
.colorful-active #calendar-container .active:hover,
@@ -6953,9 +6956,12 @@ https://github.com/dracula/dracula-theme
69536956
--text-on-accent-inverted: var(--bg1);
69546957
--text-selection: var(--tx1);
69556958
--vault-profile-color: var(--tx1);
6959+
--nav-item-color-active: var(--bg1);
69566960
--nav-item-color-hover: var(--bg1);
69576961
}
6962+
.theme-light.minimal-eink-light button:hover,
69586963
.theme-light.minimal-eink-light ::selection,
6964+
.theme-dark.minimal-eink-dark button:hover,
69596965
.theme-dark.minimal-eink-dark ::selection {
69606966
color: var(--bg1);
69616967
}
@@ -6990,6 +6996,12 @@ https://github.com/dracula/dracula-theme
69906996
.theme-dark.minimal-eink-dark .cm-s-obsidian span.cm-inline-code {
69916997
font-weight: 600;
69926998
}
6999+
.theme-light.minimal-eink-light .tree-item-self:hover,
7000+
.theme-light.minimal-eink-light .tree-item-self.is-active,
7001+
.theme-dark.minimal-eink-dark .tree-item-self:hover,
7002+
.theme-dark.minimal-eink-dark .tree-item-self.is-active {
7003+
--icon-color: var(--bg1);
7004+
}
69937005
.theme-light.minimal-eink-light .metadata-property-icon,
69947006
.theme-dark.minimal-eink-dark .metadata-property-icon {
69957007
--icon-color-focused: var(--tx1);

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Minimal",
3-
"version": "7.7.1",
3+
"version": "7.7.2",
44
"minAppVersion": "1.6.1",
55
"author": "@kepano",
66
"authorUrl": "https://twitter.com/kepano",

src/css/main.css

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

src/css/main.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/css/main.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/css/main.min.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/scss/color-schemes/eink.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,10 @@
3333
--text-on-accent-inverted: var(--bg1);
3434
--text-selection: var(--tx1);
3535
--vault-profile-color: var(--tx1);
36+
--nav-item-color-active: var(--bg1);
3637
--nav-item-color-hover: var(--bg1);
3738

39+
button:hover,
3840
::selection {
3941
color: var(--bg1);
4042
}
@@ -64,6 +66,10 @@
6466
.cm-s-obsidian span.cm-inline-code {
6567
font-weight: 600;
6668
}
69+
.tree-item-self:hover,
70+
.tree-item-self.is-active {
71+
--icon-color: var(--bg1);
72+
}
6773
.metadata-property-icon {
6874
--icon-color-focused: var(--tx1);
6975
}

src/scss/features/colorful-active-states.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
opacity: 0.6;
1111
}
1212
}
13+
.tree-item-self.is-being-renamed:focus-within {
14+
--nav-item-color-active: var(--text-normal);
15+
}
1316

1417
#calendar-container {
1518
.active,

theme.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)