diff options
author | Artur Signell <artur.signell@itmill.com> | 2009-02-16 06:31:56 +0000 |
---|---|---|
committer | Artur Signell <artur.signell@itmill.com> | 2009-02-16 06:31:56 +0000 |
commit | 97077e8b8f583c0a8c5a9ae00f8320c4690c455a (patch) | |
tree | 62a29176afe079439804e6ad1aa369d7bb50600d /WebContent/ITMILL/themes | |
parent | 43e77bd5aa56e5bf0cfd84c1cd8da35c3b85891d (diff) | |
download | vaadin-framework-97077e8b8f583c0a8c5a9ae00f8320c4690c455a.tar.gz vaadin-framework-97077e8b8f583c0a8c5a9ae00f8320c4690c455a.zip |
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
Diffstat (limited to 'WebContent/ITMILL/themes')
-rw-r--r-- | WebContent/ITMILL/themes/default/common/common.css | 4 | ||||
-rw-r--r-- | WebContent/ITMILL/themes/default/styles.css | 8 |
2 files changed, 12 insertions, 0 deletions
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; |