Changeset 11646
- Timestamp:
- 06/26/2009 11:05:04 AM (15 years ago)
- Location:
- branches/2.8
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.8/wp-admin/css/colors-classic.css
r11546 r11646 268 268 } 269 269 270 .side-info h5 , .bordertitle{270 .side-info h5 { 271 271 border-bottom-color: #dadada; 272 272 } -
branches/2.8/wp-admin/css/colors-fresh.css
r11546 r11646 268 268 } 269 269 270 .side-info h5 , .bordertitle{270 .side-info h5 { 271 271 border-bottom-color: #dadada; 272 272 } -
branches/2.8/wp-admin/css/ie.css
r11503 r11646 247 247 #col-container, 248 248 #col-left, 249 #col-right { 249 #col-right, 250 .fileedit-sub { 250 251 display: block; 251 252 zoom: 100%; -
branches/2.8/wp-admin/css/theme-editor-rtl.css
r9505 r11646 2 2 float: left; 3 3 } 4 #themeselector {5 padding-right: 0;6 padding-left: 5px;7 float: left;8 }9 div.tablenav {10 margin-right: 0;11 margin-left: 210px;12 } -
branches/2.8/wp-admin/css/theme-editor.css
r10607 r11646 12 12 float: right; 13 13 width: 190px; 14 word-wrap: break-word; 14 15 } 15 16 16 #templateside h3, #postcustomstuff p.submit { 17 #templateside h3, 18 #postcustomstuff p.submit { 17 19 margin: 0; 18 20 } 19 21 20 h3#bordertitle{21 margin -bottom: 10px;22 #templateside h4 { 23 margin: 1em 0 0; 22 24 } 23 25 24 #templateside h4 { 25 margin-bottom: 0; 26 } 27 28 #templateside ol, #templateside ul { 29 list-style: none; 26 #templateside ol, 27 #templateside ul { 30 28 margin: .5em; 31 29 padding: 0; 32 30 } 33 31 34 #templateside ol li, #templateside ul li { 35 margin: 1px 0; 36 } 37 38 #themeselector { 39 padding-right: 5px; 40 float: right; 41 position: relative; 42 bottom: 25px; 43 top:20px; 44 } 45 46 #themeselector select { 47 margin: 0; 48 padding: 0; 32 #templateside li { 33 margin: 4px 0; 49 34 } 50 35 … … 55 40 .highlight { 56 41 padding: 1px; 57 }58 59 div.bordertitle h2 {60 border: none;61 padding-bottom: 0;62 42 } 63 43 … … 74 54 font-weight: bold; 75 55 } 56 57 .fileedit-sub { 58 padding: 10px 0 8px; 59 line-height: 180%; 60 } -
branches/2.8/wp-admin/plugin-editor.php
r11530 r11646 137 137 <?php screen_icon(); ?> 138 138 <h2><?php echo esc_html( $title ); ?></h2> 139 <div class="bordertitle"> 140 <form id="themeselector" action="plugin-editor.php" method="post"> 141 <strong><label for="plugin"><?php _e('Select plugin to edit:'); ?> </label></strong> 142 <select name="plugin" id="plugin"> 143 <?php 144 foreach ( $plugins as $plugin_key => $a_plugin ) { 145 $plugin_name = $a_plugin['Name']; 146 if ( $plugin_key == $plugin ) 147 $selected = " selected='selected'"; 148 else 149 $selected = ''; 150 $plugin_name = esc_attr($plugin_name); 151 $plugin_key = esc_attr($plugin_key); 152 echo "\n\t<option value=\"$plugin_key\" $selected>$plugin_name</option>"; 153 } 154 ?> 155 </select> 156 <input type="submit" name="Submit" value="<?php esc_attr_e('Select') ?>" class="button" /> 157 </form> 158 </div> 159 <div class="tablenav"> 139 140 <div class="fileedit-sub"> 160 141 <div class="alignleft"> 161 142 <big><?php … … 173 154 ?></big> 174 155 </div> 156 <div class="alignright"> 157 <form action="plugin-editor.php" method="post"> 158 <strong><label for="plugin"><?php _e('Select plugin to edit:'); ?> </label></strong> 159 <select name="plugin" id="plugin"> 160 <?php 161 foreach ( $plugins as $plugin_key => $a_plugin ) { 162 $plugin_name = $a_plugin['Name']; 163 if ( $plugin_key == $plugin ) 164 $selected = " selected='selected'"; 165 else 166 $selected = ''; 167 $plugin_name = esc_attr($plugin_name); 168 $plugin_key = esc_attr($plugin_key); 169 echo "\n\t<option value=\"$plugin_key\" $selected>$plugin_name</option>"; 170 } 171 ?> 172 </select> 173 <input type="submit" name="Submit" value="<?php esc_attr_e('Select') ?>" class="button" /> 174 </form> 175 </div> 175 176 <br class="clear" /> 176 177 </div> 177 <br class="clear" /> 178 179 <h3 id="bordertitle"><?php _e('Plugin Files'); ?></h3>178 179 <div id="templateside"> 180 <h3><?php _e('Plugin Files'); ?></h3> 180 181 181 182 <ul> … … 196 197 <?php endforeach; ?> 197 198 </ul> 198 199 199 </div> 200 <form name="template" id="template" action="plugin-editor.php" method="post"> 200 201 <?php wp_nonce_field('edit-plugin_' . $file) ?> 201 202 <div><textarea cols="70" rows="25" name="newcontent" id="newcontent" tabindex="1" class="codepress <?php echo $codepress_lang ?>"><?php echo $content ?></textarea> … … 222 223 <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> 223 224 <?php endif; ?> 224 225 < div class="clear"> </div>225 </form> 226 <br class="clear" /> 226 227 </div> 227 228 <?php 228 229 break; 229 230 } 230 include("admin-footer.php") ?>231 include("admin-footer.php"); -
branches/2.8/wp-admin/theme-editor.php
r11616 r11646 118 118 <?php screen_icon(); ?> 119 119 <h2><?php echo esc_html( $title ); ?></h2> 120 <div class="bordertitle"> 121 <form id="themeselector" action="theme-editor.php" method="post"> 120 121 <div class="fileedit-sub"> 122 <div class="alignleft"> 123 <big><?php echo sprintf($desc_header, $file_show); ?></big> 124 </div> 125 <div class="alignright"> 126 <form action="theme-editor.php" method="post"> 122 127 <strong><label for="theme"><?php _e('Select theme to edit:'); ?> </label></strong> 123 128 <select name="theme" id="theme"> … … 135 140 </form> 136 141 </div> 137 <div class="tablenav">138 <div class="alignleft">139 <big><?php echo sprintf($desc_header, $file_show); ?></big>140 </div>141 142 <br class="clear" /> 142 143 </div> 143 <br class="clear" /> 144 145 <h3 id="bordertitle"><?php _e("Theme Files"); ?></h3>144 145 <div id="templateside"> 146 <h3><?php _e("Theme Files"); ?></h3> 146 147 147 148 <?php … … 194 195 <?php endif; ?> 195 196 </div> 196 <?php 197 if (!$error) { 198 ?> 199 <form name="template" id="template" action="theme-editor.php" method="post"> 197 198 <?php if (!$error) { ?> 199 <form name="template" id="template" action="theme-editor.php" method="post"> 200 200 <?php wp_nonce_field('edit-theme_' . $file . $theme) ?> 201 201 <div><textarea cols="70" rows="25" name="newcontent" id="newcontent" tabindex="1" class="codepress <?php echo $codepress_lang ?>"><?php echo $content ?></textarea> … … 223 223 <?php endif; ?> 224 224 </div> 225 226 225 </form> 226 <?php 227 227 } else { 228 228 echo '<div class="error"><p>' . __('Oops, no such file exists! Double check the name and try again, merci.') . '</p></div>'; 229 229 } 230 231 < div class="clear"> </div>230 ?> 231 <br class="clear" /> 232 232 </div> 233 233 <?php … … 235 235 } 236 236 237 include("admin-footer.php") ?>237 include("admin-footer.php"); -
branches/2.8/wp-admin/wp-admin.css
r11546 r11646 2093 2093 } 2094 2094 2095 .bordertitle {2096 padding-bottom: 5px;2097 border-bottom-width: 1px;2098 border-bottom-style: solid;2099 }2100 2101 2095 /* Edit posts */ 2102 2096 -
branches/2.8/wp-includes/script-loader.php
r11636 r11646 422 422 423 423 // all colors stylesheets need to have the same query strings (cache manifest compat) 424 $colors_version = '200906 10';425 426 $styles->add( 'wp-admin', '/wp-admin/wp-admin.css', array(), '200906 10' );424 $colors_version = '20090625'; 425 426 $styles->add( 'wp-admin', '/wp-admin/wp-admin.css', array(), '20090625' ); 427 427 $styles->add_data( 'wp-admin', 'rtl', '/wp-admin/rtl.css' ); 428 428 … … 444 444 $styles->add( 'dashboard', '/wp-admin/css/dashboard.css', array(), '20090514' ); 445 445 $styles->add( 'install', '/wp-admin/css/install.css', array(), '20090514' ); 446 $styles->add( 'theme-editor', '/wp-admin/css/theme-editor.css', array(), '20090 514' );446 $styles->add( 'theme-editor', '/wp-admin/css/theme-editor.css', array(), '20090625' ); 447 447 $styles->add( 'press-this', '/wp-admin/css/press-this.css', array(), '20090514' ); 448 448 $styles->add( 'thickbox', '/wp-includes/js/thickbox/thickbox.css', array(), '20090514' );
Note: See TracChangeset
for help on using the changeset viewer.