Skip to content

Commit

Permalink
Fixes for #752 and #745
Browse files Browse the repository at this point in the history
  • Loading branch information
kepano committed Jun 15, 2024
1 parent 5ba835d commit 330cd0f
Show file tree
Hide file tree
Showing 9 changed files with 38 additions and 5 deletions.
12 changes: 12 additions & 0 deletions Minimal.css
Original file line number Diff line number Diff line change
Expand Up @@ -3087,6 +3087,9 @@ li[data-task=b] > p > input:checked {
color: var(--text-on-accent);
opacity: 0.6;
}
.colorful-active .tree-item-self.is-being-renamed:focus-within {
--nav-item-color-active: var(--text-normal);
}
.colorful-active #calendar-container .active,
.colorful-active #calendar-container .active.today,
.colorful-active #calendar-container .active:hover,
Expand Down Expand Up @@ -6953,9 +6956,12 @@ https://github.com/dracula/dracula-theme
--text-on-accent-inverted: var(--bg1);
--text-selection: var(--tx1);
--vault-profile-color: var(--tx1);
--nav-item-color-active: var(--bg1);
--nav-item-color-hover: var(--bg1);
}
.theme-light.minimal-eink-light button:hover,
.theme-light.minimal-eink-light ::selection,
.theme-dark.minimal-eink-dark button:hover,
.theme-dark.minimal-eink-dark ::selection {
color: var(--bg1);
}
Expand Down Expand Up @@ -6990,6 +6996,12 @@ https://github.com/dracula/dracula-theme
.theme-dark.minimal-eink-dark .cm-s-obsidian span.cm-inline-code {
font-weight: 600;
}
.theme-light.minimal-eink-light .tree-item-self:hover,
.theme-light.minimal-eink-light .tree-item-self.is-active,
.theme-dark.minimal-eink-dark .tree-item-self:hover,
.theme-dark.minimal-eink-dark .tree-item-self.is-active {
--icon-color: var(--bg1);
}
.theme-light.minimal-eink-light .metadata-property-icon,
.theme-dark.minimal-eink-dark .metadata-property-icon {
--icon-color-focused: var(--tx1);
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Minimal",
"version": "7.7.1",
"version": "7.7.2",
"minAppVersion": "1.6.1",
"author": "@kepano",
"authorUrl": "https://twitter.com/kepano",
Expand Down
12 changes: 12 additions & 0 deletions src/css/main.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/css/main.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/css/main.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/css/main.min.css.map

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions src/scss/color-schemes/eink.scss
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,10 @@
--text-on-accent-inverted: var(--bg1);
--text-selection: var(--tx1);
--vault-profile-color: var(--tx1);
--nav-item-color-active: var(--bg1);
--nav-item-color-hover: var(--bg1);

button:hover,
::selection {
color: var(--bg1);
}
Expand Down Expand Up @@ -64,6 +66,10 @@
.cm-s-obsidian span.cm-inline-code {
font-weight: 600;
}
.tree-item-self:hover,
.tree-item-self.is-active {
--icon-color: var(--bg1);
}
.metadata-property-icon {
--icon-color-focused: var(--tx1);
}
Expand Down
3 changes: 3 additions & 0 deletions src/scss/features/colorful-active-states.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
opacity: 0.6;
}
}
.tree-item-self.is-being-renamed:focus-within {
--nav-item-color-active: var(--text-normal);
}

#calendar-container {
.active,
Expand Down
2 changes: 1 addition & 1 deletion theme.css

Large diffs are not rendered by default.

0 comments on commit 330cd0f

Please sign in to comment.