Skip to content

Commit

Permalink
🔖 0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Jan 11, 2023
1 parent 750678c commit 3fbe1a4
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 10 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,16 @@ 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.7.1](https://github.com/ebullient/obsidian-theme-ebullientworks/compare/0.7.0...0.7.1)

- Add icons to reference and toc callouts [`#22`](https://github.com/ebullient/obsidian-theme-ebullientworks/pull/22)
- 🐛 Ignore embedded header of all levels [`f85fd12`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/f85fd121d156bee641b4a13d1dad9d99e7ba9405)
- 📝 Consistent style setting descriptions [`b0e924a`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/b0e924a217bf7c95d5aeae6c9621e9146dba45fa)

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

> 1 January 2023
- 🎨 teal -> cyan; + orange; define obsidian colors [`9e6197e`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/9e6197e5ce15932e45e761a17688e8323039ad1b)

#### [0.6.2](https://github.com/ebullient/obsidian-theme-ebullientworks/compare/0.6.1...0.6.2)
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.7.0",
"version": "0.7.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.7.0",
"version": "0.7.1",
"private": true,
"description": "An Obsidian Theme",
"author": "Erin Schnabel",
Expand Down
2 changes: 1 addition & 1 deletion tasks-snippet.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@charset "UTF-8";
/*
Ebullientworks tasks 0.7.0 by @ebullient
Ebullientworks tasks 0.7.1 by @ebullient
*/
:root {
--checkbox-checked: rgb(139, 167, 145);
Expand Down
26 changes: 19 additions & 7 deletions theme.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@charset "UTF-8";
/*
Ebullientworks 0.7.0 by @ebullient
Ebullientworks 0.7.1 by @ebullient
This is a dark and light theme for Obsidian.
Expand Down Expand Up @@ -95,14 +95,14 @@ settings:
label: unset
-
title: Tags
description: Font for displaying inline tags; empty will use default text font
description: Font for tags; empty will use default text font
id: ebw-font-tags
type: variable-text
default: "'Architects Daughter'"
-
id: ebw-font-callout-title
title: Font for callout/admonition titles
description: Use the specified font for callout and admonition titles
title: Callout/admonition titles
description: Font for callout/admonition titles; empty will use default text font
type: variable-text
default: "'Architects Daughter'"
-
Expand All @@ -120,7 +120,7 @@ settings:
-
title: Primary accent color
id: ebullientworks-primary-accent
description: Choose the primary accent color. You should define a snippet if you select primary-accent-custom. See the Theme's README.
description: Choose the primary accent color. You must define a snippet if you select primary-accent-custom. See the Theme's README.
type: class-select
allowEmpty: false
default: primary-accent-purple
Expand All @@ -136,7 +136,7 @@ settings:
-
title: Secondary accent color
id: ebullientworks-secondary-accent
description: Choose the secondary accent color. You should define a snippet if you select secondary-accent-custom. See the Theme's README.
description: Choose the secondary accent color. You must define a snippet if you select secondary-accent-custom. See the Theme's README.
type: class-select
allowEmpty: false
default: secondary-accent-green
Expand Down Expand Up @@ -1670,10 +1670,12 @@ body {
}

.callout[data-callout=reference] {
--callout-icon: library;
--callout-color: var(--ebw-callout-reference);
}

.callout[data-callout=toc] {
--callout-icon: layout-list;
--callout-color: var(--ebw-callout-toc);
}

Expand Down Expand Up @@ -1875,8 +1877,18 @@ div[src$="#small-right"] {
.ebullientworks-hide-embedded-heading .markdown-embed .mod-header {
display: none;
}
.ebullientworks-hide-embedded-heading .markdown-embed div.markdown-preview-pusher + div > h1[data-heading],
.ebullientworks-hide-embedded-heading .markdown-embed div.markdown-preview-pusher + div > h2[data-heading],
.ebullientworks-hide-embedded-heading .markdown-embed div.mod-header + div > h2[data-heading] {
.ebullientworks-hide-embedded-heading .markdown-embed div.markdown-preview-pusher + div > h3[data-heading],
.ebullientworks-hide-embedded-heading .markdown-embed div.markdown-preview-pusher + div > h4[data-heading],
.ebullientworks-hide-embedded-heading .markdown-embed div.markdown-preview-pusher + div > h5[data-heading],
.ebullientworks-hide-embedded-heading .markdown-embed div.markdown-preview-pusher + div > h6[data-heading],
.ebullientworks-hide-embedded-heading .markdown-embed div.mod-header + div > h1[data-heading],
.ebullientworks-hide-embedded-heading .markdown-embed div.mod-header + div > h2[data-heading],
.ebullientworks-hide-embedded-heading .markdown-embed div.mod-header + div > h3[data-heading],
.ebullientworks-hide-embedded-heading .markdown-embed div.mod-header + div > h4[data-heading],
.ebullientworks-hide-embedded-heading .markdown-embed div.mod-header + div > h5[data-heading],
.ebullientworks-hide-embedded-heading .markdown-embed div.mod-header + div > h6[data-heading] {
display: none;
}

Expand Down

0 comments on commit 3fbe1a4

Please sign in to comment.