Skip to content

Commit

Permalink
🔖 0.5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Sep 9, 2022
1 parent 322acb0 commit 9e421aa
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 13 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
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": "Ebullientworks",
"version": "0.5.4",
"version": "0.5.5",
"minAppVersion": "0.16.0",
"author": "Ebullientworks",
"authorUrl": "https://github.com/ebullient"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion tasks-snippet-for-0.16.css
Original file line number Diff line number Diff line change
@@ -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);
Expand Down
29 changes: 19 additions & 10 deletions theme.css
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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,
Expand All @@ -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);
Expand Down Expand Up @@ -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);
}
Expand Down

0 comments on commit 9e421aa

Please sign in to comment.