Avoid scrolling on drag.

This commit is contained in:
Paulo Gustavo Veiga 2012-11-17 17:18:40 -03:00
parent fab3c96097
commit 91aeddee70

View File

@ -1,6 +1,5 @@
@import "compatibility.less"; @import "compatibility.less";
@import "css/libraries/moodialog/css/MooDialog.css"; @import "css/libraries/moodialog/css/MooDialog.css";
/********************************************************************************/ /********************************************************************************/
/* Header & Toolbar Styles */ /* Header & Toolbar Styles */
/********************************************************************************/ /********************************************************************************/
@ -13,7 +12,8 @@ body {
-moz-user-select: none; -moz-user-select: none;
-ms-user-select: none; -ms-user-select: none;
user-select: none; user-select: none;
overflow:hidden; overflow: hidden;
position: fixed
} }
div#mindplot { div#mindplot {
@ -21,7 +21,7 @@ div#mindplot {
top: 0; top: 0;
left: 0; left: 0;
width: 100%; width: 100%;
height:100%; height: 100%;
border: 0; border: 0;
overflow: hidden; overflow: hidden;
} }
@ -36,8 +36,8 @@ div#small_error_icon {
background-color: #dfcf3c; background-color: #dfcf3c;
padding: 5px 15px; padding: 5px 15px;
color: #666666; color: #666666;
/*font-weight: bold;*/ /*font-weight: bold;*/
/*width: 100px;*/ /*width: 100px;*/
font-size: 13px; font-size: 13px;
-moz-border-radius: 3px; -moz-border-radius: 3px;
-webkit-border-radius: 3px; -webkit-border-radius: 3px;
@ -49,8 +49,8 @@ div#small_error_icon {
background-color: #dfcf3c; background-color: #dfcf3c;
padding: 5px 15px; padding: 5px 15px;
color: #666666; color: #666666;
/*font-weight: bold;*/ /*font-weight: bold;*/
/*width: 100px;*/ /*width: 100px;*/
font-size: 13px; font-size: 13px;
-moz-border-radius: 3px; -moz-border-radius: 3px;
-webkit-border-radius: 3px; -webkit-border-radius: 3px;
@ -150,18 +150,18 @@ div#small_error_icon {
/* Modal dialogs definitions */ /* Modal dialogs definitions */
div.modalDialog { div.modalDialog {
position: fixed; position: fixed;
top: 50%; top: 50%;
left: 50%; left: 50%;
z-index: 11000; z-index: 11000;
width: 500px; width: 500px;
margin: -250px 0 0 -250px; margin: -250px 0 0 -250px;
background-color: #ffffff; background-color: #ffffff;
border: 1px solid #999; border: 1px solid #999;
padding: 10px; padding: 10px;
overflow: auto; overflow: auto;
/* IE6-7 */ /* IE6-7 */
-webkit-border-radius: 6px; -webkit-border-radius: 6px;
-moz-border-radius: 6px; -moz-border-radius: 6px;
border-radius: 6px; border-radius: 6px;
@ -178,26 +178,26 @@ div.modalDialog .content {
padding: 5px 5px; padding: 5px 5px;
} }
div.modalDialog .title div.modalDialog .title {
{
font-weight: bold; font-weight: bold;
text-shadow: 1px 1px 0 #fff; text-shadow: 1px 1px 0 #fff;
border-bottom: 1px solid #eee; border-bottom: 1px solid #eee;
padding: 5px 15px; padding: 5px 15px;
font-size: 18px; font-size: 18px;
} }
/*--- End Modal Dialog Form ---*/ /*--- End Modal Dialog Form ---*/
.publishModalDialog .content{ .publishModalDialog .content {
height:420px; height: 420px;
} }
.exportModalDialog .content{ .exportModalDialog .content {
height:400px; height: 400px;
} }
.shareModalDialog .content { .shareModalDialog .content {
height:440px; height: 440px;
} }
div.shareModalDialog { div.shareModalDialog {