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: cb5f9545a743721e09a05e6c66a796b25925722f
4
- data.tar.gz: 49357fb6624663cf6e6ff3ba480348ccd5aef845
3
+ metadata.gz: 44488838661279b6caac48ba3a9f3b0014bffc12
4
+ data.tar.gz: 550ac8d4a4485c8ccd6f9e187331c622aef02dfd
5
5
  SHA512:
6
- metadata.gz: 7b68a1bda8ee5969c95adb821c7906c067e14f453f2cf9b2255bd34f927b538441a10177ecfc6097affb74ba2ae783264dfa97101ad96511bd356b194f9f2f76
7
- data.tar.gz: 6027c32fe5fd65c098684cd03db5d0f8126df6cf6d9d240305d70de596a7e0291474b29d25781ec4b7d2acbfb6cb587e414acfea9fe4c2d6be60790dc130e213
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), $font-color: $grey, $active-background-color: $accent-color, $active-font-color: text-color($accent-color)) {
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: $font-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: $font-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-font-color;
34
+ color: $active-color;
35
35
  }
36
36
  }
@@ -1,3 +1,3 @@
1
1
  module CodelationAssets
2
- VERSION = "0.2.0".freeze
2
+ VERSION = "0.2.1".freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: codelation_assets
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Pattison