Force wrapping of long gcode filenames without pythons in the popover, disallow wrapping in the table

Fixes #239

(cherry picked from commit c36da31)
master
Gina Häußge 2013-09-01 13:59:04 +02:00
parent c87954fcd8
commit 8bd80ae45c
1 changed files with 6 additions and 0 deletions

View File

@ -200,12 +200,18 @@ body {
table {
table-layout: fixed;
.popover-title {
text-overflow: ellipsis;
word-break: break-all;
}
th, td {
overflow: hidden;
// gcode files
&.gcode_files_name {
text-overflow: ellipsis;
white-space: nowrap;
text-align: left;
}