@rypen-dev/shared-components 5.0.15 → 5.0.17

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.",
4
- "version": "5.0.15",
4
+ "version": "5.0.17",
5
5
  "main": "./dist/index.js",
6
6
  "scripts": {
7
7
  "build": "webpack --config ./webpack.config.js",
@@ -81,9 +81,9 @@ $input-highlight-color: $tertiary !default;
81
81
  $table-head-color: $dark-gray !default;
82
82
  $table-head-bg-color: $medium-gray !default;
83
83
  $table-head-selected-color: $body-font-color !default;
84
- $table-even-bg-color: $middle-gray !default;
85
- $table-odd-bg-color: $light-gray !default;
86
- $table-row-highlight-color: $secondary !default;
84
+ $table-even-bg-color: $light-gray !default;
85
+ $table-odd-bg-color: $middle-gray !default;
86
+ $table-row-highlight-color: $medium-gray !default;
87
87
  $table-text-color: $body-font-color !default;
88
88
  $table-mobile-label-color: $medium-gray !default;
89
89
 
@@ -717,6 +717,7 @@ label {
717
717
  padding-right: 0;
718
718
  padding-top: 0;
719
719
  padding-bottom: 0;
720
+ background-color: transparent;
720
721
  }
721
722
 
722
723
  &.error {
@@ -139,12 +139,12 @@ div.table {
139
139
 
140
140
  &:first-child,
141
141
  &.first {
142
- border-left-color: $table-even-bg-color;
142
+ border-left-color: $table-odd-bg-color;
143
143
  }
144
144
 
145
145
  &:last-child,
146
146
  &.last {
147
- border-right-color: $table-even-bg-color;
147
+ border-right-color: $table-odd-bg-color;
148
148
  }
149
149
  }
150
150
  }