Changeset 20077
- Timestamp:
- 03/02/2012 07:52:23 PM (13 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/css/colors-classic.dev.css
r20076 r20077 1834 1834 1835 1835 #post-body .misc-pub-section { 1836 border- right-color: #eee;1836 border-left-color: #eee; 1837 1837 } 1838 1838 -
trunk/wp-admin/css/colors-fresh.dev.css
r20076 r20077 1469 1469 1470 1470 #post-body .misc-pub-section { 1471 border- right-color: #eee;1471 border-left-color: #eee; 1472 1472 } 1473 1473 -
trunk/wp-admin/css/wp-admin.dev.css
r20076 r20077 940 940 padding: 10px 10px 8px; 941 941 clear: both; 942 border-top: none; 942 border-top: 1px solid #f5f5f5; 943 margin-top: -2px; 944 } 945 946 #post-body #major-publishing-actions { 947 border-top: 0; 948 margin-top: 0; 943 949 } 944 950 … … 965 971 966 972 #post-body .misc-pub-section { 967 border- right-width: 1px;968 border- right-style: solid;973 border-left-width: 1px; 974 border-left-style: solid; 969 975 border-top: 0; 970 976 border-bottom: 0; … … 972 978 float: left; 973 979 max-width: 32%; 980 } 981 982 #post-body .misc-pub-section:first-child { 983 border-left: 0; 974 984 } 975 985 … … 991 1001 border-top-width: 0; 992 1002 } 1003 993 1004 .misc-pub-section-last { 994 1005 border-bottom-width: 0; -
trunk/wp-admin/edit-form-comment.php
r19981 r20077 45 45 </div> 46 46 47 <div class="misc-pub-section curtime misc-pub-section-last">47 <div class="misc-pub-section curtime"> 48 48 <?php 49 49 // translators: Publish box date format, see http://php.net/date -
trunk/wp-admin/includes/meta-boxes.php
r19853 r20077 58 58 <div id="misc-publishing-actions"> 59 59 60 <div class="misc-pub-section <?php if ( !$can_publish ) { echo ' misc-pub-section-last'; } ?>"><label for="post_status"><?php _e('Status:') ?></label>60 <div class="misc-pub-section"><label for="post_status"><?php _e('Status:') ?></label> 61 61 <span id="post-status-display"> 62 62 <?php … … 108 108 </div><?php // /misc-pub-section ?> 109 109 110 <div class="misc-pub-section 110 <div class="misc-pub-section" id="visibility"> 111 111 <?php _e('Visibility:'); ?> <span id="post-visibility-display"><?php 112 112 … … 175 175 176 176 if ( $can_publish ) : // Contributors don't get to choose the date of publish ?> 177 <div class="misc-pub-section curtime misc-pub-section-last">177 <div class="misc-pub-section curtime"> 178 178 <span id="timestamp"> 179 179 <?php printf($stamp, $date); ?></span> … … 616 616 617 617 <div id="misc-publishing-actions"> 618 <div class="misc-pub-section misc-pub-section-last">618 <div class="misc-pub-section"> 619 619 <label for="link_private" class="selectit"><input id="link_private" name="link_visible" type="checkbox" value="N" <?php checked($link->link_visible, 'N'); ?> /> <?php _e('Keep this link private') ?></label> 620 620 </div>
Note: See TracChangeset
for help on using the changeset viewer.