From 3a2f9fac72d141f6a5e2e56133a5ae77d6972680 Mon Sep 17 00:00:00 2001 From: 0neGal Date: Sun, 20 Feb 2022 20:31:50 +0100 Subject: initial work on settings page This only has the actual UI for the settings page in place, no actual functionality has been implemented yet. I made several changes not directly related to the settings page, such as changes the CSS color variables to use RGB, as to easily add an alpha channel to colors. I also changed the way the Browser is toggled in some respects and many other changes that makes it easy to re-use the browser code to create the settings UI --- src/app/browser.js | 4 -- src/app/icons/apply.png | Bin 0 -> 2555 bytes src/app/icons/settings.png | Bin 0 -> 2496 bytes src/app/index.html | 50 ++++++++++++++++- src/app/main.css | 134 +++++++++++++++++++++++++++++++++------------ src/app/main.js | 7 +++ src/app/settings.js | 46 ++++++++++++++++ 7 files changed, 198 insertions(+), 43 deletions(-) create mode 100644 src/app/icons/apply.png create mode 100644 src/app/icons/settings.png create mode 100644 src/app/settings.js diff --git a/src/app/browser.js b/src/app/browser.js index ded12fa..275e16e 100644 --- a/src/app/browser.js +++ b/src/app/browser.js @@ -104,10 +104,6 @@ var Browser = { } } -document.body.addEventListener("keyup", (e) => { - if (e.key == "Escape") {Browser.toggle(false)} -}) - function BrowserElFromObj(obj) { let pkg = {...obj, ...obj.versions[0]}; diff --git a/src/app/icons/apply.png b/src/app/icons/apply.png new file mode 100644 index 0000000..915f809 Binary files /dev/null and b/src/app/icons/apply.png differ diff --git a/src/app/icons/settings.png b/src/app/icons/settings.png new file mode 100644 index 0000000..3f7715a Binary files /dev/null and b/src/app/icons/settings.png differ diff --git a/src/app/index.html b/src/app/index.html index b5fc8cb..5ca9306 100644 --- a/src/app/index.html +++ b/src/app/index.html @@ -10,6 +10,7 @@
+
@@ -21,9 +22,51 @@ -
-
-
+
+ + +