Changeset 7484
- Timestamp:
- 03/23/2008 06:41:43 AM (18 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 11 edited
-
categories.php (modified) (1 diff)
-
css/global.css (modified) (3 diffs)
-
css/ie.css (modified) (2 diffs)
-
edit-form-advanced.php (modified) (1 diff)
-
edit-link-categories.php (modified) (2 diffs)
-
edit-tags.php (modified) (2 diffs)
-
edit.php (modified) (1 diff)
-
images/bubble_bg.gif (modified) (previous)
-
includes/template.php (modified) (1 diff)
-
upload.php (modified) (1 diff)
-
wp-admin.css (modified) (25 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/categories.php
r7304 r7484 162 162 </form> 163 163 164 <br class="clear" />165 166 164 <div class="tablenav"> 167 165 <br class="clear" /> 168 166 </div> 167 <br class="clear" /> 169 168 170 169 </div> -
trunk/wp-admin/css/global.css
r7399 r7484 57 57 width: 100%; 58 58 clear: both; 59 margin: 0; 59 60 } 60 61 61 62 .widefat a { 62 63 text-decoration: none; 64 } 65 66 .widefat abbr { 67 white-space: nowrap; 63 68 } 64 69 … … 68 73 border-bottom-color: #ccc; 69 74 font-size: 11px; 70 padding: 10px 10px 14px;75 padding: 7px 25px 6px 2px; 71 76 vertical-align: text-top; 72 77 } 73 78 74 79 .widefat th { 75 padding-bottom: 7px; 76 padding-top: 8px; 80 padding: 9px 25px 4px 2px; 77 81 text-align: left; 82 line-height: 1.3em; 83 } 84 85 .widefat th input { 86 margin: 0 3px; 87 padding: 0; 78 88 } 79 89 80 90 .widefat .check-column { 81 91 text-align: center; 82 vertical-align: text-top; 83 width: 3%; 92 width: 1.8em; 93 padding: 9px 2px 6px 6px; 94 } 95 96 .widefat tbody th.check-column { 97 padding-bottom: 20px; 84 98 } 85 99 86 100 .widefat .num { 87 101 text-align: center; 102 padding: 10px 16px 0; 88 103 } 89 104 … … 99 114 border-width: 1px; 100 115 border-style: solid; 101 padding: 0 15px;116 padding: 0 0.6em; 102 117 max-width: 950px; 103 118 margin-bottom: 1em; 119 } 120 121 .updated p, .error p { 122 margin: 0.6em 0; 104 123 } 105 124 -
trunk/wp-admin/css/ie.css
r7460 r7484 55 55 #ed_toolbar input { 56 56 overflow: visible; 57 padding: 1px 5px; 57 padding: 0 4px; 58 } 59 60 #poststuff h2 { 61 font-size: 1.6em; 62 } 63 64 * html #poststuff h2 { 65 margin-left: 0; 66 } 67 68 #bh { 69 padding-right: 15px; 58 70 } 59 71 … … 62 74 padding-right: 1px; 63 75 } 76 77 #tagchecklist { 78 display: block; 79 zoom: 100%; 80 } 81 82 #tagchecklist span, #tagchecklist span a { 83 display: inline-block; 84 display: block; 85 } 86 87 #tagchecklist span a { 88 margin: 4px 0 0 -9px; 89 } 90 91 #poststuff .togbox { 92 margin-left: -19px; 93 } 94 95 * html .tablenav { 96 97 } 98 99 .tablenav .button-secondary { 100 padding: 0 1px; 101 vertical-align: middle; 102 } 103 104 .tablenav select { 105 font-size: 13px; 106 display: inline-block; 107 vertical-align: top; 108 margin-top: 2px; 109 } 110 111 .tablenav-pages .page-numbers { 112 display: inline-block; 113 } 114 115 .tablenav-pages { 116 display: block; 117 margin-top: -3px; 118 119 } 120 121 #post-search .button, #widget-search .button { 122 padding: 1px; 123 } 124 125 .widefat tr, .widefat th { 126 padding: 13px 25px 0 2px; 127 margin-bottom: 0; 128 border-spacing: 0; 129 } 130 131 .widefat thead th.check-column { 132 padding: 9px 2px 4px 3px; 133 } 134 135 .widefat tbody th.check-column { 136 padding: 4px 3px 22px 3px; 137 text-align:center; 138 width:1.8em; 139 } 140 141 .widefat th.num { 142 padding: 14px 16px 0; 143 } -
trunk/wp-admin/edit-form-advanced.php
r7480 r7484 208 208 <div class="inside"> 209 209 <p id="jaxtag"><input type="text" name="tags_input" class="tags-input" id="tags-input" size="40" tabindex="3" value="<?php echo get_tags_to_edit( $post_ID ); ?>" /></p> 210 < p id="tagchecklist"></p>210 <div id="tagchecklist"></div> 211 211 </div> 212 212 </div> -
trunk/wp-admin/edit-link-categories.php
r7307 r7484 125 125 </form> 126 126 127 <br class="clear" />128 129 127 <div class="tablenav"> 130 128 … … 135 133 <br class="clear" /> 136 134 </div> 135 <br class="clear" /> 137 136 138 137 </div> -
trunk/wp-admin/edit-tags.php
r7307 r7484 174 174 </form> 175 175 176 <br class="clear" />177 178 176 <div class="tablenav"> 179 177 … … 184 182 <br class="clear" /> 185 183 </div> 184 <br class="clear" /> 186 185 187 186 </div> -
trunk/wp-admin/edit.php
r7397 r7484 192 192 echo "<div class='tablenav-pages'>$page_links</div>"; 193 193 ?> 194 <br class="clear" /> 195 </div> 194 195 <br class="clear" /> 196 </div> 197 198 <br class="clear" /> 196 199 197 200 <?php -
trunk/wp-admin/includes/template.php
r7472 r7484 918 918 $getit = __( 'WordPress recommends a better browser' ); 919 919 echo ' 920 < p id="bh" class="alignright"><a href="http://browsehappy.com/" title="'.$getit.'"><img src="images/browse-happy.gif" alt="Browse Happy" /></a></p>920 <span id="bh" class="alignright"><a href="http://browsehappy.com/" title="'.$getit.'"><img src="images/browse-happy.gif" alt="Browse Happy" /></a></span> 921 921 '; 922 922 } -
trunk/wp-admin/upload.php
r7397 r7484 191 191 echo "<div class='tablenav-pages'>$page_links</div>"; 192 192 ?> 193 <br class="clear" /> 194 </div> 193 194 </div> 195 196 <br class="clear" /> 195 197 196 198 <?php -
trunk/wp-admin/wp-admin.css
r7466 r7484 139 139 140 140 .side-info h5 { 141 padding-bottom: 8px;141 padding-bottom: 7px; 142 142 font-size: 14px; 143 margin -bottom: 6px;143 margin: 12px 2px 5px; 144 144 border-bottom-width: 1px; 145 145 border-bottom-style: solid; … … 154 154 .submit input, .button, .button-secondary, .button-highlighted { 155 155 font-family: "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, sans-serif; 156 padding: 4px 6px;156 padding: 3px 5px; 157 157 font-size: 12px; 158 line-height: 1.5em; 158 159 border-width: 1px; 159 160 border-style: solid; … … 261 262 262 263 #quicktags #ed_toolbar { 263 padding: 1px 3px;264 padding: 2px 4px; 264 265 } 265 266 … … 268 269 padding: 2px 4px; 269 270 line-height: 18px; 271 display: inline-block; 270 272 } 271 273 … … 467 469 } 468 470 471 .tablenav select { 472 padding: 2px; 473 display: inline-block; 474 line-height: 2; 475 height: 2em; 476 477 } 478 479 .tablenav option { 480 margin: 3px; 481 display: inline-block; 482 } 483 469 484 .tablenav a.button-secondary { 470 485 display: inline-block; … … 474 489 .tablenav .button-secondary { 475 490 padding: 2px 4px; 491 476 492 } 477 493 … … 481 497 482 498 .tablenav { 483 padding: 10px 10px 8px; 499 height: 2em; 500 padding: 7px 10px; 484 501 clear: both; 485 502 margin-bottom: -10px; … … 489 506 .tablenav .tablenav-pages { 490 507 float: right; 491 height: 20px;492 padding-top: 4px;508 height: 18px; 509 padding-top: 6px; 493 510 font-size: 11px; 494 511 } … … 500 517 td.media-icon { 501 518 vertical-align: middle; 519 text-align: center; 502 520 } 503 521 … … 701 719 .post-com-count { 702 720 height: 1.3em; 721 line-height: 1.1em; 703 722 display: block; 704 723 text-decoration: none; 705 overflow: hidden; 706 padding: 0 0 5px; 724 padding: 0 0 6px; 707 725 cursor: pointer; 708 background-position: center -8 1px;726 background-position: center -80px; 709 727 background-repeat: no-repeat; 710 728 } … … 712 730 .post-com-count span { 713 731 height: 1.3em; 714 line-height: 1. 3em;732 line-height: 1.2em; 715 733 padding: 0 0.5em; 716 734 background-color: #bbb; 735 display: inline-block; 717 736 cursor: pointer; 718 737 -moz-border-radius: 3px; … … 877 896 /* Post Screen */ 878 897 898 #tagsdiv #newtag { 899 margin-right: 5px; 900 width: 16em; 901 } 902 879 903 #tagchecklist { 880 margin-left: 5px;881 padding-bottom: 20px; 904 margin-left: 10px; 905 882 906 font-size: 12px; 907 overflow: auto; 908 } 909 910 #tagchecklist strong { 911 margin-left: -8px; 912 position: absolute; 883 913 } 884 914 885 915 #tagchecklist span { 886 margin-right: 15px;916 margin-right: 25px; 887 917 display: block; 888 918 float: left; 889 919 font-size: 11px; 920 line-height: 1.8em; 921 white-space: nowrap; 922 cursor: default; 890 923 } 891 924 892 925 #tagchecklist span a { 893 margin -top: 5px;926 margin: 6px 0pt 0pt -9px; 894 927 cursor: pointer; 895 928 width: 10px; … … 899 932 text-indent: -9999px; 900 933 overflow: hidden; 934 position: absolute; 901 935 } 902 936 … … 933 967 #poststuff h2 { 934 968 margin-top: 20px; 935 margin-bottom: 20px; 969 font-size: 1.5em; 970 margin-bottom: 15px; 971 padding: 0 0 3px; 936 972 } 937 973 … … 939 975 font-size: 14px; 940 976 font-weight: bold; 941 padding: 9px 5px;977 padding: 7px; 942 978 margin: 0 0 10px; 943 979 } … … 946 982 margin-left: 20px; 947 983 padding: 2px; 948 margin-bottom: 10px;984 margin-bottom: 20px; 949 985 margin-right: 8px; 950 986 border-width: 1px; … … 954 990 #titlediv, #poststuff .postarea { 955 991 margin-left: 20px; 956 margin-bottom: 10px;992 margin-bottom: 20px; 957 993 margin-right: 8px; 958 994 } … … 981 1017 982 1018 #poststuff .inside { 983 margin: 0 12px 1 5px;1019 margin: 0 12px 12px; 984 1020 font-size: 11px; 985 1021 } … … 1015 1051 position: relative; 1016 1052 height: 30px; 1017 margin-top: -4 0px;1053 margin-top: -41px; 1018 1054 } 1019 1055 … … 1021 1057 display: block; 1022 1058 height: 20px; 1023 padding: 5px 5px 3px;1024 margin: 2px 8px 0 0;1059 padding: 5px 5px 1px; 1060 margin: 5px 8px 0 0; 1025 1061 float: right; 1026 1062 cursor: pointer; … … 1042 1078 float: right; 1043 1079 margin-right: 20px; 1044 margin-top: 6px;1080 margin-top: 8px; 1045 1081 cursor: default; 1046 line-height: 1 .1em;1082 line-height: 1; 1047 1083 height: 1.1em; 1048 1084 } … … 1058 1094 1059 1095 #poststuff .togbox { 1060 background-position: -10px 16px;1061 background-repeat: no-repeat;1062 display: block;1063 height: 39px;1064 margin-left: -19px;1065 margin-top: -11px;1066 overflow: hidden;1067 position: absolute;1068 text-indent: -9999px;1069 width: 12px;1096 background-position: -10px 16px; 1097 background-repeat: no-repeat; 1098 display: block; 1099 height: 37px; 1100 margin-left: -21px; 1101 margin-top: -10px; 1102 overflow: hidden; 1103 position: absolute; 1104 text-indent: -9999px; 1105 width: 12px; 1070 1106 -moz-border-radius-topleft: 3px; 1071 1107 -khtml-border-top-left-radius: 3px; … … 1087 1123 1088 1124 #poststuff .closed .togbox { 1089 background-position: 4px 1 6px;1125 background-position: 4px 15px; 1090 1126 } 1091 1127 … … 1200 1236 1201 1237 div.ui-tabs-panel { 1202 margin: 0 00 120px;1238 margin: 0 5px 0 120px; 1203 1239 padding: .5em .9em; 1204 height: 1 2em;1240 height: 10em; 1205 1241 overflow: auto; 1206 1242 border-width: 4px; … … 1276 1312 1277 1313 #post-search .button, #widget-search .button { 1278 padding: 4px;1314 padding: 3px; 1279 1315 font-size: 13px; 1280 1316 }
Note: See TracChangeset
for help on using the changeset viewer.