waterfall_bourbon_neat_rails 0.1.8 → 0.1.9
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 +4 -4
- data/app/assets/stylesheets/base/_forms.scss +4 -0
- data/app/assets/stylesheets/custom/_components.scss +25 -11
- data/app/assets/stylesheets/custom/_mixins.scss +2 -3
- data/app/assets/stylesheets/custom/_pages.scss +15 -21
- data/app/assets/stylesheets/custom/_style.scss +1 -1
- data/app/assets/stylesheets/waterfall_bourbon_neat_rails/application.scss +0 -1
- data/lib/waterfall_bourbon_neat_rails/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6ec73c702709827abf18b7f5e574ca49d9ba4a6a
|
4
|
+
data.tar.gz: 1796a844911f79f92dd021c017e60c592833e184
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1dfe71ce955c97491cd7c71bcc38950b96f5d125abf93a352c9998f4708e748ae3401a5063de4f299c8d560f990bb4a0fddfe3c3d13a2c225f7a4699916c7690
|
7
|
+
data.tar.gz: d3015f39b658ff0cf731eb4df123afaeb2429b1a6c18c4987cf91b425d161379bd3c5fcdcfddd0e35fe358f4220eb81322e84a04982d354262364fa43c9d2d5c
|
@@ -2,14 +2,6 @@
|
|
2
2
|
|
3
3
|
/*general classes*/
|
4
4
|
|
5
|
-
.reset-margin{
|
6
|
-
margin: 0;
|
7
|
-
}
|
8
|
-
|
9
|
-
.padding10{
|
10
|
-
padding: 10px;
|
11
|
-
}
|
12
|
-
|
13
5
|
form input[type="text"], form input[type="email"], form input[type="password"], form input[type="tel"]{
|
14
6
|
padding: 0 0 0 10px!important;
|
15
7
|
height: 40px;
|
@@ -38,7 +30,7 @@ input.error{
|
|
38
30
|
}
|
39
31
|
|
40
32
|
.form-inputs input{
|
41
|
-
|
33
|
+
margin: 0;
|
42
34
|
}
|
43
35
|
|
44
36
|
#email-error, #password-error, div.error, #current_password-error, #new_password-error, #new_password_confirmation-error{
|
@@ -99,6 +91,8 @@ input.error{
|
|
99
91
|
width: 60px;
|
100
92
|
margin-top: 10px;
|
101
93
|
margin-left: 30px;
|
94
|
+
height: 35px;
|
95
|
+
padding-left: 5px;
|
102
96
|
}
|
103
97
|
|
104
98
|
.previous, .next{
|
@@ -227,7 +221,7 @@ input.error{
|
|
227
221
|
right:0;
|
228
222
|
z-index: 9999;
|
229
223
|
display: none;
|
230
|
-
background-color: rgba(
|
224
|
+
background-color: rgba(134, 134, 134, 0.66);;
|
231
225
|
|
232
226
|
.ajax-spinner{
|
233
227
|
width: 30px;
|
@@ -243,7 +237,9 @@ input.error{
|
|
243
237
|
-o-animation: spin 1s linear infinite;
|
244
238
|
animation: spin 1s linear infinite;
|
245
239
|
}
|
246
|
-
|
240
|
+
}
|
241
|
+
|
242
|
+
@-webkit-keyframes spin
|
247
243
|
{
|
248
244
|
from { -webkit-transform: rotate(0deg); opacity: 0.4; }
|
249
245
|
50% { -webkit-transform: rotate(180deg); opacity: 1; }
|
@@ -277,4 +273,22 @@ input.error{
|
|
277
273
|
50% { transform: rotate(180deg); opacity: 1; }
|
278
274
|
to { transform: rotate(360deg); opacity: 0.2; }
|
279
275
|
}
|
276
|
+
|
277
|
+
|
278
|
+
//url component(generate link for register)
|
279
|
+
|
280
|
+
.url{
|
281
|
+
@include center;
|
282
|
+
p{
|
283
|
+
padding: 5px 0;
|
284
|
+
}
|
285
|
+
#target{
|
286
|
+
height: 40px;
|
287
|
+
width: 110px;
|
288
|
+
padding-left: 5px;
|
289
|
+
}
|
290
|
+
.url__item{
|
291
|
+
margin-top: 10px;
|
292
|
+
display: none;
|
293
|
+
}
|
280
294
|
}
|
@@ -43,7 +43,7 @@
|
|
43
43
|
margin: 0 auto;
|
44
44
|
}
|
45
45
|
|
46
|
-
@mixin
|
46
|
+
@mixin btn($color, $width, $height, $line-height, $font-size, $hover-bck, $hover-color) {
|
47
47
|
@include border-radius();
|
48
48
|
color: $color;
|
49
49
|
width: $width;
|
@@ -55,10 +55,9 @@
|
|
55
55
|
background-color: transparent;
|
56
56
|
border: solid 2px $color;
|
57
57
|
font-size: $font-size;
|
58
|
-
font-weight: bold;
|
59
58
|
|
60
59
|
&:hover{
|
61
|
-
background-color: $
|
60
|
+
background-color: $hover-bck;
|
62
61
|
color: $hover-color;
|
63
62
|
}
|
64
63
|
}
|
@@ -13,7 +13,7 @@ body{
|
|
13
13
|
.notification{
|
14
14
|
z-index: 4;
|
15
15
|
.flash-error, .flash-notice{
|
16
|
-
|
16
|
+
margin: 0;
|
17
17
|
}
|
18
18
|
}
|
19
19
|
.header{
|
@@ -60,14 +60,14 @@ body#main{
|
|
60
60
|
.login{
|
61
61
|
margin-top:100px;
|
62
62
|
background-repeat: round;
|
63
|
-
|
63
|
+
padding: 10px;
|
64
64
|
|
65
65
|
form{
|
66
66
|
width: 500px;
|
67
67
|
margin: 10px auto;
|
68
68
|
|
69
69
|
.form-inputs{
|
70
|
-
|
70
|
+
padding: 10px;
|
71
71
|
background-color: $light_grey_op;
|
72
72
|
position: relative;
|
73
73
|
box-shadow: 0 0 25px 1px #00154B;
|
@@ -87,7 +87,7 @@ body#main{
|
|
87
87
|
}
|
88
88
|
|
89
89
|
.form-actions{
|
90
|
-
|
90
|
+
padding: 10px;
|
91
91
|
}
|
92
92
|
}
|
93
93
|
}
|
@@ -96,23 +96,18 @@ body#main{
|
|
96
96
|
display: block;
|
97
97
|
@include clearfix;
|
98
98
|
.form_actions{
|
99
|
-
|
99
|
+
padding: 10px;
|
100
100
|
@include clearfix;
|
101
101
|
input, .btn_back{
|
102
|
-
|
103
|
-
|
104
|
-
height: 40px;
|
105
|
-
line-height: 40px;
|
102
|
+
@include btn(#fff, 120px, 40px, 40px, 1.3em, transparent,white);
|
103
|
+
border:none;
|
106
104
|
}
|
107
105
|
input{
|
108
106
|
float: left;
|
109
107
|
}
|
110
108
|
.btn_back{
|
111
|
-
@include back-btn($light_blue, 100px, 40px, 40px, 1em, white);
|
112
109
|
float: right;
|
113
110
|
position: relative;
|
114
|
-
@include font-attr(1.3em, #fff, 400);
|
115
|
-
border:none;
|
116
111
|
|
117
112
|
span:hover{
|
118
113
|
color:$sky_blue;
|
@@ -150,6 +145,7 @@ body#main{
|
|
150
145
|
@include font-attr(1.4em, $medium_blue, bold);
|
151
146
|
}
|
152
147
|
fieldset{
|
148
|
+
padding: 10px 30px;
|
153
149
|
legend{
|
154
150
|
@include font-attr(1.2em, $medium_blue, bold);
|
155
151
|
}
|
@@ -215,7 +211,7 @@ body#main{
|
|
215
211
|
}
|
216
212
|
|
217
213
|
.upload_actions{
|
218
|
-
margin-top:
|
214
|
+
margin-top:19px;
|
219
215
|
input{
|
220
216
|
height: 40px;
|
221
217
|
padding: 0;
|
@@ -227,8 +223,9 @@ body#main{
|
|
227
223
|
.form_actions{
|
228
224
|
@include span-columns(10);
|
229
225
|
float: none;
|
226
|
+
margin-right: auto !important;
|
230
227
|
@include center;
|
231
|
-
|
228
|
+
padding:10px;
|
232
229
|
@include clearfix;
|
233
230
|
color: $light_blue;
|
234
231
|
|
@@ -236,13 +233,10 @@ body#main{
|
|
236
233
|
float: left;
|
237
234
|
}
|
238
235
|
.btn_back{
|
239
|
-
@include back-btn($light_blue, 100px, 40px, 40px, 1em, white);
|
240
236
|
float: right;
|
241
|
-
}
|
242
|
-
|
237
|
+
}
|
243
238
|
input, .btn_back{
|
244
|
-
@include
|
245
|
-
width: 90px;
|
239
|
+
@include btn($light_blue, 120px, 40px, 40px, 1em, $light_blue, white);
|
246
240
|
}
|
247
241
|
|
248
242
|
}
|
@@ -298,12 +292,12 @@ body#landing-page{
|
|
298
292
|
margin: 10px auto;
|
299
293
|
}
|
300
294
|
.form_actions{;
|
301
|
-
|
295
|
+
padding: 10px 0;
|
302
296
|
@include clearfix;
|
303
297
|
color: $light_blue;
|
304
298
|
|
305
299
|
input, .btn_back {
|
306
|
-
@include
|
300
|
+
@include btn($light_blue, 120px, 40px, 40px, 1em, $light_blue, white);
|
307
301
|
}
|
308
302
|
input{
|
309
303
|
float: left;
|
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.
|
4
|
+
version: 0.1.9
|
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-08-
|
11
|
+
date: 2014-08-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|