@cfpb/cfpb-design-system 3.4.11 → 3.4.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cfpb/cfpb-design-system",
3
- "version": "3.4.11",
3
+ "version": "3.4.12",
4
4
  "description": "CFPB's UI framework",
5
5
  "main": "src/index.js",
6
6
  "author": {
@@ -29,12 +29,17 @@ textarea {
29
29
 
30
30
  /*
31
31
  * On iOS Safari the input is collapsed till it's clicked.
32
- * This sets the appearance to that of a textfield and then reverts the display
33
- * to vertically align the date.
32
+ * This sets the default min width and height to what it would be if the
33
+ * appearance was a textfield.
34
34
  */
35
35
  input[type='date'] {
36
- appearance: textfield;
37
36
  display: revert;
37
+ min-width: 98px;
38
+ min-height: 29px;
39
+
40
+ &.a-text-input--full {
41
+ min-width: 100%;
42
+ }
38
43
  }
39
44
 
40
45
  strong,
@@ -7,6 +7,9 @@
7
7
  .a-link__text {
8
8
  border-bottom-width: 1px;
9
9
  border-bottom-style: inherit;
10
+
11
+ // See https://github.com/cfpb/consumerfinance.gov/pull/8252
12
+ overflow-wrap: break-word;
10
13
  }
11
14
  }
12
15