meurio_ui 1.3.2 → 1.3.3

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: 43ab22e16bf95d490f45c332349c2116eca8f4e3
4
- data.tar.gz: f80a366211543e800f5aaa72d6f496b68e13f838
3
+ metadata.gz: f52d0246b7021df806286bddaa2fe636d316a011
4
+ data.tar.gz: 9483c0870267984ca530c74a55a29a69f1924c3f
5
5
  SHA512:
6
- metadata.gz: 9f405bf3ad05383c189f3890b4952aad52c53172e261404098ee4d121b5060e73f9b27ef9ccb55d1ce89a6c9b41e30bd97547e41bc5430375e5889f9aa2aff1a
7
- data.tar.gz: a2a90782a99b8acd0ba3568f93b54a32e069873a586ff2d483b895a9553bcfdadcf32fb24cfa28c6e79d2f20bac19fb41e23396e7d38b8976c1c62acc29fb0d1
6
+ metadata.gz: fcffc253374b9054f71e02f2a4098b8694e392b267203bde177240262dbc5de9dcf661069e740b8a4d07e10ef852042cc9270a328f03a00b1934176cea1daba0
7
+ data.tar.gz: 1271be7b54b7047f7f3b66995f0dd62568ab34e44be153f374f63b3ce4c26105e7e1f361d818acf12f54cc01a1a2291e3bd2894e76ec643e8db689a14bcb21a6
Binary file
Binary file
Binary file
@@ -1,6 +1,5 @@
1
1
  $(function(){
2
- $('header.meurio_header .icon-arrow-box').click(function(e){ $('.other_apps').toggle(); e.stopPropagation(); return false; });
3
- $(document).click(function(){ $('.other_apps').hide(); });
2
+ $('header.meurio_header .meurio_apps').hover(function(e){ $('.other_apps').toggle(); e.stopPropagation(); return false; });
4
3
 
5
4
  $('header.meurio_header .icon-triangle-down').click(function(e){ $('.current_user_links').toggle(); e.stopPropagation(); return false; });
6
5
  $(document).click(function(){ $('.current_user_links').hide(); });
@@ -13,23 +13,23 @@ header.meurio_header
13
13
  text-align: right
14
14
  color: white
15
15
  position: relative
16
- padding: 7px 0
17
- line-height: 44px
16
+ padding: 5px 0
18
17
  .current_user
19
18
  line-height: 35px
19
+ font-weight: bold
20
20
  img
21
- width: 35px
22
- +border-radius(35px)
21
+ width: 30px
22
+ +border-radius(30px)
23
23
  vertical-align: middle
24
24
  margin-right: .5em
25
25
  .icon-triangle-down
26
- top: 6px
26
+ font-size: .8em
27
+ top: 3px
27
28
  position: relative
28
29
  margin-left: 1em
29
30
  cursor: pointer
30
31
  .current_user_links
31
32
  position: absolute
32
- top: 40px
33
33
  background: $green
34
34
  z-index: 1000
35
35
  right: 0
@@ -87,6 +87,9 @@ header.meurio_header
87
87
  display: block
88
88
  img
89
89
  display: inline-block
90
+ margin-bottom: .5em
91
+ &:hover
92
+ opacity: 0.8
90
93
 
91
94
  .application_menu
92
95
  text-align: right
@@ -111,9 +114,9 @@ header.meurio_header
111
114
 
112
115
  a.hollow_btn
113
116
  color: white
114
- border: 1px solid white
117
+ border: 2px solid white
115
118
  padding: 5px 10px
116
- font-weight: bold
119
+ font-weight: bolder
117
120
  font-size: 14px
118
121
  +border-radius(3px)
119
122
  &:hover
@@ -21,8 +21,11 @@ header.meurio_header
21
21
  .meurio_apps
22
22
  .current_app
23
23
  = link_to(root_path) do
24
- = image_tag("#{@app}.png")
25
- span= application_name(@app)
24
+ - if @app == :mr20
25
+ span Aplicativos
26
+ - else
27
+ = image_tag("#{@app}.png")
28
+ span= application_name(@app)
26
29
  span.icon-arrow-box
27
30
  .other_apps
28
31
  = link_to('http://meurio.org.br/', class: :meurio_app) do
@@ -1,5 +1,5 @@
1
1
  module MeurioUi
2
2
  module Rails
3
- VERSION = "1.3.2"
3
+ VERSION = "1.3.3"
4
4
  end
5
5
  end
@@ -8,7 +8,7 @@ module MeurioUi
8
8
  end
9
9
 
10
10
  def application_name app
11
- return "Ação em Rede" if app == :mr20
11
+ return "Meu Rio" if app == :mr20
12
12
  return "Panela de Pressão" if app == :pdp
13
13
  return "Imagine" if app == :imagine
14
14
  return "Faça Acontecer" if app == :apoie
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: meurio_ui
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.2
4
+ version: 1.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nícolas Iensen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-11-26 00:00:00.000000000 Z
11
+ date: 2013-11-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -54,9 +54,11 @@ files:
54
54
  - app/assets/images/apoie.png
55
55
  - app/assets/images/deguarda.png
56
56
  - app/assets/images/deolho.png
57
+ - app/assets/images/eventos.png
57
58
  - app/assets/images/imagine.png
58
59
  - app/assets/images/meurio.png
59
60
  - app/assets/images/mr20.png
61
+ - app/assets/images/multitude.png
60
62
  - app/assets/images/pdp.png
61
63
  - app/assets/javascripts/meurio_ui.js
62
64
  - app/assets/stylesheets/meurio_ui.css.sass
@@ -89,7 +91,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
89
91
  version: '0'
90
92
  requirements: []
91
93
  rubyforge_project:
92
- rubygems_version: 2.0.3
94
+ rubygems_version: 2.0.7
93
95
  signing_key:
94
96
  specification_version: 4
95
97
  summary: Default UI elements for Meu Rio projects