mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-07-14 15:05:14 +02:00
Revert some mis-renamed instances of "application" + other minor fixes
This commit is contained in:
parent
c2679ff9b5
commit
2340b6c800
4 changed files with 12 additions and 3 deletions
|
@ -135,12 +135,21 @@ html[data-theme="dark"] {
|
||||||
color: var(--primary-fg);
|
color: var(--primary-fg);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#branding h1,
|
#branding h1,
|
||||||
h1, h2, h3,
|
h1, h2, h3,
|
||||||
.module h2 {
|
.module h2 {
|
||||||
font-weight: font-weight('bold');
|
font-weight: font-weight('bold');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#content h2
|
||||||
|
{
|
||||||
|
color:red;
|
||||||
|
font-size: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
.module h3 {
|
.module h3 {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
color: var(--link-fg);
|
color: var(--link-fg);
|
||||||
|
|
|
@ -16,7 +16,7 @@ class Timer:
|
||||||
|
|
||||||
Note that this class does not account for general randomness as more
|
Note that this class does not account for general randomness as more
|
||||||
robust libraries do, so there is some tiny amount of latency involved
|
robust libraries do, so there is some tiny amount of latency involved
|
||||||
in using this, but it is minimal enough that for most domain requests it is not
|
in using this, but it is minimal enough that for most applications it is not
|
||||||
noticable.
|
noticable.
|
||||||
|
|
||||||
Usage:
|
Usage:
|
||||||
|
|
|
@ -50,7 +50,7 @@
|
||||||
This is controlled by the class `dja-form-placeholder` on the button.
|
This is controlled by the class `dja-form-placeholder` on the button.
|
||||||
|
|
||||||
In addition, the modal element MUST be placed low in the DOM. The script loads slower on DJA than on other portions
|
In addition, the modal element MUST be placed low in the DOM. The script loads slower on DJA than on other portions
|
||||||
of the domain_request, so this means that it will briefly "populate", causing unintended visual effects.
|
of the application, so this means that it will briefly "populate", causing unintended visual effects.
|
||||||
{% endcomment %}
|
{% endcomment %}
|
||||||
<div
|
<div
|
||||||
class="usa-modal"
|
class="usa-modal"
|
||||||
|
|
|
@ -1911,7 +1911,7 @@ class MyUserAdminTest(TestCase):
|
||||||
self.assertEqual(fieldsets, expected_fieldsets)
|
self.assertEqual(fieldsets, expected_fieldsets)
|
||||||
|
|
||||||
def test_get_fieldsets_cisa_analyst(self):
|
def test_get_fieldsets_cisa_analyst(self):
|
||||||
if True:
|
with less_console_noise():
|
||||||
request = self.client.request().wsgi_request
|
request = self.client.request().wsgi_request
|
||||||
request.user = create_user()
|
request.user = create_user()
|
||||||
fieldsets = self.admin.get_fieldsets(request)
|
fieldsets = self.admin.get_fieldsets(request)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue