From f93eef28f34a03d01f6adf04d63b70fa0e82a860 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Fri, 14 Feb 2025 14:11:22 +0200 Subject: [PATCH] feat(zen): hide most UI elements --- src/public/stylesheets/style.css | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/src/public/stylesheets/style.css b/src/public/stylesheets/style.css index 27370f29b..a6fea749e 100644 --- a/src/public/stylesheets/style.css +++ b/src/public/stylesheets/style.css @@ -1644,3 +1644,24 @@ body.electron.platform-darwin:not(.native-titlebar) .tab-row-container { box-shadow: 0px 10px 20px rgba(0, 0, 0, var(--dropdown-shadow-opacity)); border-radius: 4px; } + +body.zen .gutter, +body.zen #launcher-container, +body.zen #left-pane, +body.zen #right-pane, +body.zen .tab-row-container, +body.zen .ribbon-container, +body.zen .note-icon-widget, +body.zen .title-row .button-widget { + display: none !important; +} + +body.zen #launcher-pane { + position: absolute !important; + top: 0 !important; + right: 0 !important; + width: 64px !important; + height: 64px !important; + background: transparent !important; + border: 0 !important; +} \ No newline at end of file