This is an automated email from the ASF dual-hosted git repository. rzo1 pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/storm-site.git
commit eff6b6bbd9c06235640c8f6b41c3e36b71ac49bf Author: Richard Zowalla <[email protected]> AuthorDate: Thu May 7 12:11:08 2026 +0200 Polish team page legend and replace noisy header/footer textures Legend entries are now grouped as nowrap units so a badge never separates from its label across a line break. Emeritus intro references the project bylaws and points readers at [email protected] as the path back to active status. Header and footer drop their textured PNG backgrounds in favour of flat colours (#fdfbfb / #222), keeping the brand-blue top accent. The unused images/header-bg.png and images/footer-bg.png are removed. --- css/style.css | 12 +++++++++--- images/footer-bg.png | Bin 138 -> 0 bytes images/header-bg.png | Bin 470 -> 0 bytes team.md | 17 +++++++++-------- 4 files changed, 18 insertions(+), 11 deletions(-) diff --git a/css/style.css b/css/style.css index ccc451278d..2014b1c316 100644 --- a/css/style.css +++ b/css/style.css @@ -188,11 +188,11 @@ body { font-size: 14px; } header { - background: #fdfbfb url(../images/header-bg.png); + background: #fdfbfb; border-top: 3px #328fbf solid; } footer { - background: #222 url(../images/footer-bg.png); + background: #222; padding-top: 10px; color: #ddd; border-top: 3px #328fbf solid; @@ -861,7 +861,13 @@ footer hr { font-size: 13px; line-height: 1.9; } -.team-legend .role-badge { margin-right: 4px; } +.team-legend-item { + display: inline-block; + white-space: nowrap; + margin-right: 18px; +} +.team-legend-item:last-child { margin-right: 0; } +.team-legend-item .role-badge { margin-right: 0; } .team-card { padding: 14px 16px; background: #fff; diff --git a/images/footer-bg.png b/images/footer-bg.png deleted file mode 100644 index e72d575af4..0000000000 Binary files a/images/footer-bg.png and /dev/null differ diff --git a/images/header-bg.png b/images/header-bg.png deleted file mode 100644 index 01a291e8fa..0000000000 Binary files a/images/header-bg.png and /dev/null differ diff --git a/team.md b/team.md index 5d9838377e..09ca0e4ff1 100644 --- a/team.md +++ b/team.md @@ -18,11 +18,9 @@ description: The PMC, committers, and contributors behind Apache Storm. <section class="team-section"> <h2 id="active">Active team</h2> <p class="team-legend"> - <span class="role-badge role-chair">Chair</span> Current PMC chair - · - <span class="role-badge role-pmc">P</span> PMC member - · - <span class="role-badge role-committer">C</span> Committer + <span class="team-legend-item"><span class="role-badge role-chair">Chair</span> Current PMC chair</span> + <span class="team-legend-item"><span class="role-badge role-pmc">P</span> PMC member</span> + <span class="team-legend-item"><span class="role-badge role-committer">C</span> Committer</span> </p> {% if site.data.team_active and site.data.team_active.size > 0 %} <ul class="team-grid"> @@ -51,9 +49,12 @@ description: The PMC, committers, and contributors behind Apache Storm. <section class="team-section"> <h2 id="emeritus">Emeritus</h2> <p class="team-emeritus-intro"> - Past contributors who served as Storm PMC members or committers and are - no longer actively maintaining the project. Many of them shaped Storm - into what it is today — thank you. + Per the <a href="/contribute/BYLAWS.html">project bylaws</a>, PMC members + and committers who are no longer actively involved in Storm move to + emeritus status. This is not a one-way door — emeritus members can + return to active status at any time by simply dropping a note to + <a href="mailto:[email protected]">[email protected]</a>. Many of + these people shaped Storm into what it is today — thank you. </p> <ul class="team-emeritus-list"> {% for m in site.data.team_emeritus %}
