minor ng launch instance cleanup - remove unused css styles

Change-Id: Ic8ae2f56fbd6f92d5b4d27a2e28ff9714f4e50e8
This commit is contained in:
Cindy Lu 2016-03-23 14:33:01 -07:00
parent acba3766c7
commit fc7f1fd84e
5 changed files with 6 additions and 6 deletions

View File

@ -10,7 +10,7 @@
<tr>
<th colspan="100" class="search-header">
<hz-magic-search-bar group-classes="input-group-sm" icon-classes="fa-search" filter-facets="table.searchFacets">
<hz-magic-search-bar filter-facets="table.searchFacets">
</hz-magic-search-bar>
</th>
</tr>

View File

@ -4,7 +4,7 @@
<div class="row">
<div class="col-xs-12 col-sm-8">
<div class="form-group required"
<div class="form-group"
ng-class="{ 'has-error': launchInstanceDetailsForm.name.$invalid && launchInstanceDetailsForm.name.$dirty }">
<label translate for="name" class="control-label">
Instance Name
@ -32,7 +32,7 @@
Count
<span class="hz-icon-required fa fa-asterisk"></span>
</label>
<input id="count" name="count" type="number" class="form-control" min="1"
<input id="instance-count" name="count" type="number" class="form-control" min="1"
ng-model="model.newInstanceSpec.instance_count"
ng-required="true" ng-pattern="/^[0-9]+$/"
validate-number-min="1"

View File

@ -4,7 +4,7 @@
<button type="button" class="close" ng-click="ctrl.cancel()" aria-hidden="true" aria-label="Close">
<span aria-hidden="true" class="fa fa-close"></span>
</button>
<span class="h4 modal-title">Create Key Pair</span>
<span translate class="h4 modal-title">Create Key Pair</span>
</div>
<div class="modal-body">

View File

@ -19,7 +19,7 @@
</p>
<div class="form-group">
<label for="keypair-name"translate>
<label for="keypair-name" translate>
Key Pair Name
<span class="hz-icon-required fa fa-asterisk"></span>
</label>

View File

@ -4,7 +4,7 @@
</p>
<div class="form-group" ng-if="model.arePortProfilesSupported">
<label class="control-label required" for="profile" translate>Profile</label>
<label class="control-label" for="profile" translate>Profile</label>
<select class="form-control" id="profile" ng-model="model.newInstanceSpec.profile" ng-options="profile.name for profile in model.profiles">
<option value="" translate>(None)</option>
</select>