Prevent drag layer from wrapping lines

release-0.6
thomascube 16 years ago
parent 9787ca6063
commit 633142fa6b

@ -693,7 +693,7 @@ drag_mouse_move: function(e)
return false;
if (!this.draglayer)
this.draglayer = new rcube_layer('rcmdraglayer', {x:0, y:0, width:300, vis:0, zindex:2000});
this.draglayer = new rcube_layer('rcmdraglayer', {x:0, y:0, vis:0, zindex:2000});
// get subjects of selectedd messages
var names = '';

@ -388,6 +388,8 @@ html>body*#quicksearchbar[id$="quicksearchbar"]:not([class="none"]) #quicksearch
#rcmdraglayer
{
min-width: 300px;
width: auto !important;
width: 300px;
border: 1px solid #999999;
background-color: #F9F9F9;
@ -396,6 +398,7 @@ html>body*#quicksearchbar[id$="quicksearchbar"]:not([class="none"]) #quicksearch
padding-top: 3px;
padding-bottom: 3px;
font-size: 11px;
white-space: nowrap;
opacity: 0.7;
-moz-opacity: 0.7;
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70);

Loading…
Cancel
Save