@rypen-dev/shared-components 6.1.7 → 6.1.8

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@rypen-dev/shared-components",
3
3
  "description": "Shared styles and Vuejs ui components for Rypen projects. Starting with version 6, this package is built with Webpack 5 and Vue 3.",
4
- "version": "6.1.7",
4
+ "version": "6.1.8",
5
5
  "main": "./dist/index.js",
6
6
  "scripts": {
7
7
  "build": "webpack --config ./webpack.config.js",
@@ -808,15 +808,15 @@ $table-color-scale: 5%;
808
808
  $table-border: 1px solid smart-scale($table-background, $table-color-scale);
809
809
  $table-padding: rem-calc(8 10 10);
810
810
  $table-hover-scale: 2%;
811
- $table-row-hover: darken($table-background, $table-hover-scale);
812
- $table-row-stripe-hover: darken($table-background, $table-color-scale + $table-hover-scale);
811
+ $table-row-hover: color.adjust($table-background, $lightness: $table-hover-scale);
812
+ $table-row-stripe-hover: color.adjust($table-background, $lightness: $table-color-scale + $table-hover-scale);
813
813
  $table-is-striped: true;
814
814
  $table-striped-background: smart-scale($table-background, $table-color-scale);
815
815
  $table-stripe: even;
816
816
  $table-head-background: smart-scale($table-background, $table-color-scale * 0.5);
817
- $table-head-row-hover: darken($table-head-background, $table-hover-scale);
817
+ $table-head-row-hover: color.adjust($table-head-background, $lightness: $table-hover-scale);
818
818
  $table-foot-background: smart-scale($table-background, $table-color-scale);
819
- $table-foot-row-hover: darken($table-foot-background, $table-hover-scale);
819
+ $table-foot-row-hover: color.adjust($table-foot-background, $lightness: $table-hover-scale);
820
820
  $table-head-font-color: $body-font-color;
821
821
  $table-foot-font-color: $body-font-color;
822
822
  $show-header-for-stacked: false;
@@ -1,6 +1,6 @@
1
1
  // Vendor
2
2
  @use './foundation-settings' as *;
3
- @use 'foundation-sites/scss/foundation';
3
+ @use 'foundation-sites/scss/foundation' as *;
4
4
 
5
5
  // Individual Foundation Pieces
6
6
  @include foundation-global-styles;