Changeset 5269
- Timestamp:
- 04/06/2017 06:03:08 PM (6 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/class-plugin-directory.php
r5248 r5269 2 2 namespace WordPressdotorg\Plugin_Directory; 3 3 use WordPressdotorg\Plugin_Directory\Admin\Customizations; 4 use WordPressdotorg\Plugin_Directory\Admin\Tools\Author_Cards; 4 5 5 6 /** … … 73 74 if ( defined( 'WP_ADMIN' ) && WP_ADMIN ) { 74 75 Customizations::instance(); 76 Author_Cards::instance(); 75 77 76 78 add_action( 'wp_insert_post_data', array( __NAMESPACE__ . '\Admin\Status_Transitions', 'can_change_post_status' ), 10, 2 ); -
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/css/edit-form.css
r5265 r5269 321 321 background-color: darkred; 322 322 } 323 324 /* Additional Author Card styling for Author Cards tool */ 325 326 .author-cards .main { 327 margin-left: 0; 328 overflow: auto; 329 } 330 .author-cards .profile { 331 margin: 2px 12px 15px 0; 332 padding: 8px; 333 border: 1px solid #ccc; 334 overflow: auto; 335 } 336 .author-cards .profile-personal { 337 margin-top: 0.5em; 338 } 339 .author-cards .profile-links { 340 float: right; 341 } 342 .author-cards .profile { 343 background: #fff; 344 } 345 .author-cards .profile { 346 width: 310px; 347 float: left; 348 } 349 .author-cards .profile .avatar { 350 float: left; 351 margin-right: 10px; 352 margin-bottom: 10px; 353 } 354 .author-cards .plugins-plugins li { 355 display: inline; 356 margin-right: 0.5em; 357 } 358
Note: See TracChangeset
for help on using the changeset viewer.