waterfall_bourbon_neat_rails 1.3.2 → 1.4.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 81cdcaca60d8d05bcecaae70624a662ac39e6c50
4
- data.tar.gz: aa9b0007602472b00d02db8f006b63c9e9182081
3
+ metadata.gz: 34a36cb76a3e52bf26d6b2371f3669b9a169b0c2
4
+ data.tar.gz: 27c87fdda082b0e8c988323d71defe2efc3688b6
5
5
  SHA512:
6
- metadata.gz: d6d27ec87b7d0b12c454a84c6baf635e96c2be13e0e559b52fbaa2ee20ec5754b77b7fc8d64be5d0d650a9944835bc3aeecb0d546436b2eacdb16761c8ca3c19
7
- data.tar.gz: 0159722387bdbb258f8895337c3e0b28db79d5e6afaaec0f92850d372776ffc3a618c024b837178183a75a09726da5c82ad5f921f30f4466c439c1227c1f25fa
6
+ metadata.gz: e2082e16bca4b75e80142343b5e8038be144cfc52b8a74db744bcd93022b8b704f5e175aa315a4fad30c4bdca65849996d44937ac487b20b92537f428ad3180d
7
+ data.tar.gz: db0aec06804ff18cd2e66fee51734648e563f1e37459dfbb091892abaa2aa81656582d316a42fca038e41480687b514179dae013402972242eb4014cd4756c63
@@ -2,6 +2,7 @@
2
2
  @import "forms/config";
3
3
  @import "view_profile";
4
4
 
5
+ @import "topMenu";
5
6
  @import "toolbar";
6
7
  @import "table";
7
8
  @import "ajax_spinner";
@@ -0,0 +1,71 @@
1
+ $menu-background: #575757;
2
+ $menu-item-border: #737373;
3
+ $menu-item-hover: #4c4c4c;
4
+ $menu-item-shadow: #262626;
5
+
6
+ .topMenu{
7
+ display: table;
8
+ zoom:1;
9
+ background: $menu-background;
10
+ width:100%;
11
+ color: orange;
12
+
13
+ .menu-wrapper{
14
+ @include pad(5px);
15
+ }
16
+
17
+ .menu-item{
18
+ @include pad(5px 10px);
19
+
20
+ position: relative;
21
+ margin-right: 10px;
22
+ color:inherit;
23
+ display: inline-block;
24
+
25
+ a{
26
+ color: inherit;
27
+ font-weight: bold;
28
+ }
29
+
30
+ &:hover{
31
+ background: $menu-item-hover;
32
+ box-shadow: 0px 0px 10px 1px $menu-item-shadow;
33
+
34
+ .innerMenu-wrapper{
35
+ display: inline-block;
36
+ box-shadow: 1px 5px 5px -1px $menu-item-shadow;
37
+ }
38
+ }
39
+
40
+ .menu-item-separator{
41
+ width: 1px;
42
+ height: 25px;
43
+ display: inline-block;
44
+ background: $menu-item-hover;
45
+ position: absolute;
46
+ right: 0;
47
+ }
48
+ }
49
+
50
+ .innerMenu-wrapper{
51
+ position: absolute;
52
+ background: $menu-item-hover;
53
+ width: 100%;
54
+ left: 0;
55
+ top: 30px;
56
+ padding: 5px;
57
+ z-index: 99999;
58
+ border-right: solid 2px $menu-item-hover;
59
+
60
+ .innerMenu-item{
61
+ @extend .menu-item;
62
+ border: none;
63
+ width: 100%;
64
+ }
65
+
66
+ &:hover{
67
+ display: inline-block;
68
+ }
69
+ }
70
+
71
+ }
@@ -1,3 +1,3 @@
1
1
  module WaterfallBourbonNeatRails
2
- VERSION = "1.3.2".freeze
2
+ VERSION = "1.4.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.3.2
4
+ version: 1.4.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-10-06 00:00:00.000000000 Z
11
+ date: 2014-10-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -277,6 +277,7 @@ files:
277
277
  - app/assets/stylesheets/custom/components/_modals.scss
278
278
  - app/assets/stylesheets/custom/components/_table.scss
279
279
  - app/assets/stylesheets/custom/components/_toolbar.scss
280
+ - app/assets/stylesheets/custom/components/_topMenu.scss
280
281
  - app/assets/stylesheets/custom/components/_view_profile.scss
281
282
  - app/assets/stylesheets/custom/components/forms/_config.scss
282
283
  - app/assets/stylesheets/custom/components/forms/_forgot_pass.scss