cozy-ui 85.0.1 → 85.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.
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [85.0.2](https://github.com/cozy/cozy-ui/compare/v85.0.1...v85.0.2) (2023-05-17)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **Fab:** Hover background color is no longer transparent ([74b6f54](https://github.com/cozy/cozy-ui/commit/74b6f54))
|
|
7
|
+
|
|
1
8
|
## [85.0.1](https://github.com/cozy/cozy-ui/compare/v85.0.0...v85.0.1) (2023-05-12)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -977,10 +977,10 @@ const makeOverrides = theme => ({
|
|
|
977
977
|
color: theme.palette.text.primary,
|
|
978
978
|
backgroundColor: theme.palette.background.paper,
|
|
979
979
|
'&:hover': {
|
|
980
|
-
backgroundColor: theme.palette.
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
980
|
+
backgroundColor: darken(theme.palette.background.paper, 0.05)
|
|
981
|
+
},
|
|
982
|
+
'@media (hover: none)': {
|
|
983
|
+
backgroundColor: theme.palette.background.paper
|
|
984
984
|
}
|
|
985
985
|
},
|
|
986
986
|
extended: {
|
|
@@ -896,10 +896,10 @@ var makeOverrides = function makeOverrides(theme) {
|
|
|
896
896
|
color: theme.palette.text.primary,
|
|
897
897
|
backgroundColor: theme.palette.background.paper,
|
|
898
898
|
'&:hover': {
|
|
899
|
-
backgroundColor: theme.palette.
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
899
|
+
backgroundColor: darken(theme.palette.background.paper, 0.05)
|
|
900
|
+
},
|
|
901
|
+
'@media (hover: none)': {
|
|
902
|
+
backgroundColor: theme.palette.background.paper
|
|
903
903
|
}
|
|
904
904
|
},
|
|
905
905
|
extended: {
|