diff options
author | thomascube <thomas@roundcube.net> | 2012-01-02 13:41:53 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2012-01-02 13:41:53 +0000 |
commit | c6db4aa46bd285ef7b3d63cba5e957373a116485 (patch) | |
tree | 4f1f19c291943261f6ec3008b267fcdf26f29df2 | |
parent | 543ccbb328b37d5d5f3ef8d982fdfadc350f3bb6 (diff) |
Add (yet inactive) buttons to add recipients
-rw-r--r-- | skins/larry/styles.css | 17 | ||||
-rw-r--r-- | skins/larry/templates/compose.html | 2 | ||||
-rw-r--r-- | skins/larry/ui.js | 2 |
3 files changed, 19 insertions, 2 deletions
diff --git a/skins/larry/styles.css b/skins/larry/styles.css index 198d64773..94ae63944 100644 --- a/skins/larry/styles.css +++ b/skins/larry/styles.css @@ -763,6 +763,23 @@ table.layout td { background-position: 5px -1382px; } +.boxfooter .listbutton.addto .inner { + background-position: 5px -1422px; +} + +.boxfooter .listbutton.addcc .inner { + background-position: 5px -1462px; +} + +.boxfooter .listbutton.addbcc { + width: 54px; +} + +.boxfooter .listbutton.addbcc .inner { + width: 54px; + background-position: 2px -1502px; +} + .boxfooter .listbutton.disabled .inner { opacity: 0.4; } diff --git a/skins/larry/templates/compose.html b/skins/larry/templates/compose.html index 67d94f631..7a160378b 100644 --- a/skins/larry/templates/compose.html +++ b/skins/larry/templates/compose.html @@ -20,7 +20,7 @@ </div> <div class="boxfooter"> - + <roundcube:button command="add-recipient" prop="to" type="link" title="to" class="listbutton addto disabled" classAct="listbutton addto" innerClass="inner" content="To+" /><roundcube:button command="add-recipient" prop="cc" type="link" title="cc" class="listbutton addcc disabled" classAct="listbutton addcc" innerClass="inner" content="Cc+" /><roundcube:button command="add-recipient" prop="bcc" type="link" title="bcc" class="listbutton addbcc disabled" classAct="listbutton addbcc" innerClass="inner" content="Bcc+" /> </div> </div> diff --git a/skins/larry/ui.js b/skins/larry/ui.js index 08cce32ce..6729fa63a 100644 --- a/skins/larry/ui.js +++ b/skins/larry/ui.js @@ -90,7 +90,7 @@ function rcube_mail_ui() }).css('cursor', 'pointer'); new rcube_splitter({ id:'composesplitterv', p1:'#composeview-left', p2:'#composeview-right', - orientation:'v', relative:true, start:248, min:150, size:12 }).init(); + orientation:'v', relative:true, start:248, min:170, size:12 }).init(); } else if (rcmail.env.action == 'list' || !rcmail.env.action) { mailviewsplit = new rcube_splitter({ id:'mailviewsplitter', p1:'#mailview-top', p2:'#mailview-bottom', |