From b9a392f5f1db5c7de60e929fdcc0ca42885f81ca Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Mon, 13 May 2019 18:18:57 +0200 Subject: Added user based dark theme support Co-authored-by: LarsVomMars --- src/main/resources/css/darkLayout.css | 32 +++++++++++++++++++++++++++ src/main/resources/css/index.css | 6 +++++ src/main/resources/js/index.js | 6 +++++ src/main/resources/views/admin.rocker.html | 5 +++-- src/main/resources/views/files.rocker.html | 5 +++-- src/main/resources/views/fileview.rocker.html | 5 +++-- src/main/resources/views/index.rocker.html | 17 ++++++++++++-- src/main/resources/views/layout.rocker.html | 10 ++++++++- src/main/resources/views/login.rocker.html | 5 +++-- src/main/resources/views/register.rocker.html | 5 +++-- src/main/resources/views/setup.rocker.html | 5 +++-- 11 files changed, 86 insertions(+), 15 deletions(-) create mode 100644 src/main/resources/css/darkLayout.css create mode 100644 src/main/resources/css/index.css create mode 100644 src/main/resources/js/index.js (limited to 'src/main/resources') diff --git a/src/main/resources/css/darkLayout.css b/src/main/resources/css/darkLayout.css new file mode 100644 index 0000000..71172a5 --- /dev/null +++ b/src/main/resources/css/darkLayout.css @@ -0,0 +1,32 @@ +/** + Main + */ +body { + background-color: #181a1b; +} + +.main { + color: #d0cdc6 +} + +button { + text-decoration-color: initial; + background-color: #3d4043; + border-top-color: #595959; + border-right-color: #595959; + border-bottom-color: #595959; + border-left-color: #595959; + color: #ffffff; +} + +input { + border-color: #575757; + color: #e8e6e3; +} + +/** + Other stuff + */ +tr:hover { + background-color: #121516 !important; +} diff --git a/src/main/resources/css/index.css b/src/main/resources/css/index.css new file mode 100644 index 0000000..5cf3c78 --- /dev/null +++ b/src/main/resources/css/index.css @@ -0,0 +1,6 @@ +.toggle { + position: absolute; + margin: 20px; + right: 0; + top: 0; +} diff --git a/src/main/resources/js/index.js b/src/main/resources/js/index.js new file mode 100644 index 0000000..4939622 --- /dev/null +++ b/src/main/resources/js/index.js @@ -0,0 +1,6 @@ +document.querySelector("#toggle").addEventListener("click", () => { + const request = new XMLHttpRequest(); + request.open("POST", "/user/theme"); + request.onload = () => location.reload(); + request.send(); +}); diff --git a/src/main/resources/views/admin.rocker.html b/src/main/resources/views/admin.rocker.html index 26859eb..7bd25a9 100644 --- a/src/main/resources/views/admin.rocker.html +++ b/src/main/resources/views/admin.rocker.html @@ -1,6 +1,7 @@ -@args (String message) +@import io.javalin.* +@args (String message, Context ctx) -@layout.template("Index", RockerContent.NONE, RockerContent.NONE) -> { +@layout.template("Index", ctx, RockerContent.NONE, RockerContent.NONE) -> {

Add new user

diff --git a/src/main/resources/views/files.rocker.html b/src/main/resources/views/files.rocker.html index 43a3488..8e75ac2 100644 --- a/src/main/resources/views/files.rocker.html +++ b/src/main/resources/views/files.rocker.html @@ -1,5 +1,6 @@ @import java.util.ArrayList -@args (ArrayList files, String path, Boolean isShared) +@import io.javalin.* +@args (ArrayList files, String path, Boolean isShared, Context ctx) @css => { @@ -14,7 +15,7 @@ } -@layout.template(files.size() + " Files", css, js) -> { +@layout.template(files.size() + " Files", ctx, css, js) -> {