Ticket #6051: max-width-IE6.patch
| File max-width-IE6.patch, 6.6 KB (added by , 18 years ago) |
|---|
-
wp-admin/admin-footer.php
1 </div><!-- wpbody --> 1 2 </div><!-- wpcontent --> 2 3 </div><!-- wpwrap --> 3 4 <div id="footer"> -
wp-admin/admin-header.php
6 6 wp_enqueue_script( 'wp_tiny_mce' ); 7 7 } 8 8 9 $min_width_pages = array( 'post.php', 'post-new.php', 'page.php', 'page-new.php', 'widgets.php', 'comment.php' );9 $min_width_pages = array( 'post.php', 'post-new.php', 'page.php', 'page-new.php', 'widgets.php', 'comment.php', 'link.php' ); 10 10 $the_current_page = preg_replace('|^.*/wp-admin/|i', '', $_SERVER['PHP_SELF']); 11 11 $ie6_no_scrollbar = true; 12 12 … … 70 70 require(ABSPATH . 'wp-admin/options-head.php'); 71 71 } 72 72 ?> 73 <div id="wpbody"> -
wp-admin/css/ie.css
10 10 } 11 11 12 12 * html body.minwidth { 13 _width: expression(document.documentElement.clientWidth < 942 ? "940px" : "auto");13 _width: expression(document.documentElement.clientWidth < 810 ? "808px" : "99.9%"); 14 14 } 15 15 16 * html # poststuff #titlediv{17 display: inline-block;16 * html #wpbody { 17 _width: expression(document.documentElement.clientWidth > 962 ? "960px" : "99.9%"); 18 18 } 19 19 20 * html #poststuff .postarea, * html #poststuff #titlediv { 21 width: 95%; 22 margin-left: 2%; 23 } 24 25 .submitbox { 26 margin-top: 10px; 27 } 28 20 29 * html div.widget-liquid-left-holder, * html div.widget-liquid-right { 21 30 display: block; 22 31 position: relative; 23 32 } 24 33 25 #wpwrap, #wpcontent, #post, #wrap, #postdivrich, #postdiv, #poststuff, # editorcantainer{26 display: block;27 zoom: 100%;34 #wpwrap, #wpcontent, #post, #wrap, #postdivrich, #postdiv, #poststuff, #titlediv, #post-body, #editorcontainer, .tablenav, .widget-control-list { 35 display: block; 36 zoom: 100%; 28 37 } 29 38 30 39 * html #editorcontainer { 31 padding: 0;40 padding: 0; 32 41 } 33 42 34 43 * html #editorcontainer #content { 35 position: relative;36 overflow: auto;37 padding: 6px;38 margin: auto;39 width: 98%;44 position: relative; 45 overflow: auto; 46 padding: 6px; 47 margin: auto; 48 width: 98%; 40 49 } 41 50 51 42 52 form#template div { 43 53 width: 100%; 44 54 } 55 No newline at end of file -
wp-admin/edit-form-comment.php
68 68 <?php do_action('submitcomment_box'); ?> 69 69 </div> 70 70 71 <div id="post-body"> 71 72 <div id="namediv" class="stuffbox"> 72 73 <h3><?php _e('Name') ?></h3> 73 74 <div class="inside"> … … 103 104 <input type="hidden" name="noredir" value="1" /> 104 105 </div> 105 106 </div> 107 </div> 106 108 107 109 </form> -
wp-admin/js/editor.js
77 77 78 78 qt.style.display = 'none'; 79 79 ec.style.padding = '0px'; 80 ta.style.padding = '0px'; 80 81 81 82 ta.value = this.wpautop(ta.value); 82 83 -
wp-admin/wp-admin.css
342 342 #excerpt, .attachmentlinks { 343 343 margin: 0; 344 344 height: 4em; 345 width: 100%;345 width: 98%; 346 346 } 347 347 348 348 .plugins p { … … 1340 1340 } 1341 1341 1342 1342 body.minwidth { 1343 min-width: 770px;1343 min-width: 808px; 1344 1344 } 1345 1345 1346 1346 ul.view-switch { -
wp-includes/functions.php
1421 1421 1422 1422 if ( 'rtl' == $wp_locale->text_direction ) { 1423 1423 $input['directionality'] = 'rtl'; 1424 $input['theme_advanced_toolbar_align'] = 'right';1425 1424 $input['plugins'] .= ',directionality'; 1426 $input['theme_advanced_buttons 2'] .= ',|,ltr,rtl';1425 $input['theme_advanced_buttons1'] .= ',ltr'; 1427 1426 } 1428 1427 1429 1428 return $input; -
wp-includes/js/tinymce/themes/advanced/skins/wp_theme/ui.css
42 42 padding: 1px 2px; 43 43 margin: 1px; 44 44 background: #e9e8e8 url(img/butt2.png) 2px 1px no-repeat scroll; 45 -moz-border-radius: 4px;46 -webkit-border-radius: 4px;47 -khtml-border-radius: 4px;48 border-radius: 4px;45 -moz-border-radius: 3px; 46 -webkit-border-radius: 3px; 47 -khtml-border-radius: 3px; 48 border-radius: 3px; 49 49 border: 1px solid #abc0fb; 50 50 } 51 51 .wp_themeSkin a.mceButton span, .wp_themeSkin a.mceButton img {} … … 90 90 } 91 91 .wp_themeSkin .mceListBox { 92 92 margin: 1px; 93 direction: ltr; 93 94 } 94 95 .wp_themeSkin .mceListBox .mceOpen { 95 96 width:14px; … … 129 130 .wp_themeSkin .mceSplitButton { 130 131 display:block; 131 132 margin: 1px; 133 direction: ltr; 132 134 } 133 135 .wp_themeSkin table.mceSplitButton td { 134 136 padding: 2px; … … 184 186 background: #d6d8da; 185 187 } 186 188 .wp_themeSkin .mceListBox a.mceText, .wp_themeSkin .mceSplitButton a.mceAction { 187 -moz-border-radius-bottomleft: 4px;188 -webkit-border- radius-bottomleft: 4px;189 -khtml-border- radius-bottomleft: 4px;190 border- radius-bottomleft: 4px;191 -moz-border-radius-topleft: 4px;192 -webkit-border- radius-topleft: 4px;193 -khtml-border- radius-topleft: 4px;194 border- radius-topleft: 4px;189 -moz-border-radius-bottomleft: 3px; 190 -webkit-border-bottom-left-radius: 3px; 191 -khtml-border-bottom-left-radius: 3px; 192 border-bottom-left-radius: 3px; 193 -moz-border-radius-topleft: 3px; 194 -webkit-border-top-left-radius: 3px; 195 -khtml-border-top-left-radius: 3px; 196 border-top-left-radius: 3px; 195 197 } 196 198 .wp_themeSkin .mceSplitButton a.mceOpen, .wp_themeSkin .mceListBox a.mceOpen { 197 -moz-border-radius-bottomright: 4px;198 -webkit-border- radius-bottomright: 4px;199 -khtml-border- radius-bottomright: 4px;200 border- radius-bottomright: 4px;201 -moz-border-radius-topright: 4px;202 -webkit-border- radius-topright: 4px;203 -khtml-border- radius-topright: 4px;204 border- radius-topright: 4px;199 -moz-border-radius-bottomright: 3px; 200 -webkit-border-bottom-right-radius: 3px; 201 -khtml-border-bottom-right-radius: 3px; 202 border-bottom-right-radius: 3px; 203 -moz-border-radius-topright: 3px; 204 -webkit-border-top-right-radius: 3px; 205 -khtml-border-top-right-radius: 3px; 206 border-top-right-radius: 3px; 205 207 } 206 208 207 209 /* ColorSplitButton */