Changeset 9941
- Timestamp:
- 11/28/2008 07:35:33 AM (16 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/css/colors-fresh.css
r9929 r9941 1423 1423 } 1424 1424 1425 1426 form p.submit a.cancel {1427 border-color: red;1428 color: red;1429 text-shadow: none;1430 }1431 1432 form p.submit a.cancel:hover {1433 background: red;1434 color: white;1435 }1436 1437 1425 .misc-pub-section { 1438 1426 border-bottom-color: #eee; -
trunk/wp-admin/plugins.php
r9904 r9941 281 281 282 282 if ( 'active' == $context ) 283 $action_links[] = '<a href="' . wp_nonce_url('plugins.php?action=deactivate&plugin=' . $plugin_file, 'deactivate-plugin_' . $plugin_file) . '" title="' . __('Deactivate this plugin') . '" class="delete">' . __('Deactivate') . '</a>';283 $action_links[] = '<a href="' . wp_nonce_url('plugins.php?action=deactivate&plugin=' . $plugin_file, 'deactivate-plugin_' . $plugin_file) . '" title="' . __('Deactivate this plugin') . '">' . __('Deactivate') . '</a>'; 284 284 else //Inactive or Recently deactivated 285 285 $action_links[] = '<a href="' . wp_nonce_url('plugins.php?action=activate&plugin=' . $plugin_file, 'activate-plugin_' . $plugin_file) . '" title="' . __('Activate this plugin') . '" class="edit">' . __('Activate') . '</a>'; -
trunk/wp-admin/wp-admin.css
r9939 r9941 197 197 border-bottom-left-radius: 3px; 198 198 border-bottom-right-radius: 3px; 199 }200 201 form p.submit a.cancel {202 padding: 3px 0 0;203 background: transparent;204 border-width: 0 0 1px;205 border-style: none none solid;206 -moz-border-radius: 0;207 -webkit-border-radius: 0;208 -khtml-border-radius: 0;209 border-radius: 0;210 199 } 211 200 … … 351 340 } 352 341 353 a.button { 354 padding: 4px 8px; 342 a.button, 343 a.button-primary, 344 a.button-secondary { 345 line-height: 1.4em; 346 -webkit-border-radius: 10px; 347 padding: 3px 10px; 355 348 } 356 349
Note: See TracChangeset
for help on using the changeset viewer.