diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-03-05 13:20:41 +0200 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2012-03-05 13:21:36 +0200 |
commit | 39990a4045b4dd626db79ef5254c22ff8d590385 (patch) | |
tree | 8ffb1c229c1c0fa9bef712406c77f375da2030ff /WebContent/VAADIN/themes/base | |
parent | 016f5997ab5e30277f0cb17678ba0d81ba81fa97 (diff) | |
download | vaadin-framework-39990a4045b4dd626db79ef5254c22ff8d590385.tar.gz vaadin-framework-39990a4045b4dd626db79ef5254c22ff8d590385.zip |
Define .v-has-width/height instead of v-undefined-width/height (#8313)
Diffstat (limited to 'WebContent/VAADIN/themes/base')
-rw-r--r-- | WebContent/VAADIN/themes/base/csslayout/csslayout.css | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/WebContent/VAADIN/themes/base/csslayout/csslayout.css b/WebContent/VAADIN/themes/base/csslayout/csslayout.css index ec0ccc1f84..1a4cb10a77 100644 --- a/WebContent/VAADIN/themes/base/csslayout/csslayout.css +++ b/WebContent/VAADIN/themes/base/csslayout/csslayout.css @@ -2,16 +2,16 @@ overflow: hidden; } .v-csslayout-margin, .v-csslayout-container { - height: 100%; - width: 100%; box-sizing: border-box; -moz-box-sizing: border-box; } -.v-undefined-width > .v-csslayout-margin, .v-undefined-width > .v-csslayout-margin > .v-csslayout-container { - width: auto; +.v-has-width > .v-csslayout-margin, +.v-has-width > .v-csslayout-margin > .v-csslayout-container { + width: 100%; } -.v-undefined-height > .v-csslayout-margin, .v-undefined-height > .v-csslayout-margin > .v-csslayout-container { - height: auto; +.v-has-height > .v-csslayout-margin, +.v-has-height > .v-csslayout-margin > .v-csslayout-container { + height: 100%; } .v-csslayout-margin-top { padding-top: 12px; |