diff options
author | Frankie B <git@diskfloppy.me> | 2024-07-12 16:58:31 +0100 |
---|---|---|
committer | Frankie B <git@diskfloppy.me> | 2024-07-12 16:58:31 +0100 |
commit | 1f9dde81d41120a9d469074fea026de520492ea1 (patch) | |
tree | 93d450cef1a803d9c7c6e1d408b1adefe09da189 /public | |
parent | 79ba94714809af2dc26abd2007a042d456445c76 (diff) |
Add apply button to scheme swap, make it easier to readv2024.07.12
Diffstat (limited to 'public')
-rw-r--r-- | public/css/master.css | 8 | ||||
-rw-r--r-- | public/js/schemeSwap.js | 3 |
2 files changed, 10 insertions, 1 deletions
diff --git a/public/css/master.css b/public/css/master.css index d344fba..aa48e3f 100644 --- a/public/css/master.css +++ b/public/css/master.css @@ -296,6 +296,7 @@ input.file { table.form tr td textarea, table.form tr td input, table.form tr td button, +button, form.import input::file-selector-button, form.import button { background-color: var(--background); @@ -314,6 +315,7 @@ table.form tr td button { } form.import button:hover, +button:hover, form.import input::file-selector-button:hover, table.form tr td button:hover { color: var(--background); @@ -671,6 +673,12 @@ a:hover img.navbar-icon { } .footer p { + vertical-align: middle; margin: 0; line-height: 1.2; } + +.footer button, +.footer select{ + padding: 5px 10px; +} diff --git a/public/js/schemeSwap.js b/public/js/schemeSwap.js index 3baa09b..f51443d 100644 --- a/public/js/schemeSwap.js +++ b/public/js/schemeSwap.js @@ -46,7 +46,8 @@ function cookieExists(cname) { * Swaps the colorscheme * @param {string} scheme Color scheme ID */ -function swapScheme(scheme) { +function swapScheme() { + let scheme = document.getElementById('scheme-selector').value ; setCookie("colorscheme", scheme, 90); document.getElementById("css-colorscheme").href = `/css/colorschemes/${scheme}.css`; console.log(`Set colorscheme to ${getCookie("colorscheme")}`) |