diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-09-18 20:16:27 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-09-18 20:16:27 +0000 |
| commit | 85b82e1e26a03b106ec14a230dcdae768a6f2220 (patch) | |
| tree | 499c58e6f0ba5fdd6fea25c50f02b39d9253af89 | |
| parent | 60c1df3778d6efe934ec13a4ade20d55b6a5f202 (diff) | |
Prevent drag layer from wrapping lines
git-svn-id: https://svn.roundcube.net/trunk@1834 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/program/js/list.js | 2 | ||||
| -rw-r--r-- | roundcubemail/skins/default/common.css | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/roundcubemail/program/js/list.js b/roundcubemail/program/js/list.js index 6abe6a023..5da2bb15b 100644 --- a/roundcubemail/program/js/list.js +++ b/roundcubemail/program/js/list.js @@ -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 = ''; diff --git a/roundcubemail/skins/default/common.css b/roundcubemail/skins/default/common.css index ef138cb1b..7d3d35fd3 100644 --- a/roundcubemail/skins/default/common.css +++ b/roundcubemail/skins/default/common.css @@ -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); |
