Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cherry-pick: signpost text #180

Merged
merged 1 commit into from
Dec 4, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,10 @@
<div class="col-xs-1 px-0">

<clr-signpost>
<clr-signpost-content [clrPosition]="'bottom-left'" *clrIfOpen>
Only change this IP range if you are using this range elsewhere in your datacenter
<clr-signpost-content [clrPosition]="'bottom-left'" *clrIfOpen class="bridge-network-signpost">
Bridge networks are the network or networks that container VMs use to communicate with each other.
Every virtual container host (VCH) must have a unique bridge network.
Do not use the bridge network for any other VM workloads, or as a bridge for more than one VCH.
</clr-signpost-content>
</clr-signpost>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,13 @@
width: 6em;
}

:host ::ng-deep clr-signpost .signpost-action {
margin-top: 0;
margin-bottom: 0;
:host ::ng-deep clr-signpost {
.signpost-action {
margin-top: 0;
margin-bottom: 0;
}
}

.bridge-network-signpost {
width: 480px;
}
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,9 @@
<div class="form-group row">
<div class="col-xs-3">

<label>
Base image size
<label class="image-size-label">
Max Container VM<br>
image size
</label>

</div>
Expand Down Expand Up @@ -98,6 +99,16 @@
</div>

</div>

<clr-signpost>
<clr-signpost-content [clrPosition]="'top-left'" *clrIfOpen>
<span>
The size of the base image from which to create other images. You do not normally need to change this value.
The default size is 8GB, but images are thin-provisioned so they do not usually consume 8GB of space.
</span>
</clr-signpost-content>
</clr-signpost>

</div>

</section>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,8 @@
cursor: pointer;
}
}

.image-size-label {
margin-top: 10px;
line-height: 16px;
}