Commit 37355272ee5ccb313894d056dbb54950ee88a903
Exists in
master
and in
1 other branch
Merge pull request #226 from PjpG/master
WHAT&WHERE - ellipsis hiding
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; | ... | ... |