Skip to content

Commit

Permalink
🔖 0.3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Feb 3, 2022
1 parent 10a4eef commit 7f19371
Show file tree
Hide file tree
Showing 4 changed files with 65 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,15 @@ 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.13](https://github.com/ebullient/obsidian-theme-ebullientworks/compare/0.3.12...0.3.13)

- ✨ Hover to show collapsed sidebars [`10a4eef`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/10a4eef4a39b50d4a3b108a300b4f7f823dfbfb0)
- 🎨 Lighter error messages in dark mode [`3adb9c8`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/3adb9c8514bd01fb82fd85c860819f6e461397a7)

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

> 2 February 2022
- 🎨 Improve highlight / is-flashing / selection [`a086286`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/a08628650500d7c630dc55d389f72e303bf9ef48)
- 🎨 additional tweaks to collapse icons [`2eaa76e`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/2eaa76ea83ed9c275b93bdebf5e38f7ed8c3f931)
- 🎨 align is-flashing and highlight w/ primary accent [`ba108a6`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/ba108a63cbab62a1c7f2b89797539a117d477313)
Expand Down
59 changes: 56 additions & 3 deletions obsidian.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@charset "UTF-8";
/*
Ebullientworks 0.3.12 by @ebullient
Ebullientworks 0.3.13 by @ebullient
This is a dark and light theme for Obsidian.
Expand Down Expand Up @@ -53,6 +53,12 @@ settings:
description: If true, front-matter in preview mode will be collapsed in a top-right container.
type: class-toggle
default: false
-
id: ebullientworks-hover-collapsed-sidebars
title: Show collapsed sidebars on hover
description: If true, collapsed side-bars will be shown when you hover over the ribbon.
type: class-toggle
default: false
-
id: ebullientworks-fonts
title: Fonts
Expand Down Expand Up @@ -401,8 +407,8 @@ settings:
--text-muted: var(--gray);
--text-muted-rgb: 153, 153, 153;
--text-faint: var(--gray-dark-1);
--text-error: var(--pink-5);
--text-error-hover: var(--pink-5);
--text-error: var(--pink-3);
--text-error-hover: var(--pink-2);
--text-highlight-fg: var(--gray-dark-7);
--text-highlight-bg: var(--primary-accent-2);
--text-highlight-bg-active: rgba(255, 216, 99, 0.664);
Expand Down Expand Up @@ -904,6 +910,53 @@ body.plugin-sliding-panes-rotate-header .horizontal-main-container > .workspace
border-left: none;
}

body:not(.is-modal).ebullientworks-hover-collapsed-sidebars .mod-left-split.is-collapsed:not(.is-floating) {
display: flex !important;
position: absolute;
left: 30px;
top: 0;
bottom: 0;
visibility: hidden;
opacity: 0;
z-index: 1;
transition: visibility 0.2s 0 ease;
}
body:not(.is-modal).ebullientworks-hover-collapsed-sidebars .side-dock-ribbon.mod-left:hover + .mod-left-split.is-collapsed:not(.is-floating),
body:not(.is-modal).ebullientworks-hover-collapsed-sidebars .mod-left-split.is-collapsed:not(.is-floating):hover {
transition: visibility 0.2s 0.7s ease;
visibility: visible;
opacity: 1;
}
body:not(.is-modal).ebullientworks-hover-collapsed-sidebars .mod-right-split.is-collapsed:not(.is-floating) {
display: flex !important;
width: 400px !important;
position: absolute;
bottom: 0;
right: 0;
visibility: hidden;
}
body:not(.is-modal).ebullientworks-hover-collapsed-sidebars .mod-right-split.is-collapsed:not(.is-floating)::before {
content: "✧ ・ ✦ ・ ✧";
writing-mode: vertical-rl;
text-orientation: upright;
font-size: 18px;
color: var(--primary-accent-3);
position: fixed;
line-height: 18px;
width: 32px;
top: 40%;
right: 5px;
z-index: 30;
visibility: visible;
}
body:not(.is-modal).ebullientworks-hover-collapsed-sidebars .mod-right-split.is-collapsed:not(.is-floating):hover {
width: 400px !important;
opacity: 1;
height: 100%;
padding-right: 30px;
visibility: visible;
}

.theme-dark {
--modal-nav-bg: var(--primary-accent-6);
--modal-nav-hover: var(--primary-accent-5);
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.12",
"version": "0.3.13",
"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.3.12 by @ebullient
Ebullientworks tasks 0.3.13 by @ebullient
*/
:root {
--checkbox-checked: rgb(139, 167, 145);
Expand Down

0 comments on commit 7f19371

Please sign in to comment.