waterfall_bourbon_neat_rails 0.1.9.7 → 0.1.9.8

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: 17aa9c8bca1a97b4357033f9c0f0c877ef0247b5
4
- data.tar.gz: 29ead66c51dfbe0cc81aa527dae85acc9b8bf2cb
3
+ metadata.gz: d168dc99eb4abdc1cb1efcf404670d7b40f76600
4
+ data.tar.gz: 836e354c55bcd271c43b95597b999ca0eb77d4f3
5
5
  SHA512:
6
- metadata.gz: 3edb5d8a1814b5e9b4a38fc4bfd0a50e8a29bf022a3cdb9d50335e0671af4facd813bd27749ee0a1d4c639c1a8fe262e9beea15ec50ada9b180e22bd2a6670d7
7
- data.tar.gz: 5d0efa5804fa7117779cae2e05db226baa8c579e45106691452a62f726dccd659f7294a46b0352eea60a3e4143bce926a62cefa1cd74e4ce6b6fb7152e243e54
6
+ metadata.gz: 28ce6f5da659cf35da6c68946d8bb7537761cbe167df2ddd77de0455ecc65f9c204442e3be3b358bc2593ff84a14ea14747794a55ca11c08436501b30d282659
7
+ data.tar.gz: dbd62cd748df8e9ce1866840113b52e0bdb8e98b1d0d31cad07eafa91cf8873db27c9bcdac52ecfda22ab31c8076c95551a8e8eb1b2eeff873e4a24f984c8478
@@ -34,7 +34,6 @@ textarea,
34
34
  select[multiple=multiple] {
35
35
  @include box-sizing(border-box);
36
36
  @include transition(border-color);
37
- background-color: white;
38
37
  border-radius: $form-border-radius;
39
38
  border: 1px solid $form-border-color;
40
39
  box-shadow: $form-box-shadow;
@@ -26,12 +26,12 @@ $small-screen: new-breakpoint(max-width 768px 6);
26
26
  @mixin container{
27
27
  @include outer-container;
28
28
  @include media($large-screen){
29
- max-width: 1170px;
29
+ max-width: 1200px;
30
30
  }
31
31
  @include media($medium-screen){
32
- max-width: 970px;
32
+ max-width: 980px;
33
33
  }
34
34
  @include media($small-screen){
35
- max-width:750px;
35
+ max-width:760px;
36
36
  }
37
37
  }
@@ -1,9 +1,7 @@
1
1
  body {
2
2
  -webkit-font-smoothing: antialiased;
3
3
  background-color: $base-background-color;
4
- color: $base-font-color;
5
4
  font-family: $base-font-family;
6
- font-size: $base-font-size;
7
5
  line-height: $unitless-line-height;
8
6
  }
9
7
 
@@ -161,15 +161,13 @@ body#main{
161
161
  line-height: 30px;
162
162
  color:$font_error_color;
163
163
  }
164
- .form_inputs.acc_details{}
165
- .form_inputs.acc_info{
164
+ .form_inputs.acc_info, .form_inputs.acc_details{
166
165
 
167
166
  .left_column, .right_column{
168
167
  @include span-columns(5 of 10);
169
168
  }
170
169
 
171
170
  .right_column{
172
-
173
171
  .logo_preview{
174
172
  max-width: 375px;
175
173
 
@@ -249,7 +247,6 @@ body#main{
249
247
  input, .btn_back{
250
248
  @include btn(#fff, 120px, 40px, 1em, $light_blue, transparent, $light_blue);
251
249
  }
252
-
253
250
  }
254
251
  }
255
252
  }
@@ -1,3 +1,5 @@
1
1
  @import "toolbar";
2
2
  @import "table";
3
+
4
+ @import "form_v1";
3
5
  @import "captcha";
@@ -0,0 +1,42 @@
1
+ .business-hours{
2
+ @include span-columns(12);
3
+ }
4
+
5
+ .day{
6
+ @include span-columns(6 of 12);
7
+ @include omega;
8
+ margin: 10px 0;
9
+ }
10
+
11
+ .day-text{
12
+ @include span-columns(1 of 6);
13
+ font-weight: bold;
14
+ }
15
+
16
+ .day-hours{
17
+ @include span-columns(5 of 6);
18
+ }
19
+
20
+ .start-h, .start-m, .end-h, .end-m, .start-type, .end-type{
21
+ width: 35px;
22
+ margin: 0 5px;
23
+ height: 40px;
24
+ float: left;
25
+ color: inherit;
26
+ padding-left: 3px;
27
+ }
28
+
29
+ .divider{
30
+ display: block;
31
+ width: 10px;
32
+ text-align: center;
33
+ height: 40px;
34
+ line-height: 40px;
35
+ color: inherit;
36
+ float: left;
37
+ font-weight: bolder;
38
+ }
39
+
40
+ .start-type, .end-type{
41
+ width: 55px;
42
+ }
@@ -152,9 +152,9 @@ body {
152
152
 
153
153
  body#main {
154
154
  background: image-url('home-bg.jpg') no-repeat fixed center center / cover #383A3D;
155
- color: #333;
156
155
  position: relative;
157
156
  text-align: center;
157
+ color:white;
158
158
 
159
159
  div.logo {
160
160
  width: 430px;
@@ -165,7 +165,6 @@ body#main {
165
165
  span {
166
166
  display: block;
167
167
  text-transform: uppercase;
168
- color: #FFF;
169
168
 
170
169
  &.not-bold {
171
170
  font-size: 22px;
@@ -1,3 +1,3 @@
1
1
  module WaterfallBourbonNeatRails
2
- VERSION = "0.1.9.7".freeze
2
+ VERSION = "0.1.9.8".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: waterfall_bourbon_neat_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.9.7
4
+ version: 0.1.9.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Waterfall Software Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-09-01 00:00:00.000000000 Z
11
+ date: 2014-09-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -228,6 +228,7 @@ files:
228
228
  - app/assets/stylesheets/custom/_variables.scss
229
229
  - app/assets/stylesheets/custom/components/_captcha.scss
230
230
  - app/assets/stylesheets/custom/components/_config.scss
231
+ - app/assets/stylesheets/custom/components/_form_v1.scss
231
232
  - app/assets/stylesheets/custom/components/_table.scss
232
233
  - app/assets/stylesheets/custom/components/_toolbar.scss
233
234
  - app/assets/stylesheets/custom/rules.txt