shipyard-framework 0.3.6 → 0.3.7

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: 3435202a3b2f481a6c4fb578284b756ff4578352
4
- data.tar.gz: 0ae9f15d95883e9e5d8b7672635762b955c8e9f8
3
+ metadata.gz: 80d7c697942d5bf3dabb452e157f01c2841f57e6
4
+ data.tar.gz: 37b180204af51092b1feeab46f052a299a4a8c56
5
5
  SHA512:
6
- metadata.gz: 6157e79ce601b18b253efe1258321346edd13e9e474be3725212c566f380fee7bafd3a39df0cad4a76b5c3b9ac4bb2a837f32e21b5a034e7c16ea31ad27c416b
7
- data.tar.gz: 5cc85c2fcb560ab7589ba33a9cb2d61767ea165b7e0bb0d2746153d4799bc413095514f09a6d43ce7f09421e09c92794c268b7d4a1ccb8e2a21e38de4b0877fa
6
+ metadata.gz: 8aff87c35c69b3ba1d1a9f2ee79dd334838f8fafb82e74fcad26aabaec7ade151d89c3bc837d181251989071c5dfbc675f7d5c4abefc9d3c3321925ff06dff2e
7
+ data.tar.gz: 0e71a2502fbeb35a80f1c0b973e89b0adaf062e6f84cffcb30b9b1a43b293c1610aa00ffb73e95f414965b5209b999005f1a1702450d7bc2a5ff40c5802469b4
@@ -4,7 +4,7 @@
4
4
  margin: 0 0 10px
5
5
  &-note
6
6
  color: $text-color-light
7
- margin: -10px 0 15px
7
+ margin: -10px 0 10px
8
8
  font-size: $font-size-sm
9
9
  font-weight: $medium
10
10
 
@@ -68,7 +68,7 @@
68
68
  font-size: 16px
69
69
  transition: border-color 300ms ease
70
70
  outline: none
71
- +respond-to(padding, (x0: 0 15px, x1: 0 20px))
71
+ +respond-to(padding, (x0: 10px 15px, x1: 10px 20px))
72
72
  &:focus
73
73
  border-color: $border-color-dark
74
74
  &-connect
@@ -88,6 +88,11 @@
88
88
  &-full
89
89
  width: 100%
90
90
 
91
+ // Input Sizes
92
+ @each $size, $value in (sm: 40px, md: 50px, lg: 100px, xl: 200px)
93
+ &-#{$size}
94
+ height: $value
95
+
91
96
  &-description
92
97
  font-size: 14px
93
98
  margin: 5px 0 0
@@ -1,21 +1,31 @@
1
1
  +component('modal')
2
2
  width: 100%
3
3
  max-width: 800px
4
- padding: 10px
4
+ margin: auto
5
+
6
+ &-open
7
+ overflow: hidden
5
8
 
6
9
  &-container
7
- position: fixed
10
+ +z-index
8
11
  top: 0
12
+ left: 0
9
13
  right: 0
10
14
  bottom: 0
11
- left: 0
15
+ display: flex
16
+ overflow: auto
17
+ position: fixed
18
+ align-items: center
19
+ justify-content: center
12
20
  background: rgba($gray-darkest,.9)
13
- +z-index
21
+ transition: 300ms padding ease
22
+ -webkit-overflow-scrolling: touch
23
+ +respond-to(padding, $margins)
14
24
 
15
25
  &-content
16
26
  background: #fff
17
27
  border-radius: 5px 5px 0 0
18
- +respond-to(padding, (x0: 20px, x2: 30px))
28
+ +respond-to(padding, (x0: 15px, x2: 30px))
19
29
 
20
30
  &-title
21
31
  margin: 0 0 10px
@@ -37,6 +37,7 @@ $red-darkest: color('red', darkest) !default
37
37
  // Yellow
38
38
  $yellow: color('yellow') !default
39
39
  $yellow-light: color('yellow', light) !default
40
+ $yellow-lighter: color('yellow', lighter) !default
40
41
  $yellow-lightest: color('yellow', lightest) !default
41
42
  $yellow-dark: color('yellow', dark) !default
42
43
  $yellow-darker: color('yellow', darker) !default
@@ -45,8 +46,10 @@ $yellow-darkest: color('yellow', darkest) !default
45
46
  // Orange
46
47
  $orange: color('orange') !default
47
48
  $orange-light: color('orange', light) !default
49
+ $orange-lighter: color('orange', lighter) !default
48
50
  $orange-lightest: color('orange', lightest) !default
49
51
  $orange-dark: color('orange', dark) !default
52
+ $orange-darker: color('orange', darker) !default
50
53
  $orange-darkest: color('orange', darkest) !default
51
54
 
52
55
  // Coral
@@ -1,3 +1,3 @@
1
1
  module Shipyard
2
- VERSION = '0.3.6'
2
+ VERSION = '0.3.7'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shipyard-framework
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.6
4
+ version: 0.3.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shipyard
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-08-16 00:00:00.000000000 Z
11
+ date: 2017-08-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: actionview