diff --git a/.rat-excludes b/.rat-excludes index 78db582935e..228cc2a39b0 100644 --- a/.rat-excludes +++ b/.rat-excludes @@ -71,6 +71,7 @@ temporary_superset_ui/* google-big-query.svg google-sheets.svg ibm-db2.svg +netlify.png postgresql.svg snowflake.svg ydb.svg diff --git a/docs/docusaurus.config.ts b/docs/docusaurus.config.ts index 320299e7c60..9b5e2feb04b 100644 --- a/docs/docusaurus.config.ts +++ b/docs/docusaurus.config.ts @@ -473,8 +473,10 @@ const config: Config = { footer: { links: [], copyright: ` -
+
Copyright © ${new Date().getFullYear()}, The Apache Software Foundation, diff --git a/docs/i18n/en/docusaurus-theme-classic/footer.json b/docs/i18n/en/docusaurus-theme-classic/footer.json index 4b16d465b29..ba6d9b1bc93 100644 --- a/docs/i18n/en/docusaurus-theme-classic/footer.json +++ b/docs/i18n/en/docusaurus-theme-classic/footer.json @@ -1,6 +1,6 @@ { "copyright": { - "message": "\n
\nCopyright © 2026,\n The Apache Software Foundation,\n Licensed under the Apache License.
\nApache Superset, Apache, Superset, the Superset logo, and the Apache feather logo are either registered trademarks or trademarks of The Apache Software Foundation. All other products or name brands are trademarks of their respective holders, including The Apache Software Foundation.\n Apache Software Foundation resources
\n
\n \n \n Security | \n Donate | \n Thanks | \n Events | \n License | \n Privacy\n \n
\n \n
\n ",
+ "message": "\n \n Copyright © 2026,\n The Apache Software Foundation,\n Licensed under the Apache License.
\nApache Superset, Apache, Superset, the Superset logo, and the Apache feather logo are either registered trademarks or trademarks of The Apache Software Foundation. All other products or name brands are trademarks of their respective holders, including The Apache Software Foundation.\n Apache Software Foundation resources
\n
\n \n \n Security | \n Donate | \n Thanks | \n Events | \n License | \n Privacy\n \n
\n \n
\n ",
"description": "The footer copyright"
}
}
diff --git a/docs/src/styles/main.less b/docs/src/styles/main.less
index 01bd472bb0a..56d6d006cc1 100644
--- a/docs/src/styles/main.less
+++ b/docs/src/styles/main.less
@@ -226,17 +226,36 @@ a > span > svg {
font-size: 15px;
}
-.footer__applitools {
+.footer__ci-services {
background-color: #0d3e49;
color: #e1e1e1;
position: absolute;
top: 0;
left: 0;
width: 100%;
- padding: 16px 0;
+ padding: 12px 0;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ gap: 16px;
+
+ span {
+ font-size: 13px;
+ opacity: 0.85;
+ }
+
+ a {
+ display: inline-flex;
+ align-items: center;
+ transition: opacity 0.2s;
+
+ &:hover {
+ opacity: 0.8;
+ }
+ }
img {
- height: 34px;
+ height: 28px;
}
}
@@ -252,7 +271,16 @@ a > span > svg {
}
@media only screen and (max-width: 996px) {
- .footer__applitools img {
- height: 28px;
+ .footer__ci-services {
+ gap: 12px;
+ padding: 10px 16px;
+
+ span {
+ font-size: 12px;
+ }
+
+ img {
+ height: 22px;
+ }
}
}
diff --git a/docs/static/img/netlify.png b/docs/static/img/netlify.png
new file mode 100644
index 00000000000..d6ed07eb746
Binary files /dev/null and b/docs/static/img/netlify.png differ