mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-16 20:49:00 -04:00
Reran reference tests and merged in main to fix conflicts
This commit is contained in:
@@ -48,7 +48,7 @@
|
||||
`;
|
||||
};
|
||||
ListEntry.prototype.renderAddButton = function(data) {
|
||||
return `<button type="button" class="usa-button usa-button--outline input-list__button--add">Add another ${data.listItemName} (${data.entriesLeft} remaining)</button>`;
|
||||
return `<button type="button" class="usa-button usa-button--outline input-list__button--add margin-top-4">Add another ${data.listItemName} (${data.entriesLeft} remaining)</button>`;
|
||||
};
|
||||
ListEntry.prototype.getSharedAttributes = function () {
|
||||
var $inputs = this.$wrapper.find('input'),
|
||||
|
||||
@@ -16,9 +16,7 @@ class Config(object):
|
||||
API_PUBLIC_WS_URL = getenv("API_PUBLIC_WS_URL", "localhost")
|
||||
|
||||
ADMIN_BASE_URL = getenv("ADMIN_BASE_URL", "http://localhost:6012")
|
||||
HEADER_COLOUR = (
|
||||
"#81878b" # mix of dark-grey and mid-grey
|
||||
)
|
||||
HEADER_COLOUR = "#81878b" # mix of dark-grey and mid-grey
|
||||
LOGO_CDN_DOMAIN = (
|
||||
"static-logos.notifications.service.gov.uk" # TODO use our own CDN
|
||||
)
|
||||
|
||||
@@ -17,7 +17,8 @@
|
||||
{% call govukFieldset({
|
||||
"legend": {
|
||||
"text": field.label.text,
|
||||
"isPageHeading": False
|
||||
"isPageHeading": False,
|
||||
"classes": "text-bold"
|
||||
},
|
||||
"attributes": attributes
|
||||
})
|
||||
|
||||
@@ -59,11 +59,13 @@
|
||||
autocomplete=False
|
||||
) }}
|
||||
|
||||
{{ list_entry(
|
||||
form.phone_numbers,
|
||||
item_name='phone number',
|
||||
autocomplete=False
|
||||
) }}
|
||||
<div class="margin-top-4">
|
||||
{{ list_entry(
|
||||
form.phone_numbers,
|
||||
item_name='phone number',
|
||||
autocomplete=False
|
||||
) }}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user