From d82b56c6443a5161bd0b81ece153ba3b39cefd36 Mon Sep 17 00:00:00 2001 From: Jonathan Bobel Date: Thu, 1 Feb 2024 12:09:43 -0500 Subject: [PATCH 1/9] Updates per Meghan --- app/templates/views/guidance/index.html | 4 +-- app/templates/views/roadmap.html | 4 +-- app/templates/views/security.html | 37 ++----------------------- app/templates/views/support/index.html | 6 ++-- 4 files changed, 9 insertions(+), 42 deletions(-) diff --git a/app/templates/views/guidance/index.html b/app/templates/views/guidance/index.html index e754ef245c..b7d6ffa1a0 100644 --- a/app/templates/views/guidance/index.html +++ b/app/templates/views/guidance/index.html @@ -41,7 +41,7 @@

Format your content

To create and format your message

  1. All messages start from a template
  2. -
  3. Click “Send Messages”. You’ll see existing templates.
  4. +
  5. Click “Send Messages”. You’ll see existing templates.
  6. Add a new template or choose an existing template and select Edit.
@@ -120,7 +120,7 @@

Examples

{# Identify your program #} -

Identify your program

+

Identify your program

You can help your recipients identify your texts as legitimate by customizing your messages to clearly state who they are from. Consider using the program or benefit name that is most familiar to your recipients.

diff --git a/app/templates/views/roadmap.html b/app/templates/views/roadmap.html index 6ea2e7cfb2..58c9ad4d1d 100644 --- a/app/templates/views/roadmap.html +++ b/app/templates/views/roadmap.html @@ -50,9 +50,9 @@

Now

  • Message send/failure analytics
  • - Next +

    Next

    -

    If the pilot is successful, we hope to recruit additional high-impact partners to improve outcomes for low-income individuals and families.

    +

    If the pilot is successful, we hope to recruit additional partners to improve outcomes for low-income individuals and families.

    Goals during this stage:

    diff --git a/app/templates/views/security.html b/app/templates/views/security.html index d676b37bf9..35abece079 100644 --- a/app/templates/views/security.html +++ b/app/templates/views/security.html @@ -65,9 +65,9 @@

    Technical security

    Protect sensitive information

    Some messages include sensitive information like security codes or password reset links.

    If you’re sending a message with sensitive information, you can choose to hide those details on the Notify dashboard once the message has been sent. This means that only the message recipient will be able to see that information.

    + Screenshot of a teat message in review with the link to 'hide personalization after sending' circled. -

    User permissions and signing in

    -

    You can set different user permissions in Notify. This lets you control who in your team has access to certain parts of the service.

    Two-factor authentication

    To sign in to Notify, you’ll need to enter:

    If signing in with a text message is a problem for your team, contact us to find out about using an email link instead.

    - Screenshot of a teat message in review with the link to 'hide personalization after sending' circled. - -

    How to hide PII after sending a message

    -

    User permissions and signing in

    You can set different user permissions in Notify. This lets you control who in your team has access to certain parts of the service.

    @@ -93,32 +88,4 @@

    Multi-factor authentication (MFA)

    If signing in with a text message is a problem for your team, contact us to find out about using an email link instead.

    - - - - - - {% endblock %} diff --git a/app/templates/views/support/index.html b/app/templates/views/support/index.html index d9d6abd53a..dd5ad9c104 100644 --- a/app/templates/views/support/index.html +++ b/app/templates/views/support/index.html @@ -13,9 +13,9 @@

    Contact us

    Notify is designed to be easy to use.

    If you have other questions, we are available at notify-support@gsa.gov.

    From 74d8ed834008dd9ae477df7c69f622b8f0a9e975 Mon Sep 17 00:00:00 2001 From: Jonathan Bobel Date: Mon, 5 Feb 2024 13:32:53 -0500 Subject: [PATCH 2/9] 1050 - Fixing repsonsive issues in the header - and beyond --- .../uswds/_uswds-theme-custom-styles.scss | 15 ++- .../components/components/header/template.njk | 111 +++++++++--------- 2 files changed, 71 insertions(+), 55 deletions(-) diff --git a/app/assets/sass/uswds/_uswds-theme-custom-styles.scss b/app/assets/sass/uswds/_uswds-theme-custom-styles.scss index b5f2147cdf..fb26072ce3 100644 --- a/app/assets/sass/uswds/_uswds-theme-custom-styles.scss +++ b/app/assets/sass/uswds/_uswds-theme-custom-styles.scss @@ -26,7 +26,7 @@ i.e. .usa-logo { font-family: family("sans"); margin: units(4) 0; - @include at-media-max('mobile-lg') { + @include at-media-max('desktop') { margin: units(4) 0 units(4) units(2); } img { @@ -43,6 +43,16 @@ i.e. text-decoration: underline; } } + @include at-media-max('desktop') { + padding: 0 units(2); + ul li { + padding-bottom: units(1); + } + } + } + .usa-nav-container { + max-width: 100%; + padding: 0; } } @@ -343,6 +353,9 @@ td.table-empty-message { background-image: url(../img/material-icons/description.svg); } } + .job-table, .dashboard-table { + overflow-x: scroll; + } } .dashboard-table { diff --git a/app/templates/components/components/header/template.njk b/app/templates/components/components/header/template.njk index 6cc8cabd8e..7719ac2c84 100644 --- a/app/templates/components/components/header/template.njk +++ b/app/templates/components/components/header/template.njk @@ -44,61 +44,64 @@
    -
    - - {% if current_user.is_authenticated %} - - {% endif %} -
    - + +
    From 116953b33f0e24627f7ca4f14ce2f412c66a6aa3 Mon Sep 17 00:00:00 2001 From: Jonathan Bobel Date: Tue, 27 Feb 2024 12:42:47 -0500 Subject: [PATCH 3/9] Adjusting conditional logic to hide responsive menu button if navigation isn't present --- app/templates/components/components/header/template.njk | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/app/templates/components/components/header/template.njk b/app/templates/components/components/header/template.njk index 7719ac2c84..2c690329ab 100644 --- a/app/templates/components/components/header/template.njk +++ b/app/templates/components/components/header/template.njk @@ -55,12 +55,11 @@ notify.gov - + {% if params.navigation %} + + {% endif %} - {% if current_user.is_authenticated %} - - {% endif %} - +