Fixed buggy column styles for gcode and timelapse file tables

master
Gina Häußge 2013-03-08 21:47:51 +01:00
parent f1dc0a629a
commit 133831e08e
1 changed files with 6 additions and 6 deletions

View File

@ -121,35 +121,35 @@ table {
overflow: hidden; overflow: hidden;
// gcode files // gcode files
.gcode_files_name { &.gcode_files_name {
text-overflow: ellipsis; text-overflow: ellipsis;
text-align: left; text-align: left;
width: 55%; width: 55%;
} }
.gcode_files_size { &.gcode_files_size {
text-align: right; text-align: right;
width: 25%; width: 25%;
} }
.gcode_files_action, .gcode_files_action { &.gcode_files_action {
text-align: center; text-align: center;
width: 20%; width: 20%;
} }
// timelapse files // timelapse files
.timelapse_files_name, .timelapse_files_name { &.timelapse_files_name {
text-overflow: ellipsis; text-overflow: ellipsis;
text-align: left; text-align: left;
width: 55%; width: 55%;
} }
.timelapse_files_size, .timelapse_files_size { &.timelapse_files_size {
text-align: right; text-align: right;
width: 25%; width: 25%;
} }
.timelapse_files_action, .timelapse_files_action { &.timelapse_files_action {
text-align: center; text-align: center;
width: 20%; width: 20%;
} }