Skip to content

Commit

Permalink
Add soft link css class to link
Browse files Browse the repository at this point in the history
  • Loading branch information
Philipp Hinrichsen committed Mar 4, 2016
1 parent 6a10573 commit 54eba54
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions src/css/layout/base.less
Expand Up @@ -88,3 +88,13 @@ h3 {
margin: @base-spacing-unit 0;
}
}

.soft-link{
text-decoration: underline;
cursor: pointer;

&:hover {
text-decoration: underline;
color: @alto;
}
}
2 changes: 1 addition & 1 deletion src/js/components/ContainerSettingsComponent.jsx
Expand Up @@ -172,7 +172,7 @@ var ContainerSettingsComponent = React.createClass({
<div className="duplicable-list">{this.getParametersRows()}</div>
<div>
You can configure your Docker
volume <a onClick={this.props.openVolumes}>
volume <a className="soft-link" onClick={this.props.openVolumes}>
below
</a>.
</div>
Expand Down

0 comments on commit 54eba54

Please sign in to comment.