From 13901e44530c912506a130466826a1fa0f5deb86 Mon Sep 17 00:00:00 2001 From: Joel Brock Date: Thu, 23 Apr 2026 11:25:19 -0700 Subject: [PATCH] fix: My Day toggle only hides buttons not panel, default to false --- content/settings-defaults.js | 2 +- popup/popup.js | 2 +- themes/base.css | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/content/settings-defaults.js b/content/settings-defaults.js index c93c158..5dff56e 100644 --- a/content/settings-defaults.js +++ b/content/settings-defaults.js @@ -28,7 +28,7 @@ window.OutlookRelook.DEFAULTS = { hideFocusedOtherTabs: true, hideSidebarAppIcons: false, hideGroupsSection: false, - hideMyDayButtons: true, + hideMyDayButtons: false, hideSenderAvatars: false, hideFeatureDiscovery: true, hideVivaInsights: true, diff --git a/popup/popup.js b/popup/popup.js index f68400b..a522bc3 100644 --- a/popup/popup.js +++ b/popup/popup.js @@ -27,7 +27,7 @@ hideFocusedOtherTabs: true, hideSidebarAppIcons: false, hideGroupsSection: false, - hideMyDayButtons: true, + hideMyDayButtons: false, hideSenderAvatars: false, hideFeatureDiscovery: true, hideVivaInsights: true, diff --git a/themes/base.css b/themes/base.css index 00bc55e..6408eb5 100644 --- a/themes/base.css +++ b/themes/base.css @@ -181,9 +181,9 @@ html[data-or-hide-groups="true"] [aria-label*="Groups" i][role="treeitem"] { display: none !important; } -/* My Day / right-side panel buttons */ -html[data-or-hide-myday="true"] [aria-label*="My Day" i], -html[data-or-hide-myday="true"] [aria-label*="To Do" i][role="button"] { +/* My Day / right-side panel TOGGLE BUTTONS only (not the panel itself) */ +html[data-or-hide-myday="true"] button[aria-label*="My Day" i], +html[data-or-hide-myday="true"] button[aria-label*="To Do" i] { display: none !important; }