Commit ce69437b05b22447d61e1852645096eb42d75108

Authored by Robert Lail
1 parent d44992ac
Exists in master and in 1 other branch production

allow long error messages to wrap

@PjpG introduced a few styles to prevent long messages from stretching their table cells. `word-wrap: break-word;` + `width: 300px;` accomplish this. `white-space: nowrap;` was additionally causing exception messages to be truncated at 1 line; but this can make some errors difficult to read. Removing that style preserves the original intent but allows errors messages to wrap if they need to.
Showing 1 changed file with 0 additions and 1 deletions   Show diff stats
app/assets/stylesheets/errbit.css
@@ -654,7 +654,6 @@ table.errs td.message a { @@ -654,7 +654,6 @@ table.errs td.message a {
654 overflow: hidden; 654 overflow: hidden;
655 text-overflow: ellipsis; 655 text-overflow: ellipsis;
656 -o-text-overflow: ellipsis; 656 -o-text-overflow: ellipsis;
657 - white-space: nowrap;  
658 /* ------ */ 657 /* ------ */
659 } 658 }
660 table.errs td.message em { 659 table.errs td.message em {