codelation_assets 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 44488838661279b6caac48ba3a9f3b0014bffc12
|
4
|
+
data.tar.gz: 550ac8d4a4485c8ccd6f9e187331c622aef02dfd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1d5d2c4c4b0a2d7f92b9200fffe3e3c77e777373a8919b392829adef4a55d9ae083a62b741b5c3d807f6dd1e733f70da3a19be378d211647af0d9bb0d179b69c
|
7
|
+
data.tar.gz: 8ce9bb212a68c52f053eb067614d1be4430be05bf9711a7743e8a6934eab8cc402abd80bc0c1144da6578679525086fc54d59e7c7ff8fad2815c334d131ae722
|
@@ -1,11 +1,11 @@
|
|
1
1
|
$accent-color: $blue !default;
|
2
2
|
|
3
|
-
@mixin button($background-color: color($grey, 100), $
|
3
|
+
@mixin button($background-color: color($grey, 100), $color: color($grey, 800), $active-background-color: $accent-color, $active-color: text-color($accent-color)) {
|
4
4
|
background-image: linear-gradient(to bottom, $background-color, darken($background-color, 8%));
|
5
5
|
border: 0;
|
6
6
|
border-radius: 2px;
|
7
7
|
box-shadow: rgba(0, 0, 0, 0.14902) 0 0 0 1px inset;
|
8
|
-
color: $
|
8
|
+
color: $color;
|
9
9
|
display: inline-block;
|
10
10
|
font-size: 11px;
|
11
11
|
height: 26px;
|
@@ -26,11 +26,11 @@ $accent-color: $blue !default;
|
|
26
26
|
|
27
27
|
&:hover {
|
28
28
|
background-image: linear-gradient(to bottom, lighten($background-color, 5%), darken($background-color, 3.5%));
|
29
|
-
color: $
|
29
|
+
color: $color;
|
30
30
|
}
|
31
31
|
|
32
32
|
&:active {
|
33
33
|
background-image: linear-gradient(to bottom, lighten($active-background-color, 3%), darken($active-background-color, 5%));
|
34
|
-
color: $active-
|
34
|
+
color: $active-color;
|
35
35
|
}
|
36
36
|
}
|