verne 0.4.0 → 0.5.0

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: 1e7a8baa789ed7867f23a5e75ff7fc431bd0aca9
4
- data.tar.gz: a83602cbc600d1e7db066bd178a81cd27b544b55
3
+ metadata.gz: 0656e5027c7672615aebc2553d12783caa540fa9
4
+ data.tar.gz: c17a319f052c60ceaf992066195532d572d3dab8
5
5
  SHA512:
6
- metadata.gz: 1f426a0348ab8966371d92fc68697fc431e24d67c58fa20c617537ebc26a3f67d3f79d2fb14cc47c6ceadad135d742684d420f044f90cd943129b104f36f950a
7
- data.tar.gz: cbc4bd3cc48ac5276e14b1049bdf3902e1efa273d49494f86c0844d4e8700467c5cda634de1dbec009db9d4e380bc84c95c118dd1eb853b2e39512087f631b3a
6
+ metadata.gz: 98ca610ea5b014372ca8312d9f9b63b59a5cac13515483135e3769788e049eaadad83abfddbd40a1f1baca900d5ba82bc11f45547ab563c3f1b75e3d3255ae11
7
+ data.tar.gz: aa3a4408a812204ca488b98e516ada76bc6bc9f43d612370ed9924b638c42ac9f9e79d232564f3e7d75a6519fd932a89c3a528723359aa25830fb05e45995b77
@@ -1,6 +1,6 @@
1
1
  // Mixins
2
2
  @mixin button-is-colored($color)
3
- @include box-shadow(0 0 0 1px $color)
3
+ box-shadow: 0 0 0 1px $color
4
4
  color: $color
5
5
  &:hover
6
6
  background: transparentize($color, 0.9)
@@ -35,14 +35,14 @@
35
35
  // Modifiers
36
36
  %button-is-disabled
37
37
  &, &:hover, &:active
38
- @include box-shadow(0 0 0 1px $disabled-color)
38
+ box-shadow: 0 0 0 1px $disabled-color
39
39
  color: $disabled-color
40
40
  cursor: default
41
41
  background: none
42
42
 
43
43
  %button-is-selected
44
44
  &, &:hover
45
- @include box-shadow(0 0 0 1px $highlight-color)
45
+ box-shadow: 0 0 0 1px $highlight-color
46
46
  color: white
47
47
  background: $highlight-color
48
48
 
@@ -36,7 +36,7 @@ $border-width: 1px
36
36
  top: 0
37
37
  border-radius: $border-radius
38
38
  border: none
39
- @include box-shadow(0 0 0 1px $primary-color)
39
+ box-shadow: 0 0 0 1px $primary-color
40
40
  padding: 0 $rhythm * 2
41
41
  height: $rhythm * 8
42
42
  display: block
@@ -44,7 +44,7 @@ $border-width: 1px
44
44
  &, &:focus
45
45
  outline: 0
46
46
  &:focus
47
- @include box-shadow(0 0 0 1px $highlight-color)
47
+ box-shadow: 0 0 0 1px $highlight-color
48
48
  background: transparentize($highlight-color, 0.9)
49
49
  textarea
50
50
  height: $rhythm * 24
@@ -56,7 +56,7 @@ $border-width: 1px
56
56
  %input-is-invalid
57
57
  input[type=text], input[type=url], input[type=number], input[type=email], input[type=password], select, textarea
58
58
  &, &:focus
59
- @include box-shadow(0 0 0 1px $error-color)
59
+ box-shadow: 0 0 0 1px $error-color
60
60
  background: transparentize($error-color, 0.9)
61
61
  div + span
62
62
  color: $error-color
@@ -1,3 +1,3 @@
1
1
  module Verne
2
- VERSION = '0.4.0'
2
+ VERSION = '0.5.0'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: verne
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Devon Tivona