From 933ee3d3b12955e00a9ef9541db44d730c2169d4 Mon Sep 17 00:00:00 2001 From: dragonwocky Date: Sun, 2 Aug 2020 16:26:28 +1000 Subject: [PATCH] add alerts (inc. update checker) to menu --- mods/core/create.js | 1 + mods/core/css/menu.css | 127 +++++++++++++++++++++++++++++++++++++++++ mods/core/menu.html | 9 +-- mods/core/menu.js | 82 +++++++++++++++++++++++++- mods/core/tray.js | 1 - pkg/helpers.js | 35 ++++++++++++ pkg/helpers.md | 14 ++++- pkg/loader.js | 84 +++++++++------------------ 8 files changed, 286 insertions(+), 67 deletions(-) diff --git a/mods/core/create.js b/mods/core/create.js index 87709cb..4a2a1e9 100644 --- a/mods/core/create.js +++ b/mods/core/create.js @@ -60,6 +60,7 @@ module.exports = (defaults) => allWindows().some((win) => win.isVisible() && win.id != window.id) ) { window.show(); + window.focus(); if (settings.maximized) window.maximize(); if ( (focused_window && focused_window.isFullScreen()) || diff --git a/mods/core/css/menu.css b/mods/core/css/menu.css index ee75464..f73b2de 100644 --- a/mods/core/css/menu.css +++ b/mods/core/css/menu.css @@ -7,6 +7,15 @@ @import './buttons.css'; @import './scrollbars.css'; +@keyframes spin { + from { + transform: rotate(0deg); + } + to { + transform: rotate(360deg); + } +} + * { box-sizing: border-box; word-break: break-word; @@ -21,12 +30,31 @@ body { padding: 0; } +body:not([style]) > * { + display: none !important; +} +body:not([style])::after { + content: ''; + position: absolute; + left: 44vw; + top: calc(50% - 7.5vw); + width: 10vw; + height: 10vw; + border: 4px solid rgb(34, 34, 34); + border-top-color: transparent; + border-radius: 50%; + animation: spin 0.8s linear infinite; +} + .notion-dark-theme * { outline-color: var(--theme_dark--card-border); } .notion-light-theme * { outline-color: var(--theme_light--card-border); } +*:active { + outline: none; +} .notion-dark-theme { background: var(--theme_dark--main); @@ -67,3 +95,102 @@ body { main { padding: 1em; } + +#alerts [role='alert'] { + padding: 0.25em; + display: flex; + margin-bottom: 0.75em; +} +#alerts [role='alert']::before { + content: '!'; + display: block; + /* margin: auto 0; */ + font-weight: bold; + font-size: 1.2em; + padding: 0.5rem; +} +#alerts [role='alert'] p { + font-size: 1rem; + margin: auto 0; + padding: 0.5em; +} + +.notion-dark-theme #alerts [role='alert'] p { + color: var(--theme_dark--text_ui); +} +.notion-light-theme #alerts [role='alert'] p { + color: var(--theme_light--text_ui); +} + +.notion-light-theme #alerts [role='alert']::before { + color: rgba(0, 0, 0, 0.2); +} +.notion-light-theme #alerts [role='alert'] { + border: 1px solid rgba(0, 0, 0, 0.1); +} + +.notion-dark-theme #alerts .error { + border: 1px solid var(--theme_dark--bg_red); + background: var(--theme_dark--line_red); +} +.notion-dark-theme #alerts .error::before { + color: var(--theme_dark--bg_red); +} +.notion-light-theme #alerts .error { + background: var(--theme_light--line_red); +} + +.notion-dark-theme #alerts .warning { + border: 1px solid var(--theme_dark--bg_yellow); + background: var(--theme_dark--line_yellow); +} +.notion-dark-theme #alerts .warning::before { + color: var(--theme_dark--bg_yellow); +} +.notion-light-theme #alerts .warning { + background: var(--theme_light--line_yellow); +} + +.notion-dark-theme #alerts .info { + border: 1px solid var(--theme_dark--bg_blue); + background: var(--theme_dark--line_blue); +} +.notion-dark-theme #alerts .info::before { + color: var(--theme_dark--bg_blue); +} +.notion-light-theme #alerts .info { + background: var(--theme_light--line_blue); +} + +#alerts .success::before { + content: '✓'; +} +.notion-dark-theme #alerts .success { + border: 1px solid var(--theme_dark--bg_green); + background: var(--theme_dark--line_green); +} +.notion-dark-theme #alerts .success::before { + color: var(--theme_dark--bg_green); +} +.notion-light-theme #alerts .success { + background: var(--theme_light--line_green); +} + +code { + border-radius: 0.1em; + padding: 0.2em 0.4em; +} +.notion-dark-theme code { + font: 0.85em var(--theme_dark--font_code); + /* color: var(--theme_dark--code_inline-text); */ + background: var(--theme_dark--code_inline-background); +} +.notion-light-theme code { + font: 0.85em var(--theme_light--font_code); + /* color: var(--theme_light--code_inline-text); */ + background: var(--theme_light--code_inline-background); +} + +u { + text-decoration: underline; +} diff --git a/mods/core/menu.html b/mods/core/menu.html index 09a0eae..1d1d336 100644 --- a/mods/core/menu.html +++ b/mods/core/menu.html @@ -4,16 +4,13 @@ notion-enhancer menu - - +
- hi +
+