Skip to content

Commit

Permalink
🔖 0.7.16
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 28, 2023
1 parent c2b9b1c commit ab1cf07
Show file tree
Hide file tree
Showing 7 changed files with 158 additions and 30 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,21 @@ 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.16](https://github.com/ebullient/obsidian-theme-ebullientworks/compare/0.7.15...0.7.16)

- Bump sass from 1.67.0 to 1.68.0 [`#65`](https://github.com/ebullient/obsidian-theme-ebullientworks/pull/65)
- Bump sass from 1.66.1 to 1.67.0 [`#64`](https://github.com/ebullient/obsidian-theme-ebullientworks/pull/64)
- Bump actions/checkout from 3 to 4 [`#63`](https://github.com/ebullient/obsidian-theme-ebullientworks/pull/63)
- ⬆️ nested dependency updates [`e904cd3`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/e904cd3b987394ac9b11c79f199a3cf4d4e0c32c)
- 📌 update fonts / font-face [`c2b9b1c`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/c2b9b1c0d45bd1062a8f4a458a2fa90fe931a96b)
- 🎨 alt text for visible/invisible embeds [`c8228e3`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/c8228e39567bba90b5255b0e188dd30f222e8a6a)
- 🐛 Fix lists nested under list items [`a5226ac`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/a5226ac5eaf6e2fdacb08f100bbdc7669476a907)
- 🎨 use alt text for invisible-embed, too [`80f4efc`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/80f4efc4537c4f588ecec34075d4d18c2b494cdf)

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

> 4 September 2023
- Bump sass from 1.65.1 to 1.66.1 [`#61`](https://github.com/ebullient/obsidian-theme-ebullientworks/pull/61)
- 🎨 clean up internal-embeds [`#60`](https://github.com/ebullient/obsidian-theme-ebullientworks/pull/60)
- 🎨 Style hr in live preview, too [`d88da9f`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/d88da9f2180390075f01bacbd183d6c715d1d006)
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.15",
"version": "0.7.16",
"minAppVersion": "0.16.0",
"author": "Ebullientworks",
"authorUrl": "https://github.com/ebullient",
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.15",
"version": "0.7.16",
"private": true,
"description": "An Obsidian Theme",
"author": "Erin Schnabel",
Expand Down
38 changes: 33 additions & 5 deletions publish.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Architects+Daughter&family=IBM+Plex+Sans:wght@300;400;700&display=swap");
/*
Ebullientworks 0.7.15. A dark and light theme for Obsidian.
Ebullientworks 0.7.16. A dark and light theme for Obsidian.
https://github.com/ebullient/obsidian-theme-ebullientworks
*/
Expand Down Expand Up @@ -1179,7 +1178,7 @@ body {
--ebw-embed-border-color: var(--gray-dark-7);
--embed-border-left: 0.0625rem solid var(--ebw-embed-border-color);
--embed-border-right: 0.0625rem solid var(--ebw-embed-border-color);
--embed-padding: 0 var(--size-4-1);
--embed-padding: var(--size-2-1) var(--size-4-2);
}

.theme-light {
Expand Down Expand Up @@ -1218,6 +1217,20 @@ div[src$="#small-right"] {
width: 4.6875rem;
}

/** Ensure an individual embedded block to have borders and padding removed (nesting) */
.internal-embed[alt=invisible-embed] {
--embed-border-left: none;
--embed-border-right: none;
--embed-padding: 0;
}

/** Ensure an individual embedded block will have borders and padding applied (nesting) */
.internal-embed[alt=visible-embed] {
--embed-border-left: 0.0625rem solid var(--ebw-embed-border-color);
--embed-border-right: 0.0625rem solid var(--ebw-embed-border-color);
--embed-padding: var(--size-2-1) var(--size-4-2);
}

.markdown-embed {
border-radius: var(--radius-l);
position: relative;
Expand All @@ -1230,8 +1243,8 @@ div[src$="#small-right"] {
overflow-y: unset;
}

.internal-embed .markdown-embed-content .markdown-rendered ul,
.internal-embed .markdown-embed-content .markdown-rendered ol {
.internal-embed .markdown-embed-content .markdown-rendered div > ul,
.internal-embed .markdown-embed-content .markdown-rendered div > ol {
display: inline-block;
margin-block-start: 0;
}
Expand Down Expand Up @@ -1282,6 +1295,21 @@ li .internal-embed .markdown-embed-content {
z-index: var(--layer-tooltip);
}

.embedframe iframe {
width: 125%;
height: 46.875rem;
-webkit-transform: scale(0.8);
transform: scale(0.8);
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
}

.embedframe .scaled-iframe {
width: 100%;
height: 37.5rem;
position: relative;
}

body {
--table-header-color: var(--text-on-accent);
--table-header-background-hover: var(--ebw-table-header-alt);
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 0.7.15. A dark and light theme for Obsidian.
Ebullientworks 0.7.16. A dark and light theme for Obsidian.
https://github.com/ebullient/obsidian-theme-ebullientworks
*/
Expand Down
127 changes: 107 additions & 20 deletions theme.css

Large diffs are not rendered by default.

0 comments on commit ab1cf07

Please sign in to comment.