GIPainter-button 0.2.7 → 0.2.8
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.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a95628a66c8a5ee38a74e908df9e471e2e096730
|
|
4
|
+
data.tar.gz: f3f5fc36d537f72e1a911a4072d8b7131c747f8d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3cc76446436b874140e3e0c226c1934a11eb1b33870bf8cab60e701598e7b3b708d5218a735bee62112df4f516bf3d44355a048564526476b239a216c6be22ae
|
|
7
|
+
data.tar.gz: dd2d7a6df4141b70da39705afca276f125a94c617d08a13c4fa1aa89ad1aae1b4ddc1f2a95891623cb9b2f41ac5b71c902b4bde5ea3e60d101c1c985f79fb4a2
|
|
@@ -45,20 +45,20 @@
|
|
|
45
45
|
// Hover and focus styles are shared
|
|
46
46
|
&:hover,
|
|
47
47
|
&:focus,
|
|
48
|
-
|
|
48
|
+
&.o-btn--focus {
|
|
49
49
|
@include text-contrast($active-background);
|
|
50
50
|
background-color: $active-background;
|
|
51
51
|
}
|
|
52
52
|
|
|
53
53
|
// Disabled comes first so active can properly restyle
|
|
54
54
|
&:disabled,
|
|
55
|
-
|
|
55
|
+
&.o-btn--disabled {
|
|
56
56
|
background-color: $disabled-background;
|
|
57
57
|
@include text-contrast($disabled-background);
|
|
58
58
|
}
|
|
59
59
|
|
|
60
60
|
&:active,
|
|
61
|
-
|
|
61
|
+
&.o-btn--active {
|
|
62
62
|
@include text-contrast($active-background);
|
|
63
63
|
background-color: $active-background;
|
|
64
64
|
background-image: none; // Remove the gradient for the pressed/active state
|