diff --git a/Dockerfile b/Dockerfile index da1039863..3a0664b8b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,8 @@ RUN cp ../target/karnak*.jar application.jar RUN java -Djarmode=layertools -jar application.jar extract # Build the final deployment image -FROM eclipse-temurin:17-jre-jammy +#FROM eclipse-temurin:17-jre-jammy +FROM eclipse-temurin:17-jdk-jammy WORKDIR app COPY --from=builder /app/bin/dependencies/ ./ diff --git a/frontend/index.html b/frontend/index.html new file mode 100644 index 000000000..d36e59347 --- /dev/null +++ b/frontend/index.html @@ -0,0 +1,23 @@ + + + + +
+ + + + + + + + + + diff --git a/frontend/styles/shared-styles.css b/frontend/styles/shared-styles.css index a36eb7b95..6151b9919 100644 --- a/frontend/styles/shared-styles.css +++ b/frontend/styles/shared-styles.css @@ -58,7 +58,7 @@ label[disabled] { } .menu-link { - margin: 0 auto; + margin: 0 -5%; padding: 10px 37px; } diff --git a/frontend/themes/common-theme/main-layout.css b/frontend/themes/common-theme/main-layout.css new file mode 100644 index 000000000..7a544838e --- /dev/null +++ b/frontend/themes/common-theme/main-layout.css @@ -0,0 +1,233 @@ + +.stroked-button { + border: 1px solid currentColor; +} + +.message-box { + width: 100%; +} + +.message-box-layout { + border-style: solid; + border-width: 1px; + padding: 0px; +} + +.message-box-layout-with-margin { + margin: 0px 16px 0px 16px; +} + +.message-box-layout.info { + border-color: #2196F3; +} + +.message-box-layout.warn { + border-color: #ff9800; +} + +.message-box-layout.error { + border-color: #F44336; +} + +.message-box-title { + color: #ffffff; + margin-left: 16px; + margin-top: 0px; + margin-right: 0px; + margin-bottom: 0px; + padding: 0.8rem; + box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .2); +} + +.message-box-title.info { + background-color: #2196F3; +} + +.message-box-title.warn { + background-color: #ff9800; +} + +.message-box-title.error { + background-color: #F44336; +} + +.message-box-content { + color: #2f4f4f; + background-color: #ffffff; + width: 100%; + margin: 0px; + padding: 12px; +} + + + +/**/ +/*