Changeset 7961f8c in github
- Timestamp:
- Jan 5, 2012 11:15:37 AM (17 months ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.8
- Children:
- becca08
- Parents:
- 8304e5d
- Location:
- skins/larry
- Files:
-
- 4 edited
-
mail.css (modified) (1 diff)
-
styles.css (modified) (1 diff)
-
templates/compose.html (modified) (1 diff)
-
ui.js (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
skins/larry/mail.css
r543ccbb r7961f8c 962 962 } 963 963 964 #compose-contacts #directorylist { 965 border-bottom: 4px solid #c7e3ef; 966 } 967 968 #contacts-table { 969 table-layout: fixed; 970 } 971 972 #contacts-table td { 973 width: 100%; 974 } 975 976 #contacts-table td span { 977 display: block; 978 } 979 980 #compose-contacts li a, #contacts-table td { 981 background: url(images/listicons.png) -100px 0 no-repeat; 982 overflow: hidden; 983 padding-left: 36px; 984 text-overflow: ellipsis; 985 } 986 987 #compose-contacts li.addressbook a { 988 background-position: 6px -766px; 989 } 990 991 #compose-contacts li.addressbook.selected a { 992 background-position: 6px -791px; 993 } 994 995 #contacts-table td.contactgroup { 996 background-position: 6px -1555px; 997 } 998 999 #contacts-table tr.unfocused td.contactgroup, 1000 #contacts-table tr.selected td.contactgroup { 1001 background-position: 6px -1579px; 1002 } 1003 1004 #contacts-table td.contact { 1005 background-position: 6px -1603px; 1006 } 1007 1008 #contacts-table tr.unfocused td.contact, 1009 #contacts-table tr.selected td.contact { 1010 background-position: 6px -1627px; 1011 } 1012 1013 964 1014 #compose-content { 965 1015 position: absolute; -
skins/larry/styles.css
r0e530bd r7961f8c 737 737 .listbox .listitem.selected > a, 738 738 .listbox .tablink.selected > a, 739 .listing tbody tr.unfocused td, 739 740 .listing tbody tr.selected td, 740 741 .listing li.selected, -
skins/larry/templates/compose.html
r4deb1ef r7961f8c 18 18 <h2 class="boxtitle"><roundcube:label name="contacts" /></h2> 19 19 <div class="scroller withfooter"> 20 20 <roundcube:object name="adressbooks" id="directorylist" class="listing" /> 21 <roundcube:object name="addresslist" id="contacts-table" class="listing" noheader="true" /> 21 22 </div> 22 23 <div class="boxfooter"> 23 24 <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+" /> 25 </div> 26 <div class="boxpagenav"> 27 <roundcube:button command="firstpage" type="link" class="icon firstpage disabled" classAct="icon firstpage" title="firstpage" content="|&lt;" /> 28 <roundcube:button command="previouspage" type="link" class="icon prevpage disabled" classAct="icon prevpage" title="previouspage" content="&lt;" /> 29 <roundcube:button command="nextpage" type="link" class="icon nextpage disabled" classAct="icon nextpage" title="nextpage" content="&gt;" /> 30 <roundcube:button command="lastpage" type="link" class="icon lastpage disabled" classAct="icon lastpage" title="lastpage" content="&gt;|" /> 24 31 </div> 25 32 </div> -
skins/larry/ui.js
r0e530bd r7961f8c 83 83 rcmail.addEventListener('aftertoggle-editor', function(){ window.setTimeout(function(){ layout_composeview() }, 100); }); 84 84 rcmail.addEventListener('aftersend-attachment', show_uploadform); 85 rcmail.addEventListener('add-recipient', function(p){ show_header_row(p.field, true); }); 85 86 layout_composeview(); 86 87 … … 183 184 } 184 185 }); 185 186 $(window).resize(resize); 186 187 $(window).resize(function(e) { 188 // check target due to bugs in jquery 189 // http://bugs.jqueryui.com/ticket/7514 190 // http://bugs.jquery.com/ticket/9841 191 if (e.target == window) resize(); 192 }); 187 193 } 188 194 … … 632 638 * 633 639 */ 634 function show_header_row(which) 635 { 636 if (compose_headers[which]) 640 function show_header_row(which, updated) 641 { 642 var row = $('#compose-' + which); 643 if (row.is(':visible')) 644 return; // nothing to be done here 645 646 if (compose_headers[which] && !updated) 637 647 $('#_' + which).val(compose_headers[which]); 638 $('#compose-' + which).show(); 648 649 row.show(); 639 650 $('#' + which + '-link').hide(); 640 651 layout_composeview();
Note: See TracChangeset
for help on using the changeset viewer.
