@cfpb/cfpb-design-system 3.4.12 → 3.4.14

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.12",
3
+ "version": "3.4.14",
4
4
  "description": "CFPB's UI framework",
5
5
  "main": "src/index.js",
6
6
  "author": {
@@ -34,8 +34,10 @@ textarea {
34
34
  */
35
35
  input[type='date'] {
36
36
  display: revert;
37
- min-width: 98px;
38
- min-height: 29px;
37
+ min-width: 100px;
38
+ min-height: 35px;
39
+ padding-top: 0;
40
+ padding-bottom: 0;
39
41
 
40
42
  &.a-text-input--full {
41
43
  min-width: 100%;
@@ -16,6 +16,21 @@
16
16
  text-align: left;
17
17
  min-width: fit-content;
18
18
 
19
+ .cf-icon-svg {
20
+ pointer-events: none;
21
+
22
+ // Prevent flexbox from squishing icon when tag text is long.
23
+ flex: none;
24
+ }
25
+
26
+ // If the contents are wrapped in a label, negate the label's display.
27
+ > label {
28
+ display: contents;
29
+ pointer-events: none;
30
+ }
31
+ }
32
+
33
+ button.a-tag-filter {
19
34
  &:hover {
20
35
  background-color: var(--teal-40);
21
36
  cursor: pointer;
@@ -29,19 +44,6 @@
29
44
  &:active {
30
45
  background-color: var(--teal);
31
46
  }
32
-
33
- .cf-icon-svg {
34
- pointer-events: none;
35
-
36
- // Prevent flexbox from squishing icon when tag text is long.
37
- flex: none;
38
- }
39
-
40
- // If the contents are wrapped in a label, negate the label's display.
41
- > label {
42
- display: contents;
43
- pointer-events: none;
44
- }
45
47
  }
46
48
 
47
49
  a.a-tag-filter {