From 4fbfd1a846169126ff6e71ca27c3e94a0614513d Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Thu, 30 Mar 2017 17:49:02 +0530 Subject: [PATCH] [fix] list view assign to area --- frappe/public/css/list.css | 10 ++++------ frappe/public/less/list.less | 11 ++++------- 2 files changed, 8 insertions(+), 13 deletions(-) diff --git a/frappe/public/css/list.css b/frappe/public/css/list.css index 098657ded5..c8866da49c 100644 --- a/frappe/public/css/list.css +++ b/frappe/public/css/list.css @@ -153,15 +153,13 @@ .filterable { cursor: pointer; display: inline-block; - overflow: hidden; text-overflow: ellipsis; - width: 100%; -} -.col-sm-2 .filterable { - max-width: 90px; } -.col-sm-3 .filterable { +.col-sm-2:not(.list-row-right) .filterable, +.col-sm-3:not(.list-row-right) .filterable { max-width: 145px; + overflow: hidden; + width: 100%; } .doclist-row .label { margin-right: 8px; diff --git a/frappe/public/less/list.less b/frappe/public/less/list.less index a0d2075f95..2131b718c9 100644 --- a/frappe/public/less/list.less +++ b/frappe/public/less/list.less @@ -190,17 +190,14 @@ .filterable { cursor: pointer; display: inline-block; - overflow: hidden; text-overflow: ellipsis; - width: 100%; -} - -.col-sm-2 .filterable { - max-width: 90px; } -.col-sm-3 .filterable { +.col-sm-2:not(.list-row-right) .filterable, +.col-sm-3:not(.list-row-right) .filterable { max-width: 145px; + overflow: hidden; + width: 100%; }