diff --git a/CHANGELOG.md b/CHANGELOG.md index b19b699..46ae24d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,14 @@ All notable changes to this project will be documented in this file. Dates are d Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). +#### [0.5.5](https://github.com/ebullient/obsidian-theme-ebullientworks/compare/0.5.4...0.5.5) + +- 🐛 0.16.3 link style changes [`322acb0`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/322acb0d5b4a4320cd0393279257fe051de194cf) + #### [0.5.4](https://github.com/ebullient/obsidian-theme-ebullientworks/compare/0.5.3...0.5.4) +> 8 September 2022 + - 🐛 Cohabitation of style settings [`51d6f8a`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/51d6f8a79bc1dec47992ae204bc34d27dfe50a2b) #### [0.5.3](https://github.com/ebullient/obsidian-theme-ebullientworks/compare/0.5.2...0.5.3) diff --git a/manifest.json b/manifest.json index 4c83ee1..7d5048e 100644 --- a/manifest.json +++ b/manifest.json @@ -1,6 +1,6 @@ { "name": "Ebullientworks", - "version": "0.5.4", + "version": "0.5.5", "minAppVersion": "0.16.0", "author": "Ebullientworks", "authorUrl": "https://github.com/ebullient" diff --git a/package.json b/package.json index 3646f8f..0159ce8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-theme-ebullientworks", - "version": "0.5.4", + "version": "0.5.5", "private": true, "description": "An Obsidian Theme", "author": "Erin Schnabel", diff --git a/tasks-snippet-for-0.16.css b/tasks-snippet-for-0.16.css index b580276..eba72a9 100644 --- a/tasks-snippet-for-0.16.css +++ b/tasks-snippet-for-0.16.css @@ -1,6 +1,6 @@ @charset "UTF-8"; /* -Ebullientworks tasks 0.5.4 by @ebullient +Ebullientworks tasks 0.5.5 by @ebullient */ :root { --checkbox-checked: rgb(139, 167, 145); diff --git a/theme.css b/theme.css index 7db6170..f6549e0 100644 --- a/theme.css +++ b/theme.css @@ -1,6 +1,6 @@ @charset "UTF-8"; /* -Ebullientworks 0.5.4 by @ebullient +Ebullientworks 0.5.5 by @ebullient This is a dark and light theme for Obsidian. @@ -911,6 +911,7 @@ h1, --ebw-link-hidden: var(--teal-4); --link-color: var(--gray-light-1); --link-color-hover: var(--teal-2); + --ebw-del-link-decoration-color: rgba(203, 203, 203, 0.5); } .theme-dark .print, @@ -922,25 +923,23 @@ h1, --ebw-link-hidden: var(--teal-2); --link-color: var(--gray-dark-4); --link-color-hover: var(--teal-3); + --ebw-del-link-decoration-color: rgba(100, 100, 100, 0.5); } body { - --link-decoration: underline var(--ebw-link-underline); - --link-decoration-hover: underline var(--ebw-link-underline); + --link-decoration: underline; + --link-decoration-hover: underline + --link-external-decoration: underline; + --link-external-decoration-hover: underline; + --link-decoration-color: var(--ebw-link-underline); --link-external-color: var(--link-color); --link-external-color-hover: var(--link-color-hover); - --link-external-decoration: underline var(--ebw-link-underline); - --link-external-decoration-hover: var(--ebw-link-underline); --link-unresolved-color: var(--link-color); --link-unresolved-opacity: 0.9; --link-unresolved-decoration-style: dotted; --link-unresolved-decoration-color: var(--ebw-link-underline); } -del { - text-decoration-color: rgba(203, 203, 203, 0.7); -} - /** BUG */ .cm-s-obsidian span.cm-quote.cm-em { color: var(--italic-color); @@ -968,10 +967,20 @@ strong em a.internal-link, .cm-s-obsidian .cm-url.cm-strikethrough, .cm-s-obsidian .cm-link.cm-strikethrough, .cm-s-obsidian .cm-hmd-internal-link.cm-strikethrough { - text-decoration: line-through; + text-decoration: line-through var(--link-decoration-color); +} + +a { text-decoration-color: var(--link-decoration-color); } +del a, +.markdown-rendered del a.external-link, +.markdown-rendered del a.internal-link, +.markdown-rendered del a.internal-link.is-unresolved { + text-decoration-color: var(--ebw-del-link-decoration-color); +} + .cm-s-obsidian span.cm-string.cm-url { color: var(--ebw-link-hidden); }