@everymatrix/casino-slider 0.0.225 → 0.0.227
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,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@everymatrix/casino-slider",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.227",
|
4
4
|
"main": "dist/casino-slider.js",
|
5
5
|
"svelte": "src/index.ts",
|
6
6
|
"scripts": {
|
@@ -36,5 +36,5 @@
|
|
36
36
|
"publishConfig": {
|
37
37
|
"access": "public"
|
38
38
|
},
|
39
|
-
"gitHead": "
|
39
|
+
"gitHead": "87c5d90286e7d4214a1e8f9ec974787cb1fd71a6"
|
40
40
|
}
|
package/src/CasinoSlider.svelte
CHANGED
@@ -137,9 +137,9 @@
|
|
137
137
|
}
|
138
138
|
|
139
139
|
.CarouselWrapper {
|
140
|
-
background: #D0046C; /* fallback for old browsers */
|
141
|
-
background: -webkit-linear-gradient(to left, #FD2839, #D0046C); /* Chrome 10-25, Safari 5.1-6 */
|
142
|
-
background: linear-gradient(to left, #FD2839, #D0046C); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
|
140
|
+
background: var(--emfe-w-color-primary, #D0046C); /* fallback for old browsers */
|
141
|
+
background: -webkit-linear-gradient(to left, var(--emfe-w-color-secondary, #FD2839), var(--emfe-w-color-primary, #D0046C)); /* Chrome 10-25, Safari 5.1-6 */
|
142
|
+
background: linear-gradient(to left, var(--emfe-w-color-secondary, #FD2839), var(--emfe-w-color-primary, #D0046C)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
|
143
143
|
&.CarouselWrapperHeaderMain {
|
144
144
|
background: transparent;
|
145
145
|
}
|
@@ -151,7 +151,7 @@
|
|
151
151
|
flex-wrap: nowrap;
|
152
152
|
justify-content: center;
|
153
153
|
width: 100%;
|
154
|
-
color: #
|
154
|
+
color: var(--emfe-w-color-white, #FFFFFF);
|
155
155
|
margin: 0 auto;
|
156
156
|
padding: 0 10px;
|
157
157
|
&.CarouselContainerMobile {
|
@@ -185,7 +185,7 @@
|
|
185
185
|
|
186
186
|
&:hover,
|
187
187
|
&.active {
|
188
|
-
background: #
|
188
|
+
background: var(--emfe-w-color-contrast, #07072A);
|
189
189
|
cursor: pointer;
|
190
190
|
}
|
191
191
|
}
|
@@ -215,8 +215,8 @@
|
|
215
215
|
&:hover, &.active {
|
216
216
|
background: transparent;
|
217
217
|
a {
|
218
|
-
border-top: 1px solid #D0046C;
|
219
|
-
color: #D0046C;
|
218
|
+
border-top: 1px solid var(--emfe-w-color-primary, #D0046C);
|
219
|
+
color: var(--emfe-w-color-primary, #D0046C);
|
220
220
|
}
|
221
221
|
}
|
222
222
|
span {
|
@@ -237,7 +237,7 @@
|
|
237
237
|
display: none;
|
238
238
|
}
|
239
239
|
.CarouselItem a {
|
240
|
-
color: #
|
240
|
+
color: var(--emfe-w-color-white, #FFFFFF);
|
241
241
|
text-decoration: none;
|
242
242
|
}
|
243
243
|
}
|