@department-of-veterans-affairs/css-library 0.7.4 → 0.8.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.
Files changed (50) hide show
  1. package/dist/fonts/bitter-bold.ttf +0 -0
  2. package/dist/fonts/bitter-bold.woff2 +0 -0
  3. package/dist/fonts/bitter-regular.ttf +0 -0
  4. package/dist/fonts/bitter-regular.woff2 +0 -0
  5. package/dist/stylesheets/_mixins.scss +452 -0
  6. package/dist/stylesheets/base/fonts.css +1589 -0
  7. package/dist/stylesheets/base/utils.css +137 -0
  8. package/dist/stylesheets/base/va.css +1843 -0
  9. package/dist/{full.css → stylesheets/core.css} +341 -2299
  10. package/dist/stylesheets/formation-overrides/_variables.scss +170 -0
  11. package/dist/stylesheets/formation-overrides/core/base.css +64 -0
  12. package/dist/stylesheets/formation-overrides/core/fonts.css +46 -0
  13. package/dist/stylesheets/formation-overrides/elements/buttons.css +562 -0
  14. package/dist/stylesheets/formation-overrides/elements/inputs.css +384 -0
  15. package/dist/stylesheets/formation-overrides/elements/labels.css +28 -0
  16. package/dist/stylesheets/formation-overrides/elements/lists.css +57 -0
  17. package/dist/stylesheets/formation-overrides/elements/table.css +78 -0
  18. package/dist/stylesheets/formation-overrides/elements/typography.css +274 -0
  19. package/dist/stylesheets/mobile-typography.css +13 -0
  20. package/dist/stylesheets/modules/m-action-link.css +1443 -0
  21. package/dist/stylesheets/modules/m-additional-info.css +39 -0
  22. package/dist/stylesheets/modules/m-alert.css +254 -0
  23. package/dist/stylesheets/modules/m-breadcrumbs.css +96 -0
  24. package/dist/stylesheets/modules/m-button.css +153 -0
  25. package/dist/stylesheets/modules/m-dropdown.css +47 -0
  26. package/dist/stylesheets/modules/m-emergency-banner.css +33 -0
  27. package/dist/stylesheets/modules/m-external-link.css +14 -0
  28. package/dist/stylesheets/modules/m-form-elements.css +231 -0
  29. package/dist/stylesheets/modules/m-form-process.css +219 -0
  30. package/dist/stylesheets/modules/m-homepage-hero.css +76 -0
  31. package/dist/stylesheets/modules/m-hub-page-link-list.css +40 -0
  32. package/dist/stylesheets/modules/m-loading-indicator.css +41 -0
  33. package/dist/stylesheets/modules/m-maintenance-banner.css +33 -0
  34. package/dist/stylesheets/modules/m-megamenu.css +365 -0
  35. package/dist/stylesheets/modules/m-modal.css +117 -0
  36. package/dist/stylesheets/modules/m-nav-linklist.css +49 -0
  37. package/dist/stylesheets/modules/m-nav-sidebar.css +349 -0
  38. package/dist/stylesheets/modules/m-omb-info.css +15 -0
  39. package/dist/stylesheets/modules/m-overlay.css +72 -0
  40. package/dist/stylesheets/modules/m-print.css +27 -0
  41. package/dist/stylesheets/modules/m-process-list.css +162 -0
  42. package/dist/stylesheets/modules/va-pagination.css +90 -0
  43. package/dist/stylesheets/modules/va-tabs.css +53 -0
  44. package/dist/stylesheets/shame.css +266 -0
  45. package/dist/{uswds-typography.css → stylesheets/uswds-typography.css} +1 -1
  46. package/dist/tokens/css/variables.css +1 -1
  47. package/dist/tokens/scss/variables.scss +1 -1
  48. package/package.json +8 -6
  49. /package/dist/{base → stylesheets/base}/headings.css +0 -0
  50. /package/dist/{utilities.css → stylesheets/utilities.css} +0 -0
@@ -0,0 +1,137 @@
1
+ /**
2
+ Variables ported over from Formation so that we can keep those stylesheets
3
+ working while we work on deprecation.
4
+ **/
5
+ /**
6
+ /uswds/dist/scss/lib/addons/_margin.scss
7
+ **/
8
+ /**
9
+ uswds/src/stylesheets/lib/helpers/_directional-values.scss
10
+ **/
11
+ /**
12
+ Variables ported over from Formation so that we can keep those stylesheets
13
+ working while we work on deprecation.
14
+ **/
15
+ /**
16
+ /uswds/dist/scss/lib/addons/_margin.scss
17
+ **/
18
+ /**
19
+ uswds/src/stylesheets/lib/helpers/_directional-values.scss
20
+ **/
21
+ /**
22
+ Variables ported over from Formation so that we can keep those stylesheets
23
+ working while we work on deprecation.
24
+ **/
25
+ .usa-sr-only {
26
+ position: absolute;
27
+ left: -999em;
28
+ }
29
+
30
+ .full-width {
31
+ width: 100%;
32
+ }
33
+
34
+ .no-text-transform {
35
+ text-transform: none;
36
+ }
37
+
38
+ .no-bottom-margin {
39
+ margin-bottom: 0;
40
+ }
41
+
42
+ .va-button-link {
43
+ background: none;
44
+ background-color: transparent !important;
45
+ border: 0;
46
+ border-radius: 0;
47
+ outline: 0;
48
+ padding: 0 !important;
49
+ margin: 0;
50
+ text-align: left;
51
+ -webkit-font-smoothing: auto;
52
+ color: #005ea2 !important;
53
+ font-weight: normal;
54
+ text-decoration: underline;
55
+ display: inline;
56
+ width: auto !important;
57
+ line-height: inherit;
58
+ }
59
+ .va-button-link:hover {
60
+ background: none;
61
+ border: 0;
62
+ border-radius: 0;
63
+ outline: 0;
64
+ padding: 0 !important;
65
+ color: #005ea2;
66
+ text-decoration: underline;
67
+ background-color: rgba(0, 0, 0, 0.05) !important;
68
+ -webkit-transition-duration: 0.3s;
69
+ transition-duration: 0.3s;
70
+ -webkit-transition-timing-function: ease-in-out;
71
+ transition-timing-function: ease-in-out;
72
+ -webkit-transition-property: color, background-color, border-color;
73
+ transition-property: color, background-color, border-color;
74
+ }
75
+ .va-button-link:active {
76
+ background: rgba(0, 0, 0, 0.05);
77
+ }
78
+ .va-button-link:focus {
79
+ outline: 2px dotted #aeb0b5;
80
+ outline-offset: 2px;
81
+ outline-offset: 0;
82
+ }
83
+ .va-button-link:disabled {
84
+ text-decoration: none;
85
+ color: #aeb0b5 !important;
86
+ }
87
+
88
+ .dashed-underline {
89
+ text-decoration: none;
90
+ border-bottom: 1px dashed;
91
+ }
92
+ .dashed-underline:hover {
93
+ text-decoration: none;
94
+ border-bottom: 1px dashed;
95
+ }
96
+
97
+ .clickable:hover {
98
+ cursor: pointer;
99
+ }
100
+
101
+ .js-visual {
102
+ visibility: hidden !important;
103
+ }
104
+
105
+ .js-hide {
106
+ display: none !important;
107
+ }
108
+
109
+ .heading-level-1 {
110
+ font-size: 2.5rem;
111
+ font-weight: 700;
112
+ }
113
+ .heading-level-2 {
114
+ font-size: 1.875rem;
115
+ font-weight: 700;
116
+ }
117
+ .heading-level-3 {
118
+ font-size: 1.25rem;
119
+ font-weight: 700;
120
+ }
121
+ .heading-level-4 {
122
+ font-size: 1.0625rem;
123
+ font-weight: 700;
124
+ }
125
+ .heading-level-5 {
126
+ font-size: 0.9375rem;
127
+ font-weight: 700;
128
+ }
129
+ .heading-level-6 {
130
+ font-size: 0.8125rem;
131
+ font-weight: 400;
132
+ line-height: 1.5;
133
+ text-transform: uppercase;
134
+ font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
135
+ }
136
+
137
+ /*# sourceMappingURL=utils.css.map */