UI list view: Fix overflow Removing 'ellipses' effect for long list view values. They are rendering in too many cases, making the data hard to read. Reverting back to using standard word wrap for long table cells.
Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/f8e1f592 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/f8e1f592 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/f8e1f592 Branch: refs/heads/ui-plugins Commit: f8e1f5928fde8516807ff8e5107b21da753a9fa0 Parents: 85de14f Author: Brian Federle <[email protected]> Authored: Tue Jan 29 12:07:40 2013 -0800 Committer: Brian Federle <[email protected]> Committed: Tue Jan 29 12:17:17 2013 -0800 ---------------------------------------------------------------------- ui/css/cloudstack3.css | 6 +----- 1 files changed, 1 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/f8e1f592/ui/css/cloudstack3.css ---------------------------------------------------------------------- diff --git a/ui/css/cloudstack3.css b/ui/css/cloudstack3.css index 6519ed0..eb42843 100644 --- a/ui/css/cloudstack3.css +++ b/ui/css/cloudstack3.css @@ -441,15 +441,11 @@ body.login { div.list-view table tbody td span { display: block; float: left; - max-width: 160px; + max-width: 100%; word-wrap: break-word; text-indent: 0; margin-left: 12px; line-height: 15px; - overflow: hidden; - overflow-x: hidden; - text-overflow: ellipsis; - white-space: nowrap; } div.list-view div.toolbar div.section-switcher div.section-select label {
