waterfall_bourbon_neat_rails 1.1.5 → 1.2.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: c4ecba9031807d4ea4d1b9019ac6bc6af50f5544
4
- data.tar.gz: 1b9dd903e0eecbd6fcf10bde2c56bd0c496a7ead
3
+ metadata.gz: 49abf88ea9cce07a6c121e1d83b755070a027623
4
+ data.tar.gz: 8f2a272ce527c613eca65de76b52cde0919778bd
5
5
  SHA512:
6
- metadata.gz: faad752317f0a87fb7343f6df709030e64ac2b0fb83522c7fe5c6bc50bbbd96832d3595972c28e01e0f3528fcb93d1051a116440ca3c9ef0550e14467a383cb8
7
- data.tar.gz: ddab11727e4d031264ce9885067226ae4a42f676eeb97c535c36bd52c193b31e1c89a37346ecf0a6b28cc4804f4813bb74ec6170fb8bcc9e978fb4b75e1a7d72
6
+ metadata.gz: 59f5f4c8bd671a68a1c341ea6ee60d5e29399dda444d5c456c00acf938651f65b293297ca198d94912b419fe03e96a9c27769dfc628e6f4d555f1669b9d515df
7
+ data.tar.gz: 91aee45f4038b362bf87007986e4a9506fc4994130fbcb39584aed27e945def2c584b885597b51a3312c588cca47dee3273b58c11c7669e1ac4e22c89f4f3885
@@ -99,7 +99,7 @@
99
99
  }
100
100
  }
101
101
 
102
- @mixin button-positive-login($color: #fff, $hover-color: #eee){
102
+ @mixin button-positive-style2($color: #fff, $hover-color: #eee){
103
103
  text-transform: uppercase;
104
104
  width: auto;
105
105
  color: $color;
@@ -110,4 +110,33 @@
110
110
  &:hover{
111
111
  color: $hover-color;
112
112
  }
113
+ }
114
+
115
+ @mixin button-negative-style2($color: #fff, $hover-color: #eee) {
116
+ position: relative;
117
+ text-transform: uppercase;
118
+ width: auto;
119
+ color: $color;
120
+ font-weight: bold;
121
+ border: none;
122
+
123
+ &:hover{
124
+ color: $hover-color;
125
+ }
126
+
127
+ &:before{
128
+ content: "";
129
+ position: absolute;
130
+ width: 100%;
131
+ height: 100%;
132
+ top: -7px;
133
+ left: -100px;
134
+ z-index: 9;
135
+ background: url(/assets/login-more-than-014c2c6912a50421788390500c53ba65.png) 0 0 no-repeat;
136
+ -webkit-transform: rotate(-180deg);
137
+ -moz-transform: rotate(-180deg);
138
+ -ms-transform: rotate(-180deg);
139
+ -o-transform: rotate(-180deg);
140
+ transform: rotate(-180deg);
141
+ }
113
142
  }
@@ -23,22 +23,28 @@ body{
23
23
  }
24
24
  .content{
25
25
  .button{
26
- @include button;
27
- width: auto;
28
- }
26
+ @include button;
27
+ width: auto;
28
+ }
29
29
 
30
30
  .button.button-positive{
31
- @include button-positive;
31
+ @include button-positive;
32
32
  }
33
33
 
34
34
  .button.button-negative{
35
- @include button-negative(#444);
35
+ @include button-negative(#444);
36
36
  }
37
37
 
38
- .button.button-positive-login{
39
- @include button-positive-login;
38
+ .button.button-positive.type2{
39
+ @include button-positive-style2;
40
40
  }
41
41
 
42
+ .button.button-negative.type2{
43
+ @include button-negative-style2;
44
+ float: right;
45
+ text-decoration: none;
46
+ }
47
+
42
48
  z-index: 2;
43
49
  @include clearfix;
44
50
  .container{
@@ -74,179 +80,21 @@ body{
74
80
 
75
81
  //max 3rd level
76
82
 
77
- body#main{
78
- .notification{}
79
- .header{
80
- .logo{
81
- @include outer-container;
82
- padding: 80px 0;
83
- img{
84
- width: 400px;
85
- }
86
- }
87
- }
88
- .content{
89
- // .password-reset{
90
- // form{
91
- // display: block;
92
- // @include clearfix;
93
- // .form_actions{
94
- // padding: 10px;
95
- // @include clearfix;
96
- // input, .btn_back{
97
- // @include btn(#fff, 120px, 40px, 1.3em, transparent,transparent,$sky_blue);
98
- // border:none!important;
99
- // float: left;
100
- // }
101
- // .btn_back{
102
- // float: right;
103
- // position: relative;
104
-
105
- // span:hover{
106
- // color:$sky_blue;
107
- // }
108
-
109
- // .arrow{
110
- // @include rotate(45deg);
111
- // position: absolute;
112
- // width: 15px;
113
- // height: 15px;
114
- // left: 0;
115
- // top: 12px;
116
- // border-left: solid 1px white;
117
- // border-bottom: solid 1px white;
118
- // }
119
- // }
120
- // }
121
- // }
122
-
123
- // .registration_container{
124
- // @include outer-container;
125
- // @include pad(20px 0);
126
-
127
- // form{
128
- // @include fill-parent;
129
-
130
- // .field_container{
131
- // @include span-columns(14);
132
- // @include shift(1);
133
- // background-color: transparent;
134
-
135
- // legend{
136
- // @include font-attr(1.4em, $medium_blue, bold);
137
- // }
138
-
139
- // fieldset{
140
- // @include fill-parent;
141
- // @include pad(10px 0);
142
- // margin-top: 10px;
143
-
144
- // legend{
145
- // @include font-attr(1.2em, $medium_blue, bold);
146
- // }
147
-
148
- // .form_inputs{
149
- // @include span-columns(12 of 14);
150
- // @include shift(1);
151
- // }
152
- // }
153
- // }
154
-
155
- // .form_inputs.acc_info, .form_inputs.acc_details{
156
-
157
- // .left_column, .right_column{
158
- // @include span-columns(6 of 12);
159
- // }
160
-
161
- // .left_column{
162
- // .user_details_phone_number{
163
- // @include span-columns(4 of 6);
164
- // }
165
- // .user_details_phone_extension{
166
- // @include span-columns(2 of 6);
167
- // @include omega;
168
- // }
169
- // }
170
-
171
- // .right_column{
172
- // .logo_preview{
173
- // .img_container{
174
- // @include border(solid, 1px, $light_blue);
175
- // @include pad(5px);
176
- // height: 200px;
177
- // overflow: hidden;
178
- // box-shadow: 0 0 1px 1px;
179
- // }
180
-
181
- // .headshot{
182
- // max-width:200px;
183
- // }
184
- // }
185
- // .partner_state{
186
- // @include span-columns(2 of 6);
187
-
188
- // select{
189
- // height: 40px;
190
- // width: 100%;
191
- // margin-bottom: 0px;
192
- // }
193
-
194
- // }
195
- // .partner_zip_code{
196
- // @include span-columns(2 of 5);
197
- // @include omega;
198
- // padding-left: 10px;
199
- // label{
200
- // text-align: center;
201
- // }
202
- // input{
203
- // @include center;
204
- // width: 60px;
205
- // }
206
-
207
- // }
208
-
209
- // #user_details_state{
210
- // width: 60px;
211
- // height: 38px;
212
- // margin-bottom: 0;
213
- // }
214
-
215
- // .upload_actions{
216
- // position: relative;
217
- // .upload_btn{
218
- // @include btn(#fff, 120px, 40px, 1em, $light_blue, #f7f7f7, $light_blue);
219
- // margin: 9px 0;
220
- // }
221
- // input{
222
- // display: none;
223
- // }
224
- // }
225
- // }
226
- // }
227
- // .form_actions{
228
- // @include span-columns(14);
229
- // @include shift(1);
230
- // @include clearfix;
231
-
232
- // margin-top:20px;
233
- // color: $light_blue;
234
-
235
- // input{
236
- // float: left;
237
- // }
238
- // .btn_back{
239
- // float: right;
240
- // }
241
- // input, .btn_back{
242
- // @include btn(#fff, 120px, 40px, 1em, $light_blue, transparent, $light_blue);
243
- // }
244
- // }
245
- // }
246
- // }
247
- }
83
+ body#main {
84
+ .notification {
85
+ }
86
+ .header {
87
+ .logo {
88
+ @include outer-container;
89
+ padding: 80px 0;
90
+ img {
91
+ width: 400px;
92
+ }
93
+ }
94
+ }
248
95
  }
249
96
 
97
+
250
98
  /*landing page css*/
251
99
 
252
100
  body#landing-page{
@@ -350,6 +198,7 @@ body#landing-page{
350
198
  }
351
199
  }
352
200
  .footer{
201
+ position: absolute;
353
202
  footer{
354
203
  background-color: $medium_blue;
355
204
  }
@@ -1,2 +1,4 @@
1
1
  @import "login";
2
+ @import "forgot_pass";
3
+ @import "pass_reset";
2
4
  @import "registration_and_edit";
@@ -0,0 +1,38 @@
1
+ .forgotPass-wrapper{
2
+ @include row;
3
+ @include pad(10px 0 0 0);
4
+
5
+ margin-top: 50px;
6
+ background: image-url('home-tile-bg.gif') repeat scroll left top #0057A7;
7
+ box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.46);
8
+ background-repeat: round;
9
+
10
+ .title{
11
+ @include span-columns(4);
12
+ @include shift(5);
13
+ @include pad(10px);
14
+ color: #fff;
15
+ text-transform: uppercase;
16
+ }
17
+
18
+ #new_user{
19
+ @include outer-container;
20
+ }
21
+
22
+ .forgotPass-inputs{
23
+ @include span-columns(8);
24
+ @include shift(4);
25
+ @include pad(20px);
26
+
27
+ background-color: $light_grey_op;
28
+ box-shadow: 0 0 25px 1px #00154B;
29
+ color: $medium_grey;
30
+ border-radius: 5px;
31
+ }
32
+
33
+ .forgotPass-actions{
34
+ @include span-columns(8);
35
+ @include shift(4);
36
+ @include pad(10px 0);
37
+ }
38
+ }
@@ -28,8 +28,18 @@
28
28
  @include pad(10px 0);
29
29
  }
30
30
 
31
- .forgot-password{
32
- @include row;
31
+ .error-wrapper{
32
+ @include span-columns(5 of 8);
33
+ @include omega;
34
+ color: $font_error_color;
35
+ }
36
+
37
+ .error{
38
+ height: 30px;
39
+ }
40
+
41
+ .forgotPass-link{
42
+ @include span-columns(3 of 8);
33
43
  text-transform: uppercase;
34
44
  }
35
45
  }
@@ -0,0 +1,41 @@
1
+ .passReset-wrapper{
2
+ @include row;
3
+ @include pad(10px 0 0 0);
4
+
5
+ margin-top: 50px;
6
+ background: image-url('home-tile-bg.gif') repeat scroll left top #0057A7;
7
+ box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.46);
8
+ background-repeat: round;
9
+
10
+ .title, .info{
11
+ @include span-columns(4);
12
+ @include shift(5);
13
+ @include pad(5px 10px);
14
+ color: #fff;
15
+ }
16
+
17
+ .title, .label{
18
+ text-transform: uppercase;
19
+ }
20
+
21
+ #reset_password_form{
22
+ @include outer-container;
23
+ }
24
+
25
+ .passReset-inputs{
26
+ @include span-columns(8);
27
+ @include shift(4);
28
+ @include pad(20px);
29
+
30
+ background-color: $light_grey_op;
31
+ box-shadow: 0 0 25px 1px #00154B;
32
+ color: $medium_grey;
33
+ border-radius: 5px;
34
+ }
35
+
36
+ .passReset-actions{
37
+ @include span-columns(8);
38
+ @include shift(4);
39
+ @include pad(10px 0);
40
+ }
41
+ }
@@ -10,7 +10,7 @@ body#main {
10
10
  }
11
11
  }
12
12
 
13
- span {
13
+ .welcome-shared span {
14
14
  display: block;
15
15
  text-transform: uppercase;
16
16
 
@@ -1,3 +1,3 @@
1
1
  module WaterfallBourbonNeatRails
2
- VERSION = "1.1.5".freeze
2
+ VERSION = "1.2.0".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: 1.1.5
4
+ version: 1.2.0
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-24 00:00:00.000000000 Z
11
+ date: 2014-09-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -253,7 +253,9 @@ files:
253
253
  - app/assets/stylesheets/custom/components/_toolbar.scss
254
254
  - app/assets/stylesheets/custom/components/_view_profile.scss
255
255
  - app/assets/stylesheets/custom/components/forms/_config.scss
256
+ - app/assets/stylesheets/custom/components/forms/_forgot_pass.scss
256
257
  - app/assets/stylesheets/custom/components/forms/_login.scss
258
+ - app/assets/stylesheets/custom/components/forms/_pass_reset.scss
257
259
  - app/assets/stylesheets/custom/components/forms/_registration_and_edit.scss
258
260
  - app/assets/stylesheets/custom/components/related/_config.scss
259
261
  - app/assets/stylesheets/custom/components/related/_landing_page.scss