From 3b50fdcf3f7dfe2e32ec0dded1eebc4703f817e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gina=20H=C3=A4u=C3=9Fge?= Date: Fri, 8 Mar 2013 23:25:04 +0100 Subject: [PATCH] Switched column sizes for gcode and timelapse file tables to pixel values. --- octoprint/static/css/octoprint.less | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/octoprint/static/css/octoprint.less b/octoprint/static/css/octoprint.less index 9d4e07f..f2169ea 100644 --- a/octoprint/static/css/octoprint.less +++ b/octoprint/static/css/octoprint.less @@ -124,34 +124,32 @@ table { &.gcode_files_name { text-overflow: ellipsis; text-align: left; - width: 55%; } &.gcode_files_size { text-align: right; - width: 25%; + width: 55px; } &.gcode_files_action { text-align: center; - width: 20%; + width: 45px; } // timelapse files &.timelapse_files_name { text-overflow: ellipsis; text-align: left; - width: 55%; } &.timelapse_files_size { text-align: right; - width: 25%; + width: 55px; } &.timelapse_files_action { text-align: center; - width: 20%; + width: 45px; } } }