diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-03-07 16:50:15 +0200 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2012-03-07 16:50:15 +0200 |
commit | aea71b60ef52f582f3c02468b29b7336369dc02b (patch) | |
tree | 1ee68aa2aa490a6ae67cf075df6763cb8c18d32a /WebContent/VAADIN/themes/base | |
parent | 3b0565b19498aaca12b224650a70de827dc8b70c (diff) | |
download | vaadin-framework-aea71b60ef52f582f3c02468b29b7336369dc02b.tar.gz vaadin-framework-aea71b60ef52f582f3c02468b29b7336369dc02b.zip |
Window layouting changes attempt 2 (#8313)
Diffstat (limited to 'WebContent/VAADIN/themes/base')
-rw-r--r-- | WebContent/VAADIN/themes/base/window/window.css | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/WebContent/VAADIN/themes/base/window/window.css b/WebContent/VAADIN/themes/base/window/window.css index 986cfeaeb8..701140333a 100644 --- a/WebContent/VAADIN/themes/base/window/window.css +++ b/WebContent/VAADIN/themes/base/window/window.css @@ -2,15 +2,20 @@ background: #fff; } .v-window-outerheader { - padding: 0.3em 1em; + padding: 0.3em 0; height: 1em; + position: relative; } .v-window-outerheader, .v-window-draggingCurtain { cursor: move; } - +.v-window-header.v-not-spanning { + position: absolute; + left: 0; + right: 0; +} .v-window-header { font-weight: bold; } @@ -20,7 +25,7 @@ div.v-window-header { text-overflow: ellipsis; -ms-text-overflow: ellipsis; overflow: hidden; - padding: 0; + padding: 0 1em; } .v-window-header .v-icon { vertical-align: middle; /* This has to be 'middle', not 'bottom', to allow larger icons than 16px */ |