Skip to content

Commit

Permalink
changelog 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ebullient committed Jan 19, 2022
1 parent 0c9f7cb commit 9c3abbb
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 11 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ 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.3.1](https://github.com/ebullient/obsidian-theme-ebullientworks/compare/0.3.0...0.3.1)
#### [0.3.2](https://github.com/ebullient/obsidian-theme-ebullientworks/compare/0.3.0...0.3.2)

- 🐛 Move list padding out of snippet [`d9fb86e`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/d9fb86ee597882e39706159db6c867432a0ac777)
- 🎨 Clear background from minimal in tasks snippet [`7c1e2b5`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/7c1e2b53870d7b02c2bdd7b4f379a8f3cc220398)
- 🎨 Use primary-alt for inline embeds [`0c9f7cb`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/0c9f7cb46b95e7da0cab19e0178cd20c0d1af886)

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

Expand Down
18 changes: 10 additions & 8 deletions obsidian.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@charset "UTF-8";
/*
Ebullientworks by @ebullient
Ebullientworks 0.3.2 by @ebullient
This is a dark and light theme for Obsidian.
Expand Down Expand Up @@ -1385,7 +1385,15 @@ body:not(.ebullientworks-show-edit-mode-links) .markdown-source-view.mod-cm6 div
--checkbox-hover: var(--gray-light-2);
}

/** Set line-height on mobile */
.mobile .markdown-preview-view ol,
.mobile .markdown-preview-view ul {
display: block;
line-height: var(--line-height);
}

body:not(.ebullientworks-nix-checkbox) {
/** Condense whitespace */
/* '✓' for completed task ('- [x]') */
/* '-' for cancelled task ('- [-]') */
/* '>' for deferred task ('- [>]') */
Expand All @@ -1401,11 +1409,6 @@ body:not(.ebullientworks-nix-checkbox) .markdown-preview-view ul {
margin-inline-end: 0px;
padding-inline-start: 20px;
}
body:not(.ebullientworks-nix-checkbox) .mobile .markdown-preview-view ol,
body:not(.ebullientworks-nix-checkbox) .mobile .markdown-preview-view ul {
display: block;
line-height: var(--line-height);
}
body:not(.ebullientworks-nix-checkbox) .markdown-source-view.mod-cm6 input.task-list-item-checkbox,
body:not(.ebullientworks-nix-checkbox) .markdown-preview-view input.task-list-item-checkbox {
-webkit-appearance: none;
Expand Down Expand Up @@ -1725,8 +1728,7 @@ div[src$="#portrait"] {
.markdown-preview-view .markdown-embed .markdown-embed-content,
.markdown-preview-view .markdown-embed .markdown-embed-content > .markdown-preview-view {
max-height: unset;
background-color: var(--background-secondary);
/*define different bg color*/
background-color: var(--background-primary-alt);
}
.markdown-preview-view .markdown-embed .markdown-embed-content > :first-child {
margin-top: 0;
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.3.1",
"version": "0.3.2",
"private": true,
"description": "An Obsidian Theme",
"author": "Erin Schnabel",
Expand Down
2 changes: 1 addition & 1 deletion src/ebullientworks.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Ebullientworks by @ebullient
Ebullientworks 0.3.2 by @ebullient
This is a dark and light theme for Obsidian.
Expand Down
4 changes: 4 additions & 0 deletions src/tasks-snippet.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
Ebullientworks tasks 0.3.2 by @ebullient
*/

:root {
--checkbox-checked: rgb(139, 167, 145);
--checkbox-deferred: rgb(111, 166, 211);
Expand Down

0 comments on commit 9c3abbb

Please sign in to comment.