Changeset 7066
- Timestamp:
- 02/27/2008 07:18:21 PM (17 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/css/global.css
r7031 r7066 66 66 .widefat td, .widefat th { 67 67 border-bottom: 1px solid #ccc; 68 font-size: 1 0px;69 padding: 10px 6px 20px 6px;68 font-size: 12px; 69 padding: 10px 10px 20px; 70 70 vertical-align: text-top; 71 71 } … … 88 88 margin: 0; 89 89 margin-left: 15px; 90 margin-right: 25px;90 margin-right: 15px; 91 91 padding: 0; 92 92 } -
trunk/wp-admin/export.php
r6997 r7066 15 15 <div class="wrap"> 16 16 <h2><?php _e('Export'); ?></h2> 17 <div class="narrow">18 17 <p><?php _e('When you click the button below WordPress will create an XML file for you to save to your computer.'); ?></p> 19 18 <p><?php _e('This format, which we call WordPress eXtended RSS or WXR, will contain your posts, comments, custom fields, and categories.'); ?></p> 20 19 <p><?php _e('Once you’ve saved the download file, you can use the Import function on another WordPress blog to import this blog.'); ?></p> 21 20 <form action="" method="get"> 22 <h3><?php _e('Option al options'); ?></h3>21 <h3><?php _e('Options'); ?></h3> 23 22 24 <table class=" niceblue">23 <table class="form-table"> 25 24 <tr> 26 <th><?php _e('Restrict Author :'); ?></th>25 <th><?php _e('Restrict Author'); ?></th> 27 26 <td> 28 27 <select name="author"> … … 44 43 </form> 45 44 </div> 46 </div>47 45 48 46 <?php -
trunk/wp-admin/plugins.php
r6980 r7066 82 82 } else { 83 83 ?> 84 <table class="widefat plugins"> 84 85 <div class="tablenav"> 86 <div style="float: left"> 87 <?php 88 $active = get_option('active_plugins'); 89 $inactive = get_option('deactivated_plugins'); 90 if ( !empty($active) ) { 91 ?> 92 <a class="button-secondary" href="<?php echo wp_nonce_url('plugins.php?action=deactivate-all', 'deactivate-all'); ?>" class="delete"><?php _e('Deactivate All Plugins'); ?></a> 93 <?php 94 } elseif ( empty($active) && !empty($inactive) ) { 95 ?> 96 <a class="button-secondary" href="<?php echo wp_nonce_url('plugins.php?action=reactivate-all', 'reactivate-all'); ?>" class="delete"><?php _e('Reactivate All Plugins'); ?></a> 97 <?php 98 } // endif active/inactive plugin check 99 ?> 100 </div> 101 <br style="clear:both;"> 102 </div> 103 104 <br style="clear:both;"> 105 106 <table class="widefat"> 85 107 <thead> 86 108 <tr> … … 88 110 <th style="text-align: center"><?php _e('Version'); ?></th> 89 111 <th><?php _e('Description'); ?></th> 90 <th style="text-align: center"<?php if ( current_user_can('edit_plugins') ) echo ' colspan="2"'; ?>><?php _e('Action'); ?></th>112 <th <?php if ( current_user_can('edit_plugins') ) echo ' colspan="2"'; ?>><?php _e('Action'); ?></th> 91 113 </tr> 92 114 </thead> 115 <tbody id="plugins"> 93 116 <?php 94 117 $style = ''; … … 127 150 <td class='vers'>{$plugin_data['Version']}</td> 128 151 <td class='desc'><p>{$plugin_data['Description']}$author</p></td> 129 <td class='togl'>$toggle</td>"; 130 if ( current_user_can('edit_plugins') ) 131 echo " 132 <td>$edit</td>"; 152 <td class='togl'>$toggle"; if ( current_user_can('edit_plugins') ) echo " | $edit</td>"; 133 153 echo" 134 154 </tr>"; … … 136 156 } 137 157 ?> 158 </tbody> 159 </table> 138 160 139 <tr>140 <td colspan="3"> </td>141 <td colspan="2" style="width:12em;">142 <?php143 $active = get_option('active_plugins');144 $inactive = get_option('deactivated_plugins');145 if ( !empty($active) ) {146 ?>147 <a href="<?php echo wp_nonce_url('plugins.php?action=deactivate-all', 'deactivate-all'); ?>" class="delete"><?php _e('Deactivate All Plugins'); ?></a>148 <?php149 } elseif ( empty($active) && !empty($inactive) ) {150 ?>151 <a href="<?php echo wp_nonce_url('plugins.php?action=reactivate-all', 'reactivate-all'); ?>" class="delete"><?php _e('Reactivate All Plugins'); ?></a>152 <?php153 } // endif active/inactive plugin check154 ?>155 </td>156 </tr>157 158 </table>159 161 <?php 160 162 } -
trunk/wp-admin/wp-admin.css
r7040 r7066 1 .plugins p { 2 margin: 4px; 3 padding: 0; 4 } 5 6 .plugins .name { 7 font-size: 16px; 1 #plugins .active td { 2 opacity:1; 3 filter:alpha(opacity=100) 4 } 5 6 #plugins .active td.name { 7 font-weight: bold; 8 } 9 10 #plugins td { 11 opacity:0.70; 12 filter:alpha(opacity=70) 13 } 14 15 #plugins p { 16 margin: 0 4px; 17 padding: 0; 18 } 19 20 #plugins .togl { 21 width: 150px; 8 22 } 9 23 … … 117 131 118 132 .submit { 119 margin: 1.5em 0 0 0; 133 border-top: 1px solid #ccc; 134 padding: 1.5em 0 0 0; 135 margin: 10px 0 0 0; 120 136 -moz-border-radius-bottomleft: 3px; 121 137 -khtml-border-bottom-left-radius: 3px; … … 198 214 padding: 0 15px; 199 215 margin-bottom: 20px; 200 margin-right: 15 %;216 margin-right: 15px; 201 217 } 202 218 … … 396 412 } 397 413 398 .active td {399 background: #BEB;400 }401 .active .name {402 background: #9C9;403 }404 .alternate.active td {405 background: #ADA;406 }407 .alternate.active .name {408 background: #8B8;409 }410 411 414 #ajax-response { 412 415 padding: .5em; … … 521 524 background-color: #e4f2fd; 522 525 border-color: #e4f2fd; 526 } 527 528 .tablenav a.button-secondary { 529 display: inline-block; 530 margin-right: 8px; 523 531 } 524 532 … … 604 612 #user_info { 605 613 position: absolute; 606 right: 25px;614 right: 15px; 607 615 top: 11px; 608 616 color: #ccc; … … 743 751 744 752 #sidemenu { 745 margin: -30px 15 %0 315px;753 margin: -30px 15px 0 315px; 746 754 color: #999; 747 755 list-style: none; … … 913 921 margin-top: 1em; 914 922 width: 100%; 923 margin-bottom: -8px; 915 924 } 916 925 … … 926 935 padding: 10px; 927 936 border-bottom: 8px solid #fff; 937 width: 150px; 928 938 } 929 939 … … 1135 1145 background-color: #eaf3fa; 1136 1146 width: 200px; 1137 right: 25px;1147 right: 15px; 1138 1148 } 1139 1149 … … 1387 1397 #the-comment-list td { 1388 1398 vertical-align: top; 1389 font-size: 1 1px;1399 font-size: 12px; 1390 1400 } 1391 1401
Note: See TracChangeset
for help on using the changeset viewer.