waterfall_bourbon_neat_rails 1.4.1 → 1.4.2
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/javascripts/dialog.js +1 -1
- data/app/assets/stylesheets/custom/_pages.scss +2 -2
- data/app/assets/stylesheets/custom/components/_config.scss +1 -0
- data/app/assets/stylesheets/custom/components/_leadDetails.scss +16 -0
- data/app/assets/stylesheets/custom/components/_modals.scss +1 -0
- data/app/assets/stylesheets/custom/components/_profileMenu.scss +2 -0
- data/app/assets/stylesheets/custom/components/_table.scss +13 -3
- data/lib/waterfall_bourbon_neat_rails/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 331d79177535dc060f3e839c4049532e080ecbe8
|
4
|
+
data.tar.gz: 77383d7d2922fc7c869154135057041615cd5fa6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 442d91fac8caab2dbd78f73de239eaabf02255f57783dd3498a98f5a8548adc3e1e294e616838b89ebbe05b1873b8188271bd5026459009b445c882eb251fc72
|
7
|
+
data.tar.gz: 725a995f8dd2094b9819a4bb65c51b2f6015bc766fa7056586c00169a1f1b652150c3ff629a39d045a5f40e66ee971fb19ec67d6afead32df3a5df28dab66c52
|
@@ -6,6 +6,7 @@ $header-color: #2749a0;
|
|
6
6
|
|
7
7
|
.profileMenu-wrapper{
|
8
8
|
@include pad(10px 0 0 0);
|
9
|
+
min-width: 200px;
|
9
10
|
}
|
10
11
|
|
11
12
|
.profileMenu-item{
|
@@ -14,6 +15,7 @@ $header-color: #2749a0;
|
|
14
15
|
position: relative;
|
15
16
|
font-weight: bold;
|
16
17
|
color: white;
|
18
|
+
width: 100%;
|
17
19
|
|
18
20
|
&:hover{
|
19
21
|
background: white;
|
@@ -15,6 +15,16 @@ $table-breakpoint: 980px;
|
|
15
15
|
th {
|
16
16
|
display: none; // for accessibility, use a visually hidden method here instead! Thanks, reddit!
|
17
17
|
}
|
18
|
+
th{
|
19
|
+
.sort{
|
20
|
+
width: 15px;
|
21
|
+
cursor: pointer;
|
22
|
+
}
|
23
|
+
|
24
|
+
.asc{
|
25
|
+
@include transform( scale(0.9) rotate(180deg) )
|
26
|
+
}
|
27
|
+
}
|
18
28
|
|
19
29
|
td {
|
20
30
|
display: block;
|
@@ -67,7 +77,7 @@ $table-breakpoint: 980px;
|
|
67
77
|
tr > td:first-child {
|
68
78
|
cursor: pointer;
|
69
79
|
}
|
70
|
-
tr.
|
80
|
+
tbody tr.selected{
|
71
81
|
background-color: $medium_blue;
|
72
82
|
color: white;
|
73
83
|
}
|
@@ -84,11 +94,11 @@ $table-breakpoint: 980px;
|
|
84
94
|
|
85
95
|
thead tr{
|
86
96
|
th{
|
87
|
-
min-width:
|
97
|
+
min-width: 135px;
|
88
98
|
vertical-align: center;
|
89
99
|
}
|
90
100
|
th:first-child{
|
91
|
-
min-width:
|
101
|
+
min-width: 60px;
|
92
102
|
}
|
93
103
|
}
|
94
104
|
}
|
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.4.
|
4
|
+
version: 1.4.2
|
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-10-
|
11
|
+
date: 2014-10-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -275,6 +275,7 @@ files:
|
|
275
275
|
- app/assets/stylesheets/custom/components/_ajax_spinner.scss
|
276
276
|
- app/assets/stylesheets/custom/components/_captcha.scss
|
277
277
|
- app/assets/stylesheets/custom/components/_config.scss
|
278
|
+
- app/assets/stylesheets/custom/components/_leadDetails.scss
|
278
279
|
- app/assets/stylesheets/custom/components/_modals.scss
|
279
280
|
- app/assets/stylesheets/custom/components/_profileMenu.scss
|
280
281
|
- app/assets/stylesheets/custom/components/_table.scss
|