NIFI-3801:

- Making the version text next to the component name more subtle.

This closes #1760.

Signed-off-by: Andy LoPresto <alopresto@apache.org>
This commit is contained in:
Matt Gilman 2017-05-05 12:55:20 -04:00 committed by Andy LoPresto
parent af6f63691c
commit e6be5d3276
No known key found for this signature in database
GPG Key ID: 6EC293152D90B61D
2 changed files with 9 additions and 6 deletions

View File

@ -46,7 +46,7 @@
<div id="component-list-toggle-link">-</div>
<div id="header-contents">
<div id="nf-title">NiFi Documentation</div>
<div id="nf-version"></div>
<div id="nf-version" class="version"></div>
<div id="selected-component"></div>
</div>
</div>
@ -85,7 +85,7 @@
${entry.key}
</c:when>
<c:otherwise>
${entry.key} ${bundleEntry.version}
${entry.key} <span class="version">${bundleEntry.version}</span>
</c:otherwise>
</c:choose>
</a>
@ -121,7 +121,7 @@
${entry.key}
</c:when>
<c:otherwise>
${entry.key} ${bundleEntry.version}
${entry.key} <span class="version">${bundleEntry.version}</span>
</c:otherwise>
</c:choose>
</a>
@ -156,7 +156,7 @@
${entry.key}
</c:when>
<c:otherwise>
${entry.key} ${bundleEntry.version}
${entry.key} <span class="version">${bundleEntry.version}</span>
</c:otherwise>
</c:choose>
</a>

View File

@ -91,12 +91,15 @@ div.documentation-header {
#nf-version {
font-size: 14px;
font-style: italic;
color: #aaa;
margin: 11px 5px 0px 5px;
flex-grow: 1;
}
.version {
font-style: italic;
color: #aaa;
}
#selected-component {
font-size: 20px;
margin: 5px 5px 0px 5px;