qpp-style 9.16.1 → 9.16.4
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/components/Header/ImpersonatorBanner.jsx +5 -0
- package/components/Infotip/InfotipIcon.jsx +3 -3
- package/dist/browser.js +1 -1
- package/dist/browser.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/react/index.js +1 -1
- package/dist/react/index.js.map +1 -1
- package/package.json +1 -1
- package/session/logout.js +5 -2
- package/styles/components/_text.scss +102 -102
- package/styles/qppds/components/_gov-banner.scss +2 -9
- package/styles/qppds/components/_pagination.scss +7 -7
- package/styles/qppds/components/_step-indicator.scss +190 -0
- package/styles/qppds/components/_table.scss +19 -1
- package/styles/qppds/components/index.scss +1 -0
- package/styles/qppds/settings/_functions.scss +1 -1
- package/styles/qppds/utilities/_vertical-align.scss +72 -0
- package/styles/qppds/utilities/index.scss +1 -0
- package/styles/third-party/legacy-bootstrap/_forms.scss +1 -1
- package/styles/third-party/legacy-bootstrap/_navbar.scss +2 -2
- package/styles/third-party/legacy-bootstrap/_variables.scss +2 -2
- package/styles/third-party/legacy-bootstrap/mixins/_grid-framework.scss +6 -6
- package/styles/third-party/legacy-bootstrap/mixins/_grid.scss +21 -21
- package/styles/third-party/legacy-bootstrap/mixins/_nav-divider.scss +1 -1
- package/styles/third-party/legacy-bootstrap/mixins/_nav-vertical-align.scss +2 -2
- package/test/components/Infotip.test.js +1 -1
|
@@ -7,6 +7,7 @@ import { TextButton } from '../Button';
|
|
|
7
7
|
import {
|
|
8
8
|
deleteImpersonatedUser,
|
|
9
9
|
revertQppHasAuthsCookie,
|
|
10
|
+
revertApmPaymentCookie,
|
|
10
11
|
} from '../../session/logout';
|
|
11
12
|
import { viewingToolUrl } from '../SideNav/helpers';
|
|
12
13
|
|
|
@@ -43,6 +44,10 @@ const ImpersonatorBanner = () => {
|
|
|
43
44
|
qpp_impersonated_user: user,
|
|
44
45
|
qpp_impersonated_type: viewType,
|
|
45
46
|
});
|
|
47
|
+
|
|
48
|
+
// Set user_has_apm_payments cookie back to impersonator's value
|
|
49
|
+
revertApmPaymentCookie();
|
|
50
|
+
|
|
46
51
|
// Set qpp_has_authorizations cookie back to impersonator's value
|
|
47
52
|
revertQppHasAuthsCookie();
|
|
48
53
|
window.location.href = viewingToolUrl;
|
|
@@ -17,13 +17,13 @@ const InfotipIcon = ({ lightIcon, ...props }) => (
|
|
|
17
17
|
/>
|
|
18
18
|
<path
|
|
19
19
|
d="M9.721 0C4.361 0 0 4.469 0 9.962c0 5.493 4.36 9.962 9.721 9.962 5.36 0 9.722-4.469 9.722-9.962C19.443 4.469 15.082 0 9.72 0z"
|
|
20
|
-
fill={lightIcon ? '#FFF' : '#
|
|
20
|
+
fill={lightIcon ? '#FFF' : '#0073C8'}
|
|
21
21
|
/>
|
|
22
22
|
<path
|
|
23
23
|
d="M9.721 14.765c-.206 0-.374.112-.374.25v.5c0 .138.168.25.374.25.207 0 .374-.112.374-.25v-.5c0-.138-.167-.25-.374-.25zM9.764 4.706H9.72c-.792 0-1.536.29-2.1.821a2.767 2.767 0 0 0-.89 2.03c0 .197.166.356.373.356s.374-.159.374-.356c0-.577.237-1.118.668-1.523a2.268 2.268 0 0 1 1.607-.615c1.182.016 2.195.98 2.211 2.107.011.743-.373 1.427-1.028 1.83-.995.61-1.589 1.691-1.589 2.89v1.013c0 .197.168.357.374.357.207 0 .374-.16.374-.357v-1.013c0-.941.477-1.82 1.246-2.292.873-.537 1.386-1.448 1.371-2.438-.022-1.527-1.345-2.788-2.948-2.81z"
|
|
24
|
-
stroke={lightIcon ? '#
|
|
24
|
+
stroke={lightIcon ? '#0073C8' : '#FFF'}
|
|
25
25
|
strokeWidth=".5"
|
|
26
|
-
fill={lightIcon ? '#
|
|
26
|
+
fill={lightIcon ? '#0073C8' : '#FFF'}
|
|
27
27
|
fillRule="nonzero"
|
|
28
28
|
/>
|
|
29
29
|
</g>
|