Skip to content

Commit fedf6b8

Browse files
committed
Fixed link and minor layout bug.
Signed-off-by: Ralph Lange <ralph.lange@de.bosch.com>
1 parent 9ffa7a7 commit fedf6b8

1 file changed

Lines changed: 8 additions & 6 deletions

File tree

_docs/overview/features/index.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ redirect_from:
99
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
1010
<script>
1111
function updateVisibilityOfFeatureDescriptions() {
12-
$('.feature').not('feature_is_active').find('.three_dots').css({ 'color': '#BBBBBB' });
12+
$('.feature').not('feature_is_active').find('.three_dots').show();
1313
$('.feature').not('feature_is_active').find('.feature_description').slideUp(500);
14-
$('.feature_is_active').find('.three_dots').css({ 'color': 'white' });
14+
$('.feature_is_active').find('.three_dots').hide();
1515
$('.feature_is_active').find('.feature_description').slideDown(500);
1616
}
1717

@@ -32,13 +32,15 @@ $(document).ready( function() {
3232
</script>
3333

3434
<style>
35+
.three_dots {
36+
color: #BBBBBB;
37+
}
3538
.feature_title {
3639
font-weight: bold;
3740
margin: 0 0 2pt 0;
3841
}
3942
.feature_description {
40-
text-align: justify;
41-
margin-left: 1.6em;
43+
margin-left: 3em;
4244
}
4345
.feature_description ~ p {
4446
margin: 0 0 2pt 0;
@@ -98,7 +100,7 @@ Micro-ROS offers **seven key features** that make it ready for use in your micro
98100
<p class="feature_title">&#9745; Long-term maintainability and interoperability<span class="three_dots"> (...)</span></p>
99101
<div class="feature_description">
100102
<p>Micro-ROS is made up of well-established components: Famous open-source RTOSs, a standardized middleware, and the standard ROS 2 Client Support Library (rcl). In this way, the amount of micro-ROS-specific code was minimized for long-term maintainability. At the same time, the micro-ROS stack preserves the modularity of the standard ROS 2 stack. Micro-ROS can be used with a custom middleware layer - and thus standard - or a custom ROS client library.</p>
101-
<p>Furthermore, by the [System-Of-Systems Synthesizer](https://soss.docs.eprosima.com/) (SOSS), a fast and lightweight <a href="https://www.omg.org/spec/DDS-XTypes">OMG DDS-XTYPES standard</a> integration tool, further middleware protocols can be connected. For example, we have developed the SOSS-FIWARE and SOSS-ROS2 System-Handles, which connect ROS 2 and micro-ROS with the <a href="https://www.fiware.org/">FIWARE Context Broker</a> by the NGSIv2 (Next Generation Service Interface) standard by leveraging the integration capabilities of the SOSS core.</p>
103+
<p>Furthermore, by the <a href="https://soss.docs.eprosima.com/">System-Of-Systems Synthesizer</a> (SOSS), a fast and lightweight <a href="https://www.omg.org/spec/DDS-XTypes">OMG DDS-XTYPES standard</a> integration tool, further middleware protocols can be connected. For example, we have developed the SOSS-FIWARE and SOSS-ROS2 System-Handles, which connect ROS 2 and micro-ROS with the <a href="https://www.fiware.org/">FIWARE Context Broker</a> by the NGSIv2 (Next Generation Service Interface) standard by leveraging the integration capabilities of the SOSS core.</p>
102104
</div>
103105
</div>
104106

@@ -108,4 +110,4 @@ Micro-ROS follows the [ROS 2 architecture](https://index.ros.org/doc/ros2/) and
108110

109111
<img src="/img/micro-ROS_architecture.png" style="display: block; margin: auto; width: 100%; max-width: 500px;"/>
110112

111-
Dark blue components are developed specifically for micro-ROS. Light blue components are taken from the standard ROS 2 stack. We seek to contribute as much code back to the ROS 2 mainline codebase as possible.
113+
Dark blue components are developed specifically for micro-ROS. Light blue components are taken from the standard ROS 2 stack. We seek to contribute as much code back to the ROS 2 mainline codebase as possible.

0 commit comments

Comments
 (0)