Thomas Bruederli
2012-06-07 d447a4f2296e5e9afc9d79cede0e49b2d6210f9f
Merge branch 'master' of github.com:roundcube/roundcubemail
3 files modified
11 ■■■■■ changed files
program/js/app.js 2 ●●● patch | view | raw | blame | history
skins/default/mail.css 8 ●●●●● patch | view | raw | blame | history
skins/default/templates/compose.html 1 ●●●● patch | view | raw | blame | history
program/js/app.js
@@ -6259,7 +6259,7 @@
      dashdash = '--', crlf = '\r\n',
      multipart = dashdash + boundary + crlf;
    if (!file || !files.length)
    if (!files || !files.length)
      return;
    // inline function to submit the files to the server
skins/default/mail.css
@@ -1448,6 +1448,14 @@
  background-color: #F9F9F9;
}
#compose-attachments.droptarget.hover
{
  background-color: #F0F0EE;
  box-shadow: 0 0 5px 0 #999;
  -moz-box-shadow: 0 0 5px 0 #999;
  -o-box-shadow: 0 0 5px 0 #999;
}
#compose-attachments ul
{
  margin: 0px;
skins/default/templates/compose.html
@@ -49,6 +49,7 @@
  <roundcube:button name="uploadmenulink" id="uploadmenulink" type="link" title="addattachment" class="button addgroup" onclick="rcmail_ui.show_popup('uploadmenu', true);return false" content=" " />
</div>
</div>
<roundcube:object name="fileDropArea" id="compose-attachments" />
<script type="text/javascript">
  var composesplitv = new rcube_splitter({id:'composesplitterv', p1: 'compose-attachments', p2: 'compose-container', orientation: 'v', relative: true, start: 175});