Changeset 5632 in subversion
- Timestamp:
- Dec 19, 2011 7:44:40 AM (17 months ago)
- Location:
- trunk/roundcubemail
- Files:
-
- 6 edited
-
program/js/app.js (modified) (1 diff)
-
skins/larry/mail.css (modified) (4 diffs)
-
skins/larry/styles.css (modified) (3 diffs)
-
skins/larry/templates/compose.html (modified) (1 diff)
-
skins/larry/templates/messagepreview.html (modified) (1 diff)
-
skins/larry/ui.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/program/js/app.js
r5628 r5632 3093 3093 this.stop_spellchecking(); 3094 3094 3095 $(this.env.spellcheck.spell_container) .css('visibility', vis ? 'visible' : 'hidden');3095 $(this.env.spellcheck.spell_container)[vis ? 'show' : 'hide'](); 3096 3096 } 3097 3097 }; -
trunk/roundcubemail/skins/larry/mail.css
r5625 r5632 322 322 323 323 .boxlistcontent tbody tr td { 324 padding: 4px 7px;324 padding: 3px 7px; 325 325 border-bottom: 1px solid #ddd; 326 326 border-left: 1px dotted #bbd3da; … … 801 801 #messagebody span.part-notice a.button { 802 802 margin-left: 10px; 803 border: 1px solid #ccc;804 803 box-shadow: 0 1px 1px 0 #e8e386; 805 804 -o-box-shadow: 0 1px 1px 0 #e8e386; 806 805 -webkit-box-shadow: 0 1px 1px 0 #e8e386; 807 806 -moz-box-shadow: 0 1px 1px 0 #e8e386; 807 } 808 809 #message-objects div a.button:hover, 810 #messagebody span.part-notice a.button:hover { 811 box-shadow: 0 0 2px 1px rgba(71,135,177, 0.6); 812 -moz-box-shadow: 0 0 2px 1px rgba(71,135,177, 0.6); 813 -webkit-box-shadow: 0 0 2px 1px rgba(71,135,177, 0.6); 814 -o-box-shadow: 0 0 2px 1px rgba(71,135,177, 0.6); 808 815 } 809 816 … … 1116 1123 font-family: monospace; 1117 1124 font-size: 9pt; 1125 outline: none; 1126 } 1127 1128 #composebody:active, 1129 #composebody:focus { 1118 1130 } 1119 1131 … … 1155 1167 } 1156 1168 1157 1169 .defaultSkin table.mceLayout, 1170 .defaultSkin table.mceLayout tr.mceLast td { 1171 border: 0 !important; 1172 } 1173 -
trunk/roundcubemail/skins/larry/styles.css
r5625 r5632 67 67 display: inline-block; 68 68 margin: 0 2px; 69 padding: 3px 5px;69 padding: 2px 5px; 70 70 color: #525252; 71 71 text-shadow: 0px 1px 1px #fff; … … 106 106 .formbuttons input.button:hover { 107 107 color: #f2f2f2; 108 border-color: #465864; 108 109 box-shadow: 0 0 5px 2px rgba(71,135,177, 0.6), inset 0 1px 0 0 #888; 109 110 -moz-box-shadow: 0 0 5px 2px rgba(71,135,177, 0.6), inset 0 1px 0 0 #888; … … 175 176 } 176 177 178 a.button:hover, 179 input.button:hover { 180 border-color: #4fadd5; 181 box-shadow: 0 0 2px 1px rgba(71,135,177, 0.6); 182 -moz-box-shadow: 0 0 2px 1px rgba(71,135,177, 0.6); 183 -webkit-box-shadow: 0 0 2px 1px rgba(71,135,177, 0.6); 184 -o-box-shadow: 0 0 2px 1px rgba(71,135,177, 0.6); 185 } 186 177 187 label.disabled, 178 188 a.button.disabled { 179 189 color: #999; 190 } 191 192 a.button.disabled, 193 input.button.disabled, 194 input.button[disabled], 195 a.button.disabled:hover, 196 input.button.disabled:hover, 197 input.button[disabled]:hover { 198 border-color: #c6c6c6; 199 box-shadow: 0 1px 1px 0 #ddd; 200 -o-box-shadow: 0 1px 1px 0 #ddd; 201 -webkit-box-shadow: 0 1px 1px 0 #ddd; 202 -moz-box-shadow: 0 1px 1px 0 #ddd; 180 203 } 181 204 -
trunk/roundcubemail/skins/larry/templates/compose.html
r5625 r5632 112 112 <span class="composeoption"> 113 113 <label><roundcube:label name="editortype" /> 114 <roundcube:object name="editorSelector" editorid="compose -body" tabindex="12" /></label>114 <roundcube:object name="editorSelector" editorid="composebody" tabindex="12" /></label> 115 115 </span> 116 116 <span class="composeoption"> -
trunk/roundcubemail/skins/larry/templates/messagepreview.html
r5625 r5632 14 14 <!-- record navigation --> 15 15 <div id="countcontrols" class="pagenav"> 16 <roundcube:if condition="env:mailbox != config:drafts_mbox"> 16 17 <roundcube:button command="reply" type="link" class="button reply" classSel="button reply pressed" innerClass="inner" title="replytomessage" content="<-" /> 17 18 <roundcube:button command="replyall" type="link" class="button replyall" classSel="button replyall pressed" innerClass="inner" title="replytoallmessage" content="<<-" /> 18 19 <roundcube:button command="forward" type="link" class="button forward" classSel="button forward pressed" innerClass="inner" title="forwardmessage" content="->" /> 19 20 21 <roundcube:endif /> 20 22 <roundcube:button command="permaurl" type="link" class="button extwin" classSel="button extwin pressed" innerClass="inner" title="openinextwin" content="[]" target="_blank" /> 21 <!--22 23 <roundcube:button command="previousmessage" type="link" class="button pageup disabled" classAct="button pageup" classSel="button pageup pressed" innerClass="inner" title="previousmessage" content="&lt;" />24 <roundcube:button command="nextmessage" type="link" class="button pagedown disabled" classAct="button pagedown" classSel="button pagedown pressed" innerClass="inner" title="nextmessage" content="&gt;" />25 -->26 23 </div> 27 24 -
trunk/roundcubemail/skins/larry/ui.js
r5624 r5632 190 190 191 191 if (window.tinyMCE && tinyMCE.get('composebody')) { 192 $('#composebody_tbl').width((w+ 6)+'px').height('');193 $('#composebody_ifr').width((w+ 6)+'px').height((h-54)+'px');192 $('#composebody_tbl').width((w+11)+'px').height('').css('margin-top', '1px'); 193 $('#composebody_ifr').width((w+11)+'px').height((h-24)+'px'); 194 194 } 195 195 else {
Note: See TracChangeset
for help on using the changeset viewer.
