Commit 4e5aa35a1b1c1be0f1e8bcdbe8af06148ced50d3

Authored by MoisesMachado
1 parent a503ed2c

ActionItem664: fixed overflow:hidden hiding buttons

git-svn-id: https://svn.colivre.coop.br/svn/noosfero/branches/0.11.x@2491 3f533792-8f58-4932-b0fe-aaf55b0a4547
app/views/content_viewer/view_page.rhtml
... ... @@ -62,9 +62,10 @@
62 62 </div>
63 63 <% end %>
64 64  
65   -<%= @page.to_html %>
66   -
67   -<br style="clear:both" />
  65 +<div class="article-body">
  66 + <%= @page.to_html %>
  67 + <br style="clear:both" />
  68 +</div> <!-- end class="article-body" -->
68 69  
69 70 <% if ! @page.categories.empty? %>
70 71 <div id="article-cat">
... ...
public/stylesheets/blocks/main-block.css
... ... @@ -2,6 +2,6 @@
2 2 Use article.css for article related css
3 3 */
4 4  
5   -.main-block {
  5 +.main-block .article-body, .main-block h1 {
6 6 overflow: hidden;
7 7 }
... ...