Changeset 1702
- Timestamp:
- 07/04/2015 10:01:00 PM (9 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress.php
r1521 r1702 10 10 <div id="pagebody"> 11 11 <div class="wrapper"> 12 <div class="content"> 13 <div id="lang-guess-wrap" style="margin-bottom: 1em;"></div> 12 <div class="col-12"> 13 <div class="content"> 14 <?php while ( have_posts() ) : the_post(); ?> 14 15 15 <?php while ( have_posts() ) : the_post(); ?>16 <?php the_content(); ?> 16 17 17 <?php the_content(); ?> 18 <?php endwhile; ?> 19 </div> 18 20 19 <?php endwhile; ?> 20 21 <?php get_sidebar(); ?> 21 22 </div> 22 23 <?php get_sidebar(); ?>24 23 25 24 </div> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/functions.php
r1579 r1702 21 21 */ 22 22 function wporg_support_scripts() { 23 wp_enqueue_style( 'forum-wp4-style', get_template_directory_uri() . '/css/forum-wp4.css' ); 24 wp_enqueue_style( 'bb-base', '//bbpress.org/wp-content/themes/bb-base/style.css?ver=20150216d' ); 23 24 wp_register_style( 25 'bb-base', 26 '//bbpress.org/wp-content/themes/bb-base/style.css', 27 array(), 28 '20150216d' 29 ); 30 31 wp_register_style( 32 'forum-wp4-style', 33 get_template_directory_uri() . '/style.css', 34 array( 'bb-base' ), 35 '20150704' 36 ); 37 38 wp_enqueue_style( 'forum-wp4-style' ); 25 39 } 26 40 add_action( 'wp_enqueue_scripts', 'wporg_support_scripts' ); -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/page.php
r1521 r1702 15 15 <div id="pagebody"> 16 16 <div class="wrapper"> 17 <div id="lang-guess-wrap" style="margin-bottom: 1em;"></div> 18 17 <div class="col-12"> 19 18 <?php while ( have_posts() ) : the_post(); ?> 20 19 … … 22 21 23 22 <?php endwhile; // end of the loop. ?> 24 23 </div> 25 24 </div> 26 25 </div> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/sidebar.php
r1536 r1702 12 12 </div> 13 13 14 <?php bb_base_topic_search_form(); ?> 14 <div> 15 <?php bb_base_topic_search_form(); ?> 16 </div> 15 17 16 18 <div> … … 39 41 </div> 40 42 41 <?php bb_base_reply_search_form(); ?> 43 <div> 44 <?php bb_base_reply_search_form(); ?> 45 </div> 42 46 43 47 <?php if ( current_user_can( 'moderate', bbp_get_topic_id() ) ) : ?> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/style.css
r1521 r1702 18 18 */ 19 19 20 /** 21 * 1.0 General 22 */ 23 20 24 html, 21 25 body { … … 25 29 #headline { 26 30 background: #f7f7f7; 27 border-bottom: 1px solid #dfdfdf; 31 border-bottom: 1px solid #dfdfdf; 28 32 } 29 33 30 /** 31 * 1.0 Dashicons 32 */ 33 body #headline h2 a:before { 34 -webkit-font-smoothing: antialiased; 35 display: inline-block; 36 font: normal 28px/1 'dashicons'; 37 vertical-align: top; 38 width: 36px; 34 a:hover { 35 text-decoration: none; 39 36 } 40 body #headline h2 a:before { content: '\f110'; }41 37 42 38 /** … … 45 41 46 42 .hidden, 47 #accessibility 43 #accessibility { 48 44 height: 0; 49 45 width: 0; … … 102 98 padding-left: 0; 103 99 } 100 101 .sidebar > div { 102 margin-bottom: 22px; 103 } 104 105 ul#views { 106 margin: 2px 0 20px; 107 font-size: 12px; 108 } 109 110 #views li { 111 list-style: none; 112 display: inline; 113 } 114 115 @media screen and ( min-width: 960px ) { 116 117 div.content { 118 width: 692px; 119 } 120 121 div.sidebar { 122 width: 212px; 123 } 124 }
Note: See TracChangeset
for help on using the changeset viewer.