Commit 801b04e38f4124fe795fa0f61c90d0a4c143fa04
Committed by
Antonio Terceiro
1 parent
cf619ae4
Exists in
master
and in
29 other branches
This will avoid the text to overflow over the sideboxes.
(ActionItem1607))
Showing
2 changed files
with
5 additions
and
5 deletions
Show diff stats
public/designs/themes/base/style.css
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 | } | ... | ... |