From 97077e8b8f583c0a8c5a9ae00f8320c4690c455a Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Mon, 16 Feb 2009 06:31:56 +0000 Subject: [PATCH] Fix for #2563 - OrderedLayout flicker on repaint Changed Label so it never wraps when its width is undefined. Changed default Label width to 100%. svn changeset:6842/svn branch:trunk --- WebContent/ITMILL/themes/default/common/common.css | 4 ++++ WebContent/ITMILL/themes/default/styles.css | 8 ++++++++ 2 files changed, 12 insertions(+) diff --git a/WebContent/ITMILL/themes/default/common/common.css b/WebContent/ITMILL/themes/default/common/common.css index a1c7a7a381..50c0abf0a4 100644 --- a/WebContent/ITMILL/themes/default/common/common.css +++ b/WebContent/ITMILL/themes/default/common/common.css @@ -234,6 +234,10 @@ input.i-modified, padding-bottom: 1px; } +.i-label-undef-w { + white-space: nowrap; +} + /* Loading indicator states * Note: client side expects that loading indicator has a height. It depends on * this css property to ensure browsers have applied all required styles. diff --git a/WebContent/ITMILL/themes/default/styles.css b/WebContent/ITMILL/themes/default/styles.css index 72c651124e..146e51f6b2 100644 --- a/WebContent/ITMILL/themes/default/styles.css +++ b/WebContent/ITMILL/themes/default/styles.css @@ -414,6 +414,10 @@ input.i-modified, padding-bottom: 1px; } +.i-label-undef-w { + white-space: nowrap; +} + /* Loading indicator states * Note: client side expects that loading indicator has a height. It depends on * this css property to ensure browsers have applied all required styles. @@ -845,6 +849,10 @@ input.i-modified, * Link component styles * (useless to move into a separate file) */ +.i-link { + white-space: nowrap; +} + .i-link a { color: #464f52; vertical-align: middle; -- 2.39.5