Merge pull request #1026 from dod-ccpo/team-settings-styling

Styling Bugs
This commit is contained in:
leigh-mil 2019-08-19 09:44:14 -04:00 committed by GitHub
commit 725a45aea7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 12 deletions

View File

@ -49,6 +49,7 @@
font-weight: $font-bold; font-weight: $font-bold;
border-bottom: 1px solid $color-gray-lightest; border-bottom: 1px solid $color-gray-lightest;
margin: 0; margin: 0;
list-style-type: none;
.icon-link--large { .icon-link--large {
padding-top: $gap * 0.5; padding-top: $gap * 0.5;
@ -107,6 +108,7 @@
&__action-group { &__action-group {
padding: 1rem 3.2rem; padding: 1rem 3.2rem;
background-color: $color-gray-lightest; background-color: $color-gray-lightest;
text-align: right;
button, button,
a { a {
@ -118,14 +120,6 @@
padding-top: 0.5rem; padding-top: 0.5rem;
float: none; float: none;
} }
> *:first-child {
padding-left: 0;
}
> *:last-child {
float: right;
}
} }
&__toggler { &__toggler {

View File

@ -98,6 +98,10 @@
cursor: default; cursor: default;
margin: 0 0 0 ($gap / 2); margin: 0 0 0 ($gap / 2);
} }
&__view-only {
margin: 0;
}
} }
&__help { &__help {

View File

@ -59,18 +59,18 @@
</p> </p>
<div class="form-row"> <div class="form-row">
<div class="form-col"> <div class="form-col">
<div class="usa-input usa-input__title"> <div class="usa-input usa-input__title__view-only">
{{ application_form.name.label() }} {{ application_form.name.label() }}
{{ application_form.name.data }}
</div> </div>
{{ application_form.name.data }}
</div> </div>
</div> </div>
<div class="form-row"> <div class="form-row">
<div class="form-col"> <div class="form-col">
<div class="usa-input usa-input__title"> <div class="usa-input usa-input__title__view-only">
{{ application_form.description.label() }} {{ application_form.description.label() }}
{{ application_form.description.data }}
</div> </div>
{{ application_form.description.data }}
</div> </div>
</div> </div>
</div> </div>