meurio_ui 1.3.2 → 1.3.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/images/eventos.png +0 -0
- data/app/assets/images/mr20.png +0 -0
- data/app/assets/images/multitude.png +0 -0
- data/app/assets/javascripts/meurio_ui.js +1 -2
- data/app/assets/stylesheets/meurio_ui/meurio_header.css.sass +11 -8
- data/app/views/meurio_ui/meurio_header.html.slim +5 -2
- data/lib/meurio_ui/version.rb +1 -1
- data/lib/meurio_ui/view_helpers.rb +1 -1
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f52d0246b7021df806286bddaa2fe636d316a011
|
|
4
|
+
data.tar.gz: 9483c0870267984ca530c74a55a29a69f1924c3f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fcffc253374b9054f71e02f2a4098b8694e392b267203bde177240262dbc5de9dcf661069e740b8a4d07e10ef852042cc9270a328f03a00b1934176cea1daba0
|
|
7
|
+
data.tar.gz: 1271be7b54b7047f7f3b66995f0dd62568ab34e44be153f374f63b3ce4c26105e7e1f361d818acf12f54cc01a1a2291e3bd2894e76ec643e8db689a14bcb21a6
|
|
Binary file
|
data/app/assets/images/mr20.png
CHANGED
|
Binary file
|
|
Binary file
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
$(function(){
|
|
2
|
-
$('header.meurio_header .
|
|
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:
|
|
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:
|
|
22
|
-
+border-radius(
|
|
21
|
+
width: 30px
|
|
22
|
+
+border-radius(30px)
|
|
23
23
|
vertical-align: middle
|
|
24
24
|
margin-right: .5em
|
|
25
25
|
.icon-triangle-down
|
|
26
|
-
|
|
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:
|
|
117
|
+
border: 2px solid white
|
|
115
118
|
padding: 5px 10px
|
|
116
|
-
font-weight:
|
|
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
|
-
|
|
25
|
-
|
|
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
|
data/lib/meurio_ui/version.rb
CHANGED
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.
|
|
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-
|
|
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.
|
|
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
|