diff --git a/build.gradle b/build.gradle index fd938fb..a6f1e65 100644 --- a/build.gradle +++ b/build.gradle @@ -18,7 +18,7 @@ apply plugin: 'war' apply plugin: 'application' group = 'de.jottyfan.camporganizer' -version = '0.0.3' +version = '0.0.4' sourceCompatibility = 17 mainClassName = "de.jottyfan.camporganizer.Main" diff --git a/src/main/resources/static/css/style.css b/src/main/resources/static/css/style.css index d1e9ca3..ee50dec 100644 --- a/src/main/resources/static/css/style.css +++ b/src/main/resources/static/css/style.css @@ -4,7 +4,8 @@ html { } body { - background-image: linear-gradient(to bottom right, rgb(255, 190, 111), rgb(198, 70, 0)); + background-image: linear-gradient(to bottom right, rgb(255, 190, 111), + rgb(198, 70, 0)); } .mainpage { @@ -12,7 +13,8 @@ body { padding: 8px; overflow: auto; width: 100%; - height: calc(100vh - 60px); /* 60 px is the current height of the headline; TODO: calculate it */ + height: calc(100vh - 60px); + /* 60 px is the current height of the headline; TODO: calculate it */ } .middlecenter { @@ -87,12 +89,24 @@ body { color: darkcyan; } +.btn-dropdown { + right: 2px; + top: 2px; + position: absolute; + border: 1px solid silver; +} + +.btn-dropdown:hover { + background: rgba(0, 0, 0, 0.5); +} + .badgetodo { border-radius: 8px; border: 1px solid black; color: white; font-weight: bolder; - background-image: linear-gradient(to right bottom, rgb(153, 193, 241), rgb(26, 95, 180)); + background-image: linear-gradient(to right bottom, rgb(153, 193, 241), + rgb(26, 95, 180)); padding: 2px 4px 2px 4px; margin: 0px 2px 0px 2px; } @@ -112,7 +126,8 @@ body { border: 1px solid black; color: white; font-weight: bolder; - background-image: linear-gradient(to right bottom, rgb(143, 240, 164), rgb(38, 162, 105)); + background-image: linear-gradient(to right bottom, rgb(143, 240, 164), + rgb(38, 162, 105)); padding: 2px 4px 2px 4px; margin: 0px 2px 0px 2px; } @@ -131,7 +146,7 @@ body { } .usercard { - width: 480px; + width: 640px; background-color: rgba(255, 255, 255, 0.8) !important; } @@ -145,4 +160,4 @@ body { .mytoggle_btn:hover { background-color: #abcdef; -} +} \ No newline at end of file diff --git a/src/main/resources/templates/dashboard.html b/src/main/resources/templates/dashboard.html index f18319e..d009ac5 100644 --- a/src/main/resources/templates/dashboard.html +++ b/src/main/resources/templates/dashboard.html @@ -16,7 +16,10 @@