From 224e136269f3f35eefd982040ea6614e2b8098c9 Mon Sep 17 00:00:00 2001 From: Jared Tabor Date: Fri, 5 Dec 2014 11:00:56 -0500 Subject: [PATCH] Portal mode column styling Added text wrap and fixed layout style for portal mode widgets for long names --- awx/ui/static/less/portal.less | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/awx/ui/static/less/portal.less b/awx/ui/static/less/portal.less index c8f7728731..c0bb5f4c4f 100644 --- a/awx/ui/static/less/portal.less +++ b/awx/ui/static/less/portal.less @@ -37,3 +37,13 @@ } } + #job_templates_table, + #portal_jobs_table { + table-layout:fixed; + } + #portal_jobs_table .name-column, + #job_templates_table .name-column { + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + }