Merge "Fix Flavor Detail tbl in legacy Launch Instance"

This commit is contained in:
Jenkins 2015-05-30 07:55:21 +00:00 committed by Gerrit Code Review
commit 146e214bbb
2 changed files with 21 additions and 35 deletions

View File

@ -1,38 +1,28 @@
{% load i18n %} {% load i18n %}
<noscript><h3>{{ step }}</h3></noscript> <noscript><h3>{{ step }}</h3></noscript>
<table class="table-fixed" id="networkListSortContainer"> <div id="networkListSortContainer">
<tbody> <div class="col-sm-6">
<tr> <label id="selected_network_label">{% trans "Selected networks" %}</label>
<td class="col-sm-6"> <ul id="selected_network" class="networklist"></ul>
<label id="selected_network_label">{% trans "Selected networks" %}</label> <label>{% trans "Available networks" %}</label>
<ul id="selected_network" class="networklist"> <ul id="available_network" class="networklist"></ul>
</ul> </div>
<label>{% trans "Available networks" %}</label> <div class="col-sm-6">
<ul id="available_network" class="networklist"> {% include "project/instances/_launch_network_help.html" %}
</ul> </div>
</td> </div>
<td class="col-sm-6">
{% include "project/instances/_launch_network_help.html" %}
</td>
</tr>
</tbody>
</table>
<table class="table-fixed" id="networkListIdContainer"> <div id="networkListIdContainer">
<tbody> <div class="actions">
<tr> <div id="networkListId">
<td class="actions"> {% include "horizon/common/_form_fields.html" %}
<div id="networkListId"> </div>
{% include "horizon/common/_form_fields.html" %} </div>
</div> <div class="help_text">
</td> {{ step.get_help_text }}
<td class="help_text"> </div>
{{ step.get_help_text }} </div>
</td>
</tr>
</tbody>
</table>
<script> <script>

View File

@ -6,10 +6,6 @@
padding-top: 10px; padding-top: 10px;
} }
td {
vertical-align: top;
}
fieldset > table { fieldset > table {
margin-bottom: 0; margin-bottom: 0;
} }