mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-06 05:29:02 +00:00
patch removal and help commands + separate focus mode into an extension
This commit is contained in:
parent
db7992cfc3
commit
f7c71eb9c7
@ -2,7 +2,6 @@
|
|||||||
* notion-enhancer
|
* notion-enhancer
|
||||||
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
|
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
|
||||||
* (c) 2020 TarasokUA
|
* (c) 2020 TarasokUA
|
||||||
* (c) 2020 Arecsu
|
|
||||||
* under the MIT license
|
* under the MIT license
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -46,19 +45,3 @@
|
|||||||
justify-content: flex-end;
|
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
18
repo/focus-mode/mod.js
Normal 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',
|
||||||
|
};
|
21
repo/focus-mode/styles.css
Normal file
21
repo/focus-mode/styles.css
Normal 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;
|
||||||
|
}
|
@ -1,6 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* neutral
|
* neutral
|
||||||
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
|
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
|
||||||
|
* (c) 2020 Arecsu
|
||||||
* under the MIT license
|
* under the MIT license
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* notion-enhancer
|
* neutral
|
||||||
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
|
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
|
||||||
* (c) 2020 Arecsu
|
* (c) 2020 Arecsu
|
||||||
* under the MIT license
|
* under the MIT license
|
||||||
@ -36,7 +36,7 @@
|
|||||||
--theme_dark--font-heading1_size: 33px;
|
--theme_dark--font-heading1_size: 33px;
|
||||||
--theme_dark--font-heading2_size: 25.3px;
|
--theme_dark--font-heading2_size: 25.3px;
|
||||||
--theme_dark--font-heading3_size: 19.5px;
|
--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-body_size: 15px;
|
||||||
--theme_dark--font-code_size: 13.5px;
|
--theme_dark--font-code_size: 13.5px;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user