Fixed the width of the stack template detail box

On the "Template" tab of the Stack details page (Project --> Orchestration
--> Stacks --> Stack Details), the gray box that surrounds the template text
is just a bit too wide. The edges extend right up to the side of the enclosing
<div> element, making it look bad.

To fix this, the "status" and "row" classes were removed from the parent div
element.  The "Stack Template" header was also removed from the page because it is
redundant inside a tab that already implies that it is the stack's template.

Change-Id: Ic8b17caf947534b0ac13e06b221a0d48802fb563
Closes-Bug: #1533366
This commit is contained in:
Lucas Palm 2016-01-12 15:26:52 -06:00
parent eb1a7ccbcc
commit 52d936efac
1 changed files with 2 additions and 5 deletions

View File

@ -1,8 +1,5 @@
{% load i18n sizeformat %}
<h3>{% trans "Stack Template" %}</h3>
<div class="status row detail">
<pre>{{ stack_template }}
</pre>
<div class="detail">
<pre>{{ stack_template }}</pre>
</div>