waterfall_bourbon_neat_rails 1.9.9.2 → 1.9.9.3
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/libs/chosen/chosen.jquery.css +1 -18
- data/app/assets/stylesheets/custom/_config.scss +2 -1
- data/app/assets/stylesheets/custom/_custom_chosen.scss +34 -0
- data/app/assets/stylesheets/custom/components/_config.scss +1 -0
- data/app/assets/stylesheets/custom/components/_modal_filters.scss +11 -0
- data/app/assets/stylesheets/custom/components/forms/_registration_and_edit.scss +183 -191
- data/lib/waterfall_bourbon_neat_rails/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cd2cee17fbd1ee6eb8b770f4aa4aa5879f0d4e02
|
4
|
+
data.tar.gz: 645f9b27661fa60d441f2439f8769e30692c7ed4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 51199015376dfa5f5bb237d6b4e82ac32e755c3b83733e82870f8c3449c7dd03dc7d6151042fb2f205d384b0d5dd2952f6ba8d74c9d0e22701c4d9691c483404
|
7
|
+
data.tar.gz: 73a3eb7b2bb3d8f2f905e1437b263318512c3b05989263138a68588dd4121c9ede741b75074b2baa057bd557aced2b8eeb452a448d1aca48a5e5c37dd819939e
|
@@ -9,9 +9,6 @@
|
|
9
9
|
-webkit-user-select: none;
|
10
10
|
-moz-user-select: none;
|
11
11
|
user-select: none;
|
12
|
-
|
13
|
-
//custom
|
14
|
-
margin-bottom: 30px;
|
15
12
|
}
|
16
13
|
.chosen-container .chosen-drop {
|
17
14
|
position: absolute;
|
@@ -202,7 +199,7 @@
|
|
202
199
|
margin: 0;
|
203
200
|
padding: 0;
|
204
201
|
width: 100%;
|
205
|
-
|
202
|
+
height: auto !important;
|
206
203
|
height: 1%;
|
207
204
|
border: 1px solid #aaa;
|
208
205
|
background-color: #fff;
|
@@ -212,10 +209,6 @@
|
|
212
209
|
background-image: -o-linear-gradient(#eeeeee 1%, #ffffff 15%);
|
213
210
|
background-image: linear-gradient(#eeeeee 1%, #ffffff 15%);
|
214
211
|
cursor: text;
|
215
|
-
|
216
|
-
//custom
|
217
|
-
height: 87px;
|
218
|
-
overflow-y:scroll;
|
219
212
|
}
|
220
213
|
.chosen-container-multi .chosen-choices li {
|
221
214
|
float: left;
|
@@ -242,9 +235,6 @@
|
|
242
235
|
}
|
243
236
|
.chosen-container-multi .chosen-choices li.search-field .default {
|
244
237
|
color: #999;
|
245
|
-
|
246
|
-
//custom
|
247
|
-
min-height: 40px;
|
248
238
|
}
|
249
239
|
.chosen-container-multi .chosen-choices li.search-choice {
|
250
240
|
position: relative;
|
@@ -263,10 +253,6 @@
|
|
263
253
|
color: #333;
|
264
254
|
line-height: 13px;
|
265
255
|
cursor: default;
|
266
|
-
|
267
|
-
//custom
|
268
|
-
height: 35px;
|
269
|
-
line-height: 35px;
|
270
256
|
}
|
271
257
|
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
|
272
258
|
position: absolute;
|
@@ -277,9 +263,6 @@
|
|
277
263
|
height: 12px;
|
278
264
|
background: url('chosen-sprite.png') -42px 1px no-repeat;
|
279
265
|
font-size: 1px;
|
280
|
-
|
281
|
-
//custom
|
282
|
-
top:7px;
|
283
266
|
}
|
284
267
|
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
|
285
268
|
background-position: -42px -10px;
|
@@ -0,0 +1,34 @@
|
|
1
|
+
//chosen style for the registration form
|
2
|
+
|
3
|
+
.registration-wrapper{
|
4
|
+
.chosen-container{
|
5
|
+
|
6
|
+
width: 100%;
|
7
|
+
|
8
|
+
.chosen-choices{
|
9
|
+
height: 50px!important;
|
10
|
+
overflow-y: scroll!important;
|
11
|
+
}
|
12
|
+
|
13
|
+
.chosen-choices li.search-field .default{
|
14
|
+
min-height: 40px;
|
15
|
+
}
|
16
|
+
|
17
|
+
.chosen-choices li.search-choice{
|
18
|
+
height: 35px;
|
19
|
+
line-height: 35px;
|
20
|
+
}
|
21
|
+
|
22
|
+
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close{
|
23
|
+
top:7px;
|
24
|
+
}
|
25
|
+
}
|
26
|
+
}
|
27
|
+
|
28
|
+
//chosen style for the filters modal
|
29
|
+
|
30
|
+
.filters-wrapper{
|
31
|
+
.chosen-container{
|
32
|
+
width: 100%!important;
|
33
|
+
}
|
34
|
+
}
|
@@ -1,64 +1,64 @@
|
|
1
1
|
.registration-wrapper, .update-wrapper{
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
2
|
+
@include span-columns(12);
|
3
|
+
@include shift(2);
|
4
|
+
@include pad(20px 0);
|
5
|
+
|
6
|
+
background-color: $container_color_3;
|
7
|
+
color: $light_blue;
|
8
|
+
box-shadow: 0 0 12px 1px #1F1F1F;
|
9
|
+
|
10
|
+
form{
|
11
|
+
@include row;
|
12
|
+
}
|
13
|
+
|
14
|
+
.fieldset-main{
|
15
|
+
@include span-columns(14);
|
16
|
+
@include shift(1);
|
17
|
+
|
18
|
+
background-color: transparent;
|
19
|
+
}
|
20
|
+
|
21
|
+
.fieldset-main-legend{
|
22
|
+
@include font-attr(20px, $medium_blue, bold);
|
23
|
+
}
|
24
|
+
|
25
|
+
.fieldset-child{
|
26
|
+
@include fill-parent;
|
27
|
+
@include pad(10px 0);
|
28
|
+
|
29
|
+
margin-top: 15px;
|
30
|
+
border: solid 1px #B6B6B6;
|
31
|
+
}
|
32
|
+
|
33
|
+
.fieldset-child-legend{
|
34
|
+
@include font-attr(17px, $medium_blue, bold);
|
35
|
+
}
|
36
|
+
|
37
|
+
.account-details, .account-info, .account-additional, .account-business-hours {
|
38
|
+
@include span-columns(12 of 14);
|
39
|
+
@include shift(1);
|
40
|
+
}
|
41
|
+
|
42
|
+
//account details section style
|
43
|
+
.account-details{
|
44
|
+
//
|
45
|
+
}
|
46
|
+
|
47
|
+
//account info section style
|
48
|
+
.account-info{
|
49
|
+
|
50
|
+
//general
|
51
|
+
.left-column, .right-column{
|
52
|
+
@include span-columns(6 of 12);
|
53
|
+
}
|
54
|
+
|
55
|
+
.user_details_phone_number{
|
56
|
+
@include span-columns(4 of 6);
|
57
|
+
}
|
58
|
+
.user_details_phone_extension{
|
59
|
+
@include span-columns(2 of 6);
|
60
|
+
@include omega;
|
61
|
+
}
|
62
62
|
.user_details_state{
|
63
63
|
@include span-columns(2 of 6);
|
64
64
|
|
@@ -75,95 +75,87 @@
|
|
75
75
|
@include span-columns(4 of 6);
|
76
76
|
}
|
77
77
|
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
78
|
+
.logo_preview{
|
79
|
+
.img_container{
|
80
|
+
@include border(solid, 1px, $light_blue);
|
81
|
+
@include pad(5px);
|
82
|
+
height: 106px;
|
83
83
|
max-width: 300px;
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
84
|
+
overflow: hidden;
|
85
|
+
box-shadow: 0 0 1px 1px;
|
86
|
+
|
87
|
+
img{
|
88
|
+
max-width: 100%;
|
89
|
+
max-height: 100%;
|
90
|
+
}
|
91
|
+
}
|
92
|
+
|
93
|
+
.headshot{
|
94
|
+
max-width:200px;
|
95
|
+
}
|
96
|
+
}
|
97
|
+
|
98
|
+
.partner_state{
|
99
|
+
@include span-columns(2 of 6);
|
100
|
+
|
101
|
+
select{
|
102
|
+
height: 40px;
|
103
|
+
width: 100%;
|
104
|
+
margin-bottom: 0px;
|
105
|
+
}
|
106
|
+
}
|
107
|
+
|
108
|
+
.upload_actions{
|
109
|
+
position: relative;
|
110
|
+
|
111
|
+
.upload_btn{
|
112
|
+
@include btn(#fff, 120px, 40px, 1em, $light_blue, #f7f7f7, $light_blue);
|
113
|
+
margin: 9px 0;
|
114
|
+
}
|
115
|
+
input{
|
116
|
+
display: none;
|
117
|
+
}
|
118
|
+
}
|
119
|
+
}
|
120
|
+
|
121
|
+
//account additional info style
|
122
|
+
.account-additional{
|
123
|
+
//general
|
124
|
+
.left-column, .right-column{
|
125
|
+
@include span-columns(6 of 12);
|
126
|
+
}
|
127
|
+
|
128
|
+
.logo_preview{
|
129
|
+
.img_container{
|
130
|
+
@include border(solid, 1px, $light_blue);
|
131
|
+
@include pad(5px);
|
132
|
+
height: 200px;
|
133
|
+
overflow: hidden;
|
134
|
+
box-shadow: 0 0 1px 1px;
|
135
|
+
|
136
|
+
img{
|
137
|
+
max-width: 100%;
|
138
|
+
max-height: 100%;
|
139
|
+
}
|
140
|
+
}
|
141
|
+
|
142
|
+
.headshot{
|
143
143
|
height: 183px;
|
144
144
|
width:165px;
|
145
|
-
|
146
|
-
|
145
|
+
}
|
146
|
+
}
|
147
147
|
|
148
|
-
|
149
|
-
|
148
|
+
.upload_actions{
|
149
|
+
position: relative;
|
150
150
|
|
151
|
-
|
152
|
-
|
151
|
+
.upload_btn{
|
152
|
+
@include btn(#fff, 120px, 40px, 1em, $light_blue, #f7f7f7, $light_blue);
|
153
153
|
margin-top: 10px;
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
//custom chosen
|
160
|
-
.chosen-choices{
|
161
|
-
height: 50px;
|
162
|
-
}
|
163
|
-
|
164
|
-
.chosen-container{
|
165
|
-
width: 100%;
|
166
|
-
}
|
154
|
+
}
|
155
|
+
input{
|
156
|
+
display: none;
|
157
|
+
}
|
158
|
+
}
|
167
159
|
|
168
160
|
.user_details_license_states{
|
169
161
|
margin-top: 15px;
|
@@ -183,58 +175,58 @@
|
|
183
175
|
.user_details_google_plus{
|
184
176
|
margin-top: 15px;
|
185
177
|
}
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
178
|
+
}
|
179
|
+
|
180
|
+
//account business hours section style
|
181
|
+
.account-business-hours{
|
182
|
+
.days{
|
183
|
+
@include span-columns(12);
|
184
|
+
@include shift(1);
|
185
|
+
}
|
186
|
+
|
187
|
+
.day{
|
188
|
+
@include span-columns(6 of 12);
|
189
|
+
@include omega;
|
190
|
+
margin: 10px 0;
|
191
|
+
}
|
192
|
+
|
193
|
+
.day-text{
|
194
|
+
@include span-columns(1 of 6);
|
195
|
+
font-weight: bold;
|
196
|
+
}
|
197
|
+
|
198
|
+
.day-hours{
|
199
|
+
@include span-columns(5 of 6);
|
200
|
+
}
|
201
|
+
|
202
|
+
.open-time, .close-time{
|
203
|
+
@include span-columns(2 of 6);
|
204
|
+
margin: 0 5px;
|
205
|
+
height: 40px;
|
206
|
+
float: left;
|
207
|
+
color: inherit;
|
208
|
+
text-align:center;
|
209
|
+
}
|
210
|
+
|
211
|
+
.divider{
|
212
|
+
display: block;
|
213
|
+
width: 20px;
|
214
|
+
text-align: center;
|
215
|
+
height: 40px;
|
216
|
+
line-height: 40px;
|
217
|
+
color: inherit;
|
218
|
+
float: left;
|
219
|
+
font-weight: bolder;
|
220
|
+
}
|
221
|
+
}
|
222
|
+
|
223
|
+
.form-actions{
|
224
|
+
@include span-columns(14);
|
233
225
|
@include shift(1);
|
234
226
|
@include pad(20px 0);
|
235
227
|
|
236
228
|
.button-negative{
|
237
229
|
margin-left:20px;
|
238
230
|
}
|
239
|
-
|
231
|
+
}
|
240
232
|
}
|
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.9.9.
|
4
|
+
version: 1.9.9.3
|
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-11-
|
11
|
+
date: 2014-11-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -269,6 +269,7 @@ files:
|
|
269
269
|
- app/assets/stylesheets/base/mixins/_flash.scss
|
270
270
|
- app/assets/stylesheets/custom/_components.scss
|
271
271
|
- app/assets/stylesheets/custom/_config.scss
|
272
|
+
- app/assets/stylesheets/custom/_custom_chosen.scss
|
272
273
|
- app/assets/stylesheets/custom/_custom_datepicker.scss
|
273
274
|
- app/assets/stylesheets/custom/_functions.scss
|
274
275
|
- app/assets/stylesheets/custom/_general.scss
|
@@ -279,6 +280,7 @@ files:
|
|
279
280
|
- app/assets/stylesheets/custom/components/_ajax_spinner.scss
|
280
281
|
- app/assets/stylesheets/custom/components/_captcha.scss
|
281
282
|
- app/assets/stylesheets/custom/components/_config.scss
|
283
|
+
- app/assets/stylesheets/custom/components/_modal_filters.scss
|
282
284
|
- app/assets/stylesheets/custom/components/_modal_lead.scss
|
283
285
|
- app/assets/stylesheets/custom/components/_modal_leadDetails.scss
|
284
286
|
- app/assets/stylesheets/custom/components/_modal_new.scss
|