waterfall_bourbon_neat_rails 2.0.1.7 → 2.0.1.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/custom/_components.scss +1 -1
- data/app/assets/stylesheets/custom/_pages.scss +1 -1
- data/app/assets/stylesheets/custom/_variables.scss +7 -0
- data/app/assets/stylesheets/custom/components/_config.scss +1 -1
- data/app/assets/stylesheets/custom/components/_modal_filters.scss +7 -0
- data/app/assets/stylesheets/custom/components/_modal_lead.scss +4 -1
- data/app/assets/stylesheets/custom/components/_modal_leadDetails.scss +4 -0
- data/app/assets/stylesheets/custom/components/_modal_leadReassign.scss +16 -0
- data/app/assets/stylesheets/custom/components/_modal_noteform.scss +45 -5
- data/app/assets/stylesheets/custom/components/_modal_user.scss +3 -0
- data/app/assets/stylesheets/custom/components/_modals.scss +3 -7
- data/lib/waterfall_bourbon_neat_rails/version.rb +1 -1
- metadata +3 -3
- data/app/assets/stylesheets/custom/components/_modal_new.scss +0 -15
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 716e26bea83d1ae2d38c6e213c579041bab659fc
|
4
|
+
data.tar.gz: 80b9baafce4c15075c1953ea7a7335b5e34b4628
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9e7038bf07ad9aae007dfa74b409e84839dc9109040f3e57c91c3fb5b62f4743ce7cf568908862e887d2645cce96dd5a986cc8e9c1e9b7434f92b46ff2102bf7
|
7
|
+
data.tar.gz: 9da01703b81de3ebbd4378df9905ed048c29b3ed1e4b4f6cf838fca95fe1889150cebd695d1087bd51b640ff47f98e1f9fa75f60f877527f70222c8e482b90d3
|
@@ -46,3 +46,10 @@ $default_border_radius: 5px;
|
|
46
46
|
$default_font_size: 1em;
|
47
47
|
$default_font_color: #000;
|
48
48
|
$default_font_weight: normal;
|
49
|
+
|
50
|
+
//modals
|
51
|
+
|
52
|
+
$modal_color : #ddd;
|
53
|
+
$modal_section_color : #f7f7f7;
|
54
|
+
$modal_section_font_size : 20px;
|
55
|
+
$modal_title_font_size : 32px;
|
@@ -1,6 +1,46 @@
|
|
1
|
-
.
|
2
|
-
|
3
|
-
@include
|
4
|
-
|
1
|
+
.notes-body{
|
2
|
+
.notes-section{
|
3
|
+
@include pad(10px);
|
4
|
+
|
5
|
+
background: $modal_section_color;
|
6
|
+
border:solid 1px orange;
|
5
7
|
}
|
6
|
-
|
8
|
+
|
9
|
+
.notes-stage{
|
10
|
+
display: table;
|
11
|
+
margin-top: 10px;
|
12
|
+
}
|
13
|
+
|
14
|
+
.modal-actions{
|
15
|
+
display: table;
|
16
|
+
margin-top:20px;
|
17
|
+
}
|
18
|
+
|
19
|
+
.leadNotes-wrapper{
|
20
|
+
margin-top: 10px;
|
21
|
+
display: table;
|
22
|
+
|
23
|
+
li{
|
24
|
+
display: table;
|
25
|
+
width: 600px;
|
26
|
+
margin: 10px 0;
|
27
|
+
}
|
28
|
+
|
29
|
+
.leadNote-datepicker{
|
30
|
+
width: 100px;
|
31
|
+
float: left;
|
32
|
+
}
|
33
|
+
|
34
|
+
.leadNote-content{
|
35
|
+
width:420px;
|
36
|
+
margin-left:10px;
|
37
|
+
float: left;
|
38
|
+
}
|
39
|
+
|
40
|
+
.leadNote-actions{
|
41
|
+
float: left;
|
42
|
+
width: 60px;
|
43
|
+
margin-left: 10px;
|
44
|
+
}
|
45
|
+
}
|
46
|
+
}
|
@@ -15,6 +15,8 @@
|
|
15
15
|
.fieldset-main{
|
16
16
|
@include span-columns(16);
|
17
17
|
@include pad(10px 0 20px);
|
18
|
+
background: none;
|
19
|
+
font-size: inherit;
|
18
20
|
|
19
21
|
input{
|
20
22
|
height: 30px;
|
@@ -35,6 +37,7 @@
|
|
35
37
|
|
36
38
|
margin-top: 10px;
|
37
39
|
border: solid 1px #D09700;
|
40
|
+
background: $modal_section_color;
|
38
41
|
}
|
39
42
|
|
40
43
|
.fieldset-child-legend{
|
@@ -4,27 +4,23 @@
|
|
4
4
|
@include pad(20px);
|
5
5
|
top: 20px !important;
|
6
6
|
|
7
|
-
background:
|
7
|
+
background: $modal_color;
|
8
8
|
border-radius: 3px;
|
9
9
|
border: solid 1px black;
|
10
10
|
box-shadow: 0 0 10px 1px rgb(32, 32, 32);
|
11
11
|
|
12
12
|
.header-text{
|
13
|
-
|
14
|
-
|
15
|
-
font-size: 40px;
|
13
|
+
font-size: $modal_title_font_size;
|
16
14
|
}
|
17
15
|
|
18
16
|
.question{
|
19
17
|
@include pad(0 0 10px 0);
|
20
|
-
|
21
18
|
font-size: 25px;
|
22
19
|
}
|
23
20
|
|
24
21
|
.text{
|
25
22
|
@include pad(0 0 10px 0);
|
26
|
-
|
27
|
-
font-size: 20px;
|
23
|
+
font-size: $modal_section_font_size;
|
28
24
|
}
|
29
25
|
|
30
26
|
.other_html{
|
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: 2.0.1.
|
4
|
+
version: 2.0.1.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-12-
|
11
|
+
date: 2014-12-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -302,7 +302,7 @@ files:
|
|
302
302
|
- app/assets/stylesheets/custom/components/_modal_filters.scss
|
303
303
|
- app/assets/stylesheets/custom/components/_modal_lead.scss
|
304
304
|
- app/assets/stylesheets/custom/components/_modal_leadDetails.scss
|
305
|
-
- app/assets/stylesheets/custom/components/
|
305
|
+
- app/assets/stylesheets/custom/components/_modal_leadReassign.scss
|
306
306
|
- app/assets/stylesheets/custom/components/_modal_noteform.scss
|
307
307
|
- app/assets/stylesheets/custom/components/_modal_user.scss
|
308
308
|
- app/assets/stylesheets/custom/components/_modals.scss
|