@iris.interactive/handcook 2.10.29 → 2.10.30
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/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Welcome to HandCook 👨🍳
|
|
2
|
-

|
|
3
3
|

|
|
4
4
|
[](#)
|
|
5
5
|
[](https://twitter.com/captain\_iris)
|
package/package.json
CHANGED
|
@@ -327,7 +327,9 @@ $button-background-color: var(--iris--button--background-color);
|
|
|
327
327
|
$button-color-hover: var(--iris--button--color-hover);
|
|
328
328
|
$button-background-color-hover: var(--iris--button--background-color-hover, none);
|
|
329
329
|
$button-background-image: var(--iris--button--background-image, none);
|
|
330
|
-
$button-gradient-background-image-size: var(--iris--global--gradient-background-size, (200% 100%));
|
|
330
|
+
$button-gradient-background-image-size: var(--iris--button--background-size, var(--iris--global--gradient-background-size, (200% 100%)));
|
|
331
|
+
$button-gradient-background-image-position: var(--iris--button--background-position, initial);
|
|
332
|
+
$button-gradient-background-image-position-hover: var(--iris--button--background-position-hover, (bottom right, top right));
|
|
331
333
|
$button-border: var(--iris--button--border, none);
|
|
332
334
|
$button-border-hover: var(--iris--button--border-hover, none);
|
|
333
335
|
$button-background-color--force: var(--iris--button--border-color, $button-background-color);
|
|
@@ -153,6 +153,7 @@
|
|
|
153
153
|
background-color: $button-background-color;
|
|
154
154
|
background-image: $button-background-image;
|
|
155
155
|
background-size: $button-gradient-background-image-size;
|
|
156
|
+
background-position: $button-gradient-background-image-position;
|
|
156
157
|
border: $button-border;
|
|
157
158
|
word-break: normal;
|
|
158
159
|
@include transition;
|
|
@@ -176,6 +177,7 @@
|
|
|
176
177
|
background-color: $button-background-color;
|
|
177
178
|
background-image: $button-background-image;
|
|
178
179
|
background-size: $button-gradient-background-image-size;
|
|
180
|
+
background-position: $button-gradient-background-image-position;
|
|
179
181
|
border: $button-border;
|
|
180
182
|
}
|
|
181
183
|
|
|
@@ -183,7 +185,7 @@
|
|
|
183
185
|
color: $button-color-hover;
|
|
184
186
|
background-color: $button-background-color-hover;
|
|
185
187
|
border: $button-border-hover;
|
|
186
|
-
background-position:
|
|
188
|
+
background-position: $button-gradient-background-image-position-hover;
|
|
187
189
|
|
|
188
190
|
&:before {
|
|
189
191
|
color: $button-color-hover;
|