mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-05-29 08:50:01 +02:00
Merge pull request #1945 from cisagov/rjm/1853-collapse-expand
Issue #1853: Show/Hide lesser-used data in domain request, domain and domain information - (bob)
This commit is contained in:
commit
d95fd135ac
2 changed files with 51 additions and 5 deletions
|
@ -885,13 +885,21 @@ class DomainInformationAdmin(ListHeaderAdmin):
|
|||
"fields": [
|
||||
"generic_org_type",
|
||||
"is_election_board",
|
||||
]
|
||||
},
|
||||
),
|
||||
(
|
||||
"More details",
|
||||
{
|
||||
"classes": ["collapse"],
|
||||
"fields": [
|
||||
"federal_type",
|
||||
"federal_agency",
|
||||
"tribe_name",
|
||||
"federally_recognized_tribe",
|
||||
"state_recognized_tribe",
|
||||
"about_your_organization",
|
||||
]
|
||||
],
|
||||
},
|
||||
),
|
||||
(
|
||||
|
@ -900,12 +908,20 @@ class DomainInformationAdmin(ListHeaderAdmin):
|
|||
"fields": [
|
||||
"organization_name",
|
||||
"state_territory",
|
||||
]
|
||||
},
|
||||
),
|
||||
(
|
||||
"More details",
|
||||
{
|
||||
"classes": ["collapse"],
|
||||
"fields": [
|
||||
"address_line1",
|
||||
"address_line2",
|
||||
"city",
|
||||
"zipcode",
|
||||
"urbanization",
|
||||
]
|
||||
],
|
||||
},
|
||||
),
|
||||
]
|
||||
|
@ -1097,13 +1113,21 @@ class DomainRequestAdmin(ListHeaderAdmin):
|
|||
"fields": [
|
||||
"generic_org_type",
|
||||
"is_election_board",
|
||||
]
|
||||
},
|
||||
),
|
||||
(
|
||||
"More details",
|
||||
{
|
||||
"classes": ["collapse"],
|
||||
"fields": [
|
||||
"federal_type",
|
||||
"federal_agency",
|
||||
"tribe_name",
|
||||
"federally_recognized_tribe",
|
||||
"state_recognized_tribe",
|
||||
"about_your_organization",
|
||||
]
|
||||
],
|
||||
},
|
||||
),
|
||||
(
|
||||
|
@ -1112,12 +1136,20 @@ class DomainRequestAdmin(ListHeaderAdmin):
|
|||
"fields": [
|
||||
"organization_name",
|
||||
"state_territory",
|
||||
]
|
||||
},
|
||||
),
|
||||
(
|
||||
"More details",
|
||||
{
|
||||
"classes": ["collapse"],
|
||||
"fields": [
|
||||
"address_line1",
|
||||
"address_line2",
|
||||
"city",
|
||||
"zipcode",
|
||||
"urbanization",
|
||||
]
|
||||
],
|
||||
},
|
||||
),
|
||||
]
|
||||
|
|
|
@ -421,3 +421,17 @@ address.dja-address-contact-list {
|
|||
.errors span.select2-selection {
|
||||
border: 1px solid var(--error-fg) !important;
|
||||
}
|
||||
|
||||
.module.collapse {
|
||||
margin-top: -35px;
|
||||
padding-top: 0;
|
||||
border: none;
|
||||
h2 {
|
||||
background: none;
|
||||
color: var(--body-fg)!important;
|
||||
text-transform: none;
|
||||
}
|
||||
a {
|
||||
color: var(--link-fg);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue