Changeset 26247
- Timestamp:
- 11/18/2013 06:52:06 PM (11 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/wp-admin.css
r26240 r26247 1088 1088 line-height: 28px; 1089 1089 height: 28px; 1090 color: #555; 1091 vertical-align: top; 1092 } 1093 1094 .wp-admin .button-cancel { 1095 padding: 0 5px; 1096 line-height: 2; 1090 1097 } 1091 1098 … … 4100 4107 4101 4108 #post-status-select { 4102 line-height: 2.5em;4103 4109 margin-top: 3px; 4104 4110 } … … 4314 4320 4315 4321 #timestampdiv select { 4316 height: 2 0px;4322 height: 21px; 4317 4323 line-height: 14px; 4318 4324 padding: 0; 4319 4325 vertical-align: top; 4326 font-size: 12px; 4320 4327 } 4321 4328 … … 11094 11101 font-size: 16px; 11095 11102 } 11103 11104 .wp-admin .button-cancel { 11105 padding: 0; 11106 font-size: 14px; 11107 } 11096 11108 11097 11109 .wp-core-ui .button, 11110 .wp-core-ui .button:active, /* Override non-responsive active styles in buttons.css */ 11098 11111 input#publish, 11099 11112 input#save-post, … … 11369 11382 11370 11383 .wp-core-ui .save-post-status.button { 11371 top: 16px;11372 11384 position: relative; 11373 margin: 0 1 0px;11385 margin: 0 14px 0 10px; /* 14px right margin to match all other buttons */ 11374 11386 } 11375 11387 -
trunk/src/wp-admin/includes/meta-boxes.php
r25670 r26247 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 … … 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> -
trunk/src/wp-admin/includes/template.php
r26089 r26247 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
Note: See TracChangeset
for help on using the changeset viewer.