@cfpb/cfpb-design-system 3.7.0 → 3.7.1

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.7.0",
3
+ "version": "3.7.1",
4
4
  "description": "CFPB's UI framework",
5
5
  "exports": {
6
6
  ".": "./src/index.js",
@@ -88,7 +88,7 @@ input.a-btn::-moz-focus-inner {
88
88
  &.hover,
89
89
  &:focus,
90
90
  &.focus {
91
- background-color: $btn-secondary-bg;
91
+ background-color: $btn-secondary-bg-hover;
92
92
  color: $btn-secondary-text-hover;
93
93
  box-shadow: 0 0 0 1px $btn-secondary-border-hover inset;
94
94
  }
@@ -100,7 +100,7 @@ input.a-btn::-moz-focus-inner {
100
100
 
101
101
  &:active,
102
102
  &.active {
103
- background-color: $btn-secondary-bg;
103
+ background-color: $btn-secondary-bg-active;
104
104
  color: $btn-secondary-text-active;
105
105
  box-shadow: 0 0 0 1px $btn-secondary-border-active inset;
106
106
  }
@@ -23,6 +23,8 @@ $btn-secondary-text: var(--pacific);
23
23
  $btn-secondary-text-hover: var(--pacific-dark);
24
24
  $btn-secondary-text-active: var(--navy);
25
25
  $btn-secondary-bg: var(--white);
26
+ $btn-secondary-bg-hover: var(--pacific-10);
27
+ $btn-secondary-bg-active: var(--pacific-20);
26
28
  $btn-secondary-border: var(--pacific);
27
29
  $btn-secondary-border-hover: var(--pacific-dark);
28
30
  $btn-secondary-border-active: var(--navy);