@castlabs/ui 7.0.0 → 7.0.2

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 (30) hide show
  1. package/dist/castlabs-ui.common.js +4 -4
  2. package/dist/castlabs-ui.common.js.map +1 -1
  3. package/dist/castlabs-ui.css +2 -2
  4. package/dist/castlabs-ui.umd.js +7 -7
  5. package/dist/castlabs-ui.umd.js.map +1 -1
  6. package/package.json +1 -1
  7. package/src/components/ClBadge/style.variables.scss +9 -7
  8. package/src/components/ClButton/style.scss +3 -3
  9. package/src/components/ClCard/style.scss +10 -3
  10. package/src/components/ClCard/style.variables.scss +16 -6
  11. package/src/components/ClDropdown/style.scss +9 -8
  12. package/src/components/ClPagination/style.scss +1 -1
  13. package/src/components/ClTabs/style.scss +6 -0
  14. package/src/components/ClToggle/style.scss +6 -1
  15. package/src/components/form/ClFieldFile/style.scss +2 -1
  16. package/src/components/form/ClForm/style.scss +1 -1
  17. package/src/components/modal/ClModal/style.scss +1 -1
  18. package/src/components/navigation/ClNavSide/ClNavDrawer/style.scss +16 -13
  19. package/src/components/navigation/ClNavTop/style.scss +2 -1
  20. package/src/components/table/ClTableCel/Audit/style.scss +1 -1
  21. package/src/components/table/ClTableCel/Boolean/style.scss +1 -1
  22. package/src/components/text/ClLinkExternal/style.scss +1 -1
  23. package/src/components/widget/ClCookieBanner/style.scss +9 -2
  24. package/src/styles/abstracts/color.scss +30 -10
  25. package/src/styles/components/button.variables.scss +2 -2
  26. package/src/styles/layout/helper.scss +11 -0
  27. package/src/styles/layout/spacing.scss +1 -0
  28. package/src/styles/layout/typography.scss +1 -0
  29. package/src/styles/layout/typography.variables.scss +2 -2
  30. package/src/styles/vendors/castlabs.scss +2 -2
@@ -92,7 +92,7 @@ $typography-monospace-line-height: 1.375;
92
92
 
93
93
  @mixin typography-link-invisible {
94
94
  @include typography-link(inherit, inherit, 0);
95
- @include cl-color-focus-outline($color-text, 1px);
95
+ @include cl-color-focus-outline(var(--cl-color-focus), 1px);
96
96
  }
97
97
 
98
98
  @mixin cl-btn-a($line-height-px) {
@@ -129,7 +129,7 @@ $typography-monospace-line-height: 1.375;
129
129
 
130
130
  %cl-a {
131
131
  @include typography-link(var(--cl-color-link), $color-ci-red);
132
- @include cl-color-focus-outline(var(--cl-color-link), 1px);
132
+ @include cl-color-focus-outline(var(--cl-color-focus), 1px);
133
133
  }
134
134
 
135
135
  %cl-a-text {
@@ -1,9 +1,9 @@
1
1
  .cl-theme-v2 {
2
2
  .cl-section-primary.cl-section-tight {
3
- background-color: $color-ci-haze;
3
+ background-color: $color-ci-eggshell;
4
4
 
5
5
  h1 {
6
- color: $color-ci-dusk;
6
+ color: $color-ci-night;
7
7
  }
8
8
  }
9
9