Merge branch 'forms2' of github.com:xwiki-labs/cryptpad into forms2

pull/1/head
yflory 3 years ago
commit 15de4c64fe

@ -678,7 +678,10 @@
& > span { & > span {
.cp-form-results-cell(); .cp-form-results-cell();
&.cp-value { &.cp-value {
min-width: 200px; max-width: 200px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
} }
&.cp-bar-container { &.cp-bar-container {
width: 99%; width: 99%;

@ -1020,7 +1020,7 @@ define([
var itemScale = (itemCount / max); var itemScale = (itemCount / max);
rows.push(h('div.cp-form-results-type-radio-data', [ 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), h('span.cp-count', itemCount),
showBar? barGraphic(itemScale): undefined, showBar? barGraphic(itemScale): undefined,
])); ]));

Loading…
Cancel
Save