Use the familiar ALLCAPS for topo name in show-in-topo button

This commit is contained in:
Simon Howe
2016-11-04 10:07:08 +01:00
parent 4da2a82602
commit fe2bfe2ffa
2 changed files with 7 additions and 1 deletions

View File

@@ -55,7 +55,7 @@ export class NodeDetails extends React.Component {
<div className="node-details-tools">
{showSwitchTopology && <span title={topologyTitle}
className="fa fa-long-arrow-left" onClick={this.handleShowTopologyForNode}>
<span>View in {this.props.topologyId}</span>
<span>Show in <span>{this.props.topologyId.replace(/-/g, ' ')}</span></span>
</span>}
<span title="Close details" className="fa fa-close" onClick={this.handleClickClose} />
</div>

View File

@@ -633,6 +633,12 @@ h2 {
font-family: @base-font;
font-size: 0.9em;
margin-left: 4px;
span {
font-size: 1em;
margin-left: 0;
text-transform: uppercase;
}
}
&:hover {