Skip to content

Commit 2f69db3

Browse files
committed
Fix #738
1 parent 65df47d commit 2f69db3

File tree

8 files changed

+15
-8
lines changed

8 files changed

+15
-8
lines changed

Minimal.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3216,8 +3216,9 @@ body:not(.minimal-icons-off) svg.longform {
32163216
.minimal-focus-mode.borders-title .workspace-ribbon.mod-left.is-collapsed {
32173217
border-right: none;
32183218
}
3219-
.minimal-focus-mode .mod-top-right-space .sidebar-toggle-button.mod-right {
3219+
.minimal-focus-mode .mod-root .sidebar-toggle-button.mod-right {
32203220
opacity: 0;
3221+
transition: opacity 0.2s ease-in-out 0.5s;
32213222
}
32223223
.minimal-focus-mode:not(.minimal-status-off) .status-bar {
32233224
opacity: 0;
@@ -3264,6 +3265,7 @@ body:not(.minimal-icons-off) svg.longform {
32643265
--tab-outline-width: 1px;
32653266
transition: all 0.1s linear 0.05s;
32663267
}
3268+
.minimal-focus-mode .mod-root .workspace-tab-header-container:hover .sidebar-toggle-button.mod-right,
32673269
.minimal-focus-mode .mod-root .workspace-tab-header-container:hover .workspace-tab-header-container-inner,
32683270
.minimal-focus-mode .mod-root .workspace-tab-header-container:hover .workspace-tab-header-new-tab,
32693271
.minimal-focus-mode .mod-root .workspace-tab-header-container:hover .workspace-tab-header-tab-list {

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Minimal",
3-
"version": "7.6.8",
3+
"version": "7.6.9",
44
"minAppVersion": "1.6.1",
55
"author": "@kepano",
66
"authorUrl": "https://twitter.com/kepano",

src/css/main.css

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/css/main.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/css/main.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/css/main.min.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/scss/features/focus-mode.scss

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,9 @@
4242
}
4343

4444
/* Hide right sidebar button */
45-
.mod-top-right-space .sidebar-toggle-button.mod-right {
45+
.mod-root .sidebar-toggle-button.mod-right {
4646
opacity: 0;
47+
transition: opacity 0.2s ease-in-out 0.5s;
4748
}
4849

4950
/* Hide status bar */
@@ -100,6 +101,8 @@
100101
height: var(--header-height);
101102
--tab-outline-width: 1px;
102103
transition: all 0.1s linear 0.05s;
104+
105+
.sidebar-toggle-button.mod-right,
103106
.workspace-tab-header-container-inner,
104107
.workspace-tab-header-new-tab,
105108
.workspace-tab-header-tab-list {

theme.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)