From d2555ae2e1fc1879783bfba3ee1075992bca135f Mon Sep 17 00:00:00 2001
From: Felix Hennig
Date: Tue, 17 Jan 2023 13:43:39 +0100
Subject: [PATCH 01/10] Changed some basic colors
---
src/css/vars.css | 6 +++---
src/partials/footer-content.hbs | 23 +++++++++++++++++++++++
2 files changed, 26 insertions(+), 3 deletions(-)
diff --git a/src/css/vars.css b/src/css/vars.css
index 72a367a..42c272e 100644
--- a/src/css/vars.css
+++ b/src/css/vars.css
@@ -116,9 +116,9 @@
--toc-line-height: 1.2;
/* footer */
--footer-line-height: var(--doc-line-height);
- --footer-background: var(--color-smoke-90);
- --footer-font-color: var(--color-gray-70);
- --footer-link-font-color: var(--color-jet-80);
+ --footer-background: var(--color-jet-70);
+ --footer-font-color: var(--color-white);
+ --footer-link-font-color: var( --color-smoke-70);
/* dimensions and positioning */
--navbar-height: calc(73 / var(--rem-base) * 1rem);
--toolbar-height: calc(45 / var(--rem-base) * 1rem);
diff --git a/src/partials/footer-content.hbs b/src/partials/footer-content.hbs
index 7b55a4b..9eef32b 100644
--- a/src/partials/footer-content.hbs
+++ b/src/partials/footer-content.hbs
@@ -1,2 +1,25 @@
+
+
+ Apache, Apache Kafka®, Kafka, and the Kafka logo, Apache Druid, Druid, and the Druid logo,
+ Apache ZooKeeper™, ZooKeeper, and the Druid logo, Apache Hive™, Hive, and the Hive logo,
+ Apache Spark™, Spark, and the Spark logo, Apache Airflow, Airflow, and the Airflow logo,
+ Apache HBase®, HBase, and the HBase logo, Apache NiFi, NiFi, and the NiFi logo, Apache
+ Superset, Superset, the Superset logo, Apache Hadoop® HDFS, Apache Hadoop, Hadoop and the
+ Hadoop logo, Apache Phoenix™, Phoenix and the Phoenix-Logo, Apache Iceberg, Iceberg and the
+ Iceberg-Logo are either registered trademarks or trademarks of the Apache Software Foundation
+ in the United States and/or other countries. Open Policy Agent (OPA) is a Cloud Native
+ Computing Foundation graduated project. Licensed under the Apache License, Version 2.0. Trino
+ is open source software licensed under the Apache License 2.0 and supported by the Trino
+ Software Foundation. MinIO is a [“registered”, if applicable] trademark of the MinIO
+ Corporation. All other products or name brands are trademarks of their respective holders.
+ All product and service names used in this website are for identification purposes only and
+ do not imply endorsement.
+
From 07bc6ffb2184195481fedfc6b0e19d74551e88c1 Mon Sep 17 00:00:00 2001
From: Felix Hennig
Date: Tue, 17 Jan 2023 13:47:26 +0100
Subject: [PATCH 02/10] lint fix
---
src/css/vars.css | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/css/vars.css b/src/css/vars.css
index 42c272e..41c65bf 100644
--- a/src/css/vars.css
+++ b/src/css/vars.css
@@ -118,7 +118,7 @@
--footer-line-height: var(--doc-line-height);
--footer-background: var(--color-jet-70);
--footer-font-color: var(--color-white);
- --footer-link-font-color: var( --color-smoke-70);
+ --footer-link-font-color: var(--color-smoke-70);
/* dimensions and positioning */
--navbar-height: calc(73 / var(--rem-base) * 1rem);
--toolbar-height: calc(45 / var(--rem-base) * 1rem);
From f8eadb3ee2628846d4044fb85f49a31ca4627d21 Mon Sep 17 00:00:00 2001
From: Felix Hennig
Date: Tue, 17 Jan 2023 14:11:24 +0100
Subject: [PATCH 03/10] Added npm commands for gulp commands
---
package.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/package.json b/package.json
index 72a4e9d..08afb4f 100644
--- a/package.json
+++ b/package.json
@@ -7,6 +7,11 @@
"type": "git",
"url": "https://gitlab.com/antora/antora-ui-default.git"
},
+ "scripts": {
+ "lint": "gulp lint",
+ "bundle": "gulp bundle",
+ "preview": "gulp preview"
+ },
"engines": {
"node": ">= 8.0.0"
},
From 80336654bff70cacd8623bf012b5dc7398dc8181 Mon Sep 17 00:00:00 2001
From: Felix Hennig
Date: Tue, 17 Jan 2023 14:12:30 +0100
Subject: [PATCH 04/10] Added some responsiveness
---
src/css/footer.css | 15 +++++++++++
src/partials/footer-content.hbs | 48 ++++++++++++++++++---------------
2 files changed, 41 insertions(+), 22 deletions(-)
diff --git a/src/css/footer.css b/src/css/footer.css
index 6521947..cb994a9 100644
--- a/src/css/footer.css
+++ b/src/css/footer.css
@@ -13,3 +13,18 @@ footer.footer {
.footer a {
color: var(--footer-link-font-color);
}
+
+@media screen and (max-width: 720px) {
+ .c-and-socials {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ }
+}
+
+@media screen and (min-width: 720px) {
+ .c-and-socials {
+ display: flex;
+ justify-content: space-between;
+ }
+}
diff --git a/src/partials/footer-content.hbs b/src/partials/footer-content.hbs
index 9eef32b..1a1bb65 100644
--- a/src/partials/footer-content.hbs
+++ b/src/partials/footer-content.hbs
@@ -1,25 +1,29 @@