mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-08-18 07:24:10 +02:00
Merge pull request #2028 from cisagov/za/1990-update-text-styling-sticky-bar
(on getgov-za) Ticket #1990: Update text styling on sticky bar
This commit is contained in:
commit
7caafac4cf
3 changed files with 7 additions and 4 deletions
|
@ -495,6 +495,8 @@ address.dja-address-contact-list {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
|
font-size: medium;
|
||||||
|
padding-top: 3px !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -505,6 +507,7 @@ address.dja-address-contact-list {
|
||||||
@media screen and (min-width:768px) {
|
@media screen and (min-width:768px) {
|
||||||
.visible-768 {
|
.visible-768 {
|
||||||
display: block;
|
display: block;
|
||||||
|
padding-top: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -116,8 +116,8 @@
|
||||||
</button>
|
</button>
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<p class="text-right margin-top-2 padding-right-2 margin-bottom-0 requested-domain-sticky float-right visible-768">
|
<p class="padding-top-05 text-right margin-top-2 padding-right-2 margin-bottom-0 requested-domain-sticky float-right visible-768">
|
||||||
<strong>Requested domain:</strong> {{ original.requested_domain.name }}
|
Requested domain: <strong>{{ original.requested_domain.name }}</strong>
|
||||||
</p>
|
</p>
|
||||||
{{ block.super }}
|
{{ block.super }}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1509,7 +1509,7 @@ class TestDomainRequestAdmin(MockEppLib):
|
||||||
|
|
||||||
# Since we're using client to mock the request, we can only test against
|
# Since we're using client to mock the request, we can only test against
|
||||||
# non-interpolated values
|
# non-interpolated values
|
||||||
expected_content = "<strong>Requested domain:</strong>"
|
expected_content = "Requested domain:"
|
||||||
expected_content2 = '<span class="scroll-indicator"></span>'
|
expected_content2 = '<span class="scroll-indicator"></span>'
|
||||||
expected_content3 = '<div class="submit-row-wrapper">'
|
expected_content3 = '<div class="submit-row-wrapper">'
|
||||||
not_expected_content = "submit-row-wrapper--analyst-view>"
|
not_expected_content = "submit-row-wrapper--analyst-view>"
|
||||||
|
@ -1538,7 +1538,7 @@ class TestDomainRequestAdmin(MockEppLib):
|
||||||
|
|
||||||
# Since we're using client to mock the request, we can only test against
|
# Since we're using client to mock the request, we can only test against
|
||||||
# non-interpolated values
|
# non-interpolated values
|
||||||
expected_content = "<strong>Requested domain:</strong>"
|
expected_content = "Requested domain:"
|
||||||
expected_content2 = '<span class="scroll-indicator"></span>'
|
expected_content2 = '<span class="scroll-indicator"></span>'
|
||||||
expected_content3 = '<div class="submit-row-wrapper submit-row-wrapper--analyst-view">'
|
expected_content3 = '<div class="submit-row-wrapper submit-row-wrapper--analyst-view">'
|
||||||
self.assertContains(request, expected_content)
|
self.assertContains(request, expected_content)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue