diff options
author | Marc Englund <marc@vaadin.com> | 2013-06-12 11:34:33 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2013-06-13 15:23:29 +0000 |
commit | 53e3a25840acd79b51475137cd9615d52b5684cd (patch) | |
tree | 5c81703546a7ba2d0e7a4a08f29ff74585da83b2 /WebContent | |
parent | 7830af22d8fc47874eacf64b98ee07e73279f281 (diff) | |
download | vaadin-framework-53e3a25840acd79b51475137cd9615d52b5684cd.tar.gz vaadin-framework-53e3a25840acd79b51475137cd9615d52b5684cd.zip |
DebugWindow resize/move improved, fixes #11937 (also implements shift-resize and alt-move, improves bounds-check)
Change-Id: Ic313e545940a6073e30171a610f6d02c38a90037
Diffstat (limited to 'WebContent')
-rw-r--r-- | WebContent/VAADIN/themes/base/debug/debug.scss | 24 |
1 files changed, 22 insertions, 2 deletions
diff --git a/WebContent/VAADIN/themes/base/debug/debug.scss b/WebContent/VAADIN/themes/base/debug/debug.scss index d71575c818..168c666923 100644 --- a/WebContent/VAADIN/themes/base/debug/debug.scss +++ b/WebContent/VAADIN/themes/base/debug/debug.scss @@ -73,6 +73,25 @@ color: $maincolor; font-size: 13px; + + .v-debugwindow-handle { + position: absolute; + bottom: 0; + background-color: #fff; + -moz-opacity: 0; + -webkit-opacity: 0; + opacity: 0; + z-index: 1000; + } + .v-debugwindow-handle-sw { + width: 7px; + height: 7px; + } + .v-debugwindow-handle-se { + right: 0; + width: 14px; + height: 14px; + } } .v-debugwindow:hover { -moz-opacity: 1; @@ -95,8 +114,7 @@ .v-debugwindow-head { text-align: right; - cursor: move; - bakcground-color: transparent; + background-color: transparent; } .v-debugwindow-tabs { @@ -143,6 +161,8 @@ box-shadow: 0px 0px 7px 0 rgba(55,55,55,0.6); min-height: 1.5em; + + padding-left: 5px; } .v-debugwindow-button { |