@latte-macchiat-io/latte-vanilla-components 0.0.328 → 0.0.329
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
@@ -172,8 +172,8 @@ export const carouselNavButton = style(
|
|
172
172
|
|
173
173
|
':hover': {
|
174
174
|
transform: 'scale(1.1)',
|
175
|
-
|
176
|
-
backgroundColor: themeContract.
|
175
|
+
border: themeContract.carousel.nav.borderHover,
|
176
|
+
backgroundColor: themeContract.carousel.nav.backgroundColorHover,
|
177
177
|
},
|
178
178
|
|
179
179
|
':disabled': {
|
@@ -90,6 +90,8 @@ export const themeCarouselLight = {
|
|
90
90
|
...themeCarouselBase.carousel.nav,
|
91
91
|
border: '1px solid #000',
|
92
92
|
backgroundColor: '#FF7377',
|
93
|
+
borderHover: '1px solid #000',
|
94
|
+
backgroundColorHover: '#FF7377',
|
93
95
|
},
|
94
96
|
|
95
97
|
bullet: {
|
@@ -109,6 +111,8 @@ export const themeCarouselDark = {
|
|
109
111
|
...themeCarouselBase.carousel.nav,
|
110
112
|
border: '1px solid #000',
|
111
113
|
backgroundColor: '#FF7377',
|
114
|
+
borderHover: '1px solid #000',
|
115
|
+
backgroundColorHover: '#FF7377',
|
112
116
|
},
|
113
117
|
|
114
118
|
bullet: {
|
@@ -811,8 +811,10 @@ export const themeContract = createGlobalThemeContract({
|
|
811
811
|
|
812
812
|
nav: {
|
813
813
|
border: 'latte-carousel-nav-border',
|
814
|
+
borderHover: 'latte-carousel-nav-borderHover',
|
814
815
|
borderRadius: 'latte-carousel-nav-borderRadius',
|
815
816
|
backgroundColor: 'latte-carousel-nav-backgroundColor',
|
817
|
+
backgroundColorHover: 'latte-carousel-nav-backgroundColorHover',
|
816
818
|
positionVerticalOffset: {
|
817
819
|
mobile: 'latte-carousel-nav-positionVerticalOffset-mobile',
|
818
820
|
sm: 'latte-carousel-nav-positionVerticalOffset-sm',
|