Update sidebar app name and images size and alignment (#2973)

This commit is contained in:
Desislava Marinova
2026-03-24 16:06:39 +02:00
committed by GitHub
parent 4375cd0887
commit fc443b2fbb
9 changed files with 36 additions and 18 deletions

View File

@@ -2,8 +2,8 @@
Eclipse hawkBit™ is a domain independent back-end framework for rolling out software updates to constrained edge devices as well as more powerful controllers and gateways connected to IP based networking infrastructure.
<p align="center">
<img src="images/hawkBit_overview.png" alt="Eclipse hawkBit Overview" width="1200">
<p>
<img src="images/hawkBit_overview.png" alt="Eclipse hawkBit Overview" width="800">
</p>
---

View File

@@ -51,7 +51,6 @@
- [Legal](http://www.eclipse.org/legal)
- [License](https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt)
- **© 2025 The Eclipse hawkBit Project**
<p align="center">
<p>
<img src="images/eclipse_foundation_logo.png" alt="eclipse foundation logo" width="180">
</p>

View File

@@ -1,5 +1,5 @@
### Overview of hawkBit modules and used 3rd party technology:
<p align="center">
<p>
<img src="images/architecture.png" alt="Clustering Diagram" width="1100"/>
</p>

View File

@@ -93,7 +93,7 @@ of simplification we assume that there are not intermediate certificates and the
- client has the client.crt, client.key and server_ca.crt
- server (in this case reverse proxy) has the server.crt, server.key and client_ca.crt
<p align="center">
<p>
<img src="images/exampleReverseProxyArchitecture.png" alt="eclipse foundation logo" width="1400">
</p>

View File

@@ -6,7 +6,7 @@ concepts and how to setup your own cluster. You can find additional information
---
### Big picture
<p align="center">
<p>
<img src="images/clustering_overview.png" alt="Clustering Diagram" width="1100"/>
</p>
@@ -19,7 +19,7 @@ There are different [binder implementations](https://docs.spring.io/spring-cloud
Every node gets its own queue to receive cluster events, the default payload is JSON.
<p align="center">
<p>
<img src="images/eventing-within-cluster.png" alt="Clustering Diagram" width="1100"/>
</p>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 206 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 25 KiB

View File

@@ -30,8 +30,7 @@ SPDX-License-Identifier: EPL-2.0
errorText: 'Error',
successText: 'Copied',
},
name: '<span>hawkBit</span>',
// repo: 'eclipse-hawkbit/hawkbit',
name: ' ',
themeColor: '#0ea5ea',
coverpage: true,
auto2top: true,
@@ -48,6 +47,29 @@ SPDX-License-Identifier: EPL-2.0
}
}
</script>
<script>
(function () {
function logoPlugin(hook) {
hook.ready(function () {
fetch('images/hawkbit_logo.svg')
.then(function (r) { return r.text(); })
.then(function (svg) {
var el = document.querySelector('.app-name');
if (!el) return;
var div = document.createElement('div');
div.innerHTML = svg;
var svgEl = div.querySelector('svg');
svgEl.setAttribute('width', '200');
svgEl.removeAttribute('height');
svgEl.style.setProperty('--logo-color', '#F0EEEA');
el.innerHTML = '';
el.appendChild(svgEl);
});
});
}
window.$docsify.plugins = [].concat(logoPlugin, window.$docsify.plugins || []);
})();
</script>
<!-- Docsify v4 -->
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
@@ -92,10 +114,6 @@ SPDX-License-Identifier: EPL-2.0
color: #027abe;
}
.sidebar h1 {
font-weight: 700;
}
thead tr {
background-color: #015585;
color: #f0eeea;

View File

@@ -2,7 +2,7 @@
Eclipse **hawkBit™** is a domain-independent back-end framework for rolling out software updates to constrained edge devices as well as more powerful controllers and gateways connected to IP-based networking infrastructure.
<p align="center">
<p>
<img src="images/hawkbit_logo.svg" alt="eclipse foundation logo" width="800">
</p>