patch removal and help commands + separate focus mode into an extension

This commit is contained in:
dragonwocky 2020-08-11 11:16:23 +10:00
parent db7992cfc3
commit f7c71eb9c7
5 changed files with 42 additions and 19 deletions

View File

@ -2,7 +2,6 @@
* notion-enhancer
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
* (c) 2020 TarasokUA
* (c) 2020 Arecsu
* under the MIT license
*/
@ -46,19 +45,3 @@
justify-content: flex-end;
}
}
/* hide topbar when sidebar is hidden */
.notion-sidebar-container[style*='width: 0px;'] + .notion-frame {
height: calc(
100% - (var(--configured-dragarea_height, 10px) + 45px)
) !important;
}
.notion-sidebar-container[style*='width: 0px;'] + .notion-frame .notion-topbar {
opacity: 0 !important;
transition: opacity 200ms ease-in-out !important;
}
.notion-sidebar-container[style*='width: 0px;']
+ .notion-frame
.notion-topbar:hover {
opacity: 1 !important;
}

18
repo/focus-mode/mod.js Normal file
View File

@ -0,0 +1,18 @@
/*
* focus mode
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
* (c) 2020 Arecsu
* under the MIT license
*/
'use strict';
module.exports = {
id: '5a08598d-bfac-4167-9ae8-2bd0e2ef141e',
tags: ['extension'],
name: 'focus mode',
desc:
'hide the titlebar/menubar when the sidebar is closed (will be shown on hover).',
version: '0.0.1',
author: 'arecsu',
};

View File

@ -0,0 +1,21 @@
/*
* focus mode
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
* (c) 2020 Arecsu
* under the MIT license
*/
.notion-sidebar-container[style*='width: 0px;'] + .notion-frame {
height: calc(
100% - (var(--configured-dragarea_height, 10px) + 45px)
) !important;
}
.notion-sidebar-container[style*='width: 0px;'] + .notion-frame .notion-topbar {
opacity: 0 !important;
transition: opacity 200ms ease-in-out !important;
}
.notion-sidebar-container[style*='width: 0px;']
+ .notion-frame
.notion-topbar:hover {
opacity: 1 !important;
}

View File

@ -1,6 +1,7 @@
/*
* neutral
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
* (c) 2020 Arecsu
* under the MIT license
*/

View File

@ -1,5 +1,5 @@
/*
* notion-enhancer
* neutral
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
* (c) 2020 Arecsu
* under the MIT license
@ -36,7 +36,7 @@
--theme_dark--font-heading1_size: 33px;
--theme_dark--font-heading2_size: 25.3px;
--theme_dark--font-heading3_size: 19.5px;
--theme_dark--font-label_size: 15px;
--theme_dark--font-label_size: 13.5px;
--theme_dark--font-body_size: 15px;
--theme_dark--font-code_size: 13.5px;