- Timestamp:
- 03/30/2006 07:50:33 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/js/tinymce/themes/advanced/source_editor.htm
r3163 r3664 5 5 <script language="javascript" type="text/javascript" src="../../tiny_mce_popup.js"></script> 6 6 <script language="javascript" type="text/javascript" src="jscripts/source_editor.js"></script> 7 <style type="text/css"> 8 #insert, #cancel { 9 font: 13px Verdana, Arial, Helvetica, sans-serif; 10 height: auto; 11 width: auto; 12 background-color: transparent; 13 background-image: url(../../../../../wp-admin/images/fade-butt.png); 14 background-repeat: repeat; 15 border: 3px double; 16 border-right-color: rgb(153, 153, 153); 17 border-bottom-color: rgb(153, 153, 153); 18 border-left-color: rgb(204, 204, 204); 19 border-top-color: rgb(204, 204, 204); 20 color: rgb(51, 51, 51); 21 padding: 0.25em 0.75em; 22 } 23 #insert:active, #cancel:active { 24 background: #f4f4f4; 25 border-left-color: #999; 26 border-top-color: #999; 27 } 28 </style> 7 <base target="_self" /> 29 8 </head> 30 <body onload="tinyMCEPopup.executeOnLoad('onLoadInit();');document. getElementById('htmlSource').focus();" onresize="resizeInputs();" style="display: none">9 <body onload="tinyMCEPopup.executeOnLoad('onLoadInit();');document.body.style.display='';document.getElementById('htmlSource').focus();" onresize="resizeInputs();" style="display: none"> 31 10 <form name="source" onsubmit="saveContent();" action="#"> 32 11 <div style="float: left" class="title">{$lang_theme_code_title}</div> … … 36 15 </div> 37 16 38 <textarea name="htmlSource" id="htmlSource" rows="15" cols="100" style="width: 100%; height: 100%; font-family: 'Courier New',Courier,mono; font-size: 12px ;" dir="ltr" wrap="soft"></textarea>17 <textarea name="htmlSource" id="htmlSource" rows="15" cols="100" style="width: 100%; height: 100%; font-family: 'Courier New',Courier,mono; font-size: 12px" dir="ltr" wrap="off"></textarea> 39 18 40 19 <div class="mceActionPanel"> 41 20 <div style="float: left"> 42 <input type="button" name=" insert" value="{$lang_update}" onclick="saveContent();" id="insert" />21 <input type="button" name="cancel" value="{$lang_cancel}" onclick="tinyMCEPopup.close();" id="cancel" /> 43 22 </div> 44 23 45 24 <div style="float: right"> 46 <input type=" button" name="cancel" value="{$lang_cancel}" onclick="tinyMCEPopup.close();" id="cancel" />25 <input type="submit" name="insert" value="{$lang_update}" onclick="saveContent();" id="insert" /> 47 26 </div> 48 27 </div>
Note: See TracChangeset
for help on using the changeset viewer.