Commit 37355272ee5ccb313894d056dbb54950ee88a903

Authored by Marcin Ciunelis
2 parents 1552fc46 9333e10b
Exists in master and in 1 other branch production

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,6 +648,13 @@ table.errs td.app .environment {
648 table.errs td.message a { 648 table.errs td.message a {
649 display: block; 649 display: block;
650 word-wrap: break-word; 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 table.errs td.message em { 659 table.errs td.message em {
653 color: #727272; 660 color: #727272;