azion-theme 1.5.5 → 1.5.6
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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [1.5.6](https://github.com/aziontech/azion-theme/compare/v1.5.5...v1.5.6) (2024-08-15)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* toast shadow + bg hover color ([f4805dd](https://github.com/aziontech/azion-theme/commit/f4805ddb0ead5b98c27abf82d92c7841cfd34bf9))
|
|
6
|
+
|
|
1
7
|
## [1.5.5](https://github.com/aziontech/azion-theme/compare/v1.5.4...v1.5.5) (2024-08-07)
|
|
2
8
|
|
|
3
9
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -358,7 +358,7 @@ $colors: (
|
|
|
358
358
|
--chip-focus-bg: #dee2e6;
|
|
359
359
|
--skeleton-bg: #eaeaea;
|
|
360
360
|
--skeleton-animation-bg: #d6d6d6;
|
|
361
|
-
--toast-shadow:
|
|
361
|
+
--toast-shadow: #e7e7e7;
|
|
362
362
|
--success-message-bg: #1982361f;
|
|
363
363
|
--success-message-icon-color: #198236;
|
|
364
364
|
--error-message--bg: #ef40401f;
|
|
@@ -156,11 +156,11 @@ $tableBodyRowTextColor: $textColor;
|
|
|
156
156
|
|
|
157
157
|
/// Background of an even table body row
|
|
158
158
|
/// @group data
|
|
159
|
-
$tableBodyRowEvenBg:
|
|
159
|
+
$tableBodyRowEvenBg: var(--table-body-row-even-bg);
|
|
160
160
|
|
|
161
161
|
/// Background of a table body row in hover state
|
|
162
162
|
/// @group data
|
|
163
|
-
$tableBodyRowHoverBg:
|
|
163
|
+
$tableBodyRowHoverBg: var(--table-body-row-hover-bg);
|
|
164
164
|
|
|
165
165
|
/// Text color of a table body row in hover state
|
|
166
166
|
/// @group data
|