Update disabled styles on edit app environments

This commit is contained in:
Patrick Smith 2019-02-10 14:07:12 -05:00
parent 4e466af009
commit fe6a14d3ce
2 changed files with 7 additions and 2 deletions

View File

@ -116,6 +116,11 @@
.block-list__footer { .block-list__footer {
border-bottom: none; border-bottom: none;
} }
.application-edit__env-list-item {
label {
color: $color-black;
}
}
} }
} }
} }

View File

@ -25,9 +25,9 @@
<ul> <ul>
{% for environment in application.environments %} {% for environment in application.environments %}
<li class="application-edit__env-list-item"> <li class="application-edit__env-list-item">
<div class="usa-input"> <div class="usa-input input--disabled">
<label>Environment Name</label> <label>Environment Name</label>
<input type="text" value="{{ environment.name }}" readonly /> <input type="text" disabled value="{{ environment.name }}" readonly />
</div> </div>
</li> </li>
{% endfor %} {% endfor %}