Commit 9333e10b881710c487635c57a43b5dafc2579a2e
1 parent
18b030bd
Exists in
master
and in
1 other branch
Update app/assets/stylesheets/errbit.css
Added ellipsis overflow and changed width of anchor tag in WHAT&WHERE columns.
Showing
1 changed file
with
7 additions
and
0 deletions
Show diff stats
app/assets/stylesheets/errbit.css
... | ... | @@ -648,6 +648,13 @@ table.errs td.app .environment { |
648 | 648 | table.errs td.message a { |
649 | 649 | display: block; |
650 | 650 | word-wrap: break-word; |
651 | + /* PjpG - configuration in WHAT & WHERE table's columns using ellipsis to avoid oversizing table's width */ | |
652 | + width: 300px; | |
653 | + overflow: hidden; | |
654 | + text-overflow: ellipsis; | |
655 | + -o-text-overflow: ellipsis; | |
656 | + white-space: nowrap; | |
657 | + /* ------ */ | |
651 | 658 | } |
652 | 659 | table.errs td.message em { |
653 | 660 | color: #727272; | ... | ... |