From 418cd1964eb67a95c70c0d2a6a264d8774e3ec38 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 15 May 2019 21:14:35 +0200 Subject: Improved breadcrumb navigation Co-authored-by: LarsVomMars --- src/main/resources/css/files.css | 5 +++++ src/main/resources/css/fileview.css | 4 ++++ src/main/resources/css/layout.css | 12 ++++++++++++ src/main/resources/views/admin.rocker.html | 6 ++++++ src/main/resources/views/files.rocker.html | 15 +++++++++++---- src/main/resources/views/fileview.rocker.html | 8 ++++++++ src/main/resources/views/index.rocker.html | 8 +++++++- src/main/resources/views/login.rocker.html | 6 ++++++ src/main/resources/views/register.rocker.html | 6 ++++++ src/main/resources/views/setup.rocker.html | 6 ++++++ 10 files changed, 71 insertions(+), 5 deletions(-) (limited to 'src/main') diff --git a/src/main/resources/css/files.css b/src/main/resources/css/files.css index ba47202..9037d3a 100644 --- a/src/main/resources/css/files.css +++ b/src/main/resources/css/files.css @@ -2,6 +2,11 @@ transition: all .2s linear; } +.navigation { + position: relative; + padding: 0; +} + .navigation a { text-decoration: none; color: inherit; diff --git a/src/main/resources/css/fileview.css b/src/main/resources/css/fileview.css index bc30926..06b5778 100644 --- a/src/main/resources/css/fileview.css +++ b/src/main/resources/css/fileview.css @@ -2,6 +2,10 @@ html, body { overflow: visible; } +.navigation { + position: relative; +} + .modify, .switch, .settings, .preview { display: none; } diff --git a/src/main/resources/css/layout.css b/src/main/resources/css/layout.css index b319e24..a0a8f37 100644 --- a/src/main/resources/css/layout.css +++ b/src/main/resources/css/layout.css @@ -22,6 +22,18 @@ button { color: #424242; } +.navigation { + padding: 8px; + position: absolute; + top: 0; + left: 0; +} + +.navigation a { + text-decoration: none; + color: inherit; +} + .flex { display: flex; flex-flow: wrap column; diff --git a/src/main/resources/views/admin.rocker.html b/src/main/resources/views/admin.rocker.html index 7bd25a9..aa4fff6 100644 --- a/src/main/resources/views/admin.rocker.html +++ b/src/main/resources/views/admin.rocker.html @@ -2,6 +2,12 @@ @args (String message, Context ctx) @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 8e75ac2..2392928 100644 --- a/src/main/resources/views/files.rocker.html +++ b/src/main/resources/views/files.rocker.html @@ -17,20 +17,27 @@ @layout.template(files.size() + " Files", ctx, css, js) -> {
- + diff --git a/src/main/resources/views/fileview.rocker.html b/src/main/resources/views/fileview.rocker.html index 30e0caf..62ae1b5 100644 --- a/src/main/resources/views/fileview.rocker.html +++ b/src/main/resources/views/fileview.rocker.html @@ -22,6 +22,14 @@ } @layout.template("File " + filename, ctx, css, js) -> { + diff --git a/src/main/resources/views/index.rocker.html b/src/main/resources/views/index.rocker.html index ee681f8..5f71ea1 100644 --- a/src/main/resources/views/index.rocker.html +++ b/src/main/resources/views/index.rocker.html @@ -12,6 +12,12 @@ } @layout.template("Index", ctx, css, js) -> { +
@if (username.length() > 0) { } -

Welcome to Kloud@(username == "" ? "" : " " + username)!

+

Welcome to Kloud@(username == "" ? "" : ", " + username)!

@if(username.length() > 0) { diff --git a/src/main/resources/views/login.rocker.html b/src/main/resources/views/login.rocker.html index 1e2adc4..b811025 100644 --- a/src/main/resources/views/login.rocker.html +++ b/src/main/resources/views/login.rocker.html @@ -7,6 +7,12 @@ } @layout.template("Login", ctx, RockerContent.NONE, js) -> { +

Login

diff --git a/src/main/resources/views/register.rocker.html b/src/main/resources/views/register.rocker.html index 8516561..c89eef3 100644 --- a/src/main/resources/views/register.rocker.html +++ b/src/main/resources/views/register.rocker.html @@ -2,6 +2,12 @@ @args (String username, String token, String message, Context ctx) @layout.template("Register", ctx, RockerContent.NONE, RockerContent.NONE) -> { +

Register

diff --git a/src/main/resources/views/setup.rocker.html b/src/main/resources/views/setup.rocker.html index 3601817..7fa312c 100644 --- a/src/main/resources/views/setup.rocker.html +++ b/src/main/resources/views/setup.rocker.html @@ -2,6 +2,12 @@ @args (String message, Context ctx) @layout.template("Setup", ctx, RockerContent.NONE, RockerContent.NONE) -> { +

Setup

-- cgit v1.2.3