- {{ TextInput(form.clin_03, validation='dollars', tooltip='The cloud support and assistance packages cannot be used as a primary development resource.', placeholder="$0.00") }}
- {{ TextInput(form.clin_04, validation='dollars', tooltip='The cloud support and assistance packages cannot be used as a primary development resource.', disabled=(not config.CLASSIFIED)) }}
+
+ {{ TextInput(form.clin_03, validation='dollars', tooltip='The cloud support and assistance packages cannot be used as a primary development resource.', placeholder="$0.00") }}
+ {{ TextInput(form.clin_04, validation='dollars', tooltip='The cloud support and assistance packages cannot be used as a primary development resource.', placeholder="$0.00", disabled=(not config.CLASSIFIED)) }}
+
diff --git a/translations.yaml b/translations.yaml
index 8a188943..b0233c8d 100644
--- a/translations.yaml
+++ b/translations.yaml
@@ -188,7 +188,7 @@ forms:
description: Which of these describes how complex your team's use of the cloud will be? Select all that apply.
storage: Storage
data_analytics: Data Analytics
- conus: CONUS Acess
+ conus: CONUS Access
oconus: OCONUS Access
tactical_edge: Tactical Edge Access
not_sure: Not Sure
From 2c0018dba074aad4f5b06b7d6cb81d01107c8cfb Mon Sep 17 00:00:00 2001
From: leigh-mil
Date: Thu, 24 Jan 2019 10:41:59 -0500
Subject: [PATCH 2/4] Add blue background to officers DoD ID field
---
styles/sections/_task_order.scss | 20 ++++++++++----------
templates/components/text_input.html | 3 ++-
templates/task_orders/new/oversight.html | 6 +++---
3 files changed, 15 insertions(+), 14 deletions(-)
diff --git a/styles/sections/_task_order.scss b/styles/sections/_task_order.scss
index 01123107..a45da134 100644
--- a/styles/sections/_task_order.scss
+++ b/styles/sections/_task_order.scss
@@ -258,22 +258,22 @@
}
}
- .alert {
- padding: 1.5rem;
-
- .usa-input {
- width: 100%;
- margin: 0;
- }
- }
-
input[type="text"]:disabled {
color: $color-gray-lighter;
font-style: italic;
}
- .task-order__invite-dod-id {
+ .task-order__invite-officer {
+ padding: 1.5rem;
+ background-color: $color-aqua-lightest;
+ border-color: $color-blue;
+ border-left-style: solid;
+ border-left-width: $gap / 2;
+ .usa-input {
+ width: 100%;
+ margin: 0;
+ }
}
}
diff --git a/templates/components/text_input.html b/templates/components/text_input.html
index 210c8178..3bd95cc4 100644
--- a/templates/components/text_input.html
+++ b/templates/components/text_input.html
@@ -12,6 +12,7 @@
paragraph=False,
disabled=False,
initial_value='',
+ classes='',
noMaxWidth=False) -%}