Skip to content

Commit 9cbdb8b

Browse files
committed
Merge branch 'main' of https://github.com/stackabletech/documentation into CI-Hardening
2 parents 96d8672 + c80c4a3 commit 9cbdb8b

4 files changed

Lines changed: 16 additions & 4 deletions

File tree

modules/ROOT/partials/release-notes/release-25.11.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ See https://github.com/stackabletech/nifi-operator/issues/812[nifi-operator#812]
107107
This CLI argument has now been moved to the Pod templates of the individual roles.
108108
See https://github.com/stackabletech/spark-k8s-operator/pull/617[spark-k8s-operator#617].
109109
* This release adds experimental support for Spark 4.0.1.
110-
The support is marked as experimental because Spark 4.0.1 has known compatibility issues with https://github.com/apache/hbase-connectors/pull/130[Apache HBase] and https://github.com/apache/iceberg/issues/13358[Apache Iceberg].
110+
The support is marked as experimental because Spark 4.0.1 has known compatibility issues with https://issues.apache.org/jira/browse/HBASE-30178[Apache HBase] and https://github.com/apache/iceberg/issues/13358[Apache Iceberg].
111111
See https://github.com/stackabletech/spark-k8s-operator/issues/586[spark-k8s-operator#586].
112112

113113
===== Open Policy Agent

ui/src/css/header.css

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,23 @@ body {
4545
word-wrap: normal;
4646
}
4747

48+
/* The img carries width/height attributes so its space is reserved before it
49+
* loads. Two consequences to keep in mind when touching this rule:
50+
*
51+
* width: auto is required, not redundant. Those attributes are presentational
52+
* hints that set a real width, so without it the logo renders at its full 199px
53+
* against a 22px height and stretches by a third. Setting it hands sizing back
54+
* to the aspect ratio the attributes imply.
55+
*
56+
* The gap is a margin, not padding, because aspect-ratio sizes the box named by
57+
* box-sizing -- border-box here -- so padding would count inside the ratio and
58+
* squash the image by exactly that much. */
4859
.navbar-brand .navbar-item:first-child img {
4960
height: 22px;
61+
width: auto;
5062
display: inline-block;
5163
margin-top: -4px;
52-
padding-right: 20px;
64+
margin-right: 20px;
5365
}
5466

5567
.navbar-brand .navbar-item.documentation-link {

ui/src/partials/footer-content.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<!-- link columns -->
55
<div class="footer-info">
66
<div class="footer-info-item-large">
7-
<img src="{{{uiRootPath}}}/img/logo-2-1.png">
7+
<img src="{{{uiRootPath}}}/img/logo-2-1.png" width="150" height="26">
88
<p class="footer-motto">
99
your data, your platform
1010
</p>

ui/src/partials/header.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<nav class="navbar">
33
<div id="topbar-left" class="navbar-brand">
44
<a class="navbar-item" href="{{{ relativize (versioned "home" page "index.html") }}}">
5-
<img src="{{{uiRootPath}}}/img/stackable-logo.png">
5+
<img src="{{{uiRootPath}}}/img/stackable-logo.png" width="199" height="30">
66
</a>
77
<a class="navbar-item documentation-link" href="{{{ relativize (versioned "home" page "index.html") }}}">
88
Docs

0 commit comments

Comments
 (0)