Skip to content

Commit

Permalink
🔖 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Dec 5, 2022
1 parent 51b4b2a commit 938d0b0
Show file tree
Hide file tree
Showing 5 changed files with 230 additions and 182 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,18 @@ 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.6.1](https://github.com/ebullient/obsidian-theme-ebullientworks/compare/0.6.0...0.6.1)

- ✨ Wrap tag style in Style Setting [`51b4b2a`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/51b4b2a2f1aceb58200e0fe15864ddd1483c61fc)
- 🐛 Correct missed 1.0 Task list syle change [`b7a1d18`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/b7a1d1886480be73f3981e2bbc40adf72f9f2823)
- 🔧 GH Action dependencies [`f67d72d`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/f67d72d8a6f8db006f13a283821250a4833548da)
- 🐛 Fix text decoration in live edit [`ad08ccb`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/ad08ccbb23bdc1bc99df65a665e24b7155ff8a9b)
- 🐛 Task border colors [`610bf59`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/610bf5958c551719336ac8285e45106e411e1274)

#### [0.6.0](https://github.com/ebullient/obsidian-theme-ebullientworks/compare/0.5.9...0.6.0)

> 27 October 2022
- 🔥 Rename tasks-snippet post 1.0 [`be5ca5e`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/be5ca5e1b4616679066d4665acdb664308526982)
- 🎨 Light mode callout title contrast [`765bf6c`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/765bf6ccc8f3b86ae59de1ee08ad7920a0cdedef)
- 📝 Clarify README, update images [`7d711fa`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/7d711fa56ffb6cc46d9dac128a66245f5db3efad)
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.6.0",
"version": "0.6.1",
"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.6.0",
"version": "0.6.1",
"private": true,
"description": "An Obsidian Theme",
"author": "Erin Schnabel",
Expand Down
131 changes: 74 additions & 57 deletions tasks-snippet.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@charset "UTF-8";
/*
Ebullientworks tasks 0.6.0 by @ebullient
Ebullientworks tasks 0.6.1 by @ebullient
*/
:root {
--checkbox-checked: rgb(139, 167, 145);
Expand Down Expand Up @@ -29,25 +29,27 @@ li[data-task] input[type=checkbox]::before {
}

div[data-task=x],
li[data-task=x] {
ul > li.task-list-item[data-task=x] {
--checkbox-color: var(--checkbox-checked);
--checkbox-border-color: var(--checkbox-checked);
--checkbox-marker-color: transparent;
--checklist-done-decoration: none;
color: var(--text-normal);
font-weight: var(--font-normal);
text-decoration: none;
}
div[data-task=x] input[type=checkbox]:not(:checked),
li[data-task=x] input[type=checkbox]:not(:checked) {
div[data-task=x] input.task-list-item-checkbox[type=checkbox]:not(:checked),
ul > li.task-list-item[data-task=x] input.task-list-item-checkbox[type=checkbox]:not(:checked) {
background-color: unset;
background: unset;
}
div[data-task=x] input[type=checkbox]:checked,
li[data-task=x] input[type=checkbox]:checked {
div[data-task=x] input.task-list-item-checkbox[type=checkbox]:checked,
ul > li.task-list-item[data-task=x] input.task-list-item-checkbox[type=checkbox]:checked {
background-color: unset;
background: unset;
}
div[data-task=x] input[type=checkbox]:checked:after,
li[data-task=x] input[type=checkbox]:checked:after {
div[data-task=x] input.task-list-item-checkbox[type=checkbox]:checked:after,
ul > li.task-list-item[data-task=x] input.task-list-item-checkbox[type=checkbox]:checked:after {
-webkit-mask-image: none;
font-family: var(--font-monospace);
background: unset;
Expand All @@ -64,25 +66,27 @@ li[data-task=x] input[type=checkbox]:checked:after {
}

div[data-task="-"],
li[data-task="-"] {
ul > li.task-list-item[data-task="-"] {
--checkbox-color: var(--checkbox-cancelled);
--checkbox-border-color: var(--checkbox-cancelled);
--checkbox-marker-color: transparent;
--checklist-done-decoration: line-through;
color: var(--text-faint);
font-weight: var(--font-normal);
text-decoration: line-through;
}
div[data-task="-"] input[type=checkbox]:not(:checked),
li[data-task="-"] input[type=checkbox]:not(:checked) {
div[data-task="-"] input.task-list-item-checkbox[type=checkbox]:not(:checked),
ul > li.task-list-item[data-task="-"] input.task-list-item-checkbox[type=checkbox]:not(:checked) {
background-color: unset;
background: unset;
}
div[data-task="-"] input[type=checkbox]:checked,
li[data-task="-"] input[type=checkbox]:checked {
div[data-task="-"] input.task-list-item-checkbox[type=checkbox]:checked,
ul > li.task-list-item[data-task="-"] input.task-list-item-checkbox[type=checkbox]:checked {
background-color: unset;
background: unset;
}
div[data-task="-"] input[type=checkbox]:checked:after,
li[data-task="-"] input[type=checkbox]:checked:after {
div[data-task="-"] input.task-list-item-checkbox[type=checkbox]:checked:after,
ul > li.task-list-item[data-task="-"] input.task-list-item-checkbox[type=checkbox]:checked:after {
-webkit-mask-image: none;
font-family: var(--font-monospace);
background: unset;
Expand All @@ -99,25 +103,27 @@ li[data-task="-"] input[type=checkbox]:checked:after {
}

div[data-task=">"],
li[data-task=">"] {
ul > li.task-list-item[data-task=">"] {
--checkbox-color: var(--checkbox-deferred);
--checkbox-border-color: var(--checkbox-deferred);
--checkbox-marker-color: transparent;
--checklist-done-decoration: none;
color: var(--text-normal);
font-weight: var(--font-normal);
text-decoration: none;
}
div[data-task=">"] input[type=checkbox]:not(:checked),
li[data-task=">"] input[type=checkbox]:not(:checked) {
div[data-task=">"] input.task-list-item-checkbox[type=checkbox]:not(:checked),
ul > li.task-list-item[data-task=">"] input.task-list-item-checkbox[type=checkbox]:not(:checked) {
background-color: unset;
background: unset;
}
div[data-task=">"] input[type=checkbox]:checked,
li[data-task=">"] input[type=checkbox]:checked {
div[data-task=">"] input.task-list-item-checkbox[type=checkbox]:checked,
ul > li.task-list-item[data-task=">"] input.task-list-item-checkbox[type=checkbox]:checked {
background-color: unset;
background: unset;
}
div[data-task=">"] input[type=checkbox]:checked:after,
li[data-task=">"] input[type=checkbox]:checked:after {
div[data-task=">"] input.task-list-item-checkbox[type=checkbox]:checked:after,
ul > li.task-list-item[data-task=">"] input.task-list-item-checkbox[type=checkbox]:checked:after {
-webkit-mask-image: none;
font-family: var(--font-monospace);
background: unset;
Expand All @@ -134,25 +140,27 @@ li[data-task=">"] input[type=checkbox]:checked:after {
}

div[data-task=R],
li[data-task=R] {
ul > li.task-list-item[data-task=R] {
--checkbox-color: var(--checkbox-review);
--checkbox-border-color: var(--checkbox-review);
--checkbox-marker-color: transparent;
--checklist-done-decoration: none;
color: var(--text-normal);
font-weight: var(--font-normal);
text-decoration: none;
}
div[data-task=R] input[type=checkbox]:not(:checked),
li[data-task=R] input[type=checkbox]:not(:checked) {
div[data-task=R] input.task-list-item-checkbox[type=checkbox]:not(:checked),
ul > li.task-list-item[data-task=R] input.task-list-item-checkbox[type=checkbox]:not(:checked) {
background-color: unset;
background: unset;
}
div[data-task=R] input[type=checkbox]:checked,
li[data-task=R] input[type=checkbox]:checked {
div[data-task=R] input.task-list-item-checkbox[type=checkbox]:checked,
ul > li.task-list-item[data-task=R] input.task-list-item-checkbox[type=checkbox]:checked {
background-color: unset;
background: unset;
}
div[data-task=R] input[type=checkbox]:checked:after,
li[data-task=R] input[type=checkbox]:checked:after {
div[data-task=R] input.task-list-item-checkbox[type=checkbox]:checked:after,
ul > li.task-list-item[data-task=R] input.task-list-item-checkbox[type=checkbox]:checked:after {
-webkit-mask-image: none;
font-family: var(--font-monospace);
background: unset;
Expand All @@ -169,25 +177,27 @@ li[data-task=R] input[type=checkbox]:checked:after {
}

div[data-task=r],
li[data-task=r] {
ul > li.task-list-item[data-task=r] {
--checkbox-color: var(--checkbox-review);
--checkbox-border-color: var(--checkbox-review);
--checkbox-marker-color: transparent;
--checklist-done-decoration: none;
color: var(--text-normal);
font-weight: var(--font-normal);
text-decoration: none;
}
div[data-task=r] input[type=checkbox]:not(:checked),
li[data-task=r] input[type=checkbox]:not(:checked) {
div[data-task=r] input.task-list-item-checkbox[type=checkbox]:not(:checked),
ul > li.task-list-item[data-task=r] input.task-list-item-checkbox[type=checkbox]:not(:checked) {
background-color: unset;
background: unset;
}
div[data-task=r] input[type=checkbox]:checked,
li[data-task=r] input[type=checkbox]:checked {
div[data-task=r] input.task-list-item-checkbox[type=checkbox]:checked,
ul > li.task-list-item[data-task=r] input.task-list-item-checkbox[type=checkbox]:checked {
background-color: unset;
background: unset;
}
div[data-task=r] input[type=checkbox]:checked:after,
li[data-task=r] input[type=checkbox]:checked:after {
div[data-task=r] input.task-list-item-checkbox[type=checkbox]:checked:after,
ul > li.task-list-item[data-task=r] input.task-list-item-checkbox[type=checkbox]:checked:after {
-webkit-mask-image: none;
font-family: var(--font-monospace);
background: unset;
Expand All @@ -204,25 +214,27 @@ li[data-task=r] input[type=checkbox]:checked:after {
}

div[data-task="?"],
li[data-task="?"] {
ul > li.task-list-item[data-task="?"] {
--checkbox-color: var(--checkbox-question);
--checkbox-border-color: var(--checkbox-question);
--checkbox-marker-color: transparent;
--checklist-done-decoration: none;
color: var(--text-normal);
font-weight: var(--font-bold);
text-decoration: none;
}
div[data-task="?"] input[type=checkbox]:not(:checked),
li[data-task="?"] input[type=checkbox]:not(:checked) {
div[data-task="?"] input.task-list-item-checkbox[type=checkbox]:not(:checked),
ul > li.task-list-item[data-task="?"] input.task-list-item-checkbox[type=checkbox]:not(:checked) {
background-color: unset;
background: unset;
}
div[data-task="?"] input[type=checkbox]:checked,
li[data-task="?"] input[type=checkbox]:checked {
div[data-task="?"] input.task-list-item-checkbox[type=checkbox]:checked,
ul > li.task-list-item[data-task="?"] input.task-list-item-checkbox[type=checkbox]:checked {
background-color: unset;
background: unset;
}
div[data-task="?"] input[type=checkbox]:checked:after,
li[data-task="?"] input[type=checkbox]:checked:after {
div[data-task="?"] input.task-list-item-checkbox[type=checkbox]:checked:after,
ul > li.task-list-item[data-task="?"] input.task-list-item-checkbox[type=checkbox]:checked:after {
-webkit-mask-image: none;
font-family: var(--font-monospace);
background: unset;
Expand All @@ -239,25 +251,27 @@ li[data-task="?"] input[type=checkbox]:checked:after {
}

div[data-task="!"],
li[data-task="!"] {
ul > li.task-list-item[data-task="!"] {
--checkbox-color: var(--checkbox-important);
--checkbox-border-color: var(--checkbox-important);
--checkbox-marker-color: transparent;
--checklist-done-decoration: none;
color: var(--text-normal);
font-weight: var(--font-extrabold);
text-decoration: none;
}
div[data-task="!"] input[type=checkbox]:not(:checked),
li[data-task="!"] input[type=checkbox]:not(:checked) {
div[data-task="!"] input.task-list-item-checkbox[type=checkbox]:not(:checked),
ul > li.task-list-item[data-task="!"] input.task-list-item-checkbox[type=checkbox]:not(:checked) {
background-color: unset;
background: unset;
}
div[data-task="!"] input[type=checkbox]:checked,
li[data-task="!"] input[type=checkbox]:checked {
div[data-task="!"] input.task-list-item-checkbox[type=checkbox]:checked,
ul > li.task-list-item[data-task="!"] input.task-list-item-checkbox[type=checkbox]:checked {
background-color: unset;
background: unset;
}
div[data-task="!"] input[type=checkbox]:checked:after,
li[data-task="!"] input[type=checkbox]:checked:after {
div[data-task="!"] input.task-list-item-checkbox[type=checkbox]:checked:after,
ul > li.task-list-item[data-task="!"] input.task-list-item-checkbox[type=checkbox]:checked:after {
-webkit-mask-image: none;
font-family: var(--font-monospace);
background: unset;
Expand All @@ -274,23 +288,26 @@ li[data-task="!"] input[type=checkbox]:checked:after {
}

div[data-task="/"],
li[data-task="/"] {
ul > li.task-list-item[data-task="/"] {
--checkbox-color: var(--checkbox-in-progress);
--checkbox-border-color: var(--checkbox-in-progress);
--checkbox-marker-color: transparent;
--checklist-done-decoration: none;
color: var(--text-normal);
font-weight: var(--font-normal);
text-decoration: none;
}
div[data-task="/"] input[type=checkbox]:not(:checked),
li[data-task="/"] input[type=checkbox]:not(:checked) {
div[data-task="/"] input.task-list-item-checkbox[type=checkbox]:not(:checked),
ul > li.task-list-item[data-task="/"] input.task-list-item-checkbox[type=checkbox]:not(:checked) {
background-color: unset;
background: unset;
}
div[data-task="/"] input[type=checkbox]:checked,
li[data-task="/"] input[type=checkbox]:checked {
div[data-task="/"] input.task-list-item-checkbox[type=checkbox]:checked,
ul > li.task-list-item[data-task="/"] input.task-list-item-checkbox[type=checkbox]:checked {
background: linear-gradient(135deg, transparent 50%, var(--checkbox-in-progress) 50%);
}
div[data-task="/"] input[type=checkbox]:checked:after,
li[data-task="/"] input[type=checkbox]:checked:after {
div[data-task="/"] input.task-list-item-checkbox[type=checkbox]:checked:after,
ul > li.task-list-item[data-task="/"] input.task-list-item-checkbox[type=checkbox]:checked:after {
-webkit-mask-image: none;
background: unset;
content: " ";
Expand Down
Loading

0 comments on commit 938d0b0

Please sign in to comment.