Version Description
- RTL and i18n fixes
- Improved user profile theme compatibility
- Fixed incorrect link in credits page
- Fixed admin area JS issues related to topic suggest
- Fixed template part reference in extras user edit template
Download this release
Release Info
| Developer | johnjamesjacoby |
| Plugin | |
| Version | 2.2.2 |
| Comparing to | |
| See all releases | |
Code changes from version 2.2.1 to 2.2.2
- bbpress.php +3 -3
- includes/admin/admin.php +10 -2
- readme.txt +8 -1
- templates/default/bbpress/form-user-edit.php +0 -2
- templates/default/bbpress/loop-single-topic.php +30 -30
- templates/default/bbpress/user-topics-created.php +2 -2
- templates/default/css/bbpress-rtl.css +114 -111
- templates/default/css/bbpress.css +31 -16
- templates/default/extras/single-user-edit.php +1 -1
bbpress.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
*
|
| 6 |
* bbPress is forum software with a twist from the creators of WordPress.
|
| 7 |
*
|
| 8 |
-
* $Id: bbpress.php
|
| 9 |
*
|
| 10 |
* @package bbPress
|
| 11 |
* @subpackage Main
|
|
@@ -17,7 +17,7 @@
|
|
| 17 |
* Description: bbPress is forum software with a twist from the creators of WordPress.
|
| 18 |
* Author: The bbPress Community
|
| 19 |
* Author URI: http://bbpress.org
|
| 20 |
-
* Version: 2.2.
|
| 21 |
* Text Domain: bbpress
|
| 22 |
* Domain Path: /languages/
|
| 23 |
*/
|
|
@@ -180,7 +180,7 @@ final class bbPress {
|
|
| 180 |
|
| 181 |
/** Versions **********************************************************/
|
| 182 |
|
| 183 |
-
$this->version = '2.2.
|
| 184 |
$this->db_version = '220';
|
| 185 |
|
| 186 |
/** Paths *************************************************************/
|
| 5 |
*
|
| 6 |
* bbPress is forum software with a twist from the creators of WordPress.
|
| 7 |
*
|
| 8 |
+
* $Id: bbpress.php 4471 2012-11-23 11:24:58Z johnjamesjacoby $
|
| 9 |
*
|
| 10 |
* @package bbPress
|
| 11 |
* @subpackage Main
|
| 17 |
* Description: bbPress is forum software with a twist from the creators of WordPress.
|
| 18 |
* Author: The bbPress Community
|
| 19 |
* Author URI: http://bbpress.org
|
| 20 |
+
* Version: 2.2.2
|
| 21 |
* Text Domain: bbpress
|
| 22 |
* Domain Path: /languages/
|
| 23 |
*/
|
| 180 |
|
| 181 |
/** Versions **********************************************************/
|
| 182 |
|
| 183 |
+
$this->version = '2.2.2';
|
| 184 |
$this->db_version = '220';
|
| 185 |
|
| 186 |
/** Paths *************************************************************/
|
includes/admin/admin.php
CHANGED
|
@@ -531,7 +531,9 @@ class BBP_Admin {
|
|
| 531 |
// Top level menu classes
|
| 532 |
$forum_class = sanitize_html_class( bbp_get_forum_post_type() );
|
| 533 |
$topic_class = sanitize_html_class( bbp_get_topic_post_type() );
|
| 534 |
-
$reply_class = sanitize_html_class( bbp_get_reply_post_type() );
|
|
|
|
|
|
|
| 535 |
|
| 536 |
<script type="text/javascript">
|
| 537 |
jQuery(document).ready(function() {
|
|
@@ -547,6 +549,8 @@ class BBP_Admin {
|
|
| 547 |
});
|
| 548 |
</script>
|
| 549 |
|
|
|
|
|
|
|
| 550 |
<style type="text/css" media="screen">
|
| 551 |
/*<![CDATA[*/
|
| 552 |
|
|
@@ -576,6 +580,10 @@ class BBP_Admin {
|
|
| 576 |
top: 0;
|
| 577 |
right: 0;
|
| 578 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
| 579 |
|
| 580 |
#bbp-dashboard-right-now p.sub,
|
| 581 |
#bbp-dashboard-right-now .table,
|
|
@@ -1473,7 +1481,7 @@ class BBP_Admin {
|
|
| 1473 |
<a href="http://profiles.wordpress.org/chexee">chexee</a>,
|
| 1474 |
<a href="http://profiles.wordpress.org/cnorris23">cnorris23</a>,
|
| 1475 |
<a href="http://profiles.wordpress.org/DanielJuhl">DanielJuhl</a>,
|
| 1476 |
-
<a href="http://profiles.wordpress.org/
|
| 1477 |
<a href="http://profiles.wordpress.org/dimadin">dimadin</a>,
|
| 1478 |
<a href="http://profiles.wordpress.org/DJPaul">DJPaul</a>,
|
| 1479 |
<a href="http://profiles.wordpress.org/duck_">duck_</a>,
|
| 531 |
// Top level menu classes
|
| 532 |
$forum_class = sanitize_html_class( bbp_get_forum_post_type() );
|
| 533 |
$topic_class = sanitize_html_class( bbp_get_topic_post_type() );
|
| 534 |
+
$reply_class = sanitize_html_class( bbp_get_reply_post_type() );
|
| 535 |
+
|
| 536 |
+
if ( ( 'post' == get_current_screen()->base ) && ( bbp_get_reply_post_type() == get_current_screen()->post_type ) ) : ?>
|
| 537 |
|
| 538 |
<script type="text/javascript">
|
| 539 |
jQuery(document).ready(function() {
|
| 549 |
});
|
| 550 |
</script>
|
| 551 |
|
| 552 |
+
<?php endif; ?>
|
| 553 |
+
|
| 554 |
<style type="text/css" media="screen">
|
| 555 |
/*<![CDATA[*/
|
| 556 |
|
| 580 |
top: 0;
|
| 581 |
right: 0;
|
| 582 |
}
|
| 583 |
+
body.rtl .about-wrap .bbp-badge {
|
| 584 |
+
right: auto;
|
| 585 |
+
left: 0;
|
| 586 |
+
}
|
| 587 |
|
| 588 |
#bbp-dashboard-right-now p.sub,
|
| 589 |
#bbp-dashboard-right-now .table,
|
| 1481 |
<a href="http://profiles.wordpress.org/chexee">chexee</a>,
|
| 1482 |
<a href="http://profiles.wordpress.org/cnorris23">cnorris23</a>,
|
| 1483 |
<a href="http://profiles.wordpress.org/DanielJuhl">DanielJuhl</a>,
|
| 1484 |
+
<a href="http://profiles.wordpress.org/daveshine">daveshine</a>,
|
| 1485 |
<a href="http://profiles.wordpress.org/dimadin">dimadin</a>,
|
| 1486 |
<a href="http://profiles.wordpress.org/DJPaul">DJPaul</a>,
|
| 1487 |
<a href="http://profiles.wordpress.org/duck_">duck_</a>,
|
readme.txt
CHANGED
|
@@ -3,7 +3,7 @@ Contributors: matt, johnjamesjacoby
|
|
| 3 |
Tags: forums, discussion, support, theme, akismet, multisite
|
| 4 |
Requires at least: 3.4
|
| 5 |
Tested up to: 3.5
|
| 6 |
-
Stable tag: 2.2.
|
| 7 |
License: GPLv2 or later
|
| 8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 9 |
|
|
@@ -26,6 +26,13 @@ We're keeping things as small and light as possible while still allowing for gre
|
|
| 26 |
|
| 27 |
== Changelog ==
|
| 28 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 29 |
= 2.2.1 =
|
| 30 |
* Fix role mapping for non-WordPress roles
|
| 31 |
* Fix issue with private forums being blocked
|
| 3 |
Tags: forums, discussion, support, theme, akismet, multisite
|
| 4 |
Requires at least: 3.4
|
| 5 |
Tested up to: 3.5
|
| 6 |
+
Stable tag: 2.2.2
|
| 7 |
License: GPLv2 or later
|
| 8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 9 |
|
| 26 |
|
| 27 |
== Changelog ==
|
| 28 |
|
| 29 |
+
= 2.2.2 =
|
| 30 |
+
* RTL and i18n fixes
|
| 31 |
+
* Improved user profile theme compatibility
|
| 32 |
+
* Fixed incorrect link in credits page
|
| 33 |
+
* Fixed admin area JS issues related to topic suggest
|
| 34 |
+
* Fixed template part reference in extras user edit template
|
| 35 |
+
|
| 36 |
= 2.2.1 =
|
| 37 |
* Fix role mapping for non-WordPress roles
|
| 38 |
* Fix issue with private forums being blocked
|
templates/default/bbpress/form-user-edit.php
CHANGED
|
@@ -81,7 +81,6 @@
|
|
| 81 |
<div>
|
| 82 |
<label for="description"><?php _e( 'Biographical Info', 'bbpress' ); ?></label>
|
| 83 |
<textarea name="description" id="description" rows="5" cols="30" tabindex="<?php bbp_tab_index(); ?>"><?php echo esc_attr( bbp_get_displayed_user_field( 'description' ) ); ?></textarea>
|
| 84 |
-
<span class="description"><?php _e( 'Share a little biographical information to fill out your profile. This may be shown publicly.', 'bbpress' ); ?></span>
|
| 85 |
</div>
|
| 86 |
|
| 87 |
<?php do_action( 'bbp_user_edit_after_about' ); ?>
|
|
@@ -98,7 +97,6 @@
|
|
| 98 |
<div>
|
| 99 |
<label for="user_login"><?php _e( 'Username', 'bbpress' ); ?></label>
|
| 100 |
<input type="text" name="user_login" id="user_login" value="<?php echo esc_attr( bbp_get_displayed_user_field( 'user_login' ) ); ?>" disabled="disabled" class="regular-text" tabindex="<?php bbp_tab_index(); ?>" />
|
| 101 |
-
<span class="description"><?php _e( 'Usernames cannot be changed.', 'bbpress' ); ?></span>
|
| 102 |
</div>
|
| 103 |
|
| 104 |
<div>
|
| 81 |
<div>
|
| 82 |
<label for="description"><?php _e( 'Biographical Info', 'bbpress' ); ?></label>
|
| 83 |
<textarea name="description" id="description" rows="5" cols="30" tabindex="<?php bbp_tab_index(); ?>"><?php echo esc_attr( bbp_get_displayed_user_field( 'description' ) ); ?></textarea>
|
|
|
|
| 84 |
</div>
|
| 85 |
|
| 86 |
<?php do_action( 'bbp_user_edit_after_about' ); ?>
|
| 97 |
<div>
|
| 98 |
<label for="user_login"><?php _e( 'Username', 'bbpress' ); ?></label>
|
| 99 |
<input type="text" name="user_login" id="user_login" value="<?php echo esc_attr( bbp_get_displayed_user_field( 'user_login' ) ); ?>" disabled="disabled" class="regular-text" tabindex="<?php bbp_tab_index(); ?>" />
|
|
|
|
| 100 |
</div>
|
| 101 |
|
| 102 |
<div>
|
templates/default/bbpress/loop-single-topic.php
CHANGED
|
@@ -13,6 +13,36 @@
|
|
| 13 |
|
| 14 |
<li class="bbp-topic-title">
|
| 15 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
<?php do_action( 'bbp_theme_before_topic_title' ); ?>
|
| 17 |
|
| 18 |
<a class="bbp-topic-permalink" href="<?php bbp_topic_permalink(); ?>" title="<?php bbp_topic_title(); ?>"><?php bbp_topic_title(); ?></a>
|
|
@@ -72,34 +102,4 @@
|
|
| 72 |
</p>
|
| 73 |
</li>
|
| 74 |
|
| 75 |
-
<?php if ( bbp_is_user_home() ) : ?>
|
| 76 |
-
|
| 77 |
-
<?php if ( bbp_is_favorites() ) : ?>
|
| 78 |
-
|
| 79 |
-
<li class="bbp-topic-action">
|
| 80 |
-
|
| 81 |
-
<?php do_action( 'bbp_theme_before_topic_favorites_action' ); ?>
|
| 82 |
-
|
| 83 |
-
<?php bbp_user_favorites_link( array( 'mid' => '+', 'post' => '' ), array( 'pre' => '', 'mid' => '×', 'post' => '' ) ); ?>
|
| 84 |
-
|
| 85 |
-
<?php do_action( 'bbp_theme_after_topic_favorites_action' ); ?>
|
| 86 |
-
|
| 87 |
-
</li>
|
| 88 |
-
|
| 89 |
-
<?php elseif ( bbp_is_subscriptions() ) : ?>
|
| 90 |
-
|
| 91 |
-
<li class="bbp-topic-action">
|
| 92 |
-
|
| 93 |
-
<?php do_action( 'bbp_theme_before_topic_subscription_action' ); ?>
|
| 94 |
-
|
| 95 |
-
<?php bbp_user_subscribe_link( array( 'before' => '', 'subscribe' => '+', 'unsubscribe' => '×' ) ); ?>
|
| 96 |
-
|
| 97 |
-
<?php do_action( 'bbp_theme_after_topic_subscription_action' ); ?>
|
| 98 |
-
|
| 99 |
-
</li>
|
| 100 |
-
|
| 101 |
-
<?php endif; ?>
|
| 102 |
-
|
| 103 |
-
<?php endif; ?>
|
| 104 |
-
|
| 105 |
</ul><!-- #topic-<?php bbp_topic_id(); ?> -->
|
| 13 |
|
| 14 |
<li class="bbp-topic-title">
|
| 15 |
|
| 16 |
+
<?php if ( bbp_is_user_home() ) : ?>
|
| 17 |
+
|
| 18 |
+
<?php if ( bbp_is_favorites() ) : ?>
|
| 19 |
+
|
| 20 |
+
<span class="bbp-topic-action">
|
| 21 |
+
|
| 22 |
+
<?php do_action( 'bbp_theme_before_topic_favorites_action' ); ?>
|
| 23 |
+
|
| 24 |
+
<?php bbp_user_favorites_link( array( 'mid' => '+', 'post' => '' ), array( 'pre' => '', 'mid' => '×', 'post' => '' ) ); ?>
|
| 25 |
+
|
| 26 |
+
<?php do_action( 'bbp_theme_after_topic_favorites_action' ); ?>
|
| 27 |
+
|
| 28 |
+
</span>
|
| 29 |
+
|
| 30 |
+
<?php elseif ( bbp_is_subscriptions() ) : ?>
|
| 31 |
+
|
| 32 |
+
<span class="bbp-topic-action">
|
| 33 |
+
|
| 34 |
+
<?php do_action( 'bbp_theme_before_topic_subscription_action' ); ?>
|
| 35 |
+
|
| 36 |
+
<?php bbp_user_subscribe_link( array( 'before' => '', 'subscribe' => '+', 'unsubscribe' => '×' ) ); ?>
|
| 37 |
+
|
| 38 |
+
<?php do_action( 'bbp_theme_after_topic_subscription_action' ); ?>
|
| 39 |
+
|
| 40 |
+
</span>
|
| 41 |
+
|
| 42 |
+
<?php endif; ?>
|
| 43 |
+
|
| 44 |
+
<?php endif; ?>
|
| 45 |
+
|
| 46 |
<?php do_action( 'bbp_theme_before_topic_title' ); ?>
|
| 47 |
|
| 48 |
<a class="bbp-topic-permalink" href="<?php bbp_topic_permalink(); ?>" title="<?php bbp_topic_title(); ?>"><?php bbp_topic_title(); ?></a>
|
| 102 |
</p>
|
| 103 |
</li>
|
| 104 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 105 |
</ul><!-- #topic-<?php bbp_topic_id(); ?> -->
|
templates/default/bbpress/user-topics-created.php
CHANGED
|
@@ -11,7 +11,7 @@
|
|
| 11 |
|
| 12 |
<?php do_action( 'bbp_template_before_user_topics_created' ); ?>
|
| 13 |
|
| 14 |
-
<div id="bbp-user-topics-started" class="bbp-
|
| 15 |
<h2 class="entry-title"><?php _e( 'Forum Topics Started', 'bbpress' ); ?></h2>
|
| 16 |
<div class="bbp-user-section">
|
| 17 |
|
|
@@ -30,6 +30,6 @@
|
|
| 30 |
<?php endif; ?>
|
| 31 |
|
| 32 |
</div>
|
| 33 |
-
</div><!-- #bbp-
|
| 34 |
|
| 35 |
<?php do_action( 'bbp_template_after_user_topics_created' ); ?>
|
| 11 |
|
| 12 |
<?php do_action( 'bbp_template_before_user_topics_created' ); ?>
|
| 13 |
|
| 14 |
+
<div id="bbp-user-topics-started" class="bbp-user-topics-started">
|
| 15 |
<h2 class="entry-title"><?php _e( 'Forum Topics Started', 'bbpress' ); ?></h2>
|
| 16 |
<div class="bbp-user-section">
|
| 17 |
|
| 30 |
<?php endif; ?>
|
| 31 |
|
| 32 |
</div>
|
| 33 |
+
</div><!-- #bbp-user-topics-started -->
|
| 34 |
|
| 35 |
<?php do_action( 'bbp_template_after_user_topics_created' ); ?>
|
templates/default/css/bbpress-rtl.css
CHANGED
|
@@ -139,14 +139,14 @@ li.bbp-topic-title {
|
|
| 139 |
li.bbp-forum-topic-count,
|
| 140 |
li.bbp-topic-voice-count,
|
| 141 |
li.bbp-forum-reply-count,
|
| 142 |
-
li.bbp-topic-reply-count{
|
| 143 |
float: right;
|
| 144 |
text-align: center;
|
| 145 |
width: 10%;
|
| 146 |
}
|
| 147 |
|
| 148 |
li.bbp-forum-freshness,
|
| 149 |
-
li.bbp-topic-freshness{
|
| 150 |
text-align: center;
|
| 151 |
float: right;
|
| 152 |
width: 22%;
|
|
@@ -184,7 +184,13 @@ li.bbp-header div.bbp-reply-content span#favorite-toggle {
|
|
| 184 |
|
| 185 |
#bbpress-forums div.bbp-topic-author a.bbp-author-name,
|
| 186 |
#bbpress-forums div.bbp-reply-author a.bbp-author-name {
|
| 187 |
-
word-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 188 |
}
|
| 189 |
|
| 190 |
#bbpress-forums div.bbp-topic-content,
|
|
@@ -199,6 +205,7 @@ li.bbp-header div.bbp-reply-content span#favorite-toggle {
|
|
| 199 |
#bbpress-forums li.bbp-header .bbp-reply-author,
|
| 200 |
#bbpress-forums li.bbp-footer .bbp-reply-author {
|
| 201 |
float: right;
|
|
|
|
| 202 |
padding: 0;
|
| 203 |
width: 120px;
|
| 204 |
}
|
|
@@ -245,8 +252,8 @@ div.bbp-topic-tags {
|
|
| 245 |
font-size: 12px;
|
| 246 |
}
|
| 247 |
|
| 248 |
-
#
|
| 249 |
-
#
|
| 250 |
margin-bottom: 10px
|
| 251 |
}
|
| 252 |
|
|
@@ -339,12 +346,12 @@ td.bbp-topic-counts {
|
|
| 339 |
background-color: #fdd;
|
| 340 |
}
|
| 341 |
|
| 342 |
-
#
|
| 343 |
-
margin
|
| 344 |
font-size: 11px;
|
| 345 |
}
|
| 346 |
|
| 347 |
-
#
|
| 348 |
white-space: nowrap;
|
| 349 |
}
|
| 350 |
|
|
@@ -360,7 +367,7 @@ td.bbp-topic-counts {
|
|
| 360 |
.bbp-pagination {
|
| 361 |
float: right;
|
| 362 |
width: 100%;
|
| 363 |
-
margin-bottom:
|
| 364 |
}
|
| 365 |
|
| 366 |
.bbp-topic-pagination {
|
|
@@ -378,29 +385,22 @@ td.bbp-topic-counts {
|
|
| 378 |
|
| 379 |
/* =Forms
|
| 380 |
-------------------------------------------------------------- */
|
| 381 |
-
|
| 382 |
-
#
|
| 383 |
-
#wrapper fieldset.bbp-form {
|
| 384 |
clear: right;
|
| 385 |
}
|
| 386 |
|
| 387 |
-
#
|
| 388 |
-
#container fieldset.bbp-form,
|
| 389 |
-
#wrapper fieldset.bbp-form {
|
| 390 |
border: 1px solid #eee;
|
| 391 |
padding: 10px 20px;
|
| 392 |
margin-bottom: 10px;
|
| 393 |
}
|
| 394 |
|
| 395 |
-
#
|
| 396 |
-
#container fieldset.bbp-form legend,
|
| 397 |
-
#wrapper fieldset.bbp-form legend {
|
| 398 |
padding: 5px;
|
| 399 |
}
|
| 400 |
|
| 401 |
-
#
|
| 402 |
-
#container fieldset.bbp-form label,
|
| 403 |
-
#wrapper fieldset.bbp-form label {
|
| 404 |
margin: 0;
|
| 405 |
display: inline-block;
|
| 406 |
}
|
|
@@ -412,19 +412,11 @@ td.bbp-topic-counts {
|
|
| 412 |
width: 100px;
|
| 413 |
}
|
| 414 |
|
| 415 |
-
#
|
| 416 |
-
#
|
| 417 |
-
#
|
| 418 |
-
#
|
| 419 |
-
|
| 420 |
-
#wrapper fieldset.bbp-form textarea,
|
| 421 |
-
#content fieldset.bbp-form select,
|
| 422 |
-
#container fieldset.bbp-form select,
|
| 423 |
-
#wrapper fieldset.bbp-form select,
|
| 424 |
-
#content fieldset.bbp-form input,
|
| 425 |
-
#container fieldset.bbp-form input,
|
| 426 |
-
#wrapper fieldset.bbp-form input {
|
| 427 |
-
margin: 0 0 10px;
|
| 428 |
}
|
| 429 |
|
| 430 |
textarea#bbp_reply_content,
|
|
@@ -438,9 +430,7 @@ textarea#bbp_forum_content {
|
|
| 438 |
height: 210px;
|
| 439 |
}
|
| 440 |
|
| 441 |
-
#
|
| 442 |
-
#container fieldset.bbp-forum-form-attributes,
|
| 443 |
-
#wrapper fieldset.bbp-forum-form-attributes {
|
| 444 |
width: 200px;
|
| 445 |
float: left;
|
| 446 |
clear: none;
|
|
@@ -500,29 +490,22 @@ p.form-allowed-tags {
|
|
| 500 |
width: 462px;
|
| 501 |
}
|
| 502 |
|
| 503 |
-
input[type="password"] {
|
| 504 |
-
background: #f9f9f9;
|
| 505 |
-
border: 1px solid #ccc;
|
| 506 |
-
box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
|
| 507 |
-
padding: 2px;
|
| 508 |
-
}
|
| 509 |
-
|
| 510 |
/* =TinyMCE in themes
|
| 511 |
-------------------------------------------------------------- */
|
| 512 |
-
#
|
| 513 |
margin-bottom: 10px;
|
| 514 |
}
|
| 515 |
|
| 516 |
-
#
|
| 517 |
width: 100%;
|
| 518 |
margin: 0;
|
| 519 |
font-size: 12px;
|
| 520 |
}
|
| 521 |
|
| 522 |
-
#
|
| 523 |
-
#
|
| 524 |
-
#
|
| 525 |
-
#
|
| 526 |
border: none;
|
| 527 |
padding: 0;
|
| 528 |
margin: 0;
|
|
@@ -530,7 +513,7 @@ input[type="password"] {
|
|
| 530 |
line-height: 1em;
|
| 531 |
}
|
| 532 |
|
| 533 |
-
#
|
| 534 |
font-size: 12px;
|
| 535 |
padding: 5px;
|
| 536 |
margin: 3px 0 0;
|
|
@@ -538,93 +521,116 @@ input[type="password"] {
|
|
| 538 |
margin: 0;
|
| 539 |
}
|
| 540 |
|
| 541 |
-
#
|
| 542 |
padding: 5px;
|
| 543 |
min-height: 26px;
|
| 544 |
}
|
| 545 |
-
#
|
| 546 |
padding: 4px 4px 8px;
|
| 547 |
}
|
| 548 |
|
| 549 |
-
#
|
| 550 |
margin: 0;
|
| 551 |
padding: 0;
|
| 552 |
line-height: 0;
|
| 553 |
}
|
| 554 |
|
| 555 |
-
#
|
| 556 |
line-height: 16px;
|
| 557 |
}
|
| 558 |
|
| 559 |
/* =Edit User
|
| 560 |
-------------------------------------------------------------- */
|
| 561 |
|
| 562 |
-
#bbp-your-profile fieldset {
|
| 563 |
-
margin-top: 20px;
|
| 564 |
padding: 20px 20px 0 20px;
|
| 565 |
}
|
| 566 |
-
#bbp-your-profile fieldset div {
|
| 567 |
margin-bottom: 20px;
|
| 568 |
float: right;
|
| 569 |
width: 100%;
|
| 570 |
clear: right;
|
| 571 |
}
|
| 572 |
-
#bbp-your-profile fieldset select {
|
| 573 |
margin-bottom: 0;
|
| 574 |
}
|
| 575 |
-
#bbp-your-profile fieldset input,
|
| 576 |
-
#bbp-your-profile fieldset textarea {
|
| 577 |
margin-bottom: 0;
|
| 578 |
-
width:
|
| 579 |
background: #f9f9f9;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 580 |
border: 1px solid #ccc;
|
| 581 |
box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
|
| 582 |
-
|
|
|
|
|
|
|
|
|
|
| 583 |
}
|
| 584 |
-
#bbp-your-profile fieldset legend {
|
| 585 |
display: none;
|
| 586 |
}
|
| 587 |
-
#
|
| 588 |
-
#container #bbp-your-profile fieldset label {
|
| 589 |
float: right;
|
| 590 |
-
width:
|
| 591 |
-
padding
|
| 592 |
text-align: left;
|
|
|
|
| 593 |
}
|
| 594 |
-
#bbp-your-profile fieldset
|
| 595 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 596 |
font-size: 12px;
|
| 597 |
font-style: italic;
|
| 598 |
float: right;
|
| 599 |
clear: right;
|
| 600 |
-
width:
|
| 601 |
-
padding: 5px
|
| 602 |
border: #cee1ef 1px solid;
|
| 603 |
background-color: #f0f8ff;
|
| 604 |
}
|
| 605 |
|
| 606 |
-
#
|
| 607 |
-
#container #bbp-your-profile fieldset fieldset {
|
| 608 |
margin: 0;
|
| 609 |
-
width: 260px;
|
| 610 |
border: none;
|
| 611 |
padding: 0;
|
| 612 |
clear: none;
|
| 613 |
float: none;
|
| 614 |
}
|
| 615 |
-
#bbp-your-profile fieldset fieldset
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 616 |
margin-right: 0;
|
| 617 |
margin-bottom: 20px;
|
| 618 |
}
|
| 619 |
|
| 620 |
-
#bbp-your-profile fieldset.submit button {
|
| 621 |
float: left;
|
| 622 |
}
|
| 623 |
|
| 624 |
/* =Notices
|
| 625 |
-------------------------------------------------------------- */
|
| 626 |
|
| 627 |
-
div.bbp-template-notice
|
|
|
|
| 628 |
border-width: 1px;
|
| 629 |
border-style: solid;
|
| 630 |
padding: 0 0.6em;
|
|
@@ -679,14 +685,8 @@ div.bbp-template-notice a {
|
|
| 679 |
|
| 680 |
/* =Revisions
|
| 681 |
-------------------------------------------------------------- */
|
| 682 |
-
#
|
| 683 |
-
#
|
| 684 |
-
|
| 685 |
-
#main .bbp-topic-revision-log,
|
| 686 |
-
#main .bbp-reply-revision-log,
|
| 687 |
-
|
| 688 |
-
#container .bbp-topic-revision-log,
|
| 689 |
-
#container .bbp-reply-revision-log {
|
| 690 |
border-top: 1px dotted #ddd;
|
| 691 |
list-style: none;
|
| 692 |
width: 100%;
|
|
@@ -709,12 +709,17 @@ div.bbp-template-notice a {
|
|
| 709 |
padding: 5px;
|
| 710 |
}
|
| 711 |
|
| 712 |
-
.bbp-login-form
|
| 713 |
-
|
| 714 |
-
width: 70px;
|
| 715 |
display: inline-block;
|
| 716 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 717 |
.bbp-login-form .bbp-username,
|
|
|
|
| 718 |
.bbp-login-form .bbp-password,
|
| 719 |
.bbp-login-form .bbp-remember-me,
|
| 720 |
.bbp-login-form .bbp-submit-wrapper {
|
|
@@ -739,7 +744,7 @@ div.bbp-template-notice a {
|
|
| 739 |
|
| 740 |
.bbp-logged-in img.avatar {
|
| 741 |
float: right;
|
| 742 |
-
margin
|
| 743 |
}
|
| 744 |
|
| 745 |
.bbp-logged-in h4 {
|
|
@@ -788,18 +793,31 @@ fieldset div.avatar {
|
|
| 788 |
padding-bottom: 10px;
|
| 789 |
}
|
| 790 |
|
| 791 |
-
#bbpress-forums
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 792 |
font-size: 1.4em;
|
| 793 |
-
margin
|
| 794 |
padding-bottom: 10px;
|
| 795 |
padding-top: 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 796 |
}
|
| 797 |
|
| 798 |
#bbpress-forums #bbp-single-user-details {
|
| 799 |
-
display: inline-block;
|
| 800 |
margin: 0;
|
| 801 |
width: 150px;
|
| 802 |
-
|
| 803 |
overflow: hidden;
|
| 804 |
}
|
| 805 |
|
|
@@ -818,7 +836,7 @@ fieldset div.avatar {
|
|
| 818 |
|
| 819 |
#bbpress-forums #bbp-single-user-details #bbp-user-description {
|
| 820 |
float: none;
|
| 821 |
-
margin:
|
| 822 |
}
|
| 823 |
|
| 824 |
#bbpress-forums #bbp-single-user-details #bbp-user-navigation {
|
|
@@ -835,7 +853,6 @@ fieldset div.avatar {
|
|
| 835 |
display: block;
|
| 836 |
border: 1px solid transparent;
|
| 837 |
text-decoration: none;
|
| 838 |
-
text-align: right;
|
| 839 |
}
|
| 840 |
|
| 841 |
#bbpress-forums #bbp-single-user-details #bbp-user-navigation li.current a {
|
|
@@ -844,12 +861,7 @@ fieldset div.avatar {
|
|
| 844 |
}
|
| 845 |
|
| 846 |
#bbpress-forums #bbp-user-body {
|
| 847 |
-
|
| 848 |
-
vertical-align: top;
|
| 849 |
-
margin: 0 30px 0 0;
|
| 850 |
-
width: 80%;
|
| 851 |
-
float: left;
|
| 852 |
-
text-align: right;
|
| 853 |
}
|
| 854 |
|
| 855 |
body.my-account #bbpress-forums {
|
|
@@ -858,15 +870,6 @@ body.my-account #bbpress-forums {
|
|
| 858 |
margin-bottom: 0;
|
| 859 |
}
|
| 860 |
|
| 861 |
-
body.my-account #bbpress-forums,
|
| 862 |
-
body.my-account #bbp-author-subscriptions,
|
| 863 |
-
body.my-account #bbp-author-favorites,
|
| 864 |
-
body.my-account #bbp-author-topics-started {
|
| 865 |
-
border-top: none;
|
| 866 |
-
padding-top: 0;
|
| 867 |
-
margin-bottom: 0;
|
| 868 |
-
}
|
| 869 |
-
|
| 870 |
/* =User Capabilities
|
| 871 |
-------------------------------------------------------------- */
|
| 872 |
|
| 139 |
li.bbp-forum-topic-count,
|
| 140 |
li.bbp-topic-voice-count,
|
| 141 |
li.bbp-forum-reply-count,
|
| 142 |
+
li.bbp-topic-reply-count {
|
| 143 |
float: right;
|
| 144 |
text-align: center;
|
| 145 |
width: 10%;
|
| 146 |
}
|
| 147 |
|
| 148 |
li.bbp-forum-freshness,
|
| 149 |
+
li.bbp-topic-freshness {
|
| 150 |
text-align: center;
|
| 151 |
float: right;
|
| 152 |
width: 22%;
|
| 184 |
|
| 185 |
#bbpress-forums div.bbp-topic-author a.bbp-author-name,
|
| 186 |
#bbpress-forums div.bbp-reply-author a.bbp-author-name {
|
| 187 |
+
word-break: break-word;
|
| 188 |
+
}
|
| 189 |
+
|
| 190 |
+
#bbpress-forums div.bbp-topic-author .bbp-author-role,
|
| 191 |
+
#bbpress-forums div.bbp-reply-author .bbp-author-role {
|
| 192 |
+
font-size: 11px;
|
| 193 |
+
font-style: italic;
|
| 194 |
}
|
| 195 |
|
| 196 |
#bbpress-forums div.bbp-topic-content,
|
| 205 |
#bbpress-forums li.bbp-header .bbp-reply-author,
|
| 206 |
#bbpress-forums li.bbp-footer .bbp-reply-author {
|
| 207 |
float: right;
|
| 208 |
+
margin: 0;
|
| 209 |
padding: 0;
|
| 210 |
width: 120px;
|
| 211 |
}
|
| 252 |
font-size: 12px;
|
| 253 |
}
|
| 254 |
|
| 255 |
+
#bbpress-forums div.bbp-breadcrumb p,
|
| 256 |
+
#bbpress-forums div.bbp-topic-tags p {
|
| 257 |
margin-bottom: 10px
|
| 258 |
}
|
| 259 |
|
| 346 |
background-color: #fdd;
|
| 347 |
}
|
| 348 |
|
| 349 |
+
#bbpress-forums p.bbp-topic-meta {
|
| 350 |
+
margin: 5px 0 5px;
|
| 351 |
font-size: 11px;
|
| 352 |
}
|
| 353 |
|
| 354 |
+
#bbpress-forums p.bbp-topic-meta span {
|
| 355 |
white-space: nowrap;
|
| 356 |
}
|
| 357 |
|
| 367 |
.bbp-pagination {
|
| 368 |
float: right;
|
| 369 |
width: 100%;
|
| 370 |
+
margin-bottom: 15px;
|
| 371 |
}
|
| 372 |
|
| 373 |
.bbp-topic-pagination {
|
| 385 |
|
| 386 |
/* =Forms
|
| 387 |
-------------------------------------------------------------- */
|
| 388 |
+
|
| 389 |
+
#bbpress-forums fieldset.bbp-form {
|
|
|
|
| 390 |
clear: right;
|
| 391 |
}
|
| 392 |
|
| 393 |
+
#bbpress-forums fieldset.bbp-form {
|
|
|
|
|
|
|
| 394 |
border: 1px solid #eee;
|
| 395 |
padding: 10px 20px;
|
| 396 |
margin-bottom: 10px;
|
| 397 |
}
|
| 398 |
|
| 399 |
+
#bbpress-forums fieldset.bbp-form legend {
|
|
|
|
|
|
|
| 400 |
padding: 5px;
|
| 401 |
}
|
| 402 |
|
| 403 |
+
#bbpress-forums fieldset.bbp-form label {
|
|
|
|
|
|
|
| 404 |
margin: 0;
|
| 405 |
display: inline-block;
|
| 406 |
}
|
| 412 |
width: 100px;
|
| 413 |
}
|
| 414 |
|
| 415 |
+
#bbpress-forums fieldset.bbp-form p,
|
| 416 |
+
#bbpress-forums fieldset.bbp-form textarea,
|
| 417 |
+
#bbpress-forums fieldset.bbp-form select,
|
| 418 |
+
#bbpress-forums fieldset.bbp-form input {
|
| 419 |
+
margin: 0 0 8px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 420 |
}
|
| 421 |
|
| 422 |
textarea#bbp_reply_content,
|
| 430 |
height: 210px;
|
| 431 |
}
|
| 432 |
|
| 433 |
+
#bbpress-forums fieldset.bbp-forum-form-attributes {
|
|
|
|
|
|
|
| 434 |
width: 200px;
|
| 435 |
float: left;
|
| 436 |
clear: none;
|
| 490 |
width: 462px;
|
| 491 |
}
|
| 492 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 493 |
/* =TinyMCE in themes
|
| 494 |
-------------------------------------------------------------- */
|
| 495 |
+
#bbpress-forums div.bbp-the-content-wrapper {
|
| 496 |
margin-bottom: 10px;
|
| 497 |
}
|
| 498 |
|
| 499 |
+
#bbpress-forums div.bbp-the-content-wrapper textarea.bbp-the-content {
|
| 500 |
width: 100%;
|
| 501 |
margin: 0;
|
| 502 |
font-size: 12px;
|
| 503 |
}
|
| 504 |
|
| 505 |
+
#bbpress-forums div.bbp-the-content-wrapper table,
|
| 506 |
+
#bbpress-forums div.bbp-the-content-wrapper tbody,
|
| 507 |
+
#bbpress-forums div.bbp-the-content-wrapper tr,
|
| 508 |
+
#bbpress-forums div.bbp-the-content-wrapper td {
|
| 509 |
border: none;
|
| 510 |
padding: 0;
|
| 511 |
margin: 0;
|
| 513 |
line-height: 1em;
|
| 514 |
}
|
| 515 |
|
| 516 |
+
#bbpress-forums div.bbp-the-content-wrapper input {
|
| 517 |
font-size: 12px;
|
| 518 |
padding: 5px;
|
| 519 |
margin: 3px 0 0;
|
| 521 |
margin: 0;
|
| 522 |
}
|
| 523 |
|
| 524 |
+
#bbpress-forums div.bbp-the-content-wrapper div.quicktags-toolbar {
|
| 525 |
padding: 5px;
|
| 526 |
min-height: 26px;
|
| 527 |
}
|
| 528 |
+
#bbpress-forums div.bbp-the-content-wrapper td.mceToolbar {
|
| 529 |
padding: 4px 4px 8px;
|
| 530 |
}
|
| 531 |
|
| 532 |
+
#bbpress-forums div.wp-editor-container {
|
| 533 |
margin: 0;
|
| 534 |
padding: 0;
|
| 535 |
line-height: 0;
|
| 536 |
}
|
| 537 |
|
| 538 |
+
#bbpress-forums div.bbp-the-content-wrapper td.mceStatusbar {
|
| 539 |
line-height: 16px;
|
| 540 |
}
|
| 541 |
|
| 542 |
/* =Edit User
|
| 543 |
-------------------------------------------------------------- */
|
| 544 |
|
| 545 |
+
#bbpress-forums #bbp-your-profile fieldset {
|
|
|
|
| 546 |
padding: 20px 20px 0 20px;
|
| 547 |
}
|
| 548 |
+
#bbpress-forums #bbp-your-profile fieldset div {
|
| 549 |
margin-bottom: 20px;
|
| 550 |
float: right;
|
| 551 |
width: 100%;
|
| 552 |
clear: right;
|
| 553 |
}
|
| 554 |
+
#bbpress-forums #bbp-your-profile fieldset select {
|
| 555 |
margin-bottom: 0;
|
| 556 |
}
|
| 557 |
+
#bbpress-forums #bbp-your-profile fieldset input,
|
| 558 |
+
#bbpress-forums #bbp-your-profile fieldset textarea {
|
| 559 |
margin-bottom: 0;
|
| 560 |
+
width: 60%;
|
| 561 |
background: #f9f9f9;
|
| 562 |
+
border: 1px solid #ddd;
|
| 563 |
+
box-shadow: none;
|
| 564 |
+
padding: 5px 8px;
|
| 565 |
+
border-radius: 0;
|
| 566 |
+
}
|
| 567 |
+
#bbpress-forums #bbp-your-profile fieldset input:focus,
|
| 568 |
+
#bbpress-forums #bbp-your-profile fieldset textarea:focus {
|
| 569 |
border: 1px solid #ccc;
|
| 570 |
box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
|
| 571 |
+
outline-color: rgba(240,255,240,0.1);
|
| 572 |
+
}
|
| 573 |
+
#bbpress-forums #bbp-your-profile fieldset.bbp-form input.checkbox {
|
| 574 |
+
width: auto;
|
| 575 |
}
|
| 576 |
+
#bbpress-forums #bbp-your-profile fieldset legend {
|
| 577 |
display: none;
|
| 578 |
}
|
| 579 |
+
#bbpress-forums #bbp-your-profile fieldset label[for] {
|
|
|
|
| 580 |
float: right;
|
| 581 |
+
width: 20%;
|
| 582 |
+
padding: 5px 5px 5px 20px;
|
| 583 |
text-align: left;
|
| 584 |
+
cursor: pointer;
|
| 585 |
}
|
| 586 |
+
#bbpress-forums #bbp-your-profile fieldset dl label[for] {
|
| 587 |
+
text-align: right;
|
| 588 |
+
width: 60%;
|
| 589 |
+
}
|
| 590 |
+
#bbpress-forums #bbp-your-profile fieldset span.description {
|
| 591 |
+
margin: 5px 0 0 20%;
|
| 592 |
font-size: 12px;
|
| 593 |
font-style: italic;
|
| 594 |
float: right;
|
| 595 |
clear: right;
|
| 596 |
+
width: 60%;
|
| 597 |
+
padding: 5px 8px;
|
| 598 |
border: #cee1ef 1px solid;
|
| 599 |
background-color: #f0f8ff;
|
| 600 |
}
|
| 601 |
|
| 602 |
+
#bbpress-forums #bbp-your-profile fieldset fieldset {
|
|
|
|
| 603 |
margin: 0;
|
|
|
|
| 604 |
border: none;
|
| 605 |
padding: 0;
|
| 606 |
clear: none;
|
| 607 |
float: none;
|
| 608 |
}
|
| 609 |
+
#bbpress-forums #bbp-your-profile fieldset fieldset.password {
|
| 610 |
+
width: 60%;
|
| 611 |
+
display: inline;
|
| 612 |
+
}
|
| 613 |
+
#bbpress-forums #bbp-your-profile fieldset fieldset.password input,
|
| 614 |
+
#bbpress-forums #bbp-your-profile fieldset fieldset.password span {
|
| 615 |
+
width: 100%;
|
| 616 |
+
}
|
| 617 |
+
#bbpress-forums #bbp-your-profile fieldset fieldset.capabilities dl {
|
| 618 |
+
margin: 0;
|
| 619 |
+
}
|
| 620 |
+
#bbpress-forums #bbp-your-profile fieldset fieldset.password span.description {
|
| 621 |
margin-right: 0;
|
| 622 |
margin-bottom: 20px;
|
| 623 |
}
|
| 624 |
|
| 625 |
+
#bbpress-forums #bbp-your-profile fieldset.submit button {
|
| 626 |
float: left;
|
| 627 |
}
|
| 628 |
|
| 629 |
/* =Notices
|
| 630 |
-------------------------------------------------------------- */
|
| 631 |
|
| 632 |
+
div.bbp-template-notice,
|
| 633 |
+
div.indicator-hint {
|
| 634 |
border-width: 1px;
|
| 635 |
border-style: solid;
|
| 636 |
padding: 0 0.6em;
|
| 685 |
|
| 686 |
/* =Revisions
|
| 687 |
-------------------------------------------------------------- */
|
| 688 |
+
#bbpress-forums .bbp-topic-revision-log,
|
| 689 |
+
#bbpress-forums .bbp-reply-revision-log {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 690 |
border-top: 1px dotted #ddd;
|
| 691 |
list-style: none;
|
| 692 |
width: 100%;
|
| 709 |
padding: 5px;
|
| 710 |
}
|
| 711 |
|
| 712 |
+
.bbp-login-form label {
|
| 713 |
+
width: 140px;
|
|
|
|
| 714 |
display: inline-block;
|
| 715 |
}
|
| 716 |
+
|
| 717 |
+
#sidebar .bbp-login-form label {
|
| 718 |
+
width: 70px;
|
| 719 |
+
}
|
| 720 |
+
|
| 721 |
.bbp-login-form .bbp-username,
|
| 722 |
+
.bbp-login-form .bbp-email,
|
| 723 |
.bbp-login-form .bbp-password,
|
| 724 |
.bbp-login-form .bbp-remember-me,
|
| 725 |
.bbp-login-form .bbp-submit-wrapper {
|
| 744 |
|
| 745 |
.bbp-logged-in img.avatar {
|
| 746 |
float: right;
|
| 747 |
+
margin: 0 0 0 15px;
|
| 748 |
}
|
| 749 |
|
| 750 |
.bbp-logged-in h4 {
|
| 793 |
padding-bottom: 10px;
|
| 794 |
}
|
| 795 |
|
| 796 |
+
#bbpress-forums #bbp-user-wrapper {
|
| 797 |
+
float: right;
|
| 798 |
+
width: 100%;
|
| 799 |
+
}
|
| 800 |
+
|
| 801 |
+
#bbpress-forums #bbp-user-wrapper h2.entry-title {
|
| 802 |
font-size: 1.4em;
|
| 803 |
+
margin: 0;
|
| 804 |
padding-bottom: 10px;
|
| 805 |
padding-top: 0;
|
| 806 |
+
clear: none;
|
| 807 |
+
}
|
| 808 |
+
|
| 809 |
+
#bbpress-forums #bbp-user-wrapper ul.bbp-lead-topic,
|
| 810 |
+
#bbpress-forums #bbp-user-wrapper ul.bbp-topics,
|
| 811 |
+
#bbpress-forums #bbp-user-wrapper ul.bbp-forums,
|
| 812 |
+
#bbpress-forums #bbp-user-wrapper ul.bbp-replies,
|
| 813 |
+
#bbpress-forums #bbp-user-wrapper fieldset.bbp-form {
|
| 814 |
+
clear: none;
|
| 815 |
}
|
| 816 |
|
| 817 |
#bbpress-forums #bbp-single-user-details {
|
|
|
|
| 818 |
margin: 0;
|
| 819 |
width: 150px;
|
| 820 |
+
float: right;
|
| 821 |
overflow: hidden;
|
| 822 |
}
|
| 823 |
|
| 836 |
|
| 837 |
#bbpress-forums #bbp-single-user-details #bbp-user-description {
|
| 838 |
float: none;
|
| 839 |
+
margin-right: 180px;
|
| 840 |
}
|
| 841 |
|
| 842 |
#bbpress-forums #bbp-single-user-details #bbp-user-navigation {
|
| 853 |
display: block;
|
| 854 |
border: 1px solid transparent;
|
| 855 |
text-decoration: none;
|
|
|
|
| 856 |
}
|
| 857 |
|
| 858 |
#bbpress-forums #bbp-single-user-details #bbp-user-navigation li.current a {
|
| 861 |
}
|
| 862 |
|
| 863 |
#bbpress-forums #bbp-user-body {
|
| 864 |
+
margin-right: 180px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 865 |
}
|
| 866 |
|
| 867 |
body.my-account #bbpress-forums {
|
| 870 |
margin-bottom: 0;
|
| 871 |
}
|
| 872 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 873 |
/* =User Capabilities
|
| 874 |
-------------------------------------------------------------- */
|
| 875 |
|
templates/default/css/bbpress.css
CHANGED
|
@@ -558,11 +558,11 @@ p.form-allowed-tags {
|
|
| 558 |
#bbpress-forums #bbp-your-profile fieldset input,
|
| 559 |
#bbpress-forums #bbp-your-profile fieldset textarea {
|
| 560 |
margin-bottom: 0;
|
| 561 |
-
width:
|
| 562 |
background: #f9f9f9;
|
| 563 |
border: 1px solid #ddd;
|
| 564 |
box-shadow: none;
|
| 565 |
-
padding:
|
| 566 |
border-radius: 0;
|
| 567 |
}
|
| 568 |
#bbpress-forums #bbp-your-profile fieldset input:focus,
|
|
@@ -579,23 +579,23 @@ p.form-allowed-tags {
|
|
| 579 |
}
|
| 580 |
#bbpress-forums #bbp-your-profile fieldset label[for] {
|
| 581 |
float: left;
|
| 582 |
-
width:
|
| 583 |
-
padding
|
| 584 |
text-align: right;
|
| 585 |
cursor: pointer;
|
| 586 |
}
|
| 587 |
#bbpress-forums #bbp-your-profile fieldset dl label[for] {
|
| 588 |
text-align: left;
|
| 589 |
-
width:
|
| 590 |
}
|
| 591 |
#bbpress-forums #bbp-your-profile fieldset span.description {
|
| 592 |
-
margin: 5px 0 0
|
| 593 |
font-size: 12px;
|
| 594 |
font-style: italic;
|
| 595 |
float: left;
|
| 596 |
clear: left;
|
| 597 |
-
width:
|
| 598 |
-
padding: 5px
|
| 599 |
border: #cee1ef 1px solid;
|
| 600 |
background-color: #f0f8ff;
|
| 601 |
}
|
|
@@ -608,7 +608,12 @@ p.form-allowed-tags {
|
|
| 608 |
float: none;
|
| 609 |
}
|
| 610 |
#bbpress-forums #bbp-your-profile fieldset fieldset.password {
|
| 611 |
-
width:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 612 |
}
|
| 613 |
#bbpress-forums #bbp-your-profile fieldset fieldset.capabilities dl {
|
| 614 |
margin: 0;
|
|
@@ -789,18 +794,31 @@ fieldset div.avatar {
|
|
| 789 |
padding-bottom: 10px;
|
| 790 |
}
|
| 791 |
|
| 792 |
-
#bbpress-forums
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 793 |
font-size: 1.4em;
|
| 794 |
margin: 0;
|
| 795 |
padding-bottom: 10px;
|
| 796 |
padding-top: 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 797 |
}
|
| 798 |
|
| 799 |
#bbpress-forums #bbp-single-user-details {
|
| 800 |
-
display: inline-block;
|
| 801 |
margin: 0;
|
| 802 |
width: 150px;
|
| 803 |
-
|
| 804 |
overflow: hidden;
|
| 805 |
}
|
| 806 |
|
|
@@ -844,10 +862,7 @@ fieldset div.avatar {
|
|
| 844 |
}
|
| 845 |
|
| 846 |
#bbpress-forums #bbp-user-body {
|
| 847 |
-
|
| 848 |
-
vertical-align: top;
|
| 849 |
-
margin: 0 0 0 30px;
|
| 850 |
-
width: 80%;
|
| 851 |
}
|
| 852 |
|
| 853 |
body.my-account #bbpress-forums {
|
| 558 |
#bbpress-forums #bbp-your-profile fieldset input,
|
| 559 |
#bbpress-forums #bbp-your-profile fieldset textarea {
|
| 560 |
margin-bottom: 0;
|
| 561 |
+
width: 60%;
|
| 562 |
background: #f9f9f9;
|
| 563 |
border: 1px solid #ddd;
|
| 564 |
box-shadow: none;
|
| 565 |
+
padding: 5px 8px;
|
| 566 |
border-radius: 0;
|
| 567 |
}
|
| 568 |
#bbpress-forums #bbp-your-profile fieldset input:focus,
|
| 579 |
}
|
| 580 |
#bbpress-forums #bbp-your-profile fieldset label[for] {
|
| 581 |
float: left;
|
| 582 |
+
width: 20%;
|
| 583 |
+
padding: 5px 20px 5px 0;
|
| 584 |
text-align: right;
|
| 585 |
cursor: pointer;
|
| 586 |
}
|
| 587 |
#bbpress-forums #bbp-your-profile fieldset dl label[for] {
|
| 588 |
text-align: left;
|
| 589 |
+
width: 60%;
|
| 590 |
}
|
| 591 |
#bbpress-forums #bbp-your-profile fieldset span.description {
|
| 592 |
+
margin: 5px 0 0 20%;
|
| 593 |
font-size: 12px;
|
| 594 |
font-style: italic;
|
| 595 |
float: left;
|
| 596 |
clear: left;
|
| 597 |
+
width: 60%;
|
| 598 |
+
padding: 5px 8px;
|
| 599 |
border: #cee1ef 1px solid;
|
| 600 |
background-color: #f0f8ff;
|
| 601 |
}
|
| 608 |
float: none;
|
| 609 |
}
|
| 610 |
#bbpress-forums #bbp-your-profile fieldset fieldset.password {
|
| 611 |
+
width: 60%;
|
| 612 |
+
display: inline;
|
| 613 |
+
}
|
| 614 |
+
#bbpress-forums #bbp-your-profile fieldset fieldset.password input,
|
| 615 |
+
#bbpress-forums #bbp-your-profile fieldset fieldset.password span {
|
| 616 |
+
width: 100%;
|
| 617 |
}
|
| 618 |
#bbpress-forums #bbp-your-profile fieldset fieldset.capabilities dl {
|
| 619 |
margin: 0;
|
| 794 |
padding-bottom: 10px;
|
| 795 |
}
|
| 796 |
|
| 797 |
+
#bbpress-forums #bbp-user-wrapper {
|
| 798 |
+
float: left;
|
| 799 |
+
width: 100%;
|
| 800 |
+
}
|
| 801 |
+
|
| 802 |
+
#bbpress-forums #bbp-user-wrapper h2.entry-title {
|
| 803 |
font-size: 1.4em;
|
| 804 |
margin: 0;
|
| 805 |
padding-bottom: 10px;
|
| 806 |
padding-top: 0;
|
| 807 |
+
clear: none;
|
| 808 |
+
}
|
| 809 |
+
|
| 810 |
+
#bbpress-forums #bbp-user-wrapper ul.bbp-lead-topic,
|
| 811 |
+
#bbpress-forums #bbp-user-wrapper ul.bbp-topics,
|
| 812 |
+
#bbpress-forums #bbp-user-wrapper ul.bbp-forums,
|
| 813 |
+
#bbpress-forums #bbp-user-wrapper ul.bbp-replies,
|
| 814 |
+
#bbpress-forums #bbp-user-wrapper fieldset.bbp-form {
|
| 815 |
+
clear: none;
|
| 816 |
}
|
| 817 |
|
| 818 |
#bbpress-forums #bbp-single-user-details {
|
|
|
|
| 819 |
margin: 0;
|
| 820 |
width: 150px;
|
| 821 |
+
float: left;
|
| 822 |
overflow: hidden;
|
| 823 |
}
|
| 824 |
|
| 862 |
}
|
| 863 |
|
| 864 |
#bbpress-forums #bbp-user-body {
|
| 865 |
+
margin-left: 180px;
|
|
|
|
|
|
|
|
|
|
| 866 |
}
|
| 867 |
|
| 868 |
body.my-account #bbpress-forums {
|
templates/default/extras/single-user-edit.php
CHANGED
|
@@ -14,7 +14,7 @@ get_header(); ?>
|
|
| 14 |
<div id="bbp-user-<?php bbp_current_user_id(); ?>" class="bbp-single-user">
|
| 15 |
<div class="entry-content">
|
| 16 |
|
| 17 |
-
<?php bbp_get_template_part( 'content', 'single-user
|
| 18 |
|
| 19 |
</div><!-- .entry-content -->
|
| 20 |
</div><!-- #bbp-user-<?php bbp_current_user_id(); ?> -->
|
| 14 |
<div id="bbp-user-<?php bbp_current_user_id(); ?>" class="bbp-single-user">
|
| 15 |
<div class="entry-content">
|
| 16 |
|
| 17 |
+
<?php bbp_get_template_part( 'content', 'single-user' ); ?>
|
| 18 |
|
| 19 |
</div><!-- .entry-content -->
|
| 20 |
</div><!-- #bbp-user-<?php bbp_current_user_id(); ?> -->
|
