Commit a76f1525531222de24fab60e5e736b0f4b530339

Authored by AurelioAHeckert
1 parent 4001e7f0

ActionItem413: bloco de profiles recuperado

git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@1951 3f533792-8f58-4932-b0fe-aaf55b0a4547
app/views/layouts/application.rhtml
1   -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="pt-br" lang="pt-br">
2   -<html>
  1 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2 +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="pt-br" lang="pt-br">
3 3 <head>
4   - <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
5 4 <title>
6 5 <%= @environment.name() %>
7 6 <%- if @category -%>
8 7 &rarr; <%= @category.full_name -%>
9 8 <%- end -%>
10 9 </title>
  10 + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
11 11 <meta name="description" content="FIXME: Descriptions of Noosfero" />
12 12 <meta name="keywords" content="Noosfero, Community, Open Source" />
13 13 <link rel="shortcut icon" href="<%= '/designs/themes/' + current_theme + '/images/favicon.ico' %>" type="image/x-icon" />
... ...
public/designs/themes/zen3/stylesheets/menu.css
... ... @@ -192,6 +192,7 @@
192 192 width: 100px;
193 193 height: 20px;
194 194 margin-left: 0px;
  195 + cursor: pointer;
195 196 }
196 197 #assets_menu a:hover {
197 198 background: transparent;
... ...
public/stylesheets/blocks/profile-list-block.css
... ... @@ -24,7 +24,6 @@
24 24 font-size: 9px;
25 25 }
26 26 .msie .common-profile-list-block li a {
27   - width: 100px;
28 27 line-height: 10px;
29 28 cursor: pointer;
30 29 }
... ...
public/stylesheets/menu.css
... ... @@ -18,6 +18,10 @@
18 18 background: #2A5896 url(../images/white-pixel.gif) 0px 100% repeat-x;
19 19 }
20 20  
  21 +#navigation_bar {
  22 + width: 100%; /* MSIE workarround bug */
  23 +}
  24 +
21 25 #menu_link_to_envhome {
22 26 float: left;
23 27 }
... ... @@ -25,7 +29,10 @@
25 29 #cat_menu {
26 30 padding: 0px;
27 31 margin: 0px;
  32 +}
  33 +.msie #cat_menu {
28 34 width: 100%;
  35 + position: relative;
29 36 }
30 37  
31 38 #cat_menu .linkSubMenu,
... ... @@ -85,7 +92,7 @@
85 92 border-top: none;
86 93 }
87 94 .msie #cat_menu ul {
88   - width: 100%;
  95 + /* width: 100%; */
89 96 }
90 97  
91 98 #cat_menu ul a {
... ... @@ -108,7 +115,7 @@
108 115 border: none; /* work arround IE Bug */
109 116 background: transparent; /* work arround IE Bug */
110 117 }
111   -.msie #assets_menu {
  118 +.msie6 #assets_menu {
112 119 right: -1px;
113 120 }
114 121  
... ...