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%; }