mirror of https://github.com/apache/nifi.git
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:
parent
af6f63691c
commit
e6be5d3276
|
@ -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>
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue