diff --git a/www/form/app-form.less b/www/form/app-form.less index 2a1533268..913384c58 100644 --- a/www/form/app-form.less +++ b/www/form/app-form.less @@ -678,7 +678,10 @@ & > span { .cp-form-results-cell(); &.cp-value { - min-width: 200px; + max-width: 200px; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } &.cp-bar-container { width: 99%; diff --git a/www/form/inner.js b/www/form/inner.js index d04baa3f7..9f09f0115 100644 --- a/www/form/inner.js +++ b/www/form/inner.js @@ -1020,7 +1020,7 @@ define([ var itemScale = (itemCount / max); rows.push(h('div.cp-form-results-type-radio-data', [ - h('span.cp-value', value), + h('span.cp-value', {'title': value}, value), h('span.cp-count', itemCount), showBar? barGraphic(itemScale): undefined, ]));