Commit 801b04e38f4124fe795fa0f61c90d0a4c143fa04

Authored by Rodrigo Souto
Committed by Antonio Terceiro
1 parent cf619ae4

This will avoid the text to overflow over the sideboxes.

(ActionItem1607))
public/designs/themes/base/style.css
... ... @@ -972,10 +972,6 @@ hr.pre-posts, hr.sep-posts {
972 972 margin: 0px -19px;
973 973 }
974 974  
975   -.main-block .article-body {
976   - overflow: visible;
977   -}
978   -
979 975 #article .logged-in h1 {
980 976 margin-top: 25px;
981 977 }
... ...
public/stylesheets/application.css
... ... @@ -1803,10 +1803,14 @@ input.disabled {
1803 1803 Use article.css for article related css
1804 1804 */
1805 1805  
1806   -.main-block .article-body, .main-block h1 {
  1806 +.main-block .main-block h1 {
1807 1807 overflow: hidden;
1808 1808 }
1809 1809  
  1810 +.main-block .article-body {
  1811 + overflow-x: auto;
  1812 +}
  1813 +
1810 1814 body div#activation_enterprise {
1811 1815 text-align: center;
1812 1816 }
... ...