Changeset 6890
- Timestamp:
- 02/17/08 22:23:04 (9 months ago)
- Files:
-
- trunk/wp-admin/css/theme-editor.css (modified) (1 diff)
- trunk/wp-admin/theme-editor.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-admin/css/theme-editor.css
r6879 r6890 1 1 #template textarea { 2 font: small 'Courier New', Courier, monospace; 2 font-family: 'Courier New', Courier, monospace; 3 font-size: 12px; 4 width: 97%; 5 } 6 7 #template p { 3 8 width: 97%; 4 9 } trunk/wp-admin/theme-editor.php
r6889 r6890 153 153 <input type="hidden" name="theme" value="<?php echo $theme ?>" /> 154 154 </div> 155 156 <div> 155 157 <?php if ( is_writeable($real_file) ) : ?> 156 <p class="submit">158 <p class="submit"> 157 159 <?php 158 160 echo "<input type='submit' name='submit' value=' " . __('Update File »') . "' tabindex='2' />"; … … 162 164 <p><em><?php _e('You need to make this file writable before you can save your changes. See <a href="http://codex.wordpress.org/Changing_File_Permissions">the Codex</a> for more information.'); ?></em></p> 163 165 <?php endif; ?> 166 </div> 164 167 </form> 165 168 <?php
