Commit 61d979156c92f3670bc56c9c36fde8b2445ec16a
Exists in
master
and in
4 other branches
Merge pull request #3315 from yujinakayama/fix-project-summary-box-overflow
Fix overflow of text in the project summary box in Chrome and Safari
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/assets/stylesheets/gitlab_bootstrap/blocks.scss
... | ... | @@ -13,6 +13,7 @@ |
13 | 13 | background: #F9F9F9; |
14 | 14 | margin-bottom: 25px; |
15 | 15 | border: 1px solid #CCC; |
16 | + word-wrap: break-word; | |
16 | 17 | @include solid-shade; |
17 | 18 | |
18 | 19 | &.ui-box-show { |
... | ... | @@ -41,7 +42,6 @@ |
41 | 42 | .ui-box-body, |
42 | 43 | .ui-box-bottom { |
43 | 44 | padding: 15px; |
44 | - word-wrap: break-word; | |
45 | 45 | |
46 | 46 | .clearfix { |
47 | 47 | margin: 0; | ... | ... |