Changeset 3252
- Timestamp:
- 05/25/2016 05:33:00 PM (8 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/css/style.css
r3251 r3252 1662 1662 } 1663 1663 1664 .single .type-plugin .entry-content .read-more.toggled { 1665 max-height: none; 1666 } 1667 1664 1668 .single .type-plugin .entry-content .section-toggle { 1665 1669 font-size: 0.8rem; 1666 padding-top: 0.5rem;1670 margin-top: 0.5rem; 1667 1671 position: relative; 1668 1672 } … … 1673 1677 padding-left: 5px; 1674 1678 vertical-align: text-top; 1679 } 1680 1681 .single .type-plugin .entry-content .toggled + .section-toggle:after { 1682 content: "\f343"; 1675 1683 } 1676 1684 -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/functions.php
r3200 r3252 67 67 68 68 wp_enqueue_script( 'wporg-plugins-navigation', get_template_directory_uri() . '/js/navigation.js', array(), '20151215', true ); 69 70 69 wp_enqueue_script( 'wporg-plugins-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20151215', true ); 70 71 if ( is_singular( 'plugin' ) ) { 72 wp_enqueue_script( 'wporg-plugins-accordion', get_template_directory_uri() . '/js/section-accordion.js', array(), '20160525', true ); 73 } 71 74 } 72 75 add_action( 'wp_enqueue_scripts', __NAMESPACE__ . '\scripts' ); -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/sass/site/primary/_plugin-single.scss
r3223 r3252 62 62 margin-top: 0; 63 63 } 64 65 &.toggled { 66 max-height: none; 67 } 64 68 } 65 69 … … 67 71 @extend a; 68 72 font-size: ms(-2); 69 padding-top: 0.5rem;73 margin-top: 0.5rem; 70 74 position: relative; 71 75 … … 76 80 vertical-align: text-top; 77 81 } 82 } 83 84 .toggled + .section-toggle:after { 85 content: "\f343"; 78 86 } 79 87
Note: See TracChangeset
for help on using the changeset viewer.