Ticket #26082: 26082-2.patch
| File 26082-2.patch, 2.4 KB (added by , 12 years ago) |
|---|
-
src/wp-admin/css/wp-admin.css
1087 1087 padding: 2px; 1088 1088 line-height: 28px; 1089 1089 height: 28px; 1090 color: #555; 1091 border-color: #cccccc; 1092 background: #fff; 1093 -webkit-box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(0,0,0,.08); 1094 box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(0,0,0,.08); 1095 vertical-align: top; 1090 1096 } 1091 1097 1098 .wp-admin .button-cancel{ 1099 vertical-align: middle; 1100 padding: 0 5px; 1101 line-height: normal; 1102 } 1103 1092 1104 .meta-box-sortables select { 1093 1105 max-width: 100%; 1094 1106 } … … 4099 4111 } 4100 4112 4101 4113 #post-status-select { 4102 line-height: 2.5em;4103 4114 margin-top: 3px; 4104 4115 } 4105 4116 … … 4313 4324 } 4314 4325 4315 4326 #timestampdiv select { 4316 height: 2 0px;4327 height: 21px; 4317 4328 line-height: 14px; 4318 4329 padding: 0; 4319 4330 vertical-align: top; 4331 font-size: 12px; 4320 4332 } 4321 4333 4322 4334 #aa, #jj, #hh, #mn { -
src/wp-admin/includes/meta-boxes.php
99 99 <?php endif; ?> 100 100 </select> 101 101 <a href="#post_status" class="save-post-status hide-if-no-js button"><?php _e('OK'); ?></a> 102 <a href="#post_status" class="cancel-post-status hide-if-no-js "><?php _e('Cancel'); ?></a>102 <a href="#post_status" class="cancel-post-status hide-if-no-js button-cancel"><?php _e('Cancel'); ?></a> 103 103 </div> 104 104 105 105 <?php } ?> … … 143 143 144 144 <p> 145 145 <a href="#visibility" class="save-post-visibility hide-if-no-js button"><?php _e('OK'); ?></a> 146 <a href="#visibility" class="cancel-post-visibility hide-if-no-js "><?php _e('Cancel'); ?></a>146 <a href="#visibility" class="cancel-post-visibility hide-if-no-js button-cancel"><?php _e('Cancel'); ?></a> 147 147 </p> 148 148 </div> 149 149 <?php } ?> -
src/wp-admin/includes/template.php
686 686 687 687 <p> 688 688 <a href="#edit_timestamp" class="save-timestamp hide-if-no-js button"><?php _e('OK'); ?></a> 689 <a href="#edit_timestamp" class="cancel-timestamp hide-if-no-js "><?php _e('Cancel'); ?></a>689 <a href="#edit_timestamp" class="cancel-timestamp hide-if-no-js button-cancel"><?php _e('Cancel'); ?></a> 690 690 </p> 691 691 <?php 692 692 }