From 133831e08e064a491a813c8669369ca2829eeb29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gina=20H=C3=A4u=C3=9Fge?= Date: Fri, 8 Mar 2013 21:47:51 +0100 Subject: [PATCH] Fixed buggy column styles for gcode and timelapse file tables --- octoprint/static/css/octoprint.less | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/octoprint/static/css/octoprint.less b/octoprint/static/css/octoprint.less index 1092137..9d4e07f 100644 --- a/octoprint/static/css/octoprint.less +++ b/octoprint/static/css/octoprint.less @@ -121,35 +121,35 @@ table { overflow: hidden; // gcode files - .gcode_files_name { + &.gcode_files_name { text-overflow: ellipsis; text-align: left; width: 55%; } - .gcode_files_size { + &.gcode_files_size { text-align: right; width: 25%; } - .gcode_files_action, .gcode_files_action { + &.gcode_files_action { text-align: center; width: 20%; } // timelapse files - .timelapse_files_name, .timelapse_files_name { + &.timelapse_files_name { text-overflow: ellipsis; text-align: left; width: 55%; } - .timelapse_files_size, .timelapse_files_size { + &.timelapse_files_size { text-align: right; width: 25%; } - .timelapse_files_action, .timelapse_files_action { + &.timelapse_files_action { text-align: center; width: 20%; }