Version Description
- BuddyPress @mention integration
- Improved Akismet user agent handling
- Added blacklist_keys support
- Fixed spam/deleted user handling
- Updated green admin color scheme for WordPress 3.2
- Added actions to topic/reply forms
- Improved support for future ajaxification
Download this release
Release Info
| Developer | johnjamesjacoby |
| Plugin | |
| Version | 2.0-rc-4 |
| Comparing to | |
| See all releases | |
Code changes from version 2.0-rc-3 to 2.0-rc-4
- bbp-admin/bbp-admin.php +77 -36
- bbp-admin/bbp-metaboxes.php +8 -8
- bbp-admin/bbp-replies.php +3 -3
- bbp-admin/styles/admin-1.css +2094 -0
- bbp-admin/styles/admin-1.dev.css +2094 -0
- bbp-admin/styles/admin-2.css +2094 -0
- bbp-admin/styles/admin-2.dev.css +2094 -0
- bbp-admin/styles/admin.css +700 -306
- bbp-admin/styles/admin.dev.css +700 -306
- bbp-includes/bbp-common-functions.php +210 -106
- bbp-includes/bbp-common-template.php +41 -25
- bbp-includes/bbp-core-caps.php +8 -0
- bbp-includes/bbp-core-compatibility.php +66 -8
- bbp-includes/bbp-core-hooks.php +19 -9
- bbp-includes/bbp-core-options.php +56 -6
- bbp-includes/bbp-core-update.php +15 -13
- bbp-includes/bbp-core-widgets.php +94 -44
- bbp-includes/bbp-extend-akismet.php +114 -16
- bbp-includes/bbp-extend-buddypress.php +59 -11
- bbp-includes/bbp-forum-functions.php +125 -7
- bbp-includes/bbp-forum-template.php +2 -2
- bbp-includes/bbp-reply-functions.php +52 -47
- bbp-includes/bbp-reply-template.php +105 -20
- bbp-includes/bbp-topic-functions.php +114 -64
- bbp-includes/bbp-topic-template.php +132 -23
- bbp-includes/bbp-user-functions.php +26 -8
- bbp-includes/bbp-user-template.php +28 -8
- bbp-languages/bbpress.pot +2028 -1991
- bbp-languages/index.php +2 -2
- bbp-themes/bbp-twentyten/bbpress/form-anonymous.php +3 -3
- bbp-themes/bbp-twentyten/bbpress/form-reply.php +2 -8
- bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php +5 -5
- bbp-themes/bbp-twentyten/bbpress/form-topic.php +3 -8
- bbp-themes/bbp-twentyten/bbpress/loop-forums.php +1 -48
- bbp-themes/bbp-twentyten/bbpress/loop-replies.php +1 -49
- bbp-themes/bbp-twentyten/bbpress/loop-single-forum.php +59 -0
- bbp-themes/bbp-twentyten/bbpress/loop-single-reply.php +60 -0
- bbp-themes/bbp-twentyten/bbpress/loop-single-topic.php +103 -0
- bbp-themes/bbp-twentyten/bbpress/loop-topics.php +1 -93
- bbp-themes/bbp-twentyten/css/bbpress-rtl.css +28 -18
- bbp-themes/bbp-twentyten/css/bbpress.css +37 -18
- bbp-themes/bbp-twentyten/functions.php +19 -9
- bbp-themes/bbp-twentyten/single-reply-edit.php +1 -3
- bbp-themes/index.php +1 -1
- bbpress.php +11 -4
- humans.txt +1 -1
- readme.txt +15 -6
bbp-admin/bbp-admin.php
CHANGED
|
@@ -20,8 +20,20 @@ if ( !class_exists( 'BBP_Admin' ) ) :
|
|
| 20 |
*/
|
| 21 |
class BBP_Admin {
|
| 22 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
/** URLs ******************************************************************/
|
| 24 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
/**
|
| 26 |
* @var string URL to the bbPress images directory
|
| 27 |
*/
|
|
@@ -32,13 +44,20 @@ class BBP_Admin {
|
|
| 32 |
*/
|
| 33 |
public $styles_url = '';
|
| 34 |
|
| 35 |
-
/**
|
| 36 |
|
| 37 |
/**
|
| 38 |
* @var bool Enable recounts in Tools area
|
| 39 |
*/
|
| 40 |
public $enable_recounts = false;
|
| 41 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 42 |
/** Functions *************************************************************/
|
| 43 |
|
| 44 |
/**
|
|
@@ -69,27 +88,26 @@ class BBP_Admin {
|
|
| 69 |
|
| 70 |
/** General Actions ***************************************************/
|
| 71 |
|
| 72 |
-
// Attach the bbPress
|
| 73 |
-
add_action( 'admin_init',
|
| 74 |
|
| 75 |
// Add some general styling to the admin area
|
| 76 |
-
add_action( 'admin_head',
|
| 77 |
|
| 78 |
// Add menu item to settings menu
|
| 79 |
-
add_action( 'admin_menu',
|
| 80 |
|
| 81 |
// Add notice if not using a bbPress theme
|
| 82 |
-
add_action( 'admin_notices',
|
| 83 |
|
| 84 |
-
//
|
| 85 |
-
|
| 86 |
-
//add_action( 'bbp_admin_init', array( $this, 'register_admin_style' ) );
|
| 87 |
|
| 88 |
-
// Add
|
| 89 |
-
add_action( 'bbp_admin_init', array( $this, '
|
| 90 |
|
| 91 |
-
// Add
|
| 92 |
-
add_action( 'bbp_admin_init', array( $this, 'register_admin_settings'
|
| 93 |
|
| 94 |
// Forums 'Right now' Dashboard widget
|
| 95 |
add_action( 'wp_dashboard_setup', array( $this, 'dashboard_widget_right_now' ) );
|
|
@@ -110,17 +128,15 @@ class BBP_Admin {
|
|
| 110 |
* @access private
|
| 111 |
*/
|
| 112 |
private function includes() {
|
| 113 |
-
global $bbp;
|
| 114 |
-
|
| 115 |
-
// Files to include
|
| 116 |
-
$files = array( 'tools', 'settings', 'functions', 'metaboxes', 'forums', 'topics', 'replies' );
|
| 117 |
-
|
| 118 |
-
// Buzz buzz
|
| 119 |
-
//if ( get_option( '_bbp_first_run' ) ) $files[] = 'first-run';
|
| 120 |
|
| 121 |
// Include the files
|
| 122 |
-
|
| 123 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 124 |
}
|
| 125 |
|
| 126 |
/**
|
|
@@ -132,6 +148,9 @@ class BBP_Admin {
|
|
| 132 |
private function setup_globals() {
|
| 133 |
global $bbp;
|
| 134 |
|
|
|
|
|
|
|
|
|
|
| 135 |
// Admin url
|
| 136 |
$this->admin_url = trailingslashit( $bbp->plugin_url . 'bbp-admin' );
|
| 137 |
|
|
@@ -291,6 +310,8 @@ class BBP_Admin {
|
|
| 291 |
* @since bbPress (r2737)
|
| 292 |
*
|
| 293 |
* @uses do_action() Calls 'bbp_register_importers'
|
|
|
|
|
|
|
| 294 |
*/
|
| 295 |
public function register_importers() {
|
| 296 |
|
|
@@ -298,8 +319,6 @@ class BBP_Admin {
|
|
| 298 |
if ( !defined( 'WP_LOAD_IMPORTERS' ) )
|
| 299 |
return;
|
| 300 |
|
| 301 |
-
global $bbp;
|
| 302 |
-
|
| 303 |
// Load Importer API
|
| 304 |
require_once( ABSPATH . 'wp-admin/includes/import.php' );
|
| 305 |
|
|
@@ -309,8 +328,11 @@ class BBP_Admin {
|
|
| 309 |
// Loop through included importers
|
| 310 |
foreach ( $importers as $importer ) {
|
| 311 |
|
|
|
|
|
|
|
|
|
|
| 312 |
// Compile the importer path
|
| 313 |
-
$import_file = $
|
| 314 |
|
| 315 |
// If the file exists, include it
|
| 316 |
if ( file_exists( $import_file ) ) {
|
|
@@ -382,7 +404,7 @@ class BBP_Admin {
|
|
| 382 |
*
|
| 383 |
* @uses do_action() Calls 'bbp_admin_init'
|
| 384 |
*/
|
| 385 |
-
public function
|
| 386 |
do_action( 'bbp_admin_init' );
|
| 387 |
}
|
| 388 |
|
|
@@ -435,9 +457,11 @@ class BBP_Admin {
|
|
| 435 |
}
|
| 436 |
|
| 437 |
#bbp-dashboard-right-now p.sub {
|
| 438 |
-
|
| 439 |
-
|
| 440 |
-
|
|
|
|
|
|
|
| 441 |
|
| 442 |
<?php if ( is_rtl() ) : ?>
|
| 443 |
|
|
@@ -449,15 +473,11 @@ class BBP_Admin {
|
|
| 449 |
|
| 450 |
<?php endif; ?>
|
| 451 |
|
| 452 |
-
color: #777;
|
| 453 |
-
font-size: 13px;
|
| 454 |
-
position: absolute;
|
| 455 |
-
top: -17px;
|
| 456 |
}
|
| 457 |
|
| 458 |
#bbp-dashboard-right-now .table {
|
| 459 |
-
margin: 0
|
| 460 |
-
padding: 0
|
| 461 |
position: relative;
|
| 462 |
}
|
| 463 |
|
|
@@ -633,12 +653,30 @@ class BBP_Admin {
|
|
| 633 |
/**
|
| 634 |
* Registers the bbPress admin color scheme
|
| 635 |
*
|
|
|
|
|
|
|
|
|
|
|
|
|
| 636 |
* @since bbPress (r2521)
|
| 637 |
*
|
| 638 |
* @uses wp_admin_css_color() To register the color scheme
|
| 639 |
*/
|
| 640 |
public function register_admin_style () {
|
| 641 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 642 |
}
|
| 643 |
}
|
| 644 |
endif; // class_exists check
|
|
@@ -654,6 +692,9 @@ function bbp_admin() {
|
|
| 654 |
global $bbp;
|
| 655 |
|
| 656 |
$bbp->admin = new BBP_Admin();
|
|
|
|
|
|
|
|
|
|
| 657 |
}
|
| 658 |
|
| 659 |
?>
|
| 20 |
*/
|
| 21 |
class BBP_Admin {
|
| 22 |
|
| 23 |
+
/** Directory *************************************************************/
|
| 24 |
+
|
| 25 |
+
/**
|
| 26 |
+
* @var string Path to the bbPress admin directory
|
| 27 |
+
*/
|
| 28 |
+
public $admin_dir = '';
|
| 29 |
+
|
| 30 |
/** URLs ******************************************************************/
|
| 31 |
|
| 32 |
+
/**
|
| 33 |
+
* @var string URL to the bbPress admin directory
|
| 34 |
+
*/
|
| 35 |
+
public $admin_url = '';
|
| 36 |
+
|
| 37 |
/**
|
| 38 |
* @var string URL to the bbPress images directory
|
| 39 |
*/
|
| 44 |
*/
|
| 45 |
public $styles_url = '';
|
| 46 |
|
| 47 |
+
/** Recounts **************************************************************/
|
| 48 |
|
| 49 |
/**
|
| 50 |
* @var bool Enable recounts in Tools area
|
| 51 |
*/
|
| 52 |
public $enable_recounts = false;
|
| 53 |
|
| 54 |
+
/** Admin Scheme **********************************************************/
|
| 55 |
+
|
| 56 |
+
/**
|
| 57 |
+
* @var int Depth of custom WP_CONTENT_DIR difference
|
| 58 |
+
*/
|
| 59 |
+
public $content_depth = 0;
|
| 60 |
+
|
| 61 |
/** Functions *************************************************************/
|
| 62 |
|
| 63 |
/**
|
| 88 |
|
| 89 |
/** General Actions ***************************************************/
|
| 90 |
|
| 91 |
+
// Attach the bbPress admin_init action to the WordPress admin_init action.
|
| 92 |
+
add_action( 'admin_init', array( $this, 'admin_init' ) );
|
| 93 |
|
| 94 |
// Add some general styling to the admin area
|
| 95 |
+
add_action( 'admin_head', array( $this, 'admin_head' ) );
|
| 96 |
|
| 97 |
// Add menu item to settings menu
|
| 98 |
+
add_action( 'admin_menu', array( $this, 'admin_menus' ) );
|
| 99 |
|
| 100 |
// Add notice if not using a bbPress theme
|
| 101 |
+
add_action( 'admin_notices', array( $this, 'activation_notice' ) );
|
| 102 |
|
| 103 |
+
// Add importers
|
| 104 |
+
add_action( 'bbp_admin_init', array( $this, 'register_importers' ) );
|
|
|
|
| 105 |
|
| 106 |
+
// Add green admin style
|
| 107 |
+
add_action( 'bbp_admin_init', array( $this, 'register_admin_style' ) );
|
| 108 |
|
| 109 |
+
// Add settings
|
| 110 |
+
add_action( 'bbp_admin_init', array( $this, 'register_admin_settings' ) );
|
| 111 |
|
| 112 |
// Forums 'Right now' Dashboard widget
|
| 113 |
add_action( 'wp_dashboard_setup', array( $this, 'dashboard_widget_right_now' ) );
|
| 128 |
* @access private
|
| 129 |
*/
|
| 130 |
private function includes() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 131 |
|
| 132 |
// Include the files
|
| 133 |
+
require( $this->admin_dir . 'bbp-tools.php' );
|
| 134 |
+
require( $this->admin_dir . 'bbp-settings.php' );
|
| 135 |
+
require( $this->admin_dir . 'bbp-functions.php' );
|
| 136 |
+
require( $this->admin_dir . 'bbp-metaboxes.php' );
|
| 137 |
+
require( $this->admin_dir . 'bbp-forums.php' );
|
| 138 |
+
require( $this->admin_dir . 'bbp-topics.php' );
|
| 139 |
+
require( $this->admin_dir . 'bbp-replies.php' );
|
| 140 |
}
|
| 141 |
|
| 142 |
/**
|
| 148 |
private function setup_globals() {
|
| 149 |
global $bbp;
|
| 150 |
|
| 151 |
+
// Admin url
|
| 152 |
+
$this->admin_dir = trailingslashit( $bbp->plugin_dir . 'bbp-admin' );
|
| 153 |
+
|
| 154 |
// Admin url
|
| 155 |
$this->admin_url = trailingslashit( $bbp->plugin_url . 'bbp-admin' );
|
| 156 |
|
| 310 |
* @since bbPress (r2737)
|
| 311 |
*
|
| 312 |
* @uses do_action() Calls 'bbp_register_importers'
|
| 313 |
+
* @uses apply_filters() Calls 'bbp_importer_path' filter to allow plugins
|
| 314 |
+
* to customize the importer script locations.
|
| 315 |
*/
|
| 316 |
public function register_importers() {
|
| 317 |
|
| 319 |
if ( !defined( 'WP_LOAD_IMPORTERS' ) )
|
| 320 |
return;
|
| 321 |
|
|
|
|
|
|
|
| 322 |
// Load Importer API
|
| 323 |
require_once( ABSPATH . 'wp-admin/includes/import.php' );
|
| 324 |
|
| 328 |
// Loop through included importers
|
| 329 |
foreach ( $importers as $importer ) {
|
| 330 |
|
| 331 |
+
// Allow custom importer directory
|
| 332 |
+
$import_dir = apply_filters( 'bbp_importer_path', $this->admin_dir . 'importers', $importer );
|
| 333 |
+
|
| 334 |
// Compile the importer path
|
| 335 |
+
$import_file = trailingslashit( $import_dir ) . $importer . '.php';
|
| 336 |
|
| 337 |
// If the file exists, include it
|
| 338 |
if ( file_exists( $import_file ) ) {
|
| 404 |
*
|
| 405 |
* @uses do_action() Calls 'bbp_admin_init'
|
| 406 |
*/
|
| 407 |
+
public function admin_init() {
|
| 408 |
do_action( 'bbp_admin_init' );
|
| 409 |
}
|
| 410 |
|
| 457 |
}
|
| 458 |
|
| 459 |
#bbp-dashboard-right-now p.sub {
|
| 460 |
+
padding: 5px 0 15px;
|
| 461 |
+
color: #8f8f8f;
|
| 462 |
+
font-size: 14px;
|
| 463 |
+
position: absolute;
|
| 464 |
+
top: -17px;
|
| 465 |
|
| 466 |
<?php if ( is_rtl() ) : ?>
|
| 467 |
|
| 473 |
|
| 474 |
<?php endif; ?>
|
| 475 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 476 |
}
|
| 477 |
|
| 478 |
#bbp-dashboard-right-now .table {
|
| 479 |
+
margin: 0;
|
| 480 |
+
padding: 0;
|
| 481 |
position: relative;
|
| 482 |
}
|
| 483 |
|
| 653 |
/**
|
| 654 |
* Registers the bbPress admin color scheme
|
| 655 |
*
|
| 656 |
+
* Because wp-content can exist outside of the WordPress root there is no
|
| 657 |
+
* way to be certain what the relative path of the admin images is.
|
| 658 |
+
* We are including the two most common configurations here, just in case.
|
| 659 |
+
*
|
| 660 |
* @since bbPress (r2521)
|
| 661 |
*
|
| 662 |
* @uses wp_admin_css_color() To register the color scheme
|
| 663 |
*/
|
| 664 |
public function register_admin_style () {
|
| 665 |
+
|
| 666 |
+
// Normal wp-content dir
|
| 667 |
+
if ( 0 === $this->content_depth )
|
| 668 |
+
$css_file = $this->styles_url . 'admin.css';
|
| 669 |
+
|
| 670 |
+
// Custom wp-content dir is 1 level away
|
| 671 |
+
elseif ( 1 === $this->content_depth )
|
| 672 |
+
$css_file = $this->styles_url . 'admin-1.css';
|
| 673 |
+
|
| 674 |
+
// Custom wp-content dir is 1 level away
|
| 675 |
+
elseif ( 2 === $this->content_depth )
|
| 676 |
+
$css_file = $this->styles_url . 'admin-2.css';
|
| 677 |
+
|
| 678 |
+
// Load the admin CSS styling
|
| 679 |
+
wp_admin_css_color( 'bbpress', __( 'Green', 'bbpress' ), $css_file, array( '#222222', '#006600', '#deece1', '#6eb469' ) );
|
| 680 |
}
|
| 681 |
}
|
| 682 |
endif; // class_exists check
|
| 692 |
global $bbp;
|
| 693 |
|
| 694 |
$bbp->admin = new BBP_Admin();
|
| 695 |
+
|
| 696 |
+
if ( defined( 'BBP_CONTENT_DEPTH' ) )
|
| 697 |
+
$bbp->admin->content_depth = (int) BBP_CONTENT_DEPTH;
|
| 698 |
}
|
| 699 |
|
| 700 |
?>
|
bbp-admin/bbp-metaboxes.php
CHANGED
|
@@ -16,6 +16,7 @@
|
|
| 16 |
*
|
| 17 |
* @since bbPress (r2770)
|
| 18 |
*
|
|
|
|
| 19 |
* @uses bbp_get_statistics() To get the forum statistics
|
| 20 |
* @uses current_user_can() To check if the user is capable of doing things
|
| 21 |
* @uses bbp_get_forum_post_type() To get the forum post type
|
|
@@ -32,14 +33,13 @@
|
|
| 32 |
* @uses do_action() Calls 'bbp_dashboard_widget_right_now_end' below the widget
|
| 33 |
*/
|
| 34 |
function bbp_dashboard_widget_right_now() {
|
| 35 |
-
global $bbp;
|
| 36 |
|
| 37 |
// Get the statistics and extract them
|
| 38 |
extract( bbp_get_statistics(), EXTR_SKIP ); ?>
|
| 39 |
|
| 40 |
<div class="table table_content">
|
| 41 |
|
| 42 |
-
<p class="sub"><?php _e( '
|
| 43 |
|
| 44 |
<table>
|
| 45 |
|
|
@@ -120,7 +120,7 @@ function bbp_dashboard_widget_right_now() {
|
|
| 120 |
|
| 121 |
<div class="table table_discussion">
|
| 122 |
|
| 123 |
-
<p class="sub"><?php _e( '
|
| 124 |
|
| 125 |
<table>
|
| 126 |
|
|
@@ -211,14 +211,14 @@ function bbp_dashboard_widget_right_now() {
|
|
| 211 |
<p>
|
| 212 |
<?php
|
| 213 |
if ( current_theme_supports( 'bbpress' ) )
|
| 214 |
-
_e( 'Theme <strong>
|
| 215 |
else
|
| 216 |
-
_e( 'Theme <strong>
|
| 217 |
?>
|
| 218 |
</p>
|
| 219 |
|
| 220 |
<span id="wp-version-message">
|
| 221 |
-
<?php printf( __( 'You are using <span class="b">bbPress %s</span>.', 'bbpress' ),
|
| 222 |
</span>
|
| 223 |
|
| 224 |
</div>
|
|
@@ -422,7 +422,7 @@ function bbp_reply_metabox() {
|
|
| 422 |
'numberposts' => '250',
|
| 423 |
'show_none' => is_super_admin() ? __( '(No Topic)', 'bbpress' ) : '',
|
| 424 |
);
|
| 425 |
-
|
| 426 |
// Allow the dropdown to be filtered, to extend or limit the available
|
| 427 |
// topics to choose as the reply parent.
|
| 428 |
$args = apply_filters( 'bbp_reply_parent_dropdown', $args ); ?>
|
|
@@ -457,7 +457,7 @@ function bbp_author_metabox() {
|
|
| 457 |
|
| 458 |
// Post ID
|
| 459 |
$post_id = get_the_ID();
|
| 460 |
-
|
| 461 |
// Show extra bits if topic/reply is anonymous
|
| 462 |
if ( bbp_is_reply_anonymous( $post_id ) || bbp_is_topic_anonymous( $post_id ) ) : ?>
|
| 463 |
|
| 16 |
*
|
| 17 |
* @since bbPress (r2770)
|
| 18 |
*
|
| 19 |
+
* @uses bbp_get_version() To get the current bbPress version
|
| 20 |
* @uses bbp_get_statistics() To get the forum statistics
|
| 21 |
* @uses current_user_can() To check if the user is capable of doing things
|
| 22 |
* @uses bbp_get_forum_post_type() To get the forum post type
|
| 33 |
* @uses do_action() Calls 'bbp_dashboard_widget_right_now_end' below the widget
|
| 34 |
*/
|
| 35 |
function bbp_dashboard_widget_right_now() {
|
|
|
|
| 36 |
|
| 37 |
// Get the statistics and extract them
|
| 38 |
extract( bbp_get_statistics(), EXTR_SKIP ); ?>
|
| 39 |
|
| 40 |
<div class="table table_content">
|
| 41 |
|
| 42 |
+
<p class="sub"><?php _e( 'Discussion', 'bbpress' ); ?></p>
|
| 43 |
|
| 44 |
<table>
|
| 45 |
|
| 120 |
|
| 121 |
<div class="table table_discussion">
|
| 122 |
|
| 123 |
+
<p class="sub"><?php _e( 'Users & Moderation', 'bbpress' ); ?></p>
|
| 124 |
|
| 125 |
<table>
|
| 126 |
|
| 211 |
<p>
|
| 212 |
<?php
|
| 213 |
if ( current_theme_supports( 'bbpress' ) )
|
| 214 |
+
_e( 'Theme is using <strong>custom bbPress</strong> styling.', 'bbpress' );
|
| 215 |
else
|
| 216 |
+
_e( 'Theme is using <strong>default bbPress</strong> styling.', 'bbpress' );
|
| 217 |
?>
|
| 218 |
</p>
|
| 219 |
|
| 220 |
<span id="wp-version-message">
|
| 221 |
+
<?php printf( __( 'You are using <span class="b">bbPress %s</span>.', 'bbpress' ), bbp_get_version() ); ?>
|
| 222 |
</span>
|
| 223 |
|
| 224 |
</div>
|
| 422 |
'numberposts' => '250',
|
| 423 |
'show_none' => is_super_admin() ? __( '(No Topic)', 'bbpress' ) : '',
|
| 424 |
);
|
| 425 |
+
|
| 426 |
// Allow the dropdown to be filtered, to extend or limit the available
|
| 427 |
// topics to choose as the reply parent.
|
| 428 |
$args = apply_filters( 'bbp_reply_parent_dropdown', $args ); ?>
|
| 457 |
|
| 458 |
// Post ID
|
| 459 |
$post_id = get_the_ID();
|
| 460 |
+
|
| 461 |
// Show extra bits if topic/reply is anonymous
|
| 462 |
if ( bbp_is_reply_anonymous( $post_id ) || bbp_is_topic_anonymous( $post_id ) ) : ?>
|
| 463 |
|
bbp-admin/bbp-replies.php
CHANGED
|
@@ -247,7 +247,7 @@ class BBP_Replies_Admin {
|
|
| 247 |
/**
|
| 248 |
* Add the author info metabox
|
| 249 |
*
|
| 250 |
-
* Allows editing of information about an
|
| 251 |
*
|
| 252 |
* @since bbPress (r2828)
|
| 253 |
*
|
|
@@ -609,7 +609,7 @@ class BBP_Replies_Admin {
|
|
| 609 |
|
| 610 |
// Output the title
|
| 611 |
echo $forum_title;
|
| 612 |
-
|
| 613 |
// Reply has no forum
|
| 614 |
} else {
|
| 615 |
_e( 'No Forum', 'bbpress' );
|
|
@@ -672,7 +672,7 @@ class BBP_Replies_Admin {
|
|
| 672 |
|
| 673 |
// Reply view links to topic
|
| 674 |
$actions['view'] = '<a href="' . bbp_get_reply_url( $reply->ID ) . '" title="' . esc_attr( sprintf( __( 'View “%s”', 'bbpress' ), bbp_get_reply_title( $reply->ID ) ) ) . '" rel="permalink">' . __( 'View', 'bbpress' ) . '</a>';
|
| 675 |
-
|
| 676 |
// User cannot view replies in trash
|
| 677 |
if ( ( 'trash' == $reply->post_status ) && !current_user_can( 'view_trash' ) )
|
| 678 |
unset( $actions['view'] );
|
| 247 |
/**
|
| 248 |
* Add the author info metabox
|
| 249 |
*
|
| 250 |
+
* Allows editing of information about an author
|
| 251 |
*
|
| 252 |
* @since bbPress (r2828)
|
| 253 |
*
|
| 609 |
|
| 610 |
// Output the title
|
| 611 |
echo $forum_title;
|
| 612 |
+
|
| 613 |
// Reply has no forum
|
| 614 |
} else {
|
| 615 |
_e( 'No Forum', 'bbpress' );
|
| 672 |
|
| 673 |
// Reply view links to topic
|
| 674 |
$actions['view'] = '<a href="' . bbp_get_reply_url( $reply->ID ) . '" title="' . esc_attr( sprintf( __( 'View “%s”', 'bbpress' ), bbp_get_reply_title( $reply->ID ) ) ) . '" rel="permalink">' . __( 'View', 'bbpress' ) . '</a>';
|
| 675 |
+
|
| 676 |
// User cannot view replies in trash
|
| 677 |
if ( ( 'trash' == $reply->post_status ) && !current_user_can( 'view_trash' ) )
|
| 678 |
unset( $actions['view'] );
|
bbp-admin/styles/admin-1.css
ADDED
|
@@ -0,0 +1,2094 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/* =wp-admin area stylesheet with a bbPress twist
|
| 2 |
+
-------------------------------------------------------------- */
|
| 3 |
+
|
| 4 |
+
html,
|
| 5 |
+
.wp-dialog {
|
| 6 |
+
background-color: #fff;
|
| 7 |
+
}
|
| 8 |
+
|
| 9 |
+
* html input,
|
| 10 |
+
* html .widget {
|
| 11 |
+
border-color: #dfdfdf;
|
| 12 |
+
}
|
| 13 |
+
|
| 14 |
+
textarea,
|
| 15 |
+
input[type="text"],
|
| 16 |
+
input[type="password"],
|
| 17 |
+
input[type="file"],
|
| 18 |
+
input[type="button"],
|
| 19 |
+
input[type="submit"],
|
| 20 |
+
input[type="reset"],
|
| 21 |
+
select {
|
| 22 |
+
border-color: #dfdfdf;
|
| 23 |
+
background-color: #fff;
|
| 24 |
+
}
|
| 25 |
+
|
| 26 |
+
kbd,
|
| 27 |
+
code {
|
| 28 |
+
background: #eaeaea;
|
| 29 |
+
}
|
| 30 |
+
|
| 31 |
+
input[readonly] {
|
| 32 |
+
background-color: #eee;
|
| 33 |
+
}
|
| 34 |
+
|
| 35 |
+
.find-box-search {
|
| 36 |
+
border-color: #dfdfdf;
|
| 37 |
+
background-color: #f1f1f1;
|
| 38 |
+
}
|
| 39 |
+
|
| 40 |
+
.find-box {
|
| 41 |
+
background-color: #f1f1f1;
|
| 42 |
+
}
|
| 43 |
+
|
| 44 |
+
.find-box-inside {
|
| 45 |
+
background-color: #fff;
|
| 46 |
+
}
|
| 47 |
+
|
| 48 |
+
a.page-numbers:hover {
|
| 49 |
+
border-color: #999;
|
| 50 |
+
}
|
| 51 |
+
|
| 52 |
+
body,
|
| 53 |
+
#wpbody,
|
| 54 |
+
.form-table .pre {
|
| 55 |
+
color: #333;
|
| 56 |
+
}
|
| 57 |
+
|
| 58 |
+
body > #upload-menu {
|
| 59 |
+
border-bottom-color: #fff;
|
| 60 |
+
}
|
| 61 |
+
|
| 62 |
+
#postcustomstuff table,
|
| 63 |
+
#your-profile fieldset,
|
| 64 |
+
#rightnow,
|
| 65 |
+
div.dashboard-widget,
|
| 66 |
+
#dashboard-widgets p.dashboard-widget-links,
|
| 67 |
+
#replyrow #ed_reply_toolbar input {
|
| 68 |
+
border-color: #ccc;
|
| 69 |
+
}
|
| 70 |
+
|
| 71 |
+
#poststuff .inside label.spam,
|
| 72 |
+
#poststuff .inside label.deleted {
|
| 73 |
+
color: red;
|
| 74 |
+
}
|
| 75 |
+
|
| 76 |
+
#poststuff .inside label.waiting {
|
| 77 |
+
color: orange;
|
| 78 |
+
}
|
| 79 |
+
|
| 80 |
+
#poststuff .inside label.approved {
|
| 81 |
+
color: green;
|
| 82 |
+
}
|
| 83 |
+
|
| 84 |
+
#postcustomstuff table {
|
| 85 |
+
border-color: #dfdfdf;
|
| 86 |
+
background-color: #F9F9F9;
|
| 87 |
+
}
|
| 88 |
+
|
| 89 |
+
#postcustomstuff thead th {
|
| 90 |
+
background-color: #F1F1F1;
|
| 91 |
+
}
|
| 92 |
+
|
| 93 |
+
#postcustomstuff table input,
|
| 94 |
+
#postcustomstuff table textarea {
|
| 95 |
+
border-color: #dfdfdf;
|
| 96 |
+
background-color: #fff;
|
| 97 |
+
}
|
| 98 |
+
|
| 99 |
+
.widefat {
|
| 100 |
+
border-color: #dfdfdf;
|
| 101 |
+
background-color: #f9f9f9;
|
| 102 |
+
}
|
| 103 |
+
|
| 104 |
+
div.dashboard-widget-error {
|
| 105 |
+
background-color: #c43;
|
| 106 |
+
}
|
| 107 |
+
|
| 108 |
+
div.dashboard-widget-notice {
|
| 109 |
+
background-color: #cfe1ef;
|
| 110 |
+
}
|
| 111 |
+
|
| 112 |
+
div.dashboard-widget-submit {
|
| 113 |
+
border-top-color: #ccc;
|
| 114 |
+
}
|
| 115 |
+
|
| 116 |
+
div.tabs-panel,
|
| 117 |
+
.wp-tab-panel,
|
| 118 |
+
ul.category-tabs li.tabs,
|
| 119 |
+
ul.add-menu-item-tabs li.tabs,
|
| 120 |
+
.wp-tab-active {
|
| 121 |
+
border-color: #dfdfdf;
|
| 122 |
+
background-color: #fff;
|
| 123 |
+
}
|
| 124 |
+
|
| 125 |
+
ul.category-tabs li.tabs,
|
| 126 |
+
ul.add-menu-item-tabs li.tabs,
|
| 127 |
+
.wp-tab-active {
|
| 128 |
+
background-color: #fff;
|
| 129 |
+
}
|
| 130 |
+
|
| 131 |
+
input.disabled,
|
| 132 |
+
textarea.disabled {
|
| 133 |
+
background-color: #ccc;
|
| 134 |
+
}
|
| 135 |
+
/* #upload-menu li a.upload-tab-link, */
|
| 136 |
+
#plugin-information .action-button a,
|
| 137 |
+
#plugin-information .action-button a:hover,
|
| 138 |
+
#plugin-information .action-button a:visited {
|
| 139 |
+
color: #fff;
|
| 140 |
+
}
|
| 141 |
+
|
| 142 |
+
.widget .widget-top,
|
| 143 |
+
.postbox h3,
|
| 144 |
+
.stuffbox h3,
|
| 145 |
+
.widefat thead tr th,
|
| 146 |
+
.widefat tfoot tr th,
|
| 147 |
+
h3.dashboard-widget-title,
|
| 148 |
+
h3.dashboard-widget-title span,
|
| 149 |
+
h3.dashboard-widget-title small,
|
| 150 |
+
.find-box-head,
|
| 151 |
+
.sidebar-name,
|
| 152 |
+
#nav-menu-header,
|
| 153 |
+
#nav-menu-footer,
|
| 154 |
+
.menu-item-handle,
|
| 155 |
+
#fullscreen-topbar {
|
| 156 |
+
background-color: #f1f1f1; /* Fallback */
|
| 157 |
+
background-image: -ms-linear-gradient(top, #eefcf1, #deece1); /* IE10 */
|
| 158 |
+
background-image: -moz-linear-gradient(top, #eefcf1, #deece1); /* Firefox */
|
| 159 |
+
background-image: -o-linear-gradient(top, #eefcf1, #deece1); /* Opera */
|
| 160 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#eefcf1), to(#deece1)); /* old Webkit */
|
| 161 |
+
background-image: -webkit-linear-gradient(top, #eefcf1, #deece1); /* new Webkit */
|
| 162 |
+
background-image: linear-gradient(top, #eefcf1, #deece1); /* proposed W3C Markup */
|
| 163 |
+
}
|
| 164 |
+
|
| 165 |
+
.widget .widget-top,
|
| 166 |
+
.postbox h3,
|
| 167 |
+
.stuffbox h3 {
|
| 168 |
+
border-bottom-color: #dfdfdf;
|
| 169 |
+
text-shadow: #fff 0 1px 0;
|
| 170 |
+
-moz-box-shadow: 0 1px 0 #fff;
|
| 171 |
+
-webkit-box-shadow: 0 1px 0 #fff;
|
| 172 |
+
box-shadow: 0 1px 0 #fff;
|
| 173 |
+
}
|
| 174 |
+
|
| 175 |
+
.form-table th,
|
| 176 |
+
.form-wrap label {
|
| 177 |
+
color: #222;
|
| 178 |
+
text-shadow: #fff 0 1px 0;
|
| 179 |
+
}
|
| 180 |
+
|
| 181 |
+
.description,
|
| 182 |
+
.form-wrap p {
|
| 183 |
+
color: #666;
|
| 184 |
+
}
|
| 185 |
+
|
| 186 |
+
strong .post-com-count span {
|
| 187 |
+
background-color: #21759b;
|
| 188 |
+
}
|
| 189 |
+
|
| 190 |
+
.sorthelper {
|
| 191 |
+
background-color: #ccf3fa;
|
| 192 |
+
}
|
| 193 |
+
|
| 194 |
+
.ac_match,
|
| 195 |
+
.subsubsub a.current {
|
| 196 |
+
color: #000;
|
| 197 |
+
}
|
| 198 |
+
|
| 199 |
+
.wrap h2 {
|
| 200 |
+
color: #464646;
|
| 201 |
+
}
|
| 202 |
+
|
| 203 |
+
.wrap .add-new-h2 {
|
| 204 |
+
background: #f1f1f1;
|
| 205 |
+
}
|
| 206 |
+
|
| 207 |
+
.subtitle {
|
| 208 |
+
color: #777;
|
| 209 |
+
}
|
| 210 |
+
|
| 211 |
+
.ac_over {
|
| 212 |
+
background-color: #f0f0b8;
|
| 213 |
+
}
|
| 214 |
+
|
| 215 |
+
.ac_results {
|
| 216 |
+
background-color: #fff;
|
| 217 |
+
border-color: #808080;
|
| 218 |
+
}
|
| 219 |
+
|
| 220 |
+
.ac_results li {
|
| 221 |
+
color: #101010;
|
| 222 |
+
}
|
| 223 |
+
|
| 224 |
+
.alternate,
|
| 225 |
+
.alt {
|
| 226 |
+
background-color: #fcfcfc;
|
| 227 |
+
}
|
| 228 |
+
|
| 229 |
+
.available-theme a.screenshot {
|
| 230 |
+
background-color: #f1f1f1;
|
| 231 |
+
border-color: #ddd;
|
| 232 |
+
}
|
| 233 |
+
|
| 234 |
+
.bar {
|
| 235 |
+
background-color: #e8e8e8;
|
| 236 |
+
border-right-color: #99d;
|
| 237 |
+
}
|
| 238 |
+
|
| 239 |
+
#media-upload,
|
| 240 |
+
#media-upload .media-item .slidetoggle {
|
| 241 |
+
background: #fff;
|
| 242 |
+
}
|
| 243 |
+
|
| 244 |
+
#media-upload .slidetoggle {
|
| 245 |
+
border-top-color: #dfdfdf;
|
| 246 |
+
}
|
| 247 |
+
|
| 248 |
+
div.error,
|
| 249 |
+
.login #login_error {
|
| 250 |
+
background-color: #ffebe8;
|
| 251 |
+
border-color: #c00;
|
| 252 |
+
}
|
| 253 |
+
|
| 254 |
+
div.error a {
|
| 255 |
+
color: #c00;
|
| 256 |
+
}
|
| 257 |
+
|
| 258 |
+
.form-invalid {
|
| 259 |
+
background-color: #ffebe8 !important;
|
| 260 |
+
}
|
| 261 |
+
|
| 262 |
+
.form-invalid input,
|
| 263 |
+
.form-invalid select {
|
| 264 |
+
border-color: #c00 !important;
|
| 265 |
+
}
|
| 266 |
+
|
| 267 |
+
.submit {
|
| 268 |
+
border-color: #DFDFDF;
|
| 269 |
+
}
|
| 270 |
+
|
| 271 |
+
.highlight {
|
| 272 |
+
background-color: #e4f2fd;
|
| 273 |
+
color: #000;
|
| 274 |
+
}
|
| 275 |
+
|
| 276 |
+
.howto,
|
| 277 |
+
.nonessential,
|
| 278 |
+
#edit-slug-box,
|
| 279 |
+
.form-input-tip,
|
| 280 |
+
.subsubsub {
|
| 281 |
+
color: #666;
|
| 282 |
+
}
|
| 283 |
+
|
| 284 |
+
.media-item {
|
| 285 |
+
border-bottom-color: #dfdfdf;
|
| 286 |
+
}
|
| 287 |
+
|
| 288 |
+
#wpbody-content #media-items .describe {
|
| 289 |
+
border-top-color: #dfdfdf;
|
| 290 |
+
}
|
| 291 |
+
|
| 292 |
+
.media-upload-form label.form-help,
|
| 293 |
+
td.help {
|
| 294 |
+
color: #9a9a9a;
|
| 295 |
+
}
|
| 296 |
+
|
| 297 |
+
.post-com-count {
|
| 298 |
+
background-image: url(../../../../wp-admin/images/bubble_bg.gif);
|
| 299 |
+
color: #fff;
|
| 300 |
+
}
|
| 301 |
+
|
| 302 |
+
.post-com-count span {
|
| 303 |
+
background-color: #bbb;
|
| 304 |
+
color: #fff;
|
| 305 |
+
}
|
| 306 |
+
|
| 307 |
+
.post-com-count:hover span {
|
| 308 |
+
background-color: #d54e21;
|
| 309 |
+
}
|
| 310 |
+
|
| 311 |
+
.quicktags, .search {
|
| 312 |
+
background-color: #ccc;
|
| 313 |
+
color: #000;
|
| 314 |
+
}
|
| 315 |
+
|
| 316 |
+
.side-info h5 {
|
| 317 |
+
border-bottom-color: #dadada;
|
| 318 |
+
}
|
| 319 |
+
|
| 320 |
+
.side-info ul {
|
| 321 |
+
color: #666;
|
| 322 |
+
}
|
| 323 |
+
|
| 324 |
+
.button,
|
| 325 |
+
.button-secondary,
|
| 326 |
+
.submit input,
|
| 327 |
+
input[type=button],
|
| 328 |
+
input[type=submit] {
|
| 329 |
+
border-color: #bbb;
|
| 330 |
+
color: #464646;
|
| 331 |
+
}
|
| 332 |
+
|
| 333 |
+
.button:hover,
|
| 334 |
+
.button-secondary:hover,
|
| 335 |
+
.submit input:hover,
|
| 336 |
+
input[type=button]:hover,
|
| 337 |
+
input[type=submit]:hover {
|
| 338 |
+
color: #000;
|
| 339 |
+
border-color: #666;
|
| 340 |
+
}
|
| 341 |
+
|
| 342 |
+
.button,
|
| 343 |
+
.submit input,
|
| 344 |
+
.button-secondary {
|
| 345 |
+
background: #f2f2f2 url(../../../../wp-admin/images/white-grad.png) repeat-x scroll left top;
|
| 346 |
+
text-shadow: rgba(255,255,255,1) 0 1px 0;
|
| 347 |
+
}
|
| 348 |
+
|
| 349 |
+
.button:active,
|
| 350 |
+
.submit input:active,
|
| 351 |
+
.button-secondary:active {
|
| 352 |
+
background: #eee url(../../../../wp-admin/images/white-grad-active.png) repeat-x scroll left top;
|
| 353 |
+
}
|
| 354 |
+
|
| 355 |
+
input.button-primary,
|
| 356 |
+
button.button-primary,
|
| 357 |
+
a.button-primary {
|
| 358 |
+
border-color: #555;
|
| 359 |
+
font-weight: bold;
|
| 360 |
+
color: #fff;
|
| 361 |
+
background: #060 url(../images/button-grad.png) repeat-x scroll left top;
|
| 362 |
+
text-shadow: rgba(0,0,0,0.3) 0 -1px 0;
|
| 363 |
+
}
|
| 364 |
+
|
| 365 |
+
input.button-primary:active,
|
| 366 |
+
button.button-primary:active,
|
| 367 |
+
a.button-primary:active {
|
| 368 |
+
background: #060 url(../images/button-grad.png) repeat-x scroll left bottom;
|
| 369 |
+
color: #cae8be;
|
| 370 |
+
}
|
| 371 |
+
|
| 372 |
+
input.button-primary:hover,
|
| 373 |
+
button.button-primary:hover,
|
| 374 |
+
a.button-primary:hover,
|
| 375 |
+
a.button-primary:focus,
|
| 376 |
+
a.button-primary:active {
|
| 377 |
+
border-color: #13455b;
|
| 378 |
+
color: #eaf2fa;
|
| 379 |
+
}
|
| 380 |
+
|
| 381 |
+
.button-disabled,
|
| 382 |
+
.button[disabled],
|
| 383 |
+
.button:disabled,
|
| 384 |
+
.button-secondary[disabled],
|
| 385 |
+
.button-secondary:disabled,
|
| 386 |
+
a.button.disabled {
|
| 387 |
+
color: #aaa !important;
|
| 388 |
+
border-color: #555 !important;
|
| 389 |
+
}
|
| 390 |
+
|
| 391 |
+
.button-primary-disabled,
|
| 392 |
+
.button-primary[disabled],
|
| 393 |
+
.button-primary:disabled {
|
| 394 |
+
color: #9FD0D5 !important;
|
| 395 |
+
background: #298CBA !important;
|
| 396 |
+
}
|
| 397 |
+
|
| 398 |
+
a:hover,
|
| 399 |
+
a:active,
|
| 400 |
+
a:focus {
|
| 401 |
+
color: #d54e21;
|
| 402 |
+
}
|
| 403 |
+
|
| 404 |
+
#wphead #viewsite a:hover,
|
| 405 |
+
#adminmenu a:hover,
|
| 406 |
+
#adminmenu ul.wp-submenu a:hover,
|
| 407 |
+
#the-comment-list .comment a:hover,
|
| 408 |
+
#rightnow a:hover,
|
| 409 |
+
#media-upload a.del-link:hover,
|
| 410 |
+
div.dashboard-widget-submit input:hover,
|
| 411 |
+
.subsubsub a:hover,
|
| 412 |
+
.subsubsub a.current:hover,
|
| 413 |
+
.ui-tabs-nav a:hover,
|
| 414 |
+
.plugins .inactive a:hover,
|
| 415 |
+
#all-plugins-table .plugins .inactive a:hover,
|
| 416 |
+
#search-plugins-table .plugins .inactive a:hover {
|
| 417 |
+
color: #d54e21;
|
| 418 |
+
}
|
| 419 |
+
|
| 420 |
+
#the-comment-list .comment-item,
|
| 421 |
+
#dashboard-widgets #dashboard_quick_press form p.submit {
|
| 422 |
+
border-color: #dfdfdf;
|
| 423 |
+
}
|
| 424 |
+
|
| 425 |
+
#side-sortables .category-tabs .tabs a,
|
| 426 |
+
#side-sortables .add-menu-item-tabs .tabs a,
|
| 427 |
+
.wp-tab-bar .wp-tab-active a {
|
| 428 |
+
color: #333;
|
| 429 |
+
}
|
| 430 |
+
|
| 431 |
+
#rightnow .rbutton {
|
| 432 |
+
background-color: #ebebeb;
|
| 433 |
+
color: #264761;
|
| 434 |
+
}
|
| 435 |
+
|
| 436 |
+
.submitbox .submit {
|
| 437 |
+
background-color: #464646;
|
| 438 |
+
color: #ccc;
|
| 439 |
+
}
|
| 440 |
+
|
| 441 |
+
.plugins a.delete:hover,
|
| 442 |
+
#all-plugins-table .plugins a.delete:hover,
|
| 443 |
+
#search-plugins-table .plugins a.delete:hover,
|
| 444 |
+
.submitbox .submitdelete {
|
| 445 |
+
color: #f00;
|
| 446 |
+
border-bottom-color: #f00;
|
| 447 |
+
}
|
| 448 |
+
|
| 449 |
+
.submitbox .submitdelete:hover,
|
| 450 |
+
#media-items a.delete:hover {
|
| 451 |
+
color: #fff;
|
| 452 |
+
background-color: #f00;
|
| 453 |
+
border-bottom-color: #f00;
|
| 454 |
+
}
|
| 455 |
+
|
| 456 |
+
#normal-sortables .submitbox .submitdelete:hover {
|
| 457 |
+
color: #000;
|
| 458 |
+
background-color: #f00;
|
| 459 |
+
border-bottom-color: #f00;
|
| 460 |
+
}
|
| 461 |
+
|
| 462 |
+
.tablenav .dots {
|
| 463 |
+
border-color: transparent;
|
| 464 |
+
}
|
| 465 |
+
|
| 466 |
+
.tablenav .next,
|
| 467 |
+
.tablenav .prev {
|
| 468 |
+
border-color: transparent;
|
| 469 |
+
color: #21759b;
|
| 470 |
+
}
|
| 471 |
+
|
| 472 |
+
.tablenav .next:hover,
|
| 473 |
+
.tablenav .prev:hover {
|
| 474 |
+
border-color: transparent;
|
| 475 |
+
color: #d54e21;
|
| 476 |
+
}
|
| 477 |
+
|
| 478 |
+
div.updated,
|
| 479 |
+
.login .message {
|
| 480 |
+
background-color: #ffffe0;
|
| 481 |
+
border-color: #e6db55;
|
| 482 |
+
}
|
| 483 |
+
|
| 484 |
+
.update-message {
|
| 485 |
+
color: #000;
|
| 486 |
+
}
|
| 487 |
+
|
| 488 |
+
a.page-numbers {
|
| 489 |
+
border-bottom-color: #B8D3E2;
|
| 490 |
+
}
|
| 491 |
+
|
| 492 |
+
.commentlist li {
|
| 493 |
+
border-bottom-color: #ccc;
|
| 494 |
+
}
|
| 495 |
+
|
| 496 |
+
.widefat td,
|
| 497 |
+
.widefat th {
|
| 498 |
+
border-top-color: #fff;
|
| 499 |
+
border-bottom-color: #dfdfdf;
|
| 500 |
+
}
|
| 501 |
+
|
| 502 |
+
.widefat th {
|
| 503 |
+
text-shadow: rgba(255,255,255,0.8) 0 1px 0;
|
| 504 |
+
}
|
| 505 |
+
|
| 506 |
+
.widefat td {
|
| 507 |
+
color: #555;
|
| 508 |
+
}
|
| 509 |
+
.widefat p,
|
| 510 |
+
.widefat ol,
|
| 511 |
+
.widefat ul {
|
| 512 |
+
color: #333;
|
| 513 |
+
}
|
| 514 |
+
|
| 515 |
+
.widefat thead tr th,
|
| 516 |
+
.widefat tfoot tr th,
|
| 517 |
+
h3.dashboard-widget-title,
|
| 518 |
+
h3.dashboard-widget-title span,
|
| 519 |
+
h3.dashboard-widget-title small,
|
| 520 |
+
.find-box-head {
|
| 521 |
+
color: #333;
|
| 522 |
+
}
|
| 523 |
+
|
| 524 |
+
th.sortable a:hover, th.sortable a:active, th.sortable a:focus {
|
| 525 |
+
color: #333;
|
| 526 |
+
}
|
| 527 |
+
|
| 528 |
+
h3.dashboard-widget-title small a {
|
| 529 |
+
color: #d7d7d7;
|
| 530 |
+
}
|
| 531 |
+
|
| 532 |
+
h3.dashboard-widget-title small a:hover {
|
| 533 |
+
color: #fff;
|
| 534 |
+
}
|
| 535 |
+
|
| 536 |
+
a,
|
| 537 |
+
#adminmenu a,
|
| 538 |
+
#poststuff #edButtonPreview,
|
| 539 |
+
#poststuff #edButtonHTML,
|
| 540 |
+
#the-comment-list p.comment-author strong a,
|
| 541 |
+
#media-upload a.del-link,
|
| 542 |
+
#media-items a.delete,
|
| 543 |
+
.plugins a.delete,
|
| 544 |
+
.ui-tabs-nav a {
|
| 545 |
+
color: #007700;
|
| 546 |
+
}
|
| 547 |
+
|
| 548 |
+
#adminmenu .awaiting-mod,
|
| 549 |
+
#adminmenu .update-plugins,
|
| 550 |
+
#sidemenu a .update-plugins,
|
| 551 |
+
#rightnow .reallynow {
|
| 552 |
+
background-color: #464646;
|
| 553 |
+
color: #fff;
|
| 554 |
+
-moz-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 555 |
+
-khtml-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 556 |
+
-webkit-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 557 |
+
box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 558 |
+
}
|
| 559 |
+
#plugin-information .action-button {
|
| 560 |
+
background-color: #d54e21;
|
| 561 |
+
color: #fff;
|
| 562 |
+
}
|
| 563 |
+
|
| 564 |
+
#adminmenu li.current a .awaiting-mod,
|
| 565 |
+
#adminmenu li a.wp-has-current-submenu .update-plugins{
|
| 566 |
+
background-color: #464646;
|
| 567 |
+
color: #fff;
|
| 568 |
+
-moz-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 569 |
+
-khtml-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 570 |
+
-webkit-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 571 |
+
box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 572 |
+
}
|
| 573 |
+
|
| 574 |
+
div#media-upload-header,
|
| 575 |
+
div#plugin-information-header {
|
| 576 |
+
background-color: #f9f9f9;
|
| 577 |
+
border-bottom-color: #dfdfdf;
|
| 578 |
+
}
|
| 579 |
+
|
| 580 |
+
#currenttheme img {
|
| 581 |
+
border-color: #666;
|
| 582 |
+
}
|
| 583 |
+
|
| 584 |
+
#dashboard_secondary div.dashboard-widget-content ul li a {
|
| 585 |
+
background-color: #f9f9f9;
|
| 586 |
+
}
|
| 587 |
+
|
| 588 |
+
input.readonly, textarea.readonly {
|
| 589 |
+
background-color: #ddd;
|
| 590 |
+
}
|
| 591 |
+
|
| 592 |
+
#ed_toolbar input,
|
| 593 |
+
#ed_reply_toolbar input {
|
| 594 |
+
background: #fff url("../../../../wp-admin/images/fade-butt.png") repeat-x 0 -2px;
|
| 595 |
+
}
|
| 596 |
+
|
| 597 |
+
#editable-post-name {
|
| 598 |
+
background-color: #fffbcc;
|
| 599 |
+
}
|
| 600 |
+
|
| 601 |
+
#edit-slug-box strong,
|
| 602 |
+
.tablenav .displaying-num,
|
| 603 |
+
#submitted-on,
|
| 604 |
+
.submitted-on {
|
| 605 |
+
color: #777;
|
| 606 |
+
}
|
| 607 |
+
|
| 608 |
+
.login #nav a,
|
| 609 |
+
.login #backtoblog a {
|
| 610 |
+
color: #21759b !important;
|
| 611 |
+
}
|
| 612 |
+
|
| 613 |
+
.login #nav a:hover,
|
| 614 |
+
.login #backtoblog a:hover {
|
| 615 |
+
color: #d54e21 !important;
|
| 616 |
+
}
|
| 617 |
+
|
| 618 |
+
#footer {
|
| 619 |
+
color: #777;
|
| 620 |
+
border-color: #dfdfdf;
|
| 621 |
+
}
|
| 622 |
+
|
| 623 |
+
#media-items,
|
| 624 |
+
.imgedit-group {
|
| 625 |
+
border-color: #dfdfdf;
|
| 626 |
+
}
|
| 627 |
+
|
| 628 |
+
.checkbox,
|
| 629 |
+
.side-info,
|
| 630 |
+
.plugins tr,
|
| 631 |
+
#your-profile #rich_editing {
|
| 632 |
+
background-color: #fcfcfc;
|
| 633 |
+
}
|
| 634 |
+
|
| 635 |
+
.plugins .inactive,
|
| 636 |
+
.plugins .inactive th,
|
| 637 |
+
.plugins .inactive td,
|
| 638 |
+
tr.inactive + tr.plugin-update-tr .plugin-update {
|
| 639 |
+
background-color: #f4f4f4;
|
| 640 |
+
}
|
| 641 |
+
|
| 642 |
+
.plugin-update-tr .update-message {
|
| 643 |
+
background-color: #fffbe4;
|
| 644 |
+
border-color: #dfdfdf;
|
| 645 |
+
}
|
| 646 |
+
|
| 647 |
+
.plugins .active,
|
| 648 |
+
.plugins .active th,
|
| 649 |
+
.plugins .active td {
|
| 650 |
+
color: #000;
|
| 651 |
+
}
|
| 652 |
+
|
| 653 |
+
.plugins .inactive a {
|
| 654 |
+
color: #557799;
|
| 655 |
+
}
|
| 656 |
+
|
| 657 |
+
#the-comment-list tr.undo,
|
| 658 |
+
#the-comment-list div.undo {
|
| 659 |
+
background-color: #f4f4f4;
|
| 660 |
+
}
|
| 661 |
+
|
| 662 |
+
#the-comment-list .unapproved {
|
| 663 |
+
background-color: #ffffe0;
|
| 664 |
+
}
|
| 665 |
+
|
| 666 |
+
#the-comment-list .approve a {
|
| 667 |
+
color: #006505;
|
| 668 |
+
}
|
| 669 |
+
|
| 670 |
+
#the-comment-list .unapprove a {
|
| 671 |
+
color: #d98500;
|
| 672 |
+
}
|
| 673 |
+
|
| 674 |
+
table.widefat span.delete a,
|
| 675 |
+
table.widefat span.trash a,
|
| 676 |
+
table.widefat span.spam a,
|
| 677 |
+
#dashboard_recent_comments .delete a,
|
| 678 |
+
#dashboard_recent_comments .trash a,
|
| 679 |
+
#dashboard_recent_comments .spam a {
|
| 680 |
+
color: #bc0b0b;
|
| 681 |
+
}
|
| 682 |
+
|
| 683 |
+
.widget,
|
| 684 |
+
#widget-list .widget-top,
|
| 685 |
+
.postbox,
|
| 686 |
+
#titlediv,
|
| 687 |
+
#poststuff .postarea,
|
| 688 |
+
.stuffbox {
|
| 689 |
+
border-color: #dfdfdf;
|
| 690 |
+
-moz-box-shadow: inset 0 1px 0 #fff;
|
| 691 |
+
-webkit-box-shadow: inset 0 1px 0 #fff;
|
| 692 |
+
box-shadow: inset 0 1px 0 #fff;
|
| 693 |
+
-moz-border-radius: 3px;
|
| 694 |
+
-khtml-border-radius: 3px;
|
| 695 |
+
-webkit-border-radius: 3px;
|
| 696 |
+
border-radius: 3px;
|
| 697 |
+
}
|
| 698 |
+
|
| 699 |
+
.widget,
|
| 700 |
+
#widget-list .widget-top,
|
| 701 |
+
.postbox,
|
| 702 |
+
.menu-item-settings {
|
| 703 |
+
background-color: #deece1; /* Fallback */
|
| 704 |
+
background-image: -ms-linear-gradient(top, #eefcf1, #eefcf1); /* IE10 */
|
| 705 |
+
background-image: -moz-linear-gradient(top, #deece1, #eefcf1); /* Firefox */
|
| 706 |
+
background-image: -o-linear-gradient(top, #deece1, #eefcf1); /* Opera */
|
| 707 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#deece1), to(#eefcf1)); /* old Webkit */
|
| 708 |
+
background-image: -webkit-linear-gradient(top, #deece1, #eefcf1); /* new Webkit */
|
| 709 |
+
background-image: linear-gradient(top, #deece1, #eefcf1); /* proposed W3C Markup */
|
| 710 |
+
}
|
| 711 |
+
|
| 712 |
+
.postbox h3 {
|
| 713 |
+
color: #464646;
|
| 714 |
+
}
|
| 715 |
+
|
| 716 |
+
.widget .widget-top {
|
| 717 |
+
color: #222;
|
| 718 |
+
}
|
| 719 |
+
|
| 720 |
+
.sidebar-name:hover h3,
|
| 721 |
+
.postbox h3:hover {
|
| 722 |
+
color: #000;
|
| 723 |
+
}
|
| 724 |
+
|
| 725 |
+
.curtime #timestamp {
|
| 726 |
+
background-image: url(../../../../wp-admin/images/date-button.gif);
|
| 727 |
+
}
|
| 728 |
+
|
| 729 |
+
#quicktags #ed_link {
|
| 730 |
+
color: #00f;
|
| 731 |
+
}
|
| 732 |
+
|
| 733 |
+
#rightnow .youhave {
|
| 734 |
+
background-color: #f0f6fb;
|
| 735 |
+
}
|
| 736 |
+
|
| 737 |
+
#rightnow a {
|
| 738 |
+
color: #448abd;
|
| 739 |
+
}
|
| 740 |
+
|
| 741 |
+
.tagchecklist span a,
|
| 742 |
+
#bulk-titles div a {
|
| 743 |
+
background: url(../../../../wp-admin/images/xit.gif) no-repeat;
|
| 744 |
+
}
|
| 745 |
+
|
| 746 |
+
.tagchecklist span a:hover,
|
| 747 |
+
#bulk-titles div a:hover {
|
| 748 |
+
background: url(../../../../wp-admin/images/xit.gif) no-repeat -10px 0;
|
| 749 |
+
}
|
| 750 |
+
|
| 751 |
+
#update-nag, .update-nag {
|
| 752 |
+
background-color: #FFFBCC;
|
| 753 |
+
border-color: #E6DB55;
|
| 754 |
+
color: #555;
|
| 755 |
+
}
|
| 756 |
+
|
| 757 |
+
.login #backtoblog a {
|
| 758 |
+
color: #464646;
|
| 759 |
+
}
|
| 760 |
+
|
| 761 |
+
#wphead {
|
| 762 |
+
border-bottom:#dfdfdf 1px solid;
|
| 763 |
+
}
|
| 764 |
+
|
| 765 |
+
#wphead h1 a {
|
| 766 |
+
color: #464646;
|
| 767 |
+
}
|
| 768 |
+
|
| 769 |
+
#user_info {
|
| 770 |
+
color: #555;
|
| 771 |
+
}
|
| 772 |
+
|
| 773 |
+
#user_info:hover,
|
| 774 |
+
#user_info.active {
|
| 775 |
+
color: #222;
|
| 776 |
+
}
|
| 777 |
+
|
| 778 |
+
#user_info.active {
|
| 779 |
+
background-color: #f1f1f1; /* Fallback */
|
| 780 |
+
background-image: -ms-linear-gradient(bottom, #e9e9e9, #f9f9f9); /* IE10 */
|
| 781 |
+
background-image: -moz-linear-gradient(bottom, #e9e9e9, #f9f9f9); /* Firefox */
|
| 782 |
+
background-image: -o-linear-gradient(bottom, #e9e9e9, #f9f9f9); /* Opera */
|
| 783 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#e9e9e9), to(#f9f9f9)); /* old Webkit */
|
| 784 |
+
background-image: -webkit-linear-gradient(bottom, #e9e9e9, #f9f9f9); /* new Webkit */
|
| 785 |
+
background-image: linear-gradient(bottom, #e9e9e9, #f9f9f9); /* proposed W3C Markup */
|
| 786 |
+
border-color: #aaa #aaa #dfdfdf;
|
| 787 |
+
}
|
| 788 |
+
|
| 789 |
+
#user_info_arrow {
|
| 790 |
+
background: transparent url(../../../../wp-admin/images/arrows.png) no-repeat 6px 5px;
|
| 791 |
+
}
|
| 792 |
+
|
| 793 |
+
#user_info:hover #user_info_arrow,
|
| 794 |
+
#user_info.active #user_info_arrow {
|
| 795 |
+
background: transparent url(../../../../wp-admin/images/arrows-dark.png) no-repeat 6px 5px;
|
| 796 |
+
}
|
| 797 |
+
|
| 798 |
+
#user_info_links {
|
| 799 |
+
-moz-box-shadow: 0 3px 2px -2px rgba( 0, 0, 0, 0.2 );
|
| 800 |
+
-webkit-box-shadow: 0 3px 2px -2px rgba( 0, 0, 0, 0.2 );
|
| 801 |
+
box-shadow: 0 3px 2px -2px rgba( 0, 0, 0, 0.2 );
|
| 802 |
+
}
|
| 803 |
+
|
| 804 |
+
#user_info_links ul {
|
| 805 |
+
background: #f1f1f1;
|
| 806 |
+
border-color: #ccc #aaa #aaa;
|
| 807 |
+
-moz-box-shadow: inset 0 1px 0 #f9f9f9;
|
| 808 |
+
-webkit-box-shadow: inset 0 1px 0 #f9f9f9;
|
| 809 |
+
box-shadow: inset 0 1px 0 #f9f9f9;
|
| 810 |
+
}
|
| 811 |
+
|
| 812 |
+
#user_info_links li:hover {
|
| 813 |
+
background-color: #dfdfdf;
|
| 814 |
+
}
|
| 815 |
+
|
| 816 |
+
#user_info_links li:hover a,
|
| 817 |
+
#user_info_links li a:hover {
|
| 818 |
+
text-decoration: none;
|
| 819 |
+
}
|
| 820 |
+
|
| 821 |
+
#user_info a:link,
|
| 822 |
+
#user_info a:visited,
|
| 823 |
+
#footer a:link,
|
| 824 |
+
#footer a:visited {
|
| 825 |
+
text-decoration: none;
|
| 826 |
+
}
|
| 827 |
+
|
| 828 |
+
#footer a:hover {
|
| 829 |
+
color: #000;
|
| 830 |
+
text-decoration: underline;
|
| 831 |
+
}
|
| 832 |
+
|
| 833 |
+
div#media-upload-error,
|
| 834 |
+
.file-error,
|
| 835 |
+
abbr.required,
|
| 836 |
+
.widget-control-remove:hover,
|
| 837 |
+
table.widefat .delete a:hover,
|
| 838 |
+
table.widefat .trash a:hover,
|
| 839 |
+
table.widefat .spam a:hover,
|
| 840 |
+
#dashboard_recent_comments .delete a:hover,
|
| 841 |
+
#dashboard_recent_comments .trash a:hover
|
| 842 |
+
#dashboard_recent_comments .spam a:hover {
|
| 843 |
+
color: #f00;
|
| 844 |
+
}
|
| 845 |
+
|
| 846 |
+
#pass-strength-result {
|
| 847 |
+
background-color: #eee;
|
| 848 |
+
border-color: #ddd !important;
|
| 849 |
+
}
|
| 850 |
+
|
| 851 |
+
#pass-strength-result.bad {
|
| 852 |
+
background-color: #ffb78c;
|
| 853 |
+
border-color: #ff853c !important;
|
| 854 |
+
}
|
| 855 |
+
|
| 856 |
+
#pass-strength-result.good {
|
| 857 |
+
background-color: #ffec8b;
|
| 858 |
+
border-color: #fc0 !important;
|
| 859 |
+
}
|
| 860 |
+
|
| 861 |
+
#pass-strength-result.short {
|
| 862 |
+
background-color: #ffa0a0;
|
| 863 |
+
border-color: #f04040 !important;
|
| 864 |
+
}
|
| 865 |
+
|
| 866 |
+
#pass-strength-result.strong {
|
| 867 |
+
background-color: #c3ff88;
|
| 868 |
+
border-color: #8dff1c !important;
|
| 869 |
+
}
|
| 870 |
+
|
| 871 |
+
/* editors */
|
| 872 |
+
#quicktags {
|
| 873 |
+
border-color: #ccc;
|
| 874 |
+
background-color: #dfdfdf;
|
| 875 |
+
background-image: url("../../../../wp-admin/images/ed-bg.gif");
|
| 876 |
+
}
|
| 877 |
+
|
| 878 |
+
#ed_toolbar input {
|
| 879 |
+
border-color: #C3C3C3;
|
| 880 |
+
}
|
| 881 |
+
|
| 882 |
+
#ed_toolbar input:hover {
|
| 883 |
+
border-color: #aaa;
|
| 884 |
+
background: #ddd;
|
| 885 |
+
}
|
| 886 |
+
|
| 887 |
+
#poststuff .wp_themeSkin .mceStatusbar {
|
| 888 |
+
border-color: #dfdfdf;
|
| 889 |
+
}
|
| 890 |
+
|
| 891 |
+
#poststuff .wp_themeSkin .mceStatusbar * {
|
| 892 |
+
color: #555;
|
| 893 |
+
}
|
| 894 |
+
|
| 895 |
+
#poststuff #edButtonPreview,
|
| 896 |
+
#poststuff #edButtonHTML {
|
| 897 |
+
background-color: #f1f1f1;
|
| 898 |
+
border-color: #dfdfdf #dfdfdf #ccc;
|
| 899 |
+
color: #999;
|
| 900 |
+
}
|
| 901 |
+
|
| 902 |
+
#poststuff #editor-toolbar .active {
|
| 903 |
+
border-color: #ccc #ccc #e9e9e9;
|
| 904 |
+
background-color: #e9e9e9;
|
| 905 |
+
color: #333;
|
| 906 |
+
}
|
| 907 |
+
|
| 908 |
+
/* TinyMCE */
|
| 909 |
+
#post-status-info {
|
| 910 |
+
background-color: #EDEDED;
|
| 911 |
+
}
|
| 912 |
+
|
| 913 |
+
.wp_themeSkin *,
|
| 914 |
+
.wp_themeSkin a:hover,
|
| 915 |
+
.wp_themeSkin a:link,
|
| 916 |
+
.wp_themeSkin a:visited,
|
| 917 |
+
.wp_themeSkin a:active {
|
| 918 |
+
color: #000;
|
| 919 |
+
}
|
| 920 |
+
|
| 921 |
+
/* Containers */
|
| 922 |
+
.wp_themeSkin table.mceLayout {
|
| 923 |
+
border-color: #ccc #ccc #dfdfdf;
|
| 924 |
+
}
|
| 925 |
+
|
| 926 |
+
#editorcontainer #content,
|
| 927 |
+
#editorcontainer .wp_themeSkin .mceIframeContainer {
|
| 928 |
+
-moz-box-shadow: inset 1px 1px 2px rgba( 0, 0, 0, 0.1 );
|
| 929 |
+
-webkit-box-shadow: inset 1px 1px 2px rgba( 0, 0, 0, 0.1 );
|
| 930 |
+
box-shadow: inset 1px 1px 2px rgba( 0, 0, 0, 0.1 );
|
| 931 |
+
}
|
| 932 |
+
.wp_themeSkin iframe {
|
| 933 |
+
background: transparent;
|
| 934 |
+
}
|
| 935 |
+
|
| 936 |
+
/* Layout */
|
| 937 |
+
.wp_themeSkin .mceStatusbar {
|
| 938 |
+
color: #000;
|
| 939 |
+
background-color: #f5f5f5;
|
| 940 |
+
}
|
| 941 |
+
|
| 942 |
+
/* Button */
|
| 943 |
+
.wp_themeSkin .mceButton {
|
| 944 |
+
border-color: #ccc;
|
| 945 |
+
background-color: #eee; /* Fallback */
|
| 946 |
+
background-image: -ms-linear-gradient(bottom, #ddd, #fff); /* IE10 */
|
| 947 |
+
background-image: -moz-linear-gradient(bottom, #ddd, #fff); /* Firefox */
|
| 948 |
+
background-image: -o-linear-gradient(bottom, #ddd, #fff); /* Opera */
|
| 949 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#fff)); /* old Webkit */
|
| 950 |
+
background-image: -webkit-linear-gradient(bottom, #ddd, #fff); /* new Webkit */
|
| 951 |
+
background-image: linear-gradient(bottom, #ddd, #fff); /* proposed W3C Markup */
|
| 952 |
+
}
|
| 953 |
+
|
| 954 |
+
.wp_themeSkin a.mceButtonEnabled:hover {
|
| 955 |
+
border-color: #a0a0a0;
|
| 956 |
+
background: #ddd; /* Fallback */
|
| 957 |
+
background-image: -ms-linear-gradient(bottom, #ccc, #fff); /* IE10 */
|
| 958 |
+
background-image: -moz-linear-gradient(bottom, #ccc, #fff); /* Firefox */
|
| 959 |
+
background-image: -o-linear-gradient(bottom, #ccc, #fff); /* Opera */
|
| 960 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#ccc), to(#fff)); /* old Webkit */
|
| 961 |
+
background-image: -webkit-linear-gradient(bottom, #ccc, #fff); /* new Webkit */
|
| 962 |
+
background-image: linear-gradient(bottom, #ccc, #fff); /* proposed W3C Markup */
|
| 963 |
+
}
|
| 964 |
+
|
| 965 |
+
.wp_themeSkin a.mceButton:active,
|
| 966 |
+
.wp_themeSkin a.mceButtonEnabled:active,
|
| 967 |
+
.wp_themeSkin a.mceButtonSelected:active,
|
| 968 |
+
.wp_themeSkin a.mceButtonActive,
|
| 969 |
+
.wp_themeSkin a.mceButtonActive:active,
|
| 970 |
+
.wp_themeSkin a.mceButtonActive:hover {
|
| 971 |
+
background-color: #ddd; /* Fallback */
|
| 972 |
+
background-image: -ms-linear-gradient(bottom, #eee, #bbb); /* IE10 */
|
| 973 |
+
background-image: -moz-linear-gradient(bottom, #eee, #bbb); /* Firefox */
|
| 974 |
+
background-image: -o-linear-gradient(bottom, #eee, #bbb); /* Opera */
|
| 975 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#eee), to(#bbb)); /* old Webkit */
|
| 976 |
+
background-image: -webkit-linear-gradient(bottom, #eee, #bbb); /* new Webkit */
|
| 977 |
+
background-image: linear-gradient(bottom, #eee, #bbb); /* proposed W3C Markup */
|
| 978 |
+
border-color: #909090;
|
| 979 |
+
}
|
| 980 |
+
|
| 981 |
+
.wp_themeSkin .mceButtonDisabled {
|
| 982 |
+
border-color: #ccc !important;
|
| 983 |
+
}
|
| 984 |
+
|
| 985 |
+
/* ListBox */
|
| 986 |
+
.wp_themeSkin .mceListBox .mceText,
|
| 987 |
+
.wp_themeSkin .mceListBox .mceOpen {
|
| 988 |
+
border-color: #ccc;
|
| 989 |
+
background-color: #eee; /* Fallback */
|
| 990 |
+
background-image: -ms-linear-gradient(bottom, #ddd, #fff); /* IE10 */
|
| 991 |
+
background-image: -moz-linear-gradient(bottom, #ddd, #fff); /* Firefox */
|
| 992 |
+
background-image: -o-linear-gradient(bottom, #ddd, #fff); /* Opera */
|
| 993 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#fff)); /* old Webkit */
|
| 994 |
+
background-image: -webkit-linear-gradient(bottom, #ddd, #fff); /* new Webkit */
|
| 995 |
+
background-image: linear-gradient(bottom, #ddd, #fff); /* proposed W3C Markup */
|
| 996 |
+
}
|
| 997 |
+
|
| 998 |
+
.wp_themeSkin .mceListBox .mceOpen {
|
| 999 |
+
border-left: 0 !important;
|
| 1000 |
+
}
|
| 1001 |
+
|
| 1002 |
+
.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,
|
| 1003 |
+
.wp_themeSkin .mceListBoxHover .mceOpen,
|
| 1004 |
+
.wp_themeSkin .mceListBoxHover:active .mceOpen,
|
| 1005 |
+
.wp_themeSkin .mceListBoxSelected .mceOpen,
|
| 1006 |
+
.wp_themeSkin .mceListBoxSelected .mceText,
|
| 1007 |
+
.wp_themeSkin table.mceListBoxEnabled:active .mceText {
|
| 1008 |
+
background: #ccc;
|
| 1009 |
+
border-color: #999;
|
| 1010 |
+
}
|
| 1011 |
+
|
| 1012 |
+
/* List Box Hover */
|
| 1013 |
+
.wp_themeSkin table.mceListBoxEnabled:hover .mceText,
|
| 1014 |
+
.wp_themeSkin .mceListBoxHover .mceText,
|
| 1015 |
+
.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,
|
| 1016 |
+
.wp_themeSkin .mceListBoxHover .mceOpen {
|
| 1017 |
+
border-color: #909090;
|
| 1018 |
+
background-color: #eee; /* Fallback */
|
| 1019 |
+
background-image: -ms-linear-gradient(bottom, #ccc, #fff); /* IE10 */
|
| 1020 |
+
background-image: -moz-linear-gradient(bottom, #ccc, #fff); /* Firefox */
|
| 1021 |
+
background-image: -o-linear-gradient(bottom, #ccc, #fff); /* Opera */
|
| 1022 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#ccc), to(#fff)); /* old Webkit */
|
| 1023 |
+
background-image: -webkit-linear-gradient(bottom, #ccc, #fff); /* new Webkit */
|
| 1024 |
+
background-image: linear-gradient(bottom, #ccc, #fff); /* proposed W3C Markup */
|
| 1025 |
+
}
|
| 1026 |
+
|
| 1027 |
+
.wp_themeSkin select.mceListBox {
|
| 1028 |
+
border-color: #B2B2B2;
|
| 1029 |
+
background-color: #fff;
|
| 1030 |
+
}
|
| 1031 |
+
|
| 1032 |
+
/* SplitButton */
|
| 1033 |
+
.wp_themeSkin .mceSplitButton a.mceAction,
|
| 1034 |
+
.wp_themeSkin .mceSplitButton a.mceOpen {
|
| 1035 |
+
border-color: #ccc;
|
| 1036 |
+
}
|
| 1037 |
+
|
| 1038 |
+
.wp_themeSkin .mceSplitButton a.mceOpen:hover,
|
| 1039 |
+
.wp_themeSkin .mceSplitButtonSelected a.mceOpen,
|
| 1040 |
+
.wp_themeSkin table.mceSplitButtonEnabled:hover a.mceAction,
|
| 1041 |
+
.wp_themeSkin .mceSplitButton a.mceAction:hover {
|
| 1042 |
+
border-color: #909090;
|
| 1043 |
+
}
|
| 1044 |
+
|
| 1045 |
+
|
| 1046 |
+
.wp_themeSkin table.mceSplitButton td {
|
| 1047 |
+
background-color: #eee; /* Fallback */
|
| 1048 |
+
background-image: -ms-linear-gradient(bottom, #ddd, #fff); /* IE10 */
|
| 1049 |
+
background-image: -moz-linear-gradient(bottom, #ddd, #fff); /* Firefox */
|
| 1050 |
+
background-image: -o-linear-gradient(bottom, #ddd, #fff); /* Opera */
|
| 1051 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#fff)); /* old Webkit */
|
| 1052 |
+
background-image: -webkit-linear-gradient(bottom, #ddd, #fff); /* new Webkit */
|
| 1053 |
+
background-image: linear-gradient(bottom, #ddd, #fff); /* proposed W3C Markup */
|
| 1054 |
+
}
|
| 1055 |
+
|
| 1056 |
+
.wp_themeSkin table.mceSplitButton:hover td {
|
| 1057 |
+
background-image: -ms-linear-gradient(bottom, #ccc, #fff); /* IE10 */
|
| 1058 |
+
background-image: -moz-linear-gradient(bottom, #ccc, #fff); /* Firefox */
|
| 1059 |
+
background-image: -o-linear-gradient(bottom, #ccc, #fff); /* Opera */
|
| 1060 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#ccc), to(#fff)); /* old Webkit */
|
| 1061 |
+
background-image: -webkit-linear-gradient(bottom, #ccc, #fff); /* new Webkit */
|
| 1062 |
+
background-image: linear-gradient(bottom, #ccc, #fff); /* proposed W3C Markup */
|
| 1063 |
+
}
|
| 1064 |
+
|
| 1065 |
+
.wp_themeSkin .mceSplitButtonActive {
|
| 1066 |
+
background-color: #B2B2B2;
|
| 1067 |
+
}
|
| 1068 |
+
|
| 1069 |
+
/* ColorSplitButton */
|
| 1070 |
+
.wp_themeSkin div.mceColorSplitMenu table {
|
| 1071 |
+
background-color: #ebebeb;
|
| 1072 |
+
border-color: #B2B2B2;
|
| 1073 |
+
}
|
| 1074 |
+
|
| 1075 |
+
.wp_themeSkin .mceColorSplitMenu a {
|
| 1076 |
+
border-color: #B2B2B2;
|
| 1077 |
+
}
|
| 1078 |
+
|
| 1079 |
+
.wp_themeSkin .mceColorSplitMenu a.mceMoreColors {
|
| 1080 |
+
border-color: #fff;
|
| 1081 |
+
}
|
| 1082 |
+
|
| 1083 |
+
.wp_themeSkin .mceColorSplitMenu a.mceMoreColors:hover {
|
| 1084 |
+
border-color: #0A246A;
|
| 1085 |
+
background-color: #B6BDD2;
|
| 1086 |
+
}
|
| 1087 |
+
|
| 1088 |
+
.wp_themeSkin a.mceMoreColors:hover {
|
| 1089 |
+
border-color: #0A246A;
|
| 1090 |
+
}
|
| 1091 |
+
|
| 1092 |
+
/* Menu */
|
| 1093 |
+
.wp_themeSkin .mceMenu {
|
| 1094 |
+
border-color: #ddd;
|
| 1095 |
+
}
|
| 1096 |
+
|
| 1097 |
+
.wp_themeSkin .mceMenu table {
|
| 1098 |
+
background-color: #ebeaeb;
|
| 1099 |
+
}
|
| 1100 |
+
|
| 1101 |
+
.wp_themeSkin .mceMenu .mceText {
|
| 1102 |
+
color: #000;
|
| 1103 |
+
}
|
| 1104 |
+
|
| 1105 |
+
.wp_themeSkin .mceMenu .mceMenuItemEnabled a:hover,
|
| 1106 |
+
.wp_themeSkin .mceMenu .mceMenuItemActive {
|
| 1107 |
+
background-color: #f5f5f5;
|
| 1108 |
+
}
|
| 1109 |
+
.wp_themeSkin td.mceMenuItemSeparator {
|
| 1110 |
+
background-color: #aaa;
|
| 1111 |
+
}
|
| 1112 |
+
.wp_themeSkin .mceMenuItemTitle a {
|
| 1113 |
+
background-color: #ccc;
|
| 1114 |
+
border-bottom-color: #aaa;
|
| 1115 |
+
}
|
| 1116 |
+
.wp_themeSkin .mceMenuItemTitle span.mceText {
|
| 1117 |
+
color: #000;
|
| 1118 |
+
}
|
| 1119 |
+
.wp_themeSkin .mceMenuItemDisabled .mceText {
|
| 1120 |
+
color: #888;
|
| 1121 |
+
}
|
| 1122 |
+
|
| 1123 |
+
.wp_themeSkin tr.mceFirst td.mceToolbar {
|
| 1124 |
+
background: #dfdfdf url("../../../../wp-admin/images/ed-bg.gif") repeat-x scroll left top;
|
| 1125 |
+
border-color: #ccc;
|
| 1126 |
+
}
|
| 1127 |
+
|
| 1128 |
+
.wp-admin #mceModalBlocker {
|
| 1129 |
+
background: #000;
|
| 1130 |
+
}
|
| 1131 |
+
|
| 1132 |
+
.wp-admin .clearlooks2 .mceFocus .mceTop .mceLeft {
|
| 1133 |
+
background: #444444;
|
| 1134 |
+
border-left: 1px solid #999;
|
| 1135 |
+
border-top: 1px solid #999;
|
| 1136 |
+
-moz-border-radius: 3px 0 0 0;
|
| 1137 |
+
-webkit-border-top-left-radius: 3px;
|
| 1138 |
+
-khtml-border-top-left-radius: 3px;
|
| 1139 |
+
border-top-left-radius: 3px;
|
| 1140 |
+
}
|
| 1141 |
+
|
| 1142 |
+
.wp-admin .clearlooks2 .mceFocus .mceTop .mceRight {
|
| 1143 |
+
background: #444444;
|
| 1144 |
+
border-right: 1px solid #999;
|
| 1145 |
+
border-top: 1px solid #999;
|
| 1146 |
+
border-top-right-radius: 3px;
|
| 1147 |
+
-khtml-border-top-right-radius: 3px;
|
| 1148 |
+
-webkit-border-top-right-radius: 3px;
|
| 1149 |
+
-moz-border-radius: 0 3px 0 0;
|
| 1150 |
+
}
|
| 1151 |
+
|
| 1152 |
+
.wp-admin .clearlooks2 .mceMiddle .mceLeft {
|
| 1153 |
+
background: #f1f1f1;
|
| 1154 |
+
border-left: 1px solid #999;
|
| 1155 |
+
}
|
| 1156 |
+
|
| 1157 |
+
.wp-admin .clearlooks2 .mceMiddle .mceRight {
|
| 1158 |
+
background: #f1f1f1;
|
| 1159 |
+
border-right: 1px solid #999;
|
| 1160 |
+
}
|
| 1161 |
+
|
| 1162 |
+
.wp-admin .clearlooks2 .mceBottom {
|
| 1163 |
+
background: #f1f1f1;
|
| 1164 |
+
border-bottom: 1px solid #999;
|
| 1165 |
+
}
|
| 1166 |
+
|
| 1167 |
+
.wp-admin .clearlooks2 .mceBottom .mceLeft {
|
| 1168 |
+
background: #f1f1f1;
|
| 1169 |
+
border-bottom: 1px solid #999;
|
| 1170 |
+
border-left: 1px solid #999;
|
| 1171 |
+
}
|
| 1172 |
+
|
| 1173 |
+
.wp-admin .clearlooks2 .mceBottom .mceCenter {
|
| 1174 |
+
background: #f1f1f1;
|
| 1175 |
+
border-bottom: 1px solid #999;
|
| 1176 |
+
}
|
| 1177 |
+
|
| 1178 |
+
.wp-admin .clearlooks2 .mceBottom .mceRight {
|
| 1179 |
+
background: #f1f1f1;
|
| 1180 |
+
border-bottom: 1px solid #999;
|
| 1181 |
+
border-right: 1px solid #999;
|
| 1182 |
+
}
|
| 1183 |
+
|
| 1184 |
+
.wp-admin .clearlooks2 .mceFocus .mceTop span {
|
| 1185 |
+
color: #e5e5e5;
|
| 1186 |
+
}
|
| 1187 |
+
/* end TinyMCE */
|
| 1188 |
+
|
| 1189 |
+
#titlediv #title {
|
| 1190 |
+
border-color: #ccc;
|
| 1191 |
+
}
|
| 1192 |
+
|
| 1193 |
+
#editorcontainer {
|
| 1194 |
+
border-color: #ccc #ccc #dfdfdf;
|
| 1195 |
+
}
|
| 1196 |
+
|
| 1197 |
+
#post-status-info {
|
| 1198 |
+
border-color: #dfdfdf #ccc #ccc;
|
| 1199 |
+
}
|
| 1200 |
+
|
| 1201 |
+
.editwidget .widget-inside {
|
| 1202 |
+
border-color: #dfdfdf;
|
| 1203 |
+
}
|
| 1204 |
+
|
| 1205 |
+
#titlediv #title {
|
| 1206 |
+
background-color: #fff;
|
| 1207 |
+
}
|
| 1208 |
+
|
| 1209 |
+
#tTips p#tTips_inside {
|
| 1210 |
+
background-color: #ddd;
|
| 1211 |
+
color: #333;
|
| 1212 |
+
}
|
| 1213 |
+
|
| 1214 |
+
#timestampdiv input,
|
| 1215 |
+
#namediv input,
|
| 1216 |
+
#poststuff .inside .the-tagcloud {
|
| 1217 |
+
border-color: #ddd;
|
| 1218 |
+
}
|
| 1219 |
+
|
| 1220 |
+
/* menu */
|
| 1221 |
+
#adminmenuback,
|
| 1222 |
+
#adminmenuwrap {
|
| 1223 |
+
background-color: #deece1;
|
| 1224 |
+
border-color: #ccc;
|
| 1225 |
+
}
|
| 1226 |
+
|
| 1227 |
+
#adminmenushadow,
|
| 1228 |
+
#adminmenuback {
|
| 1229 |
+
background-image: url(../../../../wp-admin/images/menu-shadow.png);
|
| 1230 |
+
background-position: top right;
|
| 1231 |
+
background-repeat: repeat-y;
|
| 1232 |
+
}
|
| 1233 |
+
|
| 1234 |
+
#adminmenu li.wp-menu-separator {
|
| 1235 |
+
background: #dfdfdf;
|
| 1236 |
+
border-color: #cfcfcf;
|
| 1237 |
+
}
|
| 1238 |
+
|
| 1239 |
+
#adminmenu div.separator {
|
| 1240 |
+
border-color: #deece1;
|
| 1241 |
+
}
|
| 1242 |
+
|
| 1243 |
+
#adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,
|
| 1244 |
+
#adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle {
|
| 1245 |
+
background: transparent url(../../../../wp-admin/images/arrows-dark.png) no-repeat -1px 6px;
|
| 1246 |
+
}
|
| 1247 |
+
|
| 1248 |
+
#adminmenu .wp-has-submenu:hover .wp-menu-toggle,
|
| 1249 |
+
#adminmenu .wp-menu-open .wp-menu-toggle {
|
| 1250 |
+
background: transparent url(../../../../wp-admin/images/arrows.png) no-repeat -2px 6px;
|
| 1251 |
+
}
|
| 1252 |
+
|
| 1253 |
+
#adminmenu a.menu-top,
|
| 1254 |
+
.folded #adminmenu li.menu-top,
|
| 1255 |
+
#adminmenu .wp-submenu .wp-submenu-head {
|
| 1256 |
+
border-top-color: #f9f9f9;
|
| 1257 |
+
border-bottom-color: #dfdfdf;
|
| 1258 |
+
}
|
| 1259 |
+
|
| 1260 |
+
#adminmenu li.wp-menu-open {
|
| 1261 |
+
border-color: #dfdfdf;
|
| 1262 |
+
}
|
| 1263 |
+
|
| 1264 |
+
#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
|
| 1265 |
+
#adminmenu li.current a.menu-top,
|
| 1266 |
+
.folded #adminmenu li.wp-has-current-submenu,
|
| 1267 |
+
.folded #adminmenu li.current.menu-top,
|
| 1268 |
+
#adminmenu .wp-menu-arrow,
|
| 1269 |
+
#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
|
| 1270 |
+
background-color: #777; /* Fallback */
|
| 1271 |
+
background-image: -ms-linear-gradient(bottom, #060, #6EB469); /* IE10 */
|
| 1272 |
+
background-image: -moz-linear-gradient(bottom, #060, #6EB469); /* Firefox */
|
| 1273 |
+
background-image: -o-linear-gradient(bottom, #060, #6EB469); /* Opera */
|
| 1274 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#060), to(#6EB469)); /* old Webkit */
|
| 1275 |
+
background-image: -webkit-linear-gradient(bottom, #060, #6EB469); /* new Webkit */
|
| 1276 |
+
background-image: linear-gradient(bottom, #060, #6EB469); /* proposed W3C Markup */
|
| 1277 |
+
}
|
| 1278 |
+
|
| 1279 |
+
#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
|
| 1280 |
+
#adminmenu li.current a.menu-top,
|
| 1281 |
+
#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
|
| 1282 |
+
text-shadow: 0 -1px 0 #333;
|
| 1283 |
+
color: #fff;
|
| 1284 |
+
border-top-color: #808080;
|
| 1285 |
+
border-bottom-color: #6d6d6d;
|
| 1286 |
+
}
|
| 1287 |
+
|
| 1288 |
+
.folded #adminmenu li.wp-has-current-submenu,
|
| 1289 |
+
.folded #adminmenu li.current.menu-top {
|
| 1290 |
+
border-top-color: #808080;
|
| 1291 |
+
border-bottom-color: #6d6d6d;
|
| 1292 |
+
}
|
| 1293 |
+
|
| 1294 |
+
#adminmenu .wp-submenu a:hover {
|
| 1295 |
+
background-color: #EEFCF1 !important;
|
| 1296 |
+
color: #333 !important;
|
| 1297 |
+
}
|
| 1298 |
+
|
| 1299 |
+
#adminmenu .wp-submenu li.current,
|
| 1300 |
+
#adminmenu .wp-submenu li.current a,
|
| 1301 |
+
#adminmenu .wp-submenu li.current a:hover {
|
| 1302 |
+
color: #333;
|
| 1303 |
+
}
|
| 1304 |
+
|
| 1305 |
+
#adminmenu .wp-submenu ul {
|
| 1306 |
+
background-color: #fff;
|
| 1307 |
+
}
|
| 1308 |
+
|
| 1309 |
+
.folded #adminmenu .wp-submenu-wrap,
|
| 1310 |
+
.folded #adminmenu .wp-submenu ul {
|
| 1311 |
+
border-color: #dfdfdf;
|
| 1312 |
+
}
|
| 1313 |
+
|
| 1314 |
+
.folded #adminmenu .wp-submenu-wrap {
|
| 1315 |
+
-moz-box-shadow: 2px 2px 5px rgba( 0, 0, 0, 0.4 );
|
| 1316 |
+
-webkit-box-shadow: 2px 2px 5px rgba( 0, 0, 0, 0.4 );
|
| 1317 |
+
box-shadow: 2px 2px 5px rgba( 0, 0, 0, 0.4 );
|
| 1318 |
+
}
|
| 1319 |
+
|
| 1320 |
+
#adminmenu .wp-submenu .wp-submenu-head {
|
| 1321 |
+
border-right-color: #dfdfdf;
|
| 1322 |
+
background-color: #ececec;
|
| 1323 |
+
}
|
| 1324 |
+
|
| 1325 |
+
#adminmenu div.wp-submenu {
|
| 1326 |
+
background-color: transparent;
|
| 1327 |
+
}
|
| 1328 |
+
|
| 1329 |
+
/* collapse menu button */
|
| 1330 |
+
#collapse-menu {
|
| 1331 |
+
color: #aaa;
|
| 1332 |
+
}
|
| 1333 |
+
|
| 1334 |
+
#collapse-menu:hover {
|
| 1335 |
+
color: #999;
|
| 1336 |
+
}
|
| 1337 |
+
|
| 1338 |
+
#collapse-button {
|
| 1339 |
+
border-color: #ccc;
|
| 1340 |
+
background-color: #f4f4f4; /* Fallback */
|
| 1341 |
+
background-image: -ms-linear-gradient(bottom, #dfdfdf, #fff); /* IE10 */
|
| 1342 |
+
background-image: -moz-linear-gradient(bottom, #dfdfdf, #fff); /* Firefox */
|
| 1343 |
+
background-image: -o-linear-gradient(bottom, #dfdfdf, #fff); /* Opera */
|
| 1344 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#fff)); /* old Webkit */
|
| 1345 |
+
background-image: -webkit-linear-gradient(bottom, #dfdfdf, #fff); /* new Webkit */
|
| 1346 |
+
background-image: linear-gradient(bottom, #dfdfdf, #fff); /* proposed W3C Markup */
|
| 1347 |
+
}
|
| 1348 |
+
#collapse-menu:hover #collapse-button {
|
| 1349 |
+
border-color: #aaa;
|
| 1350 |
+
}
|
| 1351 |
+
#collapse-button div {
|
| 1352 |
+
background: transparent url(../../../../wp-admin/images/arrows.png) no-repeat 0 -72px;
|
| 1353 |
+
}
|
| 1354 |
+
.folded #collapse-button div {
|
| 1355 |
+
background-position: 0 -108px;
|
| 1356 |
+
}
|
| 1357 |
+
|
| 1358 |
+
/* menu and screen icons */
|
| 1359 |
+
#adminmenu .menu-icon-dashboard div.wp-menu-image {
|
| 1360 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -60px -33px;
|
| 1361 |
+
}
|
| 1362 |
+
|
| 1363 |
+
#adminmenu .menu-icon-dashboard:hover div.wp-menu-image,
|
| 1364 |
+
#adminmenu .menu-icon-dashboard.wp-has-current-submenu div.wp-menu-image,
|
| 1365 |
+
#adminmenu .menu-icon-dashboard.current div.wp-menu-image {
|
| 1366 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -60px -1px;
|
| 1367 |
+
}
|
| 1368 |
+
|
| 1369 |
+
#adminmenu .menu-icon-post div.wp-menu-image {
|
| 1370 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -271px -33px;
|
| 1371 |
+
}
|
| 1372 |
+
|
| 1373 |
+
#adminmenu .menu-icon-post:hover div.wp-menu-image,
|
| 1374 |
+
#adminmenu .menu-icon-post.wp-has-current-submenu div.wp-menu-image {
|
| 1375 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -271px -1px;
|
| 1376 |
+
}
|
| 1377 |
+
|
| 1378 |
+
#adminmenu .menu-icon-media div.wp-menu-image {
|
| 1379 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -120px -33px;
|
| 1380 |
+
}
|
| 1381 |
+
|
| 1382 |
+
#adminmenu .menu-icon-media:hover div.wp-menu-image,
|
| 1383 |
+
#adminmenu .menu-icon-media.wp-has-current-submenu div.wp-menu-image {
|
| 1384 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -120px -1px;
|
| 1385 |
+
}
|
| 1386 |
+
|
| 1387 |
+
#adminmenu .menu-icon-links div.wp-menu-image {
|
| 1388 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -90px -33px;
|
| 1389 |
+
}
|
| 1390 |
+
|
| 1391 |
+
#adminmenu .menu-icon-links:hover div.wp-menu-image,
|
| 1392 |
+
#adminmenu .menu-icon-links.wp-has-current-submenu div.wp-menu-image {
|
| 1393 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -90px -1px;
|
| 1394 |
+
}
|
| 1395 |
+
|
| 1396 |
+
#adminmenu .menu-icon-page div.wp-menu-image {
|
| 1397 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -150px -33px;
|
| 1398 |
+
}
|
| 1399 |
+
|
| 1400 |
+
#adminmenu .menu-icon-page:hover div.wp-menu-image,
|
| 1401 |
+
#adminmenu .menu-icon-page.wp-has-current-submenu div.wp-menu-image {
|
| 1402 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -150px -1px;
|
| 1403 |
+
}
|
| 1404 |
+
|
| 1405 |
+
#adminmenu .menu-icon-comments div.wp-menu-image {
|
| 1406 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -30px -33px;
|
| 1407 |
+
}
|
| 1408 |
+
|
| 1409 |
+
#adminmenu .menu-icon-comments:hover div.wp-menu-image,
|
| 1410 |
+
#adminmenu .menu-icon-comments.wp-has-current-submenu div.wp-menu-image,
|
| 1411 |
+
#adminmenu .menu-icon-comments.current div.wp-menu-image {
|
| 1412 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -30px -1px;
|
| 1413 |
+
}
|
| 1414 |
+
|
| 1415 |
+
#adminmenu .menu-icon-appearance div.wp-menu-image {
|
| 1416 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll 0 -33px;
|
| 1417 |
+
}
|
| 1418 |
+
|
| 1419 |
+
#adminmenu .menu-icon-appearance:hover div.wp-menu-image,
|
| 1420 |
+
#adminmenu .menu-icon-appearance.wp-has-current-submenu div.wp-menu-image {
|
| 1421 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll 0 -1px;
|
| 1422 |
+
}
|
| 1423 |
+
|
| 1424 |
+
#adminmenu .menu-icon-plugins div.wp-menu-image {
|
| 1425 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -180px -33px;
|
| 1426 |
+
}
|
| 1427 |
+
|
| 1428 |
+
#adminmenu .menu-icon-plugins:hover div.wp-menu-image,
|
| 1429 |
+
#adminmenu .menu-icon-plugins.wp-has-current-submenu div.wp-menu-image {
|
| 1430 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -180px -1px;
|
| 1431 |
+
}
|
| 1432 |
+
|
| 1433 |
+
#adminmenu .menu-icon-users div.wp-menu-image {
|
| 1434 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -300px -33px;
|
| 1435 |
+
}
|
| 1436 |
+
|
| 1437 |
+
#adminmenu .menu-icon-users:hover div.wp-menu-image,
|
| 1438 |
+
#adminmenu .menu-icon-users.wp-has-current-submenu div.wp-menu-image,
|
| 1439 |
+
#adminmenu .menu-icon-users.current div.wp-menu-image {
|
| 1440 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -300px -1px;
|
| 1441 |
+
}
|
| 1442 |
+
|
| 1443 |
+
#adminmenu .menu-icon-tools div.wp-menu-image {
|
| 1444 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -210px -33px;
|
| 1445 |
+
}
|
| 1446 |
+
|
| 1447 |
+
#adminmenu .menu-icon-tools:hover div.wp-menu-image,
|
| 1448 |
+
#adminmenu .menu-icon-tools.wp-has-current-submenu div.wp-menu-image,
|
| 1449 |
+
#adminmenu .menu-icon-tools.current div.wp-menu-image {
|
| 1450 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -210px -1px;
|
| 1451 |
+
}
|
| 1452 |
+
|
| 1453 |
+
#icon-options-general,
|
| 1454 |
+
#adminmenu .menu-icon-settings div.wp-menu-image {
|
| 1455 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -240px -33px;
|
| 1456 |
+
}
|
| 1457 |
+
|
| 1458 |
+
#adminmenu .menu-icon-settings:hover div.wp-menu-image,
|
| 1459 |
+
#adminmenu .menu-icon-settings.wp-has-current-submenu div.wp-menu-image {
|
| 1460 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -240px -1px;
|
| 1461 |
+
}
|
| 1462 |
+
|
| 1463 |
+
#adminmenu .menu-icon-site div.wp-menu-image {
|
| 1464 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -360px -33px;
|
| 1465 |
+
}
|
| 1466 |
+
|
| 1467 |
+
#adminmenu .menu-icon-site:hover div.wp-menu-image,
|
| 1468 |
+
#adminmenu .menu-icon-site.wp-has-current-submenu div.wp-menu-image {
|
| 1469 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -360px -1px;
|
| 1470 |
+
}
|
| 1471 |
+
/* end menu and screen icons */
|
| 1472 |
+
|
| 1473 |
+
/* Screen Icons */
|
| 1474 |
+
#icon-edit,
|
| 1475 |
+
#icon-post {
|
| 1476 |
+
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -552px -5px;
|
| 1477 |
+
}
|
| 1478 |
+
|
| 1479 |
+
#icon-index {
|
| 1480 |
+
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -137px -5px;
|
| 1481 |
+
}
|
| 1482 |
+
|
| 1483 |
+
#icon-upload {
|
| 1484 |
+
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -251px -5px;
|
| 1485 |
+
}
|
| 1486 |
+
|
| 1487 |
+
#icon-link-manager,
|
| 1488 |
+
#icon-link,
|
| 1489 |
+
#icon-link-category {
|
| 1490 |
+
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -190px -5px;
|
| 1491 |
+
}
|
| 1492 |
+
|
| 1493 |
+
#icon-edit-pages,
|
| 1494 |
+
#icon-page {
|
| 1495 |
+
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -312px -5px;
|
| 1496 |
+
}
|
| 1497 |
+
|
| 1498 |
+
#icon-edit-comments {
|
| 1499 |
+
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -72px -5px;
|
| 1500 |
+
}
|
| 1501 |
+
|
| 1502 |
+
#icon-themes {
|
| 1503 |
+
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -11px -5px;
|
| 1504 |
+
}
|
| 1505 |
+
|
| 1506 |
+
#icon-plugins {
|
| 1507 |
+
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -370px -5px;
|
| 1508 |
+
}
|
| 1509 |
+
|
| 1510 |
+
#icon-users,
|
| 1511 |
+
#icon-profile,
|
| 1512 |
+
#icon-user-edit {
|
| 1513 |
+
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -600px -5px;
|
| 1514 |
+
}
|
| 1515 |
+
|
| 1516 |
+
#icon-tools,
|
| 1517 |
+
#icon-admin {
|
| 1518 |
+
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -432px -5px;
|
| 1519 |
+
}
|
| 1520 |
+
|
| 1521 |
+
#icon-options-general {
|
| 1522 |
+
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -492px -5px;
|
| 1523 |
+
}
|
| 1524 |
+
|
| 1525 |
+
#icon-ms-admin {
|
| 1526 |
+
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -659px -5px;
|
| 1527 |
+
}
|
| 1528 |
+
/* end screen icons */
|
| 1529 |
+
|
| 1530 |
+
|
| 1531 |
+
/* Diff */
|
| 1532 |
+
table.diff .diff-deletedline {
|
| 1533 |
+
background-color: #fdd;
|
| 1534 |
+
}
|
| 1535 |
+
|
| 1536 |
+
table.diff .diff-deletedline del {
|
| 1537 |
+
background-color: #f99;
|
| 1538 |
+
}
|
| 1539 |
+
|
| 1540 |
+
table.diff .diff-addedline {
|
| 1541 |
+
background-color: #dfd;
|
| 1542 |
+
}
|
| 1543 |
+
|
| 1544 |
+
table.diff .diff-addedline ins {
|
| 1545 |
+
background-color: #9f9;
|
| 1546 |
+
}
|
| 1547 |
+
|
| 1548 |
+
#att-info {
|
| 1549 |
+
background-color: #E4F2FD;
|
| 1550 |
+
}
|
| 1551 |
+
|
| 1552 |
+
/* edit image */
|
| 1553 |
+
#sidemenu a {
|
| 1554 |
+
background-color: #f9f9f9;
|
| 1555 |
+
border-color: #f9f9f9;
|
| 1556 |
+
border-bottom-color: #dfdfdf;
|
| 1557 |
+
}
|
| 1558 |
+
|
| 1559 |
+
#sidemenu a.current {
|
| 1560 |
+
background-color: #fff;
|
| 1561 |
+
border-color: #dfdfdf #dfdfdf #fff;
|
| 1562 |
+
color: #D54E21;
|
| 1563 |
+
}
|
| 1564 |
+
|
| 1565 |
+
#screen-options-wrap,
|
| 1566 |
+
#contextual-help-wrap {
|
| 1567 |
+
background-color: #f1f1f1;
|
| 1568 |
+
border-color: #dfdfdf;
|
| 1569 |
+
}
|
| 1570 |
+
|
| 1571 |
+
#screen-options-link-wrap,
|
| 1572 |
+
#contextual-help-link-wrap {
|
| 1573 |
+
background-color: #e3e3e3; /* Fallback */
|
| 1574 |
+
border-right: 1px solid transparent;
|
| 1575 |
+
border-left: 1px solid transparent;
|
| 1576 |
+
border-bottom: 1px solid transparent;
|
| 1577 |
+
background-image: -ms-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* IE10 */
|
| 1578 |
+
background-image: -moz-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* Firefox */
|
| 1579 |
+
background-image: -o-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* Opera */
|
| 1580 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#f1f1f1)); /* old Webkit */
|
| 1581 |
+
background-image: -webkit-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* new Webkit */
|
| 1582 |
+
background-image: linear-gradient(bottom, #dfdfdf, #f1f1f1); /* proposed W3C Markup */
|
| 1583 |
+
}
|
| 1584 |
+
|
| 1585 |
+
#screen-meta-links a.show-settings {
|
| 1586 |
+
color: #777;
|
| 1587 |
+
}
|
| 1588 |
+
|
| 1589 |
+
#screen-meta-links a.show-settings:hover {
|
| 1590 |
+
color: #000;
|
| 1591 |
+
}
|
| 1592 |
+
|
| 1593 |
+
#replysubmit {
|
| 1594 |
+
background-color: #f1f1f1;
|
| 1595 |
+
border-top-color: #ddd;
|
| 1596 |
+
}
|
| 1597 |
+
|
| 1598 |
+
#replyerror {
|
| 1599 |
+
border-color: #ddd;
|
| 1600 |
+
background-color: #f9f9f9;
|
| 1601 |
+
}
|
| 1602 |
+
|
| 1603 |
+
#edithead,
|
| 1604 |
+
#replyhead {
|
| 1605 |
+
background-color: #f1f1f1;
|
| 1606 |
+
}
|
| 1607 |
+
|
| 1608 |
+
#ed_reply_toolbar {
|
| 1609 |
+
background-color: #e9e9e9;
|
| 1610 |
+
}
|
| 1611 |
+
|
| 1612 |
+
/* table vim shortcuts */
|
| 1613 |
+
.vim-current,
|
| 1614 |
+
.vim-current th,
|
| 1615 |
+
.vim-current td {
|
| 1616 |
+
background-color: #E4F2FD !important;
|
| 1617 |
+
}
|
| 1618 |
+
|
| 1619 |
+
/* Install Plugins */
|
| 1620 |
+
.star-average,
|
| 1621 |
+
.star.star-rating {
|
| 1622 |
+
background-color: #fc0;
|
| 1623 |
+
}
|
| 1624 |
+
|
| 1625 |
+
div.star.select:hover {
|
| 1626 |
+
background-color: #d00;
|
| 1627 |
+
}
|
| 1628 |
+
|
| 1629 |
+
div.star img {
|
| 1630 |
+
border-left: 1px solid #fff;
|
| 1631 |
+
border-right: 1px solid #fff;
|
| 1632 |
+
}
|
| 1633 |
+
|
| 1634 |
+
.widefat div.star img {
|
| 1635 |
+
border-left: 1px solid #f9f9f9;
|
| 1636 |
+
border-right: 1px solid #f9f9f9;
|
| 1637 |
+
}
|
| 1638 |
+
|
| 1639 |
+
#plugin-information .fyi ul {
|
| 1640 |
+
background-color: #eaf3fa;
|
| 1641 |
+
}
|
| 1642 |
+
|
| 1643 |
+
#plugin-information .fyi h2.mainheader {
|
| 1644 |
+
background-color: #cee1ef;
|
| 1645 |
+
}
|
| 1646 |
+
|
| 1647 |
+
#plugin-information pre,
|
| 1648 |
+
#plugin-information code {
|
| 1649 |
+
background-color: #ededff;
|
| 1650 |
+
}
|
| 1651 |
+
|
| 1652 |
+
#plugin-information pre {
|
| 1653 |
+
border: 1px solid #ccc;
|
| 1654 |
+
}
|
| 1655 |
+
|
| 1656 |
+
/* inline editor */
|
| 1657 |
+
.inline-edit-row fieldset input[type="text"],
|
| 1658 |
+
.inline-edit-row fieldset textarea,
|
| 1659 |
+
#bulk-titles,
|
| 1660 |
+
#replyrow input {
|
| 1661 |
+
border-color: #ddd;
|
| 1662 |
+
}
|
| 1663 |
+
|
| 1664 |
+
.inline-editor div.title {
|
| 1665 |
+
background-color: #EAF3FA;
|
| 1666 |
+
}
|
| 1667 |
+
|
| 1668 |
+
.inline-editor ul.cat-checklist {
|
| 1669 |
+
background-color: #fff;
|
| 1670 |
+
border-color: #ddd;
|
| 1671 |
+
}
|
| 1672 |
+
|
| 1673 |
+
.inline-editor .categories .catshow,
|
| 1674 |
+
.inline-editor .categories .cathide {
|
| 1675 |
+
color: #21759b;
|
| 1676 |
+
}
|
| 1677 |
+
|
| 1678 |
+
.inline-editor .quick-edit-save {
|
| 1679 |
+
background-color: #f1f1f1;
|
| 1680 |
+
}
|
| 1681 |
+
|
| 1682 |
+
#replyrow #ed_reply_toolbar input:hover {
|
| 1683 |
+
border-color: #aaa;
|
| 1684 |
+
background: #ddd;
|
| 1685 |
+
}
|
| 1686 |
+
|
| 1687 |
+
fieldset.inline-edit-col-right .inline-edit-col {
|
| 1688 |
+
border-color: #dfdfdf;
|
| 1689 |
+
}
|
| 1690 |
+
|
| 1691 |
+
.attention {
|
| 1692 |
+
color: #D54E21;
|
| 1693 |
+
}
|
| 1694 |
+
|
| 1695 |
+
.meta-box-sortables .postbox:hover .handlediv {
|
| 1696 |
+
background: transparent url(../../../../wp-admin/images/arrows.png) no-repeat 6px 7px;
|
| 1697 |
+
}
|
| 1698 |
+
|
| 1699 |
+
.tablenav .tablenav-pages {
|
| 1700 |
+
color: #555;
|
| 1701 |
+
}
|
| 1702 |
+
|
| 1703 |
+
.tablenav .tablenav-pages a {
|
| 1704 |
+
border-color: #e3e3e3;
|
| 1705 |
+
background: #eee url('../images/menu-bits.gif?ver=20100610') repeat-x scroll left -379px;
|
| 1706 |
+
}
|
| 1707 |
+
|
| 1708 |
+
.tablenav .tablenav-pages a:hover,
|
| 1709 |
+
.tablenav .tablenav-pages a:focus {
|
| 1710 |
+
color: #d54e21;
|
| 1711 |
+
}
|
| 1712 |
+
|
| 1713 |
+
.tablenav .tablenav-pages a.disabled,
|
| 1714 |
+
.tablenav .tablenav-pages a.disabled:hover,
|
| 1715 |
+
.tablenav .tablenav-pages a.disabled:focus {
|
| 1716 |
+
color: #aaa;
|
| 1717 |
+
}
|
| 1718 |
+
|
| 1719 |
+
.tablenav .tablenav-pages .current {
|
| 1720 |
+
background: #dfdfdf;
|
| 1721 |
+
border-color: #d3d3d3;
|
| 1722 |
+
}
|
| 1723 |
+
|
| 1724 |
+
#availablethemes,
|
| 1725 |
+
#availablethemes td {
|
| 1726 |
+
border-color: #ddd;
|
| 1727 |
+
}
|
| 1728 |
+
|
| 1729 |
+
#current-theme img {
|
| 1730 |
+
border-color: #999;
|
| 1731 |
+
}
|
| 1732 |
+
|
| 1733 |
+
#TB_window #TB_title a.tb-theme-preview-link,
|
| 1734 |
+
#TB_window #TB_title a.tb-theme-preview-link:visited {
|
| 1735 |
+
color: #999;
|
| 1736 |
+
}
|
| 1737 |
+
|
| 1738 |
+
#TB_window #TB_title a.tb-theme-preview-link:hover,
|
| 1739 |
+
#TB_window #TB_title a.tb-theme-preview-link:focus {
|
| 1740 |
+
color: #ccc;
|
| 1741 |
+
}
|
| 1742 |
+
|
| 1743 |
+
.misc-pub-section {
|
| 1744 |
+
border-top-color: #fff;
|
| 1745 |
+
border-bottom-color: #dfdfdf;
|
| 1746 |
+
}
|
| 1747 |
+
|
| 1748 |
+
#minor-publishing {
|
| 1749 |
+
border-bottom-color: #dfdfdf;
|
| 1750 |
+
}
|
| 1751 |
+
|
| 1752 |
+
#post-body .misc-pub-section {
|
| 1753 |
+
border-right-color: #eee;
|
| 1754 |
+
}
|
| 1755 |
+
|
| 1756 |
+
.post-com-count span {
|
| 1757 |
+
background-color: #bbb;
|
| 1758 |
+
}
|
| 1759 |
+
|
| 1760 |
+
.form-table .color-palette td {
|
| 1761 |
+
border-color: #fff;
|
| 1762 |
+
}
|
| 1763 |
+
|
| 1764 |
+
.sortable-placeholder {
|
| 1765 |
+
border-color: #bbb;
|
| 1766 |
+
background-color: #f5f5f5;
|
| 1767 |
+
}
|
| 1768 |
+
|
| 1769 |
+
#post-body ul.category-tabs li.tabs a,
|
| 1770 |
+
#post-body ul.add-menu-item-tabs li.tabs a,
|
| 1771 |
+
body.press-this ul.category-tabs li.tabs a {
|
| 1772 |
+
color: #333;
|
| 1773 |
+
}
|
| 1774 |
+
|
| 1775 |
+
#wp_editimgbtn,
|
| 1776 |
+
#wp_delimgbtn,
|
| 1777 |
+
#wp_editgallery,
|
| 1778 |
+
#wp_delgallery {
|
| 1779 |
+
border-color: #999;
|
| 1780 |
+
background-color: #eee;
|
| 1781 |
+
}
|
| 1782 |
+
|
| 1783 |
+
#wp_editimgbtn:hover,
|
| 1784 |
+
#wp_delimgbtn:hover,
|
| 1785 |
+
#wp_editgallery:hover,
|
| 1786 |
+
#wp_delgallery:hover {
|
| 1787 |
+
border-color: #555;
|
| 1788 |
+
background-color: #ccc;
|
| 1789 |
+
}
|
| 1790 |
+
|
| 1791 |
+
#favorite-first {
|
| 1792 |
+
border-color: #c0c0c0;
|
| 1793 |
+
background: #f1f1f1; /* fallback color */
|
| 1794 |
+
background:-moz-linear-gradient(bottom, #e7e7e7, #fff);
|
| 1795 |
+
background:-webkit-gradient(linear, left bottom, left top, from(#e7e7e7), to(#fff));
|
| 1796 |
+
}
|
| 1797 |
+
|
| 1798 |
+
#favorite-inside {
|
| 1799 |
+
border-color: #c0c0c0;
|
| 1800 |
+
background-color: #fff;
|
| 1801 |
+
}
|
| 1802 |
+
|
| 1803 |
+
#favorite-toggle {
|
| 1804 |
+
background: transparent url(../../../../wp-admin/images/arrows.png) no-repeat 4px 2px;
|
| 1805 |
+
border-color: #dfdfdf;
|
| 1806 |
+
-moz-box-shadow: inset 1px 0 0 #fff;
|
| 1807 |
+
-webkit-box-shadow: inset 1px 0 0 #fff;
|
| 1808 |
+
box-shadow: inset 1px 0 0 #fff;
|
| 1809 |
+
}
|
| 1810 |
+
|
| 1811 |
+
#favorite-actions a {
|
| 1812 |
+
color: #464646;
|
| 1813 |
+
}
|
| 1814 |
+
|
| 1815 |
+
#favorite-actions a:hover {
|
| 1816 |
+
color: #000;
|
| 1817 |
+
}
|
| 1818 |
+
|
| 1819 |
+
#favorite-inside a:hover {
|
| 1820 |
+
text-decoration: underline;
|
| 1821 |
+
}
|
| 1822 |
+
|
| 1823 |
+
#screen-meta a.show-settings,
|
| 1824 |
+
.toggle-arrow {
|
| 1825 |
+
background: transparent url(../../../../wp-admin/images/arrows.png) no-repeat right 3px;
|
| 1826 |
+
}
|
| 1827 |
+
|
| 1828 |
+
#screen-meta .screen-meta-active a.show-settings {
|
| 1829 |
+
background: transparent url(../../../../wp-admin/images/arrows.png) no-repeat right -33px;
|
| 1830 |
+
}
|
| 1831 |
+
|
| 1832 |
+
.view-switch #view-switch-list {
|
| 1833 |
+
background: transparent url(../../../../wp-admin/images/list.png) no-repeat 0 0;
|
| 1834 |
+
}
|
| 1835 |
+
|
| 1836 |
+
.view-switch .current #view-switch-list {
|
| 1837 |
+
background: transparent url(../../../../wp-admin/images/list.png) no-repeat -40px 0;
|
| 1838 |
+
}
|
| 1839 |
+
|
| 1840 |
+
.view-switch #view-switch-excerpt {
|
| 1841 |
+
background: transparent url(../../../../wp-admin/images/list.png) no-repeat -20px 0;
|
| 1842 |
+
}
|
| 1843 |
+
|
| 1844 |
+
.view-switch .current #view-switch-excerpt {
|
| 1845 |
+
background: transparent url(../../../../wp-admin/images/list.png) no-repeat -60px 0;
|
| 1846 |
+
}
|
| 1847 |
+
|
| 1848 |
+
#header-logo {
|
| 1849 |
+
background: transparent url(../../../../wp-admin/images/wp-logo.png?ver=20110504) no-repeat scroll center center;
|
| 1850 |
+
}
|
| 1851 |
+
|
| 1852 |
+
.popular-tags,
|
| 1853 |
+
.feature-filter {
|
| 1854 |
+
background-color: #fff;
|
| 1855 |
+
border-color: #DFDFDF;
|
| 1856 |
+
}
|
| 1857 |
+
|
| 1858 |
+
#theme-information .action-button {
|
| 1859 |
+
border-top-color: #DFDFDF;
|
| 1860 |
+
}
|
| 1861 |
+
|
| 1862 |
+
.theme-listing br.line {
|
| 1863 |
+
border-bottom-color: #ccc;
|
| 1864 |
+
}
|
| 1865 |
+
|
| 1866 |
+
div.widgets-sortables,
|
| 1867 |
+
#widgets-left .inactive {
|
| 1868 |
+
background-color: #fcfcfc;
|
| 1869 |
+
border-color: #dfdfdf;
|
| 1870 |
+
}
|
| 1871 |
+
|
| 1872 |
+
#available-widgets .widget-holder {
|
| 1873 |
+
background-color: #fcfcfc;
|
| 1874 |
+
border-color: #dfdfdf;
|
| 1875 |
+
}
|
| 1876 |
+
|
| 1877 |
+
#available-widgets .widget-description {
|
| 1878 |
+
color: #555;
|
| 1879 |
+
}
|
| 1880 |
+
|
| 1881 |
+
.sidebar-name {
|
| 1882 |
+
color: #464646;
|
| 1883 |
+
text-shadow: #fff 0 1px 0;
|
| 1884 |
+
border-color: #dfdfdf;
|
| 1885 |
+
-moz-box-shadow: inset 0 1px 0 #fff;
|
| 1886 |
+
-webkit-box-shadow: inset 0 1px 0 #fff;
|
| 1887 |
+
box-shadow: inset 0 1px 0 #fff;
|
| 1888 |
+
}
|
| 1889 |
+
|
| 1890 |
+
.sidebar-name:hover,
|
| 1891 |
+
#removing-widget {
|
| 1892 |
+
color: #d54e21;
|
| 1893 |
+
}
|
| 1894 |
+
|
| 1895 |
+
#removing-widget span {
|
| 1896 |
+
color: black;
|
| 1897 |
+
}
|
| 1898 |
+
|
| 1899 |
+
.sidebar-name-arrow {
|
| 1900 |
+
background: transparent url(../../../../wp-admin/images/arrows.png) no-repeat 5px 9px;
|
| 1901 |
+
}
|
| 1902 |
+
|
| 1903 |
+
.sidebar-name:hover .sidebar-name-arrow {
|
| 1904 |
+
background: transparent url(../../../../wp-admin/images/arrows-dark.png) no-repeat 5px 9px;
|
| 1905 |
+
}
|
| 1906 |
+
|
| 1907 |
+
.in-widget-title {
|
| 1908 |
+
color: #606060;
|
| 1909 |
+
}
|
| 1910 |
+
|
| 1911 |
+
.deleting .widget-title * {
|
| 1912 |
+
color: #aaa;
|
| 1913 |
+
}
|
| 1914 |
+
|
| 1915 |
+
.imgedit-menu div {
|
| 1916 |
+
border-color: #d5d5d5;
|
| 1917 |
+
background-color: #f1f1f1;
|
| 1918 |
+
}
|
| 1919 |
+
|
| 1920 |
+
.imgedit-menu div:hover {
|
| 1921 |
+
border-color: #c1c1c1;
|
| 1922 |
+
background-color: #eaeaea;
|
| 1923 |
+
}
|
| 1924 |
+
|
| 1925 |
+
.imgedit-menu div.disabled {
|
| 1926 |
+
border-color: #ccc;
|
| 1927 |
+
background-color: #ddd;
|
| 1928 |
+
filter: alpha(opacity=50);
|
| 1929 |
+
opacity: 0.5;
|
| 1930 |
+
}
|
| 1931 |
+
|
| 1932 |
+
#dashboard_recent_comments div.undo {
|
| 1933 |
+
border-top-color: #dfdfdf;
|
| 1934 |
+
}
|
| 1935 |
+
|
| 1936 |
+
.comment-ays,
|
| 1937 |
+
.comment-ays th {
|
| 1938 |
+
border-color: #ddd;
|
| 1939 |
+
}
|
| 1940 |
+
|
| 1941 |
+
.comment-ays th {
|
| 1942 |
+
background-color: #f1f1f1;
|
| 1943 |
+
}
|
| 1944 |
+
|
| 1945 |
+
/* added from nav-menu.css */
|
| 1946 |
+
#menu-management .menu-edit {
|
| 1947 |
+
border-color: #dfdfdf;
|
| 1948 |
+
}
|
| 1949 |
+
|
| 1950 |
+
#post-body {
|
| 1951 |
+
background: #fff;
|
| 1952 |
+
border-top-color: #fff;
|
| 1953 |
+
border-bottom-color: #dfdfdf;
|
| 1954 |
+
}
|
| 1955 |
+
|
| 1956 |
+
#nav-menu-header {
|
| 1957 |
+
border-bottom-color: #dfdfdf;
|
| 1958 |
+
}
|
| 1959 |
+
|
| 1960 |
+
#nav-menu-footer {
|
| 1961 |
+
border-top-color: #fff;
|
| 1962 |
+
}
|
| 1963 |
+
|
| 1964 |
+
#menu-management .nav-tabs-arrow a {
|
| 1965 |
+
color: #C1C1C1;
|
| 1966 |
+
}
|
| 1967 |
+
|
| 1968 |
+
#menu-management .nav-tabs-arrow a:hover {
|
| 1969 |
+
color: #D54E21;
|
| 1970 |
+
}
|
| 1971 |
+
|
| 1972 |
+
#menu-management .nav-tabs-arrow a:active {
|
| 1973 |
+
color: #464646;
|
| 1974 |
+
}
|
| 1975 |
+
|
| 1976 |
+
#menu-management .nav-tab-active {
|
| 1977 |
+
border-color: #dfdfdf;
|
| 1978 |
+
}
|
| 1979 |
+
|
| 1980 |
+
#menu-management .nav-tab {
|
| 1981 |
+
background: #fbfbfb;
|
| 1982 |
+
border-color: #dfdfdf;
|
| 1983 |
+
}
|
| 1984 |
+
|
| 1985 |
+
.js .input-with-default-title {
|
| 1986 |
+
color: #aaa;
|
| 1987 |
+
}
|
| 1988 |
+
|
| 1989 |
+
#cancel-save {
|
| 1990 |
+
color: #ff0000;
|
| 1991 |
+
}
|
| 1992 |
+
|
| 1993 |
+
#cancel-save:hover {
|
| 1994 |
+
background-color: #FF0000;
|
| 1995 |
+
color: #fff;
|
| 1996 |
+
}
|
| 1997 |
+
|
| 1998 |
+
.list-container {
|
| 1999 |
+
border-color: #DFDFDF;
|
| 2000 |
+
}
|
| 2001 |
+
|
| 2002 |
+
.menu-item-handle {
|
| 2003 |
+
border-color: #dfdfdf;
|
| 2004 |
+
}
|
| 2005 |
+
|
| 2006 |
+
.menu li.deleting .menu-item-handle {
|
| 2007 |
+
background-color: #f66;
|
| 2008 |
+
text-shadow: #ccc;
|
| 2009 |
+
}
|
| 2010 |
+
|
| 2011 |
+
.item-type { /* Menu item controls */
|
| 2012 |
+
color: #999999;
|
| 2013 |
+
}
|
| 2014 |
+
|
| 2015 |
+
.item-controls .menu-item-delete:hover {
|
| 2016 |
+
color: #ff0000;
|
| 2017 |
+
}
|
| 2018 |
+
|
| 2019 |
+
.item-edit {
|
| 2020 |
+
background: transparent url(../../../../wp-admin/images/arrows.png) no-repeat 8px 10px;
|
| 2021 |
+
border-bottom-color: #eee;
|
| 2022 |
+
}
|
| 2023 |
+
|
| 2024 |
+
.item-edit:hover {
|
| 2025 |
+
background: transparent url(../../../../wp-admin/images/arrows-dark.png) no-repeat 8px 10px;
|
| 2026 |
+
}
|
| 2027 |
+
|
| 2028 |
+
.menu-item-settings { /* Menu editing */
|
| 2029 |
+
border-color: #dfdfdf;
|
| 2030 |
+
}
|
| 2031 |
+
|
| 2032 |
+
.link-to-original {
|
| 2033 |
+
color: #777;
|
| 2034 |
+
border-color: #dfdfdf;
|
| 2035 |
+
}
|
| 2036 |
+
|
| 2037 |
+
#cancel-save:hover {
|
| 2038 |
+
color: #fff !important;
|
| 2039 |
+
}
|
| 2040 |
+
|
| 2041 |
+
#update-menu-item {
|
| 2042 |
+
color: #fff !important;
|
| 2043 |
+
}
|
| 2044 |
+
|
| 2045 |
+
#update-menu-item:hover,
|
| 2046 |
+
#update-menu-item:active,
|
| 2047 |
+
#update-menu-item:focus {
|
| 2048 |
+
color: #eaf2fa !important;
|
| 2049 |
+
border-color: #13455b !important;
|
| 2050 |
+
}
|
| 2051 |
+
|
| 2052 |
+
.submitbox .submitcancel {
|
| 2053 |
+
color: #21759B;
|
| 2054 |
+
border-bottom-color: #21759B;
|
| 2055 |
+
}
|
| 2056 |
+
|
| 2057 |
+
.submitbox .submitcancel:hover {
|
| 2058 |
+
background: #21759B;
|
| 2059 |
+
color: #fff;
|
| 2060 |
+
}
|
| 2061 |
+
/* end added from nav-menu.css */
|
| 2062 |
+
|
| 2063 |
+
#menu-management .nav-tab-active,
|
| 2064 |
+
.menu-item-handle,
|
| 2065 |
+
.menu-item-settings {
|
| 2066 |
+
-moz-box-shadow: inset 0 1px 0 #fff;
|
| 2067 |
+
-webkit-box-shadow: inset 0 1px 0 #fff;
|
| 2068 |
+
box-shadow: inset 0 1px 0 #fff;
|
| 2069 |
+
}
|
| 2070 |
+
|
| 2071 |
+
#menu-management .nav-tab-active {
|
| 2072 |
+
background: #f9f9f9;
|
| 2073 |
+
border-bottom-color: #f9f9f9;
|
| 2074 |
+
}
|
| 2075 |
+
|
| 2076 |
+
/* custom header & background pages */
|
| 2077 |
+
#upload-form label {
|
| 2078 |
+
color: #777;
|
| 2079 |
+
}
|
| 2080 |
+
/* custom header & background pages */
|
| 2081 |
+
|
| 2082 |
+
/* full screen */
|
| 2083 |
+
.fullscreen-overlay {
|
| 2084 |
+
background: #fff;
|
| 2085 |
+
}
|
| 2086 |
+
|
| 2087 |
+
.wp-fullscreen-focus #wp-fullscreen-title,
|
| 2088 |
+
.wp-fullscreen-focus #wp-fullscreen-container {
|
| 2089 |
+
border-color: #ccc;
|
| 2090 |
+
}
|
| 2091 |
+
|
| 2092 |
+
#fullscreen-topbar {
|
| 2093 |
+
border-bottom-color: #DFDFDF;
|
| 2094 |
+
}
|
bbp-admin/styles/admin-1.dev.css
ADDED
|
@@ -0,0 +1,2094 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/* =wp-admin area stylesheet with a bbPress twist
|
| 2 |
+
-------------------------------------------------------------- */
|
| 3 |
+
|
| 4 |
+
html,
|
| 5 |
+
.wp-dialog {
|
| 6 |
+
background-color: #fff;
|
| 7 |
+
}
|
| 8 |
+
|
| 9 |
+
* html input,
|
| 10 |
+
* html .widget {
|
| 11 |
+
border-color: #dfdfdf;
|
| 12 |
+
}
|
| 13 |
+
|
| 14 |
+
textarea,
|
| 15 |
+
input[type="text"],
|
| 16 |
+
input[type="password"],
|
| 17 |
+
input[type="file"],
|
| 18 |
+
input[type="button"],
|
| 19 |
+
input[type="submit"],
|
| 20 |
+
input[type="reset"],
|
| 21 |
+
select {
|
| 22 |
+
border-color: #dfdfdf;
|
| 23 |
+
background-color: #fff;
|
| 24 |
+
}
|
| 25 |
+
|
| 26 |
+
kbd,
|
| 27 |
+
code {
|
| 28 |
+
background: #eaeaea;
|
| 29 |
+
}
|
| 30 |
+
|
| 31 |
+
input[readonly] {
|
| 32 |
+
background-color: #eee;
|
| 33 |
+
}
|
| 34 |
+
|
| 35 |
+
.find-box-search {
|
| 36 |
+
border-color: #dfdfdf;
|
| 37 |
+
background-color: #f1f1f1;
|
| 38 |
+
}
|
| 39 |
+
|
| 40 |
+
.find-box {
|
| 41 |
+
background-color: #f1f1f1;
|
| 42 |
+
}
|
| 43 |
+
|
| 44 |
+
.find-box-inside {
|
| 45 |
+
background-color: #fff;
|
| 46 |
+
}
|
| 47 |
+
|
| 48 |
+
a.page-numbers:hover {
|
| 49 |
+
border-color: #999;
|
| 50 |
+
}
|
| 51 |
+
|
| 52 |
+
body,
|
| 53 |
+
#wpbody,
|
| 54 |
+
.form-table .pre {
|
| 55 |
+
color: #333;
|
| 56 |
+
}
|
| 57 |
+
|
| 58 |
+
body > #upload-menu {
|
| 59 |
+
border-bottom-color: #fff;
|
| 60 |
+
}
|
| 61 |
+
|
| 62 |
+
#postcustomstuff table,
|
| 63 |
+
#your-profile fieldset,
|
| 64 |
+
#rightnow,
|
| 65 |
+
div.dashboard-widget,
|
| 66 |
+
#dashboard-widgets p.dashboard-widget-links,
|
| 67 |
+
#replyrow #ed_reply_toolbar input {
|
| 68 |
+
border-color: #ccc;
|
| 69 |
+
}
|
| 70 |
+
|
| 71 |
+
#poststuff .inside label.spam,
|
| 72 |
+
#poststuff .inside label.deleted {
|
| 73 |
+
color: red;
|
| 74 |
+
}
|
| 75 |
+
|
| 76 |
+
#poststuff .inside label.waiting {
|
| 77 |
+
color: orange;
|
| 78 |
+
}
|
| 79 |
+
|
| 80 |
+
#poststuff .inside label.approved {
|
| 81 |
+
color: green;
|
| 82 |
+
}
|
| 83 |
+
|
| 84 |
+
#postcustomstuff table {
|
| 85 |
+
border-color: #dfdfdf;
|
| 86 |
+
background-color: #F9F9F9;
|
| 87 |
+
}
|
| 88 |
+
|
| 89 |
+
#postcustomstuff thead th {
|
| 90 |
+
background-color: #F1F1F1;
|
| 91 |
+
}
|
| 92 |
+
|
| 93 |
+
#postcustomstuff table input,
|
| 94 |
+
#postcustomstuff table textarea {
|
| 95 |
+
border-color: #dfdfdf;
|
| 96 |
+
background-color: #fff;
|
| 97 |
+
}
|
| 98 |
+
|
| 99 |
+
.widefat {
|
| 100 |
+
border-color: #dfdfdf;
|
| 101 |
+
background-color: #f9f9f9;
|
| 102 |
+
}
|
| 103 |
+
|
| 104 |
+
div.dashboard-widget-error {
|
| 105 |
+
background-color: #c43;
|
| 106 |
+
}
|
| 107 |
+
|
| 108 |
+
div.dashboard-widget-notice {
|
| 109 |
+
background-color: #cfe1ef;
|
| 110 |
+
}
|
| 111 |
+
|
| 112 |
+
div.dashboard-widget-submit {
|
| 113 |
+
border-top-color: #ccc;
|
| 114 |
+
}
|
| 115 |
+
|
| 116 |
+
div.tabs-panel,
|
| 117 |
+
.wp-tab-panel,
|
| 118 |
+
ul.category-tabs li.tabs,
|
| 119 |
+
ul.add-menu-item-tabs li.tabs,
|
| 120 |
+
.wp-tab-active {
|
| 121 |
+
border-color: #dfdfdf;
|
| 122 |
+
background-color: #fff;
|
| 123 |
+
}
|
| 124 |
+
|
| 125 |
+
ul.category-tabs li.tabs,
|
| 126 |
+
ul.add-menu-item-tabs li.tabs,
|
| 127 |
+
.wp-tab-active {
|
| 128 |
+
background-color: #fff;
|
| 129 |
+
}
|
| 130 |
+
|
| 131 |
+
input.disabled,
|
| 132 |
+
textarea.disabled {
|
| 133 |
+
background-color: #ccc;
|
| 134 |
+
}
|
| 135 |
+
/* #upload-menu li a.upload-tab-link, */
|
| 136 |
+
#plugin-information .action-button a,
|
| 137 |
+
#plugin-information .action-button a:hover,
|
| 138 |
+
#plugin-information .action-button a:visited {
|
| 139 |
+
color: #fff;
|
| 140 |
+
}
|
| 141 |
+
|
| 142 |
+
.widget .widget-top,
|
| 143 |
+
.postbox h3,
|
| 144 |
+
.stuffbox h3,
|
| 145 |
+
.widefat thead tr th,
|
| 146 |
+
.widefat tfoot tr th,
|
| 147 |
+
h3.dashboard-widget-title,
|
| 148 |
+
h3.dashboard-widget-title span,
|
| 149 |
+
h3.dashboard-widget-title small,
|
| 150 |
+
.find-box-head,
|
| 151 |
+
.sidebar-name,
|
| 152 |
+
#nav-menu-header,
|
| 153 |
+
#nav-menu-footer,
|
| 154 |
+
.menu-item-handle,
|
| 155 |
+
#fullscreen-topbar {
|
| 156 |
+
background-color: #f1f1f1; /* Fallback */
|
| 157 |
+
background-image: -ms-linear-gradient(top, #eefcf1, #deece1); /* IE10 */
|
| 158 |
+
background-image: -moz-linear-gradient(top, #eefcf1, #deece1); /* Firefox */
|
| 159 |
+
background-image: -o-linear-gradient(top, #eefcf1, #deece1); /* Opera */
|
| 160 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#eefcf1), to(#deece1)); /* old Webkit */
|
| 161 |
+
background-image: -webkit-linear-gradient(top, #eefcf1, #deece1); /* new Webkit */
|
| 162 |
+
background-image: linear-gradient(top, #eefcf1, #deece1); /* proposed W3C Markup */
|
| 163 |
+
}
|
| 164 |
+
|
| 165 |
+
.widget .widget-top,
|
| 166 |
+
.postbox h3,
|
| 167 |
+
.stuffbox h3 {
|
| 168 |
+
border-bottom-color: #dfdfdf;
|
| 169 |
+
text-shadow: #fff 0 1px 0;
|
| 170 |
+
-moz-box-shadow: 0 1px 0 #fff;
|
| 171 |
+
-webkit-box-shadow: 0 1px 0 #fff;
|
| 172 |
+
box-shadow: 0 1px 0 #fff;
|
| 173 |
+
}
|
| 174 |
+
|
| 175 |
+
.form-table th,
|
| 176 |
+
.form-wrap label {
|
| 177 |
+
color: #222;
|
| 178 |
+
text-shadow: #fff 0 1px 0;
|
| 179 |
+
}
|
| 180 |
+
|
| 181 |
+
.description,
|
| 182 |
+
.form-wrap p {
|
| 183 |
+
color: #666;
|
| 184 |
+
}
|
| 185 |
+
|
| 186 |
+
strong .post-com-count span {
|
| 187 |
+
background-color: #21759b;
|
| 188 |
+
}
|
| 189 |
+
|
| 190 |
+
.sorthelper {
|
| 191 |
+
background-color: #ccf3fa;
|
| 192 |
+
}
|
| 193 |
+
|
| 194 |
+
.ac_match,
|
| 195 |
+
.subsubsub a.current {
|
| 196 |
+
color: #000;
|
| 197 |
+
}
|
| 198 |
+
|
| 199 |
+
.wrap h2 {
|
| 200 |
+
color: #464646;
|
| 201 |
+
}
|
| 202 |
+
|
| 203 |
+
.wrap .add-new-h2 {
|
| 204 |
+
background: #f1f1f1;
|
| 205 |
+
}
|
| 206 |
+
|
| 207 |
+
.subtitle {
|
| 208 |
+
color: #777;
|
| 209 |
+
}
|
| 210 |
+
|
| 211 |
+
.ac_over {
|
| 212 |
+
background-color: #f0f0b8;
|
| 213 |
+
}
|
| 214 |
+
|
| 215 |
+
.ac_results {
|
| 216 |
+
background-color: #fff;
|
| 217 |
+
border-color: #808080;
|
| 218 |
+
}
|
| 219 |
+
|
| 220 |
+
.ac_results li {
|
| 221 |
+
color: #101010;
|
| 222 |
+
}
|
| 223 |
+
|
| 224 |
+
.alternate,
|
| 225 |
+
.alt {
|
| 226 |
+
background-color: #fcfcfc;
|
| 227 |
+
}
|
| 228 |
+
|
| 229 |
+
.available-theme a.screenshot {
|
| 230 |
+
background-color: #f1f1f1;
|
| 231 |
+
border-color: #ddd;
|
| 232 |
+
}
|
| 233 |
+
|
| 234 |
+
.bar {
|
| 235 |
+
background-color: #e8e8e8;
|
| 236 |
+
border-right-color: #99d;
|
| 237 |
+
}
|
| 238 |
+
|
| 239 |
+
#media-upload,
|
| 240 |
+
#media-upload .media-item .slidetoggle {
|
| 241 |
+
background: #fff;
|
| 242 |
+
}
|
| 243 |
+
|
| 244 |
+
#media-upload .slidetoggle {
|
| 245 |
+
border-top-color: #dfdfdf;
|
| 246 |
+
}
|
| 247 |
+
|
| 248 |
+
div.error,
|
| 249 |
+
.login #login_error {
|
| 250 |
+
background-color: #ffebe8;
|
| 251 |
+
border-color: #c00;
|
| 252 |
+
}
|
| 253 |
+
|
| 254 |
+
div.error a {
|
| 255 |
+
color: #c00;
|
| 256 |
+
}
|
| 257 |
+
|
| 258 |
+
.form-invalid {
|
| 259 |
+
background-color: #ffebe8 !important;
|
| 260 |
+
}
|
| 261 |
+
|
| 262 |
+
.form-invalid input,
|
| 263 |
+
.form-invalid select {
|
| 264 |
+
border-color: #c00 !important;
|
| 265 |
+
}
|
| 266 |
+
|
| 267 |
+
.submit {
|
| 268 |
+
border-color: #DFDFDF;
|
| 269 |
+
}
|
| 270 |
+
|
| 271 |
+
.highlight {
|
| 272 |
+
background-color: #e4f2fd;
|
| 273 |
+
color: #000;
|
| 274 |
+
}
|
| 275 |
+
|
| 276 |
+
.howto,
|
| 277 |
+
.nonessential,
|
| 278 |
+
#edit-slug-box,
|
| 279 |
+
.form-input-tip,
|
| 280 |
+
.subsubsub {
|
| 281 |
+
color: #666;
|
| 282 |
+
}
|
| 283 |
+
|
| 284 |
+
.media-item {
|
| 285 |
+
border-bottom-color: #dfdfdf;
|
| 286 |
+
}
|
| 287 |
+
|
| 288 |
+
#wpbody-content #media-items .describe {
|
| 289 |
+
border-top-color: #dfdfdf;
|
| 290 |
+
}
|
| 291 |
+
|
| 292 |
+
.media-upload-form label.form-help,
|
| 293 |
+
td.help {
|
| 294 |
+
color: #9a9a9a;
|
| 295 |
+
}
|
| 296 |
+
|
| 297 |
+
.post-com-count {
|
| 298 |
+
background-image: url(../../../../wp-admin/images/bubble_bg.gif);
|
| 299 |
+
color: #fff;
|
| 300 |
+
}
|
| 301 |
+
|
| 302 |
+
.post-com-count span {
|
| 303 |
+
background-color: #bbb;
|
| 304 |
+
color: #fff;
|
| 305 |
+
}
|
| 306 |
+
|
| 307 |
+
.post-com-count:hover span {
|
| 308 |
+
background-color: #d54e21;
|
| 309 |
+
}
|
| 310 |
+
|
| 311 |
+
.quicktags, .search {
|
| 312 |
+
background-color: #ccc;
|
| 313 |
+
color: #000;
|
| 314 |
+
}
|
| 315 |
+
|
| 316 |
+
.side-info h5 {
|
| 317 |
+
border-bottom-color: #dadada;
|
| 318 |
+
}
|
| 319 |
+
|
| 320 |
+
.side-info ul {
|
| 321 |
+
color: #666;
|
| 322 |
+
}
|
| 323 |
+
|
| 324 |
+
.button,
|
| 325 |
+
.button-secondary,
|
| 326 |
+
.submit input,
|
| 327 |
+
input[type=button],
|
| 328 |
+
input[type=submit] {
|
| 329 |
+
border-color: #bbb;
|
| 330 |
+
color: #464646;
|
| 331 |
+
}
|
| 332 |
+
|
| 333 |
+
.button:hover,
|
| 334 |
+
.button-secondary:hover,
|
| 335 |
+
.submit input:hover,
|
| 336 |
+
input[type=button]:hover,
|
| 337 |
+
input[type=submit]:hover {
|
| 338 |
+
color: #000;
|
| 339 |
+
border-color: #666;
|
| 340 |
+
}
|
| 341 |
+
|
| 342 |
+
.button,
|
| 343 |
+
.submit input,
|
| 344 |
+
.button-secondary {
|
| 345 |
+
background: #f2f2f2 url(../../../../wp-admin/images/white-grad.png) repeat-x scroll left top;
|
| 346 |
+
text-shadow: rgba(255,255,255,1) 0 1px 0;
|
| 347 |
+
}
|
| 348 |
+
|
| 349 |
+
.button:active,
|
| 350 |
+
.submit input:active,
|
| 351 |
+
.button-secondary:active {
|
| 352 |
+
background: #eee url(../../../../wp-admin/images/white-grad-active.png) repeat-x scroll left top;
|
| 353 |
+
}
|
| 354 |
+
|
| 355 |
+
input.button-primary,
|
| 356 |
+
button.button-primary,
|
| 357 |
+
a.button-primary {
|
| 358 |
+
border-color: #555;
|
| 359 |
+
font-weight: bold;
|
| 360 |
+
color: #fff;
|
| 361 |
+
background: #060 url(../images/button-grad.png) repeat-x scroll left top;
|
| 362 |
+
text-shadow: rgba(0,0,0,0.3) 0 -1px 0;
|
| 363 |
+
}
|
| 364 |
+
|
| 365 |
+
input.button-primary:active,
|
| 366 |
+
button.button-primary:active,
|
| 367 |
+
a.button-primary:active {
|
| 368 |
+
background: #060 url(../images/button-grad.png) repeat-x scroll left bottom;
|
| 369 |
+
color: #cae8be;
|
| 370 |
+
}
|
| 371 |
+
|
| 372 |
+
input.button-primary:hover,
|
| 373 |
+
button.button-primary:hover,
|
| 374 |
+
a.button-primary:hover,
|
| 375 |
+
a.button-primary:focus,
|
| 376 |
+
a.button-primary:active {
|
| 377 |
+
border-color: #13455b;
|
| 378 |
+
color: #eaf2fa;
|
| 379 |
+
}
|
| 380 |
+
|
| 381 |
+
.button-disabled,
|
| 382 |
+
.button[disabled],
|
| 383 |
+
.button:disabled,
|
| 384 |
+
.button-secondary[disabled],
|
| 385 |
+
.button-secondary:disabled,
|
| 386 |
+
a.button.disabled {
|
| 387 |
+
color: #aaa !important;
|
| 388 |
+
border-color: #555 !important;
|
| 389 |
+
}
|
| 390 |
+
|
| 391 |
+
.button-primary-disabled,
|
| 392 |
+
.button-primary[disabled],
|
| 393 |
+
.button-primary:disabled {
|
| 394 |
+
color: #9FD0D5 !important;
|
| 395 |
+
background: #298CBA !important;
|
| 396 |
+
}
|
| 397 |
+
|
| 398 |
+
a:hover,
|
| 399 |
+
a:active,
|
| 400 |
+
a:focus {
|
| 401 |
+
color: #d54e21;
|
| 402 |
+
}
|
| 403 |
+
|
| 404 |
+
#wphead #viewsite a:hover,
|
| 405 |
+
#adminmenu a:hover,
|
| 406 |
+
#adminmenu ul.wp-submenu a:hover,
|
| 407 |
+
#the-comment-list .comment a:hover,
|
| 408 |
+
#rightnow a:hover,
|
| 409 |
+
#media-upload a.del-link:hover,
|
| 410 |
+
div.dashboard-widget-submit input:hover,
|
| 411 |
+
.subsubsub a:hover,
|
| 412 |
+
.subsubsub a.current:hover,
|
| 413 |
+
.ui-tabs-nav a:hover,
|
| 414 |
+
.plugins .inactive a:hover,
|
| 415 |
+
#all-plugins-table .plugins .inactive a:hover,
|
| 416 |
+
#search-plugins-table .plugins .inactive a:hover {
|
| 417 |
+
color: #d54e21;
|
| 418 |
+
}
|
| 419 |
+
|
| 420 |
+
#the-comment-list .comment-item,
|
| 421 |
+
#dashboard-widgets #dashboard_quick_press form p.submit {
|
| 422 |
+
border-color: #dfdfdf;
|
| 423 |
+
}
|
| 424 |
+
|
| 425 |
+
#side-sortables .category-tabs .tabs a,
|
| 426 |
+
#side-sortables .add-menu-item-tabs .tabs a,
|
| 427 |
+
.wp-tab-bar .wp-tab-active a {
|
| 428 |
+
color: #333;
|
| 429 |
+
}
|
| 430 |
+
|
| 431 |
+
#rightnow .rbutton {
|
| 432 |
+
background-color: #ebebeb;
|
| 433 |
+
color: #264761;
|
| 434 |
+
}
|
| 435 |
+
|
| 436 |
+
.submitbox .submit {
|
| 437 |
+
background-color: #464646;
|
| 438 |
+
color: #ccc;
|
| 439 |
+
}
|
| 440 |
+
|
| 441 |
+
.plugins a.delete:hover,
|
| 442 |
+
#all-plugins-table .plugins a.delete:hover,
|
| 443 |
+
#search-plugins-table .plugins a.delete:hover,
|
| 444 |
+
.submitbox .submitdelete {
|
| 445 |
+
color: #f00;
|
| 446 |
+
border-bottom-color: #f00;
|
| 447 |
+
}
|
| 448 |
+
|
| 449 |
+
.submitbox .submitdelete:hover,
|
| 450 |
+
#media-items a.delete:hover {
|
| 451 |
+
color: #fff;
|
| 452 |
+
background-color: #f00;
|
| 453 |
+
border-bottom-color: #f00;
|
| 454 |
+
}
|
| 455 |
+
|
| 456 |
+
#normal-sortables .submitbox .submitdelete:hover {
|
| 457 |
+
color: #000;
|
| 458 |
+
background-color: #f00;
|
| 459 |
+
border-bottom-color: #f00;
|
| 460 |
+
}
|
| 461 |
+
|
| 462 |
+
.tablenav .dots {
|
| 463 |
+
border-color: transparent;
|
| 464 |
+
}
|
| 465 |
+
|
| 466 |
+
.tablenav .next,
|
| 467 |
+
.tablenav .prev {
|
| 468 |
+
border-color: transparent;
|
| 469 |
+
color: #21759b;
|
| 470 |
+
}
|
| 471 |
+
|
| 472 |
+
.tablenav .next:hover,
|
| 473 |
+
.tablenav .prev:hover {
|
| 474 |
+
border-color: transparent;
|
| 475 |
+
color: #d54e21;
|
| 476 |
+
}
|
| 477 |
+
|
| 478 |
+
div.updated,
|
| 479 |
+
.login .message {
|
| 480 |
+
background-color: #ffffe0;
|
| 481 |
+
border-color: #e6db55;
|
| 482 |
+
}
|
| 483 |
+
|
| 484 |
+
.update-message {
|
| 485 |
+
color: #000;
|
| 486 |
+
}
|
| 487 |
+
|
| 488 |
+
a.page-numbers {
|
| 489 |
+
border-bottom-color: #B8D3E2;
|
| 490 |
+
}
|
| 491 |
+
|
| 492 |
+
.commentlist li {
|
| 493 |
+
border-bottom-color: #ccc;
|
| 494 |
+
}
|
| 495 |
+
|
| 496 |
+
.widefat td,
|
| 497 |
+
.widefat th {
|
| 498 |
+
border-top-color: #fff;
|
| 499 |
+
border-bottom-color: #dfdfdf;
|
| 500 |
+
}
|
| 501 |
+
|
| 502 |
+
.widefat th {
|
| 503 |
+
text-shadow: rgba(255,255,255,0.8) 0 1px 0;
|
| 504 |
+
}
|
| 505 |
+
|
| 506 |
+
.widefat td {
|
| 507 |
+
color: #555;
|
| 508 |
+
}
|
| 509 |
+
.widefat p,
|
| 510 |
+
.widefat ol,
|
| 511 |
+
.widefat ul {
|
| 512 |
+
color: #333;
|
| 513 |
+
}
|
| 514 |
+
|
| 515 |
+
.widefat thead tr th,
|
| 516 |
+
.widefat tfoot tr th,
|
| 517 |
+
h3.dashboard-widget-title,
|
| 518 |
+
h3.dashboard-widget-title span,
|
| 519 |
+
h3.dashboard-widget-title small,
|
| 520 |
+
.find-box-head {
|
| 521 |
+
color: #333;
|
| 522 |
+
}
|
| 523 |
+
|
| 524 |
+
th.sortable a:hover, th.sortable a:active, th.sortable a:focus {
|
| 525 |
+
color: #333;
|
| 526 |
+
}
|
| 527 |
+
|
| 528 |
+
h3.dashboard-widget-title small a {
|
| 529 |
+
color: #d7d7d7;
|
| 530 |
+
}
|
| 531 |
+
|
| 532 |
+
h3.dashboard-widget-title small a:hover {
|
| 533 |
+
color: #fff;
|
| 534 |
+
}
|
| 535 |
+
|
| 536 |
+
a,
|
| 537 |
+
#adminmenu a,
|
| 538 |
+
#poststuff #edButtonPreview,
|
| 539 |
+
#poststuff #edButtonHTML,
|
| 540 |
+
#the-comment-list p.comment-author strong a,
|
| 541 |
+
#media-upload a.del-link,
|
| 542 |
+
#media-items a.delete,
|
| 543 |
+
.plugins a.delete,
|
| 544 |
+
.ui-tabs-nav a {
|
| 545 |
+
color: #007700;
|
| 546 |
+
}
|
| 547 |
+
|
| 548 |
+
#adminmenu .awaiting-mod,
|
| 549 |
+
#adminmenu .update-plugins,
|
| 550 |
+
#sidemenu a .update-plugins,
|
| 551 |
+
#rightnow .reallynow {
|
| 552 |
+
background-color: #464646;
|
| 553 |
+
color: #fff;
|
| 554 |
+
-moz-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 555 |
+
-khtml-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 556 |
+
-webkit-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 557 |
+
box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 558 |
+
}
|
| 559 |
+
#plugin-information .action-button {
|
| 560 |
+
background-color: #d54e21;
|
| 561 |
+
color: #fff;
|
| 562 |
+
}
|
| 563 |
+
|
| 564 |
+
#adminmenu li.current a .awaiting-mod,
|
| 565 |
+
#adminmenu li a.wp-has-current-submenu .update-plugins{
|
| 566 |
+
background-color: #464646;
|
| 567 |
+
color: #fff;
|
| 568 |
+
-moz-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 569 |
+
-khtml-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 570 |
+
-webkit-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 571 |
+
box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 572 |
+
}
|
| 573 |
+
|
| 574 |
+
div#media-upload-header,
|
| 575 |
+
div#plugin-information-header {
|
| 576 |
+
background-color: #f9f9f9;
|
| 577 |
+
border-bottom-color: #dfdfdf;
|
| 578 |
+
}
|
| 579 |
+
|
| 580 |
+
#currenttheme img {
|
| 581 |
+
border-color: #666;
|
| 582 |
+
}
|
| 583 |
+
|
| 584 |
+
#dashboard_secondary div.dashboard-widget-content ul li a {
|
| 585 |
+
background-color: #f9f9f9;
|
| 586 |
+
}
|
| 587 |
+
|
| 588 |
+
input.readonly, textarea.readonly {
|
| 589 |
+
background-color: #ddd;
|
| 590 |
+
}
|
| 591 |
+
|
| 592 |
+
#ed_toolbar input,
|
| 593 |
+
#ed_reply_toolbar input {
|
| 594 |
+
background: #fff url("../../../../wp-admin/images/fade-butt.png") repeat-x 0 -2px;
|
| 595 |
+
}
|
| 596 |
+
|
| 597 |
+
#editable-post-name {
|
| 598 |
+
background-color: #fffbcc;
|
| 599 |
+
}
|
| 600 |
+
|
| 601 |
+
#edit-slug-box strong,
|
| 602 |
+
.tablenav .displaying-num,
|
| 603 |
+
#submitted-on,
|
| 604 |
+
.submitted-on {
|
| 605 |
+
color: #777;
|
| 606 |
+
}
|
| 607 |
+
|
| 608 |
+
.login #nav a,
|
| 609 |
+
.login #backtoblog a {
|
| 610 |
+
color: #21759b !important;
|
| 611 |
+
}
|
| 612 |
+
|
| 613 |
+
.login #nav a:hover,
|
| 614 |
+
.login #backtoblog a:hover {
|
| 615 |
+
color: #d54e21 !important;
|
| 616 |
+
}
|
| 617 |
+
|
| 618 |
+
#footer {
|
| 619 |
+
color: #777;
|
| 620 |
+
border-color: #dfdfdf;
|
| 621 |
+
}
|
| 622 |
+
|
| 623 |
+
#media-items,
|
| 624 |
+
.imgedit-group {
|
| 625 |
+
border-color: #dfdfdf;
|
| 626 |
+
}
|
| 627 |
+
|
| 628 |
+
.checkbox,
|
| 629 |
+
.side-info,
|
| 630 |
+
.plugins tr,
|
| 631 |
+
#your-profile #rich_editing {
|
| 632 |
+
background-color: #fcfcfc;
|
| 633 |
+
}
|
| 634 |
+
|
| 635 |
+
.plugins .inactive,
|
| 636 |
+
.plugins .inactive th,
|
| 637 |
+
.plugins .inactive td,
|
| 638 |
+
tr.inactive + tr.plugin-update-tr .plugin-update {
|
| 639 |
+
background-color: #f4f4f4;
|
| 640 |
+
}
|
| 641 |
+
|
| 642 |
+
.plugin-update-tr .update-message {
|
| 643 |
+
background-color: #fffbe4;
|
| 644 |
+
border-color: #dfdfdf;
|
| 645 |
+
}
|
| 646 |
+
|
| 647 |
+
.plugins .active,
|
| 648 |
+
.plugins .active th,
|
| 649 |
+
.plugins .active td {
|
| 650 |
+
color: #000;
|
| 651 |
+
}
|
| 652 |
+
|
| 653 |
+
.plugins .inactive a {
|
| 654 |
+
color: #557799;
|
| 655 |
+
}
|
| 656 |
+
|
| 657 |
+
#the-comment-list tr.undo,
|
| 658 |
+
#the-comment-list div.undo {
|
| 659 |
+
background-color: #f4f4f4;
|
| 660 |
+
}
|
| 661 |
+
|
| 662 |
+
#the-comment-list .unapproved {
|
| 663 |
+
background-color: #ffffe0;
|
| 664 |
+
}
|
| 665 |
+
|
| 666 |
+
#the-comment-list .approve a {
|
| 667 |
+
color: #006505;
|
| 668 |
+
}
|
| 669 |
+
|
| 670 |
+
#the-comment-list .unapprove a {
|
| 671 |
+
color: #d98500;
|
| 672 |
+
}
|
| 673 |
+
|
| 674 |
+
table.widefat span.delete a,
|
| 675 |
+
table.widefat span.trash a,
|
| 676 |
+
table.widefat span.spam a,
|
| 677 |
+
#dashboard_recent_comments .delete a,
|
| 678 |
+
#dashboard_recent_comments .trash a,
|
| 679 |
+
#dashboard_recent_comments .spam a {
|
| 680 |
+
color: #bc0b0b;
|
| 681 |
+
}
|
| 682 |
+
|
| 683 |
+
.widget,
|
| 684 |
+
#widget-list .widget-top,
|
| 685 |
+
.postbox,
|
| 686 |
+
#titlediv,
|
| 687 |
+
#poststuff .postarea,
|
| 688 |
+
.stuffbox {
|
| 689 |
+
border-color: #dfdfdf;
|
| 690 |
+
-moz-box-shadow: inset 0 1px 0 #fff;
|
| 691 |
+
-webkit-box-shadow: inset 0 1px 0 #fff;
|
| 692 |
+
box-shadow: inset 0 1px 0 #fff;
|
| 693 |
+
-moz-border-radius: 3px;
|
| 694 |
+
-khtml-border-radius: 3px;
|
| 695 |
+
-webkit-border-radius: 3px;
|
| 696 |
+
border-radius: 3px;
|
| 697 |
+
}
|
| 698 |
+
|
| 699 |
+
.widget,
|
| 700 |
+
#widget-list .widget-top,
|
| 701 |
+
.postbox,
|
| 702 |
+
.menu-item-settings {
|
| 703 |
+
background-color: #deece1; /* Fallback */
|
| 704 |
+
background-image: -ms-linear-gradient(top, #eefcf1, #eefcf1); /* IE10 */
|
| 705 |
+
background-image: -moz-linear-gradient(top, #deece1, #eefcf1); /* Firefox */
|
| 706 |
+
background-image: -o-linear-gradient(top, #deece1, #eefcf1); /* Opera */
|
| 707 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#deece1), to(#eefcf1)); /* old Webkit */
|
| 708 |
+
background-image: -webkit-linear-gradient(top, #deece1, #eefcf1); /* new Webkit */
|
| 709 |
+
background-image: linear-gradient(top, #deece1, #eefcf1); /* proposed W3C Markup */
|
| 710 |
+
}
|
| 711 |
+
|
| 712 |
+
.postbox h3 {
|
| 713 |
+
color: #464646;
|
| 714 |
+
}
|
| 715 |
+
|
| 716 |
+
.widget .widget-top {
|
| 717 |
+
color: #222;
|
| 718 |
+
}
|
| 719 |
+
|
| 720 |
+
.sidebar-name:hover h3,
|
| 721 |
+
.postbox h3:hover {
|
| 722 |
+
color: #000;
|
| 723 |
+
}
|
| 724 |
+
|
| 725 |
+
.curtime #timestamp {
|
| 726 |
+
background-image: url(../../../../wp-admin/images/date-button.gif);
|
| 727 |
+
}
|
| 728 |
+
|
| 729 |
+
#quicktags #ed_link {
|
| 730 |
+
color: #00f;
|
| 731 |
+
}
|
| 732 |
+
|
| 733 |
+
#rightnow .youhave {
|
| 734 |
+
background-color: #f0f6fb;
|
| 735 |
+
}
|
| 736 |
+
|
| 737 |
+
#rightnow a {
|
| 738 |
+
color: #448abd;
|
| 739 |
+
}
|
| 740 |
+
|
| 741 |
+
.tagchecklist span a,
|
| 742 |
+
#bulk-titles div a {
|
| 743 |
+
background: url(../../../../wp-admin/images/xit.gif) no-repeat;
|
| 744 |
+
}
|
| 745 |
+
|
| 746 |
+
.tagchecklist span a:hover,
|
| 747 |
+
#bulk-titles div a:hover {
|
| 748 |
+
background: url(../../../../wp-admin/images/xit.gif) no-repeat -10px 0;
|
| 749 |
+
}
|
| 750 |
+
|
| 751 |
+
#update-nag, .update-nag {
|
| 752 |
+
background-color: #FFFBCC;
|
| 753 |
+
border-color: #E6DB55;
|
| 754 |
+
color: #555;
|
| 755 |
+
}
|
| 756 |
+
|
| 757 |
+
.login #backtoblog a {
|
| 758 |
+
color: #464646;
|
| 759 |
+
}
|
| 760 |
+
|
| 761 |
+
#wphead {
|
| 762 |
+
border-bottom:#dfdfdf 1px solid;
|
| 763 |
+
}
|
| 764 |
+
|
| 765 |
+
#wphead h1 a {
|
| 766 |
+
color: #464646;
|
| 767 |
+
}
|
| 768 |
+
|
| 769 |
+
#user_info {
|
| 770 |
+
color: #555;
|
| 771 |
+
}
|
| 772 |
+
|
| 773 |
+
#user_info:hover,
|
| 774 |
+
#user_info.active {
|
| 775 |
+
color: #222;
|
| 776 |
+
}
|
| 777 |
+
|
| 778 |
+
#user_info.active {
|
| 779 |
+
background-color: #f1f1f1; /* Fallback */
|
| 780 |
+
background-image: -ms-linear-gradient(bottom, #e9e9e9, #f9f9f9); /* IE10 */
|
| 781 |
+
background-image: -moz-linear-gradient(bottom, #e9e9e9, #f9f9f9); /* Firefox */
|
| 782 |
+
background-image: -o-linear-gradient(bottom, #e9e9e9, #f9f9f9); /* Opera */
|
| 783 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#e9e9e9), to(#f9f9f9)); /* old Webkit */
|
| 784 |
+
background-image: -webkit-linear-gradient(bottom, #e9e9e9, #f9f9f9); /* new Webkit */
|
| 785 |
+
background-image: linear-gradient(bottom, #e9e9e9, #f9f9f9); /* proposed W3C Markup */
|
| 786 |
+
border-color: #aaa #aaa #dfdfdf;
|
| 787 |
+
}
|
| 788 |
+
|
| 789 |
+
#user_info_arrow {
|
| 790 |
+
background: transparent url(../../../../wp-admin/images/arrows.png) no-repeat 6px 5px;
|
| 791 |
+
}
|
| 792 |
+
|
| 793 |
+
#user_info:hover #user_info_arrow,
|
| 794 |
+
#user_info.active #user_info_arrow {
|
| 795 |
+
background: transparent url(../../../../wp-admin/images/arrows-dark.png) no-repeat 6px 5px;
|
| 796 |
+
}
|
| 797 |
+
|
| 798 |
+
#user_info_links {
|
| 799 |
+
-moz-box-shadow: 0 3px 2px -2px rgba( 0, 0, 0, 0.2 );
|
| 800 |
+
-webkit-box-shadow: 0 3px 2px -2px rgba( 0, 0, 0, 0.2 );
|
| 801 |
+
box-shadow: 0 3px 2px -2px rgba( 0, 0, 0, 0.2 );
|
| 802 |
+
}
|
| 803 |
+
|
| 804 |
+
#user_info_links ul {
|
| 805 |
+
background: #f1f1f1;
|
| 806 |
+
border-color: #ccc #aaa #aaa;
|
| 807 |
+
-moz-box-shadow: inset 0 1px 0 #f9f9f9;
|
| 808 |
+
-webkit-box-shadow: inset 0 1px 0 #f9f9f9;
|
| 809 |
+
box-shadow: inset 0 1px 0 #f9f9f9;
|
| 810 |
+
}
|
| 811 |
+
|
| 812 |
+
#user_info_links li:hover {
|
| 813 |
+
background-color: #dfdfdf;
|
| 814 |
+
}
|
| 815 |
+
|
| 816 |
+
#user_info_links li:hover a,
|
| 817 |
+
#user_info_links li a:hover {
|
| 818 |
+
text-decoration: none;
|
| 819 |
+
}
|
| 820 |
+
|
| 821 |
+
#user_info a:link,
|
| 822 |
+
#user_info a:visited,
|
| 823 |
+
#footer a:link,
|
| 824 |
+
#footer a:visited {
|
| 825 |
+
text-decoration: none;
|
| 826 |
+
}
|
| 827 |
+
|
| 828 |
+
#footer a:hover {
|
| 829 |
+
color: #000;
|
| 830 |
+
text-decoration: underline;
|
| 831 |
+
}
|
| 832 |
+
|
| 833 |
+
div#media-upload-error,
|
| 834 |
+
.file-error,
|
| 835 |
+
abbr.required,
|
| 836 |
+
.widget-control-remove:hover,
|
| 837 |
+
table.widefat .delete a:hover,
|
| 838 |
+
table.widefat .trash a:hover,
|
| 839 |
+
table.widefat .spam a:hover,
|
| 840 |
+
#dashboard_recent_comments .delete a:hover,
|
| 841 |
+
#dashboard_recent_comments .trash a:hover
|
| 842 |
+
#dashboard_recent_comments .spam a:hover {
|
| 843 |
+
color: #f00;
|
| 844 |
+
}
|
| 845 |
+
|
| 846 |
+
#pass-strength-result {
|
| 847 |
+
background-color: #eee;
|
| 848 |
+
border-color: #ddd !important;
|
| 849 |
+
}
|
| 850 |
+
|
| 851 |
+
#pass-strength-result.bad {
|
| 852 |
+
background-color: #ffb78c;
|
| 853 |
+
border-color: #ff853c !important;
|
| 854 |
+
}
|
| 855 |
+
|
| 856 |
+
#pass-strength-result.good {
|
| 857 |
+
background-color: #ffec8b;
|
| 858 |
+
border-color: #fc0 !important;
|
| 859 |
+
}
|
| 860 |
+
|
| 861 |
+
#pass-strength-result.short {
|
| 862 |
+
background-color: #ffa0a0;
|
| 863 |
+
border-color: #f04040 !important;
|
| 864 |
+
}
|
| 865 |
+
|
| 866 |
+
#pass-strength-result.strong {
|
| 867 |
+
background-color: #c3ff88;
|
| 868 |
+
border-color: #8dff1c !important;
|
| 869 |
+
}
|
| 870 |
+
|
| 871 |
+
/* editors */
|
| 872 |
+
#quicktags {
|
| 873 |
+
border-color: #ccc;
|
| 874 |
+
background-color: #dfdfdf;
|
| 875 |
+
background-image: url("../../../../wp-admin/images/ed-bg.gif");
|
| 876 |
+
}
|
| 877 |
+
|
| 878 |
+
#ed_toolbar input {
|
| 879 |
+
border-color: #C3C3C3;
|
| 880 |
+
}
|
| 881 |
+
|
| 882 |
+
#ed_toolbar input:hover {
|
| 883 |
+
border-color: #aaa;
|
| 884 |
+
background: #ddd;
|
| 885 |
+
}
|
| 886 |
+
|
| 887 |
+
#poststuff .wp_themeSkin .mceStatusbar {
|
| 888 |
+
border-color: #dfdfdf;
|
| 889 |
+
}
|
| 890 |
+
|
| 891 |
+
#poststuff .wp_themeSkin .mceStatusbar * {
|
| 892 |
+
color: #555;
|
| 893 |
+
}
|
| 894 |
+
|
| 895 |
+
#poststuff #edButtonPreview,
|
| 896 |
+
#poststuff #edButtonHTML {
|
| 897 |
+
background-color: #f1f1f1;
|
| 898 |
+
border-color: #dfdfdf #dfdfdf #ccc;
|
| 899 |
+
color: #999;
|
| 900 |
+
}
|
| 901 |
+
|
| 902 |
+
#poststuff #editor-toolbar .active {
|
| 903 |
+
border-color: #ccc #ccc #e9e9e9;
|
| 904 |
+
background-color: #e9e9e9;
|
| 905 |
+
color: #333;
|
| 906 |
+
}
|
| 907 |
+
|
| 908 |
+
/* TinyMCE */
|
| 909 |
+
#post-status-info {
|
| 910 |
+
background-color: #EDEDED;
|
| 911 |
+
}
|
| 912 |
+
|
| 913 |
+
.wp_themeSkin *,
|
| 914 |
+
.wp_themeSkin a:hover,
|
| 915 |
+
.wp_themeSkin a:link,
|
| 916 |
+
.wp_themeSkin a:visited,
|
| 917 |
+
.wp_themeSkin a:active {
|
| 918 |
+
color: #000;
|
| 919 |
+
}
|
| 920 |
+
|
| 921 |
+
/* Containers */
|
| 922 |
+
.wp_themeSkin table.mceLayout {
|
| 923 |
+
border-color: #ccc #ccc #dfdfdf;
|
| 924 |
+
}
|
| 925 |
+
|
| 926 |
+
#editorcontainer #content,
|
| 927 |
+
#editorcontainer .wp_themeSkin .mceIframeContainer {
|
| 928 |
+
-moz-box-shadow: inset 1px 1px 2px rgba( 0, 0, 0, 0.1 );
|
| 929 |
+
-webkit-box-shadow: inset 1px 1px 2px rgba( 0, 0, 0, 0.1 );
|
| 930 |
+
box-shadow: inset 1px 1px 2px rgba( 0, 0, 0, 0.1 );
|
| 931 |
+
}
|
| 932 |
+
.wp_themeSkin iframe {
|
| 933 |
+
background: transparent;
|
| 934 |
+
}
|
| 935 |
+
|
| 936 |
+
/* Layout */
|
| 937 |
+
.wp_themeSkin .mceStatusbar {
|
| 938 |
+
color: #000;
|
| 939 |
+
background-color: #f5f5f5;
|
| 940 |
+
}
|
| 941 |
+
|
| 942 |
+
/* Button */
|
| 943 |
+
.wp_themeSkin .mceButton {
|
| 944 |
+
border-color: #ccc;
|
| 945 |
+
background-color: #eee; /* Fallback */
|
| 946 |
+
background-image: -ms-linear-gradient(bottom, #ddd, #fff); /* IE10 */
|
| 947 |
+
background-image: -moz-linear-gradient(bottom, #ddd, #fff); /* Firefox */
|
| 948 |
+
background-image: -o-linear-gradient(bottom, #ddd, #fff); /* Opera */
|
| 949 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#fff)); /* old Webkit */
|
| 950 |
+
background-image: -webkit-linear-gradient(bottom, #ddd, #fff); /* new Webkit */
|
| 951 |
+
background-image: linear-gradient(bottom, #ddd, #fff); /* proposed W3C Markup */
|
| 952 |
+
}
|
| 953 |
+
|
| 954 |
+
.wp_themeSkin a.mceButtonEnabled:hover {
|
| 955 |
+
border-color: #a0a0a0;
|
| 956 |
+
background: #ddd; /* Fallback */
|
| 957 |
+
background-image: -ms-linear-gradient(bottom, #ccc, #fff); /* IE10 */
|
| 958 |
+
background-image: -moz-linear-gradient(bottom, #ccc, #fff); /* Firefox */
|
| 959 |
+
background-image: -o-linear-gradient(bottom, #ccc, #fff); /* Opera */
|
| 960 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#ccc), to(#fff)); /* old Webkit */
|
| 961 |
+
background-image: -webkit-linear-gradient(bottom, #ccc, #fff); /* new Webkit */
|
| 962 |
+
background-image: linear-gradient(bottom, #ccc, #fff); /* proposed W3C Markup */
|
| 963 |
+
}
|
| 964 |
+
|
| 965 |
+
.wp_themeSkin a.mceButton:active,
|
| 966 |
+
.wp_themeSkin a.mceButtonEnabled:active,
|
| 967 |
+
.wp_themeSkin a.mceButtonSelected:active,
|
| 968 |
+
.wp_themeSkin a.mceButtonActive,
|
| 969 |
+
.wp_themeSkin a.mceButtonActive:active,
|
| 970 |
+
.wp_themeSkin a.mceButtonActive:hover {
|
| 971 |
+
background-color: #ddd; /* Fallback */
|
| 972 |
+
background-image: -ms-linear-gradient(bottom, #eee, #bbb); /* IE10 */
|
| 973 |
+
background-image: -moz-linear-gradient(bottom, #eee, #bbb); /* Firefox */
|
| 974 |
+
background-image: -o-linear-gradient(bottom, #eee, #bbb); /* Opera */
|
| 975 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#eee), to(#bbb)); /* old Webkit */
|
| 976 |
+
background-image: -webkit-linear-gradient(bottom, #eee, #bbb); /* new Webkit */
|
| 977 |
+
background-image: linear-gradient(bottom, #eee, #bbb); /* proposed W3C Markup */
|
| 978 |
+
border-color: #909090;
|
| 979 |
+
}
|
| 980 |
+
|
| 981 |
+
.wp_themeSkin .mceButtonDisabled {
|
| 982 |
+
border-color: #ccc !important;
|
| 983 |
+
}
|
| 984 |
+
|
| 985 |
+
/* ListBox */
|
| 986 |
+
.wp_themeSkin .mceListBox .mceText,
|
| 987 |
+
.wp_themeSkin .mceListBox .mceOpen {
|
| 988 |
+
border-color: #ccc;
|
| 989 |
+
background-color: #eee; /* Fallback */
|
| 990 |
+
background-image: -ms-linear-gradient(bottom, #ddd, #fff); /* IE10 */
|
| 991 |
+
background-image: -moz-linear-gradient(bottom, #ddd, #fff); /* Firefox */
|
| 992 |
+
background-image: -o-linear-gradient(bottom, #ddd, #fff); /* Opera */
|
| 993 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#fff)); /* old Webkit */
|
| 994 |
+
background-image: -webkit-linear-gradient(bottom, #ddd, #fff); /* new Webkit */
|
| 995 |
+
background-image: linear-gradient(bottom, #ddd, #fff); /* proposed W3C Markup */
|
| 996 |
+
}
|
| 997 |
+
|
| 998 |
+
.wp_themeSkin .mceListBox .mceOpen {
|
| 999 |
+
border-left: 0 !important;
|
| 1000 |
+
}
|
| 1001 |
+
|
| 1002 |
+
.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,
|
| 1003 |
+
.wp_themeSkin .mceListBoxHover .mceOpen,
|
| 1004 |
+
.wp_themeSkin .mceListBoxHover:active .mceOpen,
|
| 1005 |
+
.wp_themeSkin .mceListBoxSelected .mceOpen,
|
| 1006 |
+
.wp_themeSkin .mceListBoxSelected .mceText,
|
| 1007 |
+
.wp_themeSkin table.mceListBoxEnabled:active .mceText {
|
| 1008 |
+
background: #ccc;
|
| 1009 |
+
border-color: #999;
|
| 1010 |
+
}
|
| 1011 |
+
|
| 1012 |
+
/* List Box Hover */
|
| 1013 |
+
.wp_themeSkin table.mceListBoxEnabled:hover .mceText,
|
| 1014 |
+
.wp_themeSkin .mceListBoxHover .mceText,
|
| 1015 |
+
.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,
|
| 1016 |
+
.wp_themeSkin .mceListBoxHover .mceOpen {
|
| 1017 |
+
border-color: #909090;
|
| 1018 |
+
background-color: #eee; /* Fallback */
|
| 1019 |
+
background-image: -ms-linear-gradient(bottom, #ccc, #fff); /* IE10 */
|
| 1020 |
+
background-image: -moz-linear-gradient(bottom, #ccc, #fff); /* Firefox */
|
| 1021 |
+
background-image: -o-linear-gradient(bottom, #ccc, #fff); /* Opera */
|
| 1022 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#ccc), to(#fff)); /* old Webkit */
|
| 1023 |
+
background-image: -webkit-linear-gradient(bottom, #ccc, #fff); /* new Webkit */
|
| 1024 |
+
background-image: linear-gradient(bottom, #ccc, #fff); /* proposed W3C Markup */
|
| 1025 |
+
}
|
| 1026 |
+
|
| 1027 |
+
.wp_themeSkin select.mceListBox {
|
| 1028 |
+
border-color: #B2B2B2;
|
| 1029 |
+
background-color: #fff;
|
| 1030 |
+
}
|
| 1031 |
+
|
| 1032 |
+
/* SplitButton */
|
| 1033 |
+
.wp_themeSkin .mceSplitButton a.mceAction,
|
| 1034 |
+
.wp_themeSkin .mceSplitButton a.mceOpen {
|
| 1035 |
+
border-color: #ccc;
|
| 1036 |
+
}
|
| 1037 |
+
|
| 1038 |
+
.wp_themeSkin .mceSplitButton a.mceOpen:hover,
|
| 1039 |
+
.wp_themeSkin .mceSplitButtonSelected a.mceOpen,
|
| 1040 |
+
.wp_themeSkin table.mceSplitButtonEnabled:hover a.mceAction,
|
| 1041 |
+
.wp_themeSkin .mceSplitButton a.mceAction:hover {
|
| 1042 |
+
border-color: #909090;
|
| 1043 |
+
}
|
| 1044 |
+
|
| 1045 |
+
|
| 1046 |
+
.wp_themeSkin table.mceSplitButton td {
|
| 1047 |
+
background-color: #eee; /* Fallback */
|
| 1048 |
+
background-image: -ms-linear-gradient(bottom, #ddd, #fff); /* IE10 */
|
| 1049 |
+
background-image: -moz-linear-gradient(bottom, #ddd, #fff); /* Firefox */
|
| 1050 |
+
background-image: -o-linear-gradient(bottom, #ddd, #fff); /* Opera */
|
| 1051 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#fff)); /* old Webkit */
|
| 1052 |
+
background-image: -webkit-linear-gradient(bottom, #ddd, #fff); /* new Webkit */
|
| 1053 |
+
background-image: linear-gradient(bottom, #ddd, #fff); /* proposed W3C Markup */
|
| 1054 |
+
}
|
| 1055 |
+
|
| 1056 |
+
.wp_themeSkin table.mceSplitButton:hover td {
|
| 1057 |
+
background-image: -ms-linear-gradient(bottom, #ccc, #fff); /* IE10 */
|
| 1058 |
+
background-image: -moz-linear-gradient(bottom, #ccc, #fff); /* Firefox */
|
| 1059 |
+
background-image: -o-linear-gradient(bottom, #ccc, #fff); /* Opera */
|
| 1060 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#ccc), to(#fff)); /* old Webkit */
|
| 1061 |
+
background-image: -webkit-linear-gradient(bottom, #ccc, #fff); /* new Webkit */
|
| 1062 |
+
background-image: linear-gradient(bottom, #ccc, #fff); /* proposed W3C Markup */
|
| 1063 |
+
}
|
| 1064 |
+
|
| 1065 |
+
.wp_themeSkin .mceSplitButtonActive {
|
| 1066 |
+
background-color: #B2B2B2;
|
| 1067 |
+
}
|
| 1068 |
+
|
| 1069 |
+
/* ColorSplitButton */
|
| 1070 |
+
.wp_themeSkin div.mceColorSplitMenu table {
|
| 1071 |
+
background-color: #ebebeb;
|
| 1072 |
+
border-color: #B2B2B2;
|
| 1073 |
+
}
|
| 1074 |
+
|
| 1075 |
+
.wp_themeSkin .mceColorSplitMenu a {
|
| 1076 |
+
border-color: #B2B2B2;
|
| 1077 |
+
}
|
| 1078 |
+
|
| 1079 |
+
.wp_themeSkin .mceColorSplitMenu a.mceMoreColors {
|
| 1080 |
+
border-color: #fff;
|
| 1081 |
+
}
|
| 1082 |
+
|
| 1083 |
+
.wp_themeSkin .mceColorSplitMenu a.mceMoreColors:hover {
|
| 1084 |
+
border-color: #0A246A;
|
| 1085 |
+
background-color: #B6BDD2;
|
| 1086 |
+
}
|
| 1087 |
+
|
| 1088 |
+
.wp_themeSkin a.mceMoreColors:hover {
|
| 1089 |
+
border-color: #0A246A;
|
| 1090 |
+
}
|
| 1091 |
+
|
| 1092 |
+
/* Menu */
|
| 1093 |
+
.wp_themeSkin .mceMenu {
|
| 1094 |
+
border-color: #ddd;
|
| 1095 |
+
}
|
| 1096 |
+
|
| 1097 |
+
.wp_themeSkin .mceMenu table {
|
| 1098 |
+
background-color: #ebeaeb;
|
| 1099 |
+
}
|
| 1100 |
+
|
| 1101 |
+
.wp_themeSkin .mceMenu .mceText {
|
| 1102 |
+
color: #000;
|
| 1103 |
+
}
|
| 1104 |
+
|
| 1105 |
+
.wp_themeSkin .mceMenu .mceMenuItemEnabled a:hover,
|
| 1106 |
+
.wp_themeSkin .mceMenu .mceMenuItemActive {
|
| 1107 |
+
background-color: #f5f5f5;
|
| 1108 |
+
}
|
| 1109 |
+
.wp_themeSkin td.mceMenuItemSeparator {
|
| 1110 |
+
background-color: #aaa;
|
| 1111 |
+
}
|
| 1112 |
+
.wp_themeSkin .mceMenuItemTitle a {
|
| 1113 |
+
background-color: #ccc;
|
| 1114 |
+
border-bottom-color: #aaa;
|
| 1115 |
+
}
|
| 1116 |
+
.wp_themeSkin .mceMenuItemTitle span.mceText {
|
| 1117 |
+
color: #000;
|
| 1118 |
+
}
|
| 1119 |
+
.wp_themeSkin .mceMenuItemDisabled .mceText {
|
| 1120 |
+
color: #888;
|
| 1121 |
+
}
|
| 1122 |
+
|
| 1123 |
+
.wp_themeSkin tr.mceFirst td.mceToolbar {
|
| 1124 |
+
background: #dfdfdf url("../../../../wp-admin/images/ed-bg.gif") repeat-x scroll left top;
|
| 1125 |
+
border-color: #ccc;
|
| 1126 |
+
}
|
| 1127 |
+
|
| 1128 |
+
.wp-admin #mceModalBlocker {
|
| 1129 |
+
background: #000;
|
| 1130 |
+
}
|
| 1131 |
+
|
| 1132 |
+
.wp-admin .clearlooks2 .mceFocus .mceTop .mceLeft {
|
| 1133 |
+
background: #444444;
|
| 1134 |
+
border-left: 1px solid #999;
|
| 1135 |
+
border-top: 1px solid #999;
|
| 1136 |
+
-moz-border-radius: 3px 0 0 0;
|
| 1137 |
+
-webkit-border-top-left-radius: 3px;
|
| 1138 |
+
-khtml-border-top-left-radius: 3px;
|
| 1139 |
+
border-top-left-radius: 3px;
|
| 1140 |
+
}
|
| 1141 |
+
|
| 1142 |
+
.wp-admin .clearlooks2 .mceFocus .mceTop .mceRight {
|
| 1143 |
+
background: #444444;
|
| 1144 |
+
border-right: 1px solid #999;
|
| 1145 |
+
border-top: 1px solid #999;
|
| 1146 |
+
border-top-right-radius: 3px;
|
| 1147 |
+
-khtml-border-top-right-radius: 3px;
|
| 1148 |
+
-webkit-border-top-right-radius: 3px;
|
| 1149 |
+
-moz-border-radius: 0 3px 0 0;
|
| 1150 |
+
}
|
| 1151 |
+
|
| 1152 |
+
.wp-admin .clearlooks2 .mceMiddle .mceLeft {
|
| 1153 |
+
background: #f1f1f1;
|
| 1154 |
+
border-left: 1px solid #999;
|
| 1155 |
+
}
|
| 1156 |
+
|
| 1157 |
+
.wp-admin .clearlooks2 .mceMiddle .mceRight {
|
| 1158 |
+
background: #f1f1f1;
|
| 1159 |
+
border-right: 1px solid #999;
|
| 1160 |
+
}
|
| 1161 |
+
|
| 1162 |
+
.wp-admin .clearlooks2 .mceBottom {
|
| 1163 |
+
background: #f1f1f1;
|
| 1164 |
+
border-bottom: 1px solid #999;
|
| 1165 |
+
}
|
| 1166 |
+
|
| 1167 |
+
.wp-admin .clearlooks2 .mceBottom .mceLeft {
|
| 1168 |
+
background: #f1f1f1;
|
| 1169 |
+
border-bottom: 1px solid #999;
|
| 1170 |
+
border-left: 1px solid #999;
|
| 1171 |
+
}
|
| 1172 |
+
|
| 1173 |
+
.wp-admin .clearlooks2 .mceBottom .mceCenter {
|
| 1174 |
+
background: #f1f1f1;
|
| 1175 |
+
border-bottom: 1px solid #999;
|
| 1176 |
+
}
|
| 1177 |
+
|
| 1178 |
+
.wp-admin .clearlooks2 .mceBottom .mceRight {
|
| 1179 |
+
background: #f1f1f1;
|
| 1180 |
+
border-bottom: 1px solid #999;
|
| 1181 |
+
border-right: 1px solid #999;
|
| 1182 |
+
}
|
| 1183 |
+
|
| 1184 |
+
.wp-admin .clearlooks2 .mceFocus .mceTop span {
|
| 1185 |
+
color: #e5e5e5;
|
| 1186 |
+
}
|
| 1187 |
+
/* end TinyMCE */
|
| 1188 |
+
|
| 1189 |
+
#titlediv #title {
|
| 1190 |
+
border-color: #ccc;
|
| 1191 |
+
}
|
| 1192 |
+
|
| 1193 |
+
#editorcontainer {
|
| 1194 |
+
border-color: #ccc #ccc #dfdfdf;
|
| 1195 |
+
}
|
| 1196 |
+
|
| 1197 |
+
#post-status-info {
|
| 1198 |
+
border-color: #dfdfdf #ccc #ccc;
|
| 1199 |
+
}
|
| 1200 |
+
|
| 1201 |
+
.editwidget .widget-inside {
|
| 1202 |
+
border-color: #dfdfdf;
|
| 1203 |
+
}
|
| 1204 |
+
|
| 1205 |
+
#titlediv #title {
|
| 1206 |
+
background-color: #fff;
|
| 1207 |
+
}
|
| 1208 |
+
|
| 1209 |
+
#tTips p#tTips_inside {
|
| 1210 |
+
background-color: #ddd;
|
| 1211 |
+
color: #333;
|
| 1212 |
+
}
|
| 1213 |
+
|
| 1214 |
+
#timestampdiv input,
|
| 1215 |
+
#namediv input,
|
| 1216 |
+
#poststuff .inside .the-tagcloud {
|
| 1217 |
+
border-color: #ddd;
|
| 1218 |
+
}
|
| 1219 |
+
|
| 1220 |
+
/* menu */
|
| 1221 |
+
#adminmenuback,
|
| 1222 |
+
#adminmenuwrap {
|
| 1223 |
+
background-color: #deece1;
|
| 1224 |
+
border-color: #ccc;
|
| 1225 |
+
}
|
| 1226 |
+
|
| 1227 |
+
#adminmenushadow,
|
| 1228 |
+
#adminmenuback {
|
| 1229 |
+
background-image: url(../../../../wp-admin/images/menu-shadow.png);
|
| 1230 |
+
background-position: top right;
|
| 1231 |
+
background-repeat: repeat-y;
|
| 1232 |
+
}
|
| 1233 |
+
|
| 1234 |
+
#adminmenu li.wp-menu-separator {
|
| 1235 |
+
background: #dfdfdf;
|
| 1236 |
+
border-color: #cfcfcf;
|
| 1237 |
+
}
|
| 1238 |
+
|
| 1239 |
+
#adminmenu div.separator {
|
| 1240 |
+
border-color: #deece1;
|
| 1241 |
+
}
|
| 1242 |
+
|
| 1243 |
+
#adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,
|
| 1244 |
+
#adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle {
|
| 1245 |
+
background: transparent url(../../../../wp-admin/images/arrows-dark.png) no-repeat -1px 6px;
|
| 1246 |
+
}
|
| 1247 |
+
|
| 1248 |
+
#adminmenu .wp-has-submenu:hover .wp-menu-toggle,
|
| 1249 |
+
#adminmenu .wp-menu-open .wp-menu-toggle {
|
| 1250 |
+
background: transparent url(../../../../wp-admin/images/arrows.png) no-repeat -2px 6px;
|
| 1251 |
+
}
|
| 1252 |
+
|
| 1253 |
+
#adminmenu a.menu-top,
|
| 1254 |
+
.folded #adminmenu li.menu-top,
|
| 1255 |
+
#adminmenu .wp-submenu .wp-submenu-head {
|
| 1256 |
+
border-top-color: #f9f9f9;
|
| 1257 |
+
border-bottom-color: #dfdfdf;
|
| 1258 |
+
}
|
| 1259 |
+
|
| 1260 |
+
#adminmenu li.wp-menu-open {
|
| 1261 |
+
border-color: #dfdfdf;
|
| 1262 |
+
}
|
| 1263 |
+
|
| 1264 |
+
#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
|
| 1265 |
+
#adminmenu li.current a.menu-top,
|
| 1266 |
+
.folded #adminmenu li.wp-has-current-submenu,
|
| 1267 |
+
.folded #adminmenu li.current.menu-top,
|
| 1268 |
+
#adminmenu .wp-menu-arrow,
|
| 1269 |
+
#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
|
| 1270 |
+
background-color: #777; /* Fallback */
|
| 1271 |
+
background-image: -ms-linear-gradient(bottom, #060, #6EB469); /* IE10 */
|
| 1272 |
+
background-image: -moz-linear-gradient(bottom, #060, #6EB469); /* Firefox */
|
| 1273 |
+
background-image: -o-linear-gradient(bottom, #060, #6EB469); /* Opera */
|
| 1274 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#060), to(#6EB469)); /* old Webkit */
|
| 1275 |
+
background-image: -webkit-linear-gradient(bottom, #060, #6EB469); /* new Webkit */
|
| 1276 |
+
background-image: linear-gradient(bottom, #060, #6EB469); /* proposed W3C Markup */
|
| 1277 |
+
}
|
| 1278 |
+
|
| 1279 |
+
#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
|
| 1280 |
+
#adminmenu li.current a.menu-top,
|
| 1281 |
+
#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
|
| 1282 |
+
text-shadow: 0 -1px 0 #333;
|
| 1283 |
+
color: #fff;
|
| 1284 |
+
border-top-color: #808080;
|
| 1285 |
+
border-bottom-color: #6d6d6d;
|
| 1286 |
+
}
|
| 1287 |
+
|
| 1288 |
+
.folded #adminmenu li.wp-has-current-submenu,
|
| 1289 |
+
.folded #adminmenu li.current.menu-top {
|
| 1290 |
+
border-top-color: #808080;
|
| 1291 |
+
border-bottom-color: #6d6d6d;
|
| 1292 |
+
}
|
| 1293 |
+
|
| 1294 |
+
#adminmenu .wp-submenu a:hover {
|
| 1295 |
+
background-color: #EEFCF1 !important;
|
| 1296 |
+
color: #333 !important;
|
| 1297 |
+
}
|
| 1298 |
+
|
| 1299 |
+
#adminmenu .wp-submenu li.current,
|
| 1300 |
+
#adminmenu .wp-submenu li.current a,
|
| 1301 |
+
#adminmenu .wp-submenu li.current a:hover {
|
| 1302 |
+
color: #333;
|
| 1303 |
+
}
|
| 1304 |
+
|
| 1305 |
+
#adminmenu .wp-submenu ul {
|
| 1306 |
+
background-color: #fff;
|
| 1307 |
+
}
|
| 1308 |
+
|
| 1309 |
+
.folded #adminmenu .wp-submenu-wrap,
|
| 1310 |
+
.folded #adminmenu .wp-submenu ul {
|
| 1311 |
+
border-color: #dfdfdf;
|
| 1312 |
+
}
|
| 1313 |
+
|
| 1314 |
+
.folded #adminmenu .wp-submenu-wrap {
|
| 1315 |
+
-moz-box-shadow: 2px 2px 5px rgba( 0, 0, 0, 0.4 );
|
| 1316 |
+
-webkit-box-shadow: 2px 2px 5px rgba( 0, 0, 0, 0.4 );
|
| 1317 |
+
box-shadow: 2px 2px 5px rgba( 0, 0, 0, 0.4 );
|
| 1318 |
+
}
|
| 1319 |
+
|
| 1320 |
+
#adminmenu .wp-submenu .wp-submenu-head {
|
| 1321 |
+
border-right-color: #dfdfdf;
|
| 1322 |
+
background-color: #ececec;
|
| 1323 |
+
}
|
| 1324 |
+
|
| 1325 |
+
#adminmenu div.wp-submenu {
|
| 1326 |
+
background-color: transparent;
|
| 1327 |
+
}
|
| 1328 |
+
|
| 1329 |
+
/* collapse menu button */
|
| 1330 |
+
#collapse-menu {
|
| 1331 |
+
color: #aaa;
|
| 1332 |
+
}
|
| 1333 |
+
|
| 1334 |
+
#collapse-menu:hover {
|
| 1335 |
+
color: #999;
|
| 1336 |
+
}
|
| 1337 |
+
|
| 1338 |
+
#collapse-button {
|
| 1339 |
+
border-color: #ccc;
|
| 1340 |
+
background-color: #f4f4f4; /* Fallback */
|
| 1341 |
+
background-image: -ms-linear-gradient(bottom, #dfdfdf, #fff); /* IE10 */
|
| 1342 |
+
background-image: -moz-linear-gradient(bottom, #dfdfdf, #fff); /* Firefox */
|
| 1343 |
+
background-image: -o-linear-gradient(bottom, #dfdfdf, #fff); /* Opera */
|
| 1344 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#fff)); /* old Webkit */
|
| 1345 |
+
background-image: -webkit-linear-gradient(bottom, #dfdfdf, #fff); /* new Webkit */
|
| 1346 |
+
background-image: linear-gradient(bottom, #dfdfdf, #fff); /* proposed W3C Markup */
|
| 1347 |
+
}
|
| 1348 |
+
#collapse-menu:hover #collapse-button {
|
| 1349 |
+
border-color: #aaa;
|
| 1350 |
+
}
|
| 1351 |
+
#collapse-button div {
|
| 1352 |
+
background: transparent url(../../../../wp-admin/images/arrows.png) no-repeat 0 -72px;
|
| 1353 |
+
}
|
| 1354 |
+
.folded #collapse-button div {
|
| 1355 |
+
background-position: 0 -108px;
|
| 1356 |
+
}
|
| 1357 |
+
|
| 1358 |
+
/* menu and screen icons */
|
| 1359 |
+
#adminmenu .menu-icon-dashboard div.wp-menu-image {
|
| 1360 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -60px -33px;
|
| 1361 |
+
}
|
| 1362 |
+
|
| 1363 |
+
#adminmenu .menu-icon-dashboard:hover div.wp-menu-image,
|
| 1364 |
+
#adminmenu .menu-icon-dashboard.wp-has-current-submenu div.wp-menu-image,
|
| 1365 |
+
#adminmenu .menu-icon-dashboard.current div.wp-menu-image {
|
| 1366 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -60px -1px;
|
| 1367 |
+
}
|
| 1368 |
+
|
| 1369 |
+
#adminmenu .menu-icon-post div.wp-menu-image {
|
| 1370 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -271px -33px;
|
| 1371 |
+
}
|
| 1372 |
+
|
| 1373 |
+
#adminmenu .menu-icon-post:hover div.wp-menu-image,
|
| 1374 |
+
#adminmenu .menu-icon-post.wp-has-current-submenu div.wp-menu-image {
|
| 1375 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -271px -1px;
|
| 1376 |
+
}
|
| 1377 |
+
|
| 1378 |
+
#adminmenu .menu-icon-media div.wp-menu-image {
|
| 1379 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -120px -33px;
|
| 1380 |
+
}
|
| 1381 |
+
|
| 1382 |
+
#adminmenu .menu-icon-media:hover div.wp-menu-image,
|
| 1383 |
+
#adminmenu .menu-icon-media.wp-has-current-submenu div.wp-menu-image {
|
| 1384 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -120px -1px;
|
| 1385 |
+
}
|
| 1386 |
+
|
| 1387 |
+
#adminmenu .menu-icon-links div.wp-menu-image {
|
| 1388 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -90px -33px;
|
| 1389 |
+
}
|
| 1390 |
+
|
| 1391 |
+
#adminmenu .menu-icon-links:hover div.wp-menu-image,
|
| 1392 |
+
#adminmenu .menu-icon-links.wp-has-current-submenu div.wp-menu-image {
|
| 1393 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -90px -1px;
|
| 1394 |
+
}
|
| 1395 |
+
|
| 1396 |
+
#adminmenu .menu-icon-page div.wp-menu-image {
|
| 1397 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -150px -33px;
|
| 1398 |
+
}
|
| 1399 |
+
|
| 1400 |
+
#adminmenu .menu-icon-page:hover div.wp-menu-image,
|
| 1401 |
+
#adminmenu .menu-icon-page.wp-has-current-submenu div.wp-menu-image {
|
| 1402 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -150px -1px;
|
| 1403 |
+
}
|
| 1404 |
+
|
| 1405 |
+
#adminmenu .menu-icon-comments div.wp-menu-image {
|
| 1406 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -30px -33px;
|
| 1407 |
+
}
|
| 1408 |
+
|
| 1409 |
+
#adminmenu .menu-icon-comments:hover div.wp-menu-image,
|
| 1410 |
+
#adminmenu .menu-icon-comments.wp-has-current-submenu div.wp-menu-image,
|
| 1411 |
+
#adminmenu .menu-icon-comments.current div.wp-menu-image {
|
| 1412 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -30px -1px;
|
| 1413 |
+
}
|
| 1414 |
+
|
| 1415 |
+
#adminmenu .menu-icon-appearance div.wp-menu-image {
|
| 1416 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll 0 -33px;
|
| 1417 |
+
}
|
| 1418 |
+
|
| 1419 |
+
#adminmenu .menu-icon-appearance:hover div.wp-menu-image,
|
| 1420 |
+
#adminmenu .menu-icon-appearance.wp-has-current-submenu div.wp-menu-image {
|
| 1421 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll 0 -1px;
|
| 1422 |
+
}
|
| 1423 |
+
|
| 1424 |
+
#adminmenu .menu-icon-plugins div.wp-menu-image {
|
| 1425 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -180px -33px;
|
| 1426 |
+
}
|
| 1427 |
+
|
| 1428 |
+
#adminmenu .menu-icon-plugins:hover div.wp-menu-image,
|
| 1429 |
+
#adminmenu .menu-icon-plugins.wp-has-current-submenu div.wp-menu-image {
|
| 1430 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -180px -1px;
|
| 1431 |
+
}
|
| 1432 |
+
|
| 1433 |
+
#adminmenu .menu-icon-users div.wp-menu-image {
|
| 1434 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -300px -33px;
|
| 1435 |
+
}
|
| 1436 |
+
|
| 1437 |
+
#adminmenu .menu-icon-users:hover div.wp-menu-image,
|
| 1438 |
+
#adminmenu .menu-icon-users.wp-has-current-submenu div.wp-menu-image,
|
| 1439 |
+
#adminmenu .menu-icon-users.current div.wp-menu-image {
|
| 1440 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -300px -1px;
|
| 1441 |
+
}
|
| 1442 |
+
|
| 1443 |
+
#adminmenu .menu-icon-tools div.wp-menu-image {
|
| 1444 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -210px -33px;
|
| 1445 |
+
}
|
| 1446 |
+
|
| 1447 |
+
#adminmenu .menu-icon-tools:hover div.wp-menu-image,
|
| 1448 |
+
#adminmenu .menu-icon-tools.wp-has-current-submenu div.wp-menu-image,
|
| 1449 |
+
#adminmenu .menu-icon-tools.current div.wp-menu-image {
|
| 1450 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -210px -1px;
|
| 1451 |
+
}
|
| 1452 |
+
|
| 1453 |
+
#icon-options-general,
|
| 1454 |
+
#adminmenu .menu-icon-settings div.wp-menu-image {
|
| 1455 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -240px -33px;
|
| 1456 |
+
}
|
| 1457 |
+
|
| 1458 |
+
#adminmenu .menu-icon-settings:hover div.wp-menu-image,
|
| 1459 |
+
#adminmenu .menu-icon-settings.wp-has-current-submenu div.wp-menu-image {
|
| 1460 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -240px -1px;
|
| 1461 |
+
}
|
| 1462 |
+
|
| 1463 |
+
#adminmenu .menu-icon-site div.wp-menu-image {
|
| 1464 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -360px -33px;
|
| 1465 |
+
}
|
| 1466 |
+
|
| 1467 |
+
#adminmenu .menu-icon-site:hover div.wp-menu-image,
|
| 1468 |
+
#adminmenu .menu-icon-site.wp-has-current-submenu div.wp-menu-image {
|
| 1469 |
+
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -360px -1px;
|
| 1470 |
+
}
|
| 1471 |
+
/* end menu and screen icons */
|
| 1472 |
+
|
| 1473 |
+
/* Screen Icons */
|
| 1474 |
+
#icon-edit,
|
| 1475 |
+
#icon-post {
|
| 1476 |
+
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -552px -5px;
|
| 1477 |
+
}
|
| 1478 |
+
|
| 1479 |
+
#icon-index {
|
| 1480 |
+
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -137px -5px;
|
| 1481 |
+
}
|
| 1482 |
+
|
| 1483 |
+
#icon-upload {
|
| 1484 |
+
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -251px -5px;
|
| 1485 |
+
}
|
| 1486 |
+
|
| 1487 |
+
#icon-link-manager,
|
| 1488 |
+
#icon-link,
|
| 1489 |
+
#icon-link-category {
|
| 1490 |
+
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -190px -5px;
|
| 1491 |
+
}
|
| 1492 |
+
|
| 1493 |
+
#icon-edit-pages,
|
| 1494 |
+
#icon-page {
|
| 1495 |
+
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -312px -5px;
|
| 1496 |
+
}
|
| 1497 |
+
|
| 1498 |
+
#icon-edit-comments {
|
| 1499 |
+
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -72px -5px;
|
| 1500 |
+
}
|
| 1501 |
+
|
| 1502 |
+
#icon-themes {
|
| 1503 |
+
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -11px -5px;
|
| 1504 |
+
}
|
| 1505 |
+
|
| 1506 |
+
#icon-plugins {
|
| 1507 |
+
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -370px -5px;
|
| 1508 |
+
}
|
| 1509 |
+
|
| 1510 |
+
#icon-users,
|
| 1511 |
+
#icon-profile,
|
| 1512 |
+
#icon-user-edit {
|
| 1513 |
+
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -600px -5px;
|
| 1514 |
+
}
|
| 1515 |
+
|
| 1516 |
+
#icon-tools,
|
| 1517 |
+
#icon-admin {
|
| 1518 |
+
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -432px -5px;
|
| 1519 |
+
}
|
| 1520 |
+
|
| 1521 |
+
#icon-options-general {
|
| 1522 |
+
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -492px -5px;
|
| 1523 |
+
}
|
| 1524 |
+
|
| 1525 |
+
#icon-ms-admin {
|
| 1526 |
+
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -659px -5px;
|
| 1527 |
+
}
|
| 1528 |
+
/* end screen icons */
|
| 1529 |
+
|
| 1530 |
+
|
| 1531 |
+
/* Diff */
|
| 1532 |
+
table.diff .diff-deletedline {
|
| 1533 |
+
background-color: #fdd;
|
| 1534 |
+
}
|
| 1535 |
+
|
| 1536 |
+
table.diff .diff-deletedline del {
|
| 1537 |
+
background-color: #f99;
|
| 1538 |
+
}
|
| 1539 |
+
|
| 1540 |
+
table.diff .diff-addedline {
|
| 1541 |
+
background-color: #dfd;
|
| 1542 |
+
}
|
| 1543 |
+
|
| 1544 |
+
table.diff .diff-addedline ins {
|
| 1545 |
+
background-color: #9f9;
|
| 1546 |
+
}
|
| 1547 |
+
|
| 1548 |
+
#att-info {
|
| 1549 |
+
background-color: #E4F2FD;
|
| 1550 |
+
}
|
| 1551 |
+
|
| 1552 |
+
/* edit image */
|
| 1553 |
+
#sidemenu a {
|
| 1554 |
+
background-color: #f9f9f9;
|
| 1555 |
+
border-color: #f9f9f9;
|
| 1556 |
+
border-bottom-color: #dfdfdf;
|
| 1557 |
+
}
|
| 1558 |
+
|
| 1559 |
+
#sidemenu a.current {
|
| 1560 |
+
background-color: #fff;
|
| 1561 |
+
border-color: #dfdfdf #dfdfdf #fff;
|
| 1562 |
+
color: #D54E21;
|
| 1563 |
+
}
|
| 1564 |
+
|
| 1565 |
+
#screen-options-wrap,
|
| 1566 |
+
#contextual-help-wrap {
|
| 1567 |
+
background-color: #f1f1f1;
|
| 1568 |
+
border-color: #dfdfdf;
|
| 1569 |
+
}
|
| 1570 |
+
|
| 1571 |
+
#screen-options-link-wrap,
|
| 1572 |
+
#contextual-help-link-wrap {
|
| 1573 |
+
background-color: #e3e3e3; /* Fallback */
|
| 1574 |
+
border-right: 1px solid transparent;
|
| 1575 |
+
border-left: 1px solid transparent;
|
| 1576 |
+
border-bottom: 1px solid transparent;
|
| 1577 |
+
background-image: -ms-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* IE10 */
|
| 1578 |
+
background-image: -moz-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* Firefox */
|
| 1579 |
+
background-image: -o-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* Opera */
|
| 1580 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#f1f1f1)); /* old Webkit */
|
| 1581 |
+
background-image: -webkit-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* new Webkit */
|
| 1582 |
+
background-image: linear-gradient(bottom, #dfdfdf, #f1f1f1); /* proposed W3C Markup */
|
| 1583 |
+
}
|
| 1584 |
+
|
| 1585 |
+
#screen-meta-links a.show-settings {
|
| 1586 |
+
color: #777;
|
| 1587 |
+
}
|
| 1588 |
+
|
| 1589 |
+
#screen-meta-links a.show-settings:hover {
|
| 1590 |
+
color: #000;
|
| 1591 |
+
}
|
| 1592 |
+
|
| 1593 |
+
#replysubmit {
|
| 1594 |
+
background-color: #f1f1f1;
|
| 1595 |
+
border-top-color: #ddd;
|
| 1596 |
+
}
|
| 1597 |
+
|
| 1598 |
+
#replyerror {
|
| 1599 |
+
border-color: #ddd;
|
| 1600 |
+
background-color: #f9f9f9;
|
| 1601 |
+
}
|
| 1602 |
+
|
| 1603 |
+
#edithead,
|
| 1604 |
+
#replyhead {
|
| 1605 |
+
background-color: #f1f1f1;
|
| 1606 |
+
}
|
| 1607 |
+
|
| 1608 |
+
#ed_reply_toolbar {
|
| 1609 |
+
background-color: #e9e9e9;
|
| 1610 |
+
}
|
| 1611 |
+
|
| 1612 |
+
/* table vim shortcuts */
|
| 1613 |
+
.vim-current,
|
| 1614 |
+
.vim-current th,
|
| 1615 |
+
.vim-current td {
|
| 1616 |
+
background-color: #E4F2FD !important;
|
| 1617 |
+
}
|
| 1618 |
+
|
| 1619 |
+
/* Install Plugins */
|
| 1620 |
+
.star-average,
|
| 1621 |
+
.star.star-rating {
|
| 1622 |
+
background-color: #fc0;
|
| 1623 |
+
}
|
| 1624 |
+
|
| 1625 |
+
div.star.select:hover {
|
| 1626 |
+
background-color: #d00;
|
| 1627 |
+
}
|
| 1628 |
+
|
| 1629 |
+
div.star img {
|
| 1630 |
+
border-left: 1px solid #fff;
|
| 1631 |
+
border-right: 1px solid #fff;
|
| 1632 |
+
}
|
| 1633 |
+
|
| 1634 |
+
.widefat div.star img {
|
| 1635 |
+
border-left: 1px solid #f9f9f9;
|
| 1636 |
+
border-right: 1px solid #f9f9f9;
|
| 1637 |
+
}
|
| 1638 |
+
|
| 1639 |
+
#plugin-information .fyi ul {
|
| 1640 |
+
background-color: #eaf3fa;
|
| 1641 |
+
}
|
| 1642 |
+
|
| 1643 |
+
#plugin-information .fyi h2.mainheader {
|
| 1644 |
+
background-color: #cee1ef;
|
| 1645 |
+
}
|
| 1646 |
+
|
| 1647 |
+
#plugin-information pre,
|
| 1648 |
+
#plugin-information code {
|
| 1649 |
+
background-color: #ededff;
|
| 1650 |
+
}
|
| 1651 |
+
|
| 1652 |
+
#plugin-information pre {
|
| 1653 |
+
border: 1px solid #ccc;
|
| 1654 |
+
}
|
| 1655 |
+
|
| 1656 |
+
/* inline editor */
|
| 1657 |
+
.inline-edit-row fieldset input[type="text"],
|
| 1658 |
+
.inline-edit-row fieldset textarea,
|
| 1659 |
+
#bulk-titles,
|
| 1660 |
+
#replyrow input {
|
| 1661 |
+
border-color: #ddd;
|
| 1662 |
+
}
|
| 1663 |
+
|
| 1664 |
+
.inline-editor div.title {
|
| 1665 |
+
background-color: #EAF3FA;
|
| 1666 |
+
}
|
| 1667 |
+
|
| 1668 |
+
.inline-editor ul.cat-checklist {
|
| 1669 |
+
background-color: #fff;
|
| 1670 |
+
border-color: #ddd;
|
| 1671 |
+
}
|
| 1672 |
+
|
| 1673 |
+
.inline-editor .categories .catshow,
|
| 1674 |
+
.inline-editor .categories .cathide {
|
| 1675 |
+
color: #21759b;
|
| 1676 |
+
}
|
| 1677 |
+
|
| 1678 |
+
.inline-editor .quick-edit-save {
|
| 1679 |
+
background-color: #f1f1f1;
|
| 1680 |
+
}
|
| 1681 |
+
|
| 1682 |
+
#replyrow #ed_reply_toolbar input:hover {
|
| 1683 |
+
border-color: #aaa;
|
| 1684 |
+
background: #ddd;
|
| 1685 |
+
}
|
| 1686 |
+
|
| 1687 |
+
fieldset.inline-edit-col-right .inline-edit-col {
|
| 1688 |
+
border-color: #dfdfdf;
|
| 1689 |
+
}
|
| 1690 |
+
|
| 1691 |
+
.attention {
|
| 1692 |
+
color: #D54E21;
|
| 1693 |
+
}
|
| 1694 |
+
|
| 1695 |
+
.meta-box-sortables .postbox:hover .handlediv {
|
| 1696 |
+
background: transparent url(../../../../wp-admin/images/arrows.png) no-repeat 6px 7px;
|
| 1697 |
+
}
|
| 1698 |
+
|
| 1699 |
+
.tablenav .tablenav-pages {
|
| 1700 |
+
color: #555;
|
| 1701 |
+
}
|
| 1702 |
+
|
| 1703 |
+
.tablenav .tablenav-pages a {
|
| 1704 |
+
border-color: #e3e3e3;
|
| 1705 |
+
background: #eee url('../images/menu-bits.gif?ver=20100610') repeat-x scroll left -379px;
|
| 1706 |
+
}
|
| 1707 |
+
|
| 1708 |
+
.tablenav .tablenav-pages a:hover,
|
| 1709 |
+
.tablenav .tablenav-pages a:focus {
|
| 1710 |
+
color: #d54e21;
|
| 1711 |
+
}
|
| 1712 |
+
|
| 1713 |
+
.tablenav .tablenav-pages a.disabled,
|
| 1714 |
+
.tablenav .tablenav-pages a.disabled:hover,
|
| 1715 |
+
.tablenav .tablenav-pages a.disabled:focus {
|
| 1716 |
+
color: #aaa;
|
| 1717 |
+
}
|
| 1718 |
+
|
| 1719 |
+
.tablenav .tablenav-pages .current {
|
| 1720 |
+
background: #dfdfdf;
|
| 1721 |
+
border-color: #d3d3d3;
|
| 1722 |
+
}
|
| 1723 |
+
|
| 1724 |
+
#availablethemes,
|
| 1725 |
+
#availablethemes td {
|
| 1726 |
+
border-color: #ddd;
|
| 1727 |
+
}
|
| 1728 |
+
|
| 1729 |
+
#current-theme img {
|
| 1730 |
+
border-color: #999;
|
| 1731 |
+
}
|
| 1732 |
+
|
| 1733 |
+
#TB_window #TB_title a.tb-theme-preview-link,
|
| 1734 |
+
#TB_window #TB_title a.tb-theme-preview-link:visited {
|
| 1735 |
+
color: #999;
|
| 1736 |
+
}
|
| 1737 |
+
|
| 1738 |
+
#TB_window #TB_title a.tb-theme-preview-link:hover,
|
| 1739 |
+
#TB_window #TB_title a.tb-theme-preview-link:focus {
|
| 1740 |
+
color: #ccc;
|
| 1741 |
+
}
|
| 1742 |
+
|
| 1743 |
+
.misc-pub-section {
|
| 1744 |
+
border-top-color: #fff;
|
| 1745 |
+
border-bottom-color: #dfdfdf;
|
| 1746 |
+
}
|
| 1747 |
+
|
| 1748 |
+
#minor-publishing {
|
| 1749 |
+
border-bottom-color: #dfdfdf;
|
| 1750 |
+
}
|
| 1751 |
+
|
| 1752 |
+
#post-body .misc-pub-section {
|
| 1753 |
+
border-right-color: #eee;
|
| 1754 |
+
}
|
| 1755 |
+
|
| 1756 |
+
.post-com-count span {
|
| 1757 |
+
background-color: #bbb;
|
| 1758 |
+
}
|
| 1759 |
+
|
| 1760 |
+
.form-table .color-palette td {
|
| 1761 |
+
border-color: #fff;
|
| 1762 |
+
}
|
| 1763 |
+
|
| 1764 |
+
.sortable-placeholder {
|
| 1765 |
+
border-color: #bbb;
|
| 1766 |
+
background-color: #f5f5f5;
|
| 1767 |
+
}
|
| 1768 |
+
|
| 1769 |
+
#post-body ul.category-tabs li.tabs a,
|
| 1770 |
+
#post-body ul.add-menu-item-tabs li.tabs a,
|
| 1771 |
+
body.press-this ul.category-tabs li.tabs a {
|
| 1772 |
+
color: #333;
|
| 1773 |
+
}
|
| 1774 |
+
|
| 1775 |
+
#wp_editimgbtn,
|
| 1776 |
+
#wp_delimgbtn,
|
| 1777 |
+
#wp_editgallery,
|
| 1778 |
+
#wp_delgallery {
|
| 1779 |
+
border-color: #999;
|
| 1780 |
+
background-color: #eee;
|
| 1781 |
+
}
|
| 1782 |
+
|
| 1783 |
+
#wp_editimgbtn:hover,
|
| 1784 |
+
#wp_delimgbtn:hover,
|
| 1785 |
+
#wp_editgallery:hover,
|
| 1786 |
+
#wp_delgallery:hover {
|
| 1787 |
+
border-color: #555;
|
| 1788 |
+
background-color: #ccc;
|
| 1789 |
+
}
|
| 1790 |
+
|
| 1791 |
+
#favorite-first {
|
| 1792 |
+
border-color: #c0c0c0;
|
| 1793 |
+
background: #f1f1f1; /* fallback color */
|
| 1794 |
+
background:-moz-linear-gradient(bottom, #e7e7e7, #fff);
|
| 1795 |
+
background:-webkit-gradient(linear, left bottom, left top, from(#e7e7e7), to(#fff));
|
| 1796 |
+
}
|
| 1797 |
+
|
| 1798 |
+
#favorite-inside {
|
| 1799 |
+
border-color: #c0c0c0;
|
| 1800 |
+
background-color: #fff;
|
| 1801 |
+
}
|
| 1802 |
+
|
| 1803 |
+
#favorite-toggle {
|
| 1804 |
+
background: transparent url(../../../../wp-admin/images/arrows.png) no-repeat 4px 2px;
|
| 1805 |
+
border-color: #dfdfdf;
|
| 1806 |
+
-moz-box-shadow: inset 1px 0 0 #fff;
|
| 1807 |
+
-webkit-box-shadow: inset 1px 0 0 #fff;
|
| 1808 |
+
box-shadow: inset 1px 0 0 #fff;
|
| 1809 |
+
}
|
| 1810 |
+
|
| 1811 |
+
#favorite-actions a {
|
| 1812 |
+
color: #464646;
|
| 1813 |
+
}
|
| 1814 |
+
|
| 1815 |
+
#favorite-actions a:hover {
|
| 1816 |
+
color: #000;
|
| 1817 |
+
}
|
| 1818 |
+
|
| 1819 |
+
#favorite-inside a:hover {
|
| 1820 |
+
text-decoration: underline;
|
| 1821 |
+
}
|
| 1822 |
+
|
| 1823 |
+
#screen-meta a.show-settings,
|
| 1824 |
+
.toggle-arrow {
|
| 1825 |
+
background: transparent url(../../../../wp-admin/images/arrows.png) no-repeat right 3px;
|
| 1826 |
+
}
|
| 1827 |
+
|
| 1828 |
+
#screen-meta .screen-meta-active a.show-settings {
|
| 1829 |
+
background: transparent url(../../../../wp-admin/images/arrows.png) no-repeat right -33px;
|
| 1830 |
+
}
|
| 1831 |
+
|
| 1832 |
+
.view-switch #view-switch-list {
|
| 1833 |
+
background: transparent url(../../../../wp-admin/images/list.png) no-repeat 0 0;
|
| 1834 |
+
}
|
| 1835 |
+
|
| 1836 |
+
.view-switch .current #view-switch-list {
|
| 1837 |
+
background: transparent url(../../../../wp-admin/images/list.png) no-repeat -40px 0;
|
| 1838 |
+
}
|
| 1839 |
+
|
| 1840 |
+
.view-switch #view-switch-excerpt {
|
| 1841 |
+
background: transparent url(../../../../wp-admin/images/list.png) no-repeat -20px 0;
|
| 1842 |
+
}
|
| 1843 |
+
|
| 1844 |
+
.view-switch .current #view-switch-excerpt {
|
| 1845 |
+
background: transparent url(../../../../wp-admin/images/list.png) no-repeat -60px 0;
|
| 1846 |
+
}
|
| 1847 |
+
|
| 1848 |
+
#header-logo {
|
| 1849 |
+
background: transparent url(../../../../wp-admin/images/wp-logo.png?ver=20110504) no-repeat scroll center center;
|
| 1850 |
+
}
|
| 1851 |
+
|
| 1852 |
+
.popular-tags,
|
| 1853 |
+
.feature-filter {
|
| 1854 |
+
background-color: #fff;
|
| 1855 |
+
border-color: #DFDFDF;
|
| 1856 |
+
}
|
| 1857 |
+
|
| 1858 |
+
#theme-information .action-button {
|
| 1859 |
+
border-top-color: #DFDFDF;
|
| 1860 |
+
}
|
| 1861 |
+
|
| 1862 |
+
.theme-listing br.line {
|
| 1863 |
+
border-bottom-color: #ccc;
|
| 1864 |
+
}
|
| 1865 |
+
|
| 1866 |
+
div.widgets-sortables,
|
| 1867 |
+
#widgets-left .inactive {
|
| 1868 |
+
background-color: #fcfcfc;
|
| 1869 |
+
border-color: #dfdfdf;
|
| 1870 |
+
}
|
| 1871 |
+
|
| 1872 |
+
#available-widgets .widget-holder {
|
| 1873 |
+
background-color: #fcfcfc;
|
| 1874 |
+
border-color: #dfdfdf;
|
| 1875 |
+
}
|
| 1876 |
+
|
| 1877 |
+
#available-widgets .widget-description {
|
| 1878 |
+
color: #555;
|
| 1879 |
+
}
|
| 1880 |
+
|
| 1881 |
+
.sidebar-name {
|
| 1882 |
+
color: #464646;
|
| 1883 |
+
text-shadow: #fff 0 1px 0;
|
| 1884 |
+
border-color: #dfdfdf;
|
| 1885 |
+
-moz-box-shadow: inset 0 1px 0 #fff;
|
| 1886 |
+
-webkit-box-shadow: inset 0 1px 0 #fff;
|
| 1887 |
+
box-shadow: inset 0 1px 0 #fff;
|
| 1888 |
+
}
|
| 1889 |
+
|
| 1890 |
+
.sidebar-name:hover,
|
| 1891 |
+
#removing-widget {
|
| 1892 |
+
color: #d54e21;
|
| 1893 |
+
}
|
| 1894 |
+
|
| 1895 |
+
#removing-widget span {
|
| 1896 |
+
color: black;
|
| 1897 |
+
}
|
| 1898 |
+
|
| 1899 |
+
.sidebar-name-arrow {
|
| 1900 |
+
background: transparent url(../../../../wp-admin/images/arrows.png) no-repeat 5px 9px;
|
| 1901 |
+
}
|
| 1902 |
+
|
| 1903 |
+
.sidebar-name:hover .sidebar-name-arrow {
|
| 1904 |
+
background: transparent url(../../../../wp-admin/images/arrows-dark.png) no-repeat 5px 9px;
|
| 1905 |
+
}
|
| 1906 |
+
|
| 1907 |
+
.in-widget-title {
|
| 1908 |
+
color: #606060;
|
| 1909 |
+
}
|
| 1910 |
+
|
| 1911 |
+
.deleting .widget-title * {
|
| 1912 |
+
color: #aaa;
|
| 1913 |
+
}
|
| 1914 |
+
|
| 1915 |
+
.imgedit-menu div {
|
| 1916 |
+
border-color: #d5d5d5;
|
| 1917 |
+
background-color: #f1f1f1;
|
| 1918 |
+
}
|
| 1919 |
+
|
| 1920 |
+
.imgedit-menu div:hover {
|
| 1921 |
+
border-color: #c1c1c1;
|
| 1922 |
+
background-color: #eaeaea;
|
| 1923 |
+
}
|
| 1924 |
+
|
| 1925 |
+
.imgedit-menu div.disabled {
|
| 1926 |
+
border-color: #ccc;
|
| 1927 |
+
background-color: #ddd;
|
| 1928 |
+
filter: alpha(opacity=50);
|
| 1929 |
+
opacity: 0.5;
|
| 1930 |
+
}
|
| 1931 |
+
|
| 1932 |
+
#dashboard_recent_comments div.undo {
|
| 1933 |
+
border-top-color: #dfdfdf;
|
| 1934 |
+
}
|
| 1935 |
+
|
| 1936 |
+
.comment-ays,
|
| 1937 |
+
.comment-ays th {
|
| 1938 |
+
border-color: #ddd;
|
| 1939 |
+
}
|
| 1940 |
+
|
| 1941 |
+
.comment-ays th {
|
| 1942 |
+
background-color: #f1f1f1;
|
| 1943 |
+
}
|
| 1944 |
+
|
| 1945 |
+
/* added from nav-menu.css */
|
| 1946 |
+
#menu-management .menu-edit {
|
| 1947 |
+
border-color: #dfdfdf;
|
| 1948 |
+
}
|
| 1949 |
+
|
| 1950 |
+
#post-body {
|
| 1951 |
+
background: #fff;
|
| 1952 |
+
border-top-color: #fff;
|
| 1953 |
+
border-bottom-color: #dfdfdf;
|
| 1954 |
+
}
|
| 1955 |
+
|
| 1956 |
+
#nav-menu-header {
|
| 1957 |
+
border-bottom-color: #dfdfdf;
|
| 1958 |
+
}
|
| 1959 |
+
|
| 1960 |
+
#nav-menu-footer {
|
| 1961 |
+
border-top-color: #fff;
|
| 1962 |
+
}
|
| 1963 |
+
|
| 1964 |
+
#menu-management .nav-tabs-arrow a {
|
| 1965 |
+
color: #C1C1C1;
|
| 1966 |
+
}
|
| 1967 |
+
|
| 1968 |
+
#menu-management .nav-tabs-arrow a:hover {
|
| 1969 |
+
color: #D54E21;
|
| 1970 |
+
}
|
| 1971 |
+
|
| 1972 |
+
#menu-management .nav-tabs-arrow a:active {
|
| 1973 |
+
color: #464646;
|
| 1974 |
+
}
|
| 1975 |
+
|
| 1976 |
+
#menu-management .nav-tab-active {
|
| 1977 |
+
border-color: #dfdfdf;
|
| 1978 |
+
}
|
| 1979 |
+
|
| 1980 |
+
#menu-management .nav-tab {
|
| 1981 |
+
background: #fbfbfb;
|
| 1982 |
+
border-color: #dfdfdf;
|
| 1983 |
+
}
|
| 1984 |
+
|
| 1985 |
+
.js .input-with-default-title {
|
| 1986 |
+
color: #aaa;
|
| 1987 |
+
}
|
| 1988 |
+
|
| 1989 |
+
#cancel-save {
|
| 1990 |
+
color: #ff0000;
|
| 1991 |
+
}
|
| 1992 |
+
|
| 1993 |
+
#cancel-save:hover {
|
| 1994 |
+
background-color: #FF0000;
|
| 1995 |
+
color: #fff;
|
| 1996 |
+
}
|
| 1997 |
+
|
| 1998 |
+
.list-container {
|
| 1999 |
+
border-color: #DFDFDF;
|
| 2000 |
+
}
|
| 2001 |
+
|
| 2002 |
+
.menu-item-handle {
|
| 2003 |
+
border-color: #dfdfdf;
|
| 2004 |
+
}
|
| 2005 |
+
|
| 2006 |
+
.menu li.deleting .menu-item-handle {
|
| 2007 |
+
background-color: #f66;
|
| 2008 |
+
text-shadow: #ccc;
|
| 2009 |
+
}
|
| 2010 |
+
|
| 2011 |
+
.item-type { /* Menu item controls */
|
| 2012 |
+
color: #999999;
|
| 2013 |
+
}
|
| 2014 |
+
|
| 2015 |
+
.item-controls .menu-item-delete:hover {
|
| 2016 |
+
color: #ff0000;
|
| 2017 |
+
}
|
| 2018 |
+
|
| 2019 |
+
.item-edit {
|
| 2020 |
+
background: transparent url(../../../../wp-admin/images/arrows.png) no-repeat 8px 10px;
|
| 2021 |
+
border-bottom-color: #eee;
|
| 2022 |
+
}
|
| 2023 |
+
|
| 2024 |
+
.item-edit:hover {
|
| 2025 |
+
background: transparent url(../../../../wp-admin/images/arrows-dark.png) no-repeat 8px 10px;
|
| 2026 |
+
}
|
| 2027 |
+
|
| 2028 |
+
.menu-item-settings { /* Menu editing */
|
| 2029 |
+
border-color: #dfdfdf;
|
| 2030 |
+
}
|
| 2031 |
+
|
| 2032 |
+
.link-to-original {
|
| 2033 |
+
color: #777;
|
| 2034 |
+
border-color: #dfdfdf;
|
| 2035 |
+
}
|
| 2036 |
+
|
| 2037 |
+
#cancel-save:hover {
|
| 2038 |
+
color: #fff !important;
|
| 2039 |
+
}
|
| 2040 |
+
|
| 2041 |
+
#update-menu-item {
|
| 2042 |
+
color: #fff !important;
|
| 2043 |
+
}
|
| 2044 |
+
|
| 2045 |
+
#update-menu-item:hover,
|
| 2046 |
+
#update-menu-item:active,
|
| 2047 |
+
#update-menu-item:focus {
|
| 2048 |
+
color: #eaf2fa !important;
|
| 2049 |
+
border-color: #13455b !important;
|
| 2050 |
+
}
|
| 2051 |
+
|
| 2052 |
+
.submitbox .submitcancel {
|
| 2053 |
+
color: #21759B;
|
| 2054 |
+
border-bottom-color: #21759B;
|
| 2055 |
+
}
|
| 2056 |
+
|
| 2057 |
+
.submitbox .submitcancel:hover {
|
| 2058 |
+
background: #21759B;
|
| 2059 |
+
color: #fff;
|
| 2060 |
+
}
|
| 2061 |
+
/* end added from nav-menu.css */
|
| 2062 |
+
|
| 2063 |
+
#menu-management .nav-tab-active,
|
| 2064 |
+
.menu-item-handle,
|
| 2065 |
+
.menu-item-settings {
|
| 2066 |
+
-moz-box-shadow: inset 0 1px 0 #fff;
|
| 2067 |
+
-webkit-box-shadow: inset 0 1px 0 #fff;
|
| 2068 |
+
box-shadow: inset 0 1px 0 #fff;
|
| 2069 |
+
}
|
| 2070 |
+
|
| 2071 |
+
#menu-management .nav-tab-active {
|
| 2072 |
+
background: #f9f9f9;
|
| 2073 |
+
border-bottom-color: #f9f9f9;
|
| 2074 |
+
}
|
| 2075 |
+
|
| 2076 |
+
/* custom header & background pages */
|
| 2077 |
+
#upload-form label {
|
| 2078 |
+
color: #777;
|
| 2079 |
+
}
|
| 2080 |
+
/* custom header & background pages */
|
| 2081 |
+
|
| 2082 |
+
/* full screen */
|
| 2083 |
+
.fullscreen-overlay {
|
| 2084 |
+
background: #fff;
|
| 2085 |
+
}
|
| 2086 |
+
|
| 2087 |
+
.wp-fullscreen-focus #wp-fullscreen-title,
|
| 2088 |
+
.wp-fullscreen-focus #wp-fullscreen-container {
|
| 2089 |
+
border-color: #ccc;
|
| 2090 |
+
}
|
| 2091 |
+
|
| 2092 |
+
#fullscreen-topbar {
|
| 2093 |
+
border-bottom-color: #DFDFDF;
|
| 2094 |
+
}
|
bbp-admin/styles/admin-2.css
ADDED
|
@@ -0,0 +1,2094 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/* =wp-admin area stylesheet with a bbPress twist
|
| 2 |
+
-------------------------------------------------------------- */
|
| 3 |
+
|
| 4 |
+
html,
|
| 5 |
+
.wp-dialog {
|
| 6 |
+
background-color: #fff;
|
| 7 |
+
}
|
| 8 |
+
|
| 9 |
+
* html input,
|
| 10 |
+
* html .widget {
|
| 11 |
+
border-color: #dfdfdf;
|
| 12 |
+
}
|
| 13 |
+
|
| 14 |
+
textarea,
|
| 15 |
+
input[type="text"],
|
| 16 |
+
input[type="password"],
|
| 17 |
+
input[type="file"],
|
| 18 |
+
input[type="button"],
|
| 19 |
+
input[type="submit"],
|
| 20 |
+
input[type="reset"],
|
| 21 |
+
select {
|
| 22 |
+
border-color: #dfdfdf;
|
| 23 |
+
background-color: #fff;
|
| 24 |
+
}
|
| 25 |
+
|
| 26 |
+
kbd,
|
| 27 |
+
code {
|
| 28 |
+
background: #eaeaea;
|
| 29 |
+
}
|
| 30 |
+
|
| 31 |
+
input[readonly] {
|
| 32 |
+
background-color: #eee;
|
| 33 |
+
}
|
| 34 |
+
|
| 35 |
+
.find-box-search {
|
| 36 |
+
border-color: #dfdfdf;
|
| 37 |
+
background-color: #f1f1f1;
|
| 38 |
+
}
|
| 39 |
+
|
| 40 |
+
.find-box {
|
| 41 |
+
background-color: #f1f1f1;
|
| 42 |
+
}
|
| 43 |
+
|
| 44 |
+
.find-box-inside {
|
| 45 |
+
background-color: #fff;
|
| 46 |
+
}
|
| 47 |
+
|
| 48 |
+
a.page-numbers:hover {
|
| 49 |
+
border-color: #999;
|
| 50 |
+
}
|
| 51 |
+
|
| 52 |
+
body,
|
| 53 |
+
#wpbody,
|
| 54 |
+
.form-table .pre {
|
| 55 |
+
color: #333;
|
| 56 |
+
}
|
| 57 |
+
|
| 58 |
+
body > #upload-menu {
|
| 59 |
+
border-bottom-color: #fff;
|
| 60 |
+
}
|
| 61 |
+
|
| 62 |
+
#postcustomstuff table,
|
| 63 |
+
#your-profile fieldset,
|
| 64 |
+
#rightnow,
|
| 65 |
+
div.dashboard-widget,
|
| 66 |
+
#dashboard-widgets p.dashboard-widget-links,
|
| 67 |
+
#replyrow #ed_reply_toolbar input {
|
| 68 |
+
border-color: #ccc;
|
| 69 |
+
}
|
| 70 |
+
|
| 71 |
+
#poststuff .inside label.spam,
|
| 72 |
+
#poststuff .inside label.deleted {
|
| 73 |
+
color: red;
|
| 74 |
+
}
|
| 75 |
+
|
| 76 |
+
#poststuff .inside label.waiting {
|
| 77 |
+
color: orange;
|
| 78 |
+
}
|
| 79 |
+
|
| 80 |
+
#poststuff .inside label.approved {
|
| 81 |
+
color: green;
|
| 82 |
+
}
|
| 83 |
+
|
| 84 |
+
#postcustomstuff table {
|
| 85 |
+
border-color: #dfdfdf;
|
| 86 |
+
background-color: #F9F9F9;
|
| 87 |
+
}
|
| 88 |
+
|
| 89 |
+
#postcustomstuff thead th {
|
| 90 |
+
background-color: #F1F1F1;
|
| 91 |
+
}
|
| 92 |
+
|
| 93 |
+
#postcustomstuff table input,
|
| 94 |
+
#postcustomstuff table textarea {
|
| 95 |
+
border-color: #dfdfdf;
|
| 96 |
+
background-color: #fff;
|
| 97 |
+
}
|
| 98 |
+
|
| 99 |
+
.widefat {
|
| 100 |
+
border-color: #dfdfdf;
|
| 101 |
+
background-color: #f9f9f9;
|
| 102 |
+
}
|
| 103 |
+
|
| 104 |
+
div.dashboard-widget-error {
|
| 105 |
+
background-color: #c43;
|
| 106 |
+
}
|
| 107 |
+
|
| 108 |
+
div.dashboard-widget-notice {
|
| 109 |
+
background-color: #cfe1ef;
|
| 110 |
+
}
|
| 111 |
+
|
| 112 |
+
div.dashboard-widget-submit {
|
| 113 |
+
border-top-color: #ccc;
|
| 114 |
+
}
|
| 115 |
+
|
| 116 |
+
div.tabs-panel,
|
| 117 |
+
.wp-tab-panel,
|
| 118 |
+
ul.category-tabs li.tabs,
|
| 119 |
+
ul.add-menu-item-tabs li.tabs,
|
| 120 |
+
.wp-tab-active {
|
| 121 |
+
border-color: #dfdfdf;
|
| 122 |
+
background-color: #fff;
|
| 123 |
+
}
|
| 124 |
+
|
| 125 |
+
ul.category-tabs li.tabs,
|
| 126 |
+
ul.add-menu-item-tabs li.tabs,
|
| 127 |
+
.wp-tab-active {
|
| 128 |
+
background-color: #fff;
|
| 129 |
+
}
|
| 130 |
+
|
| 131 |
+
input.disabled,
|
| 132 |
+
textarea.disabled {
|
| 133 |
+
background-color: #ccc;
|
| 134 |
+
}
|
| 135 |
+
/* #upload-menu li a.upload-tab-link, */
|
| 136 |
+
#plugin-information .action-button a,
|
| 137 |
+
#plugin-information .action-button a:hover,
|
| 138 |
+
#plugin-information .action-button a:visited {
|
| 139 |
+
color: #fff;
|
| 140 |
+
}
|
| 141 |
+
|
| 142 |
+
.widget .widget-top,
|
| 143 |
+
.postbox h3,
|
| 144 |
+
.stuffbox h3,
|
| 145 |
+
.widefat thead tr th,
|
| 146 |
+
.widefat tfoot tr th,
|
| 147 |
+
h3.dashboard-widget-title,
|
| 148 |
+
h3.dashboard-widget-title span,
|
| 149 |
+
h3.dashboard-widget-title small,
|
| 150 |
+
.find-box-head,
|
| 151 |
+
.sidebar-name,
|
| 152 |
+
#nav-menu-header,
|
| 153 |
+
#nav-menu-footer,
|
| 154 |
+
.menu-item-handle,
|
| 155 |
+
#fullscreen-topbar {
|
| 156 |
+
background-color: #f1f1f1; /* Fallback */
|
| 157 |
+
background-image: -ms-linear-gradient(top, #eefcf1, #deece1); /* IE10 */
|
| 158 |
+
background-image: -moz-linear-gradient(top, #eefcf1, #deece1); /* Firefox */
|
| 159 |
+
background-image: -o-linear-gradient(top, #eefcf1, #deece1); /* Opera */
|
| 160 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#eefcf1), to(#deece1)); /* old Webkit */
|
| 161 |
+
background-image: -webkit-linear-gradient(top, #eefcf1, #deece1); /* new Webkit */
|
| 162 |
+
background-image: linear-gradient(top, #eefcf1, #deece1); /* proposed W3C Markup */
|
| 163 |
+
}
|
| 164 |
+
|
| 165 |
+
.widget .widget-top,
|
| 166 |
+
.postbox h3,
|
| 167 |
+
.stuffbox h3 {
|
| 168 |
+
border-bottom-color: #dfdfdf;
|
| 169 |
+
text-shadow: #fff 0 1px 0;
|
| 170 |
+
-moz-box-shadow: 0 1px 0 #fff;
|
| 171 |
+
-webkit-box-shadow: 0 1px 0 #fff;
|
| 172 |
+
box-shadow: 0 1px 0 #fff;
|
| 173 |
+
}
|
| 174 |
+
|
| 175 |
+
.form-table th,
|
| 176 |
+
.form-wrap label {
|
| 177 |
+
color: #222;
|
| 178 |
+
text-shadow: #fff 0 1px 0;
|
| 179 |
+
}
|
| 180 |
+
|
| 181 |
+
.description,
|
| 182 |
+
.form-wrap p {
|
| 183 |
+
color: #666;
|
| 184 |
+
}
|
| 185 |
+
|
| 186 |
+
strong .post-com-count span {
|
| 187 |
+
background-color: #21759b;
|
| 188 |
+
}
|
| 189 |
+
|
| 190 |
+
.sorthelper {
|
| 191 |
+
background-color: #ccf3fa;
|
| 192 |
+
}
|
| 193 |
+
|
| 194 |
+
.ac_match,
|
| 195 |
+
.subsubsub a.current {
|
| 196 |
+
color: #000;
|
| 197 |
+
}
|
| 198 |
+
|
| 199 |
+
.wrap h2 {
|
| 200 |
+
color: #464646;
|
| 201 |
+
}
|
| 202 |
+
|
| 203 |
+
.wrap .add-new-h2 {
|
| 204 |
+
background: #f1f1f1;
|
| 205 |
+
}
|
| 206 |
+
|
| 207 |
+
.subtitle {
|
| 208 |
+
color: #777;
|
| 209 |
+
}
|
| 210 |
+
|
| 211 |
+
.ac_over {
|
| 212 |
+
background-color: #f0f0b8;
|
| 213 |
+
}
|
| 214 |
+
|
| 215 |
+
.ac_results {
|
| 216 |
+
background-color: #fff;
|
| 217 |
+
border-color: #808080;
|
| 218 |
+
}
|
| 219 |
+
|
| 220 |
+
.ac_results li {
|
| 221 |
+
color: #101010;
|
| 222 |
+
}
|
| 223 |
+
|
| 224 |
+
.alternate,
|
| 225 |
+
.alt {
|
| 226 |
+
background-color: #fcfcfc;
|
| 227 |
+
}
|
| 228 |
+
|
| 229 |
+
.available-theme a.screenshot {
|
| 230 |
+
background-color: #f1f1f1;
|
| 231 |
+
border-color: #ddd;
|
| 232 |
+
}
|
| 233 |
+
|
| 234 |
+
.bar {
|
| 235 |
+
background-color: #e8e8e8;
|
| 236 |
+
border-right-color: #99d;
|
| 237 |
+
}
|
| 238 |
+
|
| 239 |
+
#media-upload,
|
| 240 |
+
#media-upload .media-item .slidetoggle {
|
| 241 |
+
background: #fff;
|
| 242 |
+
}
|
| 243 |
+
|
| 244 |
+
#media-upload .slidetoggle {
|
| 245 |
+
border-top-color: #dfdfdf;
|
| 246 |
+
}
|
| 247 |
+
|
| 248 |
+
div.error,
|
| 249 |
+
.login #login_error {
|
| 250 |
+
background-color: #ffebe8;
|
| 251 |
+
border-color: #c00;
|
| 252 |
+
}
|
| 253 |
+
|
| 254 |
+
div.error a {
|
| 255 |
+
color: #c00;
|
| 256 |
+
}
|
| 257 |
+
|
| 258 |
+
.form-invalid {
|
| 259 |
+
background-color: #ffebe8 !important;
|
| 260 |
+
}
|
| 261 |
+
|
| 262 |
+
.form-invalid input,
|
| 263 |
+
.form-invalid select {
|
| 264 |
+
border-color: #c00 !important;
|
| 265 |
+
}
|
| 266 |
+
|
| 267 |
+
.submit {
|
| 268 |
+
border-color: #DFDFDF;
|
| 269 |
+
}
|
| 270 |
+
|
| 271 |
+
.highlight {
|
| 272 |
+
background-color: #e4f2fd;
|
| 273 |
+
color: #000;
|
| 274 |
+
}
|
| 275 |
+
|
| 276 |
+
.howto,
|
| 277 |
+
.nonessential,
|
| 278 |
+
#edit-slug-box,
|
| 279 |
+
.form-input-tip,
|
| 280 |
+
.subsubsub {
|
| 281 |
+
color: #666;
|
| 282 |
+
}
|
| 283 |
+
|
| 284 |
+
.media-item {
|
| 285 |
+
border-bottom-color: #dfdfdf;
|
| 286 |
+
}
|
| 287 |
+
|
| 288 |
+
#wpbody-content #media-items .describe {
|
| 289 |
+
border-top-color: #dfdfdf;
|
| 290 |
+
}
|
| 291 |
+
|
| 292 |
+
.media-upload-form label.form-help,
|
| 293 |
+
td.help {
|
| 294 |
+
color: #9a9a9a;
|
| 295 |
+
}
|
| 296 |
+
|
| 297 |
+
.post-com-count {
|
| 298 |
+
background-image: url(../../../wp-admin/images/bubble_bg.gif);
|
| 299 |
+
color: #fff;
|
| 300 |
+
}
|
| 301 |
+
|
| 302 |
+
.post-com-count span {
|
| 303 |
+
background-color: #bbb;
|
| 304 |
+
color: #fff;
|
| 305 |
+
}
|
| 306 |
+
|
| 307 |
+
.post-com-count:hover span {
|
| 308 |
+
background-color: #d54e21;
|
| 309 |
+
}
|
| 310 |
+
|
| 311 |
+
.quicktags, .search {
|
| 312 |
+
background-color: #ccc;
|
| 313 |
+
color: #000;
|
| 314 |
+
}
|
| 315 |
+
|
| 316 |
+
.side-info h5 {
|
| 317 |
+
border-bottom-color: #dadada;
|
| 318 |
+
}
|
| 319 |
+
|
| 320 |
+
.side-info ul {
|
| 321 |
+
color: #666;
|
| 322 |
+
}
|
| 323 |
+
|
| 324 |
+
.button,
|
| 325 |
+
.button-secondary,
|
| 326 |
+
.submit input,
|
| 327 |
+
input[type=button],
|
| 328 |
+
input[type=submit] {
|
| 329 |
+
border-color: #bbb;
|
| 330 |
+
color: #464646;
|
| 331 |
+
}
|
| 332 |
+
|
| 333 |
+
.button:hover,
|
| 334 |
+
.button-secondary:hover,
|
| 335 |
+
.submit input:hover,
|
| 336 |
+
input[type=button]:hover,
|
| 337 |
+
input[type=submit]:hover {
|
| 338 |
+
color: #000;
|
| 339 |
+
border-color: #666;
|
| 340 |
+
}
|
| 341 |
+
|
| 342 |
+
.button,
|
| 343 |
+
.submit input,
|
| 344 |
+
.button-secondary {
|
| 345 |
+
background: #f2f2f2 url(../../../wp-admin/images/white-grad.png) repeat-x scroll left top;
|
| 346 |
+
text-shadow: rgba(255,255,255,1) 0 1px 0;
|
| 347 |
+
}
|
| 348 |
+
|
| 349 |
+
.button:active,
|
| 350 |
+
.submit input:active,
|
| 351 |
+
.button-secondary:active {
|
| 352 |
+
background: #eee url(../../../wp-admin/images/white-grad-active.png) repeat-x scroll left top;
|
| 353 |
+
}
|
| 354 |
+
|
| 355 |
+
input.button-primary,
|
| 356 |
+
button.button-primary,
|
| 357 |
+
a.button-primary {
|
| 358 |
+
border-color: #555;
|
| 359 |
+
font-weight: bold;
|
| 360 |
+
color: #fff;
|
| 361 |
+
background: #060 url(../images/button-grad.png) repeat-x scroll left top;
|
| 362 |
+
text-shadow: rgba(0,0,0,0.3) 0 -1px 0;
|
| 363 |
+
}
|
| 364 |
+
|
| 365 |
+
input.button-primary:active,
|
| 366 |
+
button.button-primary:active,
|
| 367 |
+
a.button-primary:active {
|
| 368 |
+
background: #060 url(../images/button-grad.png) repeat-x scroll left bottom;
|
| 369 |
+
color: #cae8be;
|
| 370 |
+
}
|
| 371 |
+
|
| 372 |
+
input.button-primary:hover,
|
| 373 |
+
button.button-primary:hover,
|
| 374 |
+
a.button-primary:hover,
|
| 375 |
+
a.button-primary:focus,
|
| 376 |
+
a.button-primary:active {
|
| 377 |
+
border-color: #13455b;
|
| 378 |
+
color: #eaf2fa;
|
| 379 |
+
}
|
| 380 |
+
|
| 381 |
+
.button-disabled,
|
| 382 |
+
.button[disabled],
|
| 383 |
+
.button:disabled,
|
| 384 |
+
.button-secondary[disabled],
|
| 385 |
+
.button-secondary:disabled,
|
| 386 |
+
a.button.disabled {
|
| 387 |
+
color: #aaa !important;
|
| 388 |
+
border-color: #555 !important;
|
| 389 |
+
}
|
| 390 |
+
|
| 391 |
+
.button-primary-disabled,
|
| 392 |
+
.button-primary[disabled],
|
| 393 |
+
.button-primary:disabled {
|
| 394 |
+
color: #9FD0D5 !important;
|
| 395 |
+
background: #298CBA !important;
|
| 396 |
+
}
|
| 397 |
+
|
| 398 |
+
a:hover,
|
| 399 |
+
a:active,
|
| 400 |
+
a:focus {
|
| 401 |
+
color: #d54e21;
|
| 402 |
+
}
|
| 403 |
+
|
| 404 |
+
#wphead #viewsite a:hover,
|
| 405 |
+
#adminmenu a:hover,
|
| 406 |
+
#adminmenu ul.wp-submenu a:hover,
|
| 407 |
+
#the-comment-list .comment a:hover,
|
| 408 |
+
#rightnow a:hover,
|
| 409 |
+
#media-upload a.del-link:hover,
|
| 410 |
+
div.dashboard-widget-submit input:hover,
|
| 411 |
+
.subsubsub a:hover,
|
| 412 |
+
.subsubsub a.current:hover,
|
| 413 |
+
.ui-tabs-nav a:hover,
|
| 414 |
+
.plugins .inactive a:hover,
|
| 415 |
+
#all-plugins-table .plugins .inactive a:hover,
|
| 416 |
+
#search-plugins-table .plugins .inactive a:hover {
|
| 417 |
+
color: #d54e21;
|
| 418 |
+
}
|
| 419 |
+
|
| 420 |
+
#the-comment-list .comment-item,
|
| 421 |
+
#dashboard-widgets #dashboard_quick_press form p.submit {
|
| 422 |
+
border-color: #dfdfdf;
|
| 423 |
+
}
|
| 424 |
+
|
| 425 |
+
#side-sortables .category-tabs .tabs a,
|
| 426 |
+
#side-sortables .add-menu-item-tabs .tabs a,
|
| 427 |
+
.wp-tab-bar .wp-tab-active a {
|
| 428 |
+
color: #333;
|
| 429 |
+
}
|
| 430 |
+
|
| 431 |
+
#rightnow .rbutton {
|
| 432 |
+
background-color: #ebebeb;
|
| 433 |
+
color: #264761;
|
| 434 |
+
}
|
| 435 |
+
|
| 436 |
+
.submitbox .submit {
|
| 437 |
+
background-color: #464646;
|
| 438 |
+
color: #ccc;
|
| 439 |
+
}
|
| 440 |
+
|
| 441 |
+
.plugins a.delete:hover,
|
| 442 |
+
#all-plugins-table .plugins a.delete:hover,
|
| 443 |
+
#search-plugins-table .plugins a.delete:hover,
|
| 444 |
+
.submitbox .submitdelete {
|
| 445 |
+
color: #f00;
|
| 446 |
+
border-bottom-color: #f00;
|
| 447 |
+
}
|
| 448 |
+
|
| 449 |
+
.submitbox .submitdelete:hover,
|
| 450 |
+
#media-items a.delete:hover {
|
| 451 |
+
color: #fff;
|
| 452 |
+
background-color: #f00;
|
| 453 |
+
border-bottom-color: #f00;
|
| 454 |
+
}
|
| 455 |
+
|
| 456 |
+
#normal-sortables .submitbox .submitdelete:hover {
|
| 457 |
+
color: #000;
|
| 458 |
+
background-color: #f00;
|
| 459 |
+
border-bottom-color: #f00;
|
| 460 |
+
}
|
| 461 |
+
|
| 462 |
+
.tablenav .dots {
|
| 463 |
+
border-color: transparent;
|
| 464 |
+
}
|
| 465 |
+
|
| 466 |
+
.tablenav .next,
|
| 467 |
+
.tablenav .prev {
|
| 468 |
+
border-color: transparent;
|
| 469 |
+
color: #21759b;
|
| 470 |
+
}
|
| 471 |
+
|
| 472 |
+
.tablenav .next:hover,
|
| 473 |
+
.tablenav .prev:hover {
|
| 474 |
+
border-color: transparent;
|
| 475 |
+
color: #d54e21;
|
| 476 |
+
}
|
| 477 |
+
|
| 478 |
+
div.updated,
|
| 479 |
+
.login .message {
|
| 480 |
+
background-color: #ffffe0;
|
| 481 |
+
border-color: #e6db55;
|
| 482 |
+
}
|
| 483 |
+
|
| 484 |
+
.update-message {
|
| 485 |
+
color: #000;
|
| 486 |
+
}
|
| 487 |
+
|
| 488 |
+
a.page-numbers {
|
| 489 |
+
border-bottom-color: #B8D3E2;
|
| 490 |
+
}
|
| 491 |
+
|
| 492 |
+
.commentlist li {
|
| 493 |
+
border-bottom-color: #ccc;
|
| 494 |
+
}
|
| 495 |
+
|
| 496 |
+
.widefat td,
|
| 497 |
+
.widefat th {
|
| 498 |
+
border-top-color: #fff;
|
| 499 |
+
border-bottom-color: #dfdfdf;
|
| 500 |
+
}
|
| 501 |
+
|
| 502 |
+
.widefat th {
|
| 503 |
+
text-shadow: rgba(255,255,255,0.8) 0 1px 0;
|
| 504 |
+
}
|
| 505 |
+
|
| 506 |
+
.widefat td {
|
| 507 |
+
color: #555;
|
| 508 |
+
}
|
| 509 |
+
.widefat p,
|
| 510 |
+
.widefat ol,
|
| 511 |
+
.widefat ul {
|
| 512 |
+
color: #333;
|
| 513 |
+
}
|
| 514 |
+
|
| 515 |
+
.widefat thead tr th,
|
| 516 |
+
.widefat tfoot tr th,
|
| 517 |
+
h3.dashboard-widget-title,
|
| 518 |
+
h3.dashboard-widget-title span,
|
| 519 |
+
h3.dashboard-widget-title small,
|
| 520 |
+
.find-box-head {
|
| 521 |
+
color: #333;
|
| 522 |
+
}
|
| 523 |
+
|
| 524 |
+
th.sortable a:hover, th.sortable a:active, th.sortable a:focus {
|
| 525 |
+
color: #333;
|
| 526 |
+
}
|
| 527 |
+
|
| 528 |
+
h3.dashboard-widget-title small a {
|
| 529 |
+
color: #d7d7d7;
|
| 530 |
+
}
|
| 531 |
+
|
| 532 |
+
h3.dashboard-widget-title small a:hover {
|
| 533 |
+
color: #fff;
|
| 534 |
+
}
|
| 535 |
+
|
| 536 |
+
a,
|
| 537 |
+
#adminmenu a,
|
| 538 |
+
#poststuff #edButtonPreview,
|
| 539 |
+
#poststuff #edButtonHTML,
|
| 540 |
+
#the-comment-list p.comment-author strong a,
|
| 541 |
+
#media-upload a.del-link,
|
| 542 |
+
#media-items a.delete,
|
| 543 |
+
.plugins a.delete,
|
| 544 |
+
.ui-tabs-nav a {
|
| 545 |
+
color: #007700;
|
| 546 |
+
}
|
| 547 |
+
|
| 548 |
+
#adminmenu .awaiting-mod,
|
| 549 |
+
#adminmenu .update-plugins,
|
| 550 |
+
#sidemenu a .update-plugins,
|
| 551 |
+
#rightnow .reallynow {
|
| 552 |
+
background-color: #464646;
|
| 553 |
+
color: #fff;
|
| 554 |
+
-moz-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 555 |
+
-khtml-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 556 |
+
-webkit-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 557 |
+
box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 558 |
+
}
|
| 559 |
+
#plugin-information .action-button {
|
| 560 |
+
background-color: #d54e21;
|
| 561 |
+
color: #fff;
|
| 562 |
+
}
|
| 563 |
+
|
| 564 |
+
#adminmenu li.current a .awaiting-mod,
|
| 565 |
+
#adminmenu li a.wp-has-current-submenu .update-plugins{
|
| 566 |
+
background-color: #464646;
|
| 567 |
+
color: #fff;
|
| 568 |
+
-moz-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 569 |
+
-khtml-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 570 |
+
-webkit-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 571 |
+
box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 572 |
+
}
|
| 573 |
+
|
| 574 |
+
div#media-upload-header,
|
| 575 |
+
div#plugin-information-header {
|
| 576 |
+
background-color: #f9f9f9;
|
| 577 |
+
border-bottom-color: #dfdfdf;
|
| 578 |
+
}
|
| 579 |
+
|
| 580 |
+
#currenttheme img {
|
| 581 |
+
border-color: #666;
|
| 582 |
+
}
|
| 583 |
+
|
| 584 |
+
#dashboard_secondary div.dashboard-widget-content ul li a {
|
| 585 |
+
background-color: #f9f9f9;
|
| 586 |
+
}
|
| 587 |
+
|
| 588 |
+
input.readonly, textarea.readonly {
|
| 589 |
+
background-color: #ddd;
|
| 590 |
+
}
|
| 591 |
+
|
| 592 |
+
#ed_toolbar input,
|
| 593 |
+
#ed_reply_toolbar input {
|
| 594 |
+
background: #fff url("../../../wp-admin/images/fade-butt.png") repeat-x 0 -2px;
|
| 595 |
+
}
|
| 596 |
+
|
| 597 |
+
#editable-post-name {
|
| 598 |
+
background-color: #fffbcc;
|
| 599 |
+
}
|
| 600 |
+
|
| 601 |
+
#edit-slug-box strong,
|
| 602 |
+
.tablenav .displaying-num,
|
| 603 |
+
#submitted-on,
|
| 604 |
+
.submitted-on {
|
| 605 |
+
color: #777;
|
| 606 |
+
}
|
| 607 |
+
|
| 608 |
+
.login #nav a,
|
| 609 |
+
.login #backtoblog a {
|
| 610 |
+
color: #21759b !important;
|
| 611 |
+
}
|
| 612 |
+
|
| 613 |
+
.login #nav a:hover,
|
| 614 |
+
.login #backtoblog a:hover {
|
| 615 |
+
color: #d54e21 !important;
|
| 616 |
+
}
|
| 617 |
+
|
| 618 |
+
#footer {
|
| 619 |
+
color: #777;
|
| 620 |
+
border-color: #dfdfdf;
|
| 621 |
+
}
|
| 622 |
+
|
| 623 |
+
#media-items,
|
| 624 |
+
.imgedit-group {
|
| 625 |
+
border-color: #dfdfdf;
|
| 626 |
+
}
|
| 627 |
+
|
| 628 |
+
.checkbox,
|
| 629 |
+
.side-info,
|
| 630 |
+
.plugins tr,
|
| 631 |
+
#your-profile #rich_editing {
|
| 632 |
+
background-color: #fcfcfc;
|
| 633 |
+
}
|
| 634 |
+
|
| 635 |
+
.plugins .inactive,
|
| 636 |
+
.plugins .inactive th,
|
| 637 |
+
.plugins .inactive td,
|
| 638 |
+
tr.inactive + tr.plugin-update-tr .plugin-update {
|
| 639 |
+
background-color: #f4f4f4;
|
| 640 |
+
}
|
| 641 |
+
|
| 642 |
+
.plugin-update-tr .update-message {
|
| 643 |
+
background-color: #fffbe4;
|
| 644 |
+
border-color: #dfdfdf;
|
| 645 |
+
}
|
| 646 |
+
|
| 647 |
+
.plugins .active,
|
| 648 |
+
.plugins .active th,
|
| 649 |
+
.plugins .active td {
|
| 650 |
+
color: #000;
|
| 651 |
+
}
|
| 652 |
+
|
| 653 |
+
.plugins .inactive a {
|
| 654 |
+
color: #557799;
|
| 655 |
+
}
|
| 656 |
+
|
| 657 |
+
#the-comment-list tr.undo,
|
| 658 |
+
#the-comment-list div.undo {
|
| 659 |
+
background-color: #f4f4f4;
|
| 660 |
+
}
|
| 661 |
+
|
| 662 |
+
#the-comment-list .unapproved {
|
| 663 |
+
background-color: #ffffe0;
|
| 664 |
+
}
|
| 665 |
+
|
| 666 |
+
#the-comment-list .approve a {
|
| 667 |
+
color: #006505;
|
| 668 |
+
}
|
| 669 |
+
|
| 670 |
+
#the-comment-list .unapprove a {
|
| 671 |
+
color: #d98500;
|
| 672 |
+
}
|
| 673 |
+
|
| 674 |
+
table.widefat span.delete a,
|
| 675 |
+
table.widefat span.trash a,
|
| 676 |
+
table.widefat span.spam a,
|
| 677 |
+
#dashboard_recent_comments .delete a,
|
| 678 |
+
#dashboard_recent_comments .trash a,
|
| 679 |
+
#dashboard_recent_comments .spam a {
|
| 680 |
+
color: #bc0b0b;
|
| 681 |
+
}
|
| 682 |
+
|
| 683 |
+
.widget,
|
| 684 |
+
#widget-list .widget-top,
|
| 685 |
+
.postbox,
|
| 686 |
+
#titlediv,
|
| 687 |
+
#poststuff .postarea,
|
| 688 |
+
.stuffbox {
|
| 689 |
+
border-color: #dfdfdf;
|
| 690 |
+
-moz-box-shadow: inset 0 1px 0 #fff;
|
| 691 |
+
-webkit-box-shadow: inset 0 1px 0 #fff;
|
| 692 |
+
box-shadow: inset 0 1px 0 #fff;
|
| 693 |
+
-moz-border-radius: 3px;
|
| 694 |
+
-khtml-border-radius: 3px;
|
| 695 |
+
-webkit-border-radius: 3px;
|
| 696 |
+
border-radius: 3px;
|
| 697 |
+
}
|
| 698 |
+
|
| 699 |
+
.widget,
|
| 700 |
+
#widget-list .widget-top,
|
| 701 |
+
.postbox,
|
| 702 |
+
.menu-item-settings {
|
| 703 |
+
background-color: #deece1; /* Fallback */
|
| 704 |
+
background-image: -ms-linear-gradient(top, #eefcf1, #eefcf1); /* IE10 */
|
| 705 |
+
background-image: -moz-linear-gradient(top, #deece1, #eefcf1); /* Firefox */
|
| 706 |
+
background-image: -o-linear-gradient(top, #deece1, #eefcf1); /* Opera */
|
| 707 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#deece1), to(#eefcf1)); /* old Webkit */
|
| 708 |
+
background-image: -webkit-linear-gradient(top, #deece1, #eefcf1); /* new Webkit */
|
| 709 |
+
background-image: linear-gradient(top, #deece1, #eefcf1); /* proposed W3C Markup */
|
| 710 |
+
}
|
| 711 |
+
|
| 712 |
+
.postbox h3 {
|
| 713 |
+
color: #464646;
|
| 714 |
+
}
|
| 715 |
+
|
| 716 |
+
.widget .widget-top {
|
| 717 |
+
color: #222;
|
| 718 |
+
}
|
| 719 |
+
|
| 720 |
+
.sidebar-name:hover h3,
|
| 721 |
+
.postbox h3:hover {
|
| 722 |
+
color: #000;
|
| 723 |
+
}
|
| 724 |
+
|
| 725 |
+
.curtime #timestamp {
|
| 726 |
+
background-image: url(../../../wp-admin/images/date-button.gif);
|
| 727 |
+
}
|
| 728 |
+
|
| 729 |
+
#quicktags #ed_link {
|
| 730 |
+
color: #00f;
|
| 731 |
+
}
|
| 732 |
+
|
| 733 |
+
#rightnow .youhave {
|
| 734 |
+
background-color: #f0f6fb;
|
| 735 |
+
}
|
| 736 |
+
|
| 737 |
+
#rightnow a {
|
| 738 |
+
color: #448abd;
|
| 739 |
+
}
|
| 740 |
+
|
| 741 |
+
.tagchecklist span a,
|
| 742 |
+
#bulk-titles div a {
|
| 743 |
+
background: url(../../../wp-admin/images/xit.gif) no-repeat;
|
| 744 |
+
}
|
| 745 |
+
|
| 746 |
+
.tagchecklist span a:hover,
|
| 747 |
+
#bulk-titles div a:hover {
|
| 748 |
+
background: url(../../../wp-admin/images/xit.gif) no-repeat -10px 0;
|
| 749 |
+
}
|
| 750 |
+
|
| 751 |
+
#update-nag, .update-nag {
|
| 752 |
+
background-color: #FFFBCC;
|
| 753 |
+
border-color: #E6DB55;
|
| 754 |
+
color: #555;
|
| 755 |
+
}
|
| 756 |
+
|
| 757 |
+
.login #backtoblog a {
|
| 758 |
+
color: #464646;
|
| 759 |
+
}
|
| 760 |
+
|
| 761 |
+
#wphead {
|
| 762 |
+
border-bottom:#dfdfdf 1px solid;
|
| 763 |
+
}
|
| 764 |
+
|
| 765 |
+
#wphead h1 a {
|
| 766 |
+
color: #464646;
|
| 767 |
+
}
|
| 768 |
+
|
| 769 |
+
#user_info {
|
| 770 |
+
color: #555;
|
| 771 |
+
}
|
| 772 |
+
|
| 773 |
+
#user_info:hover,
|
| 774 |
+
#user_info.active {
|
| 775 |
+
color: #222;
|
| 776 |
+
}
|
| 777 |
+
|
| 778 |
+
#user_info.active {
|
| 779 |
+
background-color: #f1f1f1; /* Fallback */
|
| 780 |
+
background-image: -ms-linear-gradient(bottom, #e9e9e9, #f9f9f9); /* IE10 */
|
| 781 |
+
background-image: -moz-linear-gradient(bottom, #e9e9e9, #f9f9f9); /* Firefox */
|
| 782 |
+
background-image: -o-linear-gradient(bottom, #e9e9e9, #f9f9f9); /* Opera */
|
| 783 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#e9e9e9), to(#f9f9f9)); /* old Webkit */
|
| 784 |
+
background-image: -webkit-linear-gradient(bottom, #e9e9e9, #f9f9f9); /* new Webkit */
|
| 785 |
+
background-image: linear-gradient(bottom, #e9e9e9, #f9f9f9); /* proposed W3C Markup */
|
| 786 |
+
border-color: #aaa #aaa #dfdfdf;
|
| 787 |
+
}
|
| 788 |
+
|
| 789 |
+
#user_info_arrow {
|
| 790 |
+
background: transparent url(../../../wp-admin/images/arrows.png) no-repeat 6px 5px;
|
| 791 |
+
}
|
| 792 |
+
|
| 793 |
+
#user_info:hover #user_info_arrow,
|
| 794 |
+
#user_info.active #user_info_arrow {
|
| 795 |
+
background: transparent url(../../../wp-admin/images/arrows-dark.png) no-repeat 6px 5px;
|
| 796 |
+
}
|
| 797 |
+
|
| 798 |
+
#user_info_links {
|
| 799 |
+
-moz-box-shadow: 0 3px 2px -2px rgba( 0, 0, 0, 0.2 );
|
| 800 |
+
-webkit-box-shadow: 0 3px 2px -2px rgba( 0, 0, 0, 0.2 );
|
| 801 |
+
box-shadow: 0 3px 2px -2px rgba( 0, 0, 0, 0.2 );
|
| 802 |
+
}
|
| 803 |
+
|
| 804 |
+
#user_info_links ul {
|
| 805 |
+
background: #f1f1f1;
|
| 806 |
+
border-color: #ccc #aaa #aaa;
|
| 807 |
+
-moz-box-shadow: inset 0 1px 0 #f9f9f9;
|
| 808 |
+
-webkit-box-shadow: inset 0 1px 0 #f9f9f9;
|
| 809 |
+
box-shadow: inset 0 1px 0 #f9f9f9;
|
| 810 |
+
}
|
| 811 |
+
|
| 812 |
+
#user_info_links li:hover {
|
| 813 |
+
background-color: #dfdfdf;
|
| 814 |
+
}
|
| 815 |
+
|
| 816 |
+
#user_info_links li:hover a,
|
| 817 |
+
#user_info_links li a:hover {
|
| 818 |
+
text-decoration: none;
|
| 819 |
+
}
|
| 820 |
+
|
| 821 |
+
#user_info a:link,
|
| 822 |
+
#user_info a:visited,
|
| 823 |
+
#footer a:link,
|
| 824 |
+
#footer a:visited {
|
| 825 |
+
text-decoration: none;
|
| 826 |
+
}
|
| 827 |
+
|
| 828 |
+
#footer a:hover {
|
| 829 |
+
color: #000;
|
| 830 |
+
text-decoration: underline;
|
| 831 |
+
}
|
| 832 |
+
|
| 833 |
+
div#media-upload-error,
|
| 834 |
+
.file-error,
|
| 835 |
+
abbr.required,
|
| 836 |
+
.widget-control-remove:hover,
|
| 837 |
+
table.widefat .delete a:hover,
|
| 838 |
+
table.widefat .trash a:hover,
|
| 839 |
+
table.widefat .spam a:hover,
|
| 840 |
+
#dashboard_recent_comments .delete a:hover,
|
| 841 |
+
#dashboard_recent_comments .trash a:hover
|
| 842 |
+
#dashboard_recent_comments .spam a:hover {
|
| 843 |
+
color: #f00;
|
| 844 |
+
}
|
| 845 |
+
|
| 846 |
+
#pass-strength-result {
|
| 847 |
+
background-color: #eee;
|
| 848 |
+
border-color: #ddd !important;
|
| 849 |
+
}
|
| 850 |
+
|
| 851 |
+
#pass-strength-result.bad {
|
| 852 |
+
background-color: #ffb78c;
|
| 853 |
+
border-color: #ff853c !important;
|
| 854 |
+
}
|
| 855 |
+
|
| 856 |
+
#pass-strength-result.good {
|
| 857 |
+
background-color: #ffec8b;
|
| 858 |
+
border-color: #fc0 !important;
|
| 859 |
+
}
|
| 860 |
+
|
| 861 |
+
#pass-strength-result.short {
|
| 862 |
+
background-color: #ffa0a0;
|
| 863 |
+
border-color: #f04040 !important;
|
| 864 |
+
}
|
| 865 |
+
|
| 866 |
+
#pass-strength-result.strong {
|
| 867 |
+
background-color: #c3ff88;
|
| 868 |
+
border-color: #8dff1c !important;
|
| 869 |
+
}
|
| 870 |
+
|
| 871 |
+
/* editors */
|
| 872 |
+
#quicktags {
|
| 873 |
+
border-color: #ccc;
|
| 874 |
+
background-color: #dfdfdf;
|
| 875 |
+
background-image: url("../../../wp-admin/images/ed-bg.gif");
|
| 876 |
+
}
|
| 877 |
+
|
| 878 |
+
#ed_toolbar input {
|
| 879 |
+
border-color: #C3C3C3;
|
| 880 |
+
}
|
| 881 |
+
|
| 882 |
+
#ed_toolbar input:hover {
|
| 883 |
+
border-color: #aaa;
|
| 884 |
+
background: #ddd;
|
| 885 |
+
}
|
| 886 |
+
|
| 887 |
+
#poststuff .wp_themeSkin .mceStatusbar {
|
| 888 |
+
border-color: #dfdfdf;
|
| 889 |
+
}
|
| 890 |
+
|
| 891 |
+
#poststuff .wp_themeSkin .mceStatusbar * {
|
| 892 |
+
color: #555;
|
| 893 |
+
}
|
| 894 |
+
|
| 895 |
+
#poststuff #edButtonPreview,
|
| 896 |
+
#poststuff #edButtonHTML {
|
| 897 |
+
background-color: #f1f1f1;
|
| 898 |
+
border-color: #dfdfdf #dfdfdf #ccc;
|
| 899 |
+
color: #999;
|
| 900 |
+
}
|
| 901 |
+
|
| 902 |
+
#poststuff #editor-toolbar .active {
|
| 903 |
+
border-color: #ccc #ccc #e9e9e9;
|
| 904 |
+
background-color: #e9e9e9;
|
| 905 |
+
color: #333;
|
| 906 |
+
}
|
| 907 |
+
|
| 908 |
+
/* TinyMCE */
|
| 909 |
+
#post-status-info {
|
| 910 |
+
background-color: #EDEDED;
|
| 911 |
+
}
|
| 912 |
+
|
| 913 |
+
.wp_themeSkin *,
|
| 914 |
+
.wp_themeSkin a:hover,
|
| 915 |
+
.wp_themeSkin a:link,
|
| 916 |
+
.wp_themeSkin a:visited,
|
| 917 |
+
.wp_themeSkin a:active {
|
| 918 |
+
color: #000;
|
| 919 |
+
}
|
| 920 |
+
|
| 921 |
+
/* Containers */
|
| 922 |
+
.wp_themeSkin table.mceLayout {
|
| 923 |
+
border-color: #ccc #ccc #dfdfdf;
|
| 924 |
+
}
|
| 925 |
+
|
| 926 |
+
#editorcontainer #content,
|
| 927 |
+
#editorcontainer .wp_themeSkin .mceIframeContainer {
|
| 928 |
+
-moz-box-shadow: inset 1px 1px 2px rgba( 0, 0, 0, 0.1 );
|
| 929 |
+
-webkit-box-shadow: inset 1px 1px 2px rgba( 0, 0, 0, 0.1 );
|
| 930 |
+
box-shadow: inset 1px 1px 2px rgba( 0, 0, 0, 0.1 );
|
| 931 |
+
}
|
| 932 |
+
.wp_themeSkin iframe {
|
| 933 |
+
background: transparent;
|
| 934 |
+
}
|
| 935 |
+
|
| 936 |
+
/* Layout */
|
| 937 |
+
.wp_themeSkin .mceStatusbar {
|
| 938 |
+
color: #000;
|
| 939 |
+
background-color: #f5f5f5;
|
| 940 |
+
}
|
| 941 |
+
|
| 942 |
+
/* Button */
|
| 943 |
+
.wp_themeSkin .mceButton {
|
| 944 |
+
border-color: #ccc;
|
| 945 |
+
background-color: #eee; /* Fallback */
|
| 946 |
+
background-image: -ms-linear-gradient(bottom, #ddd, #fff); /* IE10 */
|
| 947 |
+
background-image: -moz-linear-gradient(bottom, #ddd, #fff); /* Firefox */
|
| 948 |
+
background-image: -o-linear-gradient(bottom, #ddd, #fff); /* Opera */
|
| 949 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#fff)); /* old Webkit */
|
| 950 |
+
background-image: -webkit-linear-gradient(bottom, #ddd, #fff); /* new Webkit */
|
| 951 |
+
background-image: linear-gradient(bottom, #ddd, #fff); /* proposed W3C Markup */
|
| 952 |
+
}
|
| 953 |
+
|
| 954 |
+
.wp_themeSkin a.mceButtonEnabled:hover {
|
| 955 |
+
border-color: #a0a0a0;
|
| 956 |
+
background: #ddd; /* Fallback */
|
| 957 |
+
background-image: -ms-linear-gradient(bottom, #ccc, #fff); /* IE10 */
|
| 958 |
+
background-image: -moz-linear-gradient(bottom, #ccc, #fff); /* Firefox */
|
| 959 |
+
background-image: -o-linear-gradient(bottom, #ccc, #fff); /* Opera */
|
| 960 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#ccc), to(#fff)); /* old Webkit */
|
| 961 |
+
background-image: -webkit-linear-gradient(bottom, #ccc, #fff); /* new Webkit */
|
| 962 |
+
background-image: linear-gradient(bottom, #ccc, #fff); /* proposed W3C Markup */
|
| 963 |
+
}
|
| 964 |
+
|
| 965 |
+
.wp_themeSkin a.mceButton:active,
|
| 966 |
+
.wp_themeSkin a.mceButtonEnabled:active,
|
| 967 |
+
.wp_themeSkin a.mceButtonSelected:active,
|
| 968 |
+
.wp_themeSkin a.mceButtonActive,
|
| 969 |
+
.wp_themeSkin a.mceButtonActive:active,
|
| 970 |
+
.wp_themeSkin a.mceButtonActive:hover {
|
| 971 |
+
background-color: #ddd; /* Fallback */
|
| 972 |
+
background-image: -ms-linear-gradient(bottom, #eee, #bbb); /* IE10 */
|
| 973 |
+
background-image: -moz-linear-gradient(bottom, #eee, #bbb); /* Firefox */
|
| 974 |
+
background-image: -o-linear-gradient(bottom, #eee, #bbb); /* Opera */
|
| 975 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#eee), to(#bbb)); /* old Webkit */
|
| 976 |
+
background-image: -webkit-linear-gradient(bottom, #eee, #bbb); /* new Webkit */
|
| 977 |
+
background-image: linear-gradient(bottom, #eee, #bbb); /* proposed W3C Markup */
|
| 978 |
+
border-color: #909090;
|
| 979 |
+
}
|
| 980 |
+
|
| 981 |
+
.wp_themeSkin .mceButtonDisabled {
|
| 982 |
+
border-color: #ccc !important;
|
| 983 |
+
}
|
| 984 |
+
|
| 985 |
+
/* ListBox */
|
| 986 |
+
.wp_themeSkin .mceListBox .mceText,
|
| 987 |
+
.wp_themeSkin .mceListBox .mceOpen {
|
| 988 |
+
border-color: #ccc;
|
| 989 |
+
background-color: #eee; /* Fallback */
|
| 990 |
+
background-image: -ms-linear-gradient(bottom, #ddd, #fff); /* IE10 */
|
| 991 |
+
background-image: -moz-linear-gradient(bottom, #ddd, #fff); /* Firefox */
|
| 992 |
+
background-image: -o-linear-gradient(bottom, #ddd, #fff); /* Opera */
|
| 993 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#fff)); /* old Webkit */
|
| 994 |
+
background-image: -webkit-linear-gradient(bottom, #ddd, #fff); /* new Webkit */
|
| 995 |
+
background-image: linear-gradient(bottom, #ddd, #fff); /* proposed W3C Markup */
|
| 996 |
+
}
|
| 997 |
+
|
| 998 |
+
.wp_themeSkin .mceListBox .mceOpen {
|
| 999 |
+
border-left: 0 !important;
|
| 1000 |
+
}
|
| 1001 |
+
|
| 1002 |
+
.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,
|
| 1003 |
+
.wp_themeSkin .mceListBoxHover .mceOpen,
|
| 1004 |
+
.wp_themeSkin .mceListBoxHover:active .mceOpen,
|
| 1005 |
+
.wp_themeSkin .mceListBoxSelected .mceOpen,
|
| 1006 |
+
.wp_themeSkin .mceListBoxSelected .mceText,
|
| 1007 |
+
.wp_themeSkin table.mceListBoxEnabled:active .mceText {
|
| 1008 |
+
background: #ccc;
|
| 1009 |
+
border-color: #999;
|
| 1010 |
+
}
|
| 1011 |
+
|
| 1012 |
+
/* List Box Hover */
|
| 1013 |
+
.wp_themeSkin table.mceListBoxEnabled:hover .mceText,
|
| 1014 |
+
.wp_themeSkin .mceListBoxHover .mceText,
|
| 1015 |
+
.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,
|
| 1016 |
+
.wp_themeSkin .mceListBoxHover .mceOpen {
|
| 1017 |
+
border-color: #909090;
|
| 1018 |
+
background-color: #eee; /* Fallback */
|
| 1019 |
+
background-image: -ms-linear-gradient(bottom, #ccc, #fff); /* IE10 */
|
| 1020 |
+
background-image: -moz-linear-gradient(bottom, #ccc, #fff); /* Firefox */
|
| 1021 |
+
background-image: -o-linear-gradient(bottom, #ccc, #fff); /* Opera */
|
| 1022 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#ccc), to(#fff)); /* old Webkit */
|
| 1023 |
+
background-image: -webkit-linear-gradient(bottom, #ccc, #fff); /* new Webkit */
|
| 1024 |
+
background-image: linear-gradient(bottom, #ccc, #fff); /* proposed W3C Markup */
|
| 1025 |
+
}
|
| 1026 |
+
|
| 1027 |
+
.wp_themeSkin select.mceListBox {
|
| 1028 |
+
border-color: #B2B2B2;
|
| 1029 |
+
background-color: #fff;
|
| 1030 |
+
}
|
| 1031 |
+
|
| 1032 |
+
/* SplitButton */
|
| 1033 |
+
.wp_themeSkin .mceSplitButton a.mceAction,
|
| 1034 |
+
.wp_themeSkin .mceSplitButton a.mceOpen {
|
| 1035 |
+
border-color: #ccc;
|
| 1036 |
+
}
|
| 1037 |
+
|
| 1038 |
+
.wp_themeSkin .mceSplitButton a.mceOpen:hover,
|
| 1039 |
+
.wp_themeSkin .mceSplitButtonSelected a.mceOpen,
|
| 1040 |
+
.wp_themeSkin table.mceSplitButtonEnabled:hover a.mceAction,
|
| 1041 |
+
.wp_themeSkin .mceSplitButton a.mceAction:hover {
|
| 1042 |
+
border-color: #909090;
|
| 1043 |
+
}
|
| 1044 |
+
|
| 1045 |
+
|
| 1046 |
+
.wp_themeSkin table.mceSplitButton td {
|
| 1047 |
+
background-color: #eee; /* Fallback */
|
| 1048 |
+
background-image: -ms-linear-gradient(bottom, #ddd, #fff); /* IE10 */
|
| 1049 |
+
background-image: -moz-linear-gradient(bottom, #ddd, #fff); /* Firefox */
|
| 1050 |
+
background-image: -o-linear-gradient(bottom, #ddd, #fff); /* Opera */
|
| 1051 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#fff)); /* old Webkit */
|
| 1052 |
+
background-image: -webkit-linear-gradient(bottom, #ddd, #fff); /* new Webkit */
|
| 1053 |
+
background-image: linear-gradient(bottom, #ddd, #fff); /* proposed W3C Markup */
|
| 1054 |
+
}
|
| 1055 |
+
|
| 1056 |
+
.wp_themeSkin table.mceSplitButton:hover td {
|
| 1057 |
+
background-image: -ms-linear-gradient(bottom, #ccc, #fff); /* IE10 */
|
| 1058 |
+
background-image: -moz-linear-gradient(bottom, #ccc, #fff); /* Firefox */
|
| 1059 |
+
background-image: -o-linear-gradient(bottom, #ccc, #fff); /* Opera */
|
| 1060 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#ccc), to(#fff)); /* old Webkit */
|
| 1061 |
+
background-image: -webkit-linear-gradient(bottom, #ccc, #fff); /* new Webkit */
|
| 1062 |
+
background-image: linear-gradient(bottom, #ccc, #fff); /* proposed W3C Markup */
|
| 1063 |
+
}
|
| 1064 |
+
|
| 1065 |
+
.wp_themeSkin .mceSplitButtonActive {
|
| 1066 |
+
background-color: #B2B2B2;
|
| 1067 |
+
}
|
| 1068 |
+
|
| 1069 |
+
/* ColorSplitButton */
|
| 1070 |
+
.wp_themeSkin div.mceColorSplitMenu table {
|
| 1071 |
+
background-color: #ebebeb;
|
| 1072 |
+
border-color: #B2B2B2;
|
| 1073 |
+
}
|
| 1074 |
+
|
| 1075 |
+
.wp_themeSkin .mceColorSplitMenu a {
|
| 1076 |
+
border-color: #B2B2B2;
|
| 1077 |
+
}
|
| 1078 |
+
|
| 1079 |
+
.wp_themeSkin .mceColorSplitMenu a.mceMoreColors {
|
| 1080 |
+
border-color: #fff;
|
| 1081 |
+
}
|
| 1082 |
+
|
| 1083 |
+
.wp_themeSkin .mceColorSplitMenu a.mceMoreColors:hover {
|
| 1084 |
+
border-color: #0A246A;
|
| 1085 |
+
background-color: #B6BDD2;
|
| 1086 |
+
}
|
| 1087 |
+
|
| 1088 |
+
.wp_themeSkin a.mceMoreColors:hover {
|
| 1089 |
+
border-color: #0A246A;
|
| 1090 |
+
}
|
| 1091 |
+
|
| 1092 |
+
/* Menu */
|
| 1093 |
+
.wp_themeSkin .mceMenu {
|
| 1094 |
+
border-color: #ddd;
|
| 1095 |
+
}
|
| 1096 |
+
|
| 1097 |
+
.wp_themeSkin .mceMenu table {
|
| 1098 |
+
background-color: #ebeaeb;
|
| 1099 |
+
}
|
| 1100 |
+
|
| 1101 |
+
.wp_themeSkin .mceMenu .mceText {
|
| 1102 |
+
color: #000;
|
| 1103 |
+
}
|
| 1104 |
+
|
| 1105 |
+
.wp_themeSkin .mceMenu .mceMenuItemEnabled a:hover,
|
| 1106 |
+
.wp_themeSkin .mceMenu .mceMenuItemActive {
|
| 1107 |
+
background-color: #f5f5f5;
|
| 1108 |
+
}
|
| 1109 |
+
.wp_themeSkin td.mceMenuItemSeparator {
|
| 1110 |
+
background-color: #aaa;
|
| 1111 |
+
}
|
| 1112 |
+
.wp_themeSkin .mceMenuItemTitle a {
|
| 1113 |
+
background-color: #ccc;
|
| 1114 |
+
border-bottom-color: #aaa;
|
| 1115 |
+
}
|
| 1116 |
+
.wp_themeSkin .mceMenuItemTitle span.mceText {
|
| 1117 |
+
color: #000;
|
| 1118 |
+
}
|
| 1119 |
+
.wp_themeSkin .mceMenuItemDisabled .mceText {
|
| 1120 |
+
color: #888;
|
| 1121 |
+
}
|
| 1122 |
+
|
| 1123 |
+
.wp_themeSkin tr.mceFirst td.mceToolbar {
|
| 1124 |
+
background: #dfdfdf url("../../../wp-admin/images/ed-bg.gif") repeat-x scroll left top;
|
| 1125 |
+
border-color: #ccc;
|
| 1126 |
+
}
|
| 1127 |
+
|
| 1128 |
+
.wp-admin #mceModalBlocker {
|
| 1129 |
+
background: #000;
|
| 1130 |
+
}
|
| 1131 |
+
|
| 1132 |
+
.wp-admin .clearlooks2 .mceFocus .mceTop .mceLeft {
|
| 1133 |
+
background: #444444;
|
| 1134 |
+
border-left: 1px solid #999;
|
| 1135 |
+
border-top: 1px solid #999;
|
| 1136 |
+
-moz-border-radius: 3px 0 0 0;
|
| 1137 |
+
-webkit-border-top-left-radius: 3px;
|
| 1138 |
+
-khtml-border-top-left-radius: 3px;
|
| 1139 |
+
border-top-left-radius: 3px;
|
| 1140 |
+
}
|
| 1141 |
+
|
| 1142 |
+
.wp-admin .clearlooks2 .mceFocus .mceTop .mceRight {
|
| 1143 |
+
background: #444444;
|
| 1144 |
+
border-right: 1px solid #999;
|
| 1145 |
+
border-top: 1px solid #999;
|
| 1146 |
+
border-top-right-radius: 3px;
|
| 1147 |
+
-khtml-border-top-right-radius: 3px;
|
| 1148 |
+
-webkit-border-top-right-radius: 3px;
|
| 1149 |
+
-moz-border-radius: 0 3px 0 0;
|
| 1150 |
+
}
|
| 1151 |
+
|
| 1152 |
+
.wp-admin .clearlooks2 .mceMiddle .mceLeft {
|
| 1153 |
+
background: #f1f1f1;
|
| 1154 |
+
border-left: 1px solid #999;
|
| 1155 |
+
}
|
| 1156 |
+
|
| 1157 |
+
.wp-admin .clearlooks2 .mceMiddle .mceRight {
|
| 1158 |
+
background: #f1f1f1;
|
| 1159 |
+
border-right: 1px solid #999;
|
| 1160 |
+
}
|
| 1161 |
+
|
| 1162 |
+
.wp-admin .clearlooks2 .mceBottom {
|
| 1163 |
+
background: #f1f1f1;
|
| 1164 |
+
border-bottom: 1px solid #999;
|
| 1165 |
+
}
|
| 1166 |
+
|
| 1167 |
+
.wp-admin .clearlooks2 .mceBottom .mceLeft {
|
| 1168 |
+
background: #f1f1f1;
|
| 1169 |
+
border-bottom: 1px solid #999;
|
| 1170 |
+
border-left: 1px solid #999;
|
| 1171 |
+
}
|
| 1172 |
+
|
| 1173 |
+
.wp-admin .clearlooks2 .mceBottom .mceCenter {
|
| 1174 |
+
background: #f1f1f1;
|
| 1175 |
+
border-bottom: 1px solid #999;
|
| 1176 |
+
}
|
| 1177 |
+
|
| 1178 |
+
.wp-admin .clearlooks2 .mceBottom .mceRight {
|
| 1179 |
+
background: #f1f1f1;
|
| 1180 |
+
border-bottom: 1px solid #999;
|
| 1181 |
+
border-right: 1px solid #999;
|
| 1182 |
+
}
|
| 1183 |
+
|
| 1184 |
+
.wp-admin .clearlooks2 .mceFocus .mceTop span {
|
| 1185 |
+
color: #e5e5e5;
|
| 1186 |
+
}
|
| 1187 |
+
/* end TinyMCE */
|
| 1188 |
+
|
| 1189 |
+
#titlediv #title {
|
| 1190 |
+
border-color: #ccc;
|
| 1191 |
+
}
|
| 1192 |
+
|
| 1193 |
+
#editorcontainer {
|
| 1194 |
+
border-color: #ccc #ccc #dfdfdf;
|
| 1195 |
+
}
|
| 1196 |
+
|
| 1197 |
+
#post-status-info {
|
| 1198 |
+
border-color: #dfdfdf #ccc #ccc;
|
| 1199 |
+
}
|
| 1200 |
+
|
| 1201 |
+
.editwidget .widget-inside {
|
| 1202 |
+
border-color: #dfdfdf;
|
| 1203 |
+
}
|
| 1204 |
+
|
| 1205 |
+
#titlediv #title {
|
| 1206 |
+
background-color: #fff;
|
| 1207 |
+
}
|
| 1208 |
+
|
| 1209 |
+
#tTips p#tTips_inside {
|
| 1210 |
+
background-color: #ddd;
|
| 1211 |
+
color: #333;
|
| 1212 |
+
}
|
| 1213 |
+
|
| 1214 |
+
#timestampdiv input,
|
| 1215 |
+
#namediv input,
|
| 1216 |
+
#poststuff .inside .the-tagcloud {
|
| 1217 |
+
border-color: #ddd;
|
| 1218 |
+
}
|
| 1219 |
+
|
| 1220 |
+
/* menu */
|
| 1221 |
+
#adminmenuback,
|
| 1222 |
+
#adminmenuwrap {
|
| 1223 |
+
background-color: #deece1;
|
| 1224 |
+
border-color: #ccc;
|
| 1225 |
+
}
|
| 1226 |
+
|
| 1227 |
+
#adminmenushadow,
|
| 1228 |
+
#adminmenuback {
|
| 1229 |
+
background-image: url(../../../wp-admin/images/menu-shadow.png);
|
| 1230 |
+
background-position: top right;
|
| 1231 |
+
background-repeat: repeat-y;
|
| 1232 |
+
}
|
| 1233 |
+
|
| 1234 |
+
#adminmenu li.wp-menu-separator {
|
| 1235 |
+
background: #dfdfdf;
|
| 1236 |
+
border-color: #cfcfcf;
|
| 1237 |
+
}
|
| 1238 |
+
|
| 1239 |
+
#adminmenu div.separator {
|
| 1240 |
+
border-color: #deece1;
|
| 1241 |
+
}
|
| 1242 |
+
|
| 1243 |
+
#adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,
|
| 1244 |
+
#adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle {
|
| 1245 |
+
background: transparent url(../../../wp-admin/images/arrows-dark.png) no-repeat -1px 6px;
|
| 1246 |
+
}
|
| 1247 |
+
|
| 1248 |
+
#adminmenu .wp-has-submenu:hover .wp-menu-toggle,
|
| 1249 |
+
#adminmenu .wp-menu-open .wp-menu-toggle {
|
| 1250 |
+
background: transparent url(../../../wp-admin/images/arrows.png) no-repeat -2px 6px;
|
| 1251 |
+
}
|
| 1252 |
+
|
| 1253 |
+
#adminmenu a.menu-top,
|
| 1254 |
+
.folded #adminmenu li.menu-top,
|
| 1255 |
+
#adminmenu .wp-submenu .wp-submenu-head {
|
| 1256 |
+
border-top-color: #f9f9f9;
|
| 1257 |
+
border-bottom-color: #dfdfdf;
|
| 1258 |
+
}
|
| 1259 |
+
|
| 1260 |
+
#adminmenu li.wp-menu-open {
|
| 1261 |
+
border-color: #dfdfdf;
|
| 1262 |
+
}
|
| 1263 |
+
|
| 1264 |
+
#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
|
| 1265 |
+
#adminmenu li.current a.menu-top,
|
| 1266 |
+
.folded #adminmenu li.wp-has-current-submenu,
|
| 1267 |
+
.folded #adminmenu li.current.menu-top,
|
| 1268 |
+
#adminmenu .wp-menu-arrow,
|
| 1269 |
+
#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
|
| 1270 |
+
background-color: #777; /* Fallback */
|
| 1271 |
+
background-image: -ms-linear-gradient(bottom, #060, #6EB469); /* IE10 */
|
| 1272 |
+
background-image: -moz-linear-gradient(bottom, #060, #6EB469); /* Firefox */
|
| 1273 |
+
background-image: -o-linear-gradient(bottom, #060, #6EB469); /* Opera */
|
| 1274 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#060), to(#6EB469)); /* old Webkit */
|
| 1275 |
+
background-image: -webkit-linear-gradient(bottom, #060, #6EB469); /* new Webkit */
|
| 1276 |
+
background-image: linear-gradient(bottom, #060, #6EB469); /* proposed W3C Markup */
|
| 1277 |
+
}
|
| 1278 |
+
|
| 1279 |
+
#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
|
| 1280 |
+
#adminmenu li.current a.menu-top,
|
| 1281 |
+
#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
|
| 1282 |
+
text-shadow: 0 -1px 0 #333;
|
| 1283 |
+
color: #fff;
|
| 1284 |
+
border-top-color: #808080;
|
| 1285 |
+
border-bottom-color: #6d6d6d;
|
| 1286 |
+
}
|
| 1287 |
+
|
| 1288 |
+
.folded #adminmenu li.wp-has-current-submenu,
|
| 1289 |
+
.folded #adminmenu li.current.menu-top {
|
| 1290 |
+
border-top-color: #808080;
|
| 1291 |
+
border-bottom-color: #6d6d6d;
|
| 1292 |
+
}
|
| 1293 |
+
|
| 1294 |
+
#adminmenu .wp-submenu a:hover {
|
| 1295 |
+
background-color: #EEFCF1 !important;
|
| 1296 |
+
color: #333 !important;
|
| 1297 |
+
}
|
| 1298 |
+
|
| 1299 |
+
#adminmenu .wp-submenu li.current,
|
| 1300 |
+
#adminmenu .wp-submenu li.current a,
|
| 1301 |
+
#adminmenu .wp-submenu li.current a:hover {
|
| 1302 |
+
color: #333;
|
| 1303 |
+
}
|
| 1304 |
+
|
| 1305 |
+
#adminmenu .wp-submenu ul {
|
| 1306 |
+
background-color: #fff;
|
| 1307 |
+
}
|
| 1308 |
+
|
| 1309 |
+
.folded #adminmenu .wp-submenu-wrap,
|
| 1310 |
+
.folded #adminmenu .wp-submenu ul {
|
| 1311 |
+
border-color: #dfdfdf;
|
| 1312 |
+
}
|
| 1313 |
+
|
| 1314 |
+
.folded #adminmenu .wp-submenu-wrap {
|
| 1315 |
+
-moz-box-shadow: 2px 2px 5px rgba( 0, 0, 0, 0.4 );
|
| 1316 |
+
-webkit-box-shadow: 2px 2px 5px rgba( 0, 0, 0, 0.4 );
|
| 1317 |
+
box-shadow: 2px 2px 5px rgba( 0, 0, 0, 0.4 );
|
| 1318 |
+
}
|
| 1319 |
+
|
| 1320 |
+
#adminmenu .wp-submenu .wp-submenu-head {
|
| 1321 |
+
border-right-color: #dfdfdf;
|
| 1322 |
+
background-color: #ececec;
|
| 1323 |
+
}
|
| 1324 |
+
|
| 1325 |
+
#adminmenu div.wp-submenu {
|
| 1326 |
+
background-color: transparent;
|
| 1327 |
+
}
|
| 1328 |
+
|
| 1329 |
+
/* collapse menu button */
|
| 1330 |
+
#collapse-menu {
|
| 1331 |
+
color: #aaa;
|
| 1332 |
+
}
|
| 1333 |
+
|
| 1334 |
+
#collapse-menu:hover {
|
| 1335 |
+
color: #999;
|
| 1336 |
+
}
|
| 1337 |
+
|
| 1338 |
+
#collapse-button {
|
| 1339 |
+
border-color: #ccc;
|
| 1340 |
+
background-color: #f4f4f4; /* Fallback */
|
| 1341 |
+
background-image: -ms-linear-gradient(bottom, #dfdfdf, #fff); /* IE10 */
|
| 1342 |
+
background-image: -moz-linear-gradient(bottom, #dfdfdf, #fff); /* Firefox */
|
| 1343 |
+
background-image: -o-linear-gradient(bottom, #dfdfdf, #fff); /* Opera */
|
| 1344 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#fff)); /* old Webkit */
|
| 1345 |
+
background-image: -webkit-linear-gradient(bottom, #dfdfdf, #fff); /* new Webkit */
|
| 1346 |
+
background-image: linear-gradient(bottom, #dfdfdf, #fff); /* proposed W3C Markup */
|
| 1347 |
+
}
|
| 1348 |
+
#collapse-menu:hover #collapse-button {
|
| 1349 |
+
border-color: #aaa;
|
| 1350 |
+
}
|
| 1351 |
+
#collapse-button div {
|
| 1352 |
+
background: transparent url(../../../wp-admin/images/arrows.png) no-repeat 0 -72px;
|
| 1353 |
+
}
|
| 1354 |
+
.folded #collapse-button div {
|
| 1355 |
+
background-position: 0 -108px;
|
| 1356 |
+
}
|
| 1357 |
+
|
| 1358 |
+
/* menu and screen icons */
|
| 1359 |
+
#adminmenu .menu-icon-dashboard div.wp-menu-image {
|
| 1360 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -60px -33px;
|
| 1361 |
+
}
|
| 1362 |
+
|
| 1363 |
+
#adminmenu .menu-icon-dashboard:hover div.wp-menu-image,
|
| 1364 |
+
#adminmenu .menu-icon-dashboard.wp-has-current-submenu div.wp-menu-image,
|
| 1365 |
+
#adminmenu .menu-icon-dashboard.current div.wp-menu-image {
|
| 1366 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -60px -1px;
|
| 1367 |
+
}
|
| 1368 |
+
|
| 1369 |
+
#adminmenu .menu-icon-post div.wp-menu-image {
|
| 1370 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -271px -33px;
|
| 1371 |
+
}
|
| 1372 |
+
|
| 1373 |
+
#adminmenu .menu-icon-post:hover div.wp-menu-image,
|
| 1374 |
+
#adminmenu .menu-icon-post.wp-has-current-submenu div.wp-menu-image {
|
| 1375 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -271px -1px;
|
| 1376 |
+
}
|
| 1377 |
+
|
| 1378 |
+
#adminmenu .menu-icon-media div.wp-menu-image {
|
| 1379 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -120px -33px;
|
| 1380 |
+
}
|
| 1381 |
+
|
| 1382 |
+
#adminmenu .menu-icon-media:hover div.wp-menu-image,
|
| 1383 |
+
#adminmenu .menu-icon-media.wp-has-current-submenu div.wp-menu-image {
|
| 1384 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -120px -1px;
|
| 1385 |
+
}
|
| 1386 |
+
|
| 1387 |
+
#adminmenu .menu-icon-links div.wp-menu-image {
|
| 1388 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -90px -33px;
|
| 1389 |
+
}
|
| 1390 |
+
|
| 1391 |
+
#adminmenu .menu-icon-links:hover div.wp-menu-image,
|
| 1392 |
+
#adminmenu .menu-icon-links.wp-has-current-submenu div.wp-menu-image {
|
| 1393 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -90px -1px;
|
| 1394 |
+
}
|
| 1395 |
+
|
| 1396 |
+
#adminmenu .menu-icon-page div.wp-menu-image {
|
| 1397 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -150px -33px;
|
| 1398 |
+
}
|
| 1399 |
+
|
| 1400 |
+
#adminmenu .menu-icon-page:hover div.wp-menu-image,
|
| 1401 |
+
#adminmenu .menu-icon-page.wp-has-current-submenu div.wp-menu-image {
|
| 1402 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -150px -1px;
|
| 1403 |
+
}
|
| 1404 |
+
|
| 1405 |
+
#adminmenu .menu-icon-comments div.wp-menu-image {
|
| 1406 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -30px -33px;
|
| 1407 |
+
}
|
| 1408 |
+
|
| 1409 |
+
#adminmenu .menu-icon-comments:hover div.wp-menu-image,
|
| 1410 |
+
#adminmenu .menu-icon-comments.wp-has-current-submenu div.wp-menu-image,
|
| 1411 |
+
#adminmenu .menu-icon-comments.current div.wp-menu-image {
|
| 1412 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -30px -1px;
|
| 1413 |
+
}
|
| 1414 |
+
|
| 1415 |
+
#adminmenu .menu-icon-appearance div.wp-menu-image {
|
| 1416 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll 0 -33px;
|
| 1417 |
+
}
|
| 1418 |
+
|
| 1419 |
+
#adminmenu .menu-icon-appearance:hover div.wp-menu-image,
|
| 1420 |
+
#adminmenu .menu-icon-appearance.wp-has-current-submenu div.wp-menu-image {
|
| 1421 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll 0 -1px;
|
| 1422 |
+
}
|
| 1423 |
+
|
| 1424 |
+
#adminmenu .menu-icon-plugins div.wp-menu-image {
|
| 1425 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -180px -33px;
|
| 1426 |
+
}
|
| 1427 |
+
|
| 1428 |
+
#adminmenu .menu-icon-plugins:hover div.wp-menu-image,
|
| 1429 |
+
#adminmenu .menu-icon-plugins.wp-has-current-submenu div.wp-menu-image {
|
| 1430 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -180px -1px;
|
| 1431 |
+
}
|
| 1432 |
+
|
| 1433 |
+
#adminmenu .menu-icon-users div.wp-menu-image {
|
| 1434 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -300px -33px;
|
| 1435 |
+
}
|
| 1436 |
+
|
| 1437 |
+
#adminmenu .menu-icon-users:hover div.wp-menu-image,
|
| 1438 |
+
#adminmenu .menu-icon-users.wp-has-current-submenu div.wp-menu-image,
|
| 1439 |
+
#adminmenu .menu-icon-users.current div.wp-menu-image {
|
| 1440 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -300px -1px;
|
| 1441 |
+
}
|
| 1442 |
+
|
| 1443 |
+
#adminmenu .menu-icon-tools div.wp-menu-image {
|
| 1444 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -210px -33px;
|
| 1445 |
+
}
|
| 1446 |
+
|
| 1447 |
+
#adminmenu .menu-icon-tools:hover div.wp-menu-image,
|
| 1448 |
+
#adminmenu .menu-icon-tools.wp-has-current-submenu div.wp-menu-image,
|
| 1449 |
+
#adminmenu .menu-icon-tools.current div.wp-menu-image {
|
| 1450 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -210px -1px;
|
| 1451 |
+
}
|
| 1452 |
+
|
| 1453 |
+
#icon-options-general,
|
| 1454 |
+
#adminmenu .menu-icon-settings div.wp-menu-image {
|
| 1455 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -240px -33px;
|
| 1456 |
+
}
|
| 1457 |
+
|
| 1458 |
+
#adminmenu .menu-icon-settings:hover div.wp-menu-image,
|
| 1459 |
+
#adminmenu .menu-icon-settings.wp-has-current-submenu div.wp-menu-image {
|
| 1460 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -240px -1px;
|
| 1461 |
+
}
|
| 1462 |
+
|
| 1463 |
+
#adminmenu .menu-icon-site div.wp-menu-image {
|
| 1464 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -360px -33px;
|
| 1465 |
+
}
|
| 1466 |
+
|
| 1467 |
+
#adminmenu .menu-icon-site:hover div.wp-menu-image,
|
| 1468 |
+
#adminmenu .menu-icon-site.wp-has-current-submenu div.wp-menu-image {
|
| 1469 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -360px -1px;
|
| 1470 |
+
}
|
| 1471 |
+
/* end menu and screen icons */
|
| 1472 |
+
|
| 1473 |
+
/* Screen Icons */
|
| 1474 |
+
#icon-edit,
|
| 1475 |
+
#icon-post {
|
| 1476 |
+
background: transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -552px -5px;
|
| 1477 |
+
}
|
| 1478 |
+
|
| 1479 |
+
#icon-index {
|
| 1480 |
+
background: transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -137px -5px;
|
| 1481 |
+
}
|
| 1482 |
+
|
| 1483 |
+
#icon-upload {
|
| 1484 |
+
background: transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -251px -5px;
|
| 1485 |
+
}
|
| 1486 |
+
|
| 1487 |
+
#icon-link-manager,
|
| 1488 |
+
#icon-link,
|
| 1489 |
+
#icon-link-category {
|
| 1490 |
+
background: transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -190px -5px;
|
| 1491 |
+
}
|
| 1492 |
+
|
| 1493 |
+
#icon-edit-pages,
|
| 1494 |
+
#icon-page {
|
| 1495 |
+
background: transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -312px -5px;
|
| 1496 |
+
}
|
| 1497 |
+
|
| 1498 |
+
#icon-edit-comments {
|
| 1499 |
+
background: transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -72px -5px;
|
| 1500 |
+
}
|
| 1501 |
+
|
| 1502 |
+
#icon-themes {
|
| 1503 |
+
background: transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -11px -5px;
|
| 1504 |
+
}
|
| 1505 |
+
|
| 1506 |
+
#icon-plugins {
|
| 1507 |
+
background: transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -370px -5px;
|
| 1508 |
+
}
|
| 1509 |
+
|
| 1510 |
+
#icon-users,
|
| 1511 |
+
#icon-profile,
|
| 1512 |
+
#icon-user-edit {
|
| 1513 |
+
background: transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -600px -5px;
|
| 1514 |
+
}
|
| 1515 |
+
|
| 1516 |
+
#icon-tools,
|
| 1517 |
+
#icon-admin {
|
| 1518 |
+
background: transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -432px -5px;
|
| 1519 |
+
}
|
| 1520 |
+
|
| 1521 |
+
#icon-options-general {
|
| 1522 |
+
background: transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -492px -5px;
|
| 1523 |
+
}
|
| 1524 |
+
|
| 1525 |
+
#icon-ms-admin {
|
| 1526 |
+
background: transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -659px -5px;
|
| 1527 |
+
}
|
| 1528 |
+
/* end screen icons */
|
| 1529 |
+
|
| 1530 |
+
|
| 1531 |
+
/* Diff */
|
| 1532 |
+
table.diff .diff-deletedline {
|
| 1533 |
+
background-color: #fdd;
|
| 1534 |
+
}
|
| 1535 |
+
|
| 1536 |
+
table.diff .diff-deletedline del {
|
| 1537 |
+
background-color: #f99;
|
| 1538 |
+
}
|
| 1539 |
+
|
| 1540 |
+
table.diff .diff-addedline {
|
| 1541 |
+
background-color: #dfd;
|
| 1542 |
+
}
|
| 1543 |
+
|
| 1544 |
+
table.diff .diff-addedline ins {
|
| 1545 |
+
background-color: #9f9;
|
| 1546 |
+
}
|
| 1547 |
+
|
| 1548 |
+
#att-info {
|
| 1549 |
+
background-color: #E4F2FD;
|
| 1550 |
+
}
|
| 1551 |
+
|
| 1552 |
+
/* edit image */
|
| 1553 |
+
#sidemenu a {
|
| 1554 |
+
background-color: #f9f9f9;
|
| 1555 |
+
border-color: #f9f9f9;
|
| 1556 |
+
border-bottom-color: #dfdfdf;
|
| 1557 |
+
}
|
| 1558 |
+
|
| 1559 |
+
#sidemenu a.current {
|
| 1560 |
+
background-color: #fff;
|
| 1561 |
+
border-color: #dfdfdf #dfdfdf #fff;
|
| 1562 |
+
color: #D54E21;
|
| 1563 |
+
}
|
| 1564 |
+
|
| 1565 |
+
#screen-options-wrap,
|
| 1566 |
+
#contextual-help-wrap {
|
| 1567 |
+
background-color: #f1f1f1;
|
| 1568 |
+
border-color: #dfdfdf;
|
| 1569 |
+
}
|
| 1570 |
+
|
| 1571 |
+
#screen-options-link-wrap,
|
| 1572 |
+
#contextual-help-link-wrap {
|
| 1573 |
+
background-color: #e3e3e3; /* Fallback */
|
| 1574 |
+
border-right: 1px solid transparent;
|
| 1575 |
+
border-left: 1px solid transparent;
|
| 1576 |
+
border-bottom: 1px solid transparent;
|
| 1577 |
+
background-image: -ms-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* IE10 */
|
| 1578 |
+
background-image: -moz-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* Firefox */
|
| 1579 |
+
background-image: -o-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* Opera */
|
| 1580 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#f1f1f1)); /* old Webkit */
|
| 1581 |
+
background-image: -webkit-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* new Webkit */
|
| 1582 |
+
background-image: linear-gradient(bottom, #dfdfdf, #f1f1f1); /* proposed W3C Markup */
|
| 1583 |
+
}
|
| 1584 |
+
|
| 1585 |
+
#screen-meta-links a.show-settings {
|
| 1586 |
+
color: #777;
|
| 1587 |
+
}
|
| 1588 |
+
|
| 1589 |
+
#screen-meta-links a.show-settings:hover {
|
| 1590 |
+
color: #000;
|
| 1591 |
+
}
|
| 1592 |
+
|
| 1593 |
+
#replysubmit {
|
| 1594 |
+
background-color: #f1f1f1;
|
| 1595 |
+
border-top-color: #ddd;
|
| 1596 |
+
}
|
| 1597 |
+
|
| 1598 |
+
#replyerror {
|
| 1599 |
+
border-color: #ddd;
|
| 1600 |
+
background-color: #f9f9f9;
|
| 1601 |
+
}
|
| 1602 |
+
|
| 1603 |
+
#edithead,
|
| 1604 |
+
#replyhead {
|
| 1605 |
+
background-color: #f1f1f1;
|
| 1606 |
+
}
|
| 1607 |
+
|
| 1608 |
+
#ed_reply_toolbar {
|
| 1609 |
+
background-color: #e9e9e9;
|
| 1610 |
+
}
|
| 1611 |
+
|
| 1612 |
+
/* table vim shortcuts */
|
| 1613 |
+
.vim-current,
|
| 1614 |
+
.vim-current th,
|
| 1615 |
+
.vim-current td {
|
| 1616 |
+
background-color: #E4F2FD !important;
|
| 1617 |
+
}
|
| 1618 |
+
|
| 1619 |
+
/* Install Plugins */
|
| 1620 |
+
.star-average,
|
| 1621 |
+
.star.star-rating {
|
| 1622 |
+
background-color: #fc0;
|
| 1623 |
+
}
|
| 1624 |
+
|
| 1625 |
+
div.star.select:hover {
|
| 1626 |
+
background-color: #d00;
|
| 1627 |
+
}
|
| 1628 |
+
|
| 1629 |
+
div.star img {
|
| 1630 |
+
border-left: 1px solid #fff;
|
| 1631 |
+
border-right: 1px solid #fff;
|
| 1632 |
+
}
|
| 1633 |
+
|
| 1634 |
+
.widefat div.star img {
|
| 1635 |
+
border-left: 1px solid #f9f9f9;
|
| 1636 |
+
border-right: 1px solid #f9f9f9;
|
| 1637 |
+
}
|
| 1638 |
+
|
| 1639 |
+
#plugin-information .fyi ul {
|
| 1640 |
+
background-color: #eaf3fa;
|
| 1641 |
+
}
|
| 1642 |
+
|
| 1643 |
+
#plugin-information .fyi h2.mainheader {
|
| 1644 |
+
background-color: #cee1ef;
|
| 1645 |
+
}
|
| 1646 |
+
|
| 1647 |
+
#plugin-information pre,
|
| 1648 |
+
#plugin-information code {
|
| 1649 |
+
background-color: #ededff;
|
| 1650 |
+
}
|
| 1651 |
+
|
| 1652 |
+
#plugin-information pre {
|
| 1653 |
+
border: 1px solid #ccc;
|
| 1654 |
+
}
|
| 1655 |
+
|
| 1656 |
+
/* inline editor */
|
| 1657 |
+
.inline-edit-row fieldset input[type="text"],
|
| 1658 |
+
.inline-edit-row fieldset textarea,
|
| 1659 |
+
#bulk-titles,
|
| 1660 |
+
#replyrow input {
|
| 1661 |
+
border-color: #ddd;
|
| 1662 |
+
}
|
| 1663 |
+
|
| 1664 |
+
.inline-editor div.title {
|
| 1665 |
+
background-color: #EAF3FA;
|
| 1666 |
+
}
|
| 1667 |
+
|
| 1668 |
+
.inline-editor ul.cat-checklist {
|
| 1669 |
+
background-color: #fff;
|
| 1670 |
+
border-color: #ddd;
|
| 1671 |
+
}
|
| 1672 |
+
|
| 1673 |
+
.inline-editor .categories .catshow,
|
| 1674 |
+
.inline-editor .categories .cathide {
|
| 1675 |
+
color: #21759b;
|
| 1676 |
+
}
|
| 1677 |
+
|
| 1678 |
+
.inline-editor .quick-edit-save {
|
| 1679 |
+
background-color: #f1f1f1;
|
| 1680 |
+
}
|
| 1681 |
+
|
| 1682 |
+
#replyrow #ed_reply_toolbar input:hover {
|
| 1683 |
+
border-color: #aaa;
|
| 1684 |
+
background: #ddd;
|
| 1685 |
+
}
|
| 1686 |
+
|
| 1687 |
+
fieldset.inline-edit-col-right .inline-edit-col {
|
| 1688 |
+
border-color: #dfdfdf;
|
| 1689 |
+
}
|
| 1690 |
+
|
| 1691 |
+
.attention {
|
| 1692 |
+
color: #D54E21;
|
| 1693 |
+
}
|
| 1694 |
+
|
| 1695 |
+
.meta-box-sortables .postbox:hover .handlediv {
|
| 1696 |
+
background: transparent url(../../../wp-admin/images/arrows.png) no-repeat 6px 7px;
|
| 1697 |
+
}
|
| 1698 |
+
|
| 1699 |
+
.tablenav .tablenav-pages {
|
| 1700 |
+
color: #555;
|
| 1701 |
+
}
|
| 1702 |
+
|
| 1703 |
+
.tablenav .tablenav-pages a {
|
| 1704 |
+
border-color: #e3e3e3;
|
| 1705 |
+
background: #eee url('../images/menu-bits.gif?ver=20100610') repeat-x scroll left -379px;
|
| 1706 |
+
}
|
| 1707 |
+
|
| 1708 |
+
.tablenav .tablenav-pages a:hover,
|
| 1709 |
+
.tablenav .tablenav-pages a:focus {
|
| 1710 |
+
color: #d54e21;
|
| 1711 |
+
}
|
| 1712 |
+
|
| 1713 |
+
.tablenav .tablenav-pages a.disabled,
|
| 1714 |
+
.tablenav .tablenav-pages a.disabled:hover,
|
| 1715 |
+
.tablenav .tablenav-pages a.disabled:focus {
|
| 1716 |
+
color: #aaa;
|
| 1717 |
+
}
|
| 1718 |
+
|
| 1719 |
+
.tablenav .tablenav-pages .current {
|
| 1720 |
+
background: #dfdfdf;
|
| 1721 |
+
border-color: #d3d3d3;
|
| 1722 |
+
}
|
| 1723 |
+
|
| 1724 |
+
#availablethemes,
|
| 1725 |
+
#availablethemes td {
|
| 1726 |
+
border-color: #ddd;
|
| 1727 |
+
}
|
| 1728 |
+
|
| 1729 |
+
#current-theme img {
|
| 1730 |
+
border-color: #999;
|
| 1731 |
+
}
|
| 1732 |
+
|
| 1733 |
+
#TB_window #TB_title a.tb-theme-preview-link,
|
| 1734 |
+
#TB_window #TB_title a.tb-theme-preview-link:visited {
|
| 1735 |
+
color: #999;
|
| 1736 |
+
}
|
| 1737 |
+
|
| 1738 |
+
#TB_window #TB_title a.tb-theme-preview-link:hover,
|
| 1739 |
+
#TB_window #TB_title a.tb-theme-preview-link:focus {
|
| 1740 |
+
color: #ccc;
|
| 1741 |
+
}
|
| 1742 |
+
|
| 1743 |
+
.misc-pub-section {
|
| 1744 |
+
border-top-color: #fff;
|
| 1745 |
+
border-bottom-color: #dfdfdf;
|
| 1746 |
+
}
|
| 1747 |
+
|
| 1748 |
+
#minor-publishing {
|
| 1749 |
+
border-bottom-color: #dfdfdf;
|
| 1750 |
+
}
|
| 1751 |
+
|
| 1752 |
+
#post-body .misc-pub-section {
|
| 1753 |
+
border-right-color: #eee;
|
| 1754 |
+
}
|
| 1755 |
+
|
| 1756 |
+
.post-com-count span {
|
| 1757 |
+
background-color: #bbb;
|
| 1758 |
+
}
|
| 1759 |
+
|
| 1760 |
+
.form-table .color-palette td {
|
| 1761 |
+
border-color: #fff;
|
| 1762 |
+
}
|
| 1763 |
+
|
| 1764 |
+
.sortable-placeholder {
|
| 1765 |
+
border-color: #bbb;
|
| 1766 |
+
background-color: #f5f5f5;
|
| 1767 |
+
}
|
| 1768 |
+
|
| 1769 |
+
#post-body ul.category-tabs li.tabs a,
|
| 1770 |
+
#post-body ul.add-menu-item-tabs li.tabs a,
|
| 1771 |
+
body.press-this ul.category-tabs li.tabs a {
|
| 1772 |
+
color: #333;
|
| 1773 |
+
}
|
| 1774 |
+
|
| 1775 |
+
#wp_editimgbtn,
|
| 1776 |
+
#wp_delimgbtn,
|
| 1777 |
+
#wp_editgallery,
|
| 1778 |
+
#wp_delgallery {
|
| 1779 |
+
border-color: #999;
|
| 1780 |
+
background-color: #eee;
|
| 1781 |
+
}
|
| 1782 |
+
|
| 1783 |
+
#wp_editimgbtn:hover,
|
| 1784 |
+
#wp_delimgbtn:hover,
|
| 1785 |
+
#wp_editgallery:hover,
|
| 1786 |
+
#wp_delgallery:hover {
|
| 1787 |
+
border-color: #555;
|
| 1788 |
+
background-color: #ccc;
|
| 1789 |
+
}
|
| 1790 |
+
|
| 1791 |
+
#favorite-first {
|
| 1792 |
+
border-color: #c0c0c0;
|
| 1793 |
+
background: #f1f1f1; /* fallback color */
|
| 1794 |
+
background:-moz-linear-gradient(bottom, #e7e7e7, #fff);
|
| 1795 |
+
background:-webkit-gradient(linear, left bottom, left top, from(#e7e7e7), to(#fff));
|
| 1796 |
+
}
|
| 1797 |
+
|
| 1798 |
+
#favorite-inside {
|
| 1799 |
+
border-color: #c0c0c0;
|
| 1800 |
+
background-color: #fff;
|
| 1801 |
+
}
|
| 1802 |
+
|
| 1803 |
+
#favorite-toggle {
|
| 1804 |
+
background: transparent url(../../../wp-admin/images/arrows.png) no-repeat 4px 2px;
|
| 1805 |
+
border-color: #dfdfdf;
|
| 1806 |
+
-moz-box-shadow: inset 1px 0 0 #fff;
|
| 1807 |
+
-webkit-box-shadow: inset 1px 0 0 #fff;
|
| 1808 |
+
box-shadow: inset 1px 0 0 #fff;
|
| 1809 |
+
}
|
| 1810 |
+
|
| 1811 |
+
#favorite-actions a {
|
| 1812 |
+
color: #464646;
|
| 1813 |
+
}
|
| 1814 |
+
|
| 1815 |
+
#favorite-actions a:hover {
|
| 1816 |
+
color: #000;
|
| 1817 |
+
}
|
| 1818 |
+
|
| 1819 |
+
#favorite-inside a:hover {
|
| 1820 |
+
text-decoration: underline;
|
| 1821 |
+
}
|
| 1822 |
+
|
| 1823 |
+
#screen-meta a.show-settings,
|
| 1824 |
+
.toggle-arrow {
|
| 1825 |
+
background: transparent url(../../../wp-admin/images/arrows.png) no-repeat right 3px;
|
| 1826 |
+
}
|
| 1827 |
+
|
| 1828 |
+
#screen-meta .screen-meta-active a.show-settings {
|
| 1829 |
+
background: transparent url(../../../wp-admin/images/arrows.png) no-repeat right -33px;
|
| 1830 |
+
}
|
| 1831 |
+
|
| 1832 |
+
.view-switch #view-switch-list {
|
| 1833 |
+
background: transparent url(../../../wp-admin/images/list.png) no-repeat 0 0;
|
| 1834 |
+
}
|
| 1835 |
+
|
| 1836 |
+
.view-switch .current #view-switch-list {
|
| 1837 |
+
background: transparent url(../../../wp-admin/images/list.png) no-repeat -40px 0;
|
| 1838 |
+
}
|
| 1839 |
+
|
| 1840 |
+
.view-switch #view-switch-excerpt {
|
| 1841 |
+
background: transparent url(../../../wp-admin/images/list.png) no-repeat -20px 0;
|
| 1842 |
+
}
|
| 1843 |
+
|
| 1844 |
+
.view-switch .current #view-switch-excerpt {
|
| 1845 |
+
background: transparent url(../../../wp-admin/images/list.png) no-repeat -60px 0;
|
| 1846 |
+
}
|
| 1847 |
+
|
| 1848 |
+
#header-logo {
|
| 1849 |
+
background: transparent url(../../../wp-admin/images/wp-logo.png?ver=20110504) no-repeat scroll center center;
|
| 1850 |
+
}
|
| 1851 |
+
|
| 1852 |
+
.popular-tags,
|
| 1853 |
+
.feature-filter {
|
| 1854 |
+
background-color: #fff;
|
| 1855 |
+
border-color: #DFDFDF;
|
| 1856 |
+
}
|
| 1857 |
+
|
| 1858 |
+
#theme-information .action-button {
|
| 1859 |
+
border-top-color: #DFDFDF;
|
| 1860 |
+
}
|
| 1861 |
+
|
| 1862 |
+
.theme-listing br.line {
|
| 1863 |
+
border-bottom-color: #ccc;
|
| 1864 |
+
}
|
| 1865 |
+
|
| 1866 |
+
div.widgets-sortables,
|
| 1867 |
+
#widgets-left .inactive {
|
| 1868 |
+
background-color: #fcfcfc;
|
| 1869 |
+
border-color: #dfdfdf;
|
| 1870 |
+
}
|
| 1871 |
+
|
| 1872 |
+
#available-widgets .widget-holder {
|
| 1873 |
+
background-color: #fcfcfc;
|
| 1874 |
+
border-color: #dfdfdf;
|
| 1875 |
+
}
|
| 1876 |
+
|
| 1877 |
+
#available-widgets .widget-description {
|
| 1878 |
+
color: #555;
|
| 1879 |
+
}
|
| 1880 |
+
|
| 1881 |
+
.sidebar-name {
|
| 1882 |
+
color: #464646;
|
| 1883 |
+
text-shadow: #fff 0 1px 0;
|
| 1884 |
+
border-color: #dfdfdf;
|
| 1885 |
+
-moz-box-shadow: inset 0 1px 0 #fff;
|
| 1886 |
+
-webkit-box-shadow: inset 0 1px 0 #fff;
|
| 1887 |
+
box-shadow: inset 0 1px 0 #fff;
|
| 1888 |
+
}
|
| 1889 |
+
|
| 1890 |
+
.sidebar-name:hover,
|
| 1891 |
+
#removing-widget {
|
| 1892 |
+
color: #d54e21;
|
| 1893 |
+
}
|
| 1894 |
+
|
| 1895 |
+
#removing-widget span {
|
| 1896 |
+
color: black;
|
| 1897 |
+
}
|
| 1898 |
+
|
| 1899 |
+
.sidebar-name-arrow {
|
| 1900 |
+
background: transparent url(../../../wp-admin/images/arrows.png) no-repeat 5px 9px;
|
| 1901 |
+
}
|
| 1902 |
+
|
| 1903 |
+
.sidebar-name:hover .sidebar-name-arrow {
|
| 1904 |
+
background: transparent url(../../../wp-admin/images/arrows-dark.png) no-repeat 5px 9px;
|
| 1905 |
+
}
|
| 1906 |
+
|
| 1907 |
+
.in-widget-title {
|
| 1908 |
+
color: #606060;
|
| 1909 |
+
}
|
| 1910 |
+
|
| 1911 |
+
.deleting .widget-title * {
|
| 1912 |
+
color: #aaa;
|
| 1913 |
+
}
|
| 1914 |
+
|
| 1915 |
+
.imgedit-menu div {
|
| 1916 |
+
border-color: #d5d5d5;
|
| 1917 |
+
background-color: #f1f1f1;
|
| 1918 |
+
}
|
| 1919 |
+
|
| 1920 |
+
.imgedit-menu div:hover {
|
| 1921 |
+
border-color: #c1c1c1;
|
| 1922 |
+
background-color: #eaeaea;
|
| 1923 |
+
}
|
| 1924 |
+
|
| 1925 |
+
.imgedit-menu div.disabled {
|
| 1926 |
+
border-color: #ccc;
|
| 1927 |
+
background-color: #ddd;
|
| 1928 |
+
filter: alpha(opacity=50);
|
| 1929 |
+
opacity: 0.5;
|
| 1930 |
+
}
|
| 1931 |
+
|
| 1932 |
+
#dashboard_recent_comments div.undo {
|
| 1933 |
+
border-top-color: #dfdfdf;
|
| 1934 |
+
}
|
| 1935 |
+
|
| 1936 |
+
.comment-ays,
|
| 1937 |
+
.comment-ays th {
|
| 1938 |
+
border-color: #ddd;
|
| 1939 |
+
}
|
| 1940 |
+
|
| 1941 |
+
.comment-ays th {
|
| 1942 |
+
background-color: #f1f1f1;
|
| 1943 |
+
}
|
| 1944 |
+
|
| 1945 |
+
/* added from nav-menu.css */
|
| 1946 |
+
#menu-management .menu-edit {
|
| 1947 |
+
border-color: #dfdfdf;
|
| 1948 |
+
}
|
| 1949 |
+
|
| 1950 |
+
#post-body {
|
| 1951 |
+
background: #fff;
|
| 1952 |
+
border-top-color: #fff;
|
| 1953 |
+
border-bottom-color: #dfdfdf;
|
| 1954 |
+
}
|
| 1955 |
+
|
| 1956 |
+
#nav-menu-header {
|
| 1957 |
+
border-bottom-color: #dfdfdf;
|
| 1958 |
+
}
|
| 1959 |
+
|
| 1960 |
+
#nav-menu-footer {
|
| 1961 |
+
border-top-color: #fff;
|
| 1962 |
+
}
|
| 1963 |
+
|
| 1964 |
+
#menu-management .nav-tabs-arrow a {
|
| 1965 |
+
color: #C1C1C1;
|
| 1966 |
+
}
|
| 1967 |
+
|
| 1968 |
+
#menu-management .nav-tabs-arrow a:hover {
|
| 1969 |
+
color: #D54E21;
|
| 1970 |
+
}
|
| 1971 |
+
|
| 1972 |
+
#menu-management .nav-tabs-arrow a:active {
|
| 1973 |
+
color: #464646;
|
| 1974 |
+
}
|
| 1975 |
+
|
| 1976 |
+
#menu-management .nav-tab-active {
|
| 1977 |
+
border-color: #dfdfdf;
|
| 1978 |
+
}
|
| 1979 |
+
|
| 1980 |
+
#menu-management .nav-tab {
|
| 1981 |
+
background: #fbfbfb;
|
| 1982 |
+
border-color: #dfdfdf;
|
| 1983 |
+
}
|
| 1984 |
+
|
| 1985 |
+
.js .input-with-default-title {
|
| 1986 |
+
color: #aaa;
|
| 1987 |
+
}
|
| 1988 |
+
|
| 1989 |
+
#cancel-save {
|
| 1990 |
+
color: #ff0000;
|
| 1991 |
+
}
|
| 1992 |
+
|
| 1993 |
+
#cancel-save:hover {
|
| 1994 |
+
background-color: #FF0000;
|
| 1995 |
+
color: #fff;
|
| 1996 |
+
}
|
| 1997 |
+
|
| 1998 |
+
.list-container {
|
| 1999 |
+
border-color: #DFDFDF;
|
| 2000 |
+
}
|
| 2001 |
+
|
| 2002 |
+
.menu-item-handle {
|
| 2003 |
+
border-color: #dfdfdf;
|
| 2004 |
+
}
|
| 2005 |
+
|
| 2006 |
+
.menu li.deleting .menu-item-handle {
|
| 2007 |
+
background-color: #f66;
|
| 2008 |
+
text-shadow: #ccc;
|
| 2009 |
+
}
|
| 2010 |
+
|
| 2011 |
+
.item-type { /* Menu item controls */
|
| 2012 |
+
color: #999999;
|
| 2013 |
+
}
|
| 2014 |
+
|
| 2015 |
+
.item-controls .menu-item-delete:hover {
|
| 2016 |
+
color: #ff0000;
|
| 2017 |
+
}
|
| 2018 |
+
|
| 2019 |
+
.item-edit {
|
| 2020 |
+
background: transparent url(../../../wp-admin/images/arrows.png) no-repeat 8px 10px;
|
| 2021 |
+
border-bottom-color: #eee;
|
| 2022 |
+
}
|
| 2023 |
+
|
| 2024 |
+
.item-edit:hover {
|
| 2025 |
+
background: transparent url(../../../wp-admin/images/arrows-dark.png) no-repeat 8px 10px;
|
| 2026 |
+
}
|
| 2027 |
+
|
| 2028 |
+
.menu-item-settings { /* Menu editing */
|
| 2029 |
+
border-color: #dfdfdf;
|
| 2030 |
+
}
|
| 2031 |
+
|
| 2032 |
+
.link-to-original {
|
| 2033 |
+
color: #777;
|
| 2034 |
+
border-color: #dfdfdf;
|
| 2035 |
+
}
|
| 2036 |
+
|
| 2037 |
+
#cancel-save:hover {
|
| 2038 |
+
color: #fff !important;
|
| 2039 |
+
}
|
| 2040 |
+
|
| 2041 |
+
#update-menu-item {
|
| 2042 |
+
color: #fff !important;
|
| 2043 |
+
}
|
| 2044 |
+
|
| 2045 |
+
#update-menu-item:hover,
|
| 2046 |
+
#update-menu-item:active,
|
| 2047 |
+
#update-menu-item:focus {
|
| 2048 |
+
color: #eaf2fa !important;
|
| 2049 |
+
border-color: #13455b !important;
|
| 2050 |
+
}
|
| 2051 |
+
|
| 2052 |
+
.submitbox .submitcancel {
|
| 2053 |
+
color: #21759B;
|
| 2054 |
+
border-bottom-color: #21759B;
|
| 2055 |
+
}
|
| 2056 |
+
|
| 2057 |
+
.submitbox .submitcancel:hover {
|
| 2058 |
+
background: #21759B;
|
| 2059 |
+
color: #fff;
|
| 2060 |
+
}
|
| 2061 |
+
/* end added from nav-menu.css */
|
| 2062 |
+
|
| 2063 |
+
#menu-management .nav-tab-active,
|
| 2064 |
+
.menu-item-handle,
|
| 2065 |
+
.menu-item-settings {
|
| 2066 |
+
-moz-box-shadow: inset 0 1px 0 #fff;
|
| 2067 |
+
-webkit-box-shadow: inset 0 1px 0 #fff;
|
| 2068 |
+
box-shadow: inset 0 1px 0 #fff;
|
| 2069 |
+
}
|
| 2070 |
+
|
| 2071 |
+
#menu-management .nav-tab-active {
|
| 2072 |
+
background: #f9f9f9;
|
| 2073 |
+
border-bottom-color: #f9f9f9;
|
| 2074 |
+
}
|
| 2075 |
+
|
| 2076 |
+
/* custom header & background pages */
|
| 2077 |
+
#upload-form label {
|
| 2078 |
+
color: #777;
|
| 2079 |
+
}
|
| 2080 |
+
/* custom header & background pages */
|
| 2081 |
+
|
| 2082 |
+
/* full screen */
|
| 2083 |
+
.fullscreen-overlay {
|
| 2084 |
+
background: #fff;
|
| 2085 |
+
}
|
| 2086 |
+
|
| 2087 |
+
.wp-fullscreen-focus #wp-fullscreen-title,
|
| 2088 |
+
.wp-fullscreen-focus #wp-fullscreen-container {
|
| 2089 |
+
border-color: #ccc;
|
| 2090 |
+
}
|
| 2091 |
+
|
| 2092 |
+
#fullscreen-topbar {
|
| 2093 |
+
border-bottom-color: #DFDFDF;
|
| 2094 |
+
}
|
bbp-admin/styles/admin-2.dev.css
ADDED
|
@@ -0,0 +1,2094 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/* =wp-admin area stylesheet with a bbPress twist
|
| 2 |
+
-------------------------------------------------------------- */
|
| 3 |
+
|
| 4 |
+
html,
|
| 5 |
+
.wp-dialog {
|
| 6 |
+
background-color: #fff;
|
| 7 |
+
}
|
| 8 |
+
|
| 9 |
+
* html input,
|
| 10 |
+
* html .widget {
|
| 11 |
+
border-color: #dfdfdf;
|
| 12 |
+
}
|
| 13 |
+
|
| 14 |
+
textarea,
|
| 15 |
+
input[type="text"],
|
| 16 |
+
input[type="password"],
|
| 17 |
+
input[type="file"],
|
| 18 |
+
input[type="button"],
|
| 19 |
+
input[type="submit"],
|
| 20 |
+
input[type="reset"],
|
| 21 |
+
select {
|
| 22 |
+
border-color: #dfdfdf;
|
| 23 |
+
background-color: #fff;
|
| 24 |
+
}
|
| 25 |
+
|
| 26 |
+
kbd,
|
| 27 |
+
code {
|
| 28 |
+
background: #eaeaea;
|
| 29 |
+
}
|
| 30 |
+
|
| 31 |
+
input[readonly] {
|
| 32 |
+
background-color: #eee;
|
| 33 |
+
}
|
| 34 |
+
|
| 35 |
+
.find-box-search {
|
| 36 |
+
border-color: #dfdfdf;
|
| 37 |
+
background-color: #f1f1f1;
|
| 38 |
+
}
|
| 39 |
+
|
| 40 |
+
.find-box {
|
| 41 |
+
background-color: #f1f1f1;
|
| 42 |
+
}
|
| 43 |
+
|
| 44 |
+
.find-box-inside {
|
| 45 |
+
background-color: #fff;
|
| 46 |
+
}
|
| 47 |
+
|
| 48 |
+
a.page-numbers:hover {
|
| 49 |
+
border-color: #999;
|
| 50 |
+
}
|
| 51 |
+
|
| 52 |
+
body,
|
| 53 |
+
#wpbody,
|
| 54 |
+
.form-table .pre {
|
| 55 |
+
color: #333;
|
| 56 |
+
}
|
| 57 |
+
|
| 58 |
+
body > #upload-menu {
|
| 59 |
+
border-bottom-color: #fff;
|
| 60 |
+
}
|
| 61 |
+
|
| 62 |
+
#postcustomstuff table,
|
| 63 |
+
#your-profile fieldset,
|
| 64 |
+
#rightnow,
|
| 65 |
+
div.dashboard-widget,
|
| 66 |
+
#dashboard-widgets p.dashboard-widget-links,
|
| 67 |
+
#replyrow #ed_reply_toolbar input {
|
| 68 |
+
border-color: #ccc;
|
| 69 |
+
}
|
| 70 |
+
|
| 71 |
+
#poststuff .inside label.spam,
|
| 72 |
+
#poststuff .inside label.deleted {
|
| 73 |
+
color: red;
|
| 74 |
+
}
|
| 75 |
+
|
| 76 |
+
#poststuff .inside label.waiting {
|
| 77 |
+
color: orange;
|
| 78 |
+
}
|
| 79 |
+
|
| 80 |
+
#poststuff .inside label.approved {
|
| 81 |
+
color: green;
|
| 82 |
+
}
|
| 83 |
+
|
| 84 |
+
#postcustomstuff table {
|
| 85 |
+
border-color: #dfdfdf;
|
| 86 |
+
background-color: #F9F9F9;
|
| 87 |
+
}
|
| 88 |
+
|
| 89 |
+
#postcustomstuff thead th {
|
| 90 |
+
background-color: #F1F1F1;
|
| 91 |
+
}
|
| 92 |
+
|
| 93 |
+
#postcustomstuff table input,
|
| 94 |
+
#postcustomstuff table textarea {
|
| 95 |
+
border-color: #dfdfdf;
|
| 96 |
+
background-color: #fff;
|
| 97 |
+
}
|
| 98 |
+
|
| 99 |
+
.widefat {
|
| 100 |
+
border-color: #dfdfdf;
|
| 101 |
+
background-color: #f9f9f9;
|
| 102 |
+
}
|
| 103 |
+
|
| 104 |
+
div.dashboard-widget-error {
|
| 105 |
+
background-color: #c43;
|
| 106 |
+
}
|
| 107 |
+
|
| 108 |
+
div.dashboard-widget-notice {
|
| 109 |
+
background-color: #cfe1ef;
|
| 110 |
+
}
|
| 111 |
+
|
| 112 |
+
div.dashboard-widget-submit {
|
| 113 |
+
border-top-color: #ccc;
|
| 114 |
+
}
|
| 115 |
+
|
| 116 |
+
div.tabs-panel,
|
| 117 |
+
.wp-tab-panel,
|
| 118 |
+
ul.category-tabs li.tabs,
|
| 119 |
+
ul.add-menu-item-tabs li.tabs,
|
| 120 |
+
.wp-tab-active {
|
| 121 |
+
border-color: #dfdfdf;
|
| 122 |
+
background-color: #fff;
|
| 123 |
+
}
|
| 124 |
+
|
| 125 |
+
ul.category-tabs li.tabs,
|
| 126 |
+
ul.add-menu-item-tabs li.tabs,
|
| 127 |
+
.wp-tab-active {
|
| 128 |
+
background-color: #fff;
|
| 129 |
+
}
|
| 130 |
+
|
| 131 |
+
input.disabled,
|
| 132 |
+
textarea.disabled {
|
| 133 |
+
background-color: #ccc;
|
| 134 |
+
}
|
| 135 |
+
/* #upload-menu li a.upload-tab-link, */
|
| 136 |
+
#plugin-information .action-button a,
|
| 137 |
+
#plugin-information .action-button a:hover,
|
| 138 |
+
#plugin-information .action-button a:visited {
|
| 139 |
+
color: #fff;
|
| 140 |
+
}
|
| 141 |
+
|
| 142 |
+
.widget .widget-top,
|
| 143 |
+
.postbox h3,
|
| 144 |
+
.stuffbox h3,
|
| 145 |
+
.widefat thead tr th,
|
| 146 |
+
.widefat tfoot tr th,
|
| 147 |
+
h3.dashboard-widget-title,
|
| 148 |
+
h3.dashboard-widget-title span,
|
| 149 |
+
h3.dashboard-widget-title small,
|
| 150 |
+
.find-box-head,
|
| 151 |
+
.sidebar-name,
|
| 152 |
+
#nav-menu-header,
|
| 153 |
+
#nav-menu-footer,
|
| 154 |
+
.menu-item-handle,
|
| 155 |
+
#fullscreen-topbar {
|
| 156 |
+
background-color: #f1f1f1; /* Fallback */
|
| 157 |
+
background-image: -ms-linear-gradient(top, #eefcf1, #deece1); /* IE10 */
|
| 158 |
+
background-image: -moz-linear-gradient(top, #eefcf1, #deece1); /* Firefox */
|
| 159 |
+
background-image: -o-linear-gradient(top, #eefcf1, #deece1); /* Opera */
|
| 160 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#eefcf1), to(#deece1)); /* old Webkit */
|
| 161 |
+
background-image: -webkit-linear-gradient(top, #eefcf1, #deece1); /* new Webkit */
|
| 162 |
+
background-image: linear-gradient(top, #eefcf1, #deece1); /* proposed W3C Markup */
|
| 163 |
+
}
|
| 164 |
+
|
| 165 |
+
.widget .widget-top,
|
| 166 |
+
.postbox h3,
|
| 167 |
+
.stuffbox h3 {
|
| 168 |
+
border-bottom-color: #dfdfdf;
|
| 169 |
+
text-shadow: #fff 0 1px 0;
|
| 170 |
+
-moz-box-shadow: 0 1px 0 #fff;
|
| 171 |
+
-webkit-box-shadow: 0 1px 0 #fff;
|
| 172 |
+
box-shadow: 0 1px 0 #fff;
|
| 173 |
+
}
|
| 174 |
+
|
| 175 |
+
.form-table th,
|
| 176 |
+
.form-wrap label {
|
| 177 |
+
color: #222;
|
| 178 |
+
text-shadow: #fff 0 1px 0;
|
| 179 |
+
}
|
| 180 |
+
|
| 181 |
+
.description,
|
| 182 |
+
.form-wrap p {
|
| 183 |
+
color: #666;
|
| 184 |
+
}
|
| 185 |
+
|
| 186 |
+
strong .post-com-count span {
|
| 187 |
+
background-color: #21759b;
|
| 188 |
+
}
|
| 189 |
+
|
| 190 |
+
.sorthelper {
|
| 191 |
+
background-color: #ccf3fa;
|
| 192 |
+
}
|
| 193 |
+
|
| 194 |
+
.ac_match,
|
| 195 |
+
.subsubsub a.current {
|
| 196 |
+
color: #000;
|
| 197 |
+
}
|
| 198 |
+
|
| 199 |
+
.wrap h2 {
|
| 200 |
+
color: #464646;
|
| 201 |
+
}
|
| 202 |
+
|
| 203 |
+
.wrap .add-new-h2 {
|
| 204 |
+
background: #f1f1f1;
|
| 205 |
+
}
|
| 206 |
+
|
| 207 |
+
.subtitle {
|
| 208 |
+
color: #777;
|
| 209 |
+
}
|
| 210 |
+
|
| 211 |
+
.ac_over {
|
| 212 |
+
background-color: #f0f0b8;
|
| 213 |
+
}
|
| 214 |
+
|
| 215 |
+
.ac_results {
|
| 216 |
+
background-color: #fff;
|
| 217 |
+
border-color: #808080;
|
| 218 |
+
}
|
| 219 |
+
|
| 220 |
+
.ac_results li {
|
| 221 |
+
color: #101010;
|
| 222 |
+
}
|
| 223 |
+
|
| 224 |
+
.alternate,
|
| 225 |
+
.alt {
|
| 226 |
+
background-color: #fcfcfc;
|
| 227 |
+
}
|
| 228 |
+
|
| 229 |
+
.available-theme a.screenshot {
|
| 230 |
+
background-color: #f1f1f1;
|
| 231 |
+
border-color: #ddd;
|
| 232 |
+
}
|
| 233 |
+
|
| 234 |
+
.bar {
|
| 235 |
+
background-color: #e8e8e8;
|
| 236 |
+
border-right-color: #99d;
|
| 237 |
+
}
|
| 238 |
+
|
| 239 |
+
#media-upload,
|
| 240 |
+
#media-upload .media-item .slidetoggle {
|
| 241 |
+
background: #fff;
|
| 242 |
+
}
|
| 243 |
+
|
| 244 |
+
#media-upload .slidetoggle {
|
| 245 |
+
border-top-color: #dfdfdf;
|
| 246 |
+
}
|
| 247 |
+
|
| 248 |
+
div.error,
|
| 249 |
+
.login #login_error {
|
| 250 |
+
background-color: #ffebe8;
|
| 251 |
+
border-color: #c00;
|
| 252 |
+
}
|
| 253 |
+
|
| 254 |
+
div.error a {
|
| 255 |
+
color: #c00;
|
| 256 |
+
}
|
| 257 |
+
|
| 258 |
+
.form-invalid {
|
| 259 |
+
background-color: #ffebe8 !important;
|
| 260 |
+
}
|
| 261 |
+
|
| 262 |
+
.form-invalid input,
|
| 263 |
+
.form-invalid select {
|
| 264 |
+
border-color: #c00 !important;
|
| 265 |
+
}
|
| 266 |
+
|
| 267 |
+
.submit {
|
| 268 |
+
border-color: #DFDFDF;
|
| 269 |
+
}
|
| 270 |
+
|
| 271 |
+
.highlight {
|
| 272 |
+
background-color: #e4f2fd;
|
| 273 |
+
color: #000;
|
| 274 |
+
}
|
| 275 |
+
|
| 276 |
+
.howto,
|
| 277 |
+
.nonessential,
|
| 278 |
+
#edit-slug-box,
|
| 279 |
+
.form-input-tip,
|
| 280 |
+
.subsubsub {
|
| 281 |
+
color: #666;
|
| 282 |
+
}
|
| 283 |
+
|
| 284 |
+
.media-item {
|
| 285 |
+
border-bottom-color: #dfdfdf;
|
| 286 |
+
}
|
| 287 |
+
|
| 288 |
+
#wpbody-content #media-items .describe {
|
| 289 |
+
border-top-color: #dfdfdf;
|
| 290 |
+
}
|
| 291 |
+
|
| 292 |
+
.media-upload-form label.form-help,
|
| 293 |
+
td.help {
|
| 294 |
+
color: #9a9a9a;
|
| 295 |
+
}
|
| 296 |
+
|
| 297 |
+
.post-com-count {
|
| 298 |
+
background-image: url(../../../wp-admin/images/bubble_bg.gif);
|
| 299 |
+
color: #fff;
|
| 300 |
+
}
|
| 301 |
+
|
| 302 |
+
.post-com-count span {
|
| 303 |
+
background-color: #bbb;
|
| 304 |
+
color: #fff;
|
| 305 |
+
}
|
| 306 |
+
|
| 307 |
+
.post-com-count:hover span {
|
| 308 |
+
background-color: #d54e21;
|
| 309 |
+
}
|
| 310 |
+
|
| 311 |
+
.quicktags, .search {
|
| 312 |
+
background-color: #ccc;
|
| 313 |
+
color: #000;
|
| 314 |
+
}
|
| 315 |
+
|
| 316 |
+
.side-info h5 {
|
| 317 |
+
border-bottom-color: #dadada;
|
| 318 |
+
}
|
| 319 |
+
|
| 320 |
+
.side-info ul {
|
| 321 |
+
color: #666;
|
| 322 |
+
}
|
| 323 |
+
|
| 324 |
+
.button,
|
| 325 |
+
.button-secondary,
|
| 326 |
+
.submit input,
|
| 327 |
+
input[type=button],
|
| 328 |
+
input[type=submit] {
|
| 329 |
+
border-color: #bbb;
|
| 330 |
+
color: #464646;
|
| 331 |
+
}
|
| 332 |
+
|
| 333 |
+
.button:hover,
|
| 334 |
+
.button-secondary:hover,
|
| 335 |
+
.submit input:hover,
|
| 336 |
+
input[type=button]:hover,
|
| 337 |
+
input[type=submit]:hover {
|
| 338 |
+
color: #000;
|
| 339 |
+
border-color: #666;
|
| 340 |
+
}
|
| 341 |
+
|
| 342 |
+
.button,
|
| 343 |
+
.submit input,
|
| 344 |
+
.button-secondary {
|
| 345 |
+
background: #f2f2f2 url(../../../wp-admin/images/white-grad.png) repeat-x scroll left top;
|
| 346 |
+
text-shadow: rgba(255,255,255,1) 0 1px 0;
|
| 347 |
+
}
|
| 348 |
+
|
| 349 |
+
.button:active,
|
| 350 |
+
.submit input:active,
|
| 351 |
+
.button-secondary:active {
|
| 352 |
+
background: #eee url(../../../wp-admin/images/white-grad-active.png) repeat-x scroll left top;
|
| 353 |
+
}
|
| 354 |
+
|
| 355 |
+
input.button-primary,
|
| 356 |
+
button.button-primary,
|
| 357 |
+
a.button-primary {
|
| 358 |
+
border-color: #555;
|
| 359 |
+
font-weight: bold;
|
| 360 |
+
color: #fff;
|
| 361 |
+
background: #060 url(../images/button-grad.png) repeat-x scroll left top;
|
| 362 |
+
text-shadow: rgba(0,0,0,0.3) 0 -1px 0;
|
| 363 |
+
}
|
| 364 |
+
|
| 365 |
+
input.button-primary:active,
|
| 366 |
+
button.button-primary:active,
|
| 367 |
+
a.button-primary:active {
|
| 368 |
+
background: #060 url(../images/button-grad.png) repeat-x scroll left bottom;
|
| 369 |
+
color: #cae8be;
|
| 370 |
+
}
|
| 371 |
+
|
| 372 |
+
input.button-primary:hover,
|
| 373 |
+
button.button-primary:hover,
|
| 374 |
+
a.button-primary:hover,
|
| 375 |
+
a.button-primary:focus,
|
| 376 |
+
a.button-primary:active {
|
| 377 |
+
border-color: #13455b;
|
| 378 |
+
color: #eaf2fa;
|
| 379 |
+
}
|
| 380 |
+
|
| 381 |
+
.button-disabled,
|
| 382 |
+
.button[disabled],
|
| 383 |
+
.button:disabled,
|
| 384 |
+
.button-secondary[disabled],
|
| 385 |
+
.button-secondary:disabled,
|
| 386 |
+
a.button.disabled {
|
| 387 |
+
color: #aaa !important;
|
| 388 |
+
border-color: #555 !important;
|
| 389 |
+
}
|
| 390 |
+
|
| 391 |
+
.button-primary-disabled,
|
| 392 |
+
.button-primary[disabled],
|
| 393 |
+
.button-primary:disabled {
|
| 394 |
+
color: #9FD0D5 !important;
|
| 395 |
+
background: #298CBA !important;
|
| 396 |
+
}
|
| 397 |
+
|
| 398 |
+
a:hover,
|
| 399 |
+
a:active,
|
| 400 |
+
a:focus {
|
| 401 |
+
color: #d54e21;
|
| 402 |
+
}
|
| 403 |
+
|
| 404 |
+
#wphead #viewsite a:hover,
|
| 405 |
+
#adminmenu a:hover,
|
| 406 |
+
#adminmenu ul.wp-submenu a:hover,
|
| 407 |
+
#the-comment-list .comment a:hover,
|
| 408 |
+
#rightnow a:hover,
|
| 409 |
+
#media-upload a.del-link:hover,
|
| 410 |
+
div.dashboard-widget-submit input:hover,
|
| 411 |
+
.subsubsub a:hover,
|
| 412 |
+
.subsubsub a.current:hover,
|
| 413 |
+
.ui-tabs-nav a:hover,
|
| 414 |
+
.plugins .inactive a:hover,
|
| 415 |
+
#all-plugins-table .plugins .inactive a:hover,
|
| 416 |
+
#search-plugins-table .plugins .inactive a:hover {
|
| 417 |
+
color: #d54e21;
|
| 418 |
+
}
|
| 419 |
+
|
| 420 |
+
#the-comment-list .comment-item,
|
| 421 |
+
#dashboard-widgets #dashboard_quick_press form p.submit {
|
| 422 |
+
border-color: #dfdfdf;
|
| 423 |
+
}
|
| 424 |
+
|
| 425 |
+
#side-sortables .category-tabs .tabs a,
|
| 426 |
+
#side-sortables .add-menu-item-tabs .tabs a,
|
| 427 |
+
.wp-tab-bar .wp-tab-active a {
|
| 428 |
+
color: #333;
|
| 429 |
+
}
|
| 430 |
+
|
| 431 |
+
#rightnow .rbutton {
|
| 432 |
+
background-color: #ebebeb;
|
| 433 |
+
color: #264761;
|
| 434 |
+
}
|
| 435 |
+
|
| 436 |
+
.submitbox .submit {
|
| 437 |
+
background-color: #464646;
|
| 438 |
+
color: #ccc;
|
| 439 |
+
}
|
| 440 |
+
|
| 441 |
+
.plugins a.delete:hover,
|
| 442 |
+
#all-plugins-table .plugins a.delete:hover,
|
| 443 |
+
#search-plugins-table .plugins a.delete:hover,
|
| 444 |
+
.submitbox .submitdelete {
|
| 445 |
+
color: #f00;
|
| 446 |
+
border-bottom-color: #f00;
|
| 447 |
+
}
|
| 448 |
+
|
| 449 |
+
.submitbox .submitdelete:hover,
|
| 450 |
+
#media-items a.delete:hover {
|
| 451 |
+
color: #fff;
|
| 452 |
+
background-color: #f00;
|
| 453 |
+
border-bottom-color: #f00;
|
| 454 |
+
}
|
| 455 |
+
|
| 456 |
+
#normal-sortables .submitbox .submitdelete:hover {
|
| 457 |
+
color: #000;
|
| 458 |
+
background-color: #f00;
|
| 459 |
+
border-bottom-color: #f00;
|
| 460 |
+
}
|
| 461 |
+
|
| 462 |
+
.tablenav .dots {
|
| 463 |
+
border-color: transparent;
|
| 464 |
+
}
|
| 465 |
+
|
| 466 |
+
.tablenav .next,
|
| 467 |
+
.tablenav .prev {
|
| 468 |
+
border-color: transparent;
|
| 469 |
+
color: #21759b;
|
| 470 |
+
}
|
| 471 |
+
|
| 472 |
+
.tablenav .next:hover,
|
| 473 |
+
.tablenav .prev:hover {
|
| 474 |
+
border-color: transparent;
|
| 475 |
+
color: #d54e21;
|
| 476 |
+
}
|
| 477 |
+
|
| 478 |
+
div.updated,
|
| 479 |
+
.login .message {
|
| 480 |
+
background-color: #ffffe0;
|
| 481 |
+
border-color: #e6db55;
|
| 482 |
+
}
|
| 483 |
+
|
| 484 |
+
.update-message {
|
| 485 |
+
color: #000;
|
| 486 |
+
}
|
| 487 |
+
|
| 488 |
+
a.page-numbers {
|
| 489 |
+
border-bottom-color: #B8D3E2;
|
| 490 |
+
}
|
| 491 |
+
|
| 492 |
+
.commentlist li {
|
| 493 |
+
border-bottom-color: #ccc;
|
| 494 |
+
}
|
| 495 |
+
|
| 496 |
+
.widefat td,
|
| 497 |
+
.widefat th {
|
| 498 |
+
border-top-color: #fff;
|
| 499 |
+
border-bottom-color: #dfdfdf;
|
| 500 |
+
}
|
| 501 |
+
|
| 502 |
+
.widefat th {
|
| 503 |
+
text-shadow: rgba(255,255,255,0.8) 0 1px 0;
|
| 504 |
+
}
|
| 505 |
+
|
| 506 |
+
.widefat td {
|
| 507 |
+
color: #555;
|
| 508 |
+
}
|
| 509 |
+
.widefat p,
|
| 510 |
+
.widefat ol,
|
| 511 |
+
.widefat ul {
|
| 512 |
+
color: #333;
|
| 513 |
+
}
|
| 514 |
+
|
| 515 |
+
.widefat thead tr th,
|
| 516 |
+
.widefat tfoot tr th,
|
| 517 |
+
h3.dashboard-widget-title,
|
| 518 |
+
h3.dashboard-widget-title span,
|
| 519 |
+
h3.dashboard-widget-title small,
|
| 520 |
+
.find-box-head {
|
| 521 |
+
color: #333;
|
| 522 |
+
}
|
| 523 |
+
|
| 524 |
+
th.sortable a:hover, th.sortable a:active, th.sortable a:focus {
|
| 525 |
+
color: #333;
|
| 526 |
+
}
|
| 527 |
+
|
| 528 |
+
h3.dashboard-widget-title small a {
|
| 529 |
+
color: #d7d7d7;
|
| 530 |
+
}
|
| 531 |
+
|
| 532 |
+
h3.dashboard-widget-title small a:hover {
|
| 533 |
+
color: #fff;
|
| 534 |
+
}
|
| 535 |
+
|
| 536 |
+
a,
|
| 537 |
+
#adminmenu a,
|
| 538 |
+
#poststuff #edButtonPreview,
|
| 539 |
+
#poststuff #edButtonHTML,
|
| 540 |
+
#the-comment-list p.comment-author strong a,
|
| 541 |
+
#media-upload a.del-link,
|
| 542 |
+
#media-items a.delete,
|
| 543 |
+
.plugins a.delete,
|
| 544 |
+
.ui-tabs-nav a {
|
| 545 |
+
color: #007700;
|
| 546 |
+
}
|
| 547 |
+
|
| 548 |
+
#adminmenu .awaiting-mod,
|
| 549 |
+
#adminmenu .update-plugins,
|
| 550 |
+
#sidemenu a .update-plugins,
|
| 551 |
+
#rightnow .reallynow {
|
| 552 |
+
background-color: #464646;
|
| 553 |
+
color: #fff;
|
| 554 |
+
-moz-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 555 |
+
-khtml-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 556 |
+
-webkit-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 557 |
+
box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 558 |
+
}
|
| 559 |
+
#plugin-information .action-button {
|
| 560 |
+
background-color: #d54e21;
|
| 561 |
+
color: #fff;
|
| 562 |
+
}
|
| 563 |
+
|
| 564 |
+
#adminmenu li.current a .awaiting-mod,
|
| 565 |
+
#adminmenu li a.wp-has-current-submenu .update-plugins{
|
| 566 |
+
background-color: #464646;
|
| 567 |
+
color: #fff;
|
| 568 |
+
-moz-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 569 |
+
-khtml-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 570 |
+
-webkit-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 571 |
+
box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 572 |
+
}
|
| 573 |
+
|
| 574 |
+
div#media-upload-header,
|
| 575 |
+
div#plugin-information-header {
|
| 576 |
+
background-color: #f9f9f9;
|
| 577 |
+
border-bottom-color: #dfdfdf;
|
| 578 |
+
}
|
| 579 |
+
|
| 580 |
+
#currenttheme img {
|
| 581 |
+
border-color: #666;
|
| 582 |
+
}
|
| 583 |
+
|
| 584 |
+
#dashboard_secondary div.dashboard-widget-content ul li a {
|
| 585 |
+
background-color: #f9f9f9;
|
| 586 |
+
}
|
| 587 |
+
|
| 588 |
+
input.readonly, textarea.readonly {
|
| 589 |
+
background-color: #ddd;
|
| 590 |
+
}
|
| 591 |
+
|
| 592 |
+
#ed_toolbar input,
|
| 593 |
+
#ed_reply_toolbar input {
|
| 594 |
+
background: #fff url("../../../wp-admin/images/fade-butt.png") repeat-x 0 -2px;
|
| 595 |
+
}
|
| 596 |
+
|
| 597 |
+
#editable-post-name {
|
| 598 |
+
background-color: #fffbcc;
|
| 599 |
+
}
|
| 600 |
+
|
| 601 |
+
#edit-slug-box strong,
|
| 602 |
+
.tablenav .displaying-num,
|
| 603 |
+
#submitted-on,
|
| 604 |
+
.submitted-on {
|
| 605 |
+
color: #777;
|
| 606 |
+
}
|
| 607 |
+
|
| 608 |
+
.login #nav a,
|
| 609 |
+
.login #backtoblog a {
|
| 610 |
+
color: #21759b !important;
|
| 611 |
+
}
|
| 612 |
+
|
| 613 |
+
.login #nav a:hover,
|
| 614 |
+
.login #backtoblog a:hover {
|
| 615 |
+
color: #d54e21 !important;
|
| 616 |
+
}
|
| 617 |
+
|
| 618 |
+
#footer {
|
| 619 |
+
color: #777;
|
| 620 |
+
border-color: #dfdfdf;
|
| 621 |
+
}
|
| 622 |
+
|
| 623 |
+
#media-items,
|
| 624 |
+
.imgedit-group {
|
| 625 |
+
border-color: #dfdfdf;
|
| 626 |
+
}
|
| 627 |
+
|
| 628 |
+
.checkbox,
|
| 629 |
+
.side-info,
|
| 630 |
+
.plugins tr,
|
| 631 |
+
#your-profile #rich_editing {
|
| 632 |
+
background-color: #fcfcfc;
|
| 633 |
+
}
|
| 634 |
+
|
| 635 |
+
.plugins .inactive,
|
| 636 |
+
.plugins .inactive th,
|
| 637 |
+
.plugins .inactive td,
|
| 638 |
+
tr.inactive + tr.plugin-update-tr .plugin-update {
|
| 639 |
+
background-color: #f4f4f4;
|
| 640 |
+
}
|
| 641 |
+
|
| 642 |
+
.plugin-update-tr .update-message {
|
| 643 |
+
background-color: #fffbe4;
|
| 644 |
+
border-color: #dfdfdf;
|
| 645 |
+
}
|
| 646 |
+
|
| 647 |
+
.plugins .active,
|
| 648 |
+
.plugins .active th,
|
| 649 |
+
.plugins .active td {
|
| 650 |
+
color: #000;
|
| 651 |
+
}
|
| 652 |
+
|
| 653 |
+
.plugins .inactive a {
|
| 654 |
+
color: #557799;
|
| 655 |
+
}
|
| 656 |
+
|
| 657 |
+
#the-comment-list tr.undo,
|
| 658 |
+
#the-comment-list div.undo {
|
| 659 |
+
background-color: #f4f4f4;
|
| 660 |
+
}
|
| 661 |
+
|
| 662 |
+
#the-comment-list .unapproved {
|
| 663 |
+
background-color: #ffffe0;
|
| 664 |
+
}
|
| 665 |
+
|
| 666 |
+
#the-comment-list .approve a {
|
| 667 |
+
color: #006505;
|
| 668 |
+
}
|
| 669 |
+
|
| 670 |
+
#the-comment-list .unapprove a {
|
| 671 |
+
color: #d98500;
|
| 672 |
+
}
|
| 673 |
+
|
| 674 |
+
table.widefat span.delete a,
|
| 675 |
+
table.widefat span.trash a,
|
| 676 |
+
table.widefat span.spam a,
|
| 677 |
+
#dashboard_recent_comments .delete a,
|
| 678 |
+
#dashboard_recent_comments .trash a,
|
| 679 |
+
#dashboard_recent_comments .spam a {
|
| 680 |
+
color: #bc0b0b;
|
| 681 |
+
}
|
| 682 |
+
|
| 683 |
+
.widget,
|
| 684 |
+
#widget-list .widget-top,
|
| 685 |
+
.postbox,
|
| 686 |
+
#titlediv,
|
| 687 |
+
#poststuff .postarea,
|
| 688 |
+
.stuffbox {
|
| 689 |
+
border-color: #dfdfdf;
|
| 690 |
+
-moz-box-shadow: inset 0 1px 0 #fff;
|
| 691 |
+
-webkit-box-shadow: inset 0 1px 0 #fff;
|
| 692 |
+
box-shadow: inset 0 1px 0 #fff;
|
| 693 |
+
-moz-border-radius: 3px;
|
| 694 |
+
-khtml-border-radius: 3px;
|
| 695 |
+
-webkit-border-radius: 3px;
|
| 696 |
+
border-radius: 3px;
|
| 697 |
+
}
|
| 698 |
+
|
| 699 |
+
.widget,
|
| 700 |
+
#widget-list .widget-top,
|
| 701 |
+
.postbox,
|
| 702 |
+
.menu-item-settings {
|
| 703 |
+
background-color: #deece1; /* Fallback */
|
| 704 |
+
background-image: -ms-linear-gradient(top, #eefcf1, #eefcf1); /* IE10 */
|
| 705 |
+
background-image: -moz-linear-gradient(top, #deece1, #eefcf1); /* Firefox */
|
| 706 |
+
background-image: -o-linear-gradient(top, #deece1, #eefcf1); /* Opera */
|
| 707 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#deece1), to(#eefcf1)); /* old Webkit */
|
| 708 |
+
background-image: -webkit-linear-gradient(top, #deece1, #eefcf1); /* new Webkit */
|
| 709 |
+
background-image: linear-gradient(top, #deece1, #eefcf1); /* proposed W3C Markup */
|
| 710 |
+
}
|
| 711 |
+
|
| 712 |
+
.postbox h3 {
|
| 713 |
+
color: #464646;
|
| 714 |
+
}
|
| 715 |
+
|
| 716 |
+
.widget .widget-top {
|
| 717 |
+
color: #222;
|
| 718 |
+
}
|
| 719 |
+
|
| 720 |
+
.sidebar-name:hover h3,
|
| 721 |
+
.postbox h3:hover {
|
| 722 |
+
color: #000;
|
| 723 |
+
}
|
| 724 |
+
|
| 725 |
+
.curtime #timestamp {
|
| 726 |
+
background-image: url(../../../wp-admin/images/date-button.gif);
|
| 727 |
+
}
|
| 728 |
+
|
| 729 |
+
#quicktags #ed_link {
|
| 730 |
+
color: #00f;
|
| 731 |
+
}
|
| 732 |
+
|
| 733 |
+
#rightnow .youhave {
|
| 734 |
+
background-color: #f0f6fb;
|
| 735 |
+
}
|
| 736 |
+
|
| 737 |
+
#rightnow a {
|
| 738 |
+
color: #448abd;
|
| 739 |
+
}
|
| 740 |
+
|
| 741 |
+
.tagchecklist span a,
|
| 742 |
+
#bulk-titles div a {
|
| 743 |
+
background: url(../../../wp-admin/images/xit.gif) no-repeat;
|
| 744 |
+
}
|
| 745 |
+
|
| 746 |
+
.tagchecklist span a:hover,
|
| 747 |
+
#bulk-titles div a:hover {
|
| 748 |
+
background: url(../../../wp-admin/images/xit.gif) no-repeat -10px 0;
|
| 749 |
+
}
|
| 750 |
+
|
| 751 |
+
#update-nag, .update-nag {
|
| 752 |
+
background-color: #FFFBCC;
|
| 753 |
+
border-color: #E6DB55;
|
| 754 |
+
color: #555;
|
| 755 |
+
}
|
| 756 |
+
|
| 757 |
+
.login #backtoblog a {
|
| 758 |
+
color: #464646;
|
| 759 |
+
}
|
| 760 |
+
|
| 761 |
+
#wphead {
|
| 762 |
+
border-bottom:#dfdfdf 1px solid;
|
| 763 |
+
}
|
| 764 |
+
|
| 765 |
+
#wphead h1 a {
|
| 766 |
+
color: #464646;
|
| 767 |
+
}
|
| 768 |
+
|
| 769 |
+
#user_info {
|
| 770 |
+
color: #555;
|
| 771 |
+
}
|
| 772 |
+
|
| 773 |
+
#user_info:hover,
|
| 774 |
+
#user_info.active {
|
| 775 |
+
color: #222;
|
| 776 |
+
}
|
| 777 |
+
|
| 778 |
+
#user_info.active {
|
| 779 |
+
background-color: #f1f1f1; /* Fallback */
|
| 780 |
+
background-image: -ms-linear-gradient(bottom, #e9e9e9, #f9f9f9); /* IE10 */
|
| 781 |
+
background-image: -moz-linear-gradient(bottom, #e9e9e9, #f9f9f9); /* Firefox */
|
| 782 |
+
background-image: -o-linear-gradient(bottom, #e9e9e9, #f9f9f9); /* Opera */
|
| 783 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#e9e9e9), to(#f9f9f9)); /* old Webkit */
|
| 784 |
+
background-image: -webkit-linear-gradient(bottom, #e9e9e9, #f9f9f9); /* new Webkit */
|
| 785 |
+
background-image: linear-gradient(bottom, #e9e9e9, #f9f9f9); /* proposed W3C Markup */
|
| 786 |
+
border-color: #aaa #aaa #dfdfdf;
|
| 787 |
+
}
|
| 788 |
+
|
| 789 |
+
#user_info_arrow {
|
| 790 |
+
background: transparent url(../../../wp-admin/images/arrows.png) no-repeat 6px 5px;
|
| 791 |
+
}
|
| 792 |
+
|
| 793 |
+
#user_info:hover #user_info_arrow,
|
| 794 |
+
#user_info.active #user_info_arrow {
|
| 795 |
+
background: transparent url(../../../wp-admin/images/arrows-dark.png) no-repeat 6px 5px;
|
| 796 |
+
}
|
| 797 |
+
|
| 798 |
+
#user_info_links {
|
| 799 |
+
-moz-box-shadow: 0 3px 2px -2px rgba( 0, 0, 0, 0.2 );
|
| 800 |
+
-webkit-box-shadow: 0 3px 2px -2px rgba( 0, 0, 0, 0.2 );
|
| 801 |
+
box-shadow: 0 3px 2px -2px rgba( 0, 0, 0, 0.2 );
|
| 802 |
+
}
|
| 803 |
+
|
| 804 |
+
#user_info_links ul {
|
| 805 |
+
background: #f1f1f1;
|
| 806 |
+
border-color: #ccc #aaa #aaa;
|
| 807 |
+
-moz-box-shadow: inset 0 1px 0 #f9f9f9;
|
| 808 |
+
-webkit-box-shadow: inset 0 1px 0 #f9f9f9;
|
| 809 |
+
box-shadow: inset 0 1px 0 #f9f9f9;
|
| 810 |
+
}
|
| 811 |
+
|
| 812 |
+
#user_info_links li:hover {
|
| 813 |
+
background-color: #dfdfdf;
|
| 814 |
+
}
|
| 815 |
+
|
| 816 |
+
#user_info_links li:hover a,
|
| 817 |
+
#user_info_links li a:hover {
|
| 818 |
+
text-decoration: none;
|
| 819 |
+
}
|
| 820 |
+
|
| 821 |
+
#user_info a:link,
|
| 822 |
+
#user_info a:visited,
|
| 823 |
+
#footer a:link,
|
| 824 |
+
#footer a:visited {
|
| 825 |
+
text-decoration: none;
|
| 826 |
+
}
|
| 827 |
+
|
| 828 |
+
#footer a:hover {
|
| 829 |
+
color: #000;
|
| 830 |
+
text-decoration: underline;
|
| 831 |
+
}
|
| 832 |
+
|
| 833 |
+
div#media-upload-error,
|
| 834 |
+
.file-error,
|
| 835 |
+
abbr.required,
|
| 836 |
+
.widget-control-remove:hover,
|
| 837 |
+
table.widefat .delete a:hover,
|
| 838 |
+
table.widefat .trash a:hover,
|
| 839 |
+
table.widefat .spam a:hover,
|
| 840 |
+
#dashboard_recent_comments .delete a:hover,
|
| 841 |
+
#dashboard_recent_comments .trash a:hover
|
| 842 |
+
#dashboard_recent_comments .spam a:hover {
|
| 843 |
+
color: #f00;
|
| 844 |
+
}
|
| 845 |
+
|
| 846 |
+
#pass-strength-result {
|
| 847 |
+
background-color: #eee;
|
| 848 |
+
border-color: #ddd !important;
|
| 849 |
+
}
|
| 850 |
+
|
| 851 |
+
#pass-strength-result.bad {
|
| 852 |
+
background-color: #ffb78c;
|
| 853 |
+
border-color: #ff853c !important;
|
| 854 |
+
}
|
| 855 |
+
|
| 856 |
+
#pass-strength-result.good {
|
| 857 |
+
background-color: #ffec8b;
|
| 858 |
+
border-color: #fc0 !important;
|
| 859 |
+
}
|
| 860 |
+
|
| 861 |
+
#pass-strength-result.short {
|
| 862 |
+
background-color: #ffa0a0;
|
| 863 |
+
border-color: #f04040 !important;
|
| 864 |
+
}
|
| 865 |
+
|
| 866 |
+
#pass-strength-result.strong {
|
| 867 |
+
background-color: #c3ff88;
|
| 868 |
+
border-color: #8dff1c !important;
|
| 869 |
+
}
|
| 870 |
+
|
| 871 |
+
/* editors */
|
| 872 |
+
#quicktags {
|
| 873 |
+
border-color: #ccc;
|
| 874 |
+
background-color: #dfdfdf;
|
| 875 |
+
background-image: url("../../../wp-admin/images/ed-bg.gif");
|
| 876 |
+
}
|
| 877 |
+
|
| 878 |
+
#ed_toolbar input {
|
| 879 |
+
border-color: #C3C3C3;
|
| 880 |
+
}
|
| 881 |
+
|
| 882 |
+
#ed_toolbar input:hover {
|
| 883 |
+
border-color: #aaa;
|
| 884 |
+
background: #ddd;
|
| 885 |
+
}
|
| 886 |
+
|
| 887 |
+
#poststuff .wp_themeSkin .mceStatusbar {
|
| 888 |
+
border-color: #dfdfdf;
|
| 889 |
+
}
|
| 890 |
+
|
| 891 |
+
#poststuff .wp_themeSkin .mceStatusbar * {
|
| 892 |
+
color: #555;
|
| 893 |
+
}
|
| 894 |
+
|
| 895 |
+
#poststuff #edButtonPreview,
|
| 896 |
+
#poststuff #edButtonHTML {
|
| 897 |
+
background-color: #f1f1f1;
|
| 898 |
+
border-color: #dfdfdf #dfdfdf #ccc;
|
| 899 |
+
color: #999;
|
| 900 |
+
}
|
| 901 |
+
|
| 902 |
+
#poststuff #editor-toolbar .active {
|
| 903 |
+
border-color: #ccc #ccc #e9e9e9;
|
| 904 |
+
background-color: #e9e9e9;
|
| 905 |
+
color: #333;
|
| 906 |
+
}
|
| 907 |
+
|
| 908 |
+
/* TinyMCE */
|
| 909 |
+
#post-status-info {
|
| 910 |
+
background-color: #EDEDED;
|
| 911 |
+
}
|
| 912 |
+
|
| 913 |
+
.wp_themeSkin *,
|
| 914 |
+
.wp_themeSkin a:hover,
|
| 915 |
+
.wp_themeSkin a:link,
|
| 916 |
+
.wp_themeSkin a:visited,
|
| 917 |
+
.wp_themeSkin a:active {
|
| 918 |
+
color: #000;
|
| 919 |
+
}
|
| 920 |
+
|
| 921 |
+
/* Containers */
|
| 922 |
+
.wp_themeSkin table.mceLayout {
|
| 923 |
+
border-color: #ccc #ccc #dfdfdf;
|
| 924 |
+
}
|
| 925 |
+
|
| 926 |
+
#editorcontainer #content,
|
| 927 |
+
#editorcontainer .wp_themeSkin .mceIframeContainer {
|
| 928 |
+
-moz-box-shadow: inset 1px 1px 2px rgba( 0, 0, 0, 0.1 );
|
| 929 |
+
-webkit-box-shadow: inset 1px 1px 2px rgba( 0, 0, 0, 0.1 );
|
| 930 |
+
box-shadow: inset 1px 1px 2px rgba( 0, 0, 0, 0.1 );
|
| 931 |
+
}
|
| 932 |
+
.wp_themeSkin iframe {
|
| 933 |
+
background: transparent;
|
| 934 |
+
}
|
| 935 |
+
|
| 936 |
+
/* Layout */
|
| 937 |
+
.wp_themeSkin .mceStatusbar {
|
| 938 |
+
color: #000;
|
| 939 |
+
background-color: #f5f5f5;
|
| 940 |
+
}
|
| 941 |
+
|
| 942 |
+
/* Button */
|
| 943 |
+
.wp_themeSkin .mceButton {
|
| 944 |
+
border-color: #ccc;
|
| 945 |
+
background-color: #eee; /* Fallback */
|
| 946 |
+
background-image: -ms-linear-gradient(bottom, #ddd, #fff); /* IE10 */
|
| 947 |
+
background-image: -moz-linear-gradient(bottom, #ddd, #fff); /* Firefox */
|
| 948 |
+
background-image: -o-linear-gradient(bottom, #ddd, #fff); /* Opera */
|
| 949 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#fff)); /* old Webkit */
|
| 950 |
+
background-image: -webkit-linear-gradient(bottom, #ddd, #fff); /* new Webkit */
|
| 951 |
+
background-image: linear-gradient(bottom, #ddd, #fff); /* proposed W3C Markup */
|
| 952 |
+
}
|
| 953 |
+
|
| 954 |
+
.wp_themeSkin a.mceButtonEnabled:hover {
|
| 955 |
+
border-color: #a0a0a0;
|
| 956 |
+
background: #ddd; /* Fallback */
|
| 957 |
+
background-image: -ms-linear-gradient(bottom, #ccc, #fff); /* IE10 */
|
| 958 |
+
background-image: -moz-linear-gradient(bottom, #ccc, #fff); /* Firefox */
|
| 959 |
+
background-image: -o-linear-gradient(bottom, #ccc, #fff); /* Opera */
|
| 960 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#ccc), to(#fff)); /* old Webkit */
|
| 961 |
+
background-image: -webkit-linear-gradient(bottom, #ccc, #fff); /* new Webkit */
|
| 962 |
+
background-image: linear-gradient(bottom, #ccc, #fff); /* proposed W3C Markup */
|
| 963 |
+
}
|
| 964 |
+
|
| 965 |
+
.wp_themeSkin a.mceButton:active,
|
| 966 |
+
.wp_themeSkin a.mceButtonEnabled:active,
|
| 967 |
+
.wp_themeSkin a.mceButtonSelected:active,
|
| 968 |
+
.wp_themeSkin a.mceButtonActive,
|
| 969 |
+
.wp_themeSkin a.mceButtonActive:active,
|
| 970 |
+
.wp_themeSkin a.mceButtonActive:hover {
|
| 971 |
+
background-color: #ddd; /* Fallback */
|
| 972 |
+
background-image: -ms-linear-gradient(bottom, #eee, #bbb); /* IE10 */
|
| 973 |
+
background-image: -moz-linear-gradient(bottom, #eee, #bbb); /* Firefox */
|
| 974 |
+
background-image: -o-linear-gradient(bottom, #eee, #bbb); /* Opera */
|
| 975 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#eee), to(#bbb)); /* old Webkit */
|
| 976 |
+
background-image: -webkit-linear-gradient(bottom, #eee, #bbb); /* new Webkit */
|
| 977 |
+
background-image: linear-gradient(bottom, #eee, #bbb); /* proposed W3C Markup */
|
| 978 |
+
border-color: #909090;
|
| 979 |
+
}
|
| 980 |
+
|
| 981 |
+
.wp_themeSkin .mceButtonDisabled {
|
| 982 |
+
border-color: #ccc !important;
|
| 983 |
+
}
|
| 984 |
+
|
| 985 |
+
/* ListBox */
|
| 986 |
+
.wp_themeSkin .mceListBox .mceText,
|
| 987 |
+
.wp_themeSkin .mceListBox .mceOpen {
|
| 988 |
+
border-color: #ccc;
|
| 989 |
+
background-color: #eee; /* Fallback */
|
| 990 |
+
background-image: -ms-linear-gradient(bottom, #ddd, #fff); /* IE10 */
|
| 991 |
+
background-image: -moz-linear-gradient(bottom, #ddd, #fff); /* Firefox */
|
| 992 |
+
background-image: -o-linear-gradient(bottom, #ddd, #fff); /* Opera */
|
| 993 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#fff)); /* old Webkit */
|
| 994 |
+
background-image: -webkit-linear-gradient(bottom, #ddd, #fff); /* new Webkit */
|
| 995 |
+
background-image: linear-gradient(bottom, #ddd, #fff); /* proposed W3C Markup */
|
| 996 |
+
}
|
| 997 |
+
|
| 998 |
+
.wp_themeSkin .mceListBox .mceOpen {
|
| 999 |
+
border-left: 0 !important;
|
| 1000 |
+
}
|
| 1001 |
+
|
| 1002 |
+
.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,
|
| 1003 |
+
.wp_themeSkin .mceListBoxHover .mceOpen,
|
| 1004 |
+
.wp_themeSkin .mceListBoxHover:active .mceOpen,
|
| 1005 |
+
.wp_themeSkin .mceListBoxSelected .mceOpen,
|
| 1006 |
+
.wp_themeSkin .mceListBoxSelected .mceText,
|
| 1007 |
+
.wp_themeSkin table.mceListBoxEnabled:active .mceText {
|
| 1008 |
+
background: #ccc;
|
| 1009 |
+
border-color: #999;
|
| 1010 |
+
}
|
| 1011 |
+
|
| 1012 |
+
/* List Box Hover */
|
| 1013 |
+
.wp_themeSkin table.mceListBoxEnabled:hover .mceText,
|
| 1014 |
+
.wp_themeSkin .mceListBoxHover .mceText,
|
| 1015 |
+
.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,
|
| 1016 |
+
.wp_themeSkin .mceListBoxHover .mceOpen {
|
| 1017 |
+
border-color: #909090;
|
| 1018 |
+
background-color: #eee; /* Fallback */
|
| 1019 |
+
background-image: -ms-linear-gradient(bottom, #ccc, #fff); /* IE10 */
|
| 1020 |
+
background-image: -moz-linear-gradient(bottom, #ccc, #fff); /* Firefox */
|
| 1021 |
+
background-image: -o-linear-gradient(bottom, #ccc, #fff); /* Opera */
|
| 1022 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#ccc), to(#fff)); /* old Webkit */
|
| 1023 |
+
background-image: -webkit-linear-gradient(bottom, #ccc, #fff); /* new Webkit */
|
| 1024 |
+
background-image: linear-gradient(bottom, #ccc, #fff); /* proposed W3C Markup */
|
| 1025 |
+
}
|
| 1026 |
+
|
| 1027 |
+
.wp_themeSkin select.mceListBox {
|
| 1028 |
+
border-color: #B2B2B2;
|
| 1029 |
+
background-color: #fff;
|
| 1030 |
+
}
|
| 1031 |
+
|
| 1032 |
+
/* SplitButton */
|
| 1033 |
+
.wp_themeSkin .mceSplitButton a.mceAction,
|
| 1034 |
+
.wp_themeSkin .mceSplitButton a.mceOpen {
|
| 1035 |
+
border-color: #ccc;
|
| 1036 |
+
}
|
| 1037 |
+
|
| 1038 |
+
.wp_themeSkin .mceSplitButton a.mceOpen:hover,
|
| 1039 |
+
.wp_themeSkin .mceSplitButtonSelected a.mceOpen,
|
| 1040 |
+
.wp_themeSkin table.mceSplitButtonEnabled:hover a.mceAction,
|
| 1041 |
+
.wp_themeSkin .mceSplitButton a.mceAction:hover {
|
| 1042 |
+
border-color: #909090;
|
| 1043 |
+
}
|
| 1044 |
+
|
| 1045 |
+
|
| 1046 |
+
.wp_themeSkin table.mceSplitButton td {
|
| 1047 |
+
background-color: #eee; /* Fallback */
|
| 1048 |
+
background-image: -ms-linear-gradient(bottom, #ddd, #fff); /* IE10 */
|
| 1049 |
+
background-image: -moz-linear-gradient(bottom, #ddd, #fff); /* Firefox */
|
| 1050 |
+
background-image: -o-linear-gradient(bottom, #ddd, #fff); /* Opera */
|
| 1051 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#fff)); /* old Webkit */
|
| 1052 |
+
background-image: -webkit-linear-gradient(bottom, #ddd, #fff); /* new Webkit */
|
| 1053 |
+
background-image: linear-gradient(bottom, #ddd, #fff); /* proposed W3C Markup */
|
| 1054 |
+
}
|
| 1055 |
+
|
| 1056 |
+
.wp_themeSkin table.mceSplitButton:hover td {
|
| 1057 |
+
background-image: -ms-linear-gradient(bottom, #ccc, #fff); /* IE10 */
|
| 1058 |
+
background-image: -moz-linear-gradient(bottom, #ccc, #fff); /* Firefox */
|
| 1059 |
+
background-image: -o-linear-gradient(bottom, #ccc, #fff); /* Opera */
|
| 1060 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#ccc), to(#fff)); /* old Webkit */
|
| 1061 |
+
background-image: -webkit-linear-gradient(bottom, #ccc, #fff); /* new Webkit */
|
| 1062 |
+
background-image: linear-gradient(bottom, #ccc, #fff); /* proposed W3C Markup */
|
| 1063 |
+
}
|
| 1064 |
+
|
| 1065 |
+
.wp_themeSkin .mceSplitButtonActive {
|
| 1066 |
+
background-color: #B2B2B2;
|
| 1067 |
+
}
|
| 1068 |
+
|
| 1069 |
+
/* ColorSplitButton */
|
| 1070 |
+
.wp_themeSkin div.mceColorSplitMenu table {
|
| 1071 |
+
background-color: #ebebeb;
|
| 1072 |
+
border-color: #B2B2B2;
|
| 1073 |
+
}
|
| 1074 |
+
|
| 1075 |
+
.wp_themeSkin .mceColorSplitMenu a {
|
| 1076 |
+
border-color: #B2B2B2;
|
| 1077 |
+
}
|
| 1078 |
+
|
| 1079 |
+
.wp_themeSkin .mceColorSplitMenu a.mceMoreColors {
|
| 1080 |
+
border-color: #fff;
|
| 1081 |
+
}
|
| 1082 |
+
|
| 1083 |
+
.wp_themeSkin .mceColorSplitMenu a.mceMoreColors:hover {
|
| 1084 |
+
border-color: #0A246A;
|
| 1085 |
+
background-color: #B6BDD2;
|
| 1086 |
+
}
|
| 1087 |
+
|
| 1088 |
+
.wp_themeSkin a.mceMoreColors:hover {
|
| 1089 |
+
border-color: #0A246A;
|
| 1090 |
+
}
|
| 1091 |
+
|
| 1092 |
+
/* Menu */
|
| 1093 |
+
.wp_themeSkin .mceMenu {
|
| 1094 |
+
border-color: #ddd;
|
| 1095 |
+
}
|
| 1096 |
+
|
| 1097 |
+
.wp_themeSkin .mceMenu table {
|
| 1098 |
+
background-color: #ebeaeb;
|
| 1099 |
+
}
|
| 1100 |
+
|
| 1101 |
+
.wp_themeSkin .mceMenu .mceText {
|
| 1102 |
+
color: #000;
|
| 1103 |
+
}
|
| 1104 |
+
|
| 1105 |
+
.wp_themeSkin .mceMenu .mceMenuItemEnabled a:hover,
|
| 1106 |
+
.wp_themeSkin .mceMenu .mceMenuItemActive {
|
| 1107 |
+
background-color: #f5f5f5;
|
| 1108 |
+
}
|
| 1109 |
+
.wp_themeSkin td.mceMenuItemSeparator {
|
| 1110 |
+
background-color: #aaa;
|
| 1111 |
+
}
|
| 1112 |
+
.wp_themeSkin .mceMenuItemTitle a {
|
| 1113 |
+
background-color: #ccc;
|
| 1114 |
+
border-bottom-color: #aaa;
|
| 1115 |
+
}
|
| 1116 |
+
.wp_themeSkin .mceMenuItemTitle span.mceText {
|
| 1117 |
+
color: #000;
|
| 1118 |
+
}
|
| 1119 |
+
.wp_themeSkin .mceMenuItemDisabled .mceText {
|
| 1120 |
+
color: #888;
|
| 1121 |
+
}
|
| 1122 |
+
|
| 1123 |
+
.wp_themeSkin tr.mceFirst td.mceToolbar {
|
| 1124 |
+
background: #dfdfdf url("../../../wp-admin/images/ed-bg.gif") repeat-x scroll left top;
|
| 1125 |
+
border-color: #ccc;
|
| 1126 |
+
}
|
| 1127 |
+
|
| 1128 |
+
.wp-admin #mceModalBlocker {
|
| 1129 |
+
background: #000;
|
| 1130 |
+
}
|
| 1131 |
+
|
| 1132 |
+
.wp-admin .clearlooks2 .mceFocus .mceTop .mceLeft {
|
| 1133 |
+
background: #444444;
|
| 1134 |
+
border-left: 1px solid #999;
|
| 1135 |
+
border-top: 1px solid #999;
|
| 1136 |
+
-moz-border-radius: 3px 0 0 0;
|
| 1137 |
+
-webkit-border-top-left-radius: 3px;
|
| 1138 |
+
-khtml-border-top-left-radius: 3px;
|
| 1139 |
+
border-top-left-radius: 3px;
|
| 1140 |
+
}
|
| 1141 |
+
|
| 1142 |
+
.wp-admin .clearlooks2 .mceFocus .mceTop .mceRight {
|
| 1143 |
+
background: #444444;
|
| 1144 |
+
border-right: 1px solid #999;
|
| 1145 |
+
border-top: 1px solid #999;
|
| 1146 |
+
border-top-right-radius: 3px;
|
| 1147 |
+
-khtml-border-top-right-radius: 3px;
|
| 1148 |
+
-webkit-border-top-right-radius: 3px;
|
| 1149 |
+
-moz-border-radius: 0 3px 0 0;
|
| 1150 |
+
}
|
| 1151 |
+
|
| 1152 |
+
.wp-admin .clearlooks2 .mceMiddle .mceLeft {
|
| 1153 |
+
background: #f1f1f1;
|
| 1154 |
+
border-left: 1px solid #999;
|
| 1155 |
+
}
|
| 1156 |
+
|
| 1157 |
+
.wp-admin .clearlooks2 .mceMiddle .mceRight {
|
| 1158 |
+
background: #f1f1f1;
|
| 1159 |
+
border-right: 1px solid #999;
|
| 1160 |
+
}
|
| 1161 |
+
|
| 1162 |
+
.wp-admin .clearlooks2 .mceBottom {
|
| 1163 |
+
background: #f1f1f1;
|
| 1164 |
+
border-bottom: 1px solid #999;
|
| 1165 |
+
}
|
| 1166 |
+
|
| 1167 |
+
.wp-admin .clearlooks2 .mceBottom .mceLeft {
|
| 1168 |
+
background: #f1f1f1;
|
| 1169 |
+
border-bottom: 1px solid #999;
|
| 1170 |
+
border-left: 1px solid #999;
|
| 1171 |
+
}
|
| 1172 |
+
|
| 1173 |
+
.wp-admin .clearlooks2 .mceBottom .mceCenter {
|
| 1174 |
+
background: #f1f1f1;
|
| 1175 |
+
border-bottom: 1px solid #999;
|
| 1176 |
+
}
|
| 1177 |
+
|
| 1178 |
+
.wp-admin .clearlooks2 .mceBottom .mceRight {
|
| 1179 |
+
background: #f1f1f1;
|
| 1180 |
+
border-bottom: 1px solid #999;
|
| 1181 |
+
border-right: 1px solid #999;
|
| 1182 |
+
}
|
| 1183 |
+
|
| 1184 |
+
.wp-admin .clearlooks2 .mceFocus .mceTop span {
|
| 1185 |
+
color: #e5e5e5;
|
| 1186 |
+
}
|
| 1187 |
+
/* end TinyMCE */
|
| 1188 |
+
|
| 1189 |
+
#titlediv #title {
|
| 1190 |
+
border-color: #ccc;
|
| 1191 |
+
}
|
| 1192 |
+
|
| 1193 |
+
#editorcontainer {
|
| 1194 |
+
border-color: #ccc #ccc #dfdfdf;
|
| 1195 |
+
}
|
| 1196 |
+
|
| 1197 |
+
#post-status-info {
|
| 1198 |
+
border-color: #dfdfdf #ccc #ccc;
|
| 1199 |
+
}
|
| 1200 |
+
|
| 1201 |
+
.editwidget .widget-inside {
|
| 1202 |
+
border-color: #dfdfdf;
|
| 1203 |
+
}
|
| 1204 |
+
|
| 1205 |
+
#titlediv #title {
|
| 1206 |
+
background-color: #fff;
|
| 1207 |
+
}
|
| 1208 |
+
|
| 1209 |
+
#tTips p#tTips_inside {
|
| 1210 |
+
background-color: #ddd;
|
| 1211 |
+
color: #333;
|
| 1212 |
+
}
|
| 1213 |
+
|
| 1214 |
+
#timestampdiv input,
|
| 1215 |
+
#namediv input,
|
| 1216 |
+
#poststuff .inside .the-tagcloud {
|
| 1217 |
+
border-color: #ddd;
|
| 1218 |
+
}
|
| 1219 |
+
|
| 1220 |
+
/* menu */
|
| 1221 |
+
#adminmenuback,
|
| 1222 |
+
#adminmenuwrap {
|
| 1223 |
+
background-color: #deece1;
|
| 1224 |
+
border-color: #ccc;
|
| 1225 |
+
}
|
| 1226 |
+
|
| 1227 |
+
#adminmenushadow,
|
| 1228 |
+
#adminmenuback {
|
| 1229 |
+
background-image: url(../../../wp-admin/images/menu-shadow.png);
|
| 1230 |
+
background-position: top right;
|
| 1231 |
+
background-repeat: repeat-y;
|
| 1232 |
+
}
|
| 1233 |
+
|
| 1234 |
+
#adminmenu li.wp-menu-separator {
|
| 1235 |
+
background: #dfdfdf;
|
| 1236 |
+
border-color: #cfcfcf;
|
| 1237 |
+
}
|
| 1238 |
+
|
| 1239 |
+
#adminmenu div.separator {
|
| 1240 |
+
border-color: #deece1;
|
| 1241 |
+
}
|
| 1242 |
+
|
| 1243 |
+
#adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,
|
| 1244 |
+
#adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle {
|
| 1245 |
+
background: transparent url(../../../wp-admin/images/arrows-dark.png) no-repeat -1px 6px;
|
| 1246 |
+
}
|
| 1247 |
+
|
| 1248 |
+
#adminmenu .wp-has-submenu:hover .wp-menu-toggle,
|
| 1249 |
+
#adminmenu .wp-menu-open .wp-menu-toggle {
|
| 1250 |
+
background: transparent url(../../../wp-admin/images/arrows.png) no-repeat -2px 6px;
|
| 1251 |
+
}
|
| 1252 |
+
|
| 1253 |
+
#adminmenu a.menu-top,
|
| 1254 |
+
.folded #adminmenu li.menu-top,
|
| 1255 |
+
#adminmenu .wp-submenu .wp-submenu-head {
|
| 1256 |
+
border-top-color: #f9f9f9;
|
| 1257 |
+
border-bottom-color: #dfdfdf;
|
| 1258 |
+
}
|
| 1259 |
+
|
| 1260 |
+
#adminmenu li.wp-menu-open {
|
| 1261 |
+
border-color: #dfdfdf;
|
| 1262 |
+
}
|
| 1263 |
+
|
| 1264 |
+
#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
|
| 1265 |
+
#adminmenu li.current a.menu-top,
|
| 1266 |
+
.folded #adminmenu li.wp-has-current-submenu,
|
| 1267 |
+
.folded #adminmenu li.current.menu-top,
|
| 1268 |
+
#adminmenu .wp-menu-arrow,
|
| 1269 |
+
#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
|
| 1270 |
+
background-color: #777; /* Fallback */
|
| 1271 |
+
background-image: -ms-linear-gradient(bottom, #060, #6EB469); /* IE10 */
|
| 1272 |
+
background-image: -moz-linear-gradient(bottom, #060, #6EB469); /* Firefox */
|
| 1273 |
+
background-image: -o-linear-gradient(bottom, #060, #6EB469); /* Opera */
|
| 1274 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#060), to(#6EB469)); /* old Webkit */
|
| 1275 |
+
background-image: -webkit-linear-gradient(bottom, #060, #6EB469); /* new Webkit */
|
| 1276 |
+
background-image: linear-gradient(bottom, #060, #6EB469); /* proposed W3C Markup */
|
| 1277 |
+
}
|
| 1278 |
+
|
| 1279 |
+
#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
|
| 1280 |
+
#adminmenu li.current a.menu-top,
|
| 1281 |
+
#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
|
| 1282 |
+
text-shadow: 0 -1px 0 #333;
|
| 1283 |
+
color: #fff;
|
| 1284 |
+
border-top-color: #808080;
|
| 1285 |
+
border-bottom-color: #6d6d6d;
|
| 1286 |
+
}
|
| 1287 |
+
|
| 1288 |
+
.folded #adminmenu li.wp-has-current-submenu,
|
| 1289 |
+
.folded #adminmenu li.current.menu-top {
|
| 1290 |
+
border-top-color: #808080;
|
| 1291 |
+
border-bottom-color: #6d6d6d;
|
| 1292 |
+
}
|
| 1293 |
+
|
| 1294 |
+
#adminmenu .wp-submenu a:hover {
|
| 1295 |
+
background-color: #EEFCF1 !important;
|
| 1296 |
+
color: #333 !important;
|
| 1297 |
+
}
|
| 1298 |
+
|
| 1299 |
+
#adminmenu .wp-submenu li.current,
|
| 1300 |
+
#adminmenu .wp-submenu li.current a,
|
| 1301 |
+
#adminmenu .wp-submenu li.current a:hover {
|
| 1302 |
+
color: #333;
|
| 1303 |
+
}
|
| 1304 |
+
|
| 1305 |
+
#adminmenu .wp-submenu ul {
|
| 1306 |
+
background-color: #fff;
|
| 1307 |
+
}
|
| 1308 |
+
|
| 1309 |
+
.folded #adminmenu .wp-submenu-wrap,
|
| 1310 |
+
.folded #adminmenu .wp-submenu ul {
|
| 1311 |
+
border-color: #dfdfdf;
|
| 1312 |
+
}
|
| 1313 |
+
|
| 1314 |
+
.folded #adminmenu .wp-submenu-wrap {
|
| 1315 |
+
-moz-box-shadow: 2px 2px 5px rgba( 0, 0, 0, 0.4 );
|
| 1316 |
+
-webkit-box-shadow: 2px 2px 5px rgba( 0, 0, 0, 0.4 );
|
| 1317 |
+
box-shadow: 2px 2px 5px rgba( 0, 0, 0, 0.4 );
|
| 1318 |
+
}
|
| 1319 |
+
|
| 1320 |
+
#adminmenu .wp-submenu .wp-submenu-head {
|
| 1321 |
+
border-right-color: #dfdfdf;
|
| 1322 |
+
background-color: #ececec;
|
| 1323 |
+
}
|
| 1324 |
+
|
| 1325 |
+
#adminmenu div.wp-submenu {
|
| 1326 |
+
background-color: transparent;
|
| 1327 |
+
}
|
| 1328 |
+
|
| 1329 |
+
/* collapse menu button */
|
| 1330 |
+
#collapse-menu {
|
| 1331 |
+
color: #aaa;
|
| 1332 |
+
}
|
| 1333 |
+
|
| 1334 |
+
#collapse-menu:hover {
|
| 1335 |
+
color: #999;
|
| 1336 |
+
}
|
| 1337 |
+
|
| 1338 |
+
#collapse-button {
|
| 1339 |
+
border-color: #ccc;
|
| 1340 |
+
background-color: #f4f4f4; /* Fallback */
|
| 1341 |
+
background-image: -ms-linear-gradient(bottom, #dfdfdf, #fff); /* IE10 */
|
| 1342 |
+
background-image: -moz-linear-gradient(bottom, #dfdfdf, #fff); /* Firefox */
|
| 1343 |
+
background-image: -o-linear-gradient(bottom, #dfdfdf, #fff); /* Opera */
|
| 1344 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#fff)); /* old Webkit */
|
| 1345 |
+
background-image: -webkit-linear-gradient(bottom, #dfdfdf, #fff); /* new Webkit */
|
| 1346 |
+
background-image: linear-gradient(bottom, #dfdfdf, #fff); /* proposed W3C Markup */
|
| 1347 |
+
}
|
| 1348 |
+
#collapse-menu:hover #collapse-button {
|
| 1349 |
+
border-color: #aaa;
|
| 1350 |
+
}
|
| 1351 |
+
#collapse-button div {
|
| 1352 |
+
background: transparent url(../../../wp-admin/images/arrows.png) no-repeat 0 -72px;
|
| 1353 |
+
}
|
| 1354 |
+
.folded #collapse-button div {
|
| 1355 |
+
background-position: 0 -108px;
|
| 1356 |
+
}
|
| 1357 |
+
|
| 1358 |
+
/* menu and screen icons */
|
| 1359 |
+
#adminmenu .menu-icon-dashboard div.wp-menu-image {
|
| 1360 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -60px -33px;
|
| 1361 |
+
}
|
| 1362 |
+
|
| 1363 |
+
#adminmenu .menu-icon-dashboard:hover div.wp-menu-image,
|
| 1364 |
+
#adminmenu .menu-icon-dashboard.wp-has-current-submenu div.wp-menu-image,
|
| 1365 |
+
#adminmenu .menu-icon-dashboard.current div.wp-menu-image {
|
| 1366 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -60px -1px;
|
| 1367 |
+
}
|
| 1368 |
+
|
| 1369 |
+
#adminmenu .menu-icon-post div.wp-menu-image {
|
| 1370 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -271px -33px;
|
| 1371 |
+
}
|
| 1372 |
+
|
| 1373 |
+
#adminmenu .menu-icon-post:hover div.wp-menu-image,
|
| 1374 |
+
#adminmenu .menu-icon-post.wp-has-current-submenu div.wp-menu-image {
|
| 1375 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -271px -1px;
|
| 1376 |
+
}
|
| 1377 |
+
|
| 1378 |
+
#adminmenu .menu-icon-media div.wp-menu-image {
|
| 1379 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -120px -33px;
|
| 1380 |
+
}
|
| 1381 |
+
|
| 1382 |
+
#adminmenu .menu-icon-media:hover div.wp-menu-image,
|
| 1383 |
+
#adminmenu .menu-icon-media.wp-has-current-submenu div.wp-menu-image {
|
| 1384 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -120px -1px;
|
| 1385 |
+
}
|
| 1386 |
+
|
| 1387 |
+
#adminmenu .menu-icon-links div.wp-menu-image {
|
| 1388 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -90px -33px;
|
| 1389 |
+
}
|
| 1390 |
+
|
| 1391 |
+
#adminmenu .menu-icon-links:hover div.wp-menu-image,
|
| 1392 |
+
#adminmenu .menu-icon-links.wp-has-current-submenu div.wp-menu-image {
|
| 1393 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -90px -1px;
|
| 1394 |
+
}
|
| 1395 |
+
|
| 1396 |
+
#adminmenu .menu-icon-page div.wp-menu-image {
|
| 1397 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -150px -33px;
|
| 1398 |
+
}
|
| 1399 |
+
|
| 1400 |
+
#adminmenu .menu-icon-page:hover div.wp-menu-image,
|
| 1401 |
+
#adminmenu .menu-icon-page.wp-has-current-submenu div.wp-menu-image {
|
| 1402 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -150px -1px;
|
| 1403 |
+
}
|
| 1404 |
+
|
| 1405 |
+
#adminmenu .menu-icon-comments div.wp-menu-image {
|
| 1406 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -30px -33px;
|
| 1407 |
+
}
|
| 1408 |
+
|
| 1409 |
+
#adminmenu .menu-icon-comments:hover div.wp-menu-image,
|
| 1410 |
+
#adminmenu .menu-icon-comments.wp-has-current-submenu div.wp-menu-image,
|
| 1411 |
+
#adminmenu .menu-icon-comments.current div.wp-menu-image {
|
| 1412 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -30px -1px;
|
| 1413 |
+
}
|
| 1414 |
+
|
| 1415 |
+
#adminmenu .menu-icon-appearance div.wp-menu-image {
|
| 1416 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll 0 -33px;
|
| 1417 |
+
}
|
| 1418 |
+
|
| 1419 |
+
#adminmenu .menu-icon-appearance:hover div.wp-menu-image,
|
| 1420 |
+
#adminmenu .menu-icon-appearance.wp-has-current-submenu div.wp-menu-image {
|
| 1421 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll 0 -1px;
|
| 1422 |
+
}
|
| 1423 |
+
|
| 1424 |
+
#adminmenu .menu-icon-plugins div.wp-menu-image {
|
| 1425 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -180px -33px;
|
| 1426 |
+
}
|
| 1427 |
+
|
| 1428 |
+
#adminmenu .menu-icon-plugins:hover div.wp-menu-image,
|
| 1429 |
+
#adminmenu .menu-icon-plugins.wp-has-current-submenu div.wp-menu-image {
|
| 1430 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -180px -1px;
|
| 1431 |
+
}
|
| 1432 |
+
|
| 1433 |
+
#adminmenu .menu-icon-users div.wp-menu-image {
|
| 1434 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -300px -33px;
|
| 1435 |
+
}
|
| 1436 |
+
|
| 1437 |
+
#adminmenu .menu-icon-users:hover div.wp-menu-image,
|
| 1438 |
+
#adminmenu .menu-icon-users.wp-has-current-submenu div.wp-menu-image,
|
| 1439 |
+
#adminmenu .menu-icon-users.current div.wp-menu-image {
|
| 1440 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -300px -1px;
|
| 1441 |
+
}
|
| 1442 |
+
|
| 1443 |
+
#adminmenu .menu-icon-tools div.wp-menu-image {
|
| 1444 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -210px -33px;
|
| 1445 |
+
}
|
| 1446 |
+
|
| 1447 |
+
#adminmenu .menu-icon-tools:hover div.wp-menu-image,
|
| 1448 |
+
#adminmenu .menu-icon-tools.wp-has-current-submenu div.wp-menu-image,
|
| 1449 |
+
#adminmenu .menu-icon-tools.current div.wp-menu-image {
|
| 1450 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -210px -1px;
|
| 1451 |
+
}
|
| 1452 |
+
|
| 1453 |
+
#icon-options-general,
|
| 1454 |
+
#adminmenu .menu-icon-settings div.wp-menu-image {
|
| 1455 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -240px -33px;
|
| 1456 |
+
}
|
| 1457 |
+
|
| 1458 |
+
#adminmenu .menu-icon-settings:hover div.wp-menu-image,
|
| 1459 |
+
#adminmenu .menu-icon-settings.wp-has-current-submenu div.wp-menu-image {
|
| 1460 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -240px -1px;
|
| 1461 |
+
}
|
| 1462 |
+
|
| 1463 |
+
#adminmenu .menu-icon-site div.wp-menu-image {
|
| 1464 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -360px -33px;
|
| 1465 |
+
}
|
| 1466 |
+
|
| 1467 |
+
#adminmenu .menu-icon-site:hover div.wp-menu-image,
|
| 1468 |
+
#adminmenu .menu-icon-site.wp-has-current-submenu div.wp-menu-image {
|
| 1469 |
+
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -360px -1px;
|
| 1470 |
+
}
|
| 1471 |
+
/* end menu and screen icons */
|
| 1472 |
+
|
| 1473 |
+
/* Screen Icons */
|
| 1474 |
+
#icon-edit,
|
| 1475 |
+
#icon-post {
|
| 1476 |
+
background: transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -552px -5px;
|
| 1477 |
+
}
|
| 1478 |
+
|
| 1479 |
+
#icon-index {
|
| 1480 |
+
background: transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -137px -5px;
|
| 1481 |
+
}
|
| 1482 |
+
|
| 1483 |
+
#icon-upload {
|
| 1484 |
+
background: transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -251px -5px;
|
| 1485 |
+
}
|
| 1486 |
+
|
| 1487 |
+
#icon-link-manager,
|
| 1488 |
+
#icon-link,
|
| 1489 |
+
#icon-link-category {
|
| 1490 |
+
background: transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -190px -5px;
|
| 1491 |
+
}
|
| 1492 |
+
|
| 1493 |
+
#icon-edit-pages,
|
| 1494 |
+
#icon-page {
|
| 1495 |
+
background: transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -312px -5px;
|
| 1496 |
+
}
|
| 1497 |
+
|
| 1498 |
+
#icon-edit-comments {
|
| 1499 |
+
background: transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -72px -5px;
|
| 1500 |
+
}
|
| 1501 |
+
|
| 1502 |
+
#icon-themes {
|
| 1503 |
+
background: transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -11px -5px;
|
| 1504 |
+
}
|
| 1505 |
+
|
| 1506 |
+
#icon-plugins {
|
| 1507 |
+
background: transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -370px -5px;
|
| 1508 |
+
}
|
| 1509 |
+
|
| 1510 |
+
#icon-users,
|
| 1511 |
+
#icon-profile,
|
| 1512 |
+
#icon-user-edit {
|
| 1513 |
+
background: transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -600px -5px;
|
| 1514 |
+
}
|
| 1515 |
+
|
| 1516 |
+
#icon-tools,
|
| 1517 |
+
#icon-admin {
|
| 1518 |
+
background: transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -432px -5px;
|
| 1519 |
+
}
|
| 1520 |
+
|
| 1521 |
+
#icon-options-general {
|
| 1522 |
+
background: transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -492px -5px;
|
| 1523 |
+
}
|
| 1524 |
+
|
| 1525 |
+
#icon-ms-admin {
|
| 1526 |
+
background: transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -659px -5px;
|
| 1527 |
+
}
|
| 1528 |
+
/* end screen icons */
|
| 1529 |
+
|
| 1530 |
+
|
| 1531 |
+
/* Diff */
|
| 1532 |
+
table.diff .diff-deletedline {
|
| 1533 |
+
background-color: #fdd;
|
| 1534 |
+
}
|
| 1535 |
+
|
| 1536 |
+
table.diff .diff-deletedline del {
|
| 1537 |
+
background-color: #f99;
|
| 1538 |
+
}
|
| 1539 |
+
|
| 1540 |
+
table.diff .diff-addedline {
|
| 1541 |
+
background-color: #dfd;
|
| 1542 |
+
}
|
| 1543 |
+
|
| 1544 |
+
table.diff .diff-addedline ins {
|
| 1545 |
+
background-color: #9f9;
|
| 1546 |
+
}
|
| 1547 |
+
|
| 1548 |
+
#att-info {
|
| 1549 |
+
background-color: #E4F2FD;
|
| 1550 |
+
}
|
| 1551 |
+
|
| 1552 |
+
/* edit image */
|
| 1553 |
+
#sidemenu a {
|
| 1554 |
+
background-color: #f9f9f9;
|
| 1555 |
+
border-color: #f9f9f9;
|
| 1556 |
+
border-bottom-color: #dfdfdf;
|
| 1557 |
+
}
|
| 1558 |
+
|
| 1559 |
+
#sidemenu a.current {
|
| 1560 |
+
background-color: #fff;
|
| 1561 |
+
border-color: #dfdfdf #dfdfdf #fff;
|
| 1562 |
+
color: #D54E21;
|
| 1563 |
+
}
|
| 1564 |
+
|
| 1565 |
+
#screen-options-wrap,
|
| 1566 |
+
#contextual-help-wrap {
|
| 1567 |
+
background-color: #f1f1f1;
|
| 1568 |
+
border-color: #dfdfdf;
|
| 1569 |
+
}
|
| 1570 |
+
|
| 1571 |
+
#screen-options-link-wrap,
|
| 1572 |
+
#contextual-help-link-wrap {
|
| 1573 |
+
background-color: #e3e3e3; /* Fallback */
|
| 1574 |
+
border-right: 1px solid transparent;
|
| 1575 |
+
border-left: 1px solid transparent;
|
| 1576 |
+
border-bottom: 1px solid transparent;
|
| 1577 |
+
background-image: -ms-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* IE10 */
|
| 1578 |
+
background-image: -moz-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* Firefox */
|
| 1579 |
+
background-image: -o-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* Opera */
|
| 1580 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#f1f1f1)); /* old Webkit */
|
| 1581 |
+
background-image: -webkit-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* new Webkit */
|
| 1582 |
+
background-image: linear-gradient(bottom, #dfdfdf, #f1f1f1); /* proposed W3C Markup */
|
| 1583 |
+
}
|
| 1584 |
+
|
| 1585 |
+
#screen-meta-links a.show-settings {
|
| 1586 |
+
color: #777;
|
| 1587 |
+
}
|
| 1588 |
+
|
| 1589 |
+
#screen-meta-links a.show-settings:hover {
|
| 1590 |
+
color: #000;
|
| 1591 |
+
}
|
| 1592 |
+
|
| 1593 |
+
#replysubmit {
|
| 1594 |
+
background-color: #f1f1f1;
|
| 1595 |
+
border-top-color: #ddd;
|
| 1596 |
+
}
|
| 1597 |
+
|
| 1598 |
+
#replyerror {
|
| 1599 |
+
border-color: #ddd;
|
| 1600 |
+
background-color: #f9f9f9;
|
| 1601 |
+
}
|
| 1602 |
+
|
| 1603 |
+
#edithead,
|
| 1604 |
+
#replyhead {
|
| 1605 |
+
background-color: #f1f1f1;
|
| 1606 |
+
}
|
| 1607 |
+
|
| 1608 |
+
#ed_reply_toolbar {
|
| 1609 |
+
background-color: #e9e9e9;
|
| 1610 |
+
}
|
| 1611 |
+
|
| 1612 |
+
/* table vim shortcuts */
|
| 1613 |
+
.vim-current,
|
| 1614 |
+
.vim-current th,
|
| 1615 |
+
.vim-current td {
|
| 1616 |
+
background-color: #E4F2FD !important;
|
| 1617 |
+
}
|
| 1618 |
+
|
| 1619 |
+
/* Install Plugins */
|
| 1620 |
+
.star-average,
|
| 1621 |
+
.star.star-rating {
|
| 1622 |
+
background-color: #fc0;
|
| 1623 |
+
}
|
| 1624 |
+
|
| 1625 |
+
div.star.select:hover {
|
| 1626 |
+
background-color: #d00;
|
| 1627 |
+
}
|
| 1628 |
+
|
| 1629 |
+
div.star img {
|
| 1630 |
+
border-left: 1px solid #fff;
|
| 1631 |
+
border-right: 1px solid #fff;
|
| 1632 |
+
}
|
| 1633 |
+
|
| 1634 |
+
.widefat div.star img {
|
| 1635 |
+
border-left: 1px solid #f9f9f9;
|
| 1636 |
+
border-right: 1px solid #f9f9f9;
|
| 1637 |
+
}
|
| 1638 |
+
|
| 1639 |
+
#plugin-information .fyi ul {
|
| 1640 |
+
background-color: #eaf3fa;
|
| 1641 |
+
}
|
| 1642 |
+
|
| 1643 |
+
#plugin-information .fyi h2.mainheader {
|
| 1644 |
+
background-color: #cee1ef;
|
| 1645 |
+
}
|
| 1646 |
+
|
| 1647 |
+
#plugin-information pre,
|
| 1648 |
+
#plugin-information code {
|
| 1649 |
+
background-color: #ededff;
|
| 1650 |
+
}
|
| 1651 |
+
|
| 1652 |
+
#plugin-information pre {
|
| 1653 |
+
border: 1px solid #ccc;
|
| 1654 |
+
}
|
| 1655 |
+
|
| 1656 |
+
/* inline editor */
|
| 1657 |
+
.inline-edit-row fieldset input[type="text"],
|
| 1658 |
+
.inline-edit-row fieldset textarea,
|
| 1659 |
+
#bulk-titles,
|
| 1660 |
+
#replyrow input {
|
| 1661 |
+
border-color: #ddd;
|
| 1662 |
+
}
|
| 1663 |
+
|
| 1664 |
+
.inline-editor div.title {
|
| 1665 |
+
background-color: #EAF3FA;
|
| 1666 |
+
}
|
| 1667 |
+
|
| 1668 |
+
.inline-editor ul.cat-checklist {
|
| 1669 |
+
background-color: #fff;
|
| 1670 |
+
border-color: #ddd;
|
| 1671 |
+
}
|
| 1672 |
+
|
| 1673 |
+
.inline-editor .categories .catshow,
|
| 1674 |
+
.inline-editor .categories .cathide {
|
| 1675 |
+
color: #21759b;
|
| 1676 |
+
}
|
| 1677 |
+
|
| 1678 |
+
.inline-editor .quick-edit-save {
|
| 1679 |
+
background-color: #f1f1f1;
|
| 1680 |
+
}
|
| 1681 |
+
|
| 1682 |
+
#replyrow #ed_reply_toolbar input:hover {
|
| 1683 |
+
border-color: #aaa;
|
| 1684 |
+
background: #ddd;
|
| 1685 |
+
}
|
| 1686 |
+
|
| 1687 |
+
fieldset.inline-edit-col-right .inline-edit-col {
|
| 1688 |
+
border-color: #dfdfdf;
|
| 1689 |
+
}
|
| 1690 |
+
|
| 1691 |
+
.attention {
|
| 1692 |
+
color: #D54E21;
|
| 1693 |
+
}
|
| 1694 |
+
|
| 1695 |
+
.meta-box-sortables .postbox:hover .handlediv {
|
| 1696 |
+
background: transparent url(../../../wp-admin/images/arrows.png) no-repeat 6px 7px;
|
| 1697 |
+
}
|
| 1698 |
+
|
| 1699 |
+
.tablenav .tablenav-pages {
|
| 1700 |
+
color: #555;
|
| 1701 |
+
}
|
| 1702 |
+
|
| 1703 |
+
.tablenav .tablenav-pages a {
|
| 1704 |
+
border-color: #e3e3e3;
|
| 1705 |
+
background: #eee url('../images/menu-bits.gif?ver=20100610') repeat-x scroll left -379px;
|
| 1706 |
+
}
|
| 1707 |
+
|
| 1708 |
+
.tablenav .tablenav-pages a:hover,
|
| 1709 |
+
.tablenav .tablenav-pages a:focus {
|
| 1710 |
+
color: #d54e21;
|
| 1711 |
+
}
|
| 1712 |
+
|
| 1713 |
+
.tablenav .tablenav-pages a.disabled,
|
| 1714 |
+
.tablenav .tablenav-pages a.disabled:hover,
|
| 1715 |
+
.tablenav .tablenav-pages a.disabled:focus {
|
| 1716 |
+
color: #aaa;
|
| 1717 |
+
}
|
| 1718 |
+
|
| 1719 |
+
.tablenav .tablenav-pages .current {
|
| 1720 |
+
background: #dfdfdf;
|
| 1721 |
+
border-color: #d3d3d3;
|
| 1722 |
+
}
|
| 1723 |
+
|
| 1724 |
+
#availablethemes,
|
| 1725 |
+
#availablethemes td {
|
| 1726 |
+
border-color: #ddd;
|
| 1727 |
+
}
|
| 1728 |
+
|
| 1729 |
+
#current-theme img {
|
| 1730 |
+
border-color: #999;
|
| 1731 |
+
}
|
| 1732 |
+
|
| 1733 |
+
#TB_window #TB_title a.tb-theme-preview-link,
|
| 1734 |
+
#TB_window #TB_title a.tb-theme-preview-link:visited {
|
| 1735 |
+
color: #999;
|
| 1736 |
+
}
|
| 1737 |
+
|
| 1738 |
+
#TB_window #TB_title a.tb-theme-preview-link:hover,
|
| 1739 |
+
#TB_window #TB_title a.tb-theme-preview-link:focus {
|
| 1740 |
+
color: #ccc;
|
| 1741 |
+
}
|
| 1742 |
+
|
| 1743 |
+
.misc-pub-section {
|
| 1744 |
+
border-top-color: #fff;
|
| 1745 |
+
border-bottom-color: #dfdfdf;
|
| 1746 |
+
}
|
| 1747 |
+
|
| 1748 |
+
#minor-publishing {
|
| 1749 |
+
border-bottom-color: #dfdfdf;
|
| 1750 |
+
}
|
| 1751 |
+
|
| 1752 |
+
#post-body .misc-pub-section {
|
| 1753 |
+
border-right-color: #eee;
|
| 1754 |
+
}
|
| 1755 |
+
|
| 1756 |
+
.post-com-count span {
|
| 1757 |
+
background-color: #bbb;
|
| 1758 |
+
}
|
| 1759 |
+
|
| 1760 |
+
.form-table .color-palette td {
|
| 1761 |
+
border-color: #fff;
|
| 1762 |
+
}
|
| 1763 |
+
|
| 1764 |
+
.sortable-placeholder {
|
| 1765 |
+
border-color: #bbb;
|
| 1766 |
+
background-color: #f5f5f5;
|
| 1767 |
+
}
|
| 1768 |
+
|
| 1769 |
+
#post-body ul.category-tabs li.tabs a,
|
| 1770 |
+
#post-body ul.add-menu-item-tabs li.tabs a,
|
| 1771 |
+
body.press-this ul.category-tabs li.tabs a {
|
| 1772 |
+
color: #333;
|
| 1773 |
+
}
|
| 1774 |
+
|
| 1775 |
+
#wp_editimgbtn,
|
| 1776 |
+
#wp_delimgbtn,
|
| 1777 |
+
#wp_editgallery,
|
| 1778 |
+
#wp_delgallery {
|
| 1779 |
+
border-color: #999;
|
| 1780 |
+
background-color: #eee;
|
| 1781 |
+
}
|
| 1782 |
+
|
| 1783 |
+
#wp_editimgbtn:hover,
|
| 1784 |
+
#wp_delimgbtn:hover,
|
| 1785 |
+
#wp_editgallery:hover,
|
| 1786 |
+
#wp_delgallery:hover {
|
| 1787 |
+
border-color: #555;
|
| 1788 |
+
background-color: #ccc;
|
| 1789 |
+
}
|
| 1790 |
+
|
| 1791 |
+
#favorite-first {
|
| 1792 |
+
border-color: #c0c0c0;
|
| 1793 |
+
background: #f1f1f1; /* fallback color */
|
| 1794 |
+
background:-moz-linear-gradient(bottom, #e7e7e7, #fff);
|
| 1795 |
+
background:-webkit-gradient(linear, left bottom, left top, from(#e7e7e7), to(#fff));
|
| 1796 |
+
}
|
| 1797 |
+
|
| 1798 |
+
#favorite-inside {
|
| 1799 |
+
border-color: #c0c0c0;
|
| 1800 |
+
background-color: #fff;
|
| 1801 |
+
}
|
| 1802 |
+
|
| 1803 |
+
#favorite-toggle {
|
| 1804 |
+
background: transparent url(../../../wp-admin/images/arrows.png) no-repeat 4px 2px;
|
| 1805 |
+
border-color: #dfdfdf;
|
| 1806 |
+
-moz-box-shadow: inset 1px 0 0 #fff;
|
| 1807 |
+
-webkit-box-shadow: inset 1px 0 0 #fff;
|
| 1808 |
+
box-shadow: inset 1px 0 0 #fff;
|
| 1809 |
+
}
|
| 1810 |
+
|
| 1811 |
+
#favorite-actions a {
|
| 1812 |
+
color: #464646;
|
| 1813 |
+
}
|
| 1814 |
+
|
| 1815 |
+
#favorite-actions a:hover {
|
| 1816 |
+
color: #000;
|
| 1817 |
+
}
|
| 1818 |
+
|
| 1819 |
+
#favorite-inside a:hover {
|
| 1820 |
+
text-decoration: underline;
|
| 1821 |
+
}
|
| 1822 |
+
|
| 1823 |
+
#screen-meta a.show-settings,
|
| 1824 |
+
.toggle-arrow {
|
| 1825 |
+
background: transparent url(../../../wp-admin/images/arrows.png) no-repeat right 3px;
|
| 1826 |
+
}
|
| 1827 |
+
|
| 1828 |
+
#screen-meta .screen-meta-active a.show-settings {
|
| 1829 |
+
background: transparent url(../../../wp-admin/images/arrows.png) no-repeat right -33px;
|
| 1830 |
+
}
|
| 1831 |
+
|
| 1832 |
+
.view-switch #view-switch-list {
|
| 1833 |
+
background: transparent url(../../../wp-admin/images/list.png) no-repeat 0 0;
|
| 1834 |
+
}
|
| 1835 |
+
|
| 1836 |
+
.view-switch .current #view-switch-list {
|
| 1837 |
+
background: transparent url(../../../wp-admin/images/list.png) no-repeat -40px 0;
|
| 1838 |
+
}
|
| 1839 |
+
|
| 1840 |
+
.view-switch #view-switch-excerpt {
|
| 1841 |
+
background: transparent url(../../../wp-admin/images/list.png) no-repeat -20px 0;
|
| 1842 |
+
}
|
| 1843 |
+
|
| 1844 |
+
.view-switch .current #view-switch-excerpt {
|
| 1845 |
+
background: transparent url(../../../wp-admin/images/list.png) no-repeat -60px 0;
|
| 1846 |
+
}
|
| 1847 |
+
|
| 1848 |
+
#header-logo {
|
| 1849 |
+
background: transparent url(../../../wp-admin/images/wp-logo.png?ver=20110504) no-repeat scroll center center;
|
| 1850 |
+
}
|
| 1851 |
+
|
| 1852 |
+
.popular-tags,
|
| 1853 |
+
.feature-filter {
|
| 1854 |
+
background-color: #fff;
|
| 1855 |
+
border-color: #DFDFDF;
|
| 1856 |
+
}
|
| 1857 |
+
|
| 1858 |
+
#theme-information .action-button {
|
| 1859 |
+
border-top-color: #DFDFDF;
|
| 1860 |
+
}
|
| 1861 |
+
|
| 1862 |
+
.theme-listing br.line {
|
| 1863 |
+
border-bottom-color: #ccc;
|
| 1864 |
+
}
|
| 1865 |
+
|
| 1866 |
+
div.widgets-sortables,
|
| 1867 |
+
#widgets-left .inactive {
|
| 1868 |
+
background-color: #fcfcfc;
|
| 1869 |
+
border-color: #dfdfdf;
|
| 1870 |
+
}
|
| 1871 |
+
|
| 1872 |
+
#available-widgets .widget-holder {
|
| 1873 |
+
background-color: #fcfcfc;
|
| 1874 |
+
border-color: #dfdfdf;
|
| 1875 |
+
}
|
| 1876 |
+
|
| 1877 |
+
#available-widgets .widget-description {
|
| 1878 |
+
color: #555;
|
| 1879 |
+
}
|
| 1880 |
+
|
| 1881 |
+
.sidebar-name {
|
| 1882 |
+
color: #464646;
|
| 1883 |
+
text-shadow: #fff 0 1px 0;
|
| 1884 |
+
border-color: #dfdfdf;
|
| 1885 |
+
-moz-box-shadow: inset 0 1px 0 #fff;
|
| 1886 |
+
-webkit-box-shadow: inset 0 1px 0 #fff;
|
| 1887 |
+
box-shadow: inset 0 1px 0 #fff;
|
| 1888 |
+
}
|
| 1889 |
+
|
| 1890 |
+
.sidebar-name:hover,
|
| 1891 |
+
#removing-widget {
|
| 1892 |
+
color: #d54e21;
|
| 1893 |
+
}
|
| 1894 |
+
|
| 1895 |
+
#removing-widget span {
|
| 1896 |
+
color: black;
|
| 1897 |
+
}
|
| 1898 |
+
|
| 1899 |
+
.sidebar-name-arrow {
|
| 1900 |
+
background: transparent url(../../../wp-admin/images/arrows.png) no-repeat 5px 9px;
|
| 1901 |
+
}
|
| 1902 |
+
|
| 1903 |
+
.sidebar-name:hover .sidebar-name-arrow {
|
| 1904 |
+
background: transparent url(../../../wp-admin/images/arrows-dark.png) no-repeat 5px 9px;
|
| 1905 |
+
}
|
| 1906 |
+
|
| 1907 |
+
.in-widget-title {
|
| 1908 |
+
color: #606060;
|
| 1909 |
+
}
|
| 1910 |
+
|
| 1911 |
+
.deleting .widget-title * {
|
| 1912 |
+
color: #aaa;
|
| 1913 |
+
}
|
| 1914 |
+
|
| 1915 |
+
.imgedit-menu div {
|
| 1916 |
+
border-color: #d5d5d5;
|
| 1917 |
+
background-color: #f1f1f1;
|
| 1918 |
+
}
|
| 1919 |
+
|
| 1920 |
+
.imgedit-menu div:hover {
|
| 1921 |
+
border-color: #c1c1c1;
|
| 1922 |
+
background-color: #eaeaea;
|
| 1923 |
+
}
|
| 1924 |
+
|
| 1925 |
+
.imgedit-menu div.disabled {
|
| 1926 |
+
border-color: #ccc;
|
| 1927 |
+
background-color: #ddd;
|
| 1928 |
+
filter: alpha(opacity=50);
|
| 1929 |
+
opacity: 0.5;
|
| 1930 |
+
}
|
| 1931 |
+
|
| 1932 |
+
#dashboard_recent_comments div.undo {
|
| 1933 |
+
border-top-color: #dfdfdf;
|
| 1934 |
+
}
|
| 1935 |
+
|
| 1936 |
+
.comment-ays,
|
| 1937 |
+
.comment-ays th {
|
| 1938 |
+
border-color: #ddd;
|
| 1939 |
+
}
|
| 1940 |
+
|
| 1941 |
+
.comment-ays th {
|
| 1942 |
+
background-color: #f1f1f1;
|
| 1943 |
+
}
|
| 1944 |
+
|
| 1945 |
+
/* added from nav-menu.css */
|
| 1946 |
+
#menu-management .menu-edit {
|
| 1947 |
+
border-color: #dfdfdf;
|
| 1948 |
+
}
|
| 1949 |
+
|
| 1950 |
+
#post-body {
|
| 1951 |
+
background: #fff;
|
| 1952 |
+
border-top-color: #fff;
|
| 1953 |
+
border-bottom-color: #dfdfdf;
|
| 1954 |
+
}
|
| 1955 |
+
|
| 1956 |
+
#nav-menu-header {
|
| 1957 |
+
border-bottom-color: #dfdfdf;
|
| 1958 |
+
}
|
| 1959 |
+
|
| 1960 |
+
#nav-menu-footer {
|
| 1961 |
+
border-top-color: #fff;
|
| 1962 |
+
}
|
| 1963 |
+
|
| 1964 |
+
#menu-management .nav-tabs-arrow a {
|
| 1965 |
+
color: #C1C1C1;
|
| 1966 |
+
}
|
| 1967 |
+
|
| 1968 |
+
#menu-management .nav-tabs-arrow a:hover {
|
| 1969 |
+
color: #D54E21;
|
| 1970 |
+
}
|
| 1971 |
+
|
| 1972 |
+
#menu-management .nav-tabs-arrow a:active {
|
| 1973 |
+
color: #464646;
|
| 1974 |
+
}
|
| 1975 |
+
|
| 1976 |
+
#menu-management .nav-tab-active {
|
| 1977 |
+
border-color: #dfdfdf;
|
| 1978 |
+
}
|
| 1979 |
+
|
| 1980 |
+
#menu-management .nav-tab {
|
| 1981 |
+
background: #fbfbfb;
|
| 1982 |
+
border-color: #dfdfdf;
|
| 1983 |
+
}
|
| 1984 |
+
|
| 1985 |
+
.js .input-with-default-title {
|
| 1986 |
+
color: #aaa;
|
| 1987 |
+
}
|
| 1988 |
+
|
| 1989 |
+
#cancel-save {
|
| 1990 |
+
color: #ff0000;
|
| 1991 |
+
}
|
| 1992 |
+
|
| 1993 |
+
#cancel-save:hover {
|
| 1994 |
+
background-color: #FF0000;
|
| 1995 |
+
color: #fff;
|
| 1996 |
+
}
|
| 1997 |
+
|
| 1998 |
+
.list-container {
|
| 1999 |
+
border-color: #DFDFDF;
|
| 2000 |
+
}
|
| 2001 |
+
|
| 2002 |
+
.menu-item-handle {
|
| 2003 |
+
border-color: #dfdfdf;
|
| 2004 |
+
}
|
| 2005 |
+
|
| 2006 |
+
.menu li.deleting .menu-item-handle {
|
| 2007 |
+
background-color: #f66;
|
| 2008 |
+
text-shadow: #ccc;
|
| 2009 |
+
}
|
| 2010 |
+
|
| 2011 |
+
.item-type { /* Menu item controls */
|
| 2012 |
+
color: #999999;
|
| 2013 |
+
}
|
| 2014 |
+
|
| 2015 |
+
.item-controls .menu-item-delete:hover {
|
| 2016 |
+
color: #ff0000;
|
| 2017 |
+
}
|
| 2018 |
+
|
| 2019 |
+
.item-edit {
|
| 2020 |
+
background: transparent url(../../../wp-admin/images/arrows.png) no-repeat 8px 10px;
|
| 2021 |
+
border-bottom-color: #eee;
|
| 2022 |
+
}
|
| 2023 |
+
|
| 2024 |
+
.item-edit:hover {
|
| 2025 |
+
background: transparent url(../../../wp-admin/images/arrows-dark.png) no-repeat 8px 10px;
|
| 2026 |
+
}
|
| 2027 |
+
|
| 2028 |
+
.menu-item-settings { /* Menu editing */
|
| 2029 |
+
border-color: #dfdfdf;
|
| 2030 |
+
}
|
| 2031 |
+
|
| 2032 |
+
.link-to-original {
|
| 2033 |
+
color: #777;
|
| 2034 |
+
border-color: #dfdfdf;
|
| 2035 |
+
}
|
| 2036 |
+
|
| 2037 |
+
#cancel-save:hover {
|
| 2038 |
+
color: #fff !important;
|
| 2039 |
+
}
|
| 2040 |
+
|
| 2041 |
+
#update-menu-item {
|
| 2042 |
+
color: #fff !important;
|
| 2043 |
+
}
|
| 2044 |
+
|
| 2045 |
+
#update-menu-item:hover,
|
| 2046 |
+
#update-menu-item:active,
|
| 2047 |
+
#update-menu-item:focus {
|
| 2048 |
+
color: #eaf2fa !important;
|
| 2049 |
+
border-color: #13455b !important;
|
| 2050 |
+
}
|
| 2051 |
+
|
| 2052 |
+
.submitbox .submitcancel {
|
| 2053 |
+
color: #21759B;
|
| 2054 |
+
border-bottom-color: #21759B;
|
| 2055 |
+
}
|
| 2056 |
+
|
| 2057 |
+
.submitbox .submitcancel:hover {
|
| 2058 |
+
background: #21759B;
|
| 2059 |
+
color: #fff;
|
| 2060 |
+
}
|
| 2061 |
+
/* end added from nav-menu.css */
|
| 2062 |
+
|
| 2063 |
+
#menu-management .nav-tab-active,
|
| 2064 |
+
.menu-item-handle,
|
| 2065 |
+
.menu-item-settings {
|
| 2066 |
+
-moz-box-shadow: inset 0 1px 0 #fff;
|
| 2067 |
+
-webkit-box-shadow: inset 0 1px 0 #fff;
|
| 2068 |
+
box-shadow: inset 0 1px 0 #fff;
|
| 2069 |
+
}
|
| 2070 |
+
|
| 2071 |
+
#menu-management .nav-tab-active {
|
| 2072 |
+
background: #f9f9f9;
|
| 2073 |
+
border-bottom-color: #f9f9f9;
|
| 2074 |
+
}
|
| 2075 |
+
|
| 2076 |
+
/* custom header & background pages */
|
| 2077 |
+
#upload-form label {
|
| 2078 |
+
color: #777;
|
| 2079 |
+
}
|
| 2080 |
+
/* custom header & background pages */
|
| 2081 |
+
|
| 2082 |
+
/* full screen */
|
| 2083 |
+
.fullscreen-overlay {
|
| 2084 |
+
background: #fff;
|
| 2085 |
+
}
|
| 2086 |
+
|
| 2087 |
+
.wp-fullscreen-focus #wp-fullscreen-title,
|
| 2088 |
+
.wp-fullscreen-focus #wp-fullscreen-container {
|
| 2089 |
+
border-color: #ccc;
|
| 2090 |
+
}
|
| 2091 |
+
|
| 2092 |
+
#fullscreen-topbar {
|
| 2093 |
+
border-bottom-color: #DFDFDF;
|
| 2094 |
+
}
|
bbp-admin/styles/admin.css
CHANGED
|
@@ -1,8 +1,9 @@
|
|
| 1 |
/* =wp-admin area stylesheet with a bbPress twist
|
| 2 |
-------------------------------------------------------------- */
|
| 3 |
|
| 4 |
-
html
|
| 5 |
-
|
|
|
|
| 6 |
}
|
| 7 |
|
| 8 |
* html input,
|
|
@@ -97,7 +98,7 @@ div.dashboard-widget,
|
|
| 97 |
|
| 98 |
.widefat {
|
| 99 |
border-color: #dfdfdf;
|
| 100 |
-
background-color: #
|
| 101 |
}
|
| 102 |
|
| 103 |
div.dashboard-widget-error {
|
|
@@ -113,14 +114,18 @@ div.dashboard-widget-submit {
|
|
| 113 |
}
|
| 114 |
|
| 115 |
div.tabs-panel,
|
|
|
|
| 116 |
ul.category-tabs li.tabs,
|
| 117 |
-
ul.add-menu-item-tabs li.tabs
|
|
|
|
| 118 |
border-color: #dfdfdf;
|
|
|
|
| 119 |
}
|
| 120 |
|
| 121 |
ul.category-tabs li.tabs,
|
| 122 |
-
ul.add-menu-item-tabs li.tabs
|
| 123 |
-
|
|
|
|
| 124 |
}
|
| 125 |
|
| 126 |
input.disabled,
|
|
@@ -134,11 +139,37 @@ textarea.disabled {
|
|
| 134 |
color: #fff;
|
| 135 |
}
|
| 136 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 137 |
.widget .widget-top,
|
| 138 |
.postbox h3,
|
| 139 |
.stuffbox h3 {
|
| 140 |
-
|
| 141 |
text-shadow: #fff 0 1px 0;
|
|
|
|
|
|
|
|
|
|
| 142 |
}
|
| 143 |
|
| 144 |
.form-table th,
|
|
@@ -169,6 +200,14 @@ strong .post-com-count span {
|
|
| 169 |
color: #464646;
|
| 170 |
}
|
| 171 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 172 |
.ac_over {
|
| 173 |
background-color: #f0f0b8;
|
| 174 |
}
|
|
@@ -184,7 +223,7 @@ strong .post-com-count span {
|
|
| 184 |
|
| 185 |
.alternate,
|
| 186 |
.alt {
|
| 187 |
-
background-color: #
|
| 188 |
}
|
| 189 |
|
| 190 |
.available-theme a.screenshot {
|
|
@@ -206,13 +245,13 @@ strong .post-com-count span {
|
|
| 206 |
border-top-color: #dfdfdf;
|
| 207 |
}
|
| 208 |
|
| 209 |
-
.error,
|
| 210 |
.login #login_error {
|
| 211 |
background-color: #ffebe8;
|
| 212 |
border-color: #c00;
|
| 213 |
}
|
| 214 |
|
| 215 |
-
.error a {
|
| 216 |
color: #c00;
|
| 217 |
}
|
| 218 |
|
|
@@ -231,14 +270,13 @@ strong .post-com-count span {
|
|
| 231 |
|
| 232 |
.highlight {
|
| 233 |
background-color: #e4f2fd;
|
| 234 |
-
color: #
|
| 235 |
}
|
| 236 |
|
| 237 |
.howto,
|
| 238 |
.nonessential,
|
| 239 |
#edit-slug-box,
|
| 240 |
.form-input-tip,
|
| 241 |
-
.rss-widget span.rss-date,
|
| 242 |
.subsubsub {
|
| 243 |
color: #666;
|
| 244 |
}
|
|
@@ -257,7 +295,7 @@ td.help {
|
|
| 257 |
}
|
| 258 |
|
| 259 |
.post-com-count {
|
| 260 |
-
background-image: url(
|
| 261 |
color: #fff;
|
| 262 |
}
|
| 263 |
|
|
@@ -304,30 +342,30 @@ input[type=submit]:hover {
|
|
| 304 |
.button,
|
| 305 |
.submit input,
|
| 306 |
.button-secondary {
|
| 307 |
-
background: #f2f2f2 url(
|
| 308 |
text-shadow: rgba(255,255,255,1) 0 1px 0;
|
| 309 |
}
|
| 310 |
|
| 311 |
.button:active,
|
| 312 |
.submit input:active,
|
| 313 |
.button-secondary:active {
|
| 314 |
-
background: #eee url(
|
| 315 |
}
|
| 316 |
|
| 317 |
input.button-primary,
|
| 318 |
button.button-primary,
|
| 319 |
a.button-primary {
|
| 320 |
-
border-color: #
|
| 321 |
font-weight: bold;
|
| 322 |
color: #fff;
|
| 323 |
-
background: #
|
| 324 |
text-shadow: rgba(0,0,0,0.3) 0 -1px 0;
|
| 325 |
}
|
| 326 |
|
| 327 |
input.button-primary:active,
|
| 328 |
button.button-primary:active,
|
| 329 |
a.button-primary:active {
|
| 330 |
-
background: #
|
| 331 |
color: #cae8be;
|
| 332 |
}
|
| 333 |
|
|
@@ -336,8 +374,8 @@ button.button-primary:hover,
|
|
| 336 |
a.button-primary:hover,
|
| 337 |
a.button-primary:focus,
|
| 338 |
a.button-primary:active {
|
| 339 |
-
border-color: #
|
| 340 |
-
color: #
|
| 341 |
}
|
| 342 |
|
| 343 |
.button-disabled,
|
|
@@ -347,7 +385,7 @@ a.button-primary:active {
|
|
| 347 |
.button-secondary:disabled,
|
| 348 |
a.button.disabled {
|
| 349 |
color: #aaa !important;
|
| 350 |
-
border-color: #
|
| 351 |
}
|
| 352 |
|
| 353 |
.button-primary-disabled,
|
|
@@ -385,7 +423,8 @@ div.dashboard-widget-submit input:hover,
|
|
| 385 |
}
|
| 386 |
|
| 387 |
#side-sortables .category-tabs .tabs a,
|
| 388 |
-
#side-sortables .add-menu-item-tabs .tabs a
|
|
|
|
| 389 |
color: #333;
|
| 390 |
}
|
| 391 |
|
|
@@ -436,7 +475,7 @@ div.dashboard-widget-submit input:hover,
|
|
| 436 |
color: #d54e21;
|
| 437 |
}
|
| 438 |
|
| 439 |
-
.updated,
|
| 440 |
.login .message {
|
| 441 |
background-color: #ffffe0;
|
| 442 |
border-color: #e6db55;
|
|
@@ -455,16 +494,24 @@ a.page-numbers {
|
|
| 455 |
}
|
| 456 |
|
| 457 |
.widefat td,
|
| 458 |
-
.widefat th
|
| 459 |
-
|
| 460 |
-
|
| 461 |
-
border-color: #dfdfdf;
|
| 462 |
}
|
| 463 |
|
| 464 |
.widefat th {
|
| 465 |
text-shadow: rgba(255,255,255,0.8) 0 1px 0;
|
| 466 |
}
|
| 467 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 468 |
.widefat thead tr th,
|
| 469 |
.widefat tfoot tr th,
|
| 470 |
h3.dashboard-widget-title,
|
|
@@ -472,7 +519,10 @@ h3.dashboard-widget-title span,
|
|
| 472 |
h3.dashboard-widget-title small,
|
| 473 |
.find-box-head {
|
| 474 |
color: #333;
|
| 475 |
-
|
|
|
|
|
|
|
|
|
|
| 476 |
}
|
| 477 |
|
| 478 |
h3.dashboard-widget-title small a {
|
|
@@ -495,39 +545,30 @@ a,
|
|
| 495 |
color: #007700;
|
| 496 |
}
|
| 497 |
|
| 498 |
-
|
| 499 |
-
body.press-this .tabs a,
|
| 500 |
-
body.press-this .tabs a:hover {
|
| 501 |
-
background-color: #fff;
|
| 502 |
-
border-color: #c6d9e9;
|
| 503 |
-
border-bottom-color: #fff;
|
| 504 |
-
color: #d54e21;
|
| 505 |
-
}
|
| 506 |
-
|
| 507 |
-
#adminmenu #awaiting-mod,
|
| 508 |
#adminmenu .update-plugins,
|
| 509 |
#sidemenu a .update-plugins,
|
| 510 |
#rightnow .reallynow {
|
| 511 |
background-color: #464646;
|
| 512 |
color: #fff;
|
| 513 |
-
-moz-box-shadow:
|
| 514 |
-
-khtml-box-shadow:
|
| 515 |
-
-webkit-box-shadow:
|
| 516 |
-
box-shadow:
|
| 517 |
}
|
| 518 |
#plugin-information .action-button {
|
| 519 |
background-color: #d54e21;
|
| 520 |
color: #fff;
|
| 521 |
}
|
| 522 |
|
| 523 |
-
#adminmenu li.current a
|
| 524 |
-
#adminmenu
|
| 525 |
background-color: #464646;
|
| 526 |
color: #fff;
|
| 527 |
-
-moz-box-shadow:
|
| 528 |
-
-khtml-box-shadow:
|
| 529 |
-
-webkit-box-shadow:
|
| 530 |
-
box-shadow:
|
| 531 |
}
|
| 532 |
|
| 533 |
div#media-upload-header,
|
|
@@ -550,7 +591,7 @@ input.readonly, textarea.readonly {
|
|
| 550 |
|
| 551 |
#ed_toolbar input,
|
| 552 |
#ed_reply_toolbar input {
|
| 553 |
-
background: #fff url("
|
| 554 |
}
|
| 555 |
|
| 556 |
#editable-post-name {
|
|
@@ -559,24 +600,24 @@ input.readonly, textarea.readonly {
|
|
| 559 |
|
| 560 |
#edit-slug-box strong,
|
| 561 |
.tablenav .displaying-num,
|
| 562 |
-
#submitted-on
|
|
|
|
| 563 |
color: #777;
|
| 564 |
}
|
| 565 |
|
| 566 |
-
.login #nav a
|
|
|
|
| 567 |
color: #21759b !important;
|
| 568 |
}
|
| 569 |
|
| 570 |
-
.login #nav a:hover
|
|
|
|
| 571 |
color: #d54e21 !important;
|
| 572 |
}
|
| 573 |
|
| 574 |
#footer {
|
| 575 |
-
color: #
|
| 576 |
-
border-color: #
|
| 577 |
-
background: #d9d9d9; /* fallback color */
|
| 578 |
-
background:-moz-linear-gradient(bottom, #9ccc85, #cae8be);
|
| 579 |
-
background:-webkit-gradient(linear, left bottom, left top, from(#9ccc85), to(#cae8be));
|
| 580 |
}
|
| 581 |
|
| 582 |
#media-items,
|
|
@@ -588,14 +629,14 @@ input.readonly, textarea.readonly {
|
|
| 588 |
.side-info,
|
| 589 |
.plugins tr,
|
| 590 |
#your-profile #rich_editing {
|
| 591 |
-
background-color: #
|
| 592 |
}
|
| 593 |
|
| 594 |
.plugins .inactive,
|
| 595 |
.plugins .inactive th,
|
| 596 |
.plugins .inactive td,
|
| 597 |
tr.inactive + tr.plugin-update-tr .plugin-update {
|
| 598 |
-
background-color: #
|
| 599 |
}
|
| 600 |
|
| 601 |
.plugin-update-tr .update-message {
|
|
@@ -646,24 +687,43 @@ table.widefat span.spam a,
|
|
| 646 |
#poststuff .postarea,
|
| 647 |
.stuffbox {
|
| 648 |
border-color: #dfdfdf;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 649 |
}
|
| 650 |
|
| 651 |
.widget,
|
| 652 |
-
.
|
| 653 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 654 |
}
|
| 655 |
|
| 656 |
-
.
|
| 657 |
color: #464646;
|
| 658 |
}
|
| 659 |
|
| 660 |
-
.widget .widget-top
|
| 661 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 662 |
color: #000;
|
| 663 |
}
|
| 664 |
|
| 665 |
.curtime #timestamp {
|
| 666 |
-
background-image: url(
|
| 667 |
}
|
| 668 |
|
| 669 |
#quicktags #ed_link {
|
|
@@ -680,12 +740,12 @@ table.widefat span.spam a,
|
|
| 680 |
|
| 681 |
.tagchecklist span a,
|
| 682 |
#bulk-titles div a {
|
| 683 |
-
background: url(
|
| 684 |
}
|
| 685 |
|
| 686 |
.tagchecklist span a:hover,
|
| 687 |
#bulk-titles div a:hover {
|
| 688 |
-
background: url(
|
| 689 |
}
|
| 690 |
|
| 691 |
#update-nag, .update-nag {
|
|
@@ -699,10 +759,7 @@ table.widefat span.spam a,
|
|
| 699 |
}
|
| 700 |
|
| 701 |
#wphead {
|
| 702 |
-
border-bottom
|
| 703 |
-
background: #d9d9d9; /* fallback color */
|
| 704 |
-
background:-moz-linear-gradient(bottom, #9ccc85, #cae8be);
|
| 705 |
-
background:-webkit-gradient(linear, left bottom, left top, from(#9ccc85), to(#cae8be));
|
| 706 |
}
|
| 707 |
|
| 708 |
#wphead h1 a {
|
|
@@ -710,26 +767,67 @@ table.widefat span.spam a,
|
|
| 710 |
}
|
| 711 |
|
| 712 |
#user_info {
|
| 713 |
-
color: #
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 714 |
}
|
| 715 |
|
| 716 |
#user_info a:link,
|
| 717 |
#user_info a:visited,
|
| 718 |
#footer a:link,
|
| 719 |
#footer a:visited {
|
| 720 |
-
color: #222;
|
| 721 |
text-decoration: none;
|
| 722 |
}
|
| 723 |
|
| 724 |
-
#user_info a:hover,
|
| 725 |
#footer a:hover {
|
| 726 |
color: #000;
|
| 727 |
-
text-decoration: underline
|
| 728 |
-
}
|
| 729 |
-
|
| 730 |
-
#user_info a:active,
|
| 731 |
-
#footer a:active {
|
| 732 |
-
color: #ccc !important;
|
| 733 |
}
|
| 734 |
|
| 735 |
div#media-upload-error,
|
|
@@ -772,8 +870,9 @@ table.widefat .spam a:hover,
|
|
| 772 |
|
| 773 |
/* editors */
|
| 774 |
#quicktags {
|
| 775 |
-
border-color: #
|
| 776 |
background-color: #dfdfdf;
|
|
|
|
| 777 |
}
|
| 778 |
|
| 779 |
#ed_toolbar input {
|
|
@@ -786,18 +885,22 @@ table.widefat .spam a:hover,
|
|
| 786 |
}
|
| 787 |
|
| 788 |
#poststuff .wp_themeSkin .mceStatusbar {
|
| 789 |
-
border-color: #
|
|
|
|
|
|
|
|
|
|
|
|
|
| 790 |
}
|
| 791 |
|
| 792 |
#poststuff #edButtonPreview,
|
| 793 |
#poststuff #edButtonHTML {
|
| 794 |
background-color: #f1f1f1;
|
| 795 |
-
border-color: #dfdfdf;
|
| 796 |
color: #999;
|
| 797 |
}
|
| 798 |
|
| 799 |
#poststuff #editor-toolbar .active {
|
| 800 |
-
border-
|
| 801 |
background-color: #e9e9e9;
|
| 802 |
color: #333;
|
| 803 |
}
|
|
@@ -812,12 +915,22 @@ table.widefat .spam a:hover,
|
|
| 812 |
.wp_themeSkin a:link,
|
| 813 |
.wp_themeSkin a:visited,
|
| 814 |
.wp_themeSkin a:active {
|
| 815 |
-
|
| 816 |
}
|
| 817 |
|
| 818 |
/* Containers */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 819 |
.wp_themeSkin iframe {
|
| 820 |
-
background:
|
| 821 |
}
|
| 822 |
|
| 823 |
/* Layout */
|
|
@@ -828,15 +941,41 @@ table.widefat .spam a:hover,
|
|
| 828 |
|
| 829 |
/* Button */
|
| 830 |
.wp_themeSkin .mceButton {
|
| 831 |
-
|
| 832 |
-
|
| 833 |
-
|
| 834 |
-
|
| 835 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 836 |
.wp_themeSkin a.mceButtonActive,
|
| 837 |
-
.wp_themeSkin a.
|
| 838 |
-
|
| 839 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 840 |
}
|
| 841 |
|
| 842 |
.wp_themeSkin .mceButtonDisabled {
|
|
@@ -845,22 +984,44 @@ table.widefat .spam a:hover,
|
|
| 845 |
|
| 846 |
/* ListBox */
|
| 847 |
.wp_themeSkin .mceListBox .mceText,
|
| 848 |
-
.wp_themeSkin .mceListBox .mceOpen
|
| 849 |
-
border-color: #
|
| 850 |
-
background-color: #
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 851 |
}
|
| 852 |
|
| 853 |
.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,
|
| 854 |
.wp_themeSkin .mceListBoxHover .mceOpen,
|
|
|
|
| 855 |
.wp_themeSkin .mceListBoxSelected .mceOpen,
|
| 856 |
-
.wp_themeSkin .mceListBoxSelected .mceText
|
| 857 |
-
|
| 858 |
-
background
|
|
|
|
| 859 |
}
|
| 860 |
|
|
|
|
| 861 |
.wp_themeSkin table.mceListBoxEnabled:hover .mceText,
|
| 862 |
-
.wp_themeSkin .mceListBoxHover .mceText
|
| 863 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 864 |
}
|
| 865 |
|
| 866 |
.wp_themeSkin select.mceListBox {
|
|
@@ -871,15 +1032,34 @@ table.widefat .spam a:hover,
|
|
| 871 |
/* SplitButton */
|
| 872 |
.wp_themeSkin .mceSplitButton a.mceAction,
|
| 873 |
.wp_themeSkin .mceSplitButton a.mceOpen {
|
| 874 |
-
border-color: #
|
| 875 |
}
|
| 876 |
|
| 877 |
.wp_themeSkin .mceSplitButton a.mceOpen:hover,
|
| 878 |
.wp_themeSkin .mceSplitButtonSelected a.mceOpen,
|
| 879 |
.wp_themeSkin table.mceSplitButtonEnabled:hover a.mceAction,
|
| 880 |
.wp_themeSkin .mceSplitButton a.mceAction:hover {
|
| 881 |
-
|
| 882 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 883 |
}
|
| 884 |
|
| 885 |
.wp_themeSkin .mceSplitButtonActive {
|
|
@@ -941,8 +1121,8 @@ table.widefat .spam a:hover,
|
|
| 941 |
}
|
| 942 |
|
| 943 |
.wp_themeSkin tr.mceFirst td.mceToolbar {
|
| 944 |
-
background: #dfdfdf url("
|
| 945 |
-
border-color: #
|
| 946 |
}
|
| 947 |
|
| 948 |
.wp-admin #mceModalBlocker {
|
|
@@ -953,20 +1133,20 @@ table.widefat .spam a:hover,
|
|
| 953 |
background: #444444;
|
| 954 |
border-left: 1px solid #999;
|
| 955 |
border-top: 1px solid #999;
|
| 956 |
-
-moz-border-radius:
|
| 957 |
-
-webkit-border-top-left-radius:
|
| 958 |
-
-khtml-border-top-left-radius:
|
| 959 |
-
border-top-left-radius:
|
| 960 |
}
|
| 961 |
|
| 962 |
.wp-admin .clearlooks2 .mceFocus .mceTop .mceRight {
|
| 963 |
background: #444444;
|
| 964 |
border-right: 1px solid #999;
|
| 965 |
border-top: 1px solid #999;
|
| 966 |
-
border-top-right-radius:
|
| 967 |
-
-khtml-border-top-right-radius:
|
| 968 |
-
-webkit-border-top-right-radius:
|
| 969 |
-
-moz-border-radius: 0
|
| 970 |
}
|
| 971 |
|
| 972 |
.wp-admin .clearlooks2 .mceMiddle .mceLeft {
|
|
@@ -1006,9 +1186,18 @@ table.widefat .spam a:hover,
|
|
| 1006 |
}
|
| 1007 |
/* end TinyMCE */
|
| 1008 |
|
| 1009 |
-
#
|
| 1010 |
-
#
|
| 1011 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1012 |
.editwidget .widget-inside {
|
| 1013 |
border-color: #dfdfdf;
|
| 1014 |
}
|
|
@@ -1029,79 +1218,81 @@ table.widefat .spam a:hover,
|
|
| 1029 |
}
|
| 1030 |
|
| 1031 |
/* menu */
|
| 1032 |
-
#
|
| 1033 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1034 |
}
|
| 1035 |
|
| 1036 |
#adminmenu li.wp-menu-separator {
|
| 1037 |
-
background:
|
|
|
|
| 1038 |
}
|
| 1039 |
|
| 1040 |
-
|
| 1041 |
-
|
| 1042 |
}
|
| 1043 |
|
| 1044 |
#adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,
|
| 1045 |
#adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle {
|
| 1046 |
-
background: transparent url(
|
| 1047 |
}
|
| 1048 |
|
| 1049 |
#adminmenu .wp-has-submenu:hover .wp-menu-toggle,
|
| 1050 |
#adminmenu .wp-menu-open .wp-menu-toggle {
|
| 1051 |
-
background: transparent url(
|
| 1052 |
-
}
|
| 1053 |
-
|
| 1054 |
-
#adminmenu a.menu-top {
|
| 1055 |
-
background: #f1f1f1 url(../../../../wp-admin/images/menu-bits.gif?ver=20100610) repeat-x scroll left -379px;
|
| 1056 |
}
|
| 1057 |
|
| 1058 |
-
#adminmenu .
|
| 1059 |
-
|
| 1060 |
-
|
| 1061 |
-
|
| 1062 |
-
|
| 1063 |
-
background: none;
|
| 1064 |
-
}
|
| 1065 |
-
|
| 1066 |
-
#adminmenu .wp-has-current-submenu ul li a.current {
|
| 1067 |
-
background: url(../../../../wp-admin/images/menu-dark.gif) top left no-repeat !important;
|
| 1068 |
-
}
|
| 1069 |
-
|
| 1070 |
-
.wp-has-current-submenu .wp-submenu {
|
| 1071 |
-
border-top: none !important;
|
| 1072 |
}
|
| 1073 |
|
| 1074 |
-
#adminmenu li.wp-
|
| 1075 |
-
border-
|
| 1076 |
}
|
| 1077 |
|
| 1078 |
#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
|
| 1079 |
-
#adminmenu li.current a.menu-top
|
| 1080 |
-
|
| 1081 |
-
|
| 1082 |
-
|
| 1083 |
-
|
| 1084 |
-
|
| 1085 |
-
|
| 1086 |
-
|
| 1087 |
-
|
| 1088 |
-
|
| 1089 |
-
|
| 1090 |
-
|
| 1091 |
-
#adminmenu li.wp-has-current-submenu ul li a {
|
| 1092 |
-
background: url(../../../../wp-admin/images/menu-dark.gif) bottom left no-repeat !important;
|
| 1093 |
}
|
| 1094 |
|
| 1095 |
-
#adminmenu li.wp-has-current-submenu
|
| 1096 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1097 |
}
|
| 1098 |
|
| 1099 |
-
#adminmenu .wp-submenu
|
| 1100 |
-
|
|
|
|
|
|
|
| 1101 |
}
|
| 1102 |
|
| 1103 |
#adminmenu .wp-submenu a:hover {
|
| 1104 |
-
background-color: #
|
| 1105 |
color: #333 !important;
|
| 1106 |
}
|
| 1107 |
|
|
@@ -1109,145 +1300,232 @@ table.widefat .spam a:hover,
|
|
| 1109 |
#adminmenu .wp-submenu li.current a,
|
| 1110 |
#adminmenu .wp-submenu li.current a:hover {
|
| 1111 |
color: #333;
|
| 1112 |
-
background-color: #f5f5f5;
|
| 1113 |
-
background-image: none;
|
| 1114 |
-
border-color: #e3e3e3;
|
| 1115 |
}
|
| 1116 |
|
| 1117 |
#adminmenu .wp-submenu ul {
|
| 1118 |
background-color: #fff;
|
| 1119 |
}
|
| 1120 |
|
| 1121 |
-
.folded #adminmenu
|
| 1122 |
-
#adminmenu .wp-submenu
|
| 1123 |
-
|
| 1124 |
}
|
| 1125 |
|
| 1126 |
-
.folded #adminmenu
|
| 1127 |
-
|
| 1128 |
-
|
|
|
|
| 1129 |
}
|
| 1130 |
|
| 1131 |
-
#adminmenu .wp-
|
| 1132 |
-
|
| 1133 |
-
|
| 1134 |
}
|
| 1135 |
|
| 1136 |
#adminmenu div.wp-submenu {
|
| 1137 |
background-color: transparent;
|
| 1138 |
}
|
| 1139 |
|
| 1140 |
-
/* menu
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1141 |
#adminmenu .menu-icon-dashboard div.wp-menu-image {
|
| 1142 |
-
background: transparent url('
|
| 1143 |
}
|
| 1144 |
|
| 1145 |
#adminmenu .menu-icon-dashboard:hover div.wp-menu-image,
|
| 1146 |
#adminmenu .menu-icon-dashboard.wp-has-current-submenu div.wp-menu-image,
|
| 1147 |
#adminmenu .menu-icon-dashboard.current div.wp-menu-image {
|
| 1148 |
-
background: transparent url('
|
| 1149 |
}
|
| 1150 |
|
| 1151 |
#adminmenu .menu-icon-post div.wp-menu-image {
|
| 1152 |
-
background: transparent url('
|
| 1153 |
}
|
| 1154 |
|
| 1155 |
#adminmenu .menu-icon-post:hover div.wp-menu-image,
|
| 1156 |
#adminmenu .menu-icon-post.wp-has-current-submenu div.wp-menu-image {
|
| 1157 |
-
background: transparent url('
|
| 1158 |
}
|
| 1159 |
|
| 1160 |
#adminmenu .menu-icon-media div.wp-menu-image {
|
| 1161 |
-
background: transparent url('
|
| 1162 |
}
|
| 1163 |
|
| 1164 |
#adminmenu .menu-icon-media:hover div.wp-menu-image,
|
| 1165 |
#adminmenu .menu-icon-media.wp-has-current-submenu div.wp-menu-image {
|
| 1166 |
-
background: transparent url('
|
| 1167 |
}
|
| 1168 |
|
| 1169 |
#adminmenu .menu-icon-links div.wp-menu-image {
|
| 1170 |
-
background: transparent url('
|
| 1171 |
}
|
| 1172 |
|
| 1173 |
#adminmenu .menu-icon-links:hover div.wp-menu-image,
|
| 1174 |
#adminmenu .menu-icon-links.wp-has-current-submenu div.wp-menu-image {
|
| 1175 |
-
background: transparent url('
|
| 1176 |
}
|
| 1177 |
|
| 1178 |
#adminmenu .menu-icon-page div.wp-menu-image {
|
| 1179 |
-
background: transparent url('
|
| 1180 |
}
|
| 1181 |
|
| 1182 |
#adminmenu .menu-icon-page:hover div.wp-menu-image,
|
| 1183 |
#adminmenu .menu-icon-page.wp-has-current-submenu div.wp-menu-image {
|
| 1184 |
-
background: transparent url('
|
| 1185 |
}
|
| 1186 |
|
| 1187 |
#adminmenu .menu-icon-comments div.wp-menu-image {
|
| 1188 |
-
background: transparent url('
|
| 1189 |
}
|
| 1190 |
|
| 1191 |
#adminmenu .menu-icon-comments:hover div.wp-menu-image,
|
| 1192 |
#adminmenu .menu-icon-comments.wp-has-current-submenu div.wp-menu-image,
|
| 1193 |
#adminmenu .menu-icon-comments.current div.wp-menu-image {
|
| 1194 |
-
background: transparent url('
|
| 1195 |
}
|
| 1196 |
|
| 1197 |
#adminmenu .menu-icon-appearance div.wp-menu-image {
|
| 1198 |
-
background: transparent url('
|
| 1199 |
}
|
| 1200 |
|
| 1201 |
#adminmenu .menu-icon-appearance:hover div.wp-menu-image,
|
| 1202 |
#adminmenu .menu-icon-appearance.wp-has-current-submenu div.wp-menu-image {
|
| 1203 |
-
background: transparent url('
|
| 1204 |
}
|
| 1205 |
|
| 1206 |
#adminmenu .menu-icon-plugins div.wp-menu-image {
|
| 1207 |
-
background: transparent url('
|
| 1208 |
}
|
| 1209 |
|
| 1210 |
#adminmenu .menu-icon-plugins:hover div.wp-menu-image,
|
| 1211 |
#adminmenu .menu-icon-plugins.wp-has-current-submenu div.wp-menu-image {
|
| 1212 |
-
background: transparent url('
|
| 1213 |
}
|
| 1214 |
|
| 1215 |
#adminmenu .menu-icon-users div.wp-menu-image {
|
| 1216 |
-
background: transparent url('
|
| 1217 |
}
|
| 1218 |
|
| 1219 |
#adminmenu .menu-icon-users:hover div.wp-menu-image,
|
| 1220 |
-
#adminmenu .menu-icon-users.wp-has-current-submenu div.wp-menu-image
|
| 1221 |
-
|
|
|
|
| 1222 |
}
|
| 1223 |
|
| 1224 |
#adminmenu .menu-icon-tools div.wp-menu-image {
|
| 1225 |
-
background: transparent url('
|
| 1226 |
}
|
| 1227 |
|
| 1228 |
#adminmenu .menu-icon-tools:hover div.wp-menu-image,
|
| 1229 |
-
#adminmenu .menu-icon-tools.wp-has-current-submenu div.wp-menu-image
|
| 1230 |
-
|
|
|
|
| 1231 |
}
|
| 1232 |
|
|
|
|
| 1233 |
#adminmenu .menu-icon-settings div.wp-menu-image {
|
| 1234 |
-
background: transparent url('
|
| 1235 |
}
|
| 1236 |
|
| 1237 |
#adminmenu .menu-icon-settings:hover div.wp-menu-image,
|
| 1238 |
#adminmenu .menu-icon-settings.wp-has-current-submenu div.wp-menu-image {
|
| 1239 |
-
background: transparent url('
|
| 1240 |
}
|
| 1241 |
|
| 1242 |
#adminmenu .menu-icon-site div.wp-menu-image {
|
| 1243 |
-
background: transparent url('
|
| 1244 |
}
|
| 1245 |
|
| 1246 |
#adminmenu .menu-icon-site:hover div.wp-menu-image,
|
| 1247 |
#adminmenu .menu-icon-site.wp-has-current-submenu div.wp-menu-image {
|
| 1248 |
-
background: transparent url('
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1249 |
}
|
| 1250 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1251 |
|
| 1252 |
|
| 1253 |
/* Diff */
|
|
@@ -1290,8 +1568,22 @@ table.diff .diff-addedline ins {
|
|
| 1290 |
border-color: #dfdfdf;
|
| 1291 |
}
|
| 1292 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1293 |
#screen-meta-links a.show-settings {
|
| 1294 |
-
color: #
|
| 1295 |
}
|
| 1296 |
|
| 1297 |
#screen-meta-links a.show-settings:hover {
|
|
@@ -1334,6 +1626,16 @@ div.star.select:hover {
|
|
| 1334 |
background-color: #d00;
|
| 1335 |
}
|
| 1336 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1337 |
#plugin-information .fyi ul {
|
| 1338 |
background-color: #eaf3fa;
|
| 1339 |
}
|
|
@@ -1391,11 +1693,7 @@ fieldset.inline-edit-col-right .inline-edit-col {
|
|
| 1391 |
}
|
| 1392 |
|
| 1393 |
.meta-box-sortables .postbox:hover .handlediv {
|
| 1394 |
-
background: transparent url(
|
| 1395 |
-
}
|
| 1396 |
-
|
| 1397 |
-
#major-publishing-actions {
|
| 1398 |
-
background: #cae8be;
|
| 1399 |
}
|
| 1400 |
|
| 1401 |
.tablenav .tablenav-pages {
|
|
@@ -1404,16 +1702,18 @@ fieldset.inline-edit-col-right .inline-edit-col {
|
|
| 1404 |
|
| 1405 |
.tablenav .tablenav-pages a {
|
| 1406 |
border-color: #e3e3e3;
|
| 1407 |
-
background: #eee url('
|
| 1408 |
}
|
| 1409 |
|
| 1410 |
-
.tablenav .tablenav-pages a:hover
|
|
|
|
| 1411 |
color: #d54e21;
|
| 1412 |
-
border-color: #d54321;
|
| 1413 |
}
|
| 1414 |
|
| 1415 |
-
.tablenav .tablenav-pages a
|
| 1416 |
-
|
|
|
|
|
|
|
| 1417 |
}
|
| 1418 |
|
| 1419 |
.tablenav .tablenav-pages .current {
|
|
@@ -1441,11 +1741,12 @@ fieldset.inline-edit-col-right .inline-edit-col {
|
|
| 1441 |
}
|
| 1442 |
|
| 1443 |
.misc-pub-section {
|
| 1444 |
-
border-
|
|
|
|
| 1445 |
}
|
| 1446 |
|
| 1447 |
#minor-publishing {
|
| 1448 |
-
border-bottom-color: #
|
| 1449 |
}
|
| 1450 |
|
| 1451 |
#post-body .misc-pub-section {
|
|
@@ -1466,7 +1767,8 @@ fieldset.inline-edit-col-right .inline-edit-col {
|
|
| 1466 |
}
|
| 1467 |
|
| 1468 |
#post-body ul.category-tabs li.tabs a,
|
| 1469 |
-
#post-body ul.add-menu-item-tabs li.tabs a
|
|
|
|
| 1470 |
color: #333;
|
| 1471 |
}
|
| 1472 |
|
|
@@ -1489,7 +1791,7 @@ fieldset.inline-edit-col-right .inline-edit-col {
|
|
| 1489 |
#favorite-first {
|
| 1490 |
border-color: #c0c0c0;
|
| 1491 |
background: #f1f1f1; /* fallback color */
|
| 1492 |
-
background:-moz-linear-gradient(bottom,
|
| 1493 |
background:-webkit-gradient(linear, left bottom, left top, from(#e7e7e7), to(#fff));
|
| 1494 |
}
|
| 1495 |
|
|
@@ -1499,7 +1801,11 @@ fieldset.inline-edit-col-right .inline-edit-col {
|
|
| 1499 |
}
|
| 1500 |
|
| 1501 |
#favorite-toggle {
|
| 1502 |
-
background: transparent url(
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1503 |
}
|
| 1504 |
|
| 1505 |
#favorite-actions a {
|
|
@@ -1514,84 +1820,33 @@ fieldset.inline-edit-col-right .inline-edit-col {
|
|
| 1514 |
text-decoration: underline;
|
| 1515 |
}
|
| 1516 |
|
| 1517 |
-
#screen-meta a.show-settings
|
| 1518 |
-
|
| 1519 |
-
|
| 1520 |
-
}
|
| 1521 |
-
|
| 1522 |
-
#icon-edit,
|
| 1523 |
-
#icon-post {
|
| 1524 |
-
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -552px -5px;
|
| 1525 |
-
}
|
| 1526 |
-
|
| 1527 |
-
#icon-index {
|
| 1528 |
-
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -137px -5px;
|
| 1529 |
-
}
|
| 1530 |
-
|
| 1531 |
-
#icon-upload {
|
| 1532 |
-
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -251px -5px;
|
| 1533 |
-
}
|
| 1534 |
-
|
| 1535 |
-
#icon-link-manager,
|
| 1536 |
-
#icon-link,
|
| 1537 |
-
#icon-link-category {
|
| 1538 |
-
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -190px -5px;
|
| 1539 |
-
}
|
| 1540 |
-
|
| 1541 |
-
#icon-edit-pages,
|
| 1542 |
-
#icon-page {
|
| 1543 |
-
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -312px -5px;
|
| 1544 |
}
|
| 1545 |
|
| 1546 |
-
#
|
| 1547 |
-
background: transparent url(
|
| 1548 |
-
}
|
| 1549 |
-
|
| 1550 |
-
#icon-themes {
|
| 1551 |
-
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -11px -5px;
|
| 1552 |
-
}
|
| 1553 |
-
|
| 1554 |
-
#icon-plugins {
|
| 1555 |
-
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -370px -5px;
|
| 1556 |
-
}
|
| 1557 |
-
|
| 1558 |
-
#icon-users,
|
| 1559 |
-
#icon-profile,
|
| 1560 |
-
#icon-user-edit {
|
| 1561 |
-
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -600px -5px;
|
| 1562 |
-
}
|
| 1563 |
-
|
| 1564 |
-
#icon-tools,
|
| 1565 |
-
#icon-admin {
|
| 1566 |
-
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -432px -5px;
|
| 1567 |
-
}
|
| 1568 |
-
|
| 1569 |
-
#icon-options-general {
|
| 1570 |
-
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -492px -5px;
|
| 1571 |
-
}
|
| 1572 |
-
|
| 1573 |
-
#icon-ms-admin {
|
| 1574 |
-
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -659px -5px;
|
| 1575 |
}
|
| 1576 |
|
| 1577 |
.view-switch #view-switch-list {
|
| 1578 |
-
background: transparent url(
|
| 1579 |
}
|
| 1580 |
|
| 1581 |
-
.view-switch #view-switch-list
|
| 1582 |
-
background: transparent url(
|
| 1583 |
}
|
| 1584 |
|
| 1585 |
.view-switch #view-switch-excerpt {
|
| 1586 |
-
background: transparent url(
|
| 1587 |
}
|
| 1588 |
|
| 1589 |
-
.view-switch #view-switch-excerpt
|
| 1590 |
-
background: transparent url(
|
| 1591 |
}
|
| 1592 |
|
| 1593 |
#header-logo {
|
| 1594 |
-
background: transparent url(
|
| 1595 |
}
|
| 1596 |
|
| 1597 |
.popular-tags,
|
|
@@ -1610,28 +1865,26 @@ fieldset.inline-edit-col-right .inline-edit-col {
|
|
| 1610 |
|
| 1611 |
div.widgets-sortables,
|
| 1612 |
#widgets-left .inactive {
|
| 1613 |
-
background-color: #
|
| 1614 |
-
border-color: #
|
| 1615 |
}
|
| 1616 |
|
| 1617 |
#available-widgets .widget-holder {
|
| 1618 |
-
background-color: #
|
| 1619 |
-
border-color: #
|
| 1620 |
}
|
| 1621 |
|
| 1622 |
-
#widgets
|
| 1623 |
-
|
| 1624 |
-
background-image: url(../../../../wp-admin/images/ed-bg.gif);
|
| 1625 |
-
text-shadow: #fff 0 1px 0;
|
| 1626 |
-
border-color: #dfdfdf;
|
| 1627 |
}
|
| 1628 |
|
| 1629 |
-
|
| 1630 |
-
|
| 1631 |
-
text-shadow: #
|
| 1632 |
-
|
| 1633 |
-
|
| 1634 |
-
|
|
|
|
| 1635 |
}
|
| 1636 |
|
| 1637 |
.sidebar-name:hover,
|
|
@@ -1643,12 +1896,12 @@ div.widgets-sortables,
|
|
| 1643 |
color: black;
|
| 1644 |
}
|
| 1645 |
|
| 1646 |
-
|
| 1647 |
-
background: transparent url(
|
| 1648 |
}
|
| 1649 |
|
| 1650 |
-
|
| 1651 |
-
background: transparent url(
|
| 1652 |
}
|
| 1653 |
|
| 1654 |
.in-widget-title {
|
|
@@ -1689,12 +1942,153 @@ div.widgets-sortables,
|
|
| 1689 |
background-color: #f1f1f1;
|
| 1690 |
}
|
| 1691 |
|
| 1692 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1693 |
.menu-item-handle {
|
| 1694 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1695 |
}
|
| 1696 |
|
| 1697 |
#menu-management .nav-tab-active {
|
| 1698 |
-
background: #
|
| 1699 |
-
border-bottom-color: #
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1700 |
}
|
| 1 |
/* =wp-admin area stylesheet with a bbPress twist
|
| 2 |
-------------------------------------------------------------- */
|
| 3 |
|
| 4 |
+
html,
|
| 5 |
+
.wp-dialog {
|
| 6 |
+
background-color: #fff;
|
| 7 |
}
|
| 8 |
|
| 9 |
* html input,
|
| 98 |
|
| 99 |
.widefat {
|
| 100 |
border-color: #dfdfdf;
|
| 101 |
+
background-color: #f9f9f9;
|
| 102 |
}
|
| 103 |
|
| 104 |
div.dashboard-widget-error {
|
| 114 |
}
|
| 115 |
|
| 116 |
div.tabs-panel,
|
| 117 |
+
.wp-tab-panel,
|
| 118 |
ul.category-tabs li.tabs,
|
| 119 |
+
ul.add-menu-item-tabs li.tabs,
|
| 120 |
+
.wp-tab-active {
|
| 121 |
border-color: #dfdfdf;
|
| 122 |
+
background-color: #fff;
|
| 123 |
}
|
| 124 |
|
| 125 |
ul.category-tabs li.tabs,
|
| 126 |
+
ul.add-menu-item-tabs li.tabs,
|
| 127 |
+
.wp-tab-active {
|
| 128 |
+
background-color: #fff;
|
| 129 |
}
|
| 130 |
|
| 131 |
input.disabled,
|
| 139 |
color: #fff;
|
| 140 |
}
|
| 141 |
|
| 142 |
+
.widget .widget-top,
|
| 143 |
+
.postbox h3,
|
| 144 |
+
.stuffbox h3,
|
| 145 |
+
.widefat thead tr th,
|
| 146 |
+
.widefat tfoot tr th,
|
| 147 |
+
h3.dashboard-widget-title,
|
| 148 |
+
h3.dashboard-widget-title span,
|
| 149 |
+
h3.dashboard-widget-title small,
|
| 150 |
+
.find-box-head,
|
| 151 |
+
.sidebar-name,
|
| 152 |
+
#nav-menu-header,
|
| 153 |
+
#nav-menu-footer,
|
| 154 |
+
.menu-item-handle,
|
| 155 |
+
#fullscreen-topbar {
|
| 156 |
+
background-color: #f1f1f1; /* Fallback */
|
| 157 |
+
background-image: -ms-linear-gradient(top, #eefcf1, #deece1); /* IE10 */
|
| 158 |
+
background-image: -moz-linear-gradient(top, #eefcf1, #deece1); /* Firefox */
|
| 159 |
+
background-image: -o-linear-gradient(top, #eefcf1, #deece1); /* Opera */
|
| 160 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#eefcf1), to(#deece1)); /* old Webkit */
|
| 161 |
+
background-image: -webkit-linear-gradient(top, #eefcf1, #deece1); /* new Webkit */
|
| 162 |
+
background-image: linear-gradient(top, #eefcf1, #deece1); /* proposed W3C Markup */
|
| 163 |
+
}
|
| 164 |
+
|
| 165 |
.widget .widget-top,
|
| 166 |
.postbox h3,
|
| 167 |
.stuffbox h3 {
|
| 168 |
+
border-bottom-color: #dfdfdf;
|
| 169 |
text-shadow: #fff 0 1px 0;
|
| 170 |
+
-moz-box-shadow: 0 1px 0 #fff;
|
| 171 |
+
-webkit-box-shadow: 0 1px 0 #fff;
|
| 172 |
+
box-shadow: 0 1px 0 #fff;
|
| 173 |
}
|
| 174 |
|
| 175 |
.form-table th,
|
| 200 |
color: #464646;
|
| 201 |
}
|
| 202 |
|
| 203 |
+
.wrap .add-new-h2 {
|
| 204 |
+
background: #f1f1f1;
|
| 205 |
+
}
|
| 206 |
+
|
| 207 |
+
.subtitle {
|
| 208 |
+
color: #777;
|
| 209 |
+
}
|
| 210 |
+
|
| 211 |
.ac_over {
|
| 212 |
background-color: #f0f0b8;
|
| 213 |
}
|
| 223 |
|
| 224 |
.alternate,
|
| 225 |
.alt {
|
| 226 |
+
background-color: #fcfcfc;
|
| 227 |
}
|
| 228 |
|
| 229 |
.available-theme a.screenshot {
|
| 245 |
border-top-color: #dfdfdf;
|
| 246 |
}
|
| 247 |
|
| 248 |
+
div.error,
|
| 249 |
.login #login_error {
|
| 250 |
background-color: #ffebe8;
|
| 251 |
border-color: #c00;
|
| 252 |
}
|
| 253 |
|
| 254 |
+
div.error a {
|
| 255 |
color: #c00;
|
| 256 |
}
|
| 257 |
|
| 270 |
|
| 271 |
.highlight {
|
| 272 |
background-color: #e4f2fd;
|
| 273 |
+
color: #000;
|
| 274 |
}
|
| 275 |
|
| 276 |
.howto,
|
| 277 |
.nonessential,
|
| 278 |
#edit-slug-box,
|
| 279 |
.form-input-tip,
|
|
|
|
| 280 |
.subsubsub {
|
| 281 |
color: #666;
|
| 282 |
}
|
| 295 |
}
|
| 296 |
|
| 297 |
.post-com-count {
|
| 298 |
+
background-image: url(../../../../../wp-admin/images/bubble_bg.gif);
|
| 299 |
color: #fff;
|
| 300 |
}
|
| 301 |
|
| 342 |
.button,
|
| 343 |
.submit input,
|
| 344 |
.button-secondary {
|
| 345 |
+
background: #f2f2f2 url(../../../../../wp-admin/images/white-grad.png) repeat-x scroll left top;
|
| 346 |
text-shadow: rgba(255,255,255,1) 0 1px 0;
|
| 347 |
}
|
| 348 |
|
| 349 |
.button:active,
|
| 350 |
.submit input:active,
|
| 351 |
.button-secondary:active {
|
| 352 |
+
background: #eee url(../../../../../wp-admin/images/white-grad-active.png) repeat-x scroll left top;
|
| 353 |
}
|
| 354 |
|
| 355 |
input.button-primary,
|
| 356 |
button.button-primary,
|
| 357 |
a.button-primary {
|
| 358 |
+
border-color: #555;
|
| 359 |
font-weight: bold;
|
| 360 |
color: #fff;
|
| 361 |
+
background: #060 url(../images/button-grad.png) repeat-x scroll left top;
|
| 362 |
text-shadow: rgba(0,0,0,0.3) 0 -1px 0;
|
| 363 |
}
|
| 364 |
|
| 365 |
input.button-primary:active,
|
| 366 |
button.button-primary:active,
|
| 367 |
a.button-primary:active {
|
| 368 |
+
background: #060 url(../images/button-grad.png) repeat-x scroll left bottom;
|
| 369 |
color: #cae8be;
|
| 370 |
}
|
| 371 |
|
| 374 |
a.button-primary:hover,
|
| 375 |
a.button-primary:focus,
|
| 376 |
a.button-primary:active {
|
| 377 |
+
border-color: #13455b;
|
| 378 |
+
color: #eaf2fa;
|
| 379 |
}
|
| 380 |
|
| 381 |
.button-disabled,
|
| 385 |
.button-secondary:disabled,
|
| 386 |
a.button.disabled {
|
| 387 |
color: #aaa !important;
|
| 388 |
+
border-color: #555 !important;
|
| 389 |
}
|
| 390 |
|
| 391 |
.button-primary-disabled,
|
| 423 |
}
|
| 424 |
|
| 425 |
#side-sortables .category-tabs .tabs a,
|
| 426 |
+
#side-sortables .add-menu-item-tabs .tabs a,
|
| 427 |
+
.wp-tab-bar .wp-tab-active a {
|
| 428 |
color: #333;
|
| 429 |
}
|
| 430 |
|
| 475 |
color: #d54e21;
|
| 476 |
}
|
| 477 |
|
| 478 |
+
div.updated,
|
| 479 |
.login .message {
|
| 480 |
background-color: #ffffe0;
|
| 481 |
border-color: #e6db55;
|
| 494 |
}
|
| 495 |
|
| 496 |
.widefat td,
|
| 497 |
+
.widefat th {
|
| 498 |
+
border-top-color: #fff;
|
| 499 |
+
border-bottom-color: #dfdfdf;
|
|
|
|
| 500 |
}
|
| 501 |
|
| 502 |
.widefat th {
|
| 503 |
text-shadow: rgba(255,255,255,0.8) 0 1px 0;
|
| 504 |
}
|
| 505 |
|
| 506 |
+
.widefat td {
|
| 507 |
+
color: #555;
|
| 508 |
+
}
|
| 509 |
+
.widefat p,
|
| 510 |
+
.widefat ol,
|
| 511 |
+
.widefat ul {
|
| 512 |
+
color: #333;
|
| 513 |
+
}
|
| 514 |
+
|
| 515 |
.widefat thead tr th,
|
| 516 |
.widefat tfoot tr th,
|
| 517 |
h3.dashboard-widget-title,
|
| 519 |
h3.dashboard-widget-title small,
|
| 520 |
.find-box-head {
|
| 521 |
color: #333;
|
| 522 |
+
}
|
| 523 |
+
|
| 524 |
+
th.sortable a:hover, th.sortable a:active, th.sortable a:focus {
|
| 525 |
+
color: #333;
|
| 526 |
}
|
| 527 |
|
| 528 |
h3.dashboard-widget-title small a {
|
| 545 |
color: #007700;
|
| 546 |
}
|
| 547 |
|
| 548 |
+
#adminmenu .awaiting-mod,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 549 |
#adminmenu .update-plugins,
|
| 550 |
#sidemenu a .update-plugins,
|
| 551 |
#rightnow .reallynow {
|
| 552 |
background-color: #464646;
|
| 553 |
color: #fff;
|
| 554 |
+
-moz-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 555 |
+
-khtml-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 556 |
+
-webkit-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 557 |
+
box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 558 |
}
|
| 559 |
#plugin-information .action-button {
|
| 560 |
background-color: #d54e21;
|
| 561 |
color: #fff;
|
| 562 |
}
|
| 563 |
|
| 564 |
+
#adminmenu li.current a .awaiting-mod,
|
| 565 |
+
#adminmenu li a.wp-has-current-submenu .update-plugins{
|
| 566 |
background-color: #464646;
|
| 567 |
color: #fff;
|
| 568 |
+
-moz-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 569 |
+
-khtml-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 570 |
+
-webkit-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 571 |
+
box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 572 |
}
|
| 573 |
|
| 574 |
div#media-upload-header,
|
| 591 |
|
| 592 |
#ed_toolbar input,
|
| 593 |
#ed_reply_toolbar input {
|
| 594 |
+
background: #fff url("../../../../../wp-admin/images/fade-butt.png") repeat-x 0 -2px;
|
| 595 |
}
|
| 596 |
|
| 597 |
#editable-post-name {
|
| 600 |
|
| 601 |
#edit-slug-box strong,
|
| 602 |
.tablenav .displaying-num,
|
| 603 |
+
#submitted-on,
|
| 604 |
+
.submitted-on {
|
| 605 |
color: #777;
|
| 606 |
}
|
| 607 |
|
| 608 |
+
.login #nav a,
|
| 609 |
+
.login #backtoblog a {
|
| 610 |
color: #21759b !important;
|
| 611 |
}
|
| 612 |
|
| 613 |
+
.login #nav a:hover,
|
| 614 |
+
.login #backtoblog a:hover {
|
| 615 |
color: #d54e21 !important;
|
| 616 |
}
|
| 617 |
|
| 618 |
#footer {
|
| 619 |
+
color: #777;
|
| 620 |
+
border-color: #dfdfdf;
|
|
|
|
|
|
|
|
|
|
| 621 |
}
|
| 622 |
|
| 623 |
#media-items,
|
| 629 |
.side-info,
|
| 630 |
.plugins tr,
|
| 631 |
#your-profile #rich_editing {
|
| 632 |
+
background-color: #fcfcfc;
|
| 633 |
}
|
| 634 |
|
| 635 |
.plugins .inactive,
|
| 636 |
.plugins .inactive th,
|
| 637 |
.plugins .inactive td,
|
| 638 |
tr.inactive + tr.plugin-update-tr .plugin-update {
|
| 639 |
+
background-color: #f4f4f4;
|
| 640 |
}
|
| 641 |
|
| 642 |
.plugin-update-tr .update-message {
|
| 687 |
#poststuff .postarea,
|
| 688 |
.stuffbox {
|
| 689 |
border-color: #dfdfdf;
|
| 690 |
+
-moz-box-shadow: inset 0 1px 0 #fff;
|
| 691 |
+
-webkit-box-shadow: inset 0 1px 0 #fff;
|
| 692 |
+
box-shadow: inset 0 1px 0 #fff;
|
| 693 |
+
-moz-border-radius: 3px;
|
| 694 |
+
-khtml-border-radius: 3px;
|
| 695 |
+
-webkit-border-radius: 3px;
|
| 696 |
+
border-radius: 3px;
|
| 697 |
}
|
| 698 |
|
| 699 |
.widget,
|
| 700 |
+
#widget-list .widget-top,
|
| 701 |
+
.postbox,
|
| 702 |
+
.menu-item-settings {
|
| 703 |
+
background-color: #deece1; /* Fallback */
|
| 704 |
+
background-image: -ms-linear-gradient(top, #eefcf1, #eefcf1); /* IE10 */
|
| 705 |
+
background-image: -moz-linear-gradient(top, #deece1, #eefcf1); /* Firefox */
|
| 706 |
+
background-image: -o-linear-gradient(top, #deece1, #eefcf1); /* Opera */
|
| 707 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#deece1), to(#eefcf1)); /* old Webkit */
|
| 708 |
+
background-image: -webkit-linear-gradient(top, #deece1, #eefcf1); /* new Webkit */
|
| 709 |
+
background-image: linear-gradient(top, #deece1, #eefcf1); /* proposed W3C Markup */
|
| 710 |
}
|
| 711 |
|
| 712 |
+
.postbox h3 {
|
| 713 |
color: #464646;
|
| 714 |
}
|
| 715 |
|
| 716 |
+
.widget .widget-top {
|
| 717 |
+
color: #222;
|
| 718 |
+
}
|
| 719 |
+
|
| 720 |
+
.sidebar-name:hover h3,
|
| 721 |
+
.postbox h3:hover {
|
| 722 |
color: #000;
|
| 723 |
}
|
| 724 |
|
| 725 |
.curtime #timestamp {
|
| 726 |
+
background-image: url(../../../../../wp-admin/images/date-button.gif);
|
| 727 |
}
|
| 728 |
|
| 729 |
#quicktags #ed_link {
|
| 740 |
|
| 741 |
.tagchecklist span a,
|
| 742 |
#bulk-titles div a {
|
| 743 |
+
background: url(../../../../../wp-admin/images/xit.gif) no-repeat;
|
| 744 |
}
|
| 745 |
|
| 746 |
.tagchecklist span a:hover,
|
| 747 |
#bulk-titles div a:hover {
|
| 748 |
+
background: url(../../../../../wp-admin/images/xit.gif) no-repeat -10px 0;
|
| 749 |
}
|
| 750 |
|
| 751 |
#update-nag, .update-nag {
|
| 759 |
}
|
| 760 |
|
| 761 |
#wphead {
|
| 762 |
+
border-bottom:#dfdfdf 1px solid;
|
|
|
|
|
|
|
|
|
|
| 763 |
}
|
| 764 |
|
| 765 |
#wphead h1 a {
|
| 767 |
}
|
| 768 |
|
| 769 |
#user_info {
|
| 770 |
+
color: #555;
|
| 771 |
+
}
|
| 772 |
+
|
| 773 |
+
#user_info:hover,
|
| 774 |
+
#user_info.active {
|
| 775 |
+
color: #222;
|
| 776 |
+
}
|
| 777 |
+
|
| 778 |
+
#user_info.active {
|
| 779 |
+
background-color: #f1f1f1; /* Fallback */
|
| 780 |
+
background-image: -ms-linear-gradient(bottom, #e9e9e9, #f9f9f9); /* IE10 */
|
| 781 |
+
background-image: -moz-linear-gradient(bottom, #e9e9e9, #f9f9f9); /* Firefox */
|
| 782 |
+
background-image: -o-linear-gradient(bottom, #e9e9e9, #f9f9f9); /* Opera */
|
| 783 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#e9e9e9), to(#f9f9f9)); /* old Webkit */
|
| 784 |
+
background-image: -webkit-linear-gradient(bottom, #e9e9e9, #f9f9f9); /* new Webkit */
|
| 785 |
+
background-image: linear-gradient(bottom, #e9e9e9, #f9f9f9); /* proposed W3C Markup */
|
| 786 |
+
border-color: #aaa #aaa #dfdfdf;
|
| 787 |
+
}
|
| 788 |
+
|
| 789 |
+
#user_info_arrow {
|
| 790 |
+
background: transparent url(../../../../../wp-admin/images/arrows.png) no-repeat 6px 5px;
|
| 791 |
+
}
|
| 792 |
+
|
| 793 |
+
#user_info:hover #user_info_arrow,
|
| 794 |
+
#user_info.active #user_info_arrow {
|
| 795 |
+
background: transparent url(../../../../../wp-admin/images/arrows-dark.png) no-repeat 6px 5px;
|
| 796 |
+
}
|
| 797 |
+
|
| 798 |
+
#user_info_links {
|
| 799 |
+
-moz-box-shadow: 0 3px 2px -2px rgba( 0, 0, 0, 0.2 );
|
| 800 |
+
-webkit-box-shadow: 0 3px 2px -2px rgba( 0, 0, 0, 0.2 );
|
| 801 |
+
box-shadow: 0 3px 2px -2px rgba( 0, 0, 0, 0.2 );
|
| 802 |
+
}
|
| 803 |
+
|
| 804 |
+
#user_info_links ul {
|
| 805 |
+
background: #f1f1f1;
|
| 806 |
+
border-color: #ccc #aaa #aaa;
|
| 807 |
+
-moz-box-shadow: inset 0 1px 0 #f9f9f9;
|
| 808 |
+
-webkit-box-shadow: inset 0 1px 0 #f9f9f9;
|
| 809 |
+
box-shadow: inset 0 1px 0 #f9f9f9;
|
| 810 |
+
}
|
| 811 |
+
|
| 812 |
+
#user_info_links li:hover {
|
| 813 |
+
background-color: #dfdfdf;
|
| 814 |
+
}
|
| 815 |
+
|
| 816 |
+
#user_info_links li:hover a,
|
| 817 |
+
#user_info_links li a:hover {
|
| 818 |
+
text-decoration: none;
|
| 819 |
}
|
| 820 |
|
| 821 |
#user_info a:link,
|
| 822 |
#user_info a:visited,
|
| 823 |
#footer a:link,
|
| 824 |
#footer a:visited {
|
|
|
|
| 825 |
text-decoration: none;
|
| 826 |
}
|
| 827 |
|
|
|
|
| 828 |
#footer a:hover {
|
| 829 |
color: #000;
|
| 830 |
+
text-decoration: underline;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 831 |
}
|
| 832 |
|
| 833 |
div#media-upload-error,
|
| 870 |
|
| 871 |
/* editors */
|
| 872 |
#quicktags {
|
| 873 |
+
border-color: #ccc;
|
| 874 |
background-color: #dfdfdf;
|
| 875 |
+
background-image: url("../../../../../wp-admin/images/ed-bg.gif");
|
| 876 |
}
|
| 877 |
|
| 878 |
#ed_toolbar input {
|
| 885 |
}
|
| 886 |
|
| 887 |
#poststuff .wp_themeSkin .mceStatusbar {
|
| 888 |
+
border-color: #dfdfdf;
|
| 889 |
+
}
|
| 890 |
+
|
| 891 |
+
#poststuff .wp_themeSkin .mceStatusbar * {
|
| 892 |
+
color: #555;
|
| 893 |
}
|
| 894 |
|
| 895 |
#poststuff #edButtonPreview,
|
| 896 |
#poststuff #edButtonHTML {
|
| 897 |
background-color: #f1f1f1;
|
| 898 |
+
border-color: #dfdfdf #dfdfdf #ccc;
|
| 899 |
color: #999;
|
| 900 |
}
|
| 901 |
|
| 902 |
#poststuff #editor-toolbar .active {
|
| 903 |
+
border-color: #ccc #ccc #e9e9e9;
|
| 904 |
background-color: #e9e9e9;
|
| 905 |
color: #333;
|
| 906 |
}
|
| 915 |
.wp_themeSkin a:link,
|
| 916 |
.wp_themeSkin a:visited,
|
| 917 |
.wp_themeSkin a:active {
|
| 918 |
+
color: #000;
|
| 919 |
}
|
| 920 |
|
| 921 |
/* Containers */
|
| 922 |
+
.wp_themeSkin table.mceLayout {
|
| 923 |
+
border-color: #ccc #ccc #dfdfdf;
|
| 924 |
+
}
|
| 925 |
+
|
| 926 |
+
#editorcontainer #content,
|
| 927 |
+
#editorcontainer .wp_themeSkin .mceIframeContainer {
|
| 928 |
+
-moz-box-shadow: inset 1px 1px 2px rgba( 0, 0, 0, 0.1 );
|
| 929 |
+
-webkit-box-shadow: inset 1px 1px 2px rgba( 0, 0, 0, 0.1 );
|
| 930 |
+
box-shadow: inset 1px 1px 2px rgba( 0, 0, 0, 0.1 );
|
| 931 |
+
}
|
| 932 |
.wp_themeSkin iframe {
|
| 933 |
+
background: transparent;
|
| 934 |
}
|
| 935 |
|
| 936 |
/* Layout */
|
| 941 |
|
| 942 |
/* Button */
|
| 943 |
.wp_themeSkin .mceButton {
|
| 944 |
+
border-color: #ccc;
|
| 945 |
+
background-color: #eee; /* Fallback */
|
| 946 |
+
background-image: -ms-linear-gradient(bottom, #ddd, #fff); /* IE10 */
|
| 947 |
+
background-image: -moz-linear-gradient(bottom, #ddd, #fff); /* Firefox */
|
| 948 |
+
background-image: -o-linear-gradient(bottom, #ddd, #fff); /* Opera */
|
| 949 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#fff)); /* old Webkit */
|
| 950 |
+
background-image: -webkit-linear-gradient(bottom, #ddd, #fff); /* new Webkit */
|
| 951 |
+
background-image: linear-gradient(bottom, #ddd, #fff); /* proposed W3C Markup */
|
| 952 |
+
}
|
| 953 |
+
|
| 954 |
+
.wp_themeSkin a.mceButtonEnabled:hover {
|
| 955 |
+
border-color: #a0a0a0;
|
| 956 |
+
background: #ddd; /* Fallback */
|
| 957 |
+
background-image: -ms-linear-gradient(bottom, #ccc, #fff); /* IE10 */
|
| 958 |
+
background-image: -moz-linear-gradient(bottom, #ccc, #fff); /* Firefox */
|
| 959 |
+
background-image: -o-linear-gradient(bottom, #ccc, #fff); /* Opera */
|
| 960 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#ccc), to(#fff)); /* old Webkit */
|
| 961 |
+
background-image: -webkit-linear-gradient(bottom, #ccc, #fff); /* new Webkit */
|
| 962 |
+
background-image: linear-gradient(bottom, #ccc, #fff); /* proposed W3C Markup */
|
| 963 |
+
}
|
| 964 |
+
|
| 965 |
+
.wp_themeSkin a.mceButton:active,
|
| 966 |
+
.wp_themeSkin a.mceButtonEnabled:active,
|
| 967 |
+
.wp_themeSkin a.mceButtonSelected:active,
|
| 968 |
.wp_themeSkin a.mceButtonActive,
|
| 969 |
+
.wp_themeSkin a.mceButtonActive:active,
|
| 970 |
+
.wp_themeSkin a.mceButtonActive:hover {
|
| 971 |
+
background-color: #ddd; /* Fallback */
|
| 972 |
+
background-image: -ms-linear-gradient(bottom, #eee, #bbb); /* IE10 */
|
| 973 |
+
background-image: -moz-linear-gradient(bottom, #eee, #bbb); /* Firefox */
|
| 974 |
+
background-image: -o-linear-gradient(bottom, #eee, #bbb); /* Opera */
|
| 975 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#eee), to(#bbb)); /* old Webkit */
|
| 976 |
+
background-image: -webkit-linear-gradient(bottom, #eee, #bbb); /* new Webkit */
|
| 977 |
+
background-image: linear-gradient(bottom, #eee, #bbb); /* proposed W3C Markup */
|
| 978 |
+
border-color: #909090;
|
| 979 |
}
|
| 980 |
|
| 981 |
.wp_themeSkin .mceButtonDisabled {
|
| 984 |
|
| 985 |
/* ListBox */
|
| 986 |
.wp_themeSkin .mceListBox .mceText,
|
| 987 |
+
.wp_themeSkin .mceListBox .mceOpen {
|
| 988 |
+
border-color: #ccc;
|
| 989 |
+
background-color: #eee; /* Fallback */
|
| 990 |
+
background-image: -ms-linear-gradient(bottom, #ddd, #fff); /* IE10 */
|
| 991 |
+
background-image: -moz-linear-gradient(bottom, #ddd, #fff); /* Firefox */
|
| 992 |
+
background-image: -o-linear-gradient(bottom, #ddd, #fff); /* Opera */
|
| 993 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#fff)); /* old Webkit */
|
| 994 |
+
background-image: -webkit-linear-gradient(bottom, #ddd, #fff); /* new Webkit */
|
| 995 |
+
background-image: linear-gradient(bottom, #ddd, #fff); /* proposed W3C Markup */
|
| 996 |
+
}
|
| 997 |
+
|
| 998 |
+
.wp_themeSkin .mceListBox .mceOpen {
|
| 999 |
+
border-left: 0 !important;
|
| 1000 |
}
|
| 1001 |
|
| 1002 |
.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,
|
| 1003 |
.wp_themeSkin .mceListBoxHover .mceOpen,
|
| 1004 |
+
.wp_themeSkin .mceListBoxHover:active .mceOpen,
|
| 1005 |
.wp_themeSkin .mceListBoxSelected .mceOpen,
|
| 1006 |
+
.wp_themeSkin .mceListBoxSelected .mceText,
|
| 1007 |
+
.wp_themeSkin table.mceListBoxEnabled:active .mceText {
|
| 1008 |
+
background: #ccc;
|
| 1009 |
+
border-color: #999;
|
| 1010 |
}
|
| 1011 |
|
| 1012 |
+
/* List Box Hover */
|
| 1013 |
.wp_themeSkin table.mceListBoxEnabled:hover .mceText,
|
| 1014 |
+
.wp_themeSkin .mceListBoxHover .mceText,
|
| 1015 |
+
.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,
|
| 1016 |
+
.wp_themeSkin .mceListBoxHover .mceOpen {
|
| 1017 |
+
border-color: #909090;
|
| 1018 |
+
background-color: #eee; /* Fallback */
|
| 1019 |
+
background-image: -ms-linear-gradient(bottom, #ccc, #fff); /* IE10 */
|
| 1020 |
+
background-image: -moz-linear-gradient(bottom, #ccc, #fff); /* Firefox */
|
| 1021 |
+
background-image: -o-linear-gradient(bottom, #ccc, #fff); /* Opera */
|
| 1022 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#ccc), to(#fff)); /* old Webkit */
|
| 1023 |
+
background-image: -webkit-linear-gradient(bottom, #ccc, #fff); /* new Webkit */
|
| 1024 |
+
background-image: linear-gradient(bottom, #ccc, #fff); /* proposed W3C Markup */
|
| 1025 |
}
|
| 1026 |
|
| 1027 |
.wp_themeSkin select.mceListBox {
|
| 1032 |
/* SplitButton */
|
| 1033 |
.wp_themeSkin .mceSplitButton a.mceAction,
|
| 1034 |
.wp_themeSkin .mceSplitButton a.mceOpen {
|
| 1035 |
+
border-color: #ccc;
|
| 1036 |
}
|
| 1037 |
|
| 1038 |
.wp_themeSkin .mceSplitButton a.mceOpen:hover,
|
| 1039 |
.wp_themeSkin .mceSplitButtonSelected a.mceOpen,
|
| 1040 |
.wp_themeSkin table.mceSplitButtonEnabled:hover a.mceAction,
|
| 1041 |
.wp_themeSkin .mceSplitButton a.mceAction:hover {
|
| 1042 |
+
border-color: #909090;
|
| 1043 |
+
}
|
| 1044 |
+
|
| 1045 |
+
|
| 1046 |
+
.wp_themeSkin table.mceSplitButton td {
|
| 1047 |
+
background-color: #eee; /* Fallback */
|
| 1048 |
+
background-image: -ms-linear-gradient(bottom, #ddd, #fff); /* IE10 */
|
| 1049 |
+
background-image: -moz-linear-gradient(bottom, #ddd, #fff); /* Firefox */
|
| 1050 |
+
background-image: -o-linear-gradient(bottom, #ddd, #fff); /* Opera */
|
| 1051 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#fff)); /* old Webkit */
|
| 1052 |
+
background-image: -webkit-linear-gradient(bottom, #ddd, #fff); /* new Webkit */
|
| 1053 |
+
background-image: linear-gradient(bottom, #ddd, #fff); /* proposed W3C Markup */
|
| 1054 |
+
}
|
| 1055 |
+
|
| 1056 |
+
.wp_themeSkin table.mceSplitButton:hover td {
|
| 1057 |
+
background-image: -ms-linear-gradient(bottom, #ccc, #fff); /* IE10 */
|
| 1058 |
+
background-image: -moz-linear-gradient(bottom, #ccc, #fff); /* Firefox */
|
| 1059 |
+
background-image: -o-linear-gradient(bottom, #ccc, #fff); /* Opera */
|
| 1060 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#ccc), to(#fff)); /* old Webkit */
|
| 1061 |
+
background-image: -webkit-linear-gradient(bottom, #ccc, #fff); /* new Webkit */
|
| 1062 |
+
background-image: linear-gradient(bottom, #ccc, #fff); /* proposed W3C Markup */
|
| 1063 |
}
|
| 1064 |
|
| 1065 |
.wp_themeSkin .mceSplitButtonActive {
|
| 1121 |
}
|
| 1122 |
|
| 1123 |
.wp_themeSkin tr.mceFirst td.mceToolbar {
|
| 1124 |
+
background: #dfdfdf url("../../../../../wp-admin/images/ed-bg.gif") repeat-x scroll left top;
|
| 1125 |
+
border-color: #ccc;
|
| 1126 |
}
|
| 1127 |
|
| 1128 |
.wp-admin #mceModalBlocker {
|
| 1133 |
background: #444444;
|
| 1134 |
border-left: 1px solid #999;
|
| 1135 |
border-top: 1px solid #999;
|
| 1136 |
+
-moz-border-radius: 3px 0 0 0;
|
| 1137 |
+
-webkit-border-top-left-radius: 3px;
|
| 1138 |
+
-khtml-border-top-left-radius: 3px;
|
| 1139 |
+
border-top-left-radius: 3px;
|
| 1140 |
}
|
| 1141 |
|
| 1142 |
.wp-admin .clearlooks2 .mceFocus .mceTop .mceRight {
|
| 1143 |
background: #444444;
|
| 1144 |
border-right: 1px solid #999;
|
| 1145 |
border-top: 1px solid #999;
|
| 1146 |
+
border-top-right-radius: 3px;
|
| 1147 |
+
-khtml-border-top-right-radius: 3px;
|
| 1148 |
+
-webkit-border-top-right-radius: 3px;
|
| 1149 |
+
-moz-border-radius: 0 3px 0 0;
|
| 1150 |
}
|
| 1151 |
|
| 1152 |
.wp-admin .clearlooks2 .mceMiddle .mceLeft {
|
| 1186 |
}
|
| 1187 |
/* end TinyMCE */
|
| 1188 |
|
| 1189 |
+
#titlediv #title {
|
| 1190 |
+
border-color: #ccc;
|
| 1191 |
+
}
|
| 1192 |
+
|
| 1193 |
+
#editorcontainer {
|
| 1194 |
+
border-color: #ccc #ccc #dfdfdf;
|
| 1195 |
+
}
|
| 1196 |
+
|
| 1197 |
+
#post-status-info {
|
| 1198 |
+
border-color: #dfdfdf #ccc #ccc;
|
| 1199 |
+
}
|
| 1200 |
+
|
| 1201 |
.editwidget .widget-inside {
|
| 1202 |
border-color: #dfdfdf;
|
| 1203 |
}
|
| 1218 |
}
|
| 1219 |
|
| 1220 |
/* menu */
|
| 1221 |
+
#adminmenuback,
|
| 1222 |
+
#adminmenuwrap {
|
| 1223 |
+
background-color: #deece1;
|
| 1224 |
+
border-color: #ccc;
|
| 1225 |
+
}
|
| 1226 |
+
|
| 1227 |
+
#adminmenushadow,
|
| 1228 |
+
#adminmenuback {
|
| 1229 |
+
background-image: url(../../../../../wp-admin/images/menu-shadow.png);
|
| 1230 |
+
background-position: top right;
|
| 1231 |
+
background-repeat: repeat-y;
|
| 1232 |
}
|
| 1233 |
|
| 1234 |
#adminmenu li.wp-menu-separator {
|
| 1235 |
+
background: #dfdfdf;
|
| 1236 |
+
border-color: #cfcfcf;
|
| 1237 |
}
|
| 1238 |
|
| 1239 |
+
#adminmenu div.separator {
|
| 1240 |
+
border-color: #deece1;
|
| 1241 |
}
|
| 1242 |
|
| 1243 |
#adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,
|
| 1244 |
#adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle {
|
| 1245 |
+
background: transparent url(../../../../../wp-admin/images/arrows-dark.png) no-repeat -1px 6px;
|
| 1246 |
}
|
| 1247 |
|
| 1248 |
#adminmenu .wp-has-submenu:hover .wp-menu-toggle,
|
| 1249 |
#adminmenu .wp-menu-open .wp-menu-toggle {
|
| 1250 |
+
background: transparent url(../../../../../wp-admin/images/arrows.png) no-repeat -2px 6px;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1251 |
}
|
| 1252 |
|
| 1253 |
+
#adminmenu a.menu-top,
|
| 1254 |
+
.folded #adminmenu li.menu-top,
|
| 1255 |
+
#adminmenu .wp-submenu .wp-submenu-head {
|
| 1256 |
+
border-top-color: #f9f9f9;
|
| 1257 |
+
border-bottom-color: #dfdfdf;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1258 |
}
|
| 1259 |
|
| 1260 |
+
#adminmenu li.wp-menu-open {
|
| 1261 |
+
border-color: #dfdfdf;
|
| 1262 |
}
|
| 1263 |
|
| 1264 |
#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
|
| 1265 |
+
#adminmenu li.current a.menu-top,
|
| 1266 |
+
.folded #adminmenu li.wp-has-current-submenu,
|
| 1267 |
+
.folded #adminmenu li.current.menu-top,
|
| 1268 |
+
#adminmenu .wp-menu-arrow,
|
| 1269 |
+
#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
|
| 1270 |
+
background-color: #777; /* Fallback */
|
| 1271 |
+
background-image: -ms-linear-gradient(bottom, #060, #6EB469); /* IE10 */
|
| 1272 |
+
background-image: -moz-linear-gradient(bottom, #060, #6EB469); /* Firefox */
|
| 1273 |
+
background-image: -o-linear-gradient(bottom, #060, #6EB469); /* Opera */
|
| 1274 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#060), to(#6EB469)); /* old Webkit */
|
| 1275 |
+
background-image: -webkit-linear-gradient(bottom, #060, #6EB469); /* new Webkit */
|
| 1276 |
+
background-image: linear-gradient(bottom, #060, #6EB469); /* proposed W3C Markup */
|
|
|
|
|
|
|
| 1277 |
}
|
| 1278 |
|
| 1279 |
+
#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
|
| 1280 |
+
#adminmenu li.current a.menu-top,
|
| 1281 |
+
#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
|
| 1282 |
+
text-shadow: 0 -1px 0 #333;
|
| 1283 |
+
color: #fff;
|
| 1284 |
+
border-top-color: #808080;
|
| 1285 |
+
border-bottom-color: #6d6d6d;
|
| 1286 |
}
|
| 1287 |
|
| 1288 |
+
.folded #adminmenu li.wp-has-current-submenu,
|
| 1289 |
+
.folded #adminmenu li.current.menu-top {
|
| 1290 |
+
border-top-color: #808080;
|
| 1291 |
+
border-bottom-color: #6d6d6d;
|
| 1292 |
}
|
| 1293 |
|
| 1294 |
#adminmenu .wp-submenu a:hover {
|
| 1295 |
+
background-color: #EEFCF1 !important;
|
| 1296 |
color: #333 !important;
|
| 1297 |
}
|
| 1298 |
|
| 1300 |
#adminmenu .wp-submenu li.current a,
|
| 1301 |
#adminmenu .wp-submenu li.current a:hover {
|
| 1302 |
color: #333;
|
|
|
|
|
|
|
|
|
|
| 1303 |
}
|
| 1304 |
|
| 1305 |
#adminmenu .wp-submenu ul {
|
| 1306 |
background-color: #fff;
|
| 1307 |
}
|
| 1308 |
|
| 1309 |
+
.folded #adminmenu .wp-submenu-wrap,
|
| 1310 |
+
.folded #adminmenu .wp-submenu ul {
|
| 1311 |
+
border-color: #dfdfdf;
|
| 1312 |
}
|
| 1313 |
|
| 1314 |
+
.folded #adminmenu .wp-submenu-wrap {
|
| 1315 |
+
-moz-box-shadow: 2px 2px 5px rgba( 0, 0, 0, 0.4 );
|
| 1316 |
+
-webkit-box-shadow: 2px 2px 5px rgba( 0, 0, 0, 0.4 );
|
| 1317 |
+
box-shadow: 2px 2px 5px rgba( 0, 0, 0, 0.4 );
|
| 1318 |
}
|
| 1319 |
|
| 1320 |
+
#adminmenu .wp-submenu .wp-submenu-head {
|
| 1321 |
+
border-right-color: #dfdfdf;
|
| 1322 |
+
background-color: #ececec;
|
| 1323 |
}
|
| 1324 |
|
| 1325 |
#adminmenu div.wp-submenu {
|
| 1326 |
background-color: transparent;
|
| 1327 |
}
|
| 1328 |
|
| 1329 |
+
/* collapse menu button */
|
| 1330 |
+
#collapse-menu {
|
| 1331 |
+
color: #aaa;
|
| 1332 |
+
}
|
| 1333 |
+
|
| 1334 |
+
#collapse-menu:hover {
|
| 1335 |
+
color: #999;
|
| 1336 |
+
}
|
| 1337 |
+
|
| 1338 |
+
#collapse-button {
|
| 1339 |
+
border-color: #ccc;
|
| 1340 |
+
background-color: #f4f4f4; /* Fallback */
|
| 1341 |
+
background-image: -ms-linear-gradient(bottom, #dfdfdf, #fff); /* IE10 */
|
| 1342 |
+
background-image: -moz-linear-gradient(bottom, #dfdfdf, #fff); /* Firefox */
|
| 1343 |
+
background-image: -o-linear-gradient(bottom, #dfdfdf, #fff); /* Opera */
|
| 1344 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#fff)); /* old Webkit */
|
| 1345 |
+
background-image: -webkit-linear-gradient(bottom, #dfdfdf, #fff); /* new Webkit */
|
| 1346 |
+
background-image: linear-gradient(bottom, #dfdfdf, #fff); /* proposed W3C Markup */
|
| 1347 |
+
}
|
| 1348 |
+
#collapse-menu:hover #collapse-button {
|
| 1349 |
+
border-color: #aaa;
|
| 1350 |
+
}
|
| 1351 |
+
#collapse-button div {
|
| 1352 |
+
background: transparent url(../../../../../wp-admin/images/arrows.png) no-repeat 0 -72px;
|
| 1353 |
+
}
|
| 1354 |
+
.folded #collapse-button div {
|
| 1355 |
+
background-position: 0 -108px;
|
| 1356 |
+
}
|
| 1357 |
+
|
| 1358 |
+
/* menu and screen icons */
|
| 1359 |
#adminmenu .menu-icon-dashboard div.wp-menu-image {
|
| 1360 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -60px -33px;
|
| 1361 |
}
|
| 1362 |
|
| 1363 |
#adminmenu .menu-icon-dashboard:hover div.wp-menu-image,
|
| 1364 |
#adminmenu .menu-icon-dashboard.wp-has-current-submenu div.wp-menu-image,
|
| 1365 |
#adminmenu .menu-icon-dashboard.current div.wp-menu-image {
|
| 1366 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -60px -1px;
|
| 1367 |
}
|
| 1368 |
|
| 1369 |
#adminmenu .menu-icon-post div.wp-menu-image {
|
| 1370 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -271px -33px;
|
| 1371 |
}
|
| 1372 |
|
| 1373 |
#adminmenu .menu-icon-post:hover div.wp-menu-image,
|
| 1374 |
#adminmenu .menu-icon-post.wp-has-current-submenu div.wp-menu-image {
|
| 1375 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -271px -1px;
|
| 1376 |
}
|
| 1377 |
|
| 1378 |
#adminmenu .menu-icon-media div.wp-menu-image {
|
| 1379 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -120px -33px;
|
| 1380 |
}
|
| 1381 |
|
| 1382 |
#adminmenu .menu-icon-media:hover div.wp-menu-image,
|
| 1383 |
#adminmenu .menu-icon-media.wp-has-current-submenu div.wp-menu-image {
|
| 1384 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -120px -1px;
|
| 1385 |
}
|
| 1386 |
|
| 1387 |
#adminmenu .menu-icon-links div.wp-menu-image {
|
| 1388 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -90px -33px;
|
| 1389 |
}
|
| 1390 |
|
| 1391 |
#adminmenu .menu-icon-links:hover div.wp-menu-image,
|
| 1392 |
#adminmenu .menu-icon-links.wp-has-current-submenu div.wp-menu-image {
|
| 1393 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -90px -1px;
|
| 1394 |
}
|
| 1395 |
|
| 1396 |
#adminmenu .menu-icon-page div.wp-menu-image {
|
| 1397 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -150px -33px;
|
| 1398 |
}
|
| 1399 |
|
| 1400 |
#adminmenu .menu-icon-page:hover div.wp-menu-image,
|
| 1401 |
#adminmenu .menu-icon-page.wp-has-current-submenu div.wp-menu-image {
|
| 1402 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -150px -1px;
|
| 1403 |
}
|
| 1404 |
|
| 1405 |
#adminmenu .menu-icon-comments div.wp-menu-image {
|
| 1406 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -30px -33px;
|
| 1407 |
}
|
| 1408 |
|
| 1409 |
#adminmenu .menu-icon-comments:hover div.wp-menu-image,
|
| 1410 |
#adminmenu .menu-icon-comments.wp-has-current-submenu div.wp-menu-image,
|
| 1411 |
#adminmenu .menu-icon-comments.current div.wp-menu-image {
|
| 1412 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -30px -1px;
|
| 1413 |
}
|
| 1414 |
|
| 1415 |
#adminmenu .menu-icon-appearance div.wp-menu-image {
|
| 1416 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll 0 -33px;
|
| 1417 |
}
|
| 1418 |
|
| 1419 |
#adminmenu .menu-icon-appearance:hover div.wp-menu-image,
|
| 1420 |
#adminmenu .menu-icon-appearance.wp-has-current-submenu div.wp-menu-image {
|
| 1421 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll 0 -1px;
|
| 1422 |
}
|
| 1423 |
|
| 1424 |
#adminmenu .menu-icon-plugins div.wp-menu-image {
|
| 1425 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -180px -33px;
|
| 1426 |
}
|
| 1427 |
|
| 1428 |
#adminmenu .menu-icon-plugins:hover div.wp-menu-image,
|
| 1429 |
#adminmenu .menu-icon-plugins.wp-has-current-submenu div.wp-menu-image {
|
| 1430 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -180px -1px;
|
| 1431 |
}
|
| 1432 |
|
| 1433 |
#adminmenu .menu-icon-users div.wp-menu-image {
|
| 1434 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -300px -33px;
|
| 1435 |
}
|
| 1436 |
|
| 1437 |
#adminmenu .menu-icon-users:hover div.wp-menu-image,
|
| 1438 |
+
#adminmenu .menu-icon-users.wp-has-current-submenu div.wp-menu-image,
|
| 1439 |
+
#adminmenu .menu-icon-users.current div.wp-menu-image {
|
| 1440 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -300px -1px;
|
| 1441 |
}
|
| 1442 |
|
| 1443 |
#adminmenu .menu-icon-tools div.wp-menu-image {
|
| 1444 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -210px -33px;
|
| 1445 |
}
|
| 1446 |
|
| 1447 |
#adminmenu .menu-icon-tools:hover div.wp-menu-image,
|
| 1448 |
+
#adminmenu .menu-icon-tools.wp-has-current-submenu div.wp-menu-image,
|
| 1449 |
+
#adminmenu .menu-icon-tools.current div.wp-menu-image {
|
| 1450 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -210px -1px;
|
| 1451 |
}
|
| 1452 |
|
| 1453 |
+
#icon-options-general,
|
| 1454 |
#adminmenu .menu-icon-settings div.wp-menu-image {
|
| 1455 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -240px -33px;
|
| 1456 |
}
|
| 1457 |
|
| 1458 |
#adminmenu .menu-icon-settings:hover div.wp-menu-image,
|
| 1459 |
#adminmenu .menu-icon-settings.wp-has-current-submenu div.wp-menu-image {
|
| 1460 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -240px -1px;
|
| 1461 |
}
|
| 1462 |
|
| 1463 |
#adminmenu .menu-icon-site div.wp-menu-image {
|
| 1464 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -360px -33px;
|
| 1465 |
}
|
| 1466 |
|
| 1467 |
#adminmenu .menu-icon-site:hover div.wp-menu-image,
|
| 1468 |
#adminmenu .menu-icon-site.wp-has-current-submenu div.wp-menu-image {
|
| 1469 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -360px -1px;
|
| 1470 |
+
}
|
| 1471 |
+
/* end menu and screen icons */
|
| 1472 |
+
|
| 1473 |
+
/* Screen Icons */
|
| 1474 |
+
#icon-edit,
|
| 1475 |
+
#icon-post {
|
| 1476 |
+
background: transparent url(../../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -552px -5px;
|
| 1477 |
+
}
|
| 1478 |
+
|
| 1479 |
+
#icon-index {
|
| 1480 |
+
background: transparent url(../../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -137px -5px;
|
| 1481 |
+
}
|
| 1482 |
+
|
| 1483 |
+
#icon-upload {
|
| 1484 |
+
background: transparent url(../../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -251px -5px;
|
| 1485 |
+
}
|
| 1486 |
+
|
| 1487 |
+
#icon-link-manager,
|
| 1488 |
+
#icon-link,
|
| 1489 |
+
#icon-link-category {
|
| 1490 |
+
background: transparent url(../../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -190px -5px;
|
| 1491 |
+
}
|
| 1492 |
+
|
| 1493 |
+
#icon-edit-pages,
|
| 1494 |
+
#icon-page {
|
| 1495 |
+
background: transparent url(../../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -312px -5px;
|
| 1496 |
+
}
|
| 1497 |
+
|
| 1498 |
+
#icon-edit-comments {
|
| 1499 |
+
background: transparent url(../../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -72px -5px;
|
| 1500 |
+
}
|
| 1501 |
+
|
| 1502 |
+
#icon-themes {
|
| 1503 |
+
background: transparent url(../../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -11px -5px;
|
| 1504 |
+
}
|
| 1505 |
+
|
| 1506 |
+
#icon-plugins {
|
| 1507 |
+
background: transparent url(../../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -370px -5px;
|
| 1508 |
}
|
| 1509 |
+
|
| 1510 |
+
#icon-users,
|
| 1511 |
+
#icon-profile,
|
| 1512 |
+
#icon-user-edit {
|
| 1513 |
+
background: transparent url(../../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -600px -5px;
|
| 1514 |
+
}
|
| 1515 |
+
|
| 1516 |
+
#icon-tools,
|
| 1517 |
+
#icon-admin {
|
| 1518 |
+
background: transparent url(../../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -432px -5px;
|
| 1519 |
+
}
|
| 1520 |
+
|
| 1521 |
+
#icon-options-general {
|
| 1522 |
+
background: transparent url(../../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -492px -5px;
|
| 1523 |
+
}
|
| 1524 |
+
|
| 1525 |
+
#icon-ms-admin {
|
| 1526 |
+
background: transparent url(../../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -659px -5px;
|
| 1527 |
+
}
|
| 1528 |
+
/* end screen icons */
|
| 1529 |
|
| 1530 |
|
| 1531 |
/* Diff */
|
| 1568 |
border-color: #dfdfdf;
|
| 1569 |
}
|
| 1570 |
|
| 1571 |
+
#screen-options-link-wrap,
|
| 1572 |
+
#contextual-help-link-wrap {
|
| 1573 |
+
background-color: #e3e3e3; /* Fallback */
|
| 1574 |
+
border-right: 1px solid transparent;
|
| 1575 |
+
border-left: 1px solid transparent;
|
| 1576 |
+
border-bottom: 1px solid transparent;
|
| 1577 |
+
background-image: -ms-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* IE10 */
|
| 1578 |
+
background-image: -moz-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* Firefox */
|
| 1579 |
+
background-image: -o-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* Opera */
|
| 1580 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#f1f1f1)); /* old Webkit */
|
| 1581 |
+
background-image: -webkit-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* new Webkit */
|
| 1582 |
+
background-image: linear-gradient(bottom, #dfdfdf, #f1f1f1); /* proposed W3C Markup */
|
| 1583 |
+
}
|
| 1584 |
+
|
| 1585 |
#screen-meta-links a.show-settings {
|
| 1586 |
+
color: #777;
|
| 1587 |
}
|
| 1588 |
|
| 1589 |
#screen-meta-links a.show-settings:hover {
|
| 1626 |
background-color: #d00;
|
| 1627 |
}
|
| 1628 |
|
| 1629 |
+
div.star img {
|
| 1630 |
+
border-left: 1px solid #fff;
|
| 1631 |
+
border-right: 1px solid #fff;
|
| 1632 |
+
}
|
| 1633 |
+
|
| 1634 |
+
.widefat div.star img {
|
| 1635 |
+
border-left: 1px solid #f9f9f9;
|
| 1636 |
+
border-right: 1px solid #f9f9f9;
|
| 1637 |
+
}
|
| 1638 |
+
|
| 1639 |
#plugin-information .fyi ul {
|
| 1640 |
background-color: #eaf3fa;
|
| 1641 |
}
|
| 1693 |
}
|
| 1694 |
|
| 1695 |
.meta-box-sortables .postbox:hover .handlediv {
|
| 1696 |
+
background: transparent url(../../../../../wp-admin/images/arrows.png) no-repeat 6px 7px;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1697 |
}
|
| 1698 |
|
| 1699 |
.tablenav .tablenav-pages {
|
| 1702 |
|
| 1703 |
.tablenav .tablenav-pages a {
|
| 1704 |
border-color: #e3e3e3;
|
| 1705 |
+
background: #eee url('../images/menu-bits.gif?ver=20100610') repeat-x scroll left -379px;
|
| 1706 |
}
|
| 1707 |
|
| 1708 |
+
.tablenav .tablenav-pages a:hover,
|
| 1709 |
+
.tablenav .tablenav-pages a:focus {
|
| 1710 |
color: #d54e21;
|
|
|
|
| 1711 |
}
|
| 1712 |
|
| 1713 |
+
.tablenav .tablenav-pages a.disabled,
|
| 1714 |
+
.tablenav .tablenav-pages a.disabled:hover,
|
| 1715 |
+
.tablenav .tablenav-pages a.disabled:focus {
|
| 1716 |
+
color: #aaa;
|
| 1717 |
}
|
| 1718 |
|
| 1719 |
.tablenav .tablenav-pages .current {
|
| 1741 |
}
|
| 1742 |
|
| 1743 |
.misc-pub-section {
|
| 1744 |
+
border-top-color: #fff;
|
| 1745 |
+
border-bottom-color: #dfdfdf;
|
| 1746 |
}
|
| 1747 |
|
| 1748 |
#minor-publishing {
|
| 1749 |
+
border-bottom-color: #dfdfdf;
|
| 1750 |
}
|
| 1751 |
|
| 1752 |
#post-body .misc-pub-section {
|
| 1767 |
}
|
| 1768 |
|
| 1769 |
#post-body ul.category-tabs li.tabs a,
|
| 1770 |
+
#post-body ul.add-menu-item-tabs li.tabs a,
|
| 1771 |
+
body.press-this ul.category-tabs li.tabs a {
|
| 1772 |
color: #333;
|
| 1773 |
}
|
| 1774 |
|
| 1791 |
#favorite-first {
|
| 1792 |
border-color: #c0c0c0;
|
| 1793 |
background: #f1f1f1; /* fallback color */
|
| 1794 |
+
background:-moz-linear-gradient(bottom, #e7e7e7, #fff);
|
| 1795 |
background:-webkit-gradient(linear, left bottom, left top, from(#e7e7e7), to(#fff));
|
| 1796 |
}
|
| 1797 |
|
| 1801 |
}
|
| 1802 |
|
| 1803 |
#favorite-toggle {
|
| 1804 |
+
background: transparent url(../../../../../wp-admin/images/arrows.png) no-repeat 4px 2px;
|
| 1805 |
+
border-color: #dfdfdf;
|
| 1806 |
+
-moz-box-shadow: inset 1px 0 0 #fff;
|
| 1807 |
+
-webkit-box-shadow: inset 1px 0 0 #fff;
|
| 1808 |
+
box-shadow: inset 1px 0 0 #fff;
|
| 1809 |
}
|
| 1810 |
|
| 1811 |
#favorite-actions a {
|
| 1820 |
text-decoration: underline;
|
| 1821 |
}
|
| 1822 |
|
| 1823 |
+
#screen-meta a.show-settings,
|
| 1824 |
+
.toggle-arrow {
|
| 1825 |
+
background: transparent url(../../../../../wp-admin/images/arrows.png) no-repeat right 3px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1826 |
}
|
| 1827 |
|
| 1828 |
+
#screen-meta .screen-meta-active a.show-settings {
|
| 1829 |
+
background: transparent url(../../../../../wp-admin/images/arrows.png) no-repeat right -33px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1830 |
}
|
| 1831 |
|
| 1832 |
.view-switch #view-switch-list {
|
| 1833 |
+
background: transparent url(../../../../../wp-admin/images/list.png) no-repeat 0 0;
|
| 1834 |
}
|
| 1835 |
|
| 1836 |
+
.view-switch .current #view-switch-list {
|
| 1837 |
+
background: transparent url(../../../../../wp-admin/images/list.png) no-repeat -40px 0;
|
| 1838 |
}
|
| 1839 |
|
| 1840 |
.view-switch #view-switch-excerpt {
|
| 1841 |
+
background: transparent url(../../../../../wp-admin/images/list.png) no-repeat -20px 0;
|
| 1842 |
}
|
| 1843 |
|
| 1844 |
+
.view-switch .current #view-switch-excerpt {
|
| 1845 |
+
background: transparent url(../../../../../wp-admin/images/list.png) no-repeat -60px 0;
|
| 1846 |
}
|
| 1847 |
|
| 1848 |
#header-logo {
|
| 1849 |
+
background: transparent url(../../../../../wp-admin/images/wp-logo.png?ver=20110504) no-repeat scroll center center;
|
| 1850 |
}
|
| 1851 |
|
| 1852 |
.popular-tags,
|
| 1865 |
|
| 1866 |
div.widgets-sortables,
|
| 1867 |
#widgets-left .inactive {
|
| 1868 |
+
background-color: #fcfcfc;
|
| 1869 |
+
border-color: #dfdfdf;
|
| 1870 |
}
|
| 1871 |
|
| 1872 |
#available-widgets .widget-holder {
|
| 1873 |
+
background-color: #fcfcfc;
|
| 1874 |
+
border-color: #dfdfdf;
|
| 1875 |
}
|
| 1876 |
|
| 1877 |
+
#available-widgets .widget-description {
|
| 1878 |
+
color: #555;
|
|
|
|
|
|
|
|
|
|
| 1879 |
}
|
| 1880 |
|
| 1881 |
+
.sidebar-name {
|
| 1882 |
+
color: #464646;
|
| 1883 |
+
text-shadow: #fff 0 1px 0;
|
| 1884 |
+
border-color: #dfdfdf;
|
| 1885 |
+
-moz-box-shadow: inset 0 1px 0 #fff;
|
| 1886 |
+
-webkit-box-shadow: inset 0 1px 0 #fff;
|
| 1887 |
+
box-shadow: inset 0 1px 0 #fff;
|
| 1888 |
}
|
| 1889 |
|
| 1890 |
.sidebar-name:hover,
|
| 1896 |
color: black;
|
| 1897 |
}
|
| 1898 |
|
| 1899 |
+
.sidebar-name-arrow {
|
| 1900 |
+
background: transparent url(../../../../../wp-admin/images/arrows.png) no-repeat 5px 9px;
|
| 1901 |
}
|
| 1902 |
|
| 1903 |
+
.sidebar-name:hover .sidebar-name-arrow {
|
| 1904 |
+
background: transparent url(../../../../../wp-admin/images/arrows-dark.png) no-repeat 5px 9px;
|
| 1905 |
}
|
| 1906 |
|
| 1907 |
.in-widget-title {
|
| 1942 |
background-color: #f1f1f1;
|
| 1943 |
}
|
| 1944 |
|
| 1945 |
+
/* added from nav-menu.css */
|
| 1946 |
+
#menu-management .menu-edit {
|
| 1947 |
+
border-color: #dfdfdf;
|
| 1948 |
+
}
|
| 1949 |
+
|
| 1950 |
+
#post-body {
|
| 1951 |
+
background: #fff;
|
| 1952 |
+
border-top-color: #fff;
|
| 1953 |
+
border-bottom-color: #dfdfdf;
|
| 1954 |
+
}
|
| 1955 |
+
|
| 1956 |
+
#nav-menu-header {
|
| 1957 |
+
border-bottom-color: #dfdfdf;
|
| 1958 |
+
}
|
| 1959 |
+
|
| 1960 |
+
#nav-menu-footer {
|
| 1961 |
+
border-top-color: #fff;
|
| 1962 |
+
}
|
| 1963 |
+
|
| 1964 |
+
#menu-management .nav-tabs-arrow a {
|
| 1965 |
+
color: #C1C1C1;
|
| 1966 |
+
}
|
| 1967 |
+
|
| 1968 |
+
#menu-management .nav-tabs-arrow a:hover {
|
| 1969 |
+
color: #D54E21;
|
| 1970 |
+
}
|
| 1971 |
+
|
| 1972 |
+
#menu-management .nav-tabs-arrow a:active {
|
| 1973 |
+
color: #464646;
|
| 1974 |
+
}
|
| 1975 |
+
|
| 1976 |
+
#menu-management .nav-tab-active {
|
| 1977 |
+
border-color: #dfdfdf;
|
| 1978 |
+
}
|
| 1979 |
+
|
| 1980 |
+
#menu-management .nav-tab {
|
| 1981 |
+
background: #fbfbfb;
|
| 1982 |
+
border-color: #dfdfdf;
|
| 1983 |
+
}
|
| 1984 |
+
|
| 1985 |
+
.js .input-with-default-title {
|
| 1986 |
+
color: #aaa;
|
| 1987 |
+
}
|
| 1988 |
+
|
| 1989 |
+
#cancel-save {
|
| 1990 |
+
color: #ff0000;
|
| 1991 |
+
}
|
| 1992 |
+
|
| 1993 |
+
#cancel-save:hover {
|
| 1994 |
+
background-color: #FF0000;
|
| 1995 |
+
color: #fff;
|
| 1996 |
+
}
|
| 1997 |
+
|
| 1998 |
+
.list-container {
|
| 1999 |
+
border-color: #DFDFDF;
|
| 2000 |
+
}
|
| 2001 |
+
|
| 2002 |
.menu-item-handle {
|
| 2003 |
+
border-color: #dfdfdf;
|
| 2004 |
+
}
|
| 2005 |
+
|
| 2006 |
+
.menu li.deleting .menu-item-handle {
|
| 2007 |
+
background-color: #f66;
|
| 2008 |
+
text-shadow: #ccc;
|
| 2009 |
+
}
|
| 2010 |
+
|
| 2011 |
+
.item-type { /* Menu item controls */
|
| 2012 |
+
color: #999999;
|
| 2013 |
+
}
|
| 2014 |
+
|
| 2015 |
+
.item-controls .menu-item-delete:hover {
|
| 2016 |
+
color: #ff0000;
|
| 2017 |
+
}
|
| 2018 |
+
|
| 2019 |
+
.item-edit {
|
| 2020 |
+
background: transparent url(../../../../../wp-admin/images/arrows.png) no-repeat 8px 10px;
|
| 2021 |
+
border-bottom-color: #eee;
|
| 2022 |
+
}
|
| 2023 |
+
|
| 2024 |
+
.item-edit:hover {
|
| 2025 |
+
background: transparent url(../../../../../wp-admin/images/arrows-dark.png) no-repeat 8px 10px;
|
| 2026 |
+
}
|
| 2027 |
+
|
| 2028 |
+
.menu-item-settings { /* Menu editing */
|
| 2029 |
+
border-color: #dfdfdf;
|
| 2030 |
+
}
|
| 2031 |
+
|
| 2032 |
+
.link-to-original {
|
| 2033 |
+
color: #777;
|
| 2034 |
+
border-color: #dfdfdf;
|
| 2035 |
+
}
|
| 2036 |
+
|
| 2037 |
+
#cancel-save:hover {
|
| 2038 |
+
color: #fff !important;
|
| 2039 |
+
}
|
| 2040 |
+
|
| 2041 |
+
#update-menu-item {
|
| 2042 |
+
color: #fff !important;
|
| 2043 |
+
}
|
| 2044 |
+
|
| 2045 |
+
#update-menu-item:hover,
|
| 2046 |
+
#update-menu-item:active,
|
| 2047 |
+
#update-menu-item:focus {
|
| 2048 |
+
color: #eaf2fa !important;
|
| 2049 |
+
border-color: #13455b !important;
|
| 2050 |
+
}
|
| 2051 |
+
|
| 2052 |
+
.submitbox .submitcancel {
|
| 2053 |
+
color: #21759B;
|
| 2054 |
+
border-bottom-color: #21759B;
|
| 2055 |
+
}
|
| 2056 |
+
|
| 2057 |
+
.submitbox .submitcancel:hover {
|
| 2058 |
+
background: #21759B;
|
| 2059 |
+
color: #fff;
|
| 2060 |
+
}
|
| 2061 |
+
/* end added from nav-menu.css */
|
| 2062 |
+
|
| 2063 |
+
#menu-management .nav-tab-active,
|
| 2064 |
+
.menu-item-handle,
|
| 2065 |
+
.menu-item-settings {
|
| 2066 |
+
-moz-box-shadow: inset 0 1px 0 #fff;
|
| 2067 |
+
-webkit-box-shadow: inset 0 1px 0 #fff;
|
| 2068 |
+
box-shadow: inset 0 1px 0 #fff;
|
| 2069 |
}
|
| 2070 |
|
| 2071 |
#menu-management .nav-tab-active {
|
| 2072 |
+
background: #f9f9f9;
|
| 2073 |
+
border-bottom-color: #f9f9f9;
|
| 2074 |
+
}
|
| 2075 |
+
|
| 2076 |
+
/* custom header & background pages */
|
| 2077 |
+
#upload-form label {
|
| 2078 |
+
color: #777;
|
| 2079 |
+
}
|
| 2080 |
+
/* custom header & background pages */
|
| 2081 |
+
|
| 2082 |
+
/* full screen */
|
| 2083 |
+
.fullscreen-overlay {
|
| 2084 |
+
background: #fff;
|
| 2085 |
+
}
|
| 2086 |
+
|
| 2087 |
+
.wp-fullscreen-focus #wp-fullscreen-title,
|
| 2088 |
+
.wp-fullscreen-focus #wp-fullscreen-container {
|
| 2089 |
+
border-color: #ccc;
|
| 2090 |
+
}
|
| 2091 |
+
|
| 2092 |
+
#fullscreen-topbar {
|
| 2093 |
+
border-bottom-color: #DFDFDF;
|
| 2094 |
}
|
bbp-admin/styles/admin.dev.css
CHANGED
|
@@ -1,8 +1,9 @@
|
|
| 1 |
/* =wp-admin area stylesheet with a bbPress twist
|
| 2 |
-------------------------------------------------------------- */
|
| 3 |
|
| 4 |
-
html
|
| 5 |
-
|
|
|
|
| 6 |
}
|
| 7 |
|
| 8 |
* html input,
|
|
@@ -97,7 +98,7 @@ div.dashboard-widget,
|
|
| 97 |
|
| 98 |
.widefat {
|
| 99 |
border-color: #dfdfdf;
|
| 100 |
-
background-color: #
|
| 101 |
}
|
| 102 |
|
| 103 |
div.dashboard-widget-error {
|
|
@@ -113,14 +114,18 @@ div.dashboard-widget-submit {
|
|
| 113 |
}
|
| 114 |
|
| 115 |
div.tabs-panel,
|
|
|
|
| 116 |
ul.category-tabs li.tabs,
|
| 117 |
-
ul.add-menu-item-tabs li.tabs
|
|
|
|
| 118 |
border-color: #dfdfdf;
|
|
|
|
| 119 |
}
|
| 120 |
|
| 121 |
ul.category-tabs li.tabs,
|
| 122 |
-
ul.add-menu-item-tabs li.tabs
|
| 123 |
-
|
|
|
|
| 124 |
}
|
| 125 |
|
| 126 |
input.disabled,
|
|
@@ -134,11 +139,37 @@ textarea.disabled {
|
|
| 134 |
color: #fff;
|
| 135 |
}
|
| 136 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 137 |
.widget .widget-top,
|
| 138 |
.postbox h3,
|
| 139 |
.stuffbox h3 {
|
| 140 |
-
|
| 141 |
text-shadow: #fff 0 1px 0;
|
|
|
|
|
|
|
|
|
|
| 142 |
}
|
| 143 |
|
| 144 |
.form-table th,
|
|
@@ -169,6 +200,14 @@ strong .post-com-count span {
|
|
| 169 |
color: #464646;
|
| 170 |
}
|
| 171 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 172 |
.ac_over {
|
| 173 |
background-color: #f0f0b8;
|
| 174 |
}
|
|
@@ -184,7 +223,7 @@ strong .post-com-count span {
|
|
| 184 |
|
| 185 |
.alternate,
|
| 186 |
.alt {
|
| 187 |
-
background-color: #
|
| 188 |
}
|
| 189 |
|
| 190 |
.available-theme a.screenshot {
|
|
@@ -206,13 +245,13 @@ strong .post-com-count span {
|
|
| 206 |
border-top-color: #dfdfdf;
|
| 207 |
}
|
| 208 |
|
| 209 |
-
.error,
|
| 210 |
.login #login_error {
|
| 211 |
background-color: #ffebe8;
|
| 212 |
border-color: #c00;
|
| 213 |
}
|
| 214 |
|
| 215 |
-
.error a {
|
| 216 |
color: #c00;
|
| 217 |
}
|
| 218 |
|
|
@@ -231,14 +270,13 @@ strong .post-com-count span {
|
|
| 231 |
|
| 232 |
.highlight {
|
| 233 |
background-color: #e4f2fd;
|
| 234 |
-
color: #
|
| 235 |
}
|
| 236 |
|
| 237 |
.howto,
|
| 238 |
.nonessential,
|
| 239 |
#edit-slug-box,
|
| 240 |
.form-input-tip,
|
| 241 |
-
.rss-widget span.rss-date,
|
| 242 |
.subsubsub {
|
| 243 |
color: #666;
|
| 244 |
}
|
|
@@ -257,7 +295,7 @@ td.help {
|
|
| 257 |
}
|
| 258 |
|
| 259 |
.post-com-count {
|
| 260 |
-
background-image: url(
|
| 261 |
color: #fff;
|
| 262 |
}
|
| 263 |
|
|
@@ -304,30 +342,30 @@ input[type=submit]:hover {
|
|
| 304 |
.button,
|
| 305 |
.submit input,
|
| 306 |
.button-secondary {
|
| 307 |
-
background: #f2f2f2 url(
|
| 308 |
text-shadow: rgba(255,255,255,1) 0 1px 0;
|
| 309 |
}
|
| 310 |
|
| 311 |
.button:active,
|
| 312 |
.submit input:active,
|
| 313 |
.button-secondary:active {
|
| 314 |
-
background: #eee url(
|
| 315 |
}
|
| 316 |
|
| 317 |
input.button-primary,
|
| 318 |
button.button-primary,
|
| 319 |
a.button-primary {
|
| 320 |
-
border-color: #
|
| 321 |
font-weight: bold;
|
| 322 |
color: #fff;
|
| 323 |
-
background: #
|
| 324 |
text-shadow: rgba(0,0,0,0.3) 0 -1px 0;
|
| 325 |
}
|
| 326 |
|
| 327 |
input.button-primary:active,
|
| 328 |
button.button-primary:active,
|
| 329 |
a.button-primary:active {
|
| 330 |
-
background: #
|
| 331 |
color: #cae8be;
|
| 332 |
}
|
| 333 |
|
|
@@ -336,8 +374,8 @@ button.button-primary:hover,
|
|
| 336 |
a.button-primary:hover,
|
| 337 |
a.button-primary:focus,
|
| 338 |
a.button-primary:active {
|
| 339 |
-
border-color: #
|
| 340 |
-
color: #
|
| 341 |
}
|
| 342 |
|
| 343 |
.button-disabled,
|
|
@@ -347,7 +385,7 @@ a.button-primary:active {
|
|
| 347 |
.button-secondary:disabled,
|
| 348 |
a.button.disabled {
|
| 349 |
color: #aaa !important;
|
| 350 |
-
border-color: #
|
| 351 |
}
|
| 352 |
|
| 353 |
.button-primary-disabled,
|
|
@@ -385,7 +423,8 @@ div.dashboard-widget-submit input:hover,
|
|
| 385 |
}
|
| 386 |
|
| 387 |
#side-sortables .category-tabs .tabs a,
|
| 388 |
-
#side-sortables .add-menu-item-tabs .tabs a
|
|
|
|
| 389 |
color: #333;
|
| 390 |
}
|
| 391 |
|
|
@@ -436,7 +475,7 @@ div.dashboard-widget-submit input:hover,
|
|
| 436 |
color: #d54e21;
|
| 437 |
}
|
| 438 |
|
| 439 |
-
.updated,
|
| 440 |
.login .message {
|
| 441 |
background-color: #ffffe0;
|
| 442 |
border-color: #e6db55;
|
|
@@ -455,16 +494,24 @@ a.page-numbers {
|
|
| 455 |
}
|
| 456 |
|
| 457 |
.widefat td,
|
| 458 |
-
.widefat th
|
| 459 |
-
|
| 460 |
-
|
| 461 |
-
border-color: #dfdfdf;
|
| 462 |
}
|
| 463 |
|
| 464 |
.widefat th {
|
| 465 |
text-shadow: rgba(255,255,255,0.8) 0 1px 0;
|
| 466 |
}
|
| 467 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 468 |
.widefat thead tr th,
|
| 469 |
.widefat tfoot tr th,
|
| 470 |
h3.dashboard-widget-title,
|
|
@@ -472,7 +519,10 @@ h3.dashboard-widget-title span,
|
|
| 472 |
h3.dashboard-widget-title small,
|
| 473 |
.find-box-head {
|
| 474 |
color: #333;
|
| 475 |
-
|
|
|
|
|
|
|
|
|
|
| 476 |
}
|
| 477 |
|
| 478 |
h3.dashboard-widget-title small a {
|
|
@@ -495,39 +545,30 @@ a,
|
|
| 495 |
color: #007700;
|
| 496 |
}
|
| 497 |
|
| 498 |
-
|
| 499 |
-
body.press-this .tabs a,
|
| 500 |
-
body.press-this .tabs a:hover {
|
| 501 |
-
background-color: #fff;
|
| 502 |
-
border-color: #c6d9e9;
|
| 503 |
-
border-bottom-color: #fff;
|
| 504 |
-
color: #d54e21;
|
| 505 |
-
}
|
| 506 |
-
|
| 507 |
-
#adminmenu #awaiting-mod,
|
| 508 |
#adminmenu .update-plugins,
|
| 509 |
#sidemenu a .update-plugins,
|
| 510 |
#rightnow .reallynow {
|
| 511 |
background-color: #464646;
|
| 512 |
color: #fff;
|
| 513 |
-
-moz-box-shadow:
|
| 514 |
-
-khtml-box-shadow:
|
| 515 |
-
-webkit-box-shadow:
|
| 516 |
-
box-shadow:
|
| 517 |
}
|
| 518 |
#plugin-information .action-button {
|
| 519 |
background-color: #d54e21;
|
| 520 |
color: #fff;
|
| 521 |
}
|
| 522 |
|
| 523 |
-
#adminmenu li.current a
|
| 524 |
-
#adminmenu
|
| 525 |
background-color: #464646;
|
| 526 |
color: #fff;
|
| 527 |
-
-moz-box-shadow:
|
| 528 |
-
-khtml-box-shadow:
|
| 529 |
-
-webkit-box-shadow:
|
| 530 |
-
box-shadow:
|
| 531 |
}
|
| 532 |
|
| 533 |
div#media-upload-header,
|
|
@@ -550,7 +591,7 @@ input.readonly, textarea.readonly {
|
|
| 550 |
|
| 551 |
#ed_toolbar input,
|
| 552 |
#ed_reply_toolbar input {
|
| 553 |
-
background: #fff url("
|
| 554 |
}
|
| 555 |
|
| 556 |
#editable-post-name {
|
|
@@ -559,24 +600,24 @@ input.readonly, textarea.readonly {
|
|
| 559 |
|
| 560 |
#edit-slug-box strong,
|
| 561 |
.tablenav .displaying-num,
|
| 562 |
-
#submitted-on
|
|
|
|
| 563 |
color: #777;
|
| 564 |
}
|
| 565 |
|
| 566 |
-
.login #nav a
|
|
|
|
| 567 |
color: #21759b !important;
|
| 568 |
}
|
| 569 |
|
| 570 |
-
.login #nav a:hover
|
|
|
|
| 571 |
color: #d54e21 !important;
|
| 572 |
}
|
| 573 |
|
| 574 |
#footer {
|
| 575 |
-
color: #
|
| 576 |
-
border-color: #
|
| 577 |
-
background: #d9d9d9; /* fallback color */
|
| 578 |
-
background:-moz-linear-gradient(bottom, #9ccc85, #cae8be);
|
| 579 |
-
background:-webkit-gradient(linear, left bottom, left top, from(#9ccc85), to(#cae8be));
|
| 580 |
}
|
| 581 |
|
| 582 |
#media-items,
|
|
@@ -588,14 +629,14 @@ input.readonly, textarea.readonly {
|
|
| 588 |
.side-info,
|
| 589 |
.plugins tr,
|
| 590 |
#your-profile #rich_editing {
|
| 591 |
-
background-color: #
|
| 592 |
}
|
| 593 |
|
| 594 |
.plugins .inactive,
|
| 595 |
.plugins .inactive th,
|
| 596 |
.plugins .inactive td,
|
| 597 |
tr.inactive + tr.plugin-update-tr .plugin-update {
|
| 598 |
-
background-color: #
|
| 599 |
}
|
| 600 |
|
| 601 |
.plugin-update-tr .update-message {
|
|
@@ -646,24 +687,43 @@ table.widefat span.spam a,
|
|
| 646 |
#poststuff .postarea,
|
| 647 |
.stuffbox {
|
| 648 |
border-color: #dfdfdf;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 649 |
}
|
| 650 |
|
| 651 |
.widget,
|
| 652 |
-
.
|
| 653 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 654 |
}
|
| 655 |
|
| 656 |
-
.
|
| 657 |
color: #464646;
|
| 658 |
}
|
| 659 |
|
| 660 |
-
.widget .widget-top
|
| 661 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 662 |
color: #000;
|
| 663 |
}
|
| 664 |
|
| 665 |
.curtime #timestamp {
|
| 666 |
-
background-image: url(
|
| 667 |
}
|
| 668 |
|
| 669 |
#quicktags #ed_link {
|
|
@@ -680,12 +740,12 @@ table.widefat span.spam a,
|
|
| 680 |
|
| 681 |
.tagchecklist span a,
|
| 682 |
#bulk-titles div a {
|
| 683 |
-
background: url(
|
| 684 |
}
|
| 685 |
|
| 686 |
.tagchecklist span a:hover,
|
| 687 |
#bulk-titles div a:hover {
|
| 688 |
-
background: url(
|
| 689 |
}
|
| 690 |
|
| 691 |
#update-nag, .update-nag {
|
|
@@ -699,10 +759,7 @@ table.widefat span.spam a,
|
|
| 699 |
}
|
| 700 |
|
| 701 |
#wphead {
|
| 702 |
-
border-bottom
|
| 703 |
-
background: #d9d9d9; /* fallback color */
|
| 704 |
-
background:-moz-linear-gradient(bottom, #9ccc85, #cae8be);
|
| 705 |
-
background:-webkit-gradient(linear, left bottom, left top, from(#9ccc85), to(#cae8be));
|
| 706 |
}
|
| 707 |
|
| 708 |
#wphead h1 a {
|
|
@@ -710,26 +767,67 @@ table.widefat span.spam a,
|
|
| 710 |
}
|
| 711 |
|
| 712 |
#user_info {
|
| 713 |
-
color: #
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 714 |
}
|
| 715 |
|
| 716 |
#user_info a:link,
|
| 717 |
#user_info a:visited,
|
| 718 |
#footer a:link,
|
| 719 |
#footer a:visited {
|
| 720 |
-
color: #222;
|
| 721 |
text-decoration: none;
|
| 722 |
}
|
| 723 |
|
| 724 |
-
#user_info a:hover,
|
| 725 |
#footer a:hover {
|
| 726 |
color: #000;
|
| 727 |
-
text-decoration: underline
|
| 728 |
-
}
|
| 729 |
-
|
| 730 |
-
#user_info a:active,
|
| 731 |
-
#footer a:active {
|
| 732 |
-
color: #ccc !important;
|
| 733 |
}
|
| 734 |
|
| 735 |
div#media-upload-error,
|
|
@@ -772,8 +870,9 @@ table.widefat .spam a:hover,
|
|
| 772 |
|
| 773 |
/* editors */
|
| 774 |
#quicktags {
|
| 775 |
-
border-color: #
|
| 776 |
background-color: #dfdfdf;
|
|
|
|
| 777 |
}
|
| 778 |
|
| 779 |
#ed_toolbar input {
|
|
@@ -786,18 +885,22 @@ table.widefat .spam a:hover,
|
|
| 786 |
}
|
| 787 |
|
| 788 |
#poststuff .wp_themeSkin .mceStatusbar {
|
| 789 |
-
border-color: #
|
|
|
|
|
|
|
|
|
|
|
|
|
| 790 |
}
|
| 791 |
|
| 792 |
#poststuff #edButtonPreview,
|
| 793 |
#poststuff #edButtonHTML {
|
| 794 |
background-color: #f1f1f1;
|
| 795 |
-
border-color: #dfdfdf;
|
| 796 |
color: #999;
|
| 797 |
}
|
| 798 |
|
| 799 |
#poststuff #editor-toolbar .active {
|
| 800 |
-
border-
|
| 801 |
background-color: #e9e9e9;
|
| 802 |
color: #333;
|
| 803 |
}
|
|
@@ -812,12 +915,22 @@ table.widefat .spam a:hover,
|
|
| 812 |
.wp_themeSkin a:link,
|
| 813 |
.wp_themeSkin a:visited,
|
| 814 |
.wp_themeSkin a:active {
|
| 815 |
-
|
| 816 |
}
|
| 817 |
|
| 818 |
/* Containers */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 819 |
.wp_themeSkin iframe {
|
| 820 |
-
background:
|
| 821 |
}
|
| 822 |
|
| 823 |
/* Layout */
|
|
@@ -828,15 +941,41 @@ table.widefat .spam a:hover,
|
|
| 828 |
|
| 829 |
/* Button */
|
| 830 |
.wp_themeSkin .mceButton {
|
| 831 |
-
|
| 832 |
-
|
| 833 |
-
|
| 834 |
-
|
| 835 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 836 |
.wp_themeSkin a.mceButtonActive,
|
| 837 |
-
.wp_themeSkin a.
|
| 838 |
-
|
| 839 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 840 |
}
|
| 841 |
|
| 842 |
.wp_themeSkin .mceButtonDisabled {
|
|
@@ -845,22 +984,44 @@ table.widefat .spam a:hover,
|
|
| 845 |
|
| 846 |
/* ListBox */
|
| 847 |
.wp_themeSkin .mceListBox .mceText,
|
| 848 |
-
.wp_themeSkin .mceListBox .mceOpen
|
| 849 |
-
border-color: #
|
| 850 |
-
background-color: #
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 851 |
}
|
| 852 |
|
| 853 |
.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,
|
| 854 |
.wp_themeSkin .mceListBoxHover .mceOpen,
|
|
|
|
| 855 |
.wp_themeSkin .mceListBoxSelected .mceOpen,
|
| 856 |
-
.wp_themeSkin .mceListBoxSelected .mceText
|
| 857 |
-
|
| 858 |
-
background
|
|
|
|
| 859 |
}
|
| 860 |
|
|
|
|
| 861 |
.wp_themeSkin table.mceListBoxEnabled:hover .mceText,
|
| 862 |
-
.wp_themeSkin .mceListBoxHover .mceText
|
| 863 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 864 |
}
|
| 865 |
|
| 866 |
.wp_themeSkin select.mceListBox {
|
|
@@ -871,15 +1032,34 @@ table.widefat .spam a:hover,
|
|
| 871 |
/* SplitButton */
|
| 872 |
.wp_themeSkin .mceSplitButton a.mceAction,
|
| 873 |
.wp_themeSkin .mceSplitButton a.mceOpen {
|
| 874 |
-
border-color: #
|
| 875 |
}
|
| 876 |
|
| 877 |
.wp_themeSkin .mceSplitButton a.mceOpen:hover,
|
| 878 |
.wp_themeSkin .mceSplitButtonSelected a.mceOpen,
|
| 879 |
.wp_themeSkin table.mceSplitButtonEnabled:hover a.mceAction,
|
| 880 |
.wp_themeSkin .mceSplitButton a.mceAction:hover {
|
| 881 |
-
|
| 882 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 883 |
}
|
| 884 |
|
| 885 |
.wp_themeSkin .mceSplitButtonActive {
|
|
@@ -941,8 +1121,8 @@ table.widefat .spam a:hover,
|
|
| 941 |
}
|
| 942 |
|
| 943 |
.wp_themeSkin tr.mceFirst td.mceToolbar {
|
| 944 |
-
background: #dfdfdf url("
|
| 945 |
-
border-color: #
|
| 946 |
}
|
| 947 |
|
| 948 |
.wp-admin #mceModalBlocker {
|
|
@@ -953,20 +1133,20 @@ table.widefat .spam a:hover,
|
|
| 953 |
background: #444444;
|
| 954 |
border-left: 1px solid #999;
|
| 955 |
border-top: 1px solid #999;
|
| 956 |
-
-moz-border-radius:
|
| 957 |
-
-webkit-border-top-left-radius:
|
| 958 |
-
-khtml-border-top-left-radius:
|
| 959 |
-
border-top-left-radius:
|
| 960 |
}
|
| 961 |
|
| 962 |
.wp-admin .clearlooks2 .mceFocus .mceTop .mceRight {
|
| 963 |
background: #444444;
|
| 964 |
border-right: 1px solid #999;
|
| 965 |
border-top: 1px solid #999;
|
| 966 |
-
border-top-right-radius:
|
| 967 |
-
-khtml-border-top-right-radius:
|
| 968 |
-
-webkit-border-top-right-radius:
|
| 969 |
-
-moz-border-radius: 0
|
| 970 |
}
|
| 971 |
|
| 972 |
.wp-admin .clearlooks2 .mceMiddle .mceLeft {
|
|
@@ -1006,9 +1186,18 @@ table.widefat .spam a:hover,
|
|
| 1006 |
}
|
| 1007 |
/* end TinyMCE */
|
| 1008 |
|
| 1009 |
-
#
|
| 1010 |
-
#
|
| 1011 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1012 |
.editwidget .widget-inside {
|
| 1013 |
border-color: #dfdfdf;
|
| 1014 |
}
|
|
@@ -1029,79 +1218,81 @@ table.widefat .spam a:hover,
|
|
| 1029 |
}
|
| 1030 |
|
| 1031 |
/* menu */
|
| 1032 |
-
#
|
| 1033 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1034 |
}
|
| 1035 |
|
| 1036 |
#adminmenu li.wp-menu-separator {
|
| 1037 |
-
background:
|
|
|
|
| 1038 |
}
|
| 1039 |
|
| 1040 |
-
|
| 1041 |
-
|
| 1042 |
}
|
| 1043 |
|
| 1044 |
#adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,
|
| 1045 |
#adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle {
|
| 1046 |
-
background: transparent url(
|
| 1047 |
}
|
| 1048 |
|
| 1049 |
#adminmenu .wp-has-submenu:hover .wp-menu-toggle,
|
| 1050 |
#adminmenu .wp-menu-open .wp-menu-toggle {
|
| 1051 |
-
background: transparent url(
|
| 1052 |
-
}
|
| 1053 |
-
|
| 1054 |
-
#adminmenu a.menu-top {
|
| 1055 |
-
background: #f1f1f1 url(../../../../wp-admin/images/menu-bits.gif?ver=20100610) repeat-x scroll left -379px;
|
| 1056 |
}
|
| 1057 |
|
| 1058 |
-
#adminmenu .
|
| 1059 |
-
|
| 1060 |
-
|
| 1061 |
-
|
| 1062 |
-
|
| 1063 |
-
background: none;
|
| 1064 |
-
}
|
| 1065 |
-
|
| 1066 |
-
#adminmenu .wp-has-current-submenu ul li a.current {
|
| 1067 |
-
background: url(../../../../wp-admin/images/menu-dark.gif) top left no-repeat !important;
|
| 1068 |
-
}
|
| 1069 |
-
|
| 1070 |
-
.wp-has-current-submenu .wp-submenu {
|
| 1071 |
-
border-top: none !important;
|
| 1072 |
}
|
| 1073 |
|
| 1074 |
-
#adminmenu li.wp-
|
| 1075 |
-
border-
|
| 1076 |
}
|
| 1077 |
|
| 1078 |
#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
|
| 1079 |
-
#adminmenu li.current a.menu-top
|
| 1080 |
-
|
| 1081 |
-
|
| 1082 |
-
|
| 1083 |
-
|
| 1084 |
-
|
| 1085 |
-
|
| 1086 |
-
|
| 1087 |
-
|
| 1088 |
-
|
| 1089 |
-
|
| 1090 |
-
|
| 1091 |
-
#adminmenu li.wp-has-current-submenu ul li a {
|
| 1092 |
-
background: url(../../../../wp-admin/images/menu-dark.gif) bottom left no-repeat !important;
|
| 1093 |
}
|
| 1094 |
|
| 1095 |
-
#adminmenu li.wp-has-current-submenu
|
| 1096 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1097 |
}
|
| 1098 |
|
| 1099 |
-
#adminmenu .wp-submenu
|
| 1100 |
-
|
|
|
|
|
|
|
| 1101 |
}
|
| 1102 |
|
| 1103 |
#adminmenu .wp-submenu a:hover {
|
| 1104 |
-
background-color: #
|
| 1105 |
color: #333 !important;
|
| 1106 |
}
|
| 1107 |
|
|
@@ -1109,145 +1300,232 @@ table.widefat .spam a:hover,
|
|
| 1109 |
#adminmenu .wp-submenu li.current a,
|
| 1110 |
#adminmenu .wp-submenu li.current a:hover {
|
| 1111 |
color: #333;
|
| 1112 |
-
background-color: #f5f5f5;
|
| 1113 |
-
background-image: none;
|
| 1114 |
-
border-color: #e3e3e3;
|
| 1115 |
}
|
| 1116 |
|
| 1117 |
#adminmenu .wp-submenu ul {
|
| 1118 |
background-color: #fff;
|
| 1119 |
}
|
| 1120 |
|
| 1121 |
-
.folded #adminmenu
|
| 1122 |
-
#adminmenu .wp-submenu
|
| 1123 |
-
|
| 1124 |
}
|
| 1125 |
|
| 1126 |
-
.folded #adminmenu
|
| 1127 |
-
|
| 1128 |
-
|
|
|
|
| 1129 |
}
|
| 1130 |
|
| 1131 |
-
#adminmenu .wp-
|
| 1132 |
-
|
| 1133 |
-
|
| 1134 |
}
|
| 1135 |
|
| 1136 |
#adminmenu div.wp-submenu {
|
| 1137 |
background-color: transparent;
|
| 1138 |
}
|
| 1139 |
|
| 1140 |
-
/* menu
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1141 |
#adminmenu .menu-icon-dashboard div.wp-menu-image {
|
| 1142 |
-
background: transparent url('
|
| 1143 |
}
|
| 1144 |
|
| 1145 |
#adminmenu .menu-icon-dashboard:hover div.wp-menu-image,
|
| 1146 |
#adminmenu .menu-icon-dashboard.wp-has-current-submenu div.wp-menu-image,
|
| 1147 |
#adminmenu .menu-icon-dashboard.current div.wp-menu-image {
|
| 1148 |
-
background: transparent url('
|
| 1149 |
}
|
| 1150 |
|
| 1151 |
#adminmenu .menu-icon-post div.wp-menu-image {
|
| 1152 |
-
background: transparent url('
|
| 1153 |
}
|
| 1154 |
|
| 1155 |
#adminmenu .menu-icon-post:hover div.wp-menu-image,
|
| 1156 |
#adminmenu .menu-icon-post.wp-has-current-submenu div.wp-menu-image {
|
| 1157 |
-
background: transparent url('
|
| 1158 |
}
|
| 1159 |
|
| 1160 |
#adminmenu .menu-icon-media div.wp-menu-image {
|
| 1161 |
-
background: transparent url('
|
| 1162 |
}
|
| 1163 |
|
| 1164 |
#adminmenu .menu-icon-media:hover div.wp-menu-image,
|
| 1165 |
#adminmenu .menu-icon-media.wp-has-current-submenu div.wp-menu-image {
|
| 1166 |
-
background: transparent url('
|
| 1167 |
}
|
| 1168 |
|
| 1169 |
#adminmenu .menu-icon-links div.wp-menu-image {
|
| 1170 |
-
background: transparent url('
|
| 1171 |
}
|
| 1172 |
|
| 1173 |
#adminmenu .menu-icon-links:hover div.wp-menu-image,
|
| 1174 |
#adminmenu .menu-icon-links.wp-has-current-submenu div.wp-menu-image {
|
| 1175 |
-
background: transparent url('
|
| 1176 |
}
|
| 1177 |
|
| 1178 |
#adminmenu .menu-icon-page div.wp-menu-image {
|
| 1179 |
-
background: transparent url('
|
| 1180 |
}
|
| 1181 |
|
| 1182 |
#adminmenu .menu-icon-page:hover div.wp-menu-image,
|
| 1183 |
#adminmenu .menu-icon-page.wp-has-current-submenu div.wp-menu-image {
|
| 1184 |
-
background: transparent url('
|
| 1185 |
}
|
| 1186 |
|
| 1187 |
#adminmenu .menu-icon-comments div.wp-menu-image {
|
| 1188 |
-
background: transparent url('
|
| 1189 |
}
|
| 1190 |
|
| 1191 |
#adminmenu .menu-icon-comments:hover div.wp-menu-image,
|
| 1192 |
#adminmenu .menu-icon-comments.wp-has-current-submenu div.wp-menu-image,
|
| 1193 |
#adminmenu .menu-icon-comments.current div.wp-menu-image {
|
| 1194 |
-
background: transparent url('
|
| 1195 |
}
|
| 1196 |
|
| 1197 |
#adminmenu .menu-icon-appearance div.wp-menu-image {
|
| 1198 |
-
background: transparent url('
|
| 1199 |
}
|
| 1200 |
|
| 1201 |
#adminmenu .menu-icon-appearance:hover div.wp-menu-image,
|
| 1202 |
#adminmenu .menu-icon-appearance.wp-has-current-submenu div.wp-menu-image {
|
| 1203 |
-
background: transparent url('
|
| 1204 |
}
|
| 1205 |
|
| 1206 |
#adminmenu .menu-icon-plugins div.wp-menu-image {
|
| 1207 |
-
background: transparent url('
|
| 1208 |
}
|
| 1209 |
|
| 1210 |
#adminmenu .menu-icon-plugins:hover div.wp-menu-image,
|
| 1211 |
#adminmenu .menu-icon-plugins.wp-has-current-submenu div.wp-menu-image {
|
| 1212 |
-
background: transparent url('
|
| 1213 |
}
|
| 1214 |
|
| 1215 |
#adminmenu .menu-icon-users div.wp-menu-image {
|
| 1216 |
-
background: transparent url('
|
| 1217 |
}
|
| 1218 |
|
| 1219 |
#adminmenu .menu-icon-users:hover div.wp-menu-image,
|
| 1220 |
-
#adminmenu .menu-icon-users.wp-has-current-submenu div.wp-menu-image
|
| 1221 |
-
|
|
|
|
| 1222 |
}
|
| 1223 |
|
| 1224 |
#adminmenu .menu-icon-tools div.wp-menu-image {
|
| 1225 |
-
background: transparent url('
|
| 1226 |
}
|
| 1227 |
|
| 1228 |
#adminmenu .menu-icon-tools:hover div.wp-menu-image,
|
| 1229 |
-
#adminmenu .menu-icon-tools.wp-has-current-submenu div.wp-menu-image
|
| 1230 |
-
|
|
|
|
| 1231 |
}
|
| 1232 |
|
|
|
|
| 1233 |
#adminmenu .menu-icon-settings div.wp-menu-image {
|
| 1234 |
-
background: transparent url('
|
| 1235 |
}
|
| 1236 |
|
| 1237 |
#adminmenu .menu-icon-settings:hover div.wp-menu-image,
|
| 1238 |
#adminmenu .menu-icon-settings.wp-has-current-submenu div.wp-menu-image {
|
| 1239 |
-
background: transparent url('
|
| 1240 |
}
|
| 1241 |
|
| 1242 |
#adminmenu .menu-icon-site div.wp-menu-image {
|
| 1243 |
-
background: transparent url('
|
| 1244 |
}
|
| 1245 |
|
| 1246 |
#adminmenu .menu-icon-site:hover div.wp-menu-image,
|
| 1247 |
#adminmenu .menu-icon-site.wp-has-current-submenu div.wp-menu-image {
|
| 1248 |
-
background: transparent url('
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1249 |
}
|
| 1250 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1251 |
|
| 1252 |
|
| 1253 |
/* Diff */
|
|
@@ -1290,8 +1568,22 @@ table.diff .diff-addedline ins {
|
|
| 1290 |
border-color: #dfdfdf;
|
| 1291 |
}
|
| 1292 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1293 |
#screen-meta-links a.show-settings {
|
| 1294 |
-
color: #
|
| 1295 |
}
|
| 1296 |
|
| 1297 |
#screen-meta-links a.show-settings:hover {
|
|
@@ -1334,6 +1626,16 @@ div.star.select:hover {
|
|
| 1334 |
background-color: #d00;
|
| 1335 |
}
|
| 1336 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1337 |
#plugin-information .fyi ul {
|
| 1338 |
background-color: #eaf3fa;
|
| 1339 |
}
|
|
@@ -1391,11 +1693,7 @@ fieldset.inline-edit-col-right .inline-edit-col {
|
|
| 1391 |
}
|
| 1392 |
|
| 1393 |
.meta-box-sortables .postbox:hover .handlediv {
|
| 1394 |
-
background: transparent url(
|
| 1395 |
-
}
|
| 1396 |
-
|
| 1397 |
-
#major-publishing-actions {
|
| 1398 |
-
background: #cae8be;
|
| 1399 |
}
|
| 1400 |
|
| 1401 |
.tablenav .tablenav-pages {
|
|
@@ -1404,16 +1702,18 @@ fieldset.inline-edit-col-right .inline-edit-col {
|
|
| 1404 |
|
| 1405 |
.tablenav .tablenav-pages a {
|
| 1406 |
border-color: #e3e3e3;
|
| 1407 |
-
background: #eee url('
|
| 1408 |
}
|
| 1409 |
|
| 1410 |
-
.tablenav .tablenav-pages a:hover
|
|
|
|
| 1411 |
color: #d54e21;
|
| 1412 |
-
border-color: #d54321;
|
| 1413 |
}
|
| 1414 |
|
| 1415 |
-
.tablenav .tablenav-pages a
|
| 1416 |
-
|
|
|
|
|
|
|
| 1417 |
}
|
| 1418 |
|
| 1419 |
.tablenav .tablenav-pages .current {
|
|
@@ -1441,11 +1741,12 @@ fieldset.inline-edit-col-right .inline-edit-col {
|
|
| 1441 |
}
|
| 1442 |
|
| 1443 |
.misc-pub-section {
|
| 1444 |
-
border-
|
|
|
|
| 1445 |
}
|
| 1446 |
|
| 1447 |
#minor-publishing {
|
| 1448 |
-
border-bottom-color: #
|
| 1449 |
}
|
| 1450 |
|
| 1451 |
#post-body .misc-pub-section {
|
|
@@ -1466,7 +1767,8 @@ fieldset.inline-edit-col-right .inline-edit-col {
|
|
| 1466 |
}
|
| 1467 |
|
| 1468 |
#post-body ul.category-tabs li.tabs a,
|
| 1469 |
-
#post-body ul.add-menu-item-tabs li.tabs a
|
|
|
|
| 1470 |
color: #333;
|
| 1471 |
}
|
| 1472 |
|
|
@@ -1489,7 +1791,7 @@ fieldset.inline-edit-col-right .inline-edit-col {
|
|
| 1489 |
#favorite-first {
|
| 1490 |
border-color: #c0c0c0;
|
| 1491 |
background: #f1f1f1; /* fallback color */
|
| 1492 |
-
background:-moz-linear-gradient(bottom,
|
| 1493 |
background:-webkit-gradient(linear, left bottom, left top, from(#e7e7e7), to(#fff));
|
| 1494 |
}
|
| 1495 |
|
|
@@ -1499,7 +1801,11 @@ fieldset.inline-edit-col-right .inline-edit-col {
|
|
| 1499 |
}
|
| 1500 |
|
| 1501 |
#favorite-toggle {
|
| 1502 |
-
background: transparent url(
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1503 |
}
|
| 1504 |
|
| 1505 |
#favorite-actions a {
|
|
@@ -1514,84 +1820,33 @@ fieldset.inline-edit-col-right .inline-edit-col {
|
|
| 1514 |
text-decoration: underline;
|
| 1515 |
}
|
| 1516 |
|
| 1517 |
-
#screen-meta a.show-settings
|
| 1518 |
-
|
| 1519 |
-
|
| 1520 |
-
}
|
| 1521 |
-
|
| 1522 |
-
#icon-edit,
|
| 1523 |
-
#icon-post {
|
| 1524 |
-
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -552px -5px;
|
| 1525 |
-
}
|
| 1526 |
-
|
| 1527 |
-
#icon-index {
|
| 1528 |
-
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -137px -5px;
|
| 1529 |
-
}
|
| 1530 |
-
|
| 1531 |
-
#icon-upload {
|
| 1532 |
-
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -251px -5px;
|
| 1533 |
-
}
|
| 1534 |
-
|
| 1535 |
-
#icon-link-manager,
|
| 1536 |
-
#icon-link,
|
| 1537 |
-
#icon-link-category {
|
| 1538 |
-
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -190px -5px;
|
| 1539 |
-
}
|
| 1540 |
-
|
| 1541 |
-
#icon-edit-pages,
|
| 1542 |
-
#icon-page {
|
| 1543 |
-
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -312px -5px;
|
| 1544 |
}
|
| 1545 |
|
| 1546 |
-
#
|
| 1547 |
-
background: transparent url(
|
| 1548 |
-
}
|
| 1549 |
-
|
| 1550 |
-
#icon-themes {
|
| 1551 |
-
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -11px -5px;
|
| 1552 |
-
}
|
| 1553 |
-
|
| 1554 |
-
#icon-plugins {
|
| 1555 |
-
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -370px -5px;
|
| 1556 |
-
}
|
| 1557 |
-
|
| 1558 |
-
#icon-users,
|
| 1559 |
-
#icon-profile,
|
| 1560 |
-
#icon-user-edit {
|
| 1561 |
-
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -600px -5px;
|
| 1562 |
-
}
|
| 1563 |
-
|
| 1564 |
-
#icon-tools,
|
| 1565 |
-
#icon-admin {
|
| 1566 |
-
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -432px -5px;
|
| 1567 |
-
}
|
| 1568 |
-
|
| 1569 |
-
#icon-options-general {
|
| 1570 |
-
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -492px -5px;
|
| 1571 |
-
}
|
| 1572 |
-
|
| 1573 |
-
#icon-ms-admin {
|
| 1574 |
-
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -659px -5px;
|
| 1575 |
}
|
| 1576 |
|
| 1577 |
.view-switch #view-switch-list {
|
| 1578 |
-
background: transparent url(
|
| 1579 |
}
|
| 1580 |
|
| 1581 |
-
.view-switch #view-switch-list
|
| 1582 |
-
background: transparent url(
|
| 1583 |
}
|
| 1584 |
|
| 1585 |
.view-switch #view-switch-excerpt {
|
| 1586 |
-
background: transparent url(
|
| 1587 |
}
|
| 1588 |
|
| 1589 |
-
.view-switch #view-switch-excerpt
|
| 1590 |
-
background: transparent url(
|
| 1591 |
}
|
| 1592 |
|
| 1593 |
#header-logo {
|
| 1594 |
-
background: transparent url(
|
| 1595 |
}
|
| 1596 |
|
| 1597 |
.popular-tags,
|
|
@@ -1610,28 +1865,26 @@ fieldset.inline-edit-col-right .inline-edit-col {
|
|
| 1610 |
|
| 1611 |
div.widgets-sortables,
|
| 1612 |
#widgets-left .inactive {
|
| 1613 |
-
background-color: #
|
| 1614 |
-
border-color: #
|
| 1615 |
}
|
| 1616 |
|
| 1617 |
#available-widgets .widget-holder {
|
| 1618 |
-
background-color: #
|
| 1619 |
-
border-color: #
|
| 1620 |
}
|
| 1621 |
|
| 1622 |
-
#widgets
|
| 1623 |
-
|
| 1624 |
-
background-image: url(../../../../wp-admin/images/ed-bg.gif);
|
| 1625 |
-
text-shadow: #fff 0 1px 0;
|
| 1626 |
-
border-color: #dfdfdf;
|
| 1627 |
}
|
| 1628 |
|
| 1629 |
-
|
| 1630 |
-
|
| 1631 |
-
text-shadow: #
|
| 1632 |
-
|
| 1633 |
-
|
| 1634 |
-
|
|
|
|
| 1635 |
}
|
| 1636 |
|
| 1637 |
.sidebar-name:hover,
|
|
@@ -1643,12 +1896,12 @@ div.widgets-sortables,
|
|
| 1643 |
color: black;
|
| 1644 |
}
|
| 1645 |
|
| 1646 |
-
|
| 1647 |
-
background: transparent url(
|
| 1648 |
}
|
| 1649 |
|
| 1650 |
-
|
| 1651 |
-
background: transparent url(
|
| 1652 |
}
|
| 1653 |
|
| 1654 |
.in-widget-title {
|
|
@@ -1689,12 +1942,153 @@ div.widgets-sortables,
|
|
| 1689 |
background-color: #f1f1f1;
|
| 1690 |
}
|
| 1691 |
|
| 1692 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1693 |
.menu-item-handle {
|
| 1694 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1695 |
}
|
| 1696 |
|
| 1697 |
#menu-management .nav-tab-active {
|
| 1698 |
-
background: #
|
| 1699 |
-
border-bottom-color: #
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1700 |
}
|
| 1 |
/* =wp-admin area stylesheet with a bbPress twist
|
| 2 |
-------------------------------------------------------------- */
|
| 3 |
|
| 4 |
+
html,
|
| 5 |
+
.wp-dialog {
|
| 6 |
+
background-color: #fff;
|
| 7 |
}
|
| 8 |
|
| 9 |
* html input,
|
| 98 |
|
| 99 |
.widefat {
|
| 100 |
border-color: #dfdfdf;
|
| 101 |
+
background-color: #f9f9f9;
|
| 102 |
}
|
| 103 |
|
| 104 |
div.dashboard-widget-error {
|
| 114 |
}
|
| 115 |
|
| 116 |
div.tabs-panel,
|
| 117 |
+
.wp-tab-panel,
|
| 118 |
ul.category-tabs li.tabs,
|
| 119 |
+
ul.add-menu-item-tabs li.tabs,
|
| 120 |
+
.wp-tab-active {
|
| 121 |
border-color: #dfdfdf;
|
| 122 |
+
background-color: #fff;
|
| 123 |
}
|
| 124 |
|
| 125 |
ul.category-tabs li.tabs,
|
| 126 |
+
ul.add-menu-item-tabs li.tabs,
|
| 127 |
+
.wp-tab-active {
|
| 128 |
+
background-color: #fff;
|
| 129 |
}
|
| 130 |
|
| 131 |
input.disabled,
|
| 139 |
color: #fff;
|
| 140 |
}
|
| 141 |
|
| 142 |
+
.widget .widget-top,
|
| 143 |
+
.postbox h3,
|
| 144 |
+
.stuffbox h3,
|
| 145 |
+
.widefat thead tr th,
|
| 146 |
+
.widefat tfoot tr th,
|
| 147 |
+
h3.dashboard-widget-title,
|
| 148 |
+
h3.dashboard-widget-title span,
|
| 149 |
+
h3.dashboard-widget-title small,
|
| 150 |
+
.find-box-head,
|
| 151 |
+
.sidebar-name,
|
| 152 |
+
#nav-menu-header,
|
| 153 |
+
#nav-menu-footer,
|
| 154 |
+
.menu-item-handle,
|
| 155 |
+
#fullscreen-topbar {
|
| 156 |
+
background-color: #f1f1f1; /* Fallback */
|
| 157 |
+
background-image: -ms-linear-gradient(top, #eefcf1, #deece1); /* IE10 */
|
| 158 |
+
background-image: -moz-linear-gradient(top, #eefcf1, #deece1); /* Firefox */
|
| 159 |
+
background-image: -o-linear-gradient(top, #eefcf1, #deece1); /* Opera */
|
| 160 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#eefcf1), to(#deece1)); /* old Webkit */
|
| 161 |
+
background-image: -webkit-linear-gradient(top, #eefcf1, #deece1); /* new Webkit */
|
| 162 |
+
background-image: linear-gradient(top, #eefcf1, #deece1); /* proposed W3C Markup */
|
| 163 |
+
}
|
| 164 |
+
|
| 165 |
.widget .widget-top,
|
| 166 |
.postbox h3,
|
| 167 |
.stuffbox h3 {
|
| 168 |
+
border-bottom-color: #dfdfdf;
|
| 169 |
text-shadow: #fff 0 1px 0;
|
| 170 |
+
-moz-box-shadow: 0 1px 0 #fff;
|
| 171 |
+
-webkit-box-shadow: 0 1px 0 #fff;
|
| 172 |
+
box-shadow: 0 1px 0 #fff;
|
| 173 |
}
|
| 174 |
|
| 175 |
.form-table th,
|
| 200 |
color: #464646;
|
| 201 |
}
|
| 202 |
|
| 203 |
+
.wrap .add-new-h2 {
|
| 204 |
+
background: #f1f1f1;
|
| 205 |
+
}
|
| 206 |
+
|
| 207 |
+
.subtitle {
|
| 208 |
+
color: #777;
|
| 209 |
+
}
|
| 210 |
+
|
| 211 |
.ac_over {
|
| 212 |
background-color: #f0f0b8;
|
| 213 |
}
|
| 223 |
|
| 224 |
.alternate,
|
| 225 |
.alt {
|
| 226 |
+
background-color: #fcfcfc;
|
| 227 |
}
|
| 228 |
|
| 229 |
.available-theme a.screenshot {
|
| 245 |
border-top-color: #dfdfdf;
|
| 246 |
}
|
| 247 |
|
| 248 |
+
div.error,
|
| 249 |
.login #login_error {
|
| 250 |
background-color: #ffebe8;
|
| 251 |
border-color: #c00;
|
| 252 |
}
|
| 253 |
|
| 254 |
+
div.error a {
|
| 255 |
color: #c00;
|
| 256 |
}
|
| 257 |
|
| 270 |
|
| 271 |
.highlight {
|
| 272 |
background-color: #e4f2fd;
|
| 273 |
+
color: #000;
|
| 274 |
}
|
| 275 |
|
| 276 |
.howto,
|
| 277 |
.nonessential,
|
| 278 |
#edit-slug-box,
|
| 279 |
.form-input-tip,
|
|
|
|
| 280 |
.subsubsub {
|
| 281 |
color: #666;
|
| 282 |
}
|
| 295 |
}
|
| 296 |
|
| 297 |
.post-com-count {
|
| 298 |
+
background-image: url(../../../../../wp-admin/images/bubble_bg.gif);
|
| 299 |
color: #fff;
|
| 300 |
}
|
| 301 |
|
| 342 |
.button,
|
| 343 |
.submit input,
|
| 344 |
.button-secondary {
|
| 345 |
+
background: #f2f2f2 url(../../../../../wp-admin/images/white-grad.png) repeat-x scroll left top;
|
| 346 |
text-shadow: rgba(255,255,255,1) 0 1px 0;
|
| 347 |
}
|
| 348 |
|
| 349 |
.button:active,
|
| 350 |
.submit input:active,
|
| 351 |
.button-secondary:active {
|
| 352 |
+
background: #eee url(../../../../../wp-admin/images/white-grad-active.png) repeat-x scroll left top;
|
| 353 |
}
|
| 354 |
|
| 355 |
input.button-primary,
|
| 356 |
button.button-primary,
|
| 357 |
a.button-primary {
|
| 358 |
+
border-color: #555;
|
| 359 |
font-weight: bold;
|
| 360 |
color: #fff;
|
| 361 |
+
background: #060 url(../images/button-grad.png) repeat-x scroll left top;
|
| 362 |
text-shadow: rgba(0,0,0,0.3) 0 -1px 0;
|
| 363 |
}
|
| 364 |
|
| 365 |
input.button-primary:active,
|
| 366 |
button.button-primary:active,
|
| 367 |
a.button-primary:active {
|
| 368 |
+
background: #060 url(../images/button-grad.png) repeat-x scroll left bottom;
|
| 369 |
color: #cae8be;
|
| 370 |
}
|
| 371 |
|
| 374 |
a.button-primary:hover,
|
| 375 |
a.button-primary:focus,
|
| 376 |
a.button-primary:active {
|
| 377 |
+
border-color: #13455b;
|
| 378 |
+
color: #eaf2fa;
|
| 379 |
}
|
| 380 |
|
| 381 |
.button-disabled,
|
| 385 |
.button-secondary:disabled,
|
| 386 |
a.button.disabled {
|
| 387 |
color: #aaa !important;
|
| 388 |
+
border-color: #555 !important;
|
| 389 |
}
|
| 390 |
|
| 391 |
.button-primary-disabled,
|
| 423 |
}
|
| 424 |
|
| 425 |
#side-sortables .category-tabs .tabs a,
|
| 426 |
+
#side-sortables .add-menu-item-tabs .tabs a,
|
| 427 |
+
.wp-tab-bar .wp-tab-active a {
|
| 428 |
color: #333;
|
| 429 |
}
|
| 430 |
|
| 475 |
color: #d54e21;
|
| 476 |
}
|
| 477 |
|
| 478 |
+
div.updated,
|
| 479 |
.login .message {
|
| 480 |
background-color: #ffffe0;
|
| 481 |
border-color: #e6db55;
|
| 494 |
}
|
| 495 |
|
| 496 |
.widefat td,
|
| 497 |
+
.widefat th {
|
| 498 |
+
border-top-color: #fff;
|
| 499 |
+
border-bottom-color: #dfdfdf;
|
|
|
|
| 500 |
}
|
| 501 |
|
| 502 |
.widefat th {
|
| 503 |
text-shadow: rgba(255,255,255,0.8) 0 1px 0;
|
| 504 |
}
|
| 505 |
|
| 506 |
+
.widefat td {
|
| 507 |
+
color: #555;
|
| 508 |
+
}
|
| 509 |
+
.widefat p,
|
| 510 |
+
.widefat ol,
|
| 511 |
+
.widefat ul {
|
| 512 |
+
color: #333;
|
| 513 |
+
}
|
| 514 |
+
|
| 515 |
.widefat thead tr th,
|
| 516 |
.widefat tfoot tr th,
|
| 517 |
h3.dashboard-widget-title,
|
| 519 |
h3.dashboard-widget-title small,
|
| 520 |
.find-box-head {
|
| 521 |
color: #333;
|
| 522 |
+
}
|
| 523 |
+
|
| 524 |
+
th.sortable a:hover, th.sortable a:active, th.sortable a:focus {
|
| 525 |
+
color: #333;
|
| 526 |
}
|
| 527 |
|
| 528 |
h3.dashboard-widget-title small a {
|
| 545 |
color: #007700;
|
| 546 |
}
|
| 547 |
|
| 548 |
+
#adminmenu .awaiting-mod,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 549 |
#adminmenu .update-plugins,
|
| 550 |
#sidemenu a .update-plugins,
|
| 551 |
#rightnow .reallynow {
|
| 552 |
background-color: #464646;
|
| 553 |
color: #fff;
|
| 554 |
+
-moz-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 555 |
+
-khtml-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 556 |
+
-webkit-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 557 |
+
box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 558 |
}
|
| 559 |
#plugin-information .action-button {
|
| 560 |
background-color: #d54e21;
|
| 561 |
color: #fff;
|
| 562 |
}
|
| 563 |
|
| 564 |
+
#adminmenu li.current a .awaiting-mod,
|
| 565 |
+
#adminmenu li a.wp-has-current-submenu .update-plugins{
|
| 566 |
background-color: #464646;
|
| 567 |
color: #fff;
|
| 568 |
+
-moz-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 569 |
+
-khtml-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 570 |
+
-webkit-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 571 |
+
box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
| 572 |
}
|
| 573 |
|
| 574 |
div#media-upload-header,
|
| 591 |
|
| 592 |
#ed_toolbar input,
|
| 593 |
#ed_reply_toolbar input {
|
| 594 |
+
background: #fff url("../../../../../wp-admin/images/fade-butt.png") repeat-x 0 -2px;
|
| 595 |
}
|
| 596 |
|
| 597 |
#editable-post-name {
|
| 600 |
|
| 601 |
#edit-slug-box strong,
|
| 602 |
.tablenav .displaying-num,
|
| 603 |
+
#submitted-on,
|
| 604 |
+
.submitted-on {
|
| 605 |
color: #777;
|
| 606 |
}
|
| 607 |
|
| 608 |
+
.login #nav a,
|
| 609 |
+
.login #backtoblog a {
|
| 610 |
color: #21759b !important;
|
| 611 |
}
|
| 612 |
|
| 613 |
+
.login #nav a:hover,
|
| 614 |
+
.login #backtoblog a:hover {
|
| 615 |
color: #d54e21 !important;
|
| 616 |
}
|
| 617 |
|
| 618 |
#footer {
|
| 619 |
+
color: #777;
|
| 620 |
+
border-color: #dfdfdf;
|
|
|
|
|
|
|
|
|
|
| 621 |
}
|
| 622 |
|
| 623 |
#media-items,
|
| 629 |
.side-info,
|
| 630 |
.plugins tr,
|
| 631 |
#your-profile #rich_editing {
|
| 632 |
+
background-color: #fcfcfc;
|
| 633 |
}
|
| 634 |
|
| 635 |
.plugins .inactive,
|
| 636 |
.plugins .inactive th,
|
| 637 |
.plugins .inactive td,
|
| 638 |
tr.inactive + tr.plugin-update-tr .plugin-update {
|
| 639 |
+
background-color: #f4f4f4;
|
| 640 |
}
|
| 641 |
|
| 642 |
.plugin-update-tr .update-message {
|
| 687 |
#poststuff .postarea,
|
| 688 |
.stuffbox {
|
| 689 |
border-color: #dfdfdf;
|
| 690 |
+
-moz-box-shadow: inset 0 1px 0 #fff;
|
| 691 |
+
-webkit-box-shadow: inset 0 1px 0 #fff;
|
| 692 |
+
box-shadow: inset 0 1px 0 #fff;
|
| 693 |
+
-moz-border-radius: 3px;
|
| 694 |
+
-khtml-border-radius: 3px;
|
| 695 |
+
-webkit-border-radius: 3px;
|
| 696 |
+
border-radius: 3px;
|
| 697 |
}
|
| 698 |
|
| 699 |
.widget,
|
| 700 |
+
#widget-list .widget-top,
|
| 701 |
+
.postbox,
|
| 702 |
+
.menu-item-settings {
|
| 703 |
+
background-color: #deece1; /* Fallback */
|
| 704 |
+
background-image: -ms-linear-gradient(top, #eefcf1, #eefcf1); /* IE10 */
|
| 705 |
+
background-image: -moz-linear-gradient(top, #deece1, #eefcf1); /* Firefox */
|
| 706 |
+
background-image: -o-linear-gradient(top, #deece1, #eefcf1); /* Opera */
|
| 707 |
+
background-image: -webkit-gradient(linear, left top, left bottom, from(#deece1), to(#eefcf1)); /* old Webkit */
|
| 708 |
+
background-image: -webkit-linear-gradient(top, #deece1, #eefcf1); /* new Webkit */
|
| 709 |
+
background-image: linear-gradient(top, #deece1, #eefcf1); /* proposed W3C Markup */
|
| 710 |
}
|
| 711 |
|
| 712 |
+
.postbox h3 {
|
| 713 |
color: #464646;
|
| 714 |
}
|
| 715 |
|
| 716 |
+
.widget .widget-top {
|
| 717 |
+
color: #222;
|
| 718 |
+
}
|
| 719 |
+
|
| 720 |
+
.sidebar-name:hover h3,
|
| 721 |
+
.postbox h3:hover {
|
| 722 |
color: #000;
|
| 723 |
}
|
| 724 |
|
| 725 |
.curtime #timestamp {
|
| 726 |
+
background-image: url(../../../../../wp-admin/images/date-button.gif);
|
| 727 |
}
|
| 728 |
|
| 729 |
#quicktags #ed_link {
|
| 740 |
|
| 741 |
.tagchecklist span a,
|
| 742 |
#bulk-titles div a {
|
| 743 |
+
background: url(../../../../../wp-admin/images/xit.gif) no-repeat;
|
| 744 |
}
|
| 745 |
|
| 746 |
.tagchecklist span a:hover,
|
| 747 |
#bulk-titles div a:hover {
|
| 748 |
+
background: url(../../../../../wp-admin/images/xit.gif) no-repeat -10px 0;
|
| 749 |
}
|
| 750 |
|
| 751 |
#update-nag, .update-nag {
|
| 759 |
}
|
| 760 |
|
| 761 |
#wphead {
|
| 762 |
+
border-bottom:#dfdfdf 1px solid;
|
|
|
|
|
|
|
|
|
|
| 763 |
}
|
| 764 |
|
| 765 |
#wphead h1 a {
|
| 767 |
}
|
| 768 |
|
| 769 |
#user_info {
|
| 770 |
+
color: #555;
|
| 771 |
+
}
|
| 772 |
+
|
| 773 |
+
#user_info:hover,
|
| 774 |
+
#user_info.active {
|
| 775 |
+
color: #222;
|
| 776 |
+
}
|
| 777 |
+
|
| 778 |
+
#user_info.active {
|
| 779 |
+
background-color: #f1f1f1; /* Fallback */
|
| 780 |
+
background-image: -ms-linear-gradient(bottom, #e9e9e9, #f9f9f9); /* IE10 */
|
| 781 |
+
background-image: -moz-linear-gradient(bottom, #e9e9e9, #f9f9f9); /* Firefox */
|
| 782 |
+
background-image: -o-linear-gradient(bottom, #e9e9e9, #f9f9f9); /* Opera */
|
| 783 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#e9e9e9), to(#f9f9f9)); /* old Webkit */
|
| 784 |
+
background-image: -webkit-linear-gradient(bottom, #e9e9e9, #f9f9f9); /* new Webkit */
|
| 785 |
+
background-image: linear-gradient(bottom, #e9e9e9, #f9f9f9); /* proposed W3C Markup */
|
| 786 |
+
border-color: #aaa #aaa #dfdfdf;
|
| 787 |
+
}
|
| 788 |
+
|
| 789 |
+
#user_info_arrow {
|
| 790 |
+
background: transparent url(../../../../../wp-admin/images/arrows.png) no-repeat 6px 5px;
|
| 791 |
+
}
|
| 792 |
+
|
| 793 |
+
#user_info:hover #user_info_arrow,
|
| 794 |
+
#user_info.active #user_info_arrow {
|
| 795 |
+
background: transparent url(../../../../../wp-admin/images/arrows-dark.png) no-repeat 6px 5px;
|
| 796 |
+
}
|
| 797 |
+
|
| 798 |
+
#user_info_links {
|
| 799 |
+
-moz-box-shadow: 0 3px 2px -2px rgba( 0, 0, 0, 0.2 );
|
| 800 |
+
-webkit-box-shadow: 0 3px 2px -2px rgba( 0, 0, 0, 0.2 );
|
| 801 |
+
box-shadow: 0 3px 2px -2px rgba( 0, 0, 0, 0.2 );
|
| 802 |
+
}
|
| 803 |
+
|
| 804 |
+
#user_info_links ul {
|
| 805 |
+
background: #f1f1f1;
|
| 806 |
+
border-color: #ccc #aaa #aaa;
|
| 807 |
+
-moz-box-shadow: inset 0 1px 0 #f9f9f9;
|
| 808 |
+
-webkit-box-shadow: inset 0 1px 0 #f9f9f9;
|
| 809 |
+
box-shadow: inset 0 1px 0 #f9f9f9;
|
| 810 |
+
}
|
| 811 |
+
|
| 812 |
+
#user_info_links li:hover {
|
| 813 |
+
background-color: #dfdfdf;
|
| 814 |
+
}
|
| 815 |
+
|
| 816 |
+
#user_info_links li:hover a,
|
| 817 |
+
#user_info_links li a:hover {
|
| 818 |
+
text-decoration: none;
|
| 819 |
}
|
| 820 |
|
| 821 |
#user_info a:link,
|
| 822 |
#user_info a:visited,
|
| 823 |
#footer a:link,
|
| 824 |
#footer a:visited {
|
|
|
|
| 825 |
text-decoration: none;
|
| 826 |
}
|
| 827 |
|
|
|
|
| 828 |
#footer a:hover {
|
| 829 |
color: #000;
|
| 830 |
+
text-decoration: underline;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 831 |
}
|
| 832 |
|
| 833 |
div#media-upload-error,
|
| 870 |
|
| 871 |
/* editors */
|
| 872 |
#quicktags {
|
| 873 |
+
border-color: #ccc;
|
| 874 |
background-color: #dfdfdf;
|
| 875 |
+
background-image: url("../../../../../wp-admin/images/ed-bg.gif");
|
| 876 |
}
|
| 877 |
|
| 878 |
#ed_toolbar input {
|
| 885 |
}
|
| 886 |
|
| 887 |
#poststuff .wp_themeSkin .mceStatusbar {
|
| 888 |
+
border-color: #dfdfdf;
|
| 889 |
+
}
|
| 890 |
+
|
| 891 |
+
#poststuff .wp_themeSkin .mceStatusbar * {
|
| 892 |
+
color: #555;
|
| 893 |
}
|
| 894 |
|
| 895 |
#poststuff #edButtonPreview,
|
| 896 |
#poststuff #edButtonHTML {
|
| 897 |
background-color: #f1f1f1;
|
| 898 |
+
border-color: #dfdfdf #dfdfdf #ccc;
|
| 899 |
color: #999;
|
| 900 |
}
|
| 901 |
|
| 902 |
#poststuff #editor-toolbar .active {
|
| 903 |
+
border-color: #ccc #ccc #e9e9e9;
|
| 904 |
background-color: #e9e9e9;
|
| 905 |
color: #333;
|
| 906 |
}
|
| 915 |
.wp_themeSkin a:link,
|
| 916 |
.wp_themeSkin a:visited,
|
| 917 |
.wp_themeSkin a:active {
|
| 918 |
+
color: #000;
|
| 919 |
}
|
| 920 |
|
| 921 |
/* Containers */
|
| 922 |
+
.wp_themeSkin table.mceLayout {
|
| 923 |
+
border-color: #ccc #ccc #dfdfdf;
|
| 924 |
+
}
|
| 925 |
+
|
| 926 |
+
#editorcontainer #content,
|
| 927 |
+
#editorcontainer .wp_themeSkin .mceIframeContainer {
|
| 928 |
+
-moz-box-shadow: inset 1px 1px 2px rgba( 0, 0, 0, 0.1 );
|
| 929 |
+
-webkit-box-shadow: inset 1px 1px 2px rgba( 0, 0, 0, 0.1 );
|
| 930 |
+
box-shadow: inset 1px 1px 2px rgba( 0, 0, 0, 0.1 );
|
| 931 |
+
}
|
| 932 |
.wp_themeSkin iframe {
|
| 933 |
+
background: transparent;
|
| 934 |
}
|
| 935 |
|
| 936 |
/* Layout */
|
| 941 |
|
| 942 |
/* Button */
|
| 943 |
.wp_themeSkin .mceButton {
|
| 944 |
+
border-color: #ccc;
|
| 945 |
+
background-color: #eee; /* Fallback */
|
| 946 |
+
background-image: -ms-linear-gradient(bottom, #ddd, #fff); /* IE10 */
|
| 947 |
+
background-image: -moz-linear-gradient(bottom, #ddd, #fff); /* Firefox */
|
| 948 |
+
background-image: -o-linear-gradient(bottom, #ddd, #fff); /* Opera */
|
| 949 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#fff)); /* old Webkit */
|
| 950 |
+
background-image: -webkit-linear-gradient(bottom, #ddd, #fff); /* new Webkit */
|
| 951 |
+
background-image: linear-gradient(bottom, #ddd, #fff); /* proposed W3C Markup */
|
| 952 |
+
}
|
| 953 |
+
|
| 954 |
+
.wp_themeSkin a.mceButtonEnabled:hover {
|
| 955 |
+
border-color: #a0a0a0;
|
| 956 |
+
background: #ddd; /* Fallback */
|
| 957 |
+
background-image: -ms-linear-gradient(bottom, #ccc, #fff); /* IE10 */
|
| 958 |
+
background-image: -moz-linear-gradient(bottom, #ccc, #fff); /* Firefox */
|
| 959 |
+
background-image: -o-linear-gradient(bottom, #ccc, #fff); /* Opera */
|
| 960 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#ccc), to(#fff)); /* old Webkit */
|
| 961 |
+
background-image: -webkit-linear-gradient(bottom, #ccc, #fff); /* new Webkit */
|
| 962 |
+
background-image: linear-gradient(bottom, #ccc, #fff); /* proposed W3C Markup */
|
| 963 |
+
}
|
| 964 |
+
|
| 965 |
+
.wp_themeSkin a.mceButton:active,
|
| 966 |
+
.wp_themeSkin a.mceButtonEnabled:active,
|
| 967 |
+
.wp_themeSkin a.mceButtonSelected:active,
|
| 968 |
.wp_themeSkin a.mceButtonActive,
|
| 969 |
+
.wp_themeSkin a.mceButtonActive:active,
|
| 970 |
+
.wp_themeSkin a.mceButtonActive:hover {
|
| 971 |
+
background-color: #ddd; /* Fallback */
|
| 972 |
+
background-image: -ms-linear-gradient(bottom, #eee, #bbb); /* IE10 */
|
| 973 |
+
background-image: -moz-linear-gradient(bottom, #eee, #bbb); /* Firefox */
|
| 974 |
+
background-image: -o-linear-gradient(bottom, #eee, #bbb); /* Opera */
|
| 975 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#eee), to(#bbb)); /* old Webkit */
|
| 976 |
+
background-image: -webkit-linear-gradient(bottom, #eee, #bbb); /* new Webkit */
|
| 977 |
+
background-image: linear-gradient(bottom, #eee, #bbb); /* proposed W3C Markup */
|
| 978 |
+
border-color: #909090;
|
| 979 |
}
|
| 980 |
|
| 981 |
.wp_themeSkin .mceButtonDisabled {
|
| 984 |
|
| 985 |
/* ListBox */
|
| 986 |
.wp_themeSkin .mceListBox .mceText,
|
| 987 |
+
.wp_themeSkin .mceListBox .mceOpen {
|
| 988 |
+
border-color: #ccc;
|
| 989 |
+
background-color: #eee; /* Fallback */
|
| 990 |
+
background-image: -ms-linear-gradient(bottom, #ddd, #fff); /* IE10 */
|
| 991 |
+
background-image: -moz-linear-gradient(bottom, #ddd, #fff); /* Firefox */
|
| 992 |
+
background-image: -o-linear-gradient(bottom, #ddd, #fff); /* Opera */
|
| 993 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#fff)); /* old Webkit */
|
| 994 |
+
background-image: -webkit-linear-gradient(bottom, #ddd, #fff); /* new Webkit */
|
| 995 |
+
background-image: linear-gradient(bottom, #ddd, #fff); /* proposed W3C Markup */
|
| 996 |
+
}
|
| 997 |
+
|
| 998 |
+
.wp_themeSkin .mceListBox .mceOpen {
|
| 999 |
+
border-left: 0 !important;
|
| 1000 |
}
|
| 1001 |
|
| 1002 |
.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,
|
| 1003 |
.wp_themeSkin .mceListBoxHover .mceOpen,
|
| 1004 |
+
.wp_themeSkin .mceListBoxHover:active .mceOpen,
|
| 1005 |
.wp_themeSkin .mceListBoxSelected .mceOpen,
|
| 1006 |
+
.wp_themeSkin .mceListBoxSelected .mceText,
|
| 1007 |
+
.wp_themeSkin table.mceListBoxEnabled:active .mceText {
|
| 1008 |
+
background: #ccc;
|
| 1009 |
+
border-color: #999;
|
| 1010 |
}
|
| 1011 |
|
| 1012 |
+
/* List Box Hover */
|
| 1013 |
.wp_themeSkin table.mceListBoxEnabled:hover .mceText,
|
| 1014 |
+
.wp_themeSkin .mceListBoxHover .mceText,
|
| 1015 |
+
.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,
|
| 1016 |
+
.wp_themeSkin .mceListBoxHover .mceOpen {
|
| 1017 |
+
border-color: #909090;
|
| 1018 |
+
background-color: #eee; /* Fallback */
|
| 1019 |
+
background-image: -ms-linear-gradient(bottom, #ccc, #fff); /* IE10 */
|
| 1020 |
+
background-image: -moz-linear-gradient(bottom, #ccc, #fff); /* Firefox */
|
| 1021 |
+
background-image: -o-linear-gradient(bottom, #ccc, #fff); /* Opera */
|
| 1022 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#ccc), to(#fff)); /* old Webkit */
|
| 1023 |
+
background-image: -webkit-linear-gradient(bottom, #ccc, #fff); /* new Webkit */
|
| 1024 |
+
background-image: linear-gradient(bottom, #ccc, #fff); /* proposed W3C Markup */
|
| 1025 |
}
|
| 1026 |
|
| 1027 |
.wp_themeSkin select.mceListBox {
|
| 1032 |
/* SplitButton */
|
| 1033 |
.wp_themeSkin .mceSplitButton a.mceAction,
|
| 1034 |
.wp_themeSkin .mceSplitButton a.mceOpen {
|
| 1035 |
+
border-color: #ccc;
|
| 1036 |
}
|
| 1037 |
|
| 1038 |
.wp_themeSkin .mceSplitButton a.mceOpen:hover,
|
| 1039 |
.wp_themeSkin .mceSplitButtonSelected a.mceOpen,
|
| 1040 |
.wp_themeSkin table.mceSplitButtonEnabled:hover a.mceAction,
|
| 1041 |
.wp_themeSkin .mceSplitButton a.mceAction:hover {
|
| 1042 |
+
border-color: #909090;
|
| 1043 |
+
}
|
| 1044 |
+
|
| 1045 |
+
|
| 1046 |
+
.wp_themeSkin table.mceSplitButton td {
|
| 1047 |
+
background-color: #eee; /* Fallback */
|
| 1048 |
+
background-image: -ms-linear-gradient(bottom, #ddd, #fff); /* IE10 */
|
| 1049 |
+
background-image: -moz-linear-gradient(bottom, #ddd, #fff); /* Firefox */
|
| 1050 |
+
background-image: -o-linear-gradient(bottom, #ddd, #fff); /* Opera */
|
| 1051 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#fff)); /* old Webkit */
|
| 1052 |
+
background-image: -webkit-linear-gradient(bottom, #ddd, #fff); /* new Webkit */
|
| 1053 |
+
background-image: linear-gradient(bottom, #ddd, #fff); /* proposed W3C Markup */
|
| 1054 |
+
}
|
| 1055 |
+
|
| 1056 |
+
.wp_themeSkin table.mceSplitButton:hover td {
|
| 1057 |
+
background-image: -ms-linear-gradient(bottom, #ccc, #fff); /* IE10 */
|
| 1058 |
+
background-image: -moz-linear-gradient(bottom, #ccc, #fff); /* Firefox */
|
| 1059 |
+
background-image: -o-linear-gradient(bottom, #ccc, #fff); /* Opera */
|
| 1060 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#ccc), to(#fff)); /* old Webkit */
|
| 1061 |
+
background-image: -webkit-linear-gradient(bottom, #ccc, #fff); /* new Webkit */
|
| 1062 |
+
background-image: linear-gradient(bottom, #ccc, #fff); /* proposed W3C Markup */
|
| 1063 |
}
|
| 1064 |
|
| 1065 |
.wp_themeSkin .mceSplitButtonActive {
|
| 1121 |
}
|
| 1122 |
|
| 1123 |
.wp_themeSkin tr.mceFirst td.mceToolbar {
|
| 1124 |
+
background: #dfdfdf url("../../../../../wp-admin/images/ed-bg.gif") repeat-x scroll left top;
|
| 1125 |
+
border-color: #ccc;
|
| 1126 |
}
|
| 1127 |
|
| 1128 |
.wp-admin #mceModalBlocker {
|
| 1133 |
background: #444444;
|
| 1134 |
border-left: 1px solid #999;
|
| 1135 |
border-top: 1px solid #999;
|
| 1136 |
+
-moz-border-radius: 3px 0 0 0;
|
| 1137 |
+
-webkit-border-top-left-radius: 3px;
|
| 1138 |
+
-khtml-border-top-left-radius: 3px;
|
| 1139 |
+
border-top-left-radius: 3px;
|
| 1140 |
}
|
| 1141 |
|
| 1142 |
.wp-admin .clearlooks2 .mceFocus .mceTop .mceRight {
|
| 1143 |
background: #444444;
|
| 1144 |
border-right: 1px solid #999;
|
| 1145 |
border-top: 1px solid #999;
|
| 1146 |
+
border-top-right-radius: 3px;
|
| 1147 |
+
-khtml-border-top-right-radius: 3px;
|
| 1148 |
+
-webkit-border-top-right-radius: 3px;
|
| 1149 |
+
-moz-border-radius: 0 3px 0 0;
|
| 1150 |
}
|
| 1151 |
|
| 1152 |
.wp-admin .clearlooks2 .mceMiddle .mceLeft {
|
| 1186 |
}
|
| 1187 |
/* end TinyMCE */
|
| 1188 |
|
| 1189 |
+
#titlediv #title {
|
| 1190 |
+
border-color: #ccc;
|
| 1191 |
+
}
|
| 1192 |
+
|
| 1193 |
+
#editorcontainer {
|
| 1194 |
+
border-color: #ccc #ccc #dfdfdf;
|
| 1195 |
+
}
|
| 1196 |
+
|
| 1197 |
+
#post-status-info {
|
| 1198 |
+
border-color: #dfdfdf #ccc #ccc;
|
| 1199 |
+
}
|
| 1200 |
+
|
| 1201 |
.editwidget .widget-inside {
|
| 1202 |
border-color: #dfdfdf;
|
| 1203 |
}
|
| 1218 |
}
|
| 1219 |
|
| 1220 |
/* menu */
|
| 1221 |
+
#adminmenuback,
|
| 1222 |
+
#adminmenuwrap {
|
| 1223 |
+
background-color: #deece1;
|
| 1224 |
+
border-color: #ccc;
|
| 1225 |
+
}
|
| 1226 |
+
|
| 1227 |
+
#adminmenushadow,
|
| 1228 |
+
#adminmenuback {
|
| 1229 |
+
background-image: url(../../../../../wp-admin/images/menu-shadow.png);
|
| 1230 |
+
background-position: top right;
|
| 1231 |
+
background-repeat: repeat-y;
|
| 1232 |
}
|
| 1233 |
|
| 1234 |
#adminmenu li.wp-menu-separator {
|
| 1235 |
+
background: #dfdfdf;
|
| 1236 |
+
border-color: #cfcfcf;
|
| 1237 |
}
|
| 1238 |
|
| 1239 |
+
#adminmenu div.separator {
|
| 1240 |
+
border-color: #deece1;
|
| 1241 |
}
|
| 1242 |
|
| 1243 |
#adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,
|
| 1244 |
#adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle {
|
| 1245 |
+
background: transparent url(../../../../../wp-admin/images/arrows-dark.png) no-repeat -1px 6px;
|
| 1246 |
}
|
| 1247 |
|
| 1248 |
#adminmenu .wp-has-submenu:hover .wp-menu-toggle,
|
| 1249 |
#adminmenu .wp-menu-open .wp-menu-toggle {
|
| 1250 |
+
background: transparent url(../../../../../wp-admin/images/arrows.png) no-repeat -2px 6px;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1251 |
}
|
| 1252 |
|
| 1253 |
+
#adminmenu a.menu-top,
|
| 1254 |
+
.folded #adminmenu li.menu-top,
|
| 1255 |
+
#adminmenu .wp-submenu .wp-submenu-head {
|
| 1256 |
+
border-top-color: #f9f9f9;
|
| 1257 |
+
border-bottom-color: #dfdfdf;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1258 |
}
|
| 1259 |
|
| 1260 |
+
#adminmenu li.wp-menu-open {
|
| 1261 |
+
border-color: #dfdfdf;
|
| 1262 |
}
|
| 1263 |
|
| 1264 |
#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
|
| 1265 |
+
#adminmenu li.current a.menu-top,
|
| 1266 |
+
.folded #adminmenu li.wp-has-current-submenu,
|
| 1267 |
+
.folded #adminmenu li.current.menu-top,
|
| 1268 |
+
#adminmenu .wp-menu-arrow,
|
| 1269 |
+
#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
|
| 1270 |
+
background-color: #777; /* Fallback */
|
| 1271 |
+
background-image: -ms-linear-gradient(bottom, #060, #6EB469); /* IE10 */
|
| 1272 |
+
background-image: -moz-linear-gradient(bottom, #060, #6EB469); /* Firefox */
|
| 1273 |
+
background-image: -o-linear-gradient(bottom, #060, #6EB469); /* Opera */
|
| 1274 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#060), to(#6EB469)); /* old Webkit */
|
| 1275 |
+
background-image: -webkit-linear-gradient(bottom, #060, #6EB469); /* new Webkit */
|
| 1276 |
+
background-image: linear-gradient(bottom, #060, #6EB469); /* proposed W3C Markup */
|
|
|
|
|
|
|
| 1277 |
}
|
| 1278 |
|
| 1279 |
+
#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
|
| 1280 |
+
#adminmenu li.current a.menu-top,
|
| 1281 |
+
#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
|
| 1282 |
+
text-shadow: 0 -1px 0 #333;
|
| 1283 |
+
color: #fff;
|
| 1284 |
+
border-top-color: #808080;
|
| 1285 |
+
border-bottom-color: #6d6d6d;
|
| 1286 |
}
|
| 1287 |
|
| 1288 |
+
.folded #adminmenu li.wp-has-current-submenu,
|
| 1289 |
+
.folded #adminmenu li.current.menu-top {
|
| 1290 |
+
border-top-color: #808080;
|
| 1291 |
+
border-bottom-color: #6d6d6d;
|
| 1292 |
}
|
| 1293 |
|
| 1294 |
#adminmenu .wp-submenu a:hover {
|
| 1295 |
+
background-color: #EEFCF1 !important;
|
| 1296 |
color: #333 !important;
|
| 1297 |
}
|
| 1298 |
|
| 1300 |
#adminmenu .wp-submenu li.current a,
|
| 1301 |
#adminmenu .wp-submenu li.current a:hover {
|
| 1302 |
color: #333;
|
|
|
|
|
|
|
|
|
|
| 1303 |
}
|
| 1304 |
|
| 1305 |
#adminmenu .wp-submenu ul {
|
| 1306 |
background-color: #fff;
|
| 1307 |
}
|
| 1308 |
|
| 1309 |
+
.folded #adminmenu .wp-submenu-wrap,
|
| 1310 |
+
.folded #adminmenu .wp-submenu ul {
|
| 1311 |
+
border-color: #dfdfdf;
|
| 1312 |
}
|
| 1313 |
|
| 1314 |
+
.folded #adminmenu .wp-submenu-wrap {
|
| 1315 |
+
-moz-box-shadow: 2px 2px 5px rgba( 0, 0, 0, 0.4 );
|
| 1316 |
+
-webkit-box-shadow: 2px 2px 5px rgba( 0, 0, 0, 0.4 );
|
| 1317 |
+
box-shadow: 2px 2px 5px rgba( 0, 0, 0, 0.4 );
|
| 1318 |
}
|
| 1319 |
|
| 1320 |
+
#adminmenu .wp-submenu .wp-submenu-head {
|
| 1321 |
+
border-right-color: #dfdfdf;
|
| 1322 |
+
background-color: #ececec;
|
| 1323 |
}
|
| 1324 |
|
| 1325 |
#adminmenu div.wp-submenu {
|
| 1326 |
background-color: transparent;
|
| 1327 |
}
|
| 1328 |
|
| 1329 |
+
/* collapse menu button */
|
| 1330 |
+
#collapse-menu {
|
| 1331 |
+
color: #aaa;
|
| 1332 |
+
}
|
| 1333 |
+
|
| 1334 |
+
#collapse-menu:hover {
|
| 1335 |
+
color: #999;
|
| 1336 |
+
}
|
| 1337 |
+
|
| 1338 |
+
#collapse-button {
|
| 1339 |
+
border-color: #ccc;
|
| 1340 |
+
background-color: #f4f4f4; /* Fallback */
|
| 1341 |
+
background-image: -ms-linear-gradient(bottom, #dfdfdf, #fff); /* IE10 */
|
| 1342 |
+
background-image: -moz-linear-gradient(bottom, #dfdfdf, #fff); /* Firefox */
|
| 1343 |
+
background-image: -o-linear-gradient(bottom, #dfdfdf, #fff); /* Opera */
|
| 1344 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#fff)); /* old Webkit */
|
| 1345 |
+
background-image: -webkit-linear-gradient(bottom, #dfdfdf, #fff); /* new Webkit */
|
| 1346 |
+
background-image: linear-gradient(bottom, #dfdfdf, #fff); /* proposed W3C Markup */
|
| 1347 |
+
}
|
| 1348 |
+
#collapse-menu:hover #collapse-button {
|
| 1349 |
+
border-color: #aaa;
|
| 1350 |
+
}
|
| 1351 |
+
#collapse-button div {
|
| 1352 |
+
background: transparent url(../../../../../wp-admin/images/arrows.png) no-repeat 0 -72px;
|
| 1353 |
+
}
|
| 1354 |
+
.folded #collapse-button div {
|
| 1355 |
+
background-position: 0 -108px;
|
| 1356 |
+
}
|
| 1357 |
+
|
| 1358 |
+
/* menu and screen icons */
|
| 1359 |
#adminmenu .menu-icon-dashboard div.wp-menu-image {
|
| 1360 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -60px -33px;
|
| 1361 |
}
|
| 1362 |
|
| 1363 |
#adminmenu .menu-icon-dashboard:hover div.wp-menu-image,
|
| 1364 |
#adminmenu .menu-icon-dashboard.wp-has-current-submenu div.wp-menu-image,
|
| 1365 |
#adminmenu .menu-icon-dashboard.current div.wp-menu-image {
|
| 1366 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -60px -1px;
|
| 1367 |
}
|
| 1368 |
|
| 1369 |
#adminmenu .menu-icon-post div.wp-menu-image {
|
| 1370 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -271px -33px;
|
| 1371 |
}
|
| 1372 |
|
| 1373 |
#adminmenu .menu-icon-post:hover div.wp-menu-image,
|
| 1374 |
#adminmenu .menu-icon-post.wp-has-current-submenu div.wp-menu-image {
|
| 1375 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -271px -1px;
|
| 1376 |
}
|
| 1377 |
|
| 1378 |
#adminmenu .menu-icon-media div.wp-menu-image {
|
| 1379 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -120px -33px;
|
| 1380 |
}
|
| 1381 |
|
| 1382 |
#adminmenu .menu-icon-media:hover div.wp-menu-image,
|
| 1383 |
#adminmenu .menu-icon-media.wp-has-current-submenu div.wp-menu-image {
|
| 1384 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -120px -1px;
|
| 1385 |
}
|
| 1386 |
|
| 1387 |
#adminmenu .menu-icon-links div.wp-menu-image {
|
| 1388 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -90px -33px;
|
| 1389 |
}
|
| 1390 |
|
| 1391 |
#adminmenu .menu-icon-links:hover div.wp-menu-image,
|
| 1392 |
#adminmenu .menu-icon-links.wp-has-current-submenu div.wp-menu-image {
|
| 1393 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -90px -1px;
|
| 1394 |
}
|
| 1395 |
|
| 1396 |
#adminmenu .menu-icon-page div.wp-menu-image {
|
| 1397 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -150px -33px;
|
| 1398 |
}
|
| 1399 |
|
| 1400 |
#adminmenu .menu-icon-page:hover div.wp-menu-image,
|
| 1401 |
#adminmenu .menu-icon-page.wp-has-current-submenu div.wp-menu-image {
|
| 1402 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -150px -1px;
|
| 1403 |
}
|
| 1404 |
|
| 1405 |
#adminmenu .menu-icon-comments div.wp-menu-image {
|
| 1406 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -30px -33px;
|
| 1407 |
}
|
| 1408 |
|
| 1409 |
#adminmenu .menu-icon-comments:hover div.wp-menu-image,
|
| 1410 |
#adminmenu .menu-icon-comments.wp-has-current-submenu div.wp-menu-image,
|
| 1411 |
#adminmenu .menu-icon-comments.current div.wp-menu-image {
|
| 1412 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -30px -1px;
|
| 1413 |
}
|
| 1414 |
|
| 1415 |
#adminmenu .menu-icon-appearance div.wp-menu-image {
|
| 1416 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll 0 -33px;
|
| 1417 |
}
|
| 1418 |
|
| 1419 |
#adminmenu .menu-icon-appearance:hover div.wp-menu-image,
|
| 1420 |
#adminmenu .menu-icon-appearance.wp-has-current-submenu div.wp-menu-image {
|
| 1421 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll 0 -1px;
|
| 1422 |
}
|
| 1423 |
|
| 1424 |
#adminmenu .menu-icon-plugins div.wp-menu-image {
|
| 1425 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -180px -33px;
|
| 1426 |
}
|
| 1427 |
|
| 1428 |
#adminmenu .menu-icon-plugins:hover div.wp-menu-image,
|
| 1429 |
#adminmenu .menu-icon-plugins.wp-has-current-submenu div.wp-menu-image {
|
| 1430 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -180px -1px;
|
| 1431 |
}
|
| 1432 |
|
| 1433 |
#adminmenu .menu-icon-users div.wp-menu-image {
|
| 1434 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -300px -33px;
|
| 1435 |
}
|
| 1436 |
|
| 1437 |
#adminmenu .menu-icon-users:hover div.wp-menu-image,
|
| 1438 |
+
#adminmenu .menu-icon-users.wp-has-current-submenu div.wp-menu-image,
|
| 1439 |
+
#adminmenu .menu-icon-users.current div.wp-menu-image {
|
| 1440 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -300px -1px;
|
| 1441 |
}
|
| 1442 |
|
| 1443 |
#adminmenu .menu-icon-tools div.wp-menu-image {
|
| 1444 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -210px -33px;
|
| 1445 |
}
|
| 1446 |
|
| 1447 |
#adminmenu .menu-icon-tools:hover div.wp-menu-image,
|
| 1448 |
+
#adminmenu .menu-icon-tools.wp-has-current-submenu div.wp-menu-image,
|
| 1449 |
+
#adminmenu .menu-icon-tools.current div.wp-menu-image {
|
| 1450 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -210px -1px;
|
| 1451 |
}
|
| 1452 |
|
| 1453 |
+
#icon-options-general,
|
| 1454 |
#adminmenu .menu-icon-settings div.wp-menu-image {
|
| 1455 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -240px -33px;
|
| 1456 |
}
|
| 1457 |
|
| 1458 |
#adminmenu .menu-icon-settings:hover div.wp-menu-image,
|
| 1459 |
#adminmenu .menu-icon-settings.wp-has-current-submenu div.wp-menu-image {
|
| 1460 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -240px -1px;
|
| 1461 |
}
|
| 1462 |
|
| 1463 |
#adminmenu .menu-icon-site div.wp-menu-image {
|
| 1464 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -360px -33px;
|
| 1465 |
}
|
| 1466 |
|
| 1467 |
#adminmenu .menu-icon-site:hover div.wp-menu-image,
|
| 1468 |
#adminmenu .menu-icon-site.wp-has-current-submenu div.wp-menu-image {
|
| 1469 |
+
background: transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -360px -1px;
|
| 1470 |
+
}
|
| 1471 |
+
/* end menu and screen icons */
|
| 1472 |
+
|
| 1473 |
+
/* Screen Icons */
|
| 1474 |
+
#icon-edit,
|
| 1475 |
+
#icon-post {
|
| 1476 |
+
background: transparent url(../../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -552px -5px;
|
| 1477 |
+
}
|
| 1478 |
+
|
| 1479 |
+
#icon-index {
|
| 1480 |
+
background: transparent url(../../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -137px -5px;
|
| 1481 |
+
}
|
| 1482 |
+
|
| 1483 |
+
#icon-upload {
|
| 1484 |
+
background: transparent url(../../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -251px -5px;
|
| 1485 |
+
}
|
| 1486 |
+
|
| 1487 |
+
#icon-link-manager,
|
| 1488 |
+
#icon-link,
|
| 1489 |
+
#icon-link-category {
|
| 1490 |
+
background: transparent url(../../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -190px -5px;
|
| 1491 |
+
}
|
| 1492 |
+
|
| 1493 |
+
#icon-edit-pages,
|
| 1494 |
+
#icon-page {
|
| 1495 |
+
background: transparent url(../../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -312px -5px;
|
| 1496 |
+
}
|
| 1497 |
+
|
| 1498 |
+
#icon-edit-comments {
|
| 1499 |
+
background: transparent url(../../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -72px -5px;
|
| 1500 |
+
}
|
| 1501 |
+
|
| 1502 |
+
#icon-themes {
|
| 1503 |
+
background: transparent url(../../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -11px -5px;
|
| 1504 |
+
}
|
| 1505 |
+
|
| 1506 |
+
#icon-plugins {
|
| 1507 |
+
background: transparent url(../../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -370px -5px;
|
| 1508 |
}
|
| 1509 |
+
|
| 1510 |
+
#icon-users,
|
| 1511 |
+
#icon-profile,
|
| 1512 |
+
#icon-user-edit {
|
| 1513 |
+
background: transparent url(../../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -600px -5px;
|
| 1514 |
+
}
|
| 1515 |
+
|
| 1516 |
+
#icon-tools,
|
| 1517 |
+
#icon-admin {
|
| 1518 |
+
background: transparent url(../../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -432px -5px;
|
| 1519 |
+
}
|
| 1520 |
+
|
| 1521 |
+
#icon-options-general {
|
| 1522 |
+
background: transparent url(../../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -492px -5px;
|
| 1523 |
+
}
|
| 1524 |
+
|
| 1525 |
+
#icon-ms-admin {
|
| 1526 |
+
background: transparent url(../../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -659px -5px;
|
| 1527 |
+
}
|
| 1528 |
+
/* end screen icons */
|
| 1529 |
|
| 1530 |
|
| 1531 |
/* Diff */
|
| 1568 |
border-color: #dfdfdf;
|
| 1569 |
}
|
| 1570 |
|
| 1571 |
+
#screen-options-link-wrap,
|
| 1572 |
+
#contextual-help-link-wrap {
|
| 1573 |
+
background-color: #e3e3e3; /* Fallback */
|
| 1574 |
+
border-right: 1px solid transparent;
|
| 1575 |
+
border-left: 1px solid transparent;
|
| 1576 |
+
border-bottom: 1px solid transparent;
|
| 1577 |
+
background-image: -ms-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* IE10 */
|
| 1578 |
+
background-image: -moz-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* Firefox */
|
| 1579 |
+
background-image: -o-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* Opera */
|
| 1580 |
+
background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#f1f1f1)); /* old Webkit */
|
| 1581 |
+
background-image: -webkit-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* new Webkit */
|
| 1582 |
+
background-image: linear-gradient(bottom, #dfdfdf, #f1f1f1); /* proposed W3C Markup */
|
| 1583 |
+
}
|
| 1584 |
+
|
| 1585 |
#screen-meta-links a.show-settings {
|
| 1586 |
+
color: #777;
|
| 1587 |
}
|
| 1588 |
|
| 1589 |
#screen-meta-links a.show-settings:hover {
|
| 1626 |
background-color: #d00;
|
| 1627 |
}
|
| 1628 |
|
| 1629 |
+
div.star img {
|
| 1630 |
+
border-left: 1px solid #fff;
|
| 1631 |
+
border-right: 1px solid #fff;
|
| 1632 |
+
}
|
| 1633 |
+
|
| 1634 |
+
.widefat div.star img {
|
| 1635 |
+
border-left: 1px solid #f9f9f9;
|
| 1636 |
+
border-right: 1px solid #f9f9f9;
|
| 1637 |
+
}
|
| 1638 |
+
|
| 1639 |
#plugin-information .fyi ul {
|
| 1640 |
background-color: #eaf3fa;
|
| 1641 |
}
|
| 1693 |
}
|
| 1694 |
|
| 1695 |
.meta-box-sortables .postbox:hover .handlediv {
|
| 1696 |
+
background: transparent url(../../../../../wp-admin/images/arrows.png) no-repeat 6px 7px;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1697 |
}
|
| 1698 |
|
| 1699 |
.tablenav .tablenav-pages {
|
| 1702 |
|
| 1703 |
.tablenav .tablenav-pages a {
|
| 1704 |
border-color: #e3e3e3;
|
| 1705 |
+
background: #eee url('../images/menu-bits.gif?ver=20100610') repeat-x scroll left -379px;
|
| 1706 |
}
|
| 1707 |
|
| 1708 |
+
.tablenav .tablenav-pages a:hover,
|
| 1709 |
+
.tablenav .tablenav-pages a:focus {
|
| 1710 |
color: #d54e21;
|
|
|
|
| 1711 |
}
|
| 1712 |
|
| 1713 |
+
.tablenav .tablenav-pages a.disabled,
|
| 1714 |
+
.tablenav .tablenav-pages a.disabled:hover,
|
| 1715 |
+
.tablenav .tablenav-pages a.disabled:focus {
|
| 1716 |
+
color: #aaa;
|
| 1717 |
}
|
| 1718 |
|
| 1719 |
.tablenav .tablenav-pages .current {
|
| 1741 |
}
|
| 1742 |
|
| 1743 |
.misc-pub-section {
|
| 1744 |
+
border-top-color: #fff;
|
| 1745 |
+
border-bottom-color: #dfdfdf;
|
| 1746 |
}
|
| 1747 |
|
| 1748 |
#minor-publishing {
|
| 1749 |
+
border-bottom-color: #dfdfdf;
|
| 1750 |
}
|
| 1751 |
|
| 1752 |
#post-body .misc-pub-section {
|
| 1767 |
}
|
| 1768 |
|
| 1769 |
#post-body ul.category-tabs li.tabs a,
|
| 1770 |
+
#post-body ul.add-menu-item-tabs li.tabs a,
|
| 1771 |
+
body.press-this ul.category-tabs li.tabs a {
|
| 1772 |
color: #333;
|
| 1773 |
}
|
| 1774 |
|
| 1791 |
#favorite-first {
|
| 1792 |
border-color: #c0c0c0;
|
| 1793 |
background: #f1f1f1; /* fallback color */
|
| 1794 |
+
background:-moz-linear-gradient(bottom, #e7e7e7, #fff);
|
| 1795 |
background:-webkit-gradient(linear, left bottom, left top, from(#e7e7e7), to(#fff));
|
| 1796 |
}
|
| 1797 |
|
| 1801 |
}
|
| 1802 |
|
| 1803 |
#favorite-toggle {
|
| 1804 |
+
background: transparent url(../../../../../wp-admin/images/arrows.png) no-repeat 4px 2px;
|
| 1805 |
+
border-color: #dfdfdf;
|
| 1806 |
+
-moz-box-shadow: inset 1px 0 0 #fff;
|
| 1807 |
+
-webkit-box-shadow: inset 1px 0 0 #fff;
|
| 1808 |
+
box-shadow: inset 1px 0 0 #fff;
|
| 1809 |
}
|
| 1810 |
|
| 1811 |
#favorite-actions a {
|
| 1820 |
text-decoration: underline;
|
| 1821 |
}
|
| 1822 |
|
| 1823 |
+
#screen-meta a.show-settings,
|
| 1824 |
+
.toggle-arrow {
|
| 1825 |
+
background: transparent url(../../../../../wp-admin/images/arrows.png) no-repeat right 3px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1826 |
}
|
| 1827 |
|
| 1828 |
+
#screen-meta .screen-meta-active a.show-settings {
|
| 1829 |
+
background: transparent url(../../../../../wp-admin/images/arrows.png) no-repeat right -33px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1830 |
}
|
| 1831 |
|
| 1832 |
.view-switch #view-switch-list {
|
| 1833 |
+
background: transparent url(../../../../../wp-admin/images/list.png) no-repeat 0 0;
|
| 1834 |
}
|
| 1835 |
|
| 1836 |
+
.view-switch .current #view-switch-list {
|
| 1837 |
+
background: transparent url(../../../../../wp-admin/images/list.png) no-repeat -40px 0;
|
| 1838 |
}
|
| 1839 |
|
| 1840 |
.view-switch #view-switch-excerpt {
|
| 1841 |
+
background: transparent url(../../../../../wp-admin/images/list.png) no-repeat -20px 0;
|
| 1842 |
}
|
| 1843 |
|
| 1844 |
+
.view-switch .current #view-switch-excerpt {
|
| 1845 |
+
background: transparent url(../../../../../wp-admin/images/list.png) no-repeat -60px 0;
|
| 1846 |
}
|
| 1847 |
|
| 1848 |
#header-logo {
|
| 1849 |
+
background: transparent url(../../../../../wp-admin/images/wp-logo.png?ver=20110504) no-repeat scroll center center;
|
| 1850 |
}
|
| 1851 |
|
| 1852 |
.popular-tags,
|
| 1865 |
|
| 1866 |
div.widgets-sortables,
|
| 1867 |
#widgets-left .inactive {
|
| 1868 |
+
background-color: #fcfcfc;
|
| 1869 |
+
border-color: #dfdfdf;
|
| 1870 |
}
|
| 1871 |
|
| 1872 |
#available-widgets .widget-holder {
|
| 1873 |
+
background-color: #fcfcfc;
|
| 1874 |
+
border-color: #dfdfdf;
|
| 1875 |
}
|
| 1876 |
|
| 1877 |
+
#available-widgets .widget-description {
|
| 1878 |
+
color: #555;
|
|
|
|
|
|
|
|
|
|
| 1879 |
}
|
| 1880 |
|
| 1881 |
+
.sidebar-name {
|
| 1882 |
+
color: #464646;
|
| 1883 |
+
text-shadow: #fff 0 1px 0;
|
| 1884 |
+
border-color: #dfdfdf;
|
| 1885 |
+
-moz-box-shadow: inset 0 1px 0 #fff;
|
| 1886 |
+
-webkit-box-shadow: inset 0 1px 0 #fff;
|
| 1887 |
+
box-shadow: inset 0 1px 0 #fff;
|
| 1888 |
}
|
| 1889 |
|
| 1890 |
.sidebar-name:hover,
|
| 1896 |
color: black;
|
| 1897 |
}
|
| 1898 |
|
| 1899 |
+
.sidebar-name-arrow {
|
| 1900 |
+
background: transparent url(../../../../../wp-admin/images/arrows.png) no-repeat 5px 9px;
|
| 1901 |
}
|
| 1902 |
|
| 1903 |
+
.sidebar-name:hover .sidebar-name-arrow {
|
| 1904 |
+
background: transparent url(../../../../../wp-admin/images/arrows-dark.png) no-repeat 5px 9px;
|
| 1905 |
}
|
| 1906 |
|
| 1907 |
.in-widget-title {
|
| 1942 |
background-color: #f1f1f1;
|
| 1943 |
}
|
| 1944 |
|
| 1945 |
+
/* added from nav-menu.css */
|
| 1946 |
+
#menu-management .menu-edit {
|
| 1947 |
+
border-color: #dfdfdf;
|
| 1948 |
+
}
|
| 1949 |
+
|
| 1950 |
+
#post-body {
|
| 1951 |
+
background: #fff;
|
| 1952 |
+
border-top-color: #fff;
|
| 1953 |
+
border-bottom-color: #dfdfdf;
|
| 1954 |
+
}
|
| 1955 |
+
|
| 1956 |
+
#nav-menu-header {
|
| 1957 |
+
border-bottom-color: #dfdfdf;
|
| 1958 |
+
}
|
| 1959 |
+
|
| 1960 |
+
#nav-menu-footer {
|
| 1961 |
+
border-top-color: #fff;
|
| 1962 |
+
}
|
| 1963 |
+
|
| 1964 |
+
#menu-management .nav-tabs-arrow a {
|
| 1965 |
+
color: #C1C1C1;
|
| 1966 |
+
}
|
| 1967 |
+
|
| 1968 |
+
#menu-management .nav-tabs-arrow a:hover {
|
| 1969 |
+
color: #D54E21;
|
| 1970 |
+
}
|
| 1971 |
+
|
| 1972 |
+
#menu-management .nav-tabs-arrow a:active {
|
| 1973 |
+
color: #464646;
|
| 1974 |
+
}
|
| 1975 |
+
|
| 1976 |
+
#menu-management .nav-tab-active {
|
| 1977 |
+
border-color: #dfdfdf;
|
| 1978 |
+
}
|
| 1979 |
+
|
| 1980 |
+
#menu-management .nav-tab {
|
| 1981 |
+
background: #fbfbfb;
|
| 1982 |
+
border-color: #dfdfdf;
|
| 1983 |
+
}
|
| 1984 |
+
|
| 1985 |
+
.js .input-with-default-title {
|
| 1986 |
+
color: #aaa;
|
| 1987 |
+
}
|
| 1988 |
+
|
| 1989 |
+
#cancel-save {
|
| 1990 |
+
color: #ff0000;
|
| 1991 |
+
}
|
| 1992 |
+
|
| 1993 |
+
#cancel-save:hover {
|
| 1994 |
+
background-color: #FF0000;
|
| 1995 |
+
color: #fff;
|
| 1996 |
+
}
|
| 1997 |
+
|
| 1998 |
+
.list-container {
|
| 1999 |
+
border-color: #DFDFDF;
|
| 2000 |
+
}
|
| 2001 |
+
|
| 2002 |
.menu-item-handle {
|
| 2003 |
+
border-color: #dfdfdf;
|
| 2004 |
+
}
|
| 2005 |
+
|
| 2006 |
+
.menu li.deleting .menu-item-handle {
|
| 2007 |
+
background-color: #f66;
|
| 2008 |
+
text-shadow: #ccc;
|
| 2009 |
+
}
|
| 2010 |
+
|
| 2011 |
+
.item-type { /* Menu item controls */
|
| 2012 |
+
color: #999999;
|
| 2013 |
+
}
|
| 2014 |
+
|
| 2015 |
+
.item-controls .menu-item-delete:hover {
|
| 2016 |
+
color: #ff0000;
|
| 2017 |
+
}
|
| 2018 |
+
|
| 2019 |
+
.item-edit {
|
| 2020 |
+
background: transparent url(../../../../../wp-admin/images/arrows.png) no-repeat 8px 10px;
|
| 2021 |
+
border-bottom-color: #eee;
|
| 2022 |
+
}
|
| 2023 |
+
|
| 2024 |
+
.item-edit:hover {
|
| 2025 |
+
background: transparent url(../../../../../wp-admin/images/arrows-dark.png) no-repeat 8px 10px;
|
| 2026 |
+
}
|
| 2027 |
+
|
| 2028 |
+
.menu-item-settings { /* Menu editing */
|
| 2029 |
+
border-color: #dfdfdf;
|
| 2030 |
+
}
|
| 2031 |
+
|
| 2032 |
+
.link-to-original {
|
| 2033 |
+
color: #777;
|
| 2034 |
+
border-color: #dfdfdf;
|
| 2035 |
+
}
|
| 2036 |
+
|
| 2037 |
+
#cancel-save:hover {
|
| 2038 |
+
color: #fff !important;
|
| 2039 |
+
}
|
| 2040 |
+
|
| 2041 |
+
#update-menu-item {
|
| 2042 |
+
color: #fff !important;
|
| 2043 |
+
}
|
| 2044 |
+
|
| 2045 |
+
#update-menu-item:hover,
|
| 2046 |
+
#update-menu-item:active,
|
| 2047 |
+
#update-menu-item:focus {
|
| 2048 |
+
color: #eaf2fa !important;
|
| 2049 |
+
border-color: #13455b !important;
|
| 2050 |
+
}
|
| 2051 |
+
|
| 2052 |
+
.submitbox .submitcancel {
|
| 2053 |
+
color: #21759B;
|
| 2054 |
+
border-bottom-color: #21759B;
|
| 2055 |
+
}
|
| 2056 |
+
|
| 2057 |
+
.submitbox .submitcancel:hover {
|
| 2058 |
+
background: #21759B;
|
| 2059 |
+
color: #fff;
|
| 2060 |
+
}
|
| 2061 |
+
/* end added from nav-menu.css */
|
| 2062 |
+
|
| 2063 |
+
#menu-management .nav-tab-active,
|
| 2064 |
+
.menu-item-handle,
|
| 2065 |
+
.menu-item-settings {
|
| 2066 |
+
-moz-box-shadow: inset 0 1px 0 #fff;
|
| 2067 |
+
-webkit-box-shadow: inset 0 1px 0 #fff;
|
| 2068 |
+
box-shadow: inset 0 1px 0 #fff;
|
| 2069 |
}
|
| 2070 |
|
| 2071 |
#menu-management .nav-tab-active {
|
| 2072 |
+
background: #f9f9f9;
|
| 2073 |
+
border-bottom-color: #f9f9f9;
|
| 2074 |
+
}
|
| 2075 |
+
|
| 2076 |
+
/* custom header & background pages */
|
| 2077 |
+
#upload-form label {
|
| 2078 |
+
color: #777;
|
| 2079 |
+
}
|
| 2080 |
+
/* custom header & background pages */
|
| 2081 |
+
|
| 2082 |
+
/* full screen */
|
| 2083 |
+
.fullscreen-overlay {
|
| 2084 |
+
background: #fff;
|
| 2085 |
+
}
|
| 2086 |
+
|
| 2087 |
+
.wp-fullscreen-focus #wp-fullscreen-title,
|
| 2088 |
+
.wp-fullscreen-focus #wp-fullscreen-container {
|
| 2089 |
+
border-color: #ccc;
|
| 2090 |
+
}
|
| 2091 |
+
|
| 2092 |
+
#fullscreen-topbar {
|
| 2093 |
+
border-bottom-color: #DFDFDF;
|
| 2094 |
}
|
bbp-includes/bbp-common-functions.php
CHANGED
|
@@ -10,6 +10,50 @@
|
|
| 10 |
// Exit if accessed directly
|
| 11 |
if ( !defined( 'ABSPATH' ) ) exit;
|
| 12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
/** Post Meta *****************************************************************/
|
| 14 |
|
| 15 |
/**
|
|
@@ -805,6 +849,104 @@ function bbp_check_for_flood( $anonymous_data = false, $author_id = 0 ) {
|
|
| 805 |
return true;
|
| 806 |
}
|
| 807 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 808 |
/** Subscriptions *************************************************************/
|
| 809 |
|
| 810 |
/**
|
|
@@ -919,68 +1061,6 @@ function bbp_logout_url( $url = '', $redirect_to = '' ) {
|
|
| 919 |
|
| 920 |
/** Queries *******************************************************************/
|
| 921 |
|
| 922 |
-
/**
|
| 923 |
-
* Adjusts topic and reply queries to exclude items that might be contained
|
| 924 |
-
* inside hidden or private forums that the user does not have the capability
|
| 925 |
-
* to view.
|
| 926 |
-
*
|
| 927 |
-
* @since bbPress (r3291)
|
| 928 |
-
*
|
| 929 |
-
* @param WP_Query $posts_query
|
| 930 |
-
*
|
| 931 |
-
* @uses apply_filters()
|
| 932 |
-
* @uses bbp_exclude_forum_ids()
|
| 933 |
-
* @uses bbp_get_topic_post_type()
|
| 934 |
-
* @uses bbp_get_reply_post_type()
|
| 935 |
-
|
| 936 |
-
* @return WP_Query
|
| 937 |
-
*/
|
| 938 |
-
function bbp_pre_get_posts_exclude_forums( $posts_query ) {
|
| 939 |
-
|
| 940 |
-
// Bail if all forums are explicitly allowed
|
| 941 |
-
if ( true === apply_filters( 'bbp_include_all_forums', $posts_query ) )
|
| 942 |
-
return $posts_query;
|
| 943 |
-
|
| 944 |
-
// Bail if $posts_query is not an object or of incorrect class
|
| 945 |
-
if ( !is_object( $posts_query ) || ( 'WP_Query' != get_class( $posts_query ) ) )
|
| 946 |
-
return $posts_query;
|
| 947 |
-
|
| 948 |
-
// Bail if filters are suppressed on this query
|
| 949 |
-
if ( true == $posts_query->get( 'suppress_filters' ) )
|
| 950 |
-
return $posts_query;
|
| 951 |
-
|
| 952 |
-
// There are forums that need to be excluded
|
| 953 |
-
if ( $forum_ids = bbp_exclude_forum_ids( 'meta_query' ) ) {
|
| 954 |
-
|
| 955 |
-
// Only exclude forums on bbPress queries
|
| 956 |
-
switch ( $posts_query->get( 'post_type' ) ) {
|
| 957 |
-
|
| 958 |
-
// Topics
|
| 959 |
-
case bbp_get_topic_post_type() :
|
| 960 |
-
|
| 961 |
-
// Replies
|
| 962 |
-
case bbp_get_reply_post_type() :
|
| 963 |
-
|
| 964 |
-
// Topics and replies
|
| 965 |
-
case array( bbp_get_topic_post_type(), bbp_get_reply_post_type() ) :
|
| 966 |
-
|
| 967 |
-
// Get any existing meta queries
|
| 968 |
-
$meta_query = $posts_query->get( 'meta_query' );
|
| 969 |
-
|
| 970 |
-
// Add our meta query to existing
|
| 971 |
-
$meta_query[] = $forum_ids;
|
| 972 |
-
|
| 973 |
-
// Set the meta_query var
|
| 974 |
-
$posts_query->set( 'meta_query', $meta_query );
|
| 975 |
-
|
| 976 |
-
break;
|
| 977 |
-
}
|
| 978 |
-
}
|
| 979 |
-
|
| 980 |
-
// Return possibly adjusted query
|
| 981 |
-
return $posts_query;
|
| 982 |
-
}
|
| 983 |
-
|
| 984 |
/**
|
| 985 |
* Adds ability to include or exclude specific post_parent ID's
|
| 986 |
*
|
|
@@ -1241,59 +1321,83 @@ function bbp_request_feed_trap( $query_vars ) {
|
|
| 1241 |
// Single forum
|
| 1242 |
if ( isset( $query_vars[bbp_get_forum_post_type()] ) ) {
|
| 1243 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1244 |
// Load up our own query
|
| 1245 |
$wp_query = new WP_Query( array(
|
| 1246 |
'post_type' => bbp_get_forum_post_type(),
|
| 1247 |
-
'
|
| 1248 |
) );
|
| 1249 |
|
| 1250 |
-
//
|
| 1251 |
-
|
| 1252 |
-
|
| 1253 |
-
|
| 1254 |
-
|
| 1255 |
-
|
| 1256 |
-
|
| 1257 |
-
|
| 1258 |
-
|
| 1259 |
-
|
| 1260 |
-
|
| 1261 |
-
|
| 1262 |
-
|
| 1263 |
-
|
| 1264 |
-
|
| 1265 |
-
|
| 1266 |
-
|
| 1267 |
-
|
| 1268 |
-
|
| 1269 |
-
|
| 1270 |
-
|
| 1271 |
-
|
| 1272 |
-
|
| 1273 |
-
|
| 1274 |
-
|
| 1275 |
-
|
| 1276 |
-
|
| 1277 |
-
|
| 1278 |
-
|
| 1279 |
-
|
| 1280 |
-
|
| 1281 |
-
|
| 1282 |
-
|
| 1283 |
-
|
| 1284 |
-
|
| 1285 |
-
|
| 1286 |
-
|
| 1287 |
-
)
|
| 1288 |
-
|
| 1289 |
-
|
| 1290 |
-
|
| 1291 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1292 |
}
|
| 1293 |
|
| 1294 |
break;
|
| 1295 |
|
| 1296 |
-
// Topic - Show replies
|
| 1297 |
case bbp_get_topic_post_type() :
|
| 1298 |
|
| 1299 |
// Single topic
|
| 10 |
// Exit if accessed directly
|
| 11 |
if ( !defined( 'ABSPATH' ) ) exit;
|
| 12 |
|
| 13 |
+
/** Versions ******************************************************************/
|
| 14 |
+
|
| 15 |
+
/**
|
| 16 |
+
* Output the bbPress version
|
| 17 |
+
*
|
| 18 |
+
* @since bbPress (r3468)
|
| 19 |
+
* @uses bbp_get_version() To get the bbPress version
|
| 20 |
+
*/
|
| 21 |
+
function bbp_version() {
|
| 22 |
+
echo bbp_get_version();
|
| 23 |
+
}
|
| 24 |
+
/**
|
| 25 |
+
* Return the bbPress version
|
| 26 |
+
*
|
| 27 |
+
* @since bbPress (r3468)
|
| 28 |
+
* @global bbPress $bbp
|
| 29 |
+
* @retrun string The bbPress version
|
| 30 |
+
*/
|
| 31 |
+
function bbp_get_version() {
|
| 32 |
+
global $bbp;
|
| 33 |
+
return $bbp->version;
|
| 34 |
+
}
|
| 35 |
+
|
| 36 |
+
/**
|
| 37 |
+
* Output the bbPress database version
|
| 38 |
+
*
|
| 39 |
+
* @since bbPress (r3468)
|
| 40 |
+
* @uses bbp_get_version() To get the bbPress version
|
| 41 |
+
*/
|
| 42 |
+
function bbp_db_version() {
|
| 43 |
+
echo bbp_get_db_version();
|
| 44 |
+
}
|
| 45 |
+
/**
|
| 46 |
+
* Return the bbPress database version
|
| 47 |
+
*
|
| 48 |
+
* @since bbPress (r3468)
|
| 49 |
+
* @global bbPress $bbp
|
| 50 |
+
* @retrun string The bbPress version
|
| 51 |
+
*/
|
| 52 |
+
function bbp_get_db_version() {
|
| 53 |
+
global $bbp;
|
| 54 |
+
return $bbp->db_version;
|
| 55 |
+
}
|
| 56 |
+
|
| 57 |
/** Post Meta *****************************************************************/
|
| 58 |
|
| 59 |
/**
|
| 849 |
return true;
|
| 850 |
}
|
| 851 |
|
| 852 |
+
/**
|
| 853 |
+
* Checks topics and replies against the discussion blacklist of blocked keys
|
| 854 |
+
*
|
| 855 |
+
* @since bbPress (r3446)
|
| 856 |
+
*
|
| 857 |
+
* @global bbPress $bbp
|
| 858 |
+
* @param array $anonymous_data Anonymous user data
|
| 859 |
+
* @param int $author_id Topic or reply author ID
|
| 860 |
+
* @param string $title The title of the content
|
| 861 |
+
* @param string $content The content being posted
|
| 862 |
+
* @uses is_super_admin() Allow super admins to bypass blacklist
|
| 863 |
+
* @uses bbp_current_author_ip() To get current user IP address
|
| 864 |
+
* @uses bbp_current_author_ua() To get current user agent
|
| 865 |
+
* @return bool True if test is passed, false if fail
|
| 866 |
+
*/
|
| 867 |
+
function bbp_check_for_blacklist( $anonymous_data = false, $author_id = 0, $title = '', $content = '' ) {
|
| 868 |
+
|
| 869 |
+
// Bail if super admin is author
|
| 870 |
+
if ( is_super_admin( $author_id ) )
|
| 871 |
+
return true;
|
| 872 |
+
|
| 873 |
+
// Define local variable
|
| 874 |
+
$post = array();
|
| 875 |
+
|
| 876 |
+
/** Blacklist *************************************************************/
|
| 877 |
+
|
| 878 |
+
// Get the moderation keys
|
| 879 |
+
$blacklist = trim( get_option( 'blacklist_keys' ) );
|
| 880 |
+
|
| 881 |
+
// Bail if blacklist is empty
|
| 882 |
+
if ( empty( $blacklist ) )
|
| 883 |
+
return true;
|
| 884 |
+
|
| 885 |
+
/** User Data *************************************************************/
|
| 886 |
+
|
| 887 |
+
// Map anonymous user data
|
| 888 |
+
if ( !empty( $anonymous_data ) ) {
|
| 889 |
+
$post['author'] = $anonymous_data['bbp_anonymous_name'];
|
| 890 |
+
$post['email'] = $anonymous_data['bbp_anonymous_email'];
|
| 891 |
+
$post['url'] = $anonymous_data['bbp_anonymous_website'];
|
| 892 |
+
|
| 893 |
+
// Map current user data
|
| 894 |
+
} elseif ( !empty( $author_id ) ) {
|
| 895 |
+
|
| 896 |
+
// Get author data
|
| 897 |
+
$user = get_userdata( $author_id );
|
| 898 |
+
|
| 899 |
+
// If data exists, map it
|
| 900 |
+
if ( !empty( $user ) ) {
|
| 901 |
+
$post['author'] = $user->display_name;
|
| 902 |
+
$post['email'] = $user->user_email;
|
| 903 |
+
$post['url'] = $user->user_url;
|
| 904 |
+
}
|
| 905 |
+
}
|
| 906 |
+
|
| 907 |
+
// Current user IP and user agent
|
| 908 |
+
$post['user_ip'] = bbp_current_author_ip();
|
| 909 |
+
$post['user_ua'] = bbp_current_author_ua();
|
| 910 |
+
|
| 911 |
+
// Post title and content
|
| 912 |
+
$post['title'] = $title;
|
| 913 |
+
$post['content'] = $content;
|
| 914 |
+
|
| 915 |
+
/** Words *****************************************************************/
|
| 916 |
+
|
| 917 |
+
// Get words separated by new lines
|
| 918 |
+
$words = explode( "\n", $blacklist );
|
| 919 |
+
|
| 920 |
+
// Loop through words
|
| 921 |
+
foreach ( (array) $words as $word ) {
|
| 922 |
+
|
| 923 |
+
// Trim the whitespace from the word
|
| 924 |
+
$word = trim( $word );
|
| 925 |
+
|
| 926 |
+
// Skip empty lines
|
| 927 |
+
if ( empty( $word ) ) { continue; }
|
| 928 |
+
|
| 929 |
+
// Do some escaping magic so that '#' chars in the
|
| 930 |
+
// spam words don't break things:
|
| 931 |
+
$word = preg_quote( $word, '#' );
|
| 932 |
+
$pattern = "#$word#i";
|
| 933 |
+
|
| 934 |
+
// Loop through post data
|
| 935 |
+
foreach( $post as $post_data ) {
|
| 936 |
+
|
| 937 |
+
// Check each user data for current word
|
| 938 |
+
if ( preg_match( $pattern, $post_data ) ) {
|
| 939 |
+
|
| 940 |
+
// Post does not pass
|
| 941 |
+
return false;
|
| 942 |
+
}
|
| 943 |
+
}
|
| 944 |
+
}
|
| 945 |
+
|
| 946 |
+
// Check passed successfully
|
| 947 |
+
return true;
|
| 948 |
+
}
|
| 949 |
+
|
| 950 |
/** Subscriptions *************************************************************/
|
| 951 |
|
| 952 |
/**
|
| 1061 |
|
| 1062 |
/** Queries *******************************************************************/
|
| 1063 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1064 |
/**
|
| 1065 |
* Adds ability to include or exclude specific post_parent ID's
|
| 1066 |
*
|
| 1321 |
// Single forum
|
| 1322 |
if ( isset( $query_vars[bbp_get_forum_post_type()] ) ) {
|
| 1323 |
|
| 1324 |
+
// Get the forum by the path
|
| 1325 |
+
$forum = get_page_by_path( $query_vars[bbp_get_forum_post_type()], OBJECT, bbp_get_forum_post_type() );
|
| 1326 |
+
$forum_id = $forum->ID;
|
| 1327 |
+
|
| 1328 |
// Load up our own query
|
| 1329 |
$wp_query = new WP_Query( array(
|
| 1330 |
'post_type' => bbp_get_forum_post_type(),
|
| 1331 |
+
'ID' => $forum_id
|
| 1332 |
) );
|
| 1333 |
|
| 1334 |
+
// Restrict to specific forum ID
|
| 1335 |
+
$meta_query = array( array(
|
| 1336 |
+
'key' => '_bbp_forum_id',
|
| 1337 |
+
'value' => $forum_id,
|
| 1338 |
+
'compare' => '='
|
| 1339 |
+
) );
|
| 1340 |
+
|
| 1341 |
+
// No restrictions on forum ID
|
| 1342 |
+
} else {
|
| 1343 |
+
$meta_query = array();
|
| 1344 |
+
}
|
| 1345 |
+
|
| 1346 |
+
// Only forum replies
|
| 1347 |
+
if ( !empty( $_GET['type'] ) && ( bbp_get_reply_post_type() == $_GET['type'] ) ) {
|
| 1348 |
+
|
| 1349 |
+
// The query
|
| 1350 |
+
$the_query = array(
|
| 1351 |
+
'author' => 0,
|
| 1352 |
+
'post_type' => bbp_get_reply_post_type(),
|
| 1353 |
+
'post_parent' => 'any',
|
| 1354 |
+
'post_status' => join( ',', array( 'publish', $bbp->closed_status_id ) ),
|
| 1355 |
+
'posts_per_page' => get_option( '_bbp_replies_per_rss_page', 25 ),
|
| 1356 |
+
'order' => 'DESC',
|
| 1357 |
+
'meta_query' => $meta_query
|
| 1358 |
+
);
|
| 1359 |
+
|
| 1360 |
+
// Output the feed
|
| 1361 |
+
bbp_display_replies_feed_rss2( $the_query );
|
| 1362 |
+
|
| 1363 |
+
// Only forum topics
|
| 1364 |
+
} elseif ( !empty( $_GET['type'] ) && ( bbp_get_topic_post_type() == $_GET['type'] ) ) {
|
| 1365 |
+
|
| 1366 |
+
// The query
|
| 1367 |
+
$the_query = array(
|
| 1368 |
+
'author' => 0,
|
| 1369 |
+
'post_type' => bbp_get_topic_post_type(),
|
| 1370 |
+
'post_parent' => 'any',
|
| 1371 |
+
'post_status' => join( ',', array( 'publish', $bbp->closed_status_id ) ),
|
| 1372 |
+
'posts_per_page' => get_option( '_bbp_topics_per_rss_page', 25 ),
|
| 1373 |
+
'order' => 'DESC',
|
| 1374 |
+
'meta_query' => $meta_query
|
| 1375 |
+
);
|
| 1376 |
+
|
| 1377 |
+
// Output the feed
|
| 1378 |
+
bbp_display_topics_feed_rss2( $the_query );
|
| 1379 |
+
|
| 1380 |
+
// All forum topics and replies
|
| 1381 |
+
} else {
|
| 1382 |
+
|
| 1383 |
+
// The query
|
| 1384 |
+
$the_query = array(
|
| 1385 |
+
'author' => 0,
|
| 1386 |
+
'post_type' => array( bbp_get_reply_post_type(), bbp_get_topic_post_type() ),
|
| 1387 |
+
'post_parent' => 'any',
|
| 1388 |
+
'post_status' => join( ',', array( 'publish', $bbp->closed_status_id ) ),
|
| 1389 |
+
'posts_per_page' => get_option( '_bbp_replies_per_rss_page', 25 ),
|
| 1390 |
+
'order' => 'DESC',
|
| 1391 |
+
'meta_query' => $meta_query
|
| 1392 |
+
);
|
| 1393 |
+
|
| 1394 |
+
// Output the feed
|
| 1395 |
+
bbp_display_replies_feed_rss2( $the_query );
|
| 1396 |
}
|
| 1397 |
|
| 1398 |
break;
|
| 1399 |
|
| 1400 |
+
// Topic feed - Show replies
|
| 1401 |
case bbp_get_topic_post_type() :
|
| 1402 |
|
| 1403 |
// Single topic
|
bbp-includes/bbp-common-template.php
CHANGED
|
@@ -66,8 +66,6 @@ function bbp_is_site_public( $site_id = 0 ) {
|
|
| 66 |
*
|
| 67 |
* @param int $post_id Possible post_id to check
|
| 68 |
* @uses bbp_get_forum_post_type() To get the forum post type
|
| 69 |
-
* @uses is_singular() To check if it's the single post page
|
| 70 |
-
* @uses get_post_field() To get the post type of the post id
|
| 71 |
* @return bool True if it's a forum page, false if not
|
| 72 |
*/
|
| 73 |
function bbp_is_forum( $post_id = 0 ) {
|
|
@@ -134,10 +132,8 @@ function bbp_is_single_forum() {
|
|
| 134 |
* @since bbPress (r2549)
|
| 135 |
*
|
| 136 |
* @param int $post_id Possible post_id to check
|
| 137 |
-
* @uses bbp_is_topic_edit() To return false if it's a topic edit page
|
| 138 |
* @uses bbp_get_topic_post_type() To get the topic post type
|
| 139 |
-
* @uses
|
| 140 |
-
* @uses get_post_field() To get the post type of the post id
|
| 141 |
* @return bool True if it's a topic page, false if not
|
| 142 |
*/
|
| 143 |
function bbp_is_topic( $post_id = 0 ) {
|
|
@@ -258,6 +254,10 @@ function bbp_is_topic_split() {
|
|
| 258 |
function bbp_is_topic_tag() {
|
| 259 |
global $bbp;
|
| 260 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 261 |
if ( is_tax( bbp_get_topic_tag_tax_id() ) || !empty( $bbp->topic_query->is_tax ) )
|
| 262 |
return true;
|
| 263 |
|
|
@@ -318,10 +318,8 @@ function bbp_is_custom_post_type() {
|
|
| 318 |
* @since bbPress (r2549)
|
| 319 |
*
|
| 320 |
* @param int $post_id Possible post_id to check
|
| 321 |
-
* @uses bbp_is_reply_edit() To return false if it's a reply edit page
|
| 322 |
* @uses bbp_get_reply_post_type() To get the reply post type
|
| 323 |
-
* @uses
|
| 324 |
-
* @uses get_post_field() To get the post type of the post id
|
| 325 |
* @return bool True if it's a reply page, false if not
|
| 326 |
*/
|
| 327 |
function bbp_is_reply( $post_id = 0 ) {
|
|
@@ -439,7 +437,7 @@ function bbp_is_user_home() {
|
|
| 439 |
if ( empty( $bbp->displayed_user ) )
|
| 440 |
return false;
|
| 441 |
|
| 442 |
-
return (bool) (
|
| 443 |
}
|
| 444 |
|
| 445 |
/**
|
|
@@ -643,9 +641,14 @@ function is_bbpress() {
|
|
| 643 |
elseif ( bbp_is_topic_archive() )
|
| 644 |
$retval = true;
|
| 645 |
|
|
|
|
|
|
|
| 646 |
elseif ( bbp_is_topic_tag() )
|
| 647 |
$retval = true;
|
| 648 |
|
|
|
|
|
|
|
|
|
|
| 649 |
/** Components ************************************************************/
|
| 650 |
|
| 651 |
elseif ( bbp_is_single_forum() )
|
|
@@ -767,8 +770,9 @@ function bbp_redirect_to_field( $redirect_to = '' ) {
|
|
| 767 |
* @since bbPress (r2815)
|
| 768 |
*
|
| 769 |
* @param string $request Name of $_REQUEST to look for
|
| 770 |
-
* @param string $input_type Type of input
|
| 771 |
-
*
|
|
|
|
| 772 |
*/
|
| 773 |
function bbp_sanitize_val( $request = '', $input_type = 'text' ) {
|
| 774 |
echo bbp_get_sanitize_val( $request, $input_type );
|
|
@@ -782,7 +786,8 @@ function bbp_sanitize_val( $request = '', $input_type = 'text' ) {
|
|
| 782 |
* @since bbPress (r2815)
|
| 783 |
*
|
| 784 |
* @param string $request Name of $_REQUEST to look for
|
| 785 |
-
* @param string $input_type Type of input
|
|
|
|
| 786 |
* @uses esc_attr() To escape the string
|
| 787 |
* @uses apply_filters() Calls 'bbp_get_sanitize_val' with the sanitized
|
| 788 |
* value, request and input type
|
|
@@ -1465,40 +1470,51 @@ function bbp_breadcrumb( $args = array() ) {
|
|
| 1465 |
/** Current Text ******************************************************/
|
| 1466 |
|
| 1467 |
// Forum archive
|
| 1468 |
-
if ( bbp_is_forum_archive() )
|
| 1469 |
$pre_current_text = bbp_get_forum_archive_title();
|
| 1470 |
|
| 1471 |
// Topic archive
|
| 1472 |
-
elseif ( bbp_is_topic_archive() )
|
| 1473 |
$pre_current_text = bbp_get_topic_archive_title();
|
| 1474 |
|
| 1475 |
// View
|
| 1476 |
-
elseif ( bbp_is_single_view() )
|
| 1477 |
$pre_current_text = bbp_get_view_title();
|
| 1478 |
|
| 1479 |
// Single Forum
|
| 1480 |
-
elseif ( bbp_is_single_forum() )
|
| 1481 |
$pre_current_text = bbp_get_forum_title();
|
| 1482 |
|
| 1483 |
// Single Topic
|
| 1484 |
-
elseif ( bbp_is_single_topic() )
|
| 1485 |
$pre_current_text = bbp_get_topic_title();
|
| 1486 |
|
| 1487 |
// Single Topic
|
| 1488 |
-
elseif ( bbp_is_single_reply() )
|
| 1489 |
$pre_current_text = bbp_get_reply_title();
|
| 1490 |
|
| 1491 |
-
// Topic Tag
|
| 1492 |
-
elseif ( bbp_is_topic_tag() )
|
| 1493 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1494 |
|
| 1495 |
// Edit Topic Tag
|
| 1496 |
-
elseif ( bbp_is_topic_tag_edit() )
|
| 1497 |
$pre_current_text = __( 'Edit', 'bbpress' );
|
| 1498 |
|
| 1499 |
// Single
|
| 1500 |
-
else
|
| 1501 |
$pre_current_text = get_the_title();
|
|
|
|
| 1502 |
|
| 1503 |
/** Parse Args ********************************************************/
|
| 1504 |
|
|
@@ -1796,8 +1812,8 @@ function bbp_title( $title = '', $sep = '»', $seplocation = '' ) {
|
|
| 1796 |
} elseif ( bbp_is_single_reply() ) {
|
| 1797 |
$title = bbp_get_reply_title();
|
| 1798 |
|
| 1799 |
-
// Topic tag page
|
| 1800 |
-
} elseif ( bbp_is_topic_tag() ) {
|
| 1801 |
$term = get_queried_object();
|
| 1802 |
$title = sprintf( __( 'Topic Tag: %s', 'bbpress' ), $term->name );
|
| 1803 |
|
| 66 |
*
|
| 67 |
* @param int $post_id Possible post_id to check
|
| 68 |
* @uses bbp_get_forum_post_type() To get the forum post type
|
|
|
|
|
|
|
| 69 |
* @return bool True if it's a forum page, false if not
|
| 70 |
*/
|
| 71 |
function bbp_is_forum( $post_id = 0 ) {
|
| 132 |
* @since bbPress (r2549)
|
| 133 |
*
|
| 134 |
* @param int $post_id Possible post_id to check
|
|
|
|
| 135 |
* @uses bbp_get_topic_post_type() To get the topic post type
|
| 136 |
+
* @uses get_post_type() To get the post type of the post id
|
|
|
|
| 137 |
* @return bool True if it's a topic page, false if not
|
| 138 |
*/
|
| 139 |
function bbp_is_topic( $post_id = 0 ) {
|
| 254 |
function bbp_is_topic_tag() {
|
| 255 |
global $bbp;
|
| 256 |
|
| 257 |
+
// Return false if editing a topic tag
|
| 258 |
+
if ( bbp_is_topic_tag_edit() )
|
| 259 |
+
return false;
|
| 260 |
+
|
| 261 |
if ( is_tax( bbp_get_topic_tag_tax_id() ) || !empty( $bbp->topic_query->is_tax ) )
|
| 262 |
return true;
|
| 263 |
|
| 318 |
* @since bbPress (r2549)
|
| 319 |
*
|
| 320 |
* @param int $post_id Possible post_id to check
|
|
|
|
| 321 |
* @uses bbp_get_reply_post_type() To get the reply post type
|
| 322 |
+
* @uses get_post_type() To get the post type of the post id
|
|
|
|
| 323 |
* @return bool True if it's a reply page, false if not
|
| 324 |
*/
|
| 325 |
function bbp_is_reply( $post_id = 0 ) {
|
| 437 |
if ( empty( $bbp->displayed_user ) )
|
| 438 |
return false;
|
| 439 |
|
| 440 |
+
return (bool) ( bbp_get_displayed_user_id() == bbp_get_current_user_id() );
|
| 441 |
}
|
| 442 |
|
| 443 |
/**
|
| 641 |
elseif ( bbp_is_topic_archive() )
|
| 642 |
$retval = true;
|
| 643 |
|
| 644 |
+
/** Topic Tags ************************************************************/
|
| 645 |
+
|
| 646 |
elseif ( bbp_is_topic_tag() )
|
| 647 |
$retval = true;
|
| 648 |
|
| 649 |
+
elseif ( bbp_is_topic_tag_edit() )
|
| 650 |
+
$retval = true;
|
| 651 |
+
|
| 652 |
/** Components ************************************************************/
|
| 653 |
|
| 654 |
elseif ( bbp_is_single_forum() )
|
| 770 |
* @since bbPress (r2815)
|
| 771 |
*
|
| 772 |
* @param string $request Name of $_REQUEST to look for
|
| 773 |
+
* @param string $input_type Type of input. Default: text. Accepts:
|
| 774 |
+
* textarea|password|select|radio|checkbox
|
| 775 |
+
* @uses bbp_get_sanitize_val() To sanitize the value.
|
| 776 |
*/
|
| 777 |
function bbp_sanitize_val( $request = '', $input_type = 'text' ) {
|
| 778 |
echo bbp_get_sanitize_val( $request, $input_type );
|
| 786 |
* @since bbPress (r2815)
|
| 787 |
*
|
| 788 |
* @param string $request Name of $_REQUEST to look for
|
| 789 |
+
* @param string $input_type Type of input. Default: text. Accepts:
|
| 790 |
+
* textarea|password|select|radio|checkbox
|
| 791 |
* @uses esc_attr() To escape the string
|
| 792 |
* @uses apply_filters() Calls 'bbp_get_sanitize_val' with the sanitized
|
| 793 |
* value, request and input type
|
| 1470 |
/** Current Text ******************************************************/
|
| 1471 |
|
| 1472 |
// Forum archive
|
| 1473 |
+
if ( bbp_is_forum_archive() ) {
|
| 1474 |
$pre_current_text = bbp_get_forum_archive_title();
|
| 1475 |
|
| 1476 |
// Topic archive
|
| 1477 |
+
} elseif ( bbp_is_topic_archive() ) {
|
| 1478 |
$pre_current_text = bbp_get_topic_archive_title();
|
| 1479 |
|
| 1480 |
// View
|
| 1481 |
+
} elseif ( bbp_is_single_view() ) {
|
| 1482 |
$pre_current_text = bbp_get_view_title();
|
| 1483 |
|
| 1484 |
// Single Forum
|
| 1485 |
+
} elseif ( bbp_is_single_forum() ) {
|
| 1486 |
$pre_current_text = bbp_get_forum_title();
|
| 1487 |
|
| 1488 |
// Single Topic
|
| 1489 |
+
} elseif ( bbp_is_single_topic() ) {
|
| 1490 |
$pre_current_text = bbp_get_topic_title();
|
| 1491 |
|
| 1492 |
// Single Topic
|
| 1493 |
+
} elseif ( bbp_is_single_reply() ) {
|
| 1494 |
$pre_current_text = bbp_get_reply_title();
|
| 1495 |
|
| 1496 |
+
// Topic Tag (or theme compat topic tag)
|
| 1497 |
+
} elseif ( bbp_is_topic_tag() || ( get_query_var( 'bbp_topic_tag' ) && !bbp_is_topic_tag_edit() ) ) {
|
| 1498 |
+
|
| 1499 |
+
// Always include the tag name
|
| 1500 |
+
$tag_data[] = bbp_get_topic_tag_name();
|
| 1501 |
+
|
| 1502 |
+
// If capable, include a link to edit the tag
|
| 1503 |
+
if ( current_user_can( 'manage_topic_tags' ) ) {
|
| 1504 |
+
$tag_data[] = '<a href="' . bbp_get_topic_tag_edit_link() . '" class="bbp-edit-topic-tag-link">' . __( '(Edit)', 'bbpress' ) . '</a>';
|
| 1505 |
+
}
|
| 1506 |
+
|
| 1507 |
+
// Implode the results of the tag data
|
| 1508 |
+
$pre_current_text = sprintf( __( 'Topic Tag: %s', 'bbpress' ), implode( ' ', $tag_data ) );
|
| 1509 |
|
| 1510 |
// Edit Topic Tag
|
| 1511 |
+
} elseif ( bbp_is_topic_tag_edit() ) {
|
| 1512 |
$pre_current_text = __( 'Edit', 'bbpress' );
|
| 1513 |
|
| 1514 |
// Single
|
| 1515 |
+
} else {
|
| 1516 |
$pre_current_text = get_the_title();
|
| 1517 |
+
}
|
| 1518 |
|
| 1519 |
/** Parse Args ********************************************************/
|
| 1520 |
|
| 1812 |
} elseif ( bbp_is_single_reply() ) {
|
| 1813 |
$title = bbp_get_reply_title();
|
| 1814 |
|
| 1815 |
+
// Topic tag page (or edit)
|
| 1816 |
+
} elseif ( bbp_is_topic_tag() || bbp_is_topic_tag_edit() || get_query_var( 'bbp_topic_tag' ) ) {
|
| 1817 |
$term = get_queried_object();
|
| 1818 |
$title = sprintf( __( 'Topic Tag: %s', 'bbpress' ), $term->name );
|
| 1819 |
|
bbp-includes/bbp-core-caps.php
CHANGED
|
@@ -59,6 +59,10 @@ function bbp_add_roles() {
|
|
| 59 |
function bbp_add_caps() {
|
| 60 |
global $wp_roles;
|
| 61 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 62 |
// Loop through available roles
|
| 63 |
foreach( $wp_roles->roles as $role => $details ) {
|
| 64 |
|
|
@@ -88,6 +92,10 @@ function bbp_add_caps() {
|
|
| 88 |
function bbp_remove_caps() {
|
| 89 |
global $wp_roles;
|
| 90 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 91 |
// Loop through available roles
|
| 92 |
foreach( $wp_roles->roles as $role => $details ) {
|
| 93 |
|
| 59 |
function bbp_add_caps() {
|
| 60 |
global $wp_roles;
|
| 61 |
|
| 62 |
+
// Load roles if not set
|
| 63 |
+
if ( ! isset( $wp_roles ) )
|
| 64 |
+
$wp_roles = new WP_Roles();
|
| 65 |
+
|
| 66 |
// Loop through available roles
|
| 67 |
foreach( $wp_roles->roles as $role => $details ) {
|
| 68 |
|
| 92 |
function bbp_remove_caps() {
|
| 93 |
global $wp_roles;
|
| 94 |
|
| 95 |
+
// Load roles if not set
|
| 96 |
+
if ( ! isset( $wp_roles ) )
|
| 97 |
+
$wp_roles = new WP_Roles();
|
| 98 |
+
|
| 99 |
// Loop through available roles
|
| 100 |
foreach( $wp_roles->roles as $role => $details ) {
|
| 101 |
|
bbp-includes/bbp-core-compatibility.php
CHANGED
|
@@ -616,12 +616,42 @@ function bbp_get_reply_edit_template() {
|
|
| 616 |
return $template;
|
| 617 |
}
|
| 618 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 619 |
/**
|
| 620 |
* Get the topic edit template
|
| 621 |
*
|
| 622 |
* @since bbPress (r3311)
|
| 623 |
*
|
| 624 |
-
* @uses
|
| 625 |
* @uses apply_filters()
|
| 626 |
*
|
| 627 |
* @return array
|
|
@@ -742,7 +772,7 @@ function bbp_template_include_theme_supports( $template = '' ) {
|
|
| 742 |
// Editing a reply
|
| 743 |
elseif ( bbp_is_reply_edit() && ( $new_template = bbp_get_reply_edit_template() ) ) :
|
| 744 |
|
| 745 |
-
//
|
| 746 |
elseif ( bbp_is_topic_tag() && ( $new_template = bbp_get_topic_tag_template() ) ) :
|
| 747 |
|
| 748 |
// Editing a topic tag
|
|
@@ -879,7 +909,7 @@ function bbp_template_include_theme_compat( $template = '' ) {
|
|
| 879 |
|
| 880 |
// Reset the post with our new title
|
| 881 |
bbp_theme_compat_reset_post( array(
|
| 882 |
-
'post_title' => sprintf( __( '
|
| 883 |
) );
|
| 884 |
|
| 885 |
} elseif ( bbp_is_topic_tag() ) {
|
|
@@ -1184,7 +1214,7 @@ function bbp_redirect_canonical( $redirect_url ) {
|
|
| 1184 |
// Canonical is for the beautiful
|
| 1185 |
if ( $wp_rewrite->using_permalinks() ) {
|
| 1186 |
|
| 1187 |
-
//
|
| 1188 |
if ( 1 < bbp_get_paged() ) {
|
| 1189 |
|
| 1190 |
// Only on single topics...
|
|
@@ -1195,6 +1225,14 @@ function bbp_redirect_canonical( $redirect_url ) {
|
|
| 1195 |
} elseif ( bbp_is_single_forum() ) {
|
| 1196 |
$redirect_url = false;
|
| 1197 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1198 |
}
|
| 1199 |
}
|
| 1200 |
|
|
@@ -1475,11 +1513,11 @@ function bbp_pre_get_posts( $posts_query ) {
|
|
| 1475 |
$posts_query->is_home = false;
|
| 1476 |
|
| 1477 |
// Set bbp_user_id for future reference
|
| 1478 |
-
$posts_query->
|
| 1479 |
|
| 1480 |
// Set author_name as current user's nicename to get correct posts
|
| 1481 |
if ( !bbp_is_query_name( 'bbp_widget' ) )
|
| 1482 |
-
$posts_query->
|
| 1483 |
|
| 1484 |
// Set the displayed user global to this user
|
| 1485 |
$bbp->displayed_user = $user;
|
|
@@ -1520,10 +1558,30 @@ function bbp_pre_get_posts( $posts_query ) {
|
|
| 1520 |
// We save post revisions on our own
|
| 1521 |
remove_action( 'pre_post_update', 'wp_save_post_revision' );
|
| 1522 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1523 |
// Topic tag page
|
| 1524 |
} elseif ( bbp_is_topic_tag() ) {
|
| 1525 |
-
$posts_query->
|
| 1526 |
-
$posts_query->
|
| 1527 |
}
|
| 1528 |
|
| 1529 |
return $posts_query;
|
| 616 |
return $template;
|
| 617 |
}
|
| 618 |
|
| 619 |
+
/**
|
| 620 |
+
* Get the topic template
|
| 621 |
+
*
|
| 622 |
+
* @since bbPress (r3311)
|
| 623 |
+
*
|
| 624 |
+
* @uses bbp_get_topic_tag_tax_id()
|
| 625 |
+
* @uses apply_filters()
|
| 626 |
+
*
|
| 627 |
+
* @return array
|
| 628 |
+
*/
|
| 629 |
+
function bbp_get_topic_tag_template() {
|
| 630 |
+
|
| 631 |
+
$tt_id = bbp_get_topic_tag_tax_id();
|
| 632 |
+
$templates = array(
|
| 633 |
+
|
| 634 |
+
// Single Topic Tag
|
| 635 |
+
'taxonomy-' . $tt_id . '.php',
|
| 636 |
+
'forums/taxonomy-' . $tt_id . '.php',
|
| 637 |
+
'bbpress/taxonomy-' . $tt_id . '.php',
|
| 638 |
+
);
|
| 639 |
+
|
| 640 |
+
$templates = apply_filters( 'bbp_get_topic_tag_template', $templates );
|
| 641 |
+
$templates = bbp_set_theme_compat_templates( $templates );
|
| 642 |
+
|
| 643 |
+
$template = locate_template( $templates, false, false );
|
| 644 |
+
$template = bbp_set_theme_compat_template( $template );
|
| 645 |
+
|
| 646 |
+
return $template;
|
| 647 |
+
}
|
| 648 |
+
|
| 649 |
/**
|
| 650 |
* Get the topic edit template
|
| 651 |
*
|
| 652 |
* @since bbPress (r3311)
|
| 653 |
*
|
| 654 |
+
* @uses bbp_get_topic_tag_tax_id()
|
| 655 |
* @uses apply_filters()
|
| 656 |
*
|
| 657 |
* @return array
|
| 772 |
// Editing a reply
|
| 773 |
elseif ( bbp_is_reply_edit() && ( $new_template = bbp_get_reply_edit_template() ) ) :
|
| 774 |
|
| 775 |
+
// Viewing a topic tag
|
| 776 |
elseif ( bbp_is_topic_tag() && ( $new_template = bbp_get_topic_tag_template() ) ) :
|
| 777 |
|
| 778 |
// Editing a topic tag
|
| 909 |
|
| 910 |
// Reset the post with our new title
|
| 911 |
bbp_theme_compat_reset_post( array(
|
| 912 |
+
'post_title' => sprintf( __( 'Topic Tag: %s', 'bbpress' ), '<span>' . bbp_get_topic_tag_name() . '</span>' )
|
| 913 |
) );
|
| 914 |
|
| 915 |
} elseif ( bbp_is_topic_tag() ) {
|
| 1214 |
// Canonical is for the beautiful
|
| 1215 |
if ( $wp_rewrite->using_permalinks() ) {
|
| 1216 |
|
| 1217 |
+
// If viewing beyond page 1 of several
|
| 1218 |
if ( 1 < bbp_get_paged() ) {
|
| 1219 |
|
| 1220 |
// Only on single topics...
|
| 1225 |
} elseif ( bbp_is_single_forum() ) {
|
| 1226 |
$redirect_url = false;
|
| 1227 |
}
|
| 1228 |
+
|
| 1229 |
+
// If editing a topic
|
| 1230 |
+
} elseif ( bbp_is_topic_edit() ) {
|
| 1231 |
+
$redirect_url = false;
|
| 1232 |
+
|
| 1233 |
+
// If editing a reply
|
| 1234 |
+
} elseif ( bbp_is_reply_edit() ) {
|
| 1235 |
+
$redirect_url = false;
|
| 1236 |
}
|
| 1237 |
}
|
| 1238 |
|
| 1513 |
$posts_query->is_home = false;
|
| 1514 |
|
| 1515 |
// Set bbp_user_id for future reference
|
| 1516 |
+
$posts_query->set( 'bbp_user_id', $user->ID );
|
| 1517 |
|
| 1518 |
// Set author_name as current user's nicename to get correct posts
|
| 1519 |
if ( !bbp_is_query_name( 'bbp_widget' ) )
|
| 1520 |
+
$posts_query->set( 'author_name', $user->user_nicename );
|
| 1521 |
|
| 1522 |
// Set the displayed user global to this user
|
| 1523 |
$bbp->displayed_user = $user;
|
| 1558 |
// We save post revisions on our own
|
| 1559 |
remove_action( 'pre_post_update', 'wp_save_post_revision' );
|
| 1560 |
|
| 1561 |
+
// Check forum status and exclude single forums the user cannot see
|
| 1562 |
+
} elseif ( bbp_get_forum_post_type() == $posts_query->get( 'post_type' ) ) {
|
| 1563 |
+
|
| 1564 |
+
// Define local variable
|
| 1565 |
+
$status = array();
|
| 1566 |
+
|
| 1567 |
+
// All users can see published forums
|
| 1568 |
+
$status[] = 'publish';
|
| 1569 |
+
|
| 1570 |
+
// Add 'private' if user is capable
|
| 1571 |
+
if ( current_user_can( 'read_private_forums' ) )
|
| 1572 |
+
$status[] = 'private';
|
| 1573 |
+
|
| 1574 |
+
// Add 'hidden' if user is capable
|
| 1575 |
+
if ( current_user_can( 'read_hidden_forums' ) )
|
| 1576 |
+
$status[] = $bbp->hidden_status_id;
|
| 1577 |
+
|
| 1578 |
+
// Implode and add the statuses
|
| 1579 |
+
$posts_query->set( 'post_status', implode( ',', $status ) );
|
| 1580 |
+
|
| 1581 |
// Topic tag page
|
| 1582 |
} elseif ( bbp_is_topic_tag() ) {
|
| 1583 |
+
$posts_query->set( 'post_type', bbp_get_topic_post_type() );
|
| 1584 |
+
$posts_query->set( 'posts_per_page', get_option( '_bbp_topics_per_page', 15 ) );
|
| 1585 |
}
|
| 1586 |
|
| 1587 |
return $posts_query;
|
bbp-includes/bbp-core-hooks.php
CHANGED
|
@@ -59,8 +59,8 @@ add_action( 'bbp_loaded', 'bbp_register_theme_directory', 10 );
|
|
| 59 |
* v---Load order
|
| 60 |
*/
|
| 61 |
add_action( 'bbp_init', 'bbp_load_textdomain', 2 );
|
| 62 |
-
add_action( 'bbp_init', '
|
| 63 |
-
add_action( 'bbp_init', '
|
| 64 |
add_action( 'bbp_init', 'bbp_setup_theme_compat', 8 );
|
| 65 |
add_action( 'bbp_init', 'bbp_setup_akismet', 10 );
|
| 66 |
add_action( 'bbp_init', 'bbp_setup_buddypress', 12 );
|
|
@@ -117,7 +117,10 @@ add_action( 'template_redirect', 'bbp_manage_topic_tag_handler', 1 );
|
|
| 117 |
// Before and After the Query
|
| 118 |
add_action( 'pre_get_posts', 'bbp_pre_get_posts', 2 );
|
| 119 |
add_action( 'pre_get_posts', 'bbp_pre_get_posts_exclude_forums', 4 );
|
| 120 |
-
|
|
|
|
|
|
|
|
|
|
| 121 |
|
| 122 |
// Profile Edit
|
| 123 |
add_action( 'template_redirect', 'bbp_edit_user_handler', 1 );
|
|
@@ -218,8 +221,8 @@ add_action( 'bbp_deactivation', 'flush_rewrite_rules' );
|
|
| 218 |
|
| 219 |
/**
|
| 220 |
* When a new site is created in a multisite installation, run the activation
|
| 221 |
-
* routine on that site
|
| 222 |
-
*
|
| 223 |
* @since bbPress (r3283)
|
| 224 |
*
|
| 225 |
* @param int $blog_id
|
|
@@ -227,7 +230,7 @@ add_action( 'bbp_deactivation', 'flush_rewrite_rules' );
|
|
| 227 |
* @param string $domain
|
| 228 |
* @param string $path
|
| 229 |
* @param int $site_id
|
| 230 |
-
* @param array() $meta
|
| 231 |
*/
|
| 232 |
function bbp_new_site( $blog_id, $user_id, $domain, $path, $site_id, $meta ) {
|
| 233 |
|
|
@@ -409,6 +412,13 @@ if ( is_admin() ) {
|
|
| 409 |
add_action( 'custom_menu_order', 'bbp_admin_custom_menu_order' );
|
| 410 |
add_action( 'menu_order', 'bbp_admin_menu_order' );
|
| 411 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 412 |
/** Filters ***************************************************************/
|
| 413 |
|
| 414 |
// Run wp_kses_data on topic/reply content in admin section
|
|
@@ -417,16 +427,16 @@ if ( is_admin() ) {
|
|
| 417 |
}
|
| 418 |
|
| 419 |
/**
|
| 420 |
-
* Plugin Dependency
|
| 421 |
*
|
| 422 |
* The purpose of the following actions is to mimic the behavior of something
|
| 423 |
* called 'plugin dependency' which enables a plugin to have plugins of their
|
| 424 |
* own in a safe and reliable way.
|
| 425 |
-
*
|
| 426 |
* We do this in bbPress by mirroring existing WordPress actions in many places
|
| 427 |
* allowing dependant plugins to hook into the bbPress specific ones, thus
|
| 428 |
* guaranteeing proper code execution only when bbPress is active.
|
| 429 |
-
*
|
| 430 |
* The following functions are wrappers for their actions, allowing them to be
|
| 431 |
* manually called and/or piggy-backed on top of other actions if needed.
|
| 432 |
*/
|
| 59 |
* v---Load order
|
| 60 |
*/
|
| 61 |
add_action( 'bbp_init', 'bbp_load_textdomain', 2 );
|
| 62 |
+
add_action( 'bbp_init', 'bbp_setup_option_filters', 4 );
|
| 63 |
+
add_action( 'bbp_init', 'bbp_setup_current_user', 6 );
|
| 64 |
add_action( 'bbp_init', 'bbp_setup_theme_compat', 8 );
|
| 65 |
add_action( 'bbp_init', 'bbp_setup_akismet', 10 );
|
| 66 |
add_action( 'bbp_init', 'bbp_setup_buddypress', 12 );
|
| 117 |
// Before and After the Query
|
| 118 |
add_action( 'pre_get_posts', 'bbp_pre_get_posts', 2 );
|
| 119 |
add_action( 'pre_get_posts', 'bbp_pre_get_posts_exclude_forums', 4 );
|
| 120 |
+
|
| 121 |
+
// Restrict forum access
|
| 122 |
+
add_action( 'template_redirect', 'bbp_forum_enforce_hidden', -1 );
|
| 123 |
+
add_action( 'template_redirect', 'bbp_forum_enforce_private', -1 );
|
| 124 |
|
| 125 |
// Profile Edit
|
| 126 |
add_action( 'template_redirect', 'bbp_edit_user_handler', 1 );
|
| 221 |
|
| 222 |
/**
|
| 223 |
* When a new site is created in a multisite installation, run the activation
|
| 224 |
+
* routine on that site
|
| 225 |
+
*
|
| 226 |
* @since bbPress (r3283)
|
| 227 |
*
|
| 228 |
* @param int $blog_id
|
| 230 |
* @param string $domain
|
| 231 |
* @param string $path
|
| 232 |
* @param int $site_id
|
| 233 |
+
* @param array() $meta
|
| 234 |
*/
|
| 235 |
function bbp_new_site( $blog_id, $user_id, $domain, $path, $site_id, $meta ) {
|
| 236 |
|
| 412 |
add_action( 'custom_menu_order', 'bbp_admin_custom_menu_order' );
|
| 413 |
add_action( 'menu_order', 'bbp_admin_menu_order' );
|
| 414 |
|
| 415 |
+
/**
|
| 416 |
+
* Run the updater late on 'bbp_admin_init' to ensure that all alterations
|
| 417 |
+
* to the permalink structure have taken place. This fixes the issue of
|
| 418 |
+
* permalinks not being flushed properly when a bbPress update occurs.
|
| 419 |
+
*/
|
| 420 |
+
add_action( 'bbp_admin_init', 'bbp_setup_updater', 999 );
|
| 421 |
+
|
| 422 |
/** Filters ***************************************************************/
|
| 423 |
|
| 424 |
// Run wp_kses_data on topic/reply content in admin section
|
| 427 |
}
|
| 428 |
|
| 429 |
/**
|
| 430 |
+
* Plugin Dependency
|
| 431 |
*
|
| 432 |
* The purpose of the following actions is to mimic the behavior of something
|
| 433 |
* called 'plugin dependency' which enables a plugin to have plugins of their
|
| 434 |
* own in a safe and reliable way.
|
| 435 |
+
*
|
| 436 |
* We do this in bbPress by mirroring existing WordPress actions in many places
|
| 437 |
* allowing dependant plugins to hook into the bbPress specific ones, thus
|
| 438 |
* guaranteeing proper code execution only when bbPress is active.
|
| 439 |
+
*
|
| 440 |
* The following functions are wrappers for their actions, allowing them to be
|
| 441 |
* manually called and/or piggy-backed on top of other actions if needed.
|
| 442 |
*/
|
bbp-includes/bbp-core-options.php
CHANGED
|
@@ -23,7 +23,7 @@ function bbp_get_default_options() {
|
|
| 23 |
$options = array (
|
| 24 |
|
| 25 |
/** DB Version ********************************************************/
|
| 26 |
-
|
| 27 |
'_bbp_db_version' => '155',
|
| 28 |
|
| 29 |
/** Settings **********************************************************/
|
|
@@ -62,9 +62,9 @@ function bbp_get_default_options() {
|
|
| 62 |
|
| 63 |
// Replies per RSS page
|
| 64 |
'_bbp_replies_per_rss_page' => '25',
|
| 65 |
-
|
| 66 |
/** Page For **********************************************************/
|
| 67 |
-
|
| 68 |
// Page for forums
|
| 69 |
'_bbp_page_for_forums' => '0',
|
| 70 |
|
|
@@ -129,7 +129,7 @@ function bbp_get_default_options() {
|
|
| 129 |
// Hidden forums
|
| 130 |
'_bbp_hidden_forums' => '',
|
| 131 |
);
|
| 132 |
-
|
| 133 |
return apply_filters( 'bbp_get_default_options', $options );
|
| 134 |
}
|
| 135 |
|
|
@@ -139,6 +139,7 @@ function bbp_get_default_options() {
|
|
| 139 |
* Hooked to bbp_activate, it is only called once when bbPress is activated.
|
| 140 |
* This is non-destructive, so existing settings will not be overridden.
|
| 141 |
*
|
|
|
|
| 142 |
* @uses add_option() Adds default options
|
| 143 |
* @uses do_action() Calls 'bbp_add_options'
|
| 144 |
*/
|
|
@@ -152,7 +153,6 @@ function bbp_add_options() {
|
|
| 152 |
add_option( $key, $value );
|
| 153 |
|
| 154 |
// Allow previously activated plugins to append their own options.
|
| 155 |
-
// This is an extremely rare use-case.
|
| 156 |
do_action( 'bbp_add_options' );
|
| 157 |
}
|
| 158 |
/**
|
|
@@ -161,6 +161,7 @@ function bbp_add_options() {
|
|
| 161 |
* Hooked to bbp_uninstall, it is only called once when bbPress is uninstalled.
|
| 162 |
* This is destructive, so existing settings will be destroyed.
|
| 163 |
*
|
|
|
|
| 164 |
* @uses delete_option() Removes default options
|
| 165 |
* @uses do_action() Calls 'bbp_delete_options'
|
| 166 |
*/
|
|
@@ -174,10 +175,59 @@ function bbp_delete_options() {
|
|
| 174 |
delete_option( $key );
|
| 175 |
|
| 176 |
// Allow previously activated plugins to append their own options.
|
| 177 |
-
// This is an extremely rare use-case.
|
| 178 |
do_action( 'bbp_delete_options' );
|
| 179 |
}
|
| 180 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 181 |
/** Active? *******************************************************************/
|
| 182 |
|
| 183 |
/**
|
| 23 |
$options = array (
|
| 24 |
|
| 25 |
/** DB Version ********************************************************/
|
| 26 |
+
|
| 27 |
'_bbp_db_version' => '155',
|
| 28 |
|
| 29 |
/** Settings **********************************************************/
|
| 62 |
|
| 63 |
// Replies per RSS page
|
| 64 |
'_bbp_replies_per_rss_page' => '25',
|
| 65 |
+
|
| 66 |
/** Page For **********************************************************/
|
| 67 |
+
|
| 68 |
// Page for forums
|
| 69 |
'_bbp_page_for_forums' => '0',
|
| 70 |
|
| 129 |
// Hidden forums
|
| 130 |
'_bbp_hidden_forums' => '',
|
| 131 |
);
|
| 132 |
+
|
| 133 |
return apply_filters( 'bbp_get_default_options', $options );
|
| 134 |
}
|
| 135 |
|
| 139 |
* Hooked to bbp_activate, it is only called once when bbPress is activated.
|
| 140 |
* This is non-destructive, so existing settings will not be overridden.
|
| 141 |
*
|
| 142 |
+
* @uses bbp_get_default_options() To get default options
|
| 143 |
* @uses add_option() Adds default options
|
| 144 |
* @uses do_action() Calls 'bbp_add_options'
|
| 145 |
*/
|
| 153 |
add_option( $key, $value );
|
| 154 |
|
| 155 |
// Allow previously activated plugins to append their own options.
|
|
|
|
| 156 |
do_action( 'bbp_add_options' );
|
| 157 |
}
|
| 158 |
/**
|
| 161 |
* Hooked to bbp_uninstall, it is only called once when bbPress is uninstalled.
|
| 162 |
* This is destructive, so existing settings will be destroyed.
|
| 163 |
*
|
| 164 |
+
* @uses bbp_get_default_options() To get default options
|
| 165 |
* @uses delete_option() Removes default options
|
| 166 |
* @uses do_action() Calls 'bbp_delete_options'
|
| 167 |
*/
|
| 175 |
delete_option( $key );
|
| 176 |
|
| 177 |
// Allow previously activated plugins to append their own options.
|
|
|
|
| 178 |
do_action( 'bbp_delete_options' );
|
| 179 |
}
|
| 180 |
|
| 181 |
+
/**
|
| 182 |
+
* Add filters to each bbPress option and allow them to be overloaded from
|
| 183 |
+
* inside the $bbp->options array.
|
| 184 |
+
*
|
| 185 |
+
* @since bbPress (r3451)
|
| 186 |
+
*
|
| 187 |
+
* @uses bbp_get_default_options() To get default options
|
| 188 |
+
* @uses add_filter() To add filters to 'pre_option_{$key}'
|
| 189 |
+
* @uses do_action() Calls 'bbp_add_option_filters'
|
| 190 |
+
*/
|
| 191 |
+
function bbp_setup_option_filters() {
|
| 192 |
+
|
| 193 |
+
// Get the default options and values
|
| 194 |
+
$options = bbp_get_default_options();
|
| 195 |
+
|
| 196 |
+
// Add filters to each bbPress option
|
| 197 |
+
foreach ( $options as $key => $value )
|
| 198 |
+
add_filter( 'pre_option_' . $key, 'bbp_pre_get_option' );
|
| 199 |
+
|
| 200 |
+
// Allow previously activated plugins to append their own options.
|
| 201 |
+
do_action( 'bbp_setup_option_filters' );
|
| 202 |
+
}
|
| 203 |
+
|
| 204 |
+
/**
|
| 205 |
+
* Filter default options and allow them to be overloaded from inside the
|
| 206 |
+
* $bbp->options array.
|
| 207 |
+
*
|
| 208 |
+
* @since bbPress (r3451)
|
| 209 |
+
*
|
| 210 |
+
* @global bbPress $bbp
|
| 211 |
+
* @param bool $value
|
| 212 |
+
* @return mixed false if not overloaded, mixed if set
|
| 213 |
+
*/
|
| 214 |
+
function bbp_pre_get_option( $value = false ) {
|
| 215 |
+
global $bbp;
|
| 216 |
+
|
| 217 |
+
// Get the name of the current filter so we can manipulate it
|
| 218 |
+
$filter = current_filter();
|
| 219 |
+
|
| 220 |
+
// Remove the filter prefix
|
| 221 |
+
$option = str_replace( 'pre_option_', '', $filter );
|
| 222 |
+
|
| 223 |
+
// Check the options global for preset value
|
| 224 |
+
if ( !empty( $bbp->options[$option] ) )
|
| 225 |
+
$value = $bbp->options[$option];
|
| 226 |
+
|
| 227 |
+
// Always return a value, even if false
|
| 228 |
+
return $value;
|
| 229 |
+
}
|
| 230 |
+
|
| 231 |
/** Active? *******************************************************************/
|
| 232 |
|
| 233 |
/**
|
bbp-includes/bbp-core-update.php
CHANGED
|
@@ -12,20 +12,21 @@ if ( !defined( 'ABSPATH' ) ) exit;
|
|
| 12 |
|
| 13 |
/**
|
| 14 |
* Compare the bbPress version to the DB version to determine if updating
|
| 15 |
-
*
|
| 16 |
* @since bbPress (r3421)
|
| 17 |
-
*
|
| 18 |
* @uses get_option()
|
|
|
|
| 19 |
* @return bool True if update, False if not
|
| 20 |
*/
|
| 21 |
function bbp_is_update() {
|
| 22 |
-
global $bbp;
|
| 23 |
|
| 24 |
// Current DB version of this site (per site in a multisite network)
|
| 25 |
-
$current_db
|
|
|
|
| 26 |
|
| 27 |
// Compare versions (cast as int and bool to be safe)
|
| 28 |
-
$is_update = (bool) ( (int) $current_db < (int) $
|
| 29 |
|
| 30 |
// Return the product of version comparison
|
| 31 |
return $is_update;
|
|
@@ -35,6 +36,7 @@ function bbp_is_update() {
|
|
| 35 |
* Determine if bbPress is being activated
|
| 36 |
*
|
| 37 |
* @since bbPress (r3421)
|
|
|
|
| 38 |
* @global bbPress $bbp
|
| 39 |
* @return bool True if activating bbPress, false if not
|
| 40 |
*/
|
|
@@ -55,8 +57,8 @@ function bbp_is_activation( $basename = '' ) {
|
|
| 55 |
// Set basename if empty
|
| 56 |
if ( empty( $basename ) && !empty( $bbp->basename ) )
|
| 57 |
$basename = $bbp->basename;
|
| 58 |
-
|
| 59 |
-
// Bail if no basename
|
| 60 |
if ( empty( $basename ) )
|
| 61 |
return false;
|
| 62 |
|
|
@@ -91,8 +93,8 @@ function bbp_is_deactivation( $basename = '' ) {
|
|
| 91 |
// Set basename if empty
|
| 92 |
if ( empty( $basename ) && !empty( $bbp->basename ) )
|
| 93 |
$basename = $bbp->basename;
|
| 94 |
-
|
| 95 |
-
// Bail if no basename
|
| 96 |
if ( empty( $basename ) )
|
| 97 |
return false;
|
| 98 |
|
|
@@ -105,14 +107,14 @@ function bbp_is_deactivation( $basename = '' ) {
|
|
| 105 |
|
| 106 |
/**
|
| 107 |
* Update the DB to the latest version
|
| 108 |
-
*
|
| 109 |
* @since bbPress (r3421)
|
| 110 |
* @uses update_option()
|
|
|
|
| 111 |
*/
|
| 112 |
function bbp_version_bump() {
|
| 113 |
-
|
| 114 |
-
|
| 115 |
-
update_option( '_bbp_db_version', $bbp->db_version );
|
| 116 |
}
|
| 117 |
|
| 118 |
/**
|
| 12 |
|
| 13 |
/**
|
| 14 |
* Compare the bbPress version to the DB version to determine if updating
|
| 15 |
+
*
|
| 16 |
* @since bbPress (r3421)
|
| 17 |
+
*
|
| 18 |
* @uses get_option()
|
| 19 |
+
* @uses bbp_get_db_version() To get bbPress's database version
|
| 20 |
* @return bool True if update, False if not
|
| 21 |
*/
|
| 22 |
function bbp_is_update() {
|
|
|
|
| 23 |
|
| 24 |
// Current DB version of this site (per site in a multisite network)
|
| 25 |
+
$current_db = get_option( '_bbp_db_version' );
|
| 26 |
+
$current_live = bbp_get_db_version();
|
| 27 |
|
| 28 |
// Compare versions (cast as int and bool to be safe)
|
| 29 |
+
$is_update = (bool) ( (int) $current_db < (int) $current_live );
|
| 30 |
|
| 31 |
// Return the product of version comparison
|
| 32 |
return $is_update;
|
| 36 |
* Determine if bbPress is being activated
|
| 37 |
*
|
| 38 |
* @since bbPress (r3421)
|
| 39 |
+
*
|
| 40 |
* @global bbPress $bbp
|
| 41 |
* @return bool True if activating bbPress, false if not
|
| 42 |
*/
|
| 57 |
// Set basename if empty
|
| 58 |
if ( empty( $basename ) && !empty( $bbp->basename ) )
|
| 59 |
$basename = $bbp->basename;
|
| 60 |
+
|
| 61 |
+
// Bail if no basename
|
| 62 |
if ( empty( $basename ) )
|
| 63 |
return false;
|
| 64 |
|
| 93 |
// Set basename if empty
|
| 94 |
if ( empty( $basename ) && !empty( $bbp->basename ) )
|
| 95 |
$basename = $bbp->basename;
|
| 96 |
+
|
| 97 |
+
// Bail if no basename
|
| 98 |
if ( empty( $basename ) )
|
| 99 |
return false;
|
| 100 |
|
| 107 |
|
| 108 |
/**
|
| 109 |
* Update the DB to the latest version
|
| 110 |
+
*
|
| 111 |
* @since bbPress (r3421)
|
| 112 |
* @uses update_option()
|
| 113 |
+
* @uses bbp_get_db_version() To get bbPress's database version
|
| 114 |
*/
|
| 115 |
function bbp_version_bump() {
|
| 116 |
+
$db_version = bbp_get_db_version();
|
| 117 |
+
update_option( '_bbp_db_version', $db_version );
|
|
|
|
| 118 |
}
|
| 119 |
|
| 120 |
/**
|
bbp-includes/bbp-core-widgets.php
CHANGED
|
@@ -66,7 +66,9 @@ class BBP_Login_Widget extends WP_Widget {
|
|
| 66 |
function widget( $args, $instance ) {
|
| 67 |
extract( $args );
|
| 68 |
|
| 69 |
-
$title
|
|
|
|
|
|
|
| 70 |
|
| 71 |
echo $before_widget;
|
| 72 |
|
|
@@ -91,7 +93,7 @@ class BBP_Login_Widget extends WP_Widget {
|
|
| 91 |
|
| 92 |
<div class="bbp-remember-me">
|
| 93 |
<input type="checkbox" name="rememberme" value="forever" <?php checked( bbp_get_sanitize_val( 'rememberme', 'checkbox' ), true, true ); ?> id="rememberme" tabindex="<?php bbp_tab_index(); ?>" />
|
| 94 |
-
<label for="rememberme"><?php _e( '
|
| 95 |
</div>
|
| 96 |
|
| 97 |
<div class="bbp-submit-wrapper">
|
|
@@ -103,6 +105,27 @@ class BBP_Login_Widget extends WP_Widget {
|
|
| 103 |
<?php bbp_user_login_fields(); ?>
|
| 104 |
|
| 105 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 106 |
</fieldset>
|
| 107 |
</form>
|
| 108 |
|
|
@@ -129,8 +152,10 @@ class BBP_Login_Widget extends WP_Widget {
|
|
| 129 |
* @param array $old_instance The old instance options
|
| 130 |
*/
|
| 131 |
function update( $new_instance, $old_instance ) {
|
| 132 |
-
$instance
|
| 133 |
-
$instance['title']
|
|
|
|
|
|
|
| 134 |
|
| 135 |
return $instance;
|
| 136 |
}
|
|
@@ -145,13 +170,29 @@ class BBP_Login_Widget extends WP_Widget {
|
|
| 145 |
* @uses BBP_Login_Widget::get_field_name() To output the field name
|
| 146 |
*/
|
| 147 |
function form( $instance ) {
|
| 148 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 149 |
|
| 150 |
<p>
|
| 151 |
<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:', 'bbpress' ); ?>
|
| 152 |
<input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo $title; ?>" /></label>
|
| 153 |
</p>
|
| 154 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 155 |
<?php
|
| 156 |
}
|
| 157 |
}
|
|
@@ -342,7 +383,7 @@ class BBP_Forums_Widget extends WP_Widget {
|
|
| 342 |
|
| 343 |
$forums_query = array(
|
| 344 |
'post_parent' => $parent_forum,
|
| 345 |
-
'posts_per_page' => get_option( '_bbp_forums_per_page',
|
| 346 |
'orderby' => 'menu_order',
|
| 347 |
'order' => 'ASC'
|
| 348 |
);
|
|
@@ -381,9 +422,14 @@ class BBP_Forums_Widget extends WP_Widget {
|
|
| 381 |
*/
|
| 382 |
function update( $new_instance, $old_instance ) {
|
| 383 |
$instance = $old_instance;
|
| 384 |
-
$instance['title'] = strip_tags( $new_instance['title']
|
| 385 |
$instance['parent_forum'] = $new_instance['parent_forum'];
|
| 386 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 387 |
return $instance;
|
| 388 |
}
|
| 389 |
|
|
@@ -398,7 +444,7 @@ class BBP_Forums_Widget extends WP_Widget {
|
|
| 398 |
*/
|
| 399 |
function form( $instance ) {
|
| 400 |
$title = !empty( $instance['title'] ) ? esc_attr( $instance['title'] ) : '';
|
| 401 |
-
$parent_forum = !empty( $instance['parent_forum'] ) ? esc_attr( $instance['parent_forum'] ) : 0; ?>
|
| 402 |
|
| 403 |
<p>
|
| 404 |
<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:', 'bbpress' ); ?>
|
|
@@ -407,13 +453,13 @@ class BBP_Forums_Widget extends WP_Widget {
|
|
| 407 |
</p>
|
| 408 |
|
| 409 |
<p>
|
| 410 |
-
<label for="<?php echo $this->get_field_id( 'parent_forum' ); ?>"><?php _e( 'Parent Forum:', 'bbpress' ); ?>
|
| 411 |
<input class="widefat" id="<?php echo $this->get_field_id( 'parent_forum' ); ?>" name="<?php echo $this->get_field_name( 'parent_forum' ); ?>" type="text" value="<?php echo $parent_forum; ?>" />
|
| 412 |
</label>
|
| 413 |
|
| 414 |
<br />
|
| 415 |
|
| 416 |
-
<small><?php _e( '
|
| 417 |
</p>
|
| 418 |
|
| 419 |
<?php
|
|
@@ -505,61 +551,65 @@ class BBP_Topics_Widget extends WP_Widget {
|
|
| 505 |
|
| 506 |
bbp_set_query_name( 'bbp_widget' );
|
| 507 |
|
| 508 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 509 |
|
| 510 |
-
|
| 511 |
-
|
| 512 |
|
| 513 |
-
|
| 514 |
|
| 515 |
-
|
| 516 |
|
| 517 |
-
|
| 518 |
-
|
| 519 |
-
|
| 520 |
|
| 521 |
-
|
| 522 |
|
| 523 |
-
|
| 524 |
|
| 525 |
-
|
| 526 |
|
| 527 |
-
|
|
|
|
| 528 |
|
| 529 |
-
|
|
|
|
| 530 |
|
| 531 |
-
|
| 532 |
-
|
|
|
|
|
|
|
| 533 |
|
| 534 |
-
|
| 535 |
-
|
| 536 |
-
$topics[bbp_get_topic_id()] = bbp_get_topic_reply_count();
|
| 537 |
-
}
|
| 538 |
|
| 539 |
-
|
| 540 |
-
$topic_count = 1;
|
| 541 |
|
| 542 |
-
|
| 543 |
|
| 544 |
-
|
| 545 |
|
| 546 |
-
|
| 547 |
|
| 548 |
-
|
| 549 |
|
| 550 |
-
|
| 551 |
|
| 552 |
-
|
|
|
|
| 553 |
|
| 554 |
-
|
| 555 |
-
break;
|
| 556 |
|
| 557 |
-
|
| 558 |
|
| 559 |
-
|
| 560 |
-
|
| 561 |
-
<?php echo $after_widget;
|
| 562 |
|
|
|
|
| 563 |
endif;
|
| 564 |
|
| 565 |
bbp_reset_query_name();
|
|
@@ -709,7 +759,7 @@ class BBP_Replies_Widget extends WP_Widget {
|
|
| 709 |
<?php
|
| 710 |
$author_link = bbp_get_reply_author_link( array( 'type' => 'both', 'size' => 14 ) );
|
| 711 |
$reply_link = '<a class="bbp-reply-topic-title" href="' . esc_url( bbp_get_reply_url() ) . '" title="' . bbp_get_reply_excerpt( bbp_get_reply_id(), 50 ) . '">' . bbp_get_reply_topic_title() . '</a>';
|
| 712 |
-
|
| 713 |
/* translators: bbpress replies widget: 1: reply author, 2: reply link, 3: reply date, 4: reply time */
|
| 714 |
printf( _x( $show_date == 'on' ? '%1$s on %2$s, %3$s, %4$s' : '%1$s on %2$s', 'widgets', 'bbpress' ), $author_link, $reply_link, get_the_date(), get_the_time() );
|
| 715 |
?>
|
| 66 |
function widget( $args, $instance ) {
|
| 67 |
extract( $args );
|
| 68 |
|
| 69 |
+
$title = apply_filters( 'bbp_login_widget_title', $instance['title'] );
|
| 70 |
+
$register = apply_filters( 'bbp_login_widget_register', $instance['register'] );
|
| 71 |
+
$lostpass = apply_filters( 'bbp_login_widget_lostpass', $instance['lostpass'] );
|
| 72 |
|
| 73 |
echo $before_widget;
|
| 74 |
|
| 93 |
|
| 94 |
<div class="bbp-remember-me">
|
| 95 |
<input type="checkbox" name="rememberme" value="forever" <?php checked( bbp_get_sanitize_val( 'rememberme', 'checkbox' ), true, true ); ?> id="rememberme" tabindex="<?php bbp_tab_index(); ?>" />
|
| 96 |
+
<label for="rememberme"><?php _e( 'Remember Me', 'bbpress' ); ?></label>
|
| 97 |
</div>
|
| 98 |
|
| 99 |
<div class="bbp-submit-wrapper">
|
| 105 |
<?php bbp_user_login_fields(); ?>
|
| 106 |
|
| 107 |
</div>
|
| 108 |
+
|
| 109 |
+
<?php if ( !empty( $register ) || !empty( $lostpass ) ) : ?>
|
| 110 |
+
|
| 111 |
+
<div class="bbp-login-links">
|
| 112 |
+
|
| 113 |
+
<?php if ( !empty( $register ) ) : ?>
|
| 114 |
+
|
| 115 |
+
<a href="<?php echo esc_url( $register ); ?>" title="<?php _e( 'Register', 'bbpress' ); ?>" class="bbp-register-link"><?php _e( 'Register', 'bbpress' ); ?></a>
|
| 116 |
+
|
| 117 |
+
<?php endif; ?>
|
| 118 |
+
|
| 119 |
+
<?php if ( !empty( $lostpass ) ) : ?>
|
| 120 |
+
|
| 121 |
+
<a href="<?php echo esc_url( $lostpass ); ?>" title="<?php _e( 'Lost Password', 'bbpress' ); ?>" class="bbp-lostpass-link"><?php _e( 'Lost Password', 'bbpress' ); ?></a>
|
| 122 |
+
|
| 123 |
+
<?php endif; ?>
|
| 124 |
+
|
| 125 |
+
</div>
|
| 126 |
+
|
| 127 |
+
<?php endif; ?>
|
| 128 |
+
|
| 129 |
</fieldset>
|
| 130 |
</form>
|
| 131 |
|
| 152 |
* @param array $old_instance The old instance options
|
| 153 |
*/
|
| 154 |
function update( $new_instance, $old_instance ) {
|
| 155 |
+
$instance = $old_instance;
|
| 156 |
+
$instance['title'] = strip_tags( $new_instance['title'] );
|
| 157 |
+
$instance['register'] = esc_url( $new_instance['register'] );
|
| 158 |
+
$instance['lostpass'] = esc_url( $new_instance['lostpass'] );
|
| 159 |
|
| 160 |
return $instance;
|
| 161 |
}
|
| 170 |
* @uses BBP_Login_Widget::get_field_name() To output the field name
|
| 171 |
*/
|
| 172 |
function form( $instance ) {
|
| 173 |
+
|
| 174 |
+
// Form values
|
| 175 |
+
$title = !empty( $instance['title'] ) ? esc_attr( $instance['title'] ) : '';
|
| 176 |
+
$register = !empty( $instance['register'] ) ? esc_attr( $instance['register'] ) : '';
|
| 177 |
+
$lostpass = !empty( $instance['lostpass'] ) ? esc_attr( $instance['lostpass'] ) : '';
|
| 178 |
+
|
| 179 |
+
?>
|
| 180 |
|
| 181 |
<p>
|
| 182 |
<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:', 'bbpress' ); ?>
|
| 183 |
<input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo $title; ?>" /></label>
|
| 184 |
</p>
|
| 185 |
|
| 186 |
+
<p>
|
| 187 |
+
<label for="<?php echo $this->get_field_id( 'register' ); ?>"><?php _e( 'Register URI:', 'bbpress' ); ?>
|
| 188 |
+
<input class="widefat" id="<?php echo $this->get_field_id( 'register' ); ?>" name="<?php echo $this->get_field_name( 'register' ); ?>" type="text" value="<?php echo $register; ?>" /></label>
|
| 189 |
+
</p>
|
| 190 |
+
|
| 191 |
+
<p>
|
| 192 |
+
<label for="<?php echo $this->get_field_id( 'lostpass' ); ?>"><?php _e( 'Lost Password URI:', 'bbpress' ); ?>
|
| 193 |
+
<input class="widefat" id="<?php echo $this->get_field_id( 'lostpass' ); ?>" name="<?php echo $this->get_field_name( 'lostpass' ); ?>" type="text" value="<?php echo $lostpass; ?>" /></label>
|
| 194 |
+
</p>
|
| 195 |
+
|
| 196 |
<?php
|
| 197 |
}
|
| 198 |
}
|
| 383 |
|
| 384 |
$forums_query = array(
|
| 385 |
'post_parent' => $parent_forum,
|
| 386 |
+
'posts_per_page' => get_option( '_bbp_forums_per_page', 50 ),
|
| 387 |
'orderby' => 'menu_order',
|
| 388 |
'order' => 'ASC'
|
| 389 |
);
|
| 422 |
*/
|
| 423 |
function update( $new_instance, $old_instance ) {
|
| 424 |
$instance = $old_instance;
|
| 425 |
+
$instance['title'] = strip_tags( $new_instance['title'] );
|
| 426 |
$instance['parent_forum'] = $new_instance['parent_forum'];
|
| 427 |
|
| 428 |
+
// Force to any
|
| 429 |
+
if ( !empty( $instance['parent_forum'] ) && !is_numeric( $instance['parent_forum'] ) ) {
|
| 430 |
+
$instance['parent_forum'] = 'any';
|
| 431 |
+
}
|
| 432 |
+
|
| 433 |
return $instance;
|
| 434 |
}
|
| 435 |
|
| 444 |
*/
|
| 445 |
function form( $instance ) {
|
| 446 |
$title = !empty( $instance['title'] ) ? esc_attr( $instance['title'] ) : '';
|
| 447 |
+
$parent_forum = !empty( $instance['parent_forum'] ) ? esc_attr( $instance['parent_forum'] ) : '0'; ?>
|
| 448 |
|
| 449 |
<p>
|
| 450 |
<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:', 'bbpress' ); ?>
|
| 453 |
</p>
|
| 454 |
|
| 455 |
<p>
|
| 456 |
+
<label for="<?php echo $this->get_field_id( 'parent_forum' ); ?>"><?php _e( 'Parent Forum ID:', 'bbpress' ); ?>
|
| 457 |
<input class="widefat" id="<?php echo $this->get_field_id( 'parent_forum' ); ?>" name="<?php echo $this->get_field_name( 'parent_forum' ); ?>" type="text" value="<?php echo $parent_forum; ?>" />
|
| 458 |
</label>
|
| 459 |
|
| 460 |
<br />
|
| 461 |
|
| 462 |
+
<small><?php _e( '"0" to show only root - "any" to show all', 'bbpress' ); ?></small>
|
| 463 |
</p>
|
| 464 |
|
| 465 |
<?php
|
| 551 |
|
| 552 |
bbp_set_query_name( 'bbp_widget' );
|
| 553 |
|
| 554 |
+
// Topics exist
|
| 555 |
+
if ( bbp_has_topics( $topics_query ) ) :
|
| 556 |
+
|
| 557 |
+
// Sort by time
|
| 558 |
+
if ( $pop_check < $max_shown ) :
|
| 559 |
|
| 560 |
+
echo $before_widget;
|
| 561 |
+
echo $before_title . $title . $after_title; ?>
|
| 562 |
|
| 563 |
+
<ul>
|
| 564 |
|
| 565 |
+
<?php while ( bbp_topics() ) : bbp_the_topic(); ?>
|
| 566 |
|
| 567 |
+
<li>
|
| 568 |
+
<a class="bbp-forum-title" href="<?php bbp_topic_permalink(); ?>" title="<?php bbp_topic_title(); ?>"><?php bbp_topic_title(); ?></a><?php if ( $show_date == 'on' ) _e( ', ' . bbp_get_topic_last_active_time() . ' ago' ); ?>
|
| 569 |
+
</li>
|
| 570 |
|
| 571 |
+
<?php endwhile; ?>
|
| 572 |
|
| 573 |
+
</ul>
|
| 574 |
|
| 575 |
+
<?php echo $after_widget;
|
| 576 |
|
| 577 |
+
// Sort by popularity
|
| 578 |
+
elseif ( $pop_check >= $max_shown ) :
|
| 579 |
|
| 580 |
+
echo $before_widget;
|
| 581 |
+
echo $before_title . $title . $after_title;
|
| 582 |
|
| 583 |
+
while ( bbp_topics() ) {
|
| 584 |
+
bbp_the_topic();
|
| 585 |
+
$topics[bbp_get_topic_id()] = bbp_get_topic_reply_count();
|
| 586 |
+
}
|
| 587 |
|
| 588 |
+
arsort( $topics );
|
| 589 |
+
$topic_count = 1;
|
|
|
|
|
|
|
| 590 |
|
| 591 |
+
?>
|
|
|
|
| 592 |
|
| 593 |
+
<ul>
|
| 594 |
|
| 595 |
+
<?php foreach ( $topics as $topic_id => $topic_reply_count ) : ?>
|
| 596 |
|
| 597 |
+
<li><a class="bbp-topic-title" href="<?php bbp_topic_permalink( $topic_id ); ?>" title="<?php bbp_topic_title( $topic_id ); ?>"><?php bbp_topic_title( $topic_id ); ?></a><?php if ( $show_date == 'on' ) _e( ', ' . bbp_get_topic_last_active_time( $topic_id ) . ' ago' ); ?></li>
|
| 598 |
|
| 599 |
+
<?php
|
| 600 |
|
| 601 |
+
$topic_count++;
|
| 602 |
|
| 603 |
+
if ( $topic_count > $max_shown )
|
| 604 |
+
break;
|
| 605 |
|
| 606 |
+
endforeach; ?>
|
|
|
|
| 607 |
|
| 608 |
+
</ul>
|
| 609 |
|
| 610 |
+
<?php echo $after_widget;
|
|
|
|
|
|
|
| 611 |
|
| 612 |
+
endif;
|
| 613 |
endif;
|
| 614 |
|
| 615 |
bbp_reset_query_name();
|
| 759 |
<?php
|
| 760 |
$author_link = bbp_get_reply_author_link( array( 'type' => 'both', 'size' => 14 ) );
|
| 761 |
$reply_link = '<a class="bbp-reply-topic-title" href="' . esc_url( bbp_get_reply_url() ) . '" title="' . bbp_get_reply_excerpt( bbp_get_reply_id(), 50 ) . '">' . bbp_get_reply_topic_title() . '</a>';
|
| 762 |
+
|
| 763 |
/* translators: bbpress replies widget: 1: reply author, 2: reply link, 3: reply date, 4: reply time */
|
| 764 |
printf( _x( $show_date == 'on' ? '%1$s on %2$s, %3$s, %4$s' : '%1$s on %2$s', 'widgets', 'bbpress' ), $author_link, $reply_link, get_the_date(), get_the_time() );
|
| 765 |
?>
|
bbp-includes/bbp-extend-akismet.php
CHANGED
|
@@ -28,7 +28,7 @@ class BBP_Akismet {
|
|
| 28 |
*
|
| 29 |
* @uses add_filter()
|
| 30 |
*/
|
| 31 |
-
function __construct() {
|
| 32 |
$this->setup_actions();
|
| 33 |
}
|
| 34 |
|
|
@@ -41,7 +41,7 @@ class BBP_Akismet {
|
|
| 41 |
* @uses add_filter() To add various filters
|
| 42 |
* @uses add_action() To add various actions
|
| 43 |
*/
|
| 44 |
-
function setup_actions() {
|
| 45 |
|
| 46 |
// bbPress functions to check for spam
|
| 47 |
$checks['check'] = array(
|
|
@@ -86,7 +86,7 @@ class BBP_Akismet {
|
|
| 86 |
*
|
| 87 |
* @return array Array of post data
|
| 88 |
*/
|
| 89 |
-
function check_post( $post_data ) {
|
| 90 |
global $bbp;
|
| 91 |
|
| 92 |
// Post is not published
|
|
@@ -179,7 +179,7 @@ class BBP_Akismet {
|
|
| 179 |
*
|
| 180 |
* @return array Array of existing topic terms
|
| 181 |
*/
|
| 182 |
-
function submit_post( $post_id = 0 ) {
|
| 183 |
global $bbp, $wpdb, $akismet_api_host, $akismet_api_port, $current_user, $current_site;
|
| 184 |
|
| 185 |
switch ( current_filter() ) {
|
|
@@ -195,7 +195,7 @@ class BBP_Akismet {
|
|
| 195 |
case 'bbp_unspammed_reply' :
|
| 196 |
$request_type = 'ham';
|
| 197 |
break;
|
| 198 |
-
|
| 199 |
// Possibly poison...
|
| 200 |
default :
|
| 201 |
return;
|
|
@@ -269,9 +269,9 @@ class BBP_Akismet {
|
|
| 269 |
|
| 270 |
// @todo Topic term revision history
|
| 271 |
break;
|
| 272 |
-
|
| 273 |
// Possible other actions
|
| 274 |
-
default :
|
| 275 |
break;
|
| 276 |
}
|
| 277 |
}
|
|
@@ -296,7 +296,7 @@ class BBP_Akismet {
|
|
| 296 |
*
|
| 297 |
* @return array Array of post data
|
| 298 |
*/
|
| 299 |
-
function maybe_spam( $post_data, $check = 'check', $spam = 'spam' ) {
|
| 300 |
global $akismet_api_host, $akismet_api_port;
|
| 301 |
|
| 302 |
// Define variables
|
|
@@ -345,7 +345,7 @@ class BBP_Akismet {
|
|
| 345 |
$path = '/1.1/submit-' . $spam;
|
| 346 |
|
| 347 |
// Fire!
|
| 348 |
-
$response =
|
| 349 |
|
| 350 |
// Check the high-speed cam
|
| 351 |
$post_data['bbp_akismet_result'] = $response[1];
|
|
@@ -371,7 +371,7 @@ class BBP_Akismet {
|
|
| 371 |
* @uses update_post_meta() To update post meta with Akismet data
|
| 372 |
* @uses BBP_Akismet::update_post_history() To update post Akismet history
|
| 373 |
*/
|
| 374 |
-
function update_post_meta( $post_id = 0, $post ) {
|
| 375 |
global $bbp;
|
| 376 |
|
| 377 |
// Define local variable(s)
|
|
@@ -395,7 +395,7 @@ class BBP_Akismet {
|
|
| 395 |
// wp_insert_post() might be called in other contexts. Make sure this is
|
| 396 |
// the same topic/reply as was checked by BBP_Akismet::check_post()
|
| 397 |
if ( is_object( $post ) && !empty( $this->last_post ) && is_array( $as_submitted ) ) {
|
| 398 |
-
|
| 399 |
// More checks
|
| 400 |
if ( intval( $as_submitted['comment_post_ID'] ) == intval( $post->post_parent )
|
| 401 |
&& $as_submitted['comment_author'] == ( $anonymous_data ? $anonymous_data['bbp_anonymous_name'] : $userdata->display_name )
|
|
@@ -410,8 +410,9 @@ class BBP_Akismet {
|
|
| 410 |
$this->update_post_history( $post_id, __( 'Akismet caught this post as spam', 'bbpress' ), 'check-spam' );
|
| 411 |
|
| 412 |
// If post_status isn't the spam status, as expected, leave a note
|
| 413 |
-
if ( $post->post_status != $bbp->spam_status_id )
|
| 414 |
$this->update_post_history( $post_id, sprintf( __( 'Post status was changed to %s', 'bbpress' ), $post->post_status ), 'status-changed-' . $post->post_status );
|
|
|
|
| 415 |
|
| 416 |
// Normal result: false
|
| 417 |
} elseif ( $this->last_post['bbp_akismet_result'] == 'false' ) {
|
|
@@ -436,8 +437,9 @@ class BBP_Akismet {
|
|
| 436 |
}
|
| 437 |
|
| 438 |
// Record the complete original data as submitted for checking
|
| 439 |
-
if ( isset( $this->last_post['bbp_post_as_submitted'] ) )
|
| 440 |
update_post_meta( $post_id, '_bbp_akismet_as_submitted', $this->last_post['bbp_post_as_submitted'] );
|
|
|
|
| 441 |
}
|
| 442 |
}
|
| 443 |
}
|
|
@@ -454,7 +456,7 @@ class BBP_Akismet {
|
|
| 454 |
* @uses wp_get_current_user() To get the current_user object
|
| 455 |
* @uses add_post_meta() Add Akismet post history
|
| 456 |
*/
|
| 457 |
-
function update_post_history( $post_id = 0, $message = null, $event = null ) {
|
| 458 |
|
| 459 |
// Define local variable(s)
|
| 460 |
$user = '';
|
|
@@ -490,7 +492,7 @@ class BBP_Akismet {
|
|
| 490 |
*
|
| 491 |
* @return array Array of a post's Akismet history
|
| 492 |
*/
|
| 493 |
-
function get_post_history( $post_id = 0 ) {
|
| 494 |
|
| 495 |
// Retrieve any previous history
|
| 496 |
$history = get_post_meta( $post_id, '_bbp_akismet_history' );
|
|
@@ -519,7 +521,7 @@ class BBP_Akismet {
|
|
| 519 |
*
|
| 520 |
* @return array Array of existing topic terms
|
| 521 |
*/
|
| 522 |
-
function filter_post_terms( $terms = '', $topic_id = 0, $reply_id = 0 ) {
|
| 523 |
global $bbp;
|
| 524 |
|
| 525 |
// Validate the reply_id and topic_id
|
|
@@ -537,6 +539,102 @@ class BBP_Akismet {
|
|
| 537 |
return $existing_terms;
|
| 538 |
}
|
| 539 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 540 |
}
|
| 541 |
endif;
|
| 542 |
|
| 28 |
*
|
| 29 |
* @uses add_filter()
|
| 30 |
*/
|
| 31 |
+
public function __construct() {
|
| 32 |
$this->setup_actions();
|
| 33 |
}
|
| 34 |
|
| 41 |
* @uses add_filter() To add various filters
|
| 42 |
* @uses add_action() To add various actions
|
| 43 |
*/
|
| 44 |
+
private function setup_actions() {
|
| 45 |
|
| 46 |
// bbPress functions to check for spam
|
| 47 |
$checks['check'] = array(
|
| 86 |
*
|
| 87 |
* @return array Array of post data
|
| 88 |
*/
|
| 89 |
+
public function check_post( $post_data ) {
|
| 90 |
global $bbp;
|
| 91 |
|
| 92 |
// Post is not published
|
| 179 |
*
|
| 180 |
* @return array Array of existing topic terms
|
| 181 |
*/
|
| 182 |
+
public function submit_post( $post_id = 0 ) {
|
| 183 |
global $bbp, $wpdb, $akismet_api_host, $akismet_api_port, $current_user, $current_site;
|
| 184 |
|
| 185 |
switch ( current_filter() ) {
|
| 195 |
case 'bbp_unspammed_reply' :
|
| 196 |
$request_type = 'ham';
|
| 197 |
break;
|
| 198 |
+
|
| 199 |
// Possibly poison...
|
| 200 |
default :
|
| 201 |
return;
|
| 269 |
|
| 270 |
// @todo Topic term revision history
|
| 271 |
break;
|
| 272 |
+
|
| 273 |
// Possible other actions
|
| 274 |
+
default :
|
| 275 |
break;
|
| 276 |
}
|
| 277 |
}
|
| 296 |
*
|
| 297 |
* @return array Array of post data
|
| 298 |
*/
|
| 299 |
+
private function maybe_spam( $post_data, $check = 'check', $spam = 'spam' ) {
|
| 300 |
global $akismet_api_host, $akismet_api_port;
|
| 301 |
|
| 302 |
// Define variables
|
| 345 |
$path = '/1.1/submit-' . $spam;
|
| 346 |
|
| 347 |
// Fire!
|
| 348 |
+
$response = $this->http_post( $query_string, $akismet_api_host, $path, $akismet_api_port );
|
| 349 |
|
| 350 |
// Check the high-speed cam
|
| 351 |
$post_data['bbp_akismet_result'] = $response[1];
|
| 371 |
* @uses update_post_meta() To update post meta with Akismet data
|
| 372 |
* @uses BBP_Akismet::update_post_history() To update post Akismet history
|
| 373 |
*/
|
| 374 |
+
public function update_post_meta( $post_id = 0, $post = false ) {
|
| 375 |
global $bbp;
|
| 376 |
|
| 377 |
// Define local variable(s)
|
| 395 |
// wp_insert_post() might be called in other contexts. Make sure this is
|
| 396 |
// the same topic/reply as was checked by BBP_Akismet::check_post()
|
| 397 |
if ( is_object( $post ) && !empty( $this->last_post ) && is_array( $as_submitted ) ) {
|
| 398 |
+
|
| 399 |
// More checks
|
| 400 |
if ( intval( $as_submitted['comment_post_ID'] ) == intval( $post->post_parent )
|
| 401 |
&& $as_submitted['comment_author'] == ( $anonymous_data ? $anonymous_data['bbp_anonymous_name'] : $userdata->display_name )
|
| 410 |
$this->update_post_history( $post_id, __( 'Akismet caught this post as spam', 'bbpress' ), 'check-spam' );
|
| 411 |
|
| 412 |
// If post_status isn't the spam status, as expected, leave a note
|
| 413 |
+
if ( $post->post_status != $bbp->spam_status_id ) {
|
| 414 |
$this->update_post_history( $post_id, sprintf( __( 'Post status was changed to %s', 'bbpress' ), $post->post_status ), 'status-changed-' . $post->post_status );
|
| 415 |
+
}
|
| 416 |
|
| 417 |
// Normal result: false
|
| 418 |
} elseif ( $this->last_post['bbp_akismet_result'] == 'false' ) {
|
| 437 |
}
|
| 438 |
|
| 439 |
// Record the complete original data as submitted for checking
|
| 440 |
+
if ( isset( $this->last_post['bbp_post_as_submitted'] ) ) {
|
| 441 |
update_post_meta( $post_id, '_bbp_akismet_as_submitted', $this->last_post['bbp_post_as_submitted'] );
|
| 442 |
+
}
|
| 443 |
}
|
| 444 |
}
|
| 445 |
}
|
| 456 |
* @uses wp_get_current_user() To get the current_user object
|
| 457 |
* @uses add_post_meta() Add Akismet post history
|
| 458 |
*/
|
| 459 |
+
private function update_post_history( $post_id = 0, $message = null, $event = null ) {
|
| 460 |
|
| 461 |
// Define local variable(s)
|
| 462 |
$user = '';
|
| 492 |
*
|
| 493 |
* @return array Array of a post's Akismet history
|
| 494 |
*/
|
| 495 |
+
public function get_post_history( $post_id = 0 ) {
|
| 496 |
|
| 497 |
// Retrieve any previous history
|
| 498 |
$history = get_post_meta( $post_id, '_bbp_akismet_history' );
|
| 521 |
*
|
| 522 |
* @return array Array of existing topic terms
|
| 523 |
*/
|
| 524 |
+
public function filter_post_terms( $terms = '', $topic_id = 0, $reply_id = 0 ) {
|
| 525 |
global $bbp;
|
| 526 |
|
| 527 |
// Validate the reply_id and topic_id
|
| 539 |
return $existing_terms;
|
| 540 |
}
|
| 541 |
|
| 542 |
+
/**
|
| 543 |
+
* Submit data to Akismet service with unique bbPress User Agent
|
| 544 |
+
*
|
| 545 |
+
* This code is directly taken from the akismet_http_post() function and
|
| 546 |
+
* documented to bbPress 2.0 standard.
|
| 547 |
+
*
|
| 548 |
+
* @since bbPress (r3466)
|
| 549 |
+
*
|
| 550 |
+
* @param string $request The request we are sending
|
| 551 |
+
* @param string $host The host to send our request to
|
| 552 |
+
* @param string $path The path from the host
|
| 553 |
+
* @param string $port The port to use
|
| 554 |
+
* @param string $ip Optional Override $host with an IP address
|
| 555 |
+
* @uses bbp_get_version() To get the current bbPress version
|
| 556 |
+
* @return mixed WP_Error on error, array on success, empty on failure
|
| 557 |
+
*/
|
| 558 |
+
private function http_post( $request, $host, $path, $port = 80, $ip = '' ) {
|
| 559 |
+
|
| 560 |
+
// Preload required variables
|
| 561 |
+
$bbp_version = bbp_get_version();
|
| 562 |
+
$content_length = strlen( $request );
|
| 563 |
+
$http_host = $host;
|
| 564 |
+
$blog_charset = get_option( 'blog_charset' );
|
| 565 |
+
$response = '';
|
| 566 |
+
|
| 567 |
+
// Untque User Agent
|
| 568 |
+
$akismet_ua = "bbPress/{$bbp_version} | ";
|
| 569 |
+
$akismet_ua .= 'Akismet/' . constant( 'AKISMET_VERSION' );
|
| 570 |
+
|
| 571 |
+
// Use specific IP (if provided)
|
| 572 |
+
if ( !empty( $ip ) && long2ip( ip2long( $ip ) ) )
|
| 573 |
+
$http_host = $ip;
|
| 574 |
+
|
| 575 |
+
// WP HTTP class is available
|
| 576 |
+
if ( function_exists( 'wp_remote_post' ) ) {
|
| 577 |
+
|
| 578 |
+
// Setup the arguments
|
| 579 |
+
$http_args = array(
|
| 580 |
+
'body' => $request,
|
| 581 |
+
'headers' => array(
|
| 582 |
+
'Content-Type' => 'application/x-www-form-urlencoded; charset=' . $blog_charset,
|
| 583 |
+
'Host' => $host,
|
| 584 |
+
'User-Agent' => $akismet_ua
|
| 585 |
+
),
|
| 586 |
+
'httpversion' => '1.0',
|
| 587 |
+
'timeout' => 15
|
| 588 |
+
);
|
| 589 |
+
|
| 590 |
+
// Where we are sending our request
|
| 591 |
+
$akismet_url = 'http://' . $http_host . $path;
|
| 592 |
+
|
| 593 |
+
// Send the request
|
| 594 |
+
$response = wp_remote_post( $akismet_url, $http_args );
|
| 595 |
+
|
| 596 |
+
// Bail if the response is an error
|
| 597 |
+
if ( is_wp_error( $response ) )
|
| 598 |
+
return '';
|
| 599 |
+
|
| 600 |
+
// No errors so return response
|
| 601 |
+
return array( $response['headers'], $response['body'] );
|
| 602 |
+
|
| 603 |
+
// WP HTTP class is not available (Why not?)
|
| 604 |
+
} else {
|
| 605 |
+
|
| 606 |
+
// Header info to use with our socket
|
| 607 |
+
$http_request = "POST {$path} HTTP/1.0\r\n";
|
| 608 |
+
$http_request .= "Host: {$host}\r\n";
|
| 609 |
+
$http_request .= "Content-Type: application/x-www-form-urlencoded; charset={$blog_charset}\r\n";
|
| 610 |
+
$http_request .= "Content-Length: {$content_length}\r\n";
|
| 611 |
+
$http_request .= "User-Agent: {$akismet_ua}\r\n";
|
| 612 |
+
$http_request .= "\r\n";
|
| 613 |
+
$http_request .= $request;
|
| 614 |
+
|
| 615 |
+
// Open a socket connection
|
| 616 |
+
if ( false != ( $fs = @fsockopen( $http_host, $port, $errno, $errstr, 10 ) ) ) {
|
| 617 |
+
|
| 618 |
+
// Write our request to the pointer
|
| 619 |
+
fwrite( $fs, $http_request );
|
| 620 |
+
|
| 621 |
+
// Loop through pointer and compile a response
|
| 622 |
+
while ( !feof( $fs ) ) {
|
| 623 |
+
// One TCP-IP packet at a time
|
| 624 |
+
$response .= fgets( $fs, 1160 );
|
| 625 |
+
}
|
| 626 |
+
|
| 627 |
+
// Close our socket
|
| 628 |
+
fclose( $fs );
|
| 629 |
+
|
| 630 |
+
// Explode the response into usable data
|
| 631 |
+
$response = explode( "\r\n\r\n", $response, 2 );
|
| 632 |
+
}
|
| 633 |
+
|
| 634 |
+
// Return the response ('' if error/empty)
|
| 635 |
+
return $response;
|
| 636 |
+
}
|
| 637 |
+
}
|
| 638 |
}
|
| 639 |
endif;
|
| 640 |
|
bbp-includes/bbp-extend-buddypress.php
CHANGED
|
@@ -141,7 +141,7 @@ class BBP_BuddyPress {
|
|
| 141 |
// Hook into reply creation
|
| 142 |
add_action( 'bbp_new_reply', array( $this, 'reply_create' ), 10, 5 );
|
| 143 |
}
|
| 144 |
-
|
| 145 |
/**
|
| 146 |
* Setup the filters
|
| 147 |
*
|
|
@@ -165,8 +165,56 @@ class BBP_BuddyPress {
|
|
| 165 |
|
| 166 |
// Override bbPress user profile URL with BuddyPress profile URL
|
| 167 |
add_filter( 'bbp_pre_get_user_profile_url', array( $this, 'user_profile_url' ) );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 168 |
}
|
| 169 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 170 |
/**
|
| 171 |
* Register our activity actions with BuddyPress
|
| 172 |
*
|
|
@@ -246,7 +294,7 @@ class BBP_BuddyPress {
|
|
| 246 |
// Bail if activity is not active
|
| 247 |
if ( !bp_is_active( 'activity' ) )
|
| 248 |
return;
|
| 249 |
-
|
| 250 |
// Default activity args
|
| 251 |
$defaults = array(
|
| 252 |
'item_id' => false,
|
|
@@ -265,7 +313,7 @@ class BBP_BuddyPress {
|
|
| 265 |
// Delete the activity
|
| 266 |
bp_activity_delete_by_item_id( $activity );
|
| 267 |
}
|
| 268 |
-
|
| 269 |
/**
|
| 270 |
* Maybe disable activity stream comments on select actions
|
| 271 |
*
|
|
@@ -275,7 +323,7 @@ class BBP_BuddyPress {
|
|
| 275 |
* @global BuddyPress $bp
|
| 276 |
* @param boolean $can_comment
|
| 277 |
* @uses bp_get_activity_action_name()
|
| 278 |
-
* @return boolean
|
| 279 |
*/
|
| 280 |
public function activity_can_comment( $can_comment = true ) {
|
| 281 |
global $activities_template, $bp;
|
|
@@ -286,7 +334,7 @@ class BBP_BuddyPress {
|
|
| 286 |
|
| 287 |
// Check if blog & forum activity stream commenting is off
|
| 288 |
if ( ( false === $activities_template->disable_blogforum_replies ) || (int) $activities_template->disable_blogforum_replies ) {
|
| 289 |
-
|
| 290 |
// Get the current action name
|
| 291 |
$action_name = bp_get_activity_action_name();
|
| 292 |
|
|
@@ -333,7 +381,7 @@ class BBP_BuddyPress {
|
|
| 333 |
|
| 334 |
/**
|
| 335 |
* Override bbPress profile URL with BuddyPress profile URL
|
| 336 |
-
*
|
| 337 |
* @since bbPress (r3401)
|
| 338 |
*
|
| 339 |
* @param string $url
|
|
@@ -480,7 +528,7 @@ class BBP_BuddyPress {
|
|
| 480 |
|
| 481 |
// Setup links for activity stream
|
| 482 |
$user_link = bbp_get_user_profile_link( $user_id );
|
| 483 |
-
|
| 484 |
// Reply
|
| 485 |
$reply_url = bbp_get_reply_url ( $reply_id );
|
| 486 |
$reply_content = bbp_get_reply_content( $reply_id );
|
|
@@ -518,7 +566,7 @@ class BBP_BuddyPress {
|
|
| 518 |
if ( !empty( $activity_id ) ) {
|
| 519 |
update_post_meta( $reply_id, '_bbp_activity_id', $activity_id );
|
| 520 |
}
|
| 521 |
-
}
|
| 522 |
}
|
| 523 |
endif;
|
| 524 |
|
|
@@ -531,10 +579,10 @@ endif;
|
|
| 531 |
* @return If bbPress is not active
|
| 532 |
*/
|
| 533 |
function bbp_setup_buddypress() {
|
| 534 |
-
global $bbp;
|
| 535 |
|
| 536 |
// Bail if no BuddyPress
|
| 537 |
-
if ( !defined( 'BP_VERSION' ) ) return;
|
| 538 |
|
| 539 |
// Instantiate BuddyPress for bbPress
|
| 540 |
$bbp->extend->buddypress = new BBP_BuddyPress();
|
| 141 |
// Hook into reply creation
|
| 142 |
add_action( 'bbp_new_reply', array( $this, 'reply_create' ), 10, 5 );
|
| 143 |
}
|
| 144 |
+
|
| 145 |
/**
|
| 146 |
* Setup the filters
|
| 147 |
*
|
| 165 |
|
| 166 |
// Override bbPress user profile URL with BuddyPress profile URL
|
| 167 |
add_filter( 'bbp_pre_get_user_profile_url', array( $this, 'user_profile_url' ) );
|
| 168 |
+
|
| 169 |
+
/** Mentions **********************************************************/
|
| 170 |
+
|
| 171 |
+
// Only link mentions if activity component is active
|
| 172 |
+
if ( bp_is_active( 'activity' ) ) {
|
| 173 |
+
|
| 174 |
+
// Convert mentions into links on create
|
| 175 |
+
add_filter( 'bbp_new_topic_pre_content', 'bp_activity_at_name_filter' );
|
| 176 |
+
add_filter( 'bbp_new_reply_pre_content', 'bp_activity_at_name_filter' );
|
| 177 |
+
|
| 178 |
+
// Convert mentions into links on edit
|
| 179 |
+
add_filter( 'bbp_edit_topic_pre_content', 'bp_activity_at_name_filter' );
|
| 180 |
+
add_filter( 'bbp_edit_reply_pre_content', 'bp_activity_at_name_filter' );
|
| 181 |
+
}
|
| 182 |
+
|
| 183 |
+
// Revert links into text on edit
|
| 184 |
+
add_filter( 'bbp_get_form_topic_content', array( $this, 'strip_mentions_on_edit' ) );
|
| 185 |
+
add_filter( 'bbp_get_form_reply_content', array( $this, 'strip_mentions_on_edit' ) );
|
| 186 |
}
|
| 187 |
+
|
| 188 |
+
/**
|
| 189 |
+
* Strip out BuddyPress activity at-name HTML on topic/reply edit
|
| 190 |
+
*
|
| 191 |
+
* Copied from bp_forums_strip_mentions_on_post_edit() in case forums
|
| 192 |
+
* component is not active or is not loaded in yet.
|
| 193 |
+
*
|
| 194 |
+
* @since bbPress (r3475)
|
| 195 |
+
*
|
| 196 |
+
* @param type $content Optional
|
| 197 |
+
* @uses bp_get_root_domain()
|
| 198 |
+
* @uses bp_get_members_root_slug()
|
| 199 |
+
* @return string
|
| 200 |
+
*/
|
| 201 |
+
public function strip_mentions_on_edit( $content = '' ) {
|
| 202 |
+
|
| 203 |
+
// Backwards compat for members root slug
|
| 204 |
+
if ( function_exists( 'bp_get_members_root_slug' ) )
|
| 205 |
+
$members_root = bp_get_members_root_slug();
|
| 206 |
+
elseif ( defined( 'BP_MEMBERS_SLUG' ) )
|
| 207 |
+
$members_root = BP_MEMBERS_SLUG;
|
| 208 |
+
else
|
| 209 |
+
$members_root = 'members';
|
| 210 |
+
|
| 211 |
+
$content = htmlspecialchars_decode( $content );
|
| 212 |
+
$pattern = "|<a href='" . bp_get_root_domain() . "/" . $members_root . "/[A-Za-z0-9-_\.]+/' rel='nofollow'>(@[A-Za-z0-9-_\.@]+)</a>|";
|
| 213 |
+
$content = preg_replace( $pattern, "$1", $content );
|
| 214 |
+
|
| 215 |
+
return $content;
|
| 216 |
+
}
|
| 217 |
+
|
| 218 |
/**
|
| 219 |
* Register our activity actions with BuddyPress
|
| 220 |
*
|
| 294 |
// Bail if activity is not active
|
| 295 |
if ( !bp_is_active( 'activity' ) )
|
| 296 |
return;
|
| 297 |
+
|
| 298 |
// Default activity args
|
| 299 |
$defaults = array(
|
| 300 |
'item_id' => false,
|
| 313 |
// Delete the activity
|
| 314 |
bp_activity_delete_by_item_id( $activity );
|
| 315 |
}
|
| 316 |
+
|
| 317 |
/**
|
| 318 |
* Maybe disable activity stream comments on select actions
|
| 319 |
*
|
| 323 |
* @global BuddyPress $bp
|
| 324 |
* @param boolean $can_comment
|
| 325 |
* @uses bp_get_activity_action_name()
|
| 326 |
+
* @return boolean
|
| 327 |
*/
|
| 328 |
public function activity_can_comment( $can_comment = true ) {
|
| 329 |
global $activities_template, $bp;
|
| 334 |
|
| 335 |
// Check if blog & forum activity stream commenting is off
|
| 336 |
if ( ( false === $activities_template->disable_blogforum_replies ) || (int) $activities_template->disable_blogforum_replies ) {
|
| 337 |
+
|
| 338 |
// Get the current action name
|
| 339 |
$action_name = bp_get_activity_action_name();
|
| 340 |
|
| 381 |
|
| 382 |
/**
|
| 383 |
* Override bbPress profile URL with BuddyPress profile URL
|
| 384 |
+
*
|
| 385 |
* @since bbPress (r3401)
|
| 386 |
*
|
| 387 |
* @param string $url
|
| 528 |
|
| 529 |
// Setup links for activity stream
|
| 530 |
$user_link = bbp_get_user_profile_link( $user_id );
|
| 531 |
+
|
| 532 |
// Reply
|
| 533 |
$reply_url = bbp_get_reply_url ( $reply_id );
|
| 534 |
$reply_content = bbp_get_reply_content( $reply_id );
|
| 566 |
if ( !empty( $activity_id ) ) {
|
| 567 |
update_post_meta( $reply_id, '_bbp_activity_id', $activity_id );
|
| 568 |
}
|
| 569 |
+
}
|
| 570 |
}
|
| 571 |
endif;
|
| 572 |
|
| 579 |
* @return If bbPress is not active
|
| 580 |
*/
|
| 581 |
function bbp_setup_buddypress() {
|
| 582 |
+
global $bbp, $bp;
|
| 583 |
|
| 584 |
// Bail if no BuddyPress
|
| 585 |
+
if ( !empty( $bp->maintenance_mode ) || !defined( 'BP_VERSION' ) ) return;
|
| 586 |
|
| 587 |
// Instantiate BuddyPress for bbPress
|
| 588 |
$bbp->extend->buddypress = new BBP_BuddyPress();
|
bbp-includes/bbp-forum-functions.php
CHANGED
|
@@ -837,17 +837,17 @@ function bbp_exclude_forum_ids( $type = 'string' ) {
|
|
| 837 |
if ( !empty( $forum_ids ) ) {
|
| 838 |
|
| 839 |
switch ( $type ) {
|
| 840 |
-
|
| 841 |
// Separate forum ID's into a comma separated string
|
| 842 |
case 'string' :
|
| 843 |
$retval = implode( ',', $forum_ids );
|
| 844 |
break;
|
| 845 |
-
|
| 846 |
// Use forum_ids array
|
| 847 |
case 'array' :
|
| 848 |
$retval = $forum_ids;
|
| 849 |
break;
|
| 850 |
-
|
| 851 |
// Build a meta_query
|
| 852 |
case 'meta_query' :
|
| 853 |
$retval = array(
|
|
@@ -864,6 +864,68 @@ function bbp_exclude_forum_ids( $type = 'string' ) {
|
|
| 864 |
return apply_filters( 'bbp_exclude_forum_ids', $retval, $forum_ids, $type );
|
| 865 |
}
|
| 866 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 867 |
/**
|
| 868 |
* Returns the forum's topic ids
|
| 869 |
*
|
|
@@ -943,6 +1005,58 @@ function bbp_forum_query_last_reply_id( $forum_id, $topic_ids = 0 ) {
|
|
| 943 |
|
| 944 |
/** Listeners *****************************************************************/
|
| 945 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 946 |
/**
|
| 947 |
* Check if it's a private forum or a topic or reply of a private forum and if
|
| 948 |
* the user can't view it, then sets a 404
|
|
@@ -959,13 +1073,17 @@ function bbp_forum_query_last_reply_id( $forum_id, $topic_ids = 0 ) {
|
|
| 959 |
* @uses bbp_is_forum_private() To check if the forum is private or not
|
| 960 |
* @uses bbp_set_404() To set a 404 status
|
| 961 |
*/
|
| 962 |
-
function
|
| 963 |
-
global $wp_query;
|
| 964 |
|
| 965 |
// Bail if not viewing a single item or if user has caps
|
| 966 |
-
if ( !is_singular() || is_super_admin() ||
|
| 967 |
return;
|
| 968 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 969 |
// Check post type
|
| 970 |
switch ( $wp_query->get( 'post_type' ) ) {
|
| 971 |
|
|
@@ -987,7 +1105,7 @@ function bbp_forum_visibility_check() {
|
|
| 987 |
}
|
| 988 |
|
| 989 |
// If forum is explicitly hidden and user not capable, set 404
|
| 990 |
-
if ( !empty( $forum_id ) &&
|
| 991 |
bbp_set_404();
|
| 992 |
}
|
| 993 |
|
| 837 |
if ( !empty( $forum_ids ) ) {
|
| 838 |
|
| 839 |
switch ( $type ) {
|
| 840 |
+
|
| 841 |
// Separate forum ID's into a comma separated string
|
| 842 |
case 'string' :
|
| 843 |
$retval = implode( ',', $forum_ids );
|
| 844 |
break;
|
| 845 |
+
|
| 846 |
// Use forum_ids array
|
| 847 |
case 'array' :
|
| 848 |
$retval = $forum_ids;
|
| 849 |
break;
|
| 850 |
+
|
| 851 |
// Build a meta_query
|
| 852 |
case 'meta_query' :
|
| 853 |
$retval = array(
|
| 864 |
return apply_filters( 'bbp_exclude_forum_ids', $retval, $forum_ids, $type );
|
| 865 |
}
|
| 866 |
|
| 867 |
+
/**
|
| 868 |
+
* Adjusts topic and reply queries to exclude items that might be contained
|
| 869 |
+
* inside hidden or private forums that the user does not have the capability
|
| 870 |
+
* to view.
|
| 871 |
+
*
|
| 872 |
+
* @since bbPress (r3291)
|
| 873 |
+
*
|
| 874 |
+
* @param WP_Query $posts_query
|
| 875 |
+
*
|
| 876 |
+
* @uses apply_filters()
|
| 877 |
+
* @uses bbp_exclude_forum_ids()
|
| 878 |
+
* @uses bbp_get_topic_post_type()
|
| 879 |
+
* @uses bbp_get_reply_post_type()
|
| 880 |
+
|
| 881 |
+
* @return WP_Query
|
| 882 |
+
*/
|
| 883 |
+
function bbp_pre_get_posts_exclude_forums( $posts_query ) {
|
| 884 |
+
|
| 885 |
+
// Bail if all forums are explicitly allowed
|
| 886 |
+
if ( true === apply_filters( 'bbp_include_all_forums', $posts_query ) )
|
| 887 |
+
return $posts_query;
|
| 888 |
+
|
| 889 |
+
// Bail if $posts_query is not an object or of incorrect class
|
| 890 |
+
if ( !is_object( $posts_query ) || ( 'WP_Query' != get_class( $posts_query ) ) )
|
| 891 |
+
return $posts_query;
|
| 892 |
+
|
| 893 |
+
// Bail if filters are suppressed on this query
|
| 894 |
+
if ( true == $posts_query->get( 'suppress_filters' ) )
|
| 895 |
+
return $posts_query;
|
| 896 |
+
|
| 897 |
+
// There are forums that need to be excluded
|
| 898 |
+
if ( $forum_ids = bbp_exclude_forum_ids( 'meta_query' ) ) {
|
| 899 |
+
|
| 900 |
+
// Only exclude forums on bbPress queries
|
| 901 |
+
switch ( $posts_query->get( 'post_type' ) ) {
|
| 902 |
+
|
| 903 |
+
// Topics
|
| 904 |
+
case bbp_get_topic_post_type() :
|
| 905 |
+
|
| 906 |
+
// Replies
|
| 907 |
+
case bbp_get_reply_post_type() :
|
| 908 |
+
|
| 909 |
+
// Topics and replies
|
| 910 |
+
case array( bbp_get_topic_post_type(), bbp_get_reply_post_type() ) :
|
| 911 |
+
|
| 912 |
+
// Get any existing meta queries
|
| 913 |
+
$meta_query = $posts_query->get( 'meta_query' );
|
| 914 |
+
|
| 915 |
+
// Add our meta query to existing
|
| 916 |
+
$meta_query[] = $forum_ids;
|
| 917 |
+
|
| 918 |
+
// Set the meta_query var
|
| 919 |
+
$posts_query->set( 'meta_query', $meta_query );
|
| 920 |
+
|
| 921 |
+
break;
|
| 922 |
+
}
|
| 923 |
+
}
|
| 924 |
+
|
| 925 |
+
// Return possibly adjusted query
|
| 926 |
+
return $posts_query;
|
| 927 |
+
}
|
| 928 |
+
|
| 929 |
/**
|
| 930 |
* Returns the forum's topic ids
|
| 931 |
*
|
| 1005 |
|
| 1006 |
/** Listeners *****************************************************************/
|
| 1007 |
|
| 1008 |
+
/**
|
| 1009 |
+
* Check if it's a hidden forum or a topic or reply of a hidden forum and if
|
| 1010 |
+
* the user can't view it, then sets a 404
|
| 1011 |
+
*
|
| 1012 |
+
* @since bbPress (r2996)
|
| 1013 |
+
*
|
| 1014 |
+
* @uses current_user_can() To check if the current user can read private forums
|
| 1015 |
+
* @uses is_singular() To check if it's a singular page
|
| 1016 |
+
* @uses bbp_get_forum_post_type() To get the forum post type
|
| 1017 |
+
* @uses bbp_get_topic_post_type() To get the topic post type
|
| 1018 |
+
* @uses bbp_get_reply_post_type() TO get the reply post type
|
| 1019 |
+
* @uses bbp_get_topic_forum_id() To get the topic forum id
|
| 1020 |
+
* @uses bbp_get_reply_forum_id() To get the reply forum id
|
| 1021 |
+
* @uses bbp_is_forum_hidden() To check if the forum is hidden or not
|
| 1022 |
+
* @uses bbp_set_404() To set a 404 status
|
| 1023 |
+
*/
|
| 1024 |
+
function bbp_forum_enforce_hidden() {
|
| 1025 |
+
|
| 1026 |
+
// Bail if not viewing a single item or if user has caps
|
| 1027 |
+
if ( !is_singular() || is_super_admin() || current_user_can( 'read_hidden_forums' ) )
|
| 1028 |
+
return;
|
| 1029 |
+
|
| 1030 |
+
global $wp_query;
|
| 1031 |
+
|
| 1032 |
+
// Define local variable
|
| 1033 |
+
$forum_id = 0;
|
| 1034 |
+
|
| 1035 |
+
// Check post type
|
| 1036 |
+
switch ( $wp_query->get( 'post_type' ) ) {
|
| 1037 |
+
|
| 1038 |
+
// Forum
|
| 1039 |
+
case bbp_get_forum_post_type() :
|
| 1040 |
+
$forum_id = bbp_get_forum_id( $wp_query->post->ID );
|
| 1041 |
+
break;
|
| 1042 |
+
|
| 1043 |
+
// Topic
|
| 1044 |
+
case bbp_get_topic_post_type() :
|
| 1045 |
+
$forum_id = bbp_get_topic_forum_id( $wp_query->post->ID );
|
| 1046 |
+
break;
|
| 1047 |
+
|
| 1048 |
+
// Reply
|
| 1049 |
+
case bbp_get_reply_post_type() :
|
| 1050 |
+
$forum_id = bbp_get_reply_forum_id( $wp_query->post->ID );
|
| 1051 |
+
break;
|
| 1052 |
+
|
| 1053 |
+
}
|
| 1054 |
+
|
| 1055 |
+
// If forum is explicitly hidden and user not capable, set 404
|
| 1056 |
+
if ( !empty( $forum_id ) && bbp_is_forum_hidden( $forum_id ) && !current_user_can( 'read_hidden_forums' ) )
|
| 1057 |
+
bbp_set_404();
|
| 1058 |
+
}
|
| 1059 |
+
|
| 1060 |
/**
|
| 1061 |
* Check if it's a private forum or a topic or reply of a private forum and if
|
| 1062 |
* the user can't view it, then sets a 404
|
| 1073 |
* @uses bbp_is_forum_private() To check if the forum is private or not
|
| 1074 |
* @uses bbp_set_404() To set a 404 status
|
| 1075 |
*/
|
| 1076 |
+
function bbp_forum_enforce_private() {
|
|
|
|
| 1077 |
|
| 1078 |
// Bail if not viewing a single item or if user has caps
|
| 1079 |
+
if ( !is_singular() || is_super_admin() || current_user_can( 'read_private_forums' ) )
|
| 1080 |
return;
|
| 1081 |
|
| 1082 |
+
global $wp_query;
|
| 1083 |
+
|
| 1084 |
+
// Define local variable
|
| 1085 |
+
$forum_id = 0;
|
| 1086 |
+
|
| 1087 |
// Check post type
|
| 1088 |
switch ( $wp_query->get( 'post_type' ) ) {
|
| 1089 |
|
| 1105 |
}
|
| 1106 |
|
| 1107 |
// If forum is explicitly hidden and user not capable, set 404
|
| 1108 |
+
if ( !empty( $forum_id ) && bbp_is_forum_private( $forum_id ) && !current_user_can( 'read_private_forums' ) )
|
| 1109 |
bbp_set_404();
|
| 1110 |
}
|
| 1111 |
|
bbp-includes/bbp-forum-template.php
CHANGED
|
@@ -84,7 +84,7 @@ function bbp_has_forums( $args = '' ) {
|
|
| 84 |
'post_type' => bbp_get_forum_post_type(),
|
| 85 |
'post_parent' => bbp_is_forum_archive() ? 0 : bbp_get_forum_id() ,
|
| 86 |
'post_status' => implode( ',', $post_stati ),
|
| 87 |
-
'posts_per_page' => get_option( '_bbp_forums_per_page',
|
| 88 |
'orderby' => 'menu_order',
|
| 89 |
'order' => 'ASC'
|
| 90 |
);
|
|
@@ -601,7 +601,7 @@ function bbp_forum_get_subforums( $args = '' ) {
|
|
| 601 |
'post_parent' => 0,
|
| 602 |
'post_type' => bbp_get_forum_post_type(),
|
| 603 |
'post_status' => implode( ',', $post_stati ),
|
| 604 |
-
'posts_per_page' => get_option( '_bbp_forums_per_page',
|
| 605 |
'sort_column' => 'menu_order, post_title',
|
| 606 |
'order' => 'ASC'
|
| 607 |
);
|
| 84 |
'post_type' => bbp_get_forum_post_type(),
|
| 85 |
'post_parent' => bbp_is_forum_archive() ? 0 : bbp_get_forum_id() ,
|
| 86 |
'post_status' => implode( ',', $post_stati ),
|
| 87 |
+
'posts_per_page' => get_option( '_bbp_forums_per_page', 50 ),
|
| 88 |
'orderby' => 'menu_order',
|
| 89 |
'order' => 'ASC'
|
| 90 |
);
|
| 601 |
'post_parent' => 0,
|
| 602 |
'post_type' => bbp_get_forum_post_type(),
|
| 603 |
'post_status' => implode( ',', $post_stati ),
|
| 604 |
+
'posts_per_page' => get_option( '_bbp_forums_per_page', 50 ),
|
| 605 |
'sort_column' => 'menu_order, post_title',
|
| 606 |
'order' => 'ASC'
|
| 607 |
);
|
bbp-includes/bbp-reply-functions.php
CHANGED
|
@@ -124,7 +124,7 @@ function bbp_new_reply_handler() {
|
|
| 124 |
$topic_id = $forum_id = $reply_author = $anonymous_data = 0;
|
| 125 |
$reply_title = $reply_content = $terms = '';
|
| 126 |
|
| 127 |
-
/** Reply Author
|
| 128 |
|
| 129 |
// User is anonymous
|
| 130 |
if ( bbp_is_anonymous() ) {
|
|
@@ -150,19 +150,19 @@ function bbp_new_reply_handler() {
|
|
| 150 |
|
| 151 |
}
|
| 152 |
|
| 153 |
-
/** Topic ID
|
| 154 |
|
| 155 |
// Handle Topic ID to append reply to
|
| 156 |
if ( isset( $_POST['bbp_topic_id'] ) && ( !$topic_id = (int) $_POST['bbp_topic_id'] ) )
|
| 157 |
bbp_add_error( 'bbp_reply_topic_id', __( '<strong>ERROR</strong>: Topic ID is missing.', 'bbpress' ) );
|
| 158 |
|
| 159 |
-
/** Forum ID
|
| 160 |
|
| 161 |
// Handle Forum ID to adjust counts of
|
| 162 |
if ( isset( $_POST['bbp_forum_id'] ) && ( !$forum_id = (int) $_POST['bbp_forum_id'] ) )
|
| 163 |
bbp_add_error( 'bbp_reply_forum_id', __( '<strong>ERROR</strong>: Forum ID is missing.', 'bbpress' ) );
|
| 164 |
|
| 165 |
-
/** Unfiltered HTML
|
| 166 |
|
| 167 |
// Remove wp_filter_kses filters from title and content for capable users and if the nonce is verified
|
| 168 |
if ( current_user_can( 'unfiltered_html' ) && !empty( $_POST['_bbp_unfiltered_html_reply'] ) && wp_create_nonce( 'bbp-unfiltered-html-reply_' . $topic_id ) == $_POST['_bbp_unfiltered_html_reply'] ) {
|
|
@@ -170,7 +170,7 @@ function bbp_new_reply_handler() {
|
|
| 170 |
remove_filter( 'bbp_new_reply_pre_content', 'wp_filter_kses' );
|
| 171 |
}
|
| 172 |
|
| 173 |
-
/** Reply Title
|
| 174 |
|
| 175 |
if ( !empty( $_POST['bbp_reply_title'] ) )
|
| 176 |
$reply_title = esc_attr( strip_tags( $_POST['bbp_reply_title'] ) );
|
|
@@ -182,7 +182,7 @@ function bbp_new_reply_handler() {
|
|
| 182 |
if ( empty( $reply_title ) )
|
| 183 |
bbp_add_error( 'bbp_reply_title', __( '<strong>ERROR</strong>: Your reply needs a title.', 'bbpress' ) );
|
| 184 |
|
| 185 |
-
/** Reply Content
|
| 186 |
|
| 187 |
if ( !empty( $_POST['bbp_reply_content'] ) )
|
| 188 |
$reply_content = $_POST['bbp_reply_content'];
|
|
@@ -194,31 +194,36 @@ function bbp_new_reply_handler() {
|
|
| 194 |
if ( empty( $reply_content ) )
|
| 195 |
bbp_add_error( 'bbp_reply_content', __( '<strong>ERROR</strong>: Your reply cannot be empty.', 'bbpress' ) );
|
| 196 |
|
| 197 |
-
/** Reply Flooding
|
| 198 |
|
| 199 |
if ( !bbp_check_for_flood( $anonymous_data, $reply_author ) )
|
| 200 |
bbp_add_error( 'bbp_reply_flood', __( '<strong>ERROR</strong>: Slow down; you move too fast.', 'bbpress' ) );
|
| 201 |
|
| 202 |
-
/** Reply Duplicate
|
| 203 |
|
| 204 |
if ( !bbp_check_for_duplicate( array( 'post_type' => bbp_get_reply_post_type(), 'post_author' => $reply_author, 'post_content' => $reply_content, 'post_parent' => $topic_id, 'anonymous_data' => $anonymous_data ) ) )
|
| 205 |
bbp_add_error( 'bbp_reply_duplicate', __( '<strong>ERROR</strong>: Duplicate reply detected; it looks as though you’ve already said that!', 'bbpress' ) );
|
| 206 |
|
| 207 |
-
/**
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 208 |
|
| 209 |
if ( !empty( $_POST['bbp_topic_tags'] ) )
|
| 210 |
$terms = esc_attr( strip_tags( $_POST['bbp_topic_tags'] ) );
|
| 211 |
|
| 212 |
-
/** Additional Actions (Before Save)
|
| 213 |
|
| 214 |
do_action( 'bbp_new_reply_pre_extras' );
|
| 215 |
|
| 216 |
-
/** No Errors
|
| 217 |
|
| 218 |
// Handle insertion into posts table
|
| 219 |
if ( !bbp_has_errors() ) {
|
| 220 |
|
| 221 |
-
/** Create new reply
|
| 222 |
|
| 223 |
// Add the content of the form to $post as an array
|
| 224 |
$reply_data = array(
|
|
@@ -236,12 +241,12 @@ function bbp_new_reply_handler() {
|
|
| 236 |
// Insert reply
|
| 237 |
$reply_id = wp_insert_post( $reply_data );
|
| 238 |
|
| 239 |
-
/** No Errors
|
| 240 |
|
| 241 |
// Check for missing reply_id or error
|
| 242 |
if ( !empty( $reply_id ) && !is_wp_error( $reply_id ) ) {
|
| 243 |
|
| 244 |
-
/** Topic Tags
|
| 245 |
|
| 246 |
// Just in time manipulation of reply terms before being edited
|
| 247 |
$terms = apply_filters( 'bbp_new_reply_pre_set_terms', $terms, $topic_id, $reply_id );
|
|
@@ -254,7 +259,7 @@ function bbp_new_reply_handler() {
|
|
| 254 |
bbp_add_error( 'bbp_reply_tags', __( '<strong>ERROR</strong>: There was a problem adding the tags to the topic.', 'bbpress' ) );
|
| 255 |
}
|
| 256 |
|
| 257 |
-
/** Trash Check
|
| 258 |
|
| 259 |
// If this reply starts as trash, add it to pre_trashed_replies
|
| 260 |
// for the topic, so it is properly restored.
|
|
@@ -273,17 +278,17 @@ function bbp_new_reply_handler() {
|
|
| 273 |
update_post_meta( $topic_id, '_bbp_pre_trashed_replies', $pre_trashed_replies );
|
| 274 |
}
|
| 275 |
|
| 276 |
-
/** Spam Check
|
| 277 |
|
| 278 |
// If reply or topic are spam, officially spam this reply
|
| 279 |
if ( bbp_is_topic_spam( $topic_id ) || ( $reply_data['post_status'] == $bbp->spam_status_id ) )
|
| 280 |
add_post_meta( $reply_id, '_bbp_spam_meta_status', 'publish' );
|
| 281 |
|
| 282 |
-
/** Update counts, etc...
|
| 283 |
|
| 284 |
do_action( 'bbp_new_reply', $reply_id, $topic_id, $forum_id, $anonymous_data, $reply_author );
|
| 285 |
|
| 286 |
-
/** Redirect
|
| 287 |
|
| 288 |
// Redirect to
|
| 289 |
$redirect_to = !empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '';
|
|
@@ -294,7 +299,7 @@ function bbp_new_reply_handler() {
|
|
| 294 |
// Allow to be filtered
|
| 295 |
$reply_url = apply_filters( 'bbp_new_reply_redirect_to', $reply_url, $redirect_to );
|
| 296 |
|
| 297 |
-
/** Successful Save
|
| 298 |
|
| 299 |
// Redirect back to new reply
|
| 300 |
wp_safe_redirect( $reply_url );
|
|
@@ -302,7 +307,7 @@ function bbp_new_reply_handler() {
|
|
| 302 |
// For good measure
|
| 303 |
exit();
|
| 304 |
|
| 305 |
-
/** Errors
|
| 306 |
|
| 307 |
} else {
|
| 308 |
$append_error = ( is_wp_error( $reply_id ) && $reply_id->get_error_message() ) ? $reply_id->get_error_message() . ' ' : '';
|
|
@@ -355,7 +360,7 @@ function bbp_edit_reply_handler() {
|
|
| 355 |
$reply = $reply_id = $topic_id = $forum_id = $anonymous_data = 0;
|
| 356 |
$reply_title = $reply_content = $reply_edit_reason = $terms = '';
|
| 357 |
|
| 358 |
-
/** Reply
|
| 359 |
|
| 360 |
// Reply id was not passed
|
| 361 |
if ( empty( $_POST['bbp_reply_id'] ) ) {
|
|
@@ -399,11 +404,11 @@ function bbp_edit_reply_handler() {
|
|
| 399 |
remove_filter( 'bbp_edit_reply_pre_content', 'wp_filter_kses' );
|
| 400 |
}
|
| 401 |
|
| 402 |
-
/** Reply Topic
|
| 403 |
|
| 404 |
$topic_id = bbp_get_reply_topic_id( $reply_id );
|
| 405 |
|
| 406 |
-
/** Topic Forum
|
| 407 |
|
| 408 |
$forum_id = bbp_get_topic_forum_id( $topic_id );
|
| 409 |
|
|
@@ -427,7 +432,7 @@ function bbp_edit_reply_handler() {
|
|
| 427 |
bbp_add_error( 'bbp_edit_reply_forum_hidden', __( '<strong>ERROR</strong>: This forum is hidden and you do not have the capability to read or create new replies in it.', 'bbpress' ) );
|
| 428 |
}
|
| 429 |
|
| 430 |
-
/** Reply Title
|
| 431 |
|
| 432 |
if ( !empty( $_POST['bbp_reply_title'] ) )
|
| 433 |
$reply_title = esc_attr( strip_tags( $_POST['bbp_reply_title'] ) );
|
|
@@ -435,7 +440,7 @@ function bbp_edit_reply_handler() {
|
|
| 435 |
// Filter and sanitize
|
| 436 |
$reply_title = apply_filters( 'bbp_edit_reply_pre_title', $reply_title, $reply_id );
|
| 437 |
|
| 438 |
-
/** Reply Content
|
| 439 |
|
| 440 |
if ( !empty( $_POST['bbp_reply_content'] ) )
|
| 441 |
$reply_content = $_POST['bbp_reply_content'];
|
|
@@ -447,16 +452,21 @@ function bbp_edit_reply_handler() {
|
|
| 447 |
if ( empty( $reply_content ) )
|
| 448 |
bbp_add_error( 'bbp_edit_reply_content', __( '<strong>ERROR</strong>: Your reply cannot be empty.', 'bbpress' ) );
|
| 449 |
|
| 450 |
-
/**
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 451 |
|
| 452 |
if ( !empty( $_POST['bbp_topic_tags'] ) )
|
| 453 |
$terms = esc_attr( strip_tags( $_POST['bbp_topic_tags'] ) );
|
| 454 |
|
| 455 |
-
/** Additional Actions (Before Save)
|
| 456 |
|
| 457 |
do_action( 'bbp_edit_reply_pre_extras', $reply_id );
|
| 458 |
|
| 459 |
-
/** No Errors
|
| 460 |
|
| 461 |
// Handle insertion into posts table
|
| 462 |
if ( !bbp_has_errors() ) {
|
|
@@ -474,7 +484,7 @@ function bbp_edit_reply_handler() {
|
|
| 474 |
// Insert reply
|
| 475 |
$reply_id = wp_update_post( $reply_data );
|
| 476 |
|
| 477 |
-
/** Topic Tags
|
| 478 |
|
| 479 |
// Just in time manipulation of reply terms before being edited
|
| 480 |
$terms = apply_filters( 'bbp_edit_reply_pre_set_terms', $terms, $topic_id, $reply_id );
|
|
@@ -487,7 +497,7 @@ function bbp_edit_reply_handler() {
|
|
| 487 |
bbp_add_error( 'bbp_reply_tags', __( '<strong>ERROR</strong>: There was a problem adding the tags to the topic.', 'bbpress' ) );
|
| 488 |
}
|
| 489 |
|
| 490 |
-
/** Revisions
|
| 491 |
|
| 492 |
// Revision Reason
|
| 493 |
if ( !empty( $_POST['bbp_reply_edit_reason'] ) )
|
|
@@ -503,18 +513,18 @@ function bbp_edit_reply_handler() {
|
|
| 503 |
) );
|
| 504 |
}
|
| 505 |
|
| 506 |
-
/** No Errors
|
| 507 |
|
| 508 |
if ( !empty( $reply_id ) && !is_wp_error( $reply_id ) ) {
|
| 509 |
|
| 510 |
// Update counts, etc...
|
| 511 |
do_action( 'bbp_edit_reply', $reply_id, $topic_id, $forum_id, $anonymous_data, $reply->post_author , true /* Is edit */ );
|
| 512 |
|
| 513 |
-
/** Additional Actions (After Save)
|
| 514 |
|
| 515 |
do_action( 'bbp_edit_reply_post_extras', $reply_id );
|
| 516 |
|
| 517 |
-
/** Redirect
|
| 518 |
|
| 519 |
// Redirect to
|
| 520 |
$redirect_to = !empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '';
|
|
@@ -525,7 +535,7 @@ function bbp_edit_reply_handler() {
|
|
| 525 |
// Allow to be filtered
|
| 526 |
$reply_url = apply_filters( 'bbp_edit_reply_redirect_to', $reply_url, $redirect_to );
|
| 527 |
|
| 528 |
-
/** Successful Edit
|
| 529 |
|
| 530 |
// Redirect back to new reply
|
| 531 |
wp_safe_redirect( $reply_url );
|
|
@@ -533,7 +543,7 @@ function bbp_edit_reply_handler() {
|
|
| 533 |
// For good measure
|
| 534 |
exit();
|
| 535 |
|
| 536 |
-
/** Errors
|
| 537 |
|
| 538 |
} else {
|
| 539 |
$append_error = ( is_wp_error( $reply_id ) && $reply_id->get_error_message() ) ? $reply_id->get_error_message() . ' ' : '';
|
|
@@ -965,9 +975,9 @@ function bbp_toggle_reply_handler() {
|
|
| 965 |
case 'bbp_toggle_reply_spam' :
|
| 966 |
check_ajax_referer( 'spam-reply_' . $reply_id );
|
| 967 |
|
| 968 |
-
$is_spam
|
| 969 |
-
$success
|
| 970 |
-
$failure
|
| 971 |
$view_all = !$is_spam;
|
| 972 |
|
| 973 |
break;
|
|
@@ -1016,7 +1026,7 @@ function bbp_toggle_reply_handler() {
|
|
| 1016 |
// No errors
|
| 1017 |
if ( ( false != $success ) && !is_wp_error( $success ) ) {
|
| 1018 |
|
| 1019 |
-
/** Redirect
|
| 1020 |
|
| 1021 |
// Redirect to
|
| 1022 |
$redirect_to = !empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '';
|
|
@@ -1117,11 +1127,8 @@ function bbp_unspam_reply( $reply_id = 0 ) {
|
|
| 1117 |
do_action( 'bbp_unspam_reply', $reply_id );
|
| 1118 |
|
| 1119 |
// Get pre spam status
|
| 1120 |
-
$
|
| 1121 |
|
| 1122 |
-
// Set post status to pre spam
|
| 1123 |
-
$reply['post_status'] = $reply_status;
|
| 1124 |
-
|
| 1125 |
// Delete pre spam meta
|
| 1126 |
delete_post_meta( $reply_id, '_bbp_spam_meta_status' );
|
| 1127 |
|
|
@@ -1245,8 +1252,7 @@ function bbp_untrashed_reply( $reply_id = 0 ) {
|
|
| 1245 |
*
|
| 1246 |
* @since bbPress (r3171)
|
| 1247 |
*
|
| 1248 |
-
* @
|
| 1249 |
-
*
|
| 1250 |
* @uses bbp_is_single_topic()
|
| 1251 |
* @uses bbp_user_can_view_forum()
|
| 1252 |
* @uses bbp_get_topic_forum_id()
|
|
@@ -1274,7 +1280,6 @@ function bbp_untrashed_reply( $reply_id = 0 ) {
|
|
| 1274 |
* @param array $replies_query
|
| 1275 |
*/
|
| 1276 |
function bbp_display_replies_feed_rss2( $replies_query = array() ) {
|
| 1277 |
-
global $bbp;
|
| 1278 |
|
| 1279 |
// User cannot access forum this topic is in
|
| 1280 |
if ( bbp_is_single_topic() && !bbp_user_can_view_forum( array( 'forum_id' => bbp_get_topic_forum_id() ) ) )
|
|
@@ -1308,7 +1313,7 @@ function bbp_display_replies_feed_rss2( $replies_query = array() ) {
|
|
| 1308 |
<link><?php self_link(); ?></link>
|
| 1309 |
<description><?php //?></description>
|
| 1310 |
<pubDate><?php echo mysql2date( 'D, d M Y H:i:s O', '', false ); ?></pubDate>
|
| 1311 |
-
<generator>http://bbpress.org/?v=<?php
|
| 1312 |
<language><?php echo get_option( 'rss_language' ); ?></language>
|
| 1313 |
|
| 1314 |
<?php do_action( 'bbp_feed_head' ); ?>
|
| 124 |
$topic_id = $forum_id = $reply_author = $anonymous_data = 0;
|
| 125 |
$reply_title = $reply_content = $terms = '';
|
| 126 |
|
| 127 |
+
/** Reply Author **********************************************************/
|
| 128 |
|
| 129 |
// User is anonymous
|
| 130 |
if ( bbp_is_anonymous() ) {
|
| 150 |
|
| 151 |
}
|
| 152 |
|
| 153 |
+
/** Topic ID **************************************************************/
|
| 154 |
|
| 155 |
// Handle Topic ID to append reply to
|
| 156 |
if ( isset( $_POST['bbp_topic_id'] ) && ( !$topic_id = (int) $_POST['bbp_topic_id'] ) )
|
| 157 |
bbp_add_error( 'bbp_reply_topic_id', __( '<strong>ERROR</strong>: Topic ID is missing.', 'bbpress' ) );
|
| 158 |
|
| 159 |
+
/** Forum ID **************************************************************/
|
| 160 |
|
| 161 |
// Handle Forum ID to adjust counts of
|
| 162 |
if ( isset( $_POST['bbp_forum_id'] ) && ( !$forum_id = (int) $_POST['bbp_forum_id'] ) )
|
| 163 |
bbp_add_error( 'bbp_reply_forum_id', __( '<strong>ERROR</strong>: Forum ID is missing.', 'bbpress' ) );
|
| 164 |
|
| 165 |
+
/** Unfiltered HTML *******************************************************/
|
| 166 |
|
| 167 |
// Remove wp_filter_kses filters from title and content for capable users and if the nonce is verified
|
| 168 |
if ( current_user_can( 'unfiltered_html' ) && !empty( $_POST['_bbp_unfiltered_html_reply'] ) && wp_create_nonce( 'bbp-unfiltered-html-reply_' . $topic_id ) == $_POST['_bbp_unfiltered_html_reply'] ) {
|
| 170 |
remove_filter( 'bbp_new_reply_pre_content', 'wp_filter_kses' );
|
| 171 |
}
|
| 172 |
|
| 173 |
+
/** Reply Title ***********************************************************/
|
| 174 |
|
| 175 |
if ( !empty( $_POST['bbp_reply_title'] ) )
|
| 176 |
$reply_title = esc_attr( strip_tags( $_POST['bbp_reply_title'] ) );
|
| 182 |
if ( empty( $reply_title ) )
|
| 183 |
bbp_add_error( 'bbp_reply_title', __( '<strong>ERROR</strong>: Your reply needs a title.', 'bbpress' ) );
|
| 184 |
|
| 185 |
+
/** Reply Content *********************************************************/
|
| 186 |
|
| 187 |
if ( !empty( $_POST['bbp_reply_content'] ) )
|
| 188 |
$reply_content = $_POST['bbp_reply_content'];
|
| 194 |
if ( empty( $reply_content ) )
|
| 195 |
bbp_add_error( 'bbp_reply_content', __( '<strong>ERROR</strong>: Your reply cannot be empty.', 'bbpress' ) );
|
| 196 |
|
| 197 |
+
/** Reply Flooding ********************************************************/
|
| 198 |
|
| 199 |
if ( !bbp_check_for_flood( $anonymous_data, $reply_author ) )
|
| 200 |
bbp_add_error( 'bbp_reply_flood', __( '<strong>ERROR</strong>: Slow down; you move too fast.', 'bbpress' ) );
|
| 201 |
|
| 202 |
+
/** Reply Duplicate *******************************************************/
|
| 203 |
|
| 204 |
if ( !bbp_check_for_duplicate( array( 'post_type' => bbp_get_reply_post_type(), 'post_author' => $reply_author, 'post_content' => $reply_content, 'post_parent' => $topic_id, 'anonymous_data' => $anonymous_data ) ) )
|
| 205 |
bbp_add_error( 'bbp_reply_duplicate', __( '<strong>ERROR</strong>: Duplicate reply detected; it looks as though you’ve already said that!', 'bbpress' ) );
|
| 206 |
|
| 207 |
+
/** Reply Blacklist *******************************************************/
|
| 208 |
+
|
| 209 |
+
if ( !bbp_check_for_blacklist( $anonymous_data, $reply_author, $reply_title, $reply_content ) )
|
| 210 |
+
bbp_add_error( 'bbp_reply_blacklist', __( '<strong>ERROR</strong>: Your reply cannot be created at this time.', 'bbpress' ) );
|
| 211 |
+
|
| 212 |
+
/** Topic Tags ************************************************************/
|
| 213 |
|
| 214 |
if ( !empty( $_POST['bbp_topic_tags'] ) )
|
| 215 |
$terms = esc_attr( strip_tags( $_POST['bbp_topic_tags'] ) );
|
| 216 |
|
| 217 |
+
/** Additional Actions (Before Save) **************************************/
|
| 218 |
|
| 219 |
do_action( 'bbp_new_reply_pre_extras' );
|
| 220 |
|
| 221 |
+
/** No Errors *************************************************************/
|
| 222 |
|
| 223 |
// Handle insertion into posts table
|
| 224 |
if ( !bbp_has_errors() ) {
|
| 225 |
|
| 226 |
+
/** Create new reply **************************************************/
|
| 227 |
|
| 228 |
// Add the content of the form to $post as an array
|
| 229 |
$reply_data = array(
|
| 241 |
// Insert reply
|
| 242 |
$reply_id = wp_insert_post( $reply_data );
|
| 243 |
|
| 244 |
+
/** No Errors *********************************************************/
|
| 245 |
|
| 246 |
// Check for missing reply_id or error
|
| 247 |
if ( !empty( $reply_id ) && !is_wp_error( $reply_id ) ) {
|
| 248 |
|
| 249 |
+
/** Topic Tags ****************************************************/
|
| 250 |
|
| 251 |
// Just in time manipulation of reply terms before being edited
|
| 252 |
$terms = apply_filters( 'bbp_new_reply_pre_set_terms', $terms, $topic_id, $reply_id );
|
| 259 |
bbp_add_error( 'bbp_reply_tags', __( '<strong>ERROR</strong>: There was a problem adding the tags to the topic.', 'bbpress' ) );
|
| 260 |
}
|
| 261 |
|
| 262 |
+
/** Trash Check ***************************************************/
|
| 263 |
|
| 264 |
// If this reply starts as trash, add it to pre_trashed_replies
|
| 265 |
// for the topic, so it is properly restored.
|
| 278 |
update_post_meta( $topic_id, '_bbp_pre_trashed_replies', $pre_trashed_replies );
|
| 279 |
}
|
| 280 |
|
| 281 |
+
/** Spam Check ****************************************************/
|
| 282 |
|
| 283 |
// If reply or topic are spam, officially spam this reply
|
| 284 |
if ( bbp_is_topic_spam( $topic_id ) || ( $reply_data['post_status'] == $bbp->spam_status_id ) )
|
| 285 |
add_post_meta( $reply_id, '_bbp_spam_meta_status', 'publish' );
|
| 286 |
|
| 287 |
+
/** Update counts, etc... *****************************************/
|
| 288 |
|
| 289 |
do_action( 'bbp_new_reply', $reply_id, $topic_id, $forum_id, $anonymous_data, $reply_author );
|
| 290 |
|
| 291 |
+
/** Redirect ******************************************************/
|
| 292 |
|
| 293 |
// Redirect to
|
| 294 |
$redirect_to = !empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '';
|
| 299 |
// Allow to be filtered
|
| 300 |
$reply_url = apply_filters( 'bbp_new_reply_redirect_to', $reply_url, $redirect_to );
|
| 301 |
|
| 302 |
+
/** Successful Save ***********************************************/
|
| 303 |
|
| 304 |
// Redirect back to new reply
|
| 305 |
wp_safe_redirect( $reply_url );
|
| 307 |
// For good measure
|
| 308 |
exit();
|
| 309 |
|
| 310 |
+
/** Errors ************************************************************/
|
| 311 |
|
| 312 |
} else {
|
| 313 |
$append_error = ( is_wp_error( $reply_id ) && $reply_id->get_error_message() ) ? $reply_id->get_error_message() . ' ' : '';
|
| 360 |
$reply = $reply_id = $topic_id = $forum_id = $anonymous_data = 0;
|
| 361 |
$reply_title = $reply_content = $reply_edit_reason = $terms = '';
|
| 362 |
|
| 363 |
+
/** Reply *****************************************************************/
|
| 364 |
|
| 365 |
// Reply id was not passed
|
| 366 |
if ( empty( $_POST['bbp_reply_id'] ) ) {
|
| 404 |
remove_filter( 'bbp_edit_reply_pre_content', 'wp_filter_kses' );
|
| 405 |
}
|
| 406 |
|
| 407 |
+
/** Reply Topic ***********************************************************/
|
| 408 |
|
| 409 |
$topic_id = bbp_get_reply_topic_id( $reply_id );
|
| 410 |
|
| 411 |
+
/** Topic Forum ***********************************************************/
|
| 412 |
|
| 413 |
$forum_id = bbp_get_topic_forum_id( $topic_id );
|
| 414 |
|
| 432 |
bbp_add_error( 'bbp_edit_reply_forum_hidden', __( '<strong>ERROR</strong>: This forum is hidden and you do not have the capability to read or create new replies in it.', 'bbpress' ) );
|
| 433 |
}
|
| 434 |
|
| 435 |
+
/** Reply Title ***********************************************************/
|
| 436 |
|
| 437 |
if ( !empty( $_POST['bbp_reply_title'] ) )
|
| 438 |
$reply_title = esc_attr( strip_tags( $_POST['bbp_reply_title'] ) );
|
| 440 |
// Filter and sanitize
|
| 441 |
$reply_title = apply_filters( 'bbp_edit_reply_pre_title', $reply_title, $reply_id );
|
| 442 |
|
| 443 |
+
/** Reply Content *********************************************************/
|
| 444 |
|
| 445 |
if ( !empty( $_POST['bbp_reply_content'] ) )
|
| 446 |
$reply_content = $_POST['bbp_reply_content'];
|
| 452 |
if ( empty( $reply_content ) )
|
| 453 |
bbp_add_error( 'bbp_edit_reply_content', __( '<strong>ERROR</strong>: Your reply cannot be empty.', 'bbpress' ) );
|
| 454 |
|
| 455 |
+
/** Reply Blacklist *******************************************************/
|
| 456 |
+
|
| 457 |
+
if ( !bbp_check_for_blacklist( $anonymous_data, bbp_get_reply_author_id( $reply_id ), $reply_title, $reply_content ) )
|
| 458 |
+
bbp_add_error( 'bbp_reply_blacklist', __( '<strong>ERROR</strong>: Your reply cannot be edited at this time.', 'bbpress' ) );
|
| 459 |
+
|
| 460 |
+
/** Topic Tags ************************************************************/
|
| 461 |
|
| 462 |
if ( !empty( $_POST['bbp_topic_tags'] ) )
|
| 463 |
$terms = esc_attr( strip_tags( $_POST['bbp_topic_tags'] ) );
|
| 464 |
|
| 465 |
+
/** Additional Actions (Before Save) **************************************/
|
| 466 |
|
| 467 |
do_action( 'bbp_edit_reply_pre_extras', $reply_id );
|
| 468 |
|
| 469 |
+
/** No Errors *************************************************************/
|
| 470 |
|
| 471 |
// Handle insertion into posts table
|
| 472 |
if ( !bbp_has_errors() ) {
|
| 484 |
// Insert reply
|
| 485 |
$reply_id = wp_update_post( $reply_data );
|
| 486 |
|
| 487 |
+
/** Topic Tags ****************************************************/
|
| 488 |
|
| 489 |
// Just in time manipulation of reply terms before being edited
|
| 490 |
$terms = apply_filters( 'bbp_edit_reply_pre_set_terms', $terms, $topic_id, $reply_id );
|
| 497 |
bbp_add_error( 'bbp_reply_tags', __( '<strong>ERROR</strong>: There was a problem adding the tags to the topic.', 'bbpress' ) );
|
| 498 |
}
|
| 499 |
|
| 500 |
+
/** Revisions *********************************************************/
|
| 501 |
|
| 502 |
// Revision Reason
|
| 503 |
if ( !empty( $_POST['bbp_reply_edit_reason'] ) )
|
| 513 |
) );
|
| 514 |
}
|
| 515 |
|
| 516 |
+
/** No Errors *********************************************************/
|
| 517 |
|
| 518 |
if ( !empty( $reply_id ) && !is_wp_error( $reply_id ) ) {
|
| 519 |
|
| 520 |
// Update counts, etc...
|
| 521 |
do_action( 'bbp_edit_reply', $reply_id, $topic_id, $forum_id, $anonymous_data, $reply->post_author , true /* Is edit */ );
|
| 522 |
|
| 523 |
+
/** Additional Actions (After Save) *******************************/
|
| 524 |
|
| 525 |
do_action( 'bbp_edit_reply_post_extras', $reply_id );
|
| 526 |
|
| 527 |
+
/** Redirect ******************************************************/
|
| 528 |
|
| 529 |
// Redirect to
|
| 530 |
$redirect_to = !empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '';
|
| 535 |
// Allow to be filtered
|
| 536 |
$reply_url = apply_filters( 'bbp_edit_reply_redirect_to', $reply_url, $redirect_to );
|
| 537 |
|
| 538 |
+
/** Successful Edit ***********************************************/
|
| 539 |
|
| 540 |
// Redirect back to new reply
|
| 541 |
wp_safe_redirect( $reply_url );
|
| 543 |
// For good measure
|
| 544 |
exit();
|
| 545 |
|
| 546 |
+
/** Errors ************************************************************/
|
| 547 |
|
| 548 |
} else {
|
| 549 |
$append_error = ( is_wp_error( $reply_id ) && $reply_id->get_error_message() ) ? $reply_id->get_error_message() . ' ' : '';
|
| 975 |
case 'bbp_toggle_reply_spam' :
|
| 976 |
check_ajax_referer( 'spam-reply_' . $reply_id );
|
| 977 |
|
| 978 |
+
$is_spam = bbp_is_reply_spam( $reply_id );
|
| 979 |
+
$success = $is_spam ? bbp_unspam_reply( $reply_id ) : bbp_spam_reply( $reply_id );
|
| 980 |
+
$failure = $is_spam ? __( '<strong>ERROR</strong>: There was a problem unmarking the reply as spam!', 'bbpress' ) : __( '<strong>ERROR</strong>: There was a problem marking the reply as spam!', 'bbpress' );
|
| 981 |
$view_all = !$is_spam;
|
| 982 |
|
| 983 |
break;
|
| 1026 |
// No errors
|
| 1027 |
if ( ( false != $success ) && !is_wp_error( $success ) ) {
|
| 1028 |
|
| 1029 |
+
/** Redirect **********************************************************/
|
| 1030 |
|
| 1031 |
// Redirect to
|
| 1032 |
$redirect_to = !empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '';
|
| 1127 |
do_action( 'bbp_unspam_reply', $reply_id );
|
| 1128 |
|
| 1129 |
// Get pre spam status
|
| 1130 |
+
$reply['post_status'] = get_post_meta( $reply_id, '_bbp_spam_meta_status', true );
|
| 1131 |
|
|
|
|
|
|
|
|
|
|
| 1132 |
// Delete pre spam meta
|
| 1133 |
delete_post_meta( $reply_id, '_bbp_spam_meta_status' );
|
| 1134 |
|
| 1252 |
*
|
| 1253 |
* @since bbPress (r3171)
|
| 1254 |
*
|
| 1255 |
+
* @uses bbp_version()
|
|
|
|
| 1256 |
* @uses bbp_is_single_topic()
|
| 1257 |
* @uses bbp_user_can_view_forum()
|
| 1258 |
* @uses bbp_get_topic_forum_id()
|
| 1280 |
* @param array $replies_query
|
| 1281 |
*/
|
| 1282 |
function bbp_display_replies_feed_rss2( $replies_query = array() ) {
|
|
|
|
| 1283 |
|
| 1284 |
// User cannot access forum this topic is in
|
| 1285 |
if ( bbp_is_single_topic() && !bbp_user_can_view_forum( array( 'forum_id' => bbp_get_topic_forum_id() ) ) )
|
| 1313 |
<link><?php self_link(); ?></link>
|
| 1314 |
<description><?php //?></description>
|
| 1315 |
<pubDate><?php echo mysql2date( 'D, d M Y H:i:s O', '', false ); ?></pubDate>
|
| 1316 |
+
<generator>http://bbpress.org/?v=<?php bbp_version(); ?></generator>
|
| 1317 |
<language><?php echo get_option( 'rss_language' ); ?></language>
|
| 1318 |
|
| 1319 |
<?php do_action( 'bbp_feed_head' ); ?>
|
bbp-includes/bbp-reply-template.php
CHANGED
|
@@ -1004,7 +1004,7 @@ function bbp_reply_author_url( $reply_id = 0 ) {
|
|
| 1004 |
/**
|
| 1005 |
* Return the author url of the reply
|
| 1006 |
*
|
| 1007 |
-
* @since bbPress (
|
| 1008 |
*
|
| 1009 |
* @param int $reply_id Optional. Reply id
|
| 1010 |
* @uses bbp_get_reply_id() To get the reply id
|
|
@@ -1025,15 +1025,70 @@ function bbp_reply_author_url( $reply_id = 0 ) {
|
|
| 1025 |
$reply_id = bbp_get_reply_id( $reply_id );
|
| 1026 |
|
| 1027 |
// Check for anonymous user
|
| 1028 |
-
if ( !bbp_is_reply_anonymous( $reply_id ) )
|
| 1029 |
$author_url = bbp_get_user_profile_url( bbp_get_reply_author_id( $reply_id ) );
|
| 1030 |
-
else
|
| 1031 |
-
if ( !$author_url = get_post_meta( $reply_id, '_bbp_anonymous_website', true ) )
|
| 1032 |
$author_url = '';
|
|
|
|
|
|
|
| 1033 |
|
| 1034 |
return apply_filters( 'bbp_get_reply_author_url', $author_url, $reply_id );
|
| 1035 |
}
|
| 1036 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1037 |
/**
|
| 1038 |
* Output the topic title a reply belongs to
|
| 1039 |
*
|
|
@@ -1687,37 +1742,67 @@ function bbp_topic_pagination_count() {
|
|
| 1687 |
function bbp_get_topic_pagination_count() {
|
| 1688 |
global $bbp;
|
| 1689 |
|
|
|
|
|
|
|
|
|
|
| 1690 |
// Set pagination values
|
| 1691 |
$start_num = intval( ( $bbp->reply_query->paged - 1 ) * $bbp->reply_query->posts_per_page ) + 1;
|
| 1692 |
$from_num = bbp_number_format( $start_num );
|
| 1693 |
$to_num = bbp_number_format( ( $start_num + ( $bbp->reply_query->posts_per_page - 1 ) > $bbp->reply_query->found_posts ) ? $bbp->reply_query->found_posts : $start_num + ( $bbp->reply_query->posts_per_page - 1 ) );
|
| 1694 |
$total = bbp_number_format( $bbp->reply_query->found_posts );
|
| 1695 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1696 |
// We are not including the lead topic
|
| 1697 |
if ( bbp_show_lead_topic() ) {
|
| 1698 |
|
| 1699 |
-
//
|
| 1700 |
-
if ( $total > 1
|
| 1701 |
-
|
| 1702 |
-
|
| 1703 |
-
|
| 1704 |
-
|
| 1705 |
-
|
| 1706 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1707 |
$retstr = sprintf( __( 'Viewing %1$s reply', 'bbpress' ), $total );
|
|
|
|
| 1708 |
|
| 1709 |
// We are including the lead topic
|
| 1710 |
} else {
|
| 1711 |
|
| 1712 |
-
//
|
| 1713 |
-
if ( $total > 1
|
| 1714 |
-
|
| 1715 |
-
|
| 1716 |
-
|
| 1717 |
-
|
| 1718 |
-
|
| 1719 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1720 |
$retstr = sprintf( __( 'Viewing %1$s post', 'bbpress' ), $total );
|
|
|
|
| 1721 |
}
|
| 1722 |
|
| 1723 |
// Filter and return
|
| 1004 |
/**
|
| 1005 |
* Return the author url of the reply
|
| 1006 |
*
|
| 1007 |
+
* @since bbPress (r2667)
|
| 1008 |
*
|
| 1009 |
* @param int $reply_id Optional. Reply id
|
| 1010 |
* @uses bbp_get_reply_id() To get the reply id
|
| 1025 |
$reply_id = bbp_get_reply_id( $reply_id );
|
| 1026 |
|
| 1027 |
// Check for anonymous user
|
| 1028 |
+
if ( !bbp_is_reply_anonymous( $reply_id ) ) {
|
| 1029 |
$author_url = bbp_get_user_profile_url( bbp_get_reply_author_id( $reply_id ) );
|
| 1030 |
+
} else {
|
| 1031 |
+
if ( !$author_url = get_post_meta( $reply_id, '_bbp_anonymous_website', true ) ) {
|
| 1032 |
$author_url = '';
|
| 1033 |
+
}
|
| 1034 |
+
}
|
| 1035 |
|
| 1036 |
return apply_filters( 'bbp_get_reply_author_url', $author_url, $reply_id );
|
| 1037 |
}
|
| 1038 |
|
| 1039 |
+
/**
|
| 1040 |
+
* Output the reply author email address
|
| 1041 |
+
*
|
| 1042 |
+
* @since bbPress (r3445)
|
| 1043 |
+
*
|
| 1044 |
+
* @param int $reply_id Optional. Reply id
|
| 1045 |
+
* @uses bbp_get_reply_author_email() To get the reply author email
|
| 1046 |
+
*/
|
| 1047 |
+
function bbp_reply_author_email( $reply_id = 0 ) {
|
| 1048 |
+
echo bbp_get_reply_author_email( $reply_id );
|
| 1049 |
+
}
|
| 1050 |
+
/**
|
| 1051 |
+
* Return the reply author email address
|
| 1052 |
+
*
|
| 1053 |
+
* @since bbPress (r3445)
|
| 1054 |
+
*
|
| 1055 |
+
* @param int $reply_id Optional. Reply id
|
| 1056 |
+
* @uses bbp_get_reply_id() To get the reply id
|
| 1057 |
+
* @uses bbp_is_reply_anonymous() To check if the reply is by an anonymous
|
| 1058 |
+
* user
|
| 1059 |
+
* @uses bbp_get_reply_author_id() To get the reply author id
|
| 1060 |
+
* @uses get_userdata() To get the user data
|
| 1061 |
+
* @uses get_post_meta() To get the anonymous poster's website email
|
| 1062 |
+
* @uses apply_filters() Calls bbp_get_reply_author_email with the author
|
| 1063 |
+
* email & reply id
|
| 1064 |
+
* @return string Reply author email address
|
| 1065 |
+
*/
|
| 1066 |
+
function bbp_get_reply_author_email( $reply_id = 0 ) {
|
| 1067 |
+
$reply_id = bbp_get_reply_id( $reply_id );
|
| 1068 |
+
|
| 1069 |
+
// Not anonymous
|
| 1070 |
+
if ( !bbp_is_reply_anonymous( $reply_id ) ) {
|
| 1071 |
+
|
| 1072 |
+
// Use reply author email address
|
| 1073 |
+
$user_id = bbp_get_reply_author_id( $reply_id );
|
| 1074 |
+
$user = get_userdata( $user_id );
|
| 1075 |
+
$author_email = !empty( $user->user_email ) ? $user->user_email : '';
|
| 1076 |
+
|
| 1077 |
+
// Anonymous
|
| 1078 |
+
} else {
|
| 1079 |
+
|
| 1080 |
+
// Get email from post meta
|
| 1081 |
+
$author_email = get_post_meta( $reply_id, '_bbp_anonymous_email', true );
|
| 1082 |
+
|
| 1083 |
+
// Sanity check for missing email address
|
| 1084 |
+
if ( empty( $author_email ) ) {
|
| 1085 |
+
$author_email = '';
|
| 1086 |
+
}
|
| 1087 |
+
}
|
| 1088 |
+
|
| 1089 |
+
return apply_filters( 'bbp_get_reply_author_email', $author_email, $reply_id );
|
| 1090 |
+
}
|
| 1091 |
+
|
| 1092 |
/**
|
| 1093 |
* Output the topic title a reply belongs to
|
| 1094 |
*
|
| 1742 |
function bbp_get_topic_pagination_count() {
|
| 1743 |
global $bbp;
|
| 1744 |
|
| 1745 |
+
// Define local variable(s)
|
| 1746 |
+
$retstr = '';
|
| 1747 |
+
|
| 1748 |
// Set pagination values
|
| 1749 |
$start_num = intval( ( $bbp->reply_query->paged - 1 ) * $bbp->reply_query->posts_per_page ) + 1;
|
| 1750 |
$from_num = bbp_number_format( $start_num );
|
| 1751 |
$to_num = bbp_number_format( ( $start_num + ( $bbp->reply_query->posts_per_page - 1 ) > $bbp->reply_query->found_posts ) ? $bbp->reply_query->found_posts : $start_num + ( $bbp->reply_query->posts_per_page - 1 ) );
|
| 1752 |
$total = bbp_number_format( $bbp->reply_query->found_posts );
|
| 1753 |
|
| 1754 |
+
/**
|
| 1755 |
+
* Translators - _n() should not be needed, as singular/plural strings
|
| 1756 |
+
* are already separated into unique strings for you
|
| 1757 |
+
*/
|
| 1758 |
+
|
| 1759 |
// We are not including the lead topic
|
| 1760 |
if ( bbp_show_lead_topic() ) {
|
| 1761 |
|
| 1762 |
+
// More than 1 reply
|
| 1763 |
+
if ( $total > 1 ) {
|
| 1764 |
+
|
| 1765 |
+
// Single reply in a topic with several pages
|
| 1766 |
+
if ( (int) $from_num == (int) $to_num ) {
|
| 1767 |
+
$retstr = sprintf( __( 'Viewing reply %1$s (of %2$s total)', 'bbpress' ), $from_num, $total );
|
| 1768 |
+
|
| 1769 |
+
// Several replies in a topic with a single page
|
| 1770 |
+
} elseif ( empty( $to_num ) ) {
|
| 1771 |
+
$retstr = sprintf( __( 'Viewing %1$s replies', 'bbpress' ), $total );
|
| 1772 |
+
|
| 1773 |
+
// Several replies in a topic with several pages
|
| 1774 |
+
} elseif ( (int) $from_num != (int) $to_num ) {
|
| 1775 |
+
$retstr = sprintf( __( 'Viewing %1$s replies - %2$s through %3$s (of %4$s total)', 'bbpress' ), $bbp->reply_query->post_count, $from_num, $to_num, $total );
|
| 1776 |
+
}
|
| 1777 |
+
|
| 1778 |
+
// Only one reply
|
| 1779 |
+
} else {
|
| 1780 |
$retstr = sprintf( __( 'Viewing %1$s reply', 'bbpress' ), $total );
|
| 1781 |
+
}
|
| 1782 |
|
| 1783 |
// We are including the lead topic
|
| 1784 |
} else {
|
| 1785 |
|
| 1786 |
+
// More than 1 post
|
| 1787 |
+
if ( $total > 1 ) {
|
| 1788 |
+
|
| 1789 |
+
// Single post in a topic with several pages
|
| 1790 |
+
if( (int) $from_num == (int) $to_num ) {
|
| 1791 |
+
$retstr = sprintf( __( 'Viewing post %1$s (of %2$s total)', 'bbpress' ), $from_num, $total );
|
| 1792 |
+
|
| 1793 |
+
// Several posts in a topic with a single page
|
| 1794 |
+
} elseif ( empty( $to_num ) ) {
|
| 1795 |
+
$retstr = sprintf( __( 'Viewing %1$s posts', 'bbpress' ), $total );
|
| 1796 |
+
|
| 1797 |
+
// Several posts in a topic with several pages
|
| 1798 |
+
} elseif ( (int) $from_num != (int) $to_num ) {
|
| 1799 |
+
$retstr = sprintf( __( 'Viewing %1$s posts - %2$s through %3$s (of %4$s total)', 'bbpress' ), $bbp->reply_query->post_count, $from_num, $to_num, $total );
|
| 1800 |
+
}
|
| 1801 |
+
|
| 1802 |
+
// Only one post
|
| 1803 |
+
} elseif ( $total == 1 ) {
|
| 1804 |
$retstr = sprintf( __( 'Viewing %1$s post', 'bbpress' ), $total );
|
| 1805 |
+
}
|
| 1806 |
}
|
| 1807 |
|
| 1808 |
// Filter and return
|
bbp-includes/bbp-topic-functions.php
CHANGED
|
@@ -134,7 +134,7 @@ function bbp_new_topic_handler() {
|
|
| 134 |
$topic_title = $topic_content = '';
|
| 135 |
$terms = array( bbp_get_topic_tag_tax_id() => array() );
|
| 136 |
|
| 137 |
-
/** Topic Author
|
| 138 |
|
| 139 |
// User is anonymous
|
| 140 |
if ( bbp_is_anonymous() ) {
|
|
@@ -166,7 +166,7 @@ function bbp_new_topic_handler() {
|
|
| 166 |
remove_filter( 'bbp_new_topic_pre_content', 'wp_filter_kses' );
|
| 167 |
}
|
| 168 |
|
| 169 |
-
/** Topic Title
|
| 170 |
|
| 171 |
if ( !empty( $_POST['bbp_topic_title'] ) )
|
| 172 |
$topic_title = esc_attr( strip_tags( $_POST['bbp_topic_title'] ) );
|
|
@@ -178,7 +178,7 @@ function bbp_new_topic_handler() {
|
|
| 178 |
if ( empty( $topic_title ) )
|
| 179 |
bbp_add_error( 'bbp_topic_title', __( '<strong>ERROR</strong>: Your topic needs a title.', 'bbpress' ) );
|
| 180 |
|
| 181 |
-
/** Topic Content
|
| 182 |
|
| 183 |
if ( !empty( $_POST['bbp_topic_content'] ) )
|
| 184 |
$topic_content = $_POST['bbp_topic_content'];
|
|
@@ -190,7 +190,7 @@ function bbp_new_topic_handler() {
|
|
| 190 |
if ( empty( $topic_content ) )
|
| 191 |
bbp_add_error( 'bbp_topic_content', __( '<strong>ERROR</strong>: Your topic cannot be empty.', 'bbpress' ) );
|
| 192 |
|
| 193 |
-
/** Topic Forum
|
| 194 |
|
| 195 |
// Forum id was not passed
|
| 196 |
if ( empty( $_POST['bbp_forum_id'] ) )
|
|
@@ -220,17 +220,22 @@ function bbp_new_topic_handler() {
|
|
| 220 |
bbp_add_error( 'bbp_edit_topic_forum_hidden', __( '<strong>ERROR</strong>: This forum is hidden and you do not have the capability to read or create new topics in it.', 'bbpress' ) );
|
| 221 |
}
|
| 222 |
|
| 223 |
-
/** Topic Flooding
|
| 224 |
|
| 225 |
if ( !bbp_check_for_flood( $anonymous_data, $topic_author ) )
|
| 226 |
bbp_add_error( 'bbp_topic_flood', __( '<strong>ERROR</strong>: Slow down; you move too fast.', 'bbpress' ) );
|
| 227 |
|
| 228 |
-
/** Topic Duplicate
|
| 229 |
|
| 230 |
if ( !bbp_check_for_duplicate( array( 'post_type' => bbp_get_topic_post_type(), 'post_author' => $topic_author, 'post_content' => $topic_content, 'anonymous_data' => $anonymous_data ) ) )
|
| 231 |
bbp_add_error( 'bbp_topic_duplicate', __( '<strong>ERROR</strong>: Duplicate topic detected; it looks as though you’ve already said that!', 'bbpress' ) );
|
| 232 |
|
| 233 |
-
/**
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 234 |
|
| 235 |
if ( !empty( $_POST['bbp_topic_tags'] ) ) {
|
| 236 |
|
|
@@ -245,15 +250,15 @@ function bbp_new_topic_handler() {
|
|
| 245 |
$terms = array( bbp_get_topic_tag_tax_id() => $terms );
|
| 246 |
}
|
| 247 |
|
| 248 |
-
/** Additional Actions (Before Save)
|
| 249 |
|
| 250 |
do_action( 'bbp_new_topic_pre_extras' );
|
| 251 |
|
| 252 |
-
/** No Errors
|
| 253 |
|
| 254 |
if ( !bbp_has_errors() ) {
|
| 255 |
|
| 256 |
-
/** Create new topic
|
| 257 |
|
| 258 |
// Add the content of the form to $post as an array
|
| 259 |
$topic_data = array(
|
|
@@ -272,11 +277,11 @@ function bbp_new_topic_handler() {
|
|
| 272 |
// Insert topic
|
| 273 |
$topic_id = wp_insert_post( $topic_data );
|
| 274 |
|
| 275 |
-
/** No Errors
|
| 276 |
|
| 277 |
if ( !empty( $topic_id ) && !is_wp_error( $topic_id ) ) {
|
| 278 |
|
| 279 |
-
/** Stickies
|
| 280 |
|
| 281 |
if ( !empty( $_POST['bbp_stick_topic'] ) && in_array( $_POST['bbp_stick_topic'], array( 'stick', 'super', 'unstick' ) ) ) {
|
| 282 |
|
|
@@ -300,7 +305,7 @@ function bbp_new_topic_handler() {
|
|
| 300 |
}
|
| 301 |
}
|
| 302 |
|
| 303 |
-
/** Trash Check
|
| 304 |
|
| 305 |
// If the forum is trash, or the topic_status is switched to
|
| 306 |
// trash, trash it properly
|
|
@@ -313,7 +318,7 @@ function bbp_new_topic_handler() {
|
|
| 313 |
$view_all = true;
|
| 314 |
}
|
| 315 |
|
| 316 |
-
/** Spam Check
|
| 317 |
|
| 318 |
// If reply or topic are spam, officially spam this reply
|
| 319 |
if ( $topic_data['post_status'] == $bbp->spam_status_id ) {
|
|
@@ -323,11 +328,11 @@ function bbp_new_topic_handler() {
|
|
| 323 |
$view_all = true;
|
| 324 |
}
|
| 325 |
|
| 326 |
-
/** Update counts, etc...
|
| 327 |
|
| 328 |
do_action( 'bbp_new_topic', $topic_id, $forum_id, $anonymous_data, $topic_author );
|
| 329 |
|
| 330 |
-
/** Redirect
|
| 331 |
|
| 332 |
// Redirect to
|
| 333 |
$redirect_to = !empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '';
|
|
@@ -342,7 +347,7 @@ function bbp_new_topic_handler() {
|
|
| 342 |
// Allow to be filtered
|
| 343 |
$topic_url = apply_filters( 'bbp_new_topic_redirect_to', $topic_url, $redirect_to );
|
| 344 |
|
| 345 |
-
/** Successful Save
|
| 346 |
|
| 347 |
// Redirect back to new topic
|
| 348 |
wp_safe_redirect( $topic_url );
|
|
@@ -407,7 +412,7 @@ function bbp_edit_topic_handler() {
|
|
| 407 |
$topic_title = $topic_content = $topic_edit_reason = '';
|
| 408 |
$terms = array( bbp_get_topic_tag_tax_id() => array() );
|
| 409 |
|
| 410 |
-
/** Topic
|
| 411 |
|
| 412 |
// Topic id was not passed
|
| 413 |
if ( empty( $_POST['bbp_topic_id'] ) ) {
|
|
@@ -451,7 +456,7 @@ function bbp_edit_topic_handler() {
|
|
| 451 |
remove_filter( 'bbp_edit_topic_pre_content', 'wp_filter_kses' );
|
| 452 |
}
|
| 453 |
|
| 454 |
-
/** Topic Forum
|
| 455 |
|
| 456 |
// Forum id was not passed
|
| 457 |
if ( empty( $_POST['bbp_forum_id'] ) ) {
|
|
@@ -464,7 +469,7 @@ function bbp_edit_topic_handler() {
|
|
| 464 |
|
| 465 |
// Current forum this topic is in
|
| 466 |
$current_forum_id = bbp_get_topic_forum_id( $topic_id );
|
| 467 |
-
|
| 468 |
// Forum exists
|
| 469 |
if ( !empty( $forum_id ) && ( $forum_id !== $current_forum_id ) ) {
|
| 470 |
|
|
@@ -485,7 +490,7 @@ function bbp_edit_topic_handler() {
|
|
| 485 |
bbp_add_error( 'bbp_edit_topic_forum_hidden', __( '<strong>ERROR</strong>: This forum is hidden and you do not have the capability to read or create new topics in it.', 'bbpress' ) );
|
| 486 |
}
|
| 487 |
|
| 488 |
-
/** Topic Title
|
| 489 |
|
| 490 |
if ( !empty( $_POST['bbp_topic_title'] ) )
|
| 491 |
$topic_title = esc_attr( strip_tags( $_POST['bbp_topic_title'] ) );
|
|
@@ -497,7 +502,7 @@ function bbp_edit_topic_handler() {
|
|
| 497 |
if ( empty( $topic_title ) )
|
| 498 |
bbp_add_error( 'bbp_edit_topic_title', __( '<strong>ERROR</strong>: Your topic needs a title.', 'bbpress' ) );
|
| 499 |
|
| 500 |
-
/** Topic Content
|
| 501 |
|
| 502 |
if ( !empty( $_POST['bbp_topic_content'] ) )
|
| 503 |
$topic_content = $_POST['bbp_topic_content'];
|
|
@@ -509,7 +514,12 @@ function bbp_edit_topic_handler() {
|
|
| 509 |
if ( empty( $topic_content ) )
|
| 510 |
bbp_add_error( 'bbp_edit_topic_content', __( '<strong>ERROR</strong>: Your topic cannot be empty.', 'bbpress' ) );
|
| 511 |
|
| 512 |
-
/**
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 513 |
|
| 514 |
// Tags
|
| 515 |
if ( !empty( $_POST['bbp_topic_tags'] ) ) {
|
|
@@ -525,15 +535,15 @@ function bbp_edit_topic_handler() {
|
|
| 525 |
$terms = array( bbp_get_topic_tag_tax_id() => $terms );
|
| 526 |
}
|
| 527 |
|
| 528 |
-
/** Additional Actions (Before Save)
|
| 529 |
|
| 530 |
do_action( 'bbp_edit_topic_pre_extras', $topic_id );
|
| 531 |
|
| 532 |
-
/** No Errors
|
| 533 |
|
| 534 |
if ( !bbp_has_errors() ) {
|
| 535 |
|
| 536 |
-
/** Stickies
|
| 537 |
|
| 538 |
if ( !empty( $_POST['bbp_stick_topic'] ) && in_array( $_POST['bbp_stick_topic'], array( 'stick', 'super', 'unstick' ) ) ) {
|
| 539 |
|
|
@@ -558,7 +568,7 @@ function bbp_edit_topic_handler() {
|
|
| 558 |
}
|
| 559 |
}
|
| 560 |
|
| 561 |
-
/** Update the topic
|
| 562 |
|
| 563 |
// Add the content of the form to $post as an array
|
| 564 |
$topic_data = array(
|
|
@@ -575,7 +585,7 @@ function bbp_edit_topic_handler() {
|
|
| 575 |
// Insert topic
|
| 576 |
$topic_id = wp_update_post( $topic_data );
|
| 577 |
|
| 578 |
-
/** Revisions
|
| 579 |
|
| 580 |
// Revision Reason
|
| 581 |
if ( !empty( $_POST['bbp_topic_edit_reason'] ) )
|
|
@@ -591,7 +601,7 @@ function bbp_edit_topic_handler() {
|
|
| 591 |
) );
|
| 592 |
}
|
| 593 |
|
| 594 |
-
/** No Errors
|
| 595 |
|
| 596 |
if ( !empty( $topic_id ) && !is_wp_error( $topic_id ) ) {
|
| 597 |
|
|
@@ -604,11 +614,11 @@ function bbp_edit_topic_handler() {
|
|
| 604 |
if ( $forum_id != $topic->post_parent )
|
| 605 |
bbp_move_topic_handler( $topic_id, $topic->post_parent, $forum_id );
|
| 606 |
|
| 607 |
-
/** Additional Actions (After Save)
|
| 608 |
|
| 609 |
do_action( 'bbp_edit_topic_post_extras', $topic_id );
|
| 610 |
|
| 611 |
-
/** Redirect
|
| 612 |
|
| 613 |
// Redirect to
|
| 614 |
$redirect_to = !empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '';
|
|
@@ -626,7 +636,7 @@ function bbp_edit_topic_handler() {
|
|
| 626 |
// Allow to be filtered
|
| 627 |
$topic_url = apply_filters( 'bbp_edit_topic_redirect_to', $topic_url, $view_all, $redirect_to );
|
| 628 |
|
| 629 |
-
/** Successful Edit
|
| 630 |
|
| 631 |
// Redirect back to new topic
|
| 632 |
wp_safe_redirect( $topic_url );
|
|
@@ -634,7 +644,7 @@ function bbp_edit_topic_handler() {
|
|
| 634 |
// For good measure
|
| 635 |
exit();
|
| 636 |
|
| 637 |
-
/** Errors
|
| 638 |
|
| 639 |
} else {
|
| 640 |
$append_error = ( is_wp_error( $topic_id ) && $topic_id->get_error_message() ) ? $topic_id->get_error_message() . ' ' : '';
|
|
@@ -933,7 +943,7 @@ function bbp_merge_topic_handler() {
|
|
| 933 |
$source_topic = $destination_topic = 0;
|
| 934 |
$subscribers = $favoriters = $replies = array();
|
| 935 |
|
| 936 |
-
/** Source Topic
|
| 937 |
|
| 938 |
// Topic id
|
| 939 |
if ( empty( $_POST['bbp_topic_id'] ) )
|
|
@@ -952,7 +962,7 @@ function bbp_merge_topic_handler() {
|
|
| 952 |
if ( !current_user_can( 'edit_topic', $source_topic->ID ) )
|
| 953 |
bbp_add_error( 'bbp_merge_topic_source_permission', __( '<strong>ERROR</strong>: You do not have the permissions to edit the source topic.', 'bbpress' ) );
|
| 954 |
|
| 955 |
-
/** Destination Topic
|
| 956 |
|
| 957 |
// Topic id
|
| 958 |
if ( empty( $_POST['bbp_destination_topic'] ) )
|
|
@@ -968,14 +978,14 @@ function bbp_merge_topic_handler() {
|
|
| 968 |
if ( !current_user_can( 'edit_topic', $destination_topic->ID ) )
|
| 969 |
bbp_add_error( 'bbp_merge_topic_destination_permission', __( '<strong>ERROR</strong>: You do not have the permissions to edit the destination topic.', 'bbpress' ) );
|
| 970 |
|
| 971 |
-
/** No Errors
|
| 972 |
|
| 973 |
if ( !bbp_has_errors() ) {
|
| 974 |
|
| 975 |
// Update counts, etc...
|
| 976 |
do_action( 'bbp_merge_topic', $destination_topic->ID, $source_topic->ID );
|
| 977 |
|
| 978 |
-
/** Date Check
|
| 979 |
|
| 980 |
// Check if the destination topic is older than the source topic
|
| 981 |
if ( strtotime( $source_topic->post_date ) < strtotime( $destination_topic->post_date ) ) {
|
|
@@ -993,7 +1003,7 @@ function bbp_merge_topic_handler() {
|
|
| 993 |
wp_update_post( $postarr );
|
| 994 |
}
|
| 995 |
|
| 996 |
-
/** Subscriptions
|
| 997 |
|
| 998 |
// Get subscribers from source topic
|
| 999 |
$subscribers = bbp_get_topic_subscribers( $source_topic->ID );
|
|
@@ -1013,7 +1023,7 @@ function bbp_merge_topic_handler() {
|
|
| 1013 |
}
|
| 1014 |
}
|
| 1015 |
|
| 1016 |
-
/** Favorites
|
| 1017 |
|
| 1018 |
// Get favoriters from source topic
|
| 1019 |
$favoriters = bbp_get_topic_favoriters( $source_topic->ID );
|
|
@@ -1033,7 +1043,7 @@ function bbp_merge_topic_handler() {
|
|
| 1033 |
}
|
| 1034 |
}
|
| 1035 |
|
| 1036 |
-
/** Tags
|
| 1037 |
|
| 1038 |
// Get the source topic tags
|
| 1039 |
$source_topic_tags = wp_get_post_terms( $source_topic->ID, bbp_get_topic_tag_tax_id(), array( 'fields' => 'names' ) );
|
|
@@ -1049,7 +1059,7 @@ function bbp_merge_topic_handler() {
|
|
| 1049 |
wp_delete_object_term_relationships( $source_topic->ID, bbp_get_topic_tag_tax_id() );
|
| 1050 |
}
|
| 1051 |
|
| 1052 |
-
/** Source Topic
|
| 1053 |
|
| 1054 |
// Status
|
| 1055 |
bbp_open_topic( $source_topic->ID );
|
|
@@ -1094,7 +1104,7 @@ function bbp_merge_topic_handler() {
|
|
| 1094 |
}
|
| 1095 |
}
|
| 1096 |
|
| 1097 |
-
/** Successful Merge
|
| 1098 |
|
| 1099 |
// Send the post parent of the source topic as it has been shifted
|
| 1100 |
// (possibly to a new forum) so we need to update the counts of the
|
|
@@ -1196,7 +1206,7 @@ function bbp_split_topic_handler() {
|
|
| 1196 |
// Bail if not a POST action
|
| 1197 |
if ( 'POST' !== strtoupper( $_SERVER['REQUEST_METHOD'] ) )
|
| 1198 |
return;
|
| 1199 |
-
|
| 1200 |
// Bail if action is not 'bbp-split-topic'
|
| 1201 |
if ( empty( $_POST['action'] ) || ( 'bbp-split-topic' !== $_POST['action'] ) )
|
| 1202 |
return;
|
|
@@ -1209,7 +1219,7 @@ function bbp_split_topic_handler() {
|
|
| 1209 |
$destination_topic = $from_reply = $source_topic = '';
|
| 1210 |
$split_option = false;
|
| 1211 |
|
| 1212 |
-
/** Split Reply
|
| 1213 |
|
| 1214 |
if ( empty( $_POST['bbp_reply_id'] ) )
|
| 1215 |
bbp_add_error( 'bbp_split_topic_reply_id', __( '<strong>ERROR</strong>: Reply ID to split the topic from not found!', 'bbpress' ) );
|
|
@@ -1222,7 +1232,7 @@ function bbp_split_topic_handler() {
|
|
| 1222 |
if ( empty( $from_reply ) )
|
| 1223 |
bbp_add_error( 'bbp_split_topic_r_not_found', __( '<strong>ERROR</strong>: The reply you want to split from was not found.', 'bbpress' ) );
|
| 1224 |
|
| 1225 |
-
/** Topic to Split
|
| 1226 |
|
| 1227 |
// Get the topic being split
|
| 1228 |
$source_topic = bbp_get_topic( $from_reply->post_parent );
|
|
@@ -1238,7 +1248,7 @@ function bbp_split_topic_handler() {
|
|
| 1238 |
if ( !current_user_can( 'edit_topic', $source_topic->ID ) )
|
| 1239 |
bbp_add_error( 'bbp_split_topic_source_permission', __( '<strong>ERROR</strong>: You do not have the permissions to edit the source topic.', 'bbpress' ) );
|
| 1240 |
|
| 1241 |
-
/** How to Split
|
| 1242 |
|
| 1243 |
if ( !empty( $_POST['bbp_topic_split_option'] ) )
|
| 1244 |
$split_option = (string) trim( $_POST['bbp_topic_split_option'] );
|
|
@@ -1322,14 +1332,14 @@ function bbp_split_topic_handler() {
|
|
| 1322 |
}
|
| 1323 |
}
|
| 1324 |
|
| 1325 |
-
/** No Errors - Do the Spit
|
| 1326 |
|
| 1327 |
if ( !bbp_has_errors() ) {
|
| 1328 |
|
| 1329 |
// Update counts, etc...
|
| 1330 |
do_action( 'bbp_pre_split_topic', $from_reply->ID, $source_topic->ID, $destination_topic->ID );
|
| 1331 |
|
| 1332 |
-
/** Subscriptions
|
| 1333 |
|
| 1334 |
// Copy the subscribers
|
| 1335 |
if ( !empty( $_POST['bbp_topic_subscribers'] ) && 1 == $_POST['bbp_topic_subscribers'] && bbp_is_subscriptions_active() ) {
|
|
@@ -1346,7 +1356,7 @@ function bbp_split_topic_handler() {
|
|
| 1346 |
}
|
| 1347 |
}
|
| 1348 |
|
| 1349 |
-
/** Favorites
|
| 1350 |
|
| 1351 |
// Copy the favoriters if told to
|
| 1352 |
if ( !empty( $_POST['bbp_topic_favoriters'] ) && 1 == $_POST['bbp_topic_favoriters'] ) {
|
|
@@ -1363,7 +1373,7 @@ function bbp_split_topic_handler() {
|
|
| 1363 |
}
|
| 1364 |
}
|
| 1365 |
|
| 1366 |
-
/** Tags
|
| 1367 |
|
| 1368 |
// Copy the tags if told to
|
| 1369 |
if ( !empty( $_POST['bbp_topic_tags'] ) && ( 1 == $_POST['bbp_topic_tags'] ) ) {
|
|
@@ -1419,7 +1429,7 @@ function bbp_split_topic_handler() {
|
|
| 1419 |
bbp_update_topic_last_active_time( $destination_topic->ID, $freshness );
|
| 1420 |
}
|
| 1421 |
|
| 1422 |
-
/** Successful Split
|
| 1423 |
|
| 1424 |
// Update counts, etc...
|
| 1425 |
do_action( 'bbp_post_split_topic', $from_reply->ID, $source_topic->ID, $destination_topic->ID );
|
|
@@ -1498,7 +1508,7 @@ function bbp_manage_topic_tag_handler() {
|
|
| 1498 |
// Bail if not a POST action
|
| 1499 |
if ( 'POST' !== strtoupper( $_SERVER['REQUEST_METHOD'] ) )
|
| 1500 |
return;
|
| 1501 |
-
|
| 1502 |
// Bail if required POST actions aren't passed
|
| 1503 |
if ( empty( $_POST['tag-id'] ) || empty( $_POST['action'] ) )
|
| 1504 |
return;
|
|
@@ -1577,7 +1587,7 @@ function bbp_manage_topic_tag_handler() {
|
|
| 1577 |
}
|
| 1578 |
|
| 1579 |
// No tag name was provided
|
| 1580 |
-
if ( empty( $_POST['tag-name'] ) || !$name = $_POST['tag-name'] ) {
|
| 1581 |
bbp_add_error( 'bbp_manage_topic_tag_merge_name', __( '<strong>ERROR</strong>: You need to enter a tag name.', 'bbpress' ) );
|
| 1582 |
return;
|
| 1583 |
}
|
|
@@ -1648,7 +1658,7 @@ function bbp_manage_topic_tag_handler() {
|
|
| 1648 |
break;
|
| 1649 |
}
|
| 1650 |
|
| 1651 |
-
/** Successful Moderation
|
| 1652 |
|
| 1653 |
// Redirect back
|
| 1654 |
$redirect = ( !empty( $redirect ) && !is_wp_error( $redirect ) ) ? $redirect : home_url();
|
|
@@ -2369,7 +2379,7 @@ function bbp_open_topic( $topic_id = 0 ) {
|
|
| 2369 |
|
| 2370 |
// Get previous status
|
| 2371 |
$topic_status = get_post_meta( $topic_id, '_bbp_status', true );
|
| 2372 |
-
|
| 2373 |
// Set previous status
|
| 2374 |
$topic['post_status'] = $topic_status;
|
| 2375 |
|
|
@@ -2419,12 +2429,34 @@ function bbp_spam_topic( $topic_id = 0 ) {
|
|
| 2419 |
// Add the original post status as post meta for future restoration
|
| 2420 |
add_post_meta( $topic_id, '_bbp_spam_meta_status', $topic['post_status'] );
|
| 2421 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2422 |
// Set post status to spam
|
| 2423 |
$topic['post_status'] = $bbp->spam_status_id;
|
| 2424 |
|
| 2425 |
// No revisions
|
| 2426 |
remove_action( 'pre_post_update', 'wp_save_post_revision' );
|
| 2427 |
-
|
| 2428 |
// Update the topic
|
| 2429 |
$topic_id = wp_insert_post( $topic );
|
| 2430 |
|
|
@@ -2464,8 +2496,8 @@ function bbp_unspam_topic( $topic_id = 0 ) {
|
|
| 2464 |
do_action( 'bbp_unspam_topic', $topic_id );
|
| 2465 |
|
| 2466 |
// Get pre spam status
|
| 2467 |
-
$topic_status
|
| 2468 |
-
|
| 2469 |
// Set post status to pre spam
|
| 2470 |
$topic['post_status'] = $topic_status;
|
| 2471 |
|
|
@@ -2475,6 +2507,19 @@ function bbp_unspam_topic( $topic_id = 0 ) {
|
|
| 2475 |
// No revisions
|
| 2476 |
remove_action( 'pre_post_update', 'wp_save_post_revision' );
|
| 2477 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2478 |
// Update the topic
|
| 2479 |
$topic_id = wp_insert_post( $topic );
|
| 2480 |
|
|
@@ -2666,11 +2711,18 @@ function bbp_untrash_topic( $topic_id = 0 ) {
|
|
| 2666 |
|
| 2667 |
do_action( 'bbp_untrash_topic', $topic_id );
|
| 2668 |
|
| 2669 |
-
//
|
| 2670 |
$pre_trashed_replies = get_post_meta( $topic_id, '_bbp_pre_trashed_replies', true );
|
| 2671 |
|
|
|
|
| 2672 |
if ( !empty( $pre_trashed_replies ) ) {
|
| 2673 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2674 |
wp_untrash_post( $reply );
|
| 2675 |
}
|
| 2676 |
}
|
|
@@ -2733,8 +2785,7 @@ function bbp_untrashed_topic( $topic_id = 0 ) {
|
|
| 2733 |
*
|
| 2734 |
* @since bbPress (r3171)
|
| 2735 |
*
|
| 2736 |
-
* @
|
| 2737 |
-
*
|
| 2738 |
* @uses bbp_is_single_topic()
|
| 2739 |
* @uses bbp_user_can_view_forum()
|
| 2740 |
* @uses bbp_get_topic_forum_id()
|
|
@@ -2759,7 +2810,6 @@ function bbp_untrashed_topic( $topic_id = 0 ) {
|
|
| 2759 |
* @param array $topics_query
|
| 2760 |
*/
|
| 2761 |
function bbp_display_topics_feed_rss2( $topics_query = array() ) {
|
| 2762 |
-
global $bbp;
|
| 2763 |
|
| 2764 |
// User cannot access this forum
|
| 2765 |
if ( bbp_is_single_forum() && !bbp_user_can_view_forum( array( 'forum_id' => bbp_get_forum_id() ) ) )
|
|
@@ -2786,7 +2836,7 @@ function bbp_display_topics_feed_rss2( $topics_query = array() ) {
|
|
| 2786 |
<link><?php self_link(); ?></link>
|
| 2787 |
<description><?php //?></description>
|
| 2788 |
<pubDate><?php echo mysql2date( 'D, d M Y H:i:s O', '', false ); ?></pubDate>
|
| 2789 |
-
<generator>http://bbpress.org/?v=<?php
|
| 2790 |
<language><?php echo get_option( 'rss_language' ); ?></language>
|
| 2791 |
|
| 2792 |
<?php do_action( 'bbp_feed_head' ); ?>
|
| 134 |
$topic_title = $topic_content = '';
|
| 135 |
$terms = array( bbp_get_topic_tag_tax_id() => array() );
|
| 136 |
|
| 137 |
+
/** Topic Author **********************************************************/
|
| 138 |
|
| 139 |
// User is anonymous
|
| 140 |
if ( bbp_is_anonymous() ) {
|
| 166 |
remove_filter( 'bbp_new_topic_pre_content', 'wp_filter_kses' );
|
| 167 |
}
|
| 168 |
|
| 169 |
+
/** Topic Title ***********************************************************/
|
| 170 |
|
| 171 |
if ( !empty( $_POST['bbp_topic_title'] ) )
|
| 172 |
$topic_title = esc_attr( strip_tags( $_POST['bbp_topic_title'] ) );
|
| 178 |
if ( empty( $topic_title ) )
|
| 179 |
bbp_add_error( 'bbp_topic_title', __( '<strong>ERROR</strong>: Your topic needs a title.', 'bbpress' ) );
|
| 180 |
|
| 181 |
+
/** Topic Content *********************************************************/
|
| 182 |
|
| 183 |
if ( !empty( $_POST['bbp_topic_content'] ) )
|
| 184 |
$topic_content = $_POST['bbp_topic_content'];
|
| 190 |
if ( empty( $topic_content ) )
|
| 191 |
bbp_add_error( 'bbp_topic_content', __( '<strong>ERROR</strong>: Your topic cannot be empty.', 'bbpress' ) );
|
| 192 |
|
| 193 |
+
/** Topic Forum ***********************************************************/
|
| 194 |
|
| 195 |
// Forum id was not passed
|
| 196 |
if ( empty( $_POST['bbp_forum_id'] ) )
|
| 220 |
bbp_add_error( 'bbp_edit_topic_forum_hidden', __( '<strong>ERROR</strong>: This forum is hidden and you do not have the capability to read or create new topics in it.', 'bbpress' ) );
|
| 221 |
}
|
| 222 |
|
| 223 |
+
/** Topic Flooding ********************************************************/
|
| 224 |
|
| 225 |
if ( !bbp_check_for_flood( $anonymous_data, $topic_author ) )
|
| 226 |
bbp_add_error( 'bbp_topic_flood', __( '<strong>ERROR</strong>: Slow down; you move too fast.', 'bbpress' ) );
|
| 227 |
|
| 228 |
+
/** Topic Duplicate *******************************************************/
|
| 229 |
|
| 230 |
if ( !bbp_check_for_duplicate( array( 'post_type' => bbp_get_topic_post_type(), 'post_author' => $topic_author, 'post_content' => $topic_content, 'anonymous_data' => $anonymous_data ) ) )
|
| 231 |
bbp_add_error( 'bbp_topic_duplicate', __( '<strong>ERROR</strong>: Duplicate topic detected; it looks as though you’ve already said that!', 'bbpress' ) );
|
| 232 |
|
| 233 |
+
/** topic Blacklist *******************************************************/
|
| 234 |
+
|
| 235 |
+
if ( !bbp_check_for_blacklist( $anonymous_data, $topic_author, $topic_title, $topic_content ) )
|
| 236 |
+
bbp_add_error( 'bbp_topic_blacklist', __( '<strong>ERROR</strong>: Your topic cannot be created at this time.', 'bbpress' ) );
|
| 237 |
+
|
| 238 |
+
/** Topic Tags ************************************************************/
|
| 239 |
|
| 240 |
if ( !empty( $_POST['bbp_topic_tags'] ) ) {
|
| 241 |
|
| 250 |
$terms = array( bbp_get_topic_tag_tax_id() => $terms );
|
| 251 |
}
|
| 252 |
|
| 253 |
+
/** Additional Actions (Before Save) **************************************/
|
| 254 |
|
| 255 |
do_action( 'bbp_new_topic_pre_extras' );
|
| 256 |
|
| 257 |
+
/** No Errors *************************************************************/
|
| 258 |
|
| 259 |
if ( !bbp_has_errors() ) {
|
| 260 |
|
| 261 |
+
/** Create new topic **************************************************/
|
| 262 |
|
| 263 |
// Add the content of the form to $post as an array
|
| 264 |
$topic_data = array(
|
| 277 |
// Insert topic
|
| 278 |
$topic_id = wp_insert_post( $topic_data );
|
| 279 |
|
| 280 |
+
/** No Errors *********************************************************/
|
| 281 |
|
| 282 |
if ( !empty( $topic_id ) && !is_wp_error( $topic_id ) ) {
|
| 283 |
|
| 284 |
+
/** Stickies ******************************************************/
|
| 285 |
|
| 286 |
if ( !empty( $_POST['bbp_stick_topic'] ) && in_array( $_POST['bbp_stick_topic'], array( 'stick', 'super', 'unstick' ) ) ) {
|
| 287 |
|
| 305 |
}
|
| 306 |
}
|
| 307 |
|
| 308 |
+
/** Trash Check ***************************************************/
|
| 309 |
|
| 310 |
// If the forum is trash, or the topic_status is switched to
|
| 311 |
// trash, trash it properly
|
| 318 |
$view_all = true;
|
| 319 |
}
|
| 320 |
|
| 321 |
+
/** Spam Check ****************************************************/
|
| 322 |
|
| 323 |
// If reply or topic are spam, officially spam this reply
|
| 324 |
if ( $topic_data['post_status'] == $bbp->spam_status_id ) {
|
| 328 |
$view_all = true;
|
| 329 |
}
|
| 330 |
|
| 331 |
+
/** Update counts, etc... *****************************************/
|
| 332 |
|
| 333 |
do_action( 'bbp_new_topic', $topic_id, $forum_id, $anonymous_data, $topic_author );
|
| 334 |
|
| 335 |
+
/** Redirect ******************************************************/
|
| 336 |
|
| 337 |
// Redirect to
|
| 338 |
$redirect_to = !empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '';
|
| 347 |
// Allow to be filtered
|
| 348 |
$topic_url = apply_filters( 'bbp_new_topic_redirect_to', $topic_url, $redirect_to );
|
| 349 |
|
| 350 |
+
/** Successful Save ***********************************************/
|
| 351 |
|
| 352 |
// Redirect back to new topic
|
| 353 |
wp_safe_redirect( $topic_url );
|
| 412 |
$topic_title = $topic_content = $topic_edit_reason = '';
|
| 413 |
$terms = array( bbp_get_topic_tag_tax_id() => array() );
|
| 414 |
|
| 415 |
+
/** Topic *****************************************************************/
|
| 416 |
|
| 417 |
// Topic id was not passed
|
| 418 |
if ( empty( $_POST['bbp_topic_id'] ) ) {
|
| 456 |
remove_filter( 'bbp_edit_topic_pre_content', 'wp_filter_kses' );
|
| 457 |
}
|
| 458 |
|
| 459 |
+
/** Topic Forum ***********************************************************/
|
| 460 |
|
| 461 |
// Forum id was not passed
|
| 462 |
if ( empty( $_POST['bbp_forum_id'] ) ) {
|
| 469 |
|
| 470 |
// Current forum this topic is in
|
| 471 |
$current_forum_id = bbp_get_topic_forum_id( $topic_id );
|
| 472 |
+
|
| 473 |
// Forum exists
|
| 474 |
if ( !empty( $forum_id ) && ( $forum_id !== $current_forum_id ) ) {
|
| 475 |
|
| 490 |
bbp_add_error( 'bbp_edit_topic_forum_hidden', __( '<strong>ERROR</strong>: This forum is hidden and you do not have the capability to read or create new topics in it.', 'bbpress' ) );
|
| 491 |
}
|
| 492 |
|
| 493 |
+
/** Topic Title ***********************************************************/
|
| 494 |
|
| 495 |
if ( !empty( $_POST['bbp_topic_title'] ) )
|
| 496 |
$topic_title = esc_attr( strip_tags( $_POST['bbp_topic_title'] ) );
|
| 502 |
if ( empty( $topic_title ) )
|
| 503 |
bbp_add_error( 'bbp_edit_topic_title', __( '<strong>ERROR</strong>: Your topic needs a title.', 'bbpress' ) );
|
| 504 |
|
| 505 |
+
/** Topic Content *********************************************************/
|
| 506 |
|
| 507 |
if ( !empty( $_POST['bbp_topic_content'] ) )
|
| 508 |
$topic_content = $_POST['bbp_topic_content'];
|
| 514 |
if ( empty( $topic_content ) )
|
| 515 |
bbp_add_error( 'bbp_edit_topic_content', __( '<strong>ERROR</strong>: Your topic cannot be empty.', 'bbpress' ) );
|
| 516 |
|
| 517 |
+
/** topic Blacklist *******************************************************/
|
| 518 |
+
|
| 519 |
+
if ( !bbp_check_for_blacklist( $anonymous_data, bbp_get_topic_author_id( $topic_id ), $topic_title, $topic_content ) )
|
| 520 |
+
bbp_add_error( 'bbp_topic_blacklist', __( '<strong>ERROR</strong>: Your topic cannot be edited at this time.', 'bbpress' ) );
|
| 521 |
+
|
| 522 |
+
/** Topic Tags ************************************************************/
|
| 523 |
|
| 524 |
// Tags
|
| 525 |
if ( !empty( $_POST['bbp_topic_tags'] ) ) {
|
| 535 |
$terms = array( bbp_get_topic_tag_tax_id() => $terms );
|
| 536 |
}
|
| 537 |
|
| 538 |
+
/** Additional Actions (Before Save) **************************************/
|
| 539 |
|
| 540 |
do_action( 'bbp_edit_topic_pre_extras', $topic_id );
|
| 541 |
|
| 542 |
+
/** No Errors *************************************************************/
|
| 543 |
|
| 544 |
if ( !bbp_has_errors() ) {
|
| 545 |
|
| 546 |
+
/** Stickies **********************************************************/
|
| 547 |
|
| 548 |
if ( !empty( $_POST['bbp_stick_topic'] ) && in_array( $_POST['bbp_stick_topic'], array( 'stick', 'super', 'unstick' ) ) ) {
|
| 549 |
|
| 568 |
}
|
| 569 |
}
|
| 570 |
|
| 571 |
+
/** Update the topic **************************************************/
|
| 572 |
|
| 573 |
// Add the content of the form to $post as an array
|
| 574 |
$topic_data = array(
|
| 585 |
// Insert topic
|
| 586 |
$topic_id = wp_update_post( $topic_data );
|
| 587 |
|
| 588 |
+
/** Revisions *********************************************************/
|
| 589 |
|
| 590 |
// Revision Reason
|
| 591 |
if ( !empty( $_POST['bbp_topic_edit_reason'] ) )
|
| 601 |
) );
|
| 602 |
}
|
| 603 |
|
| 604 |
+
/** No Errors *********************************************************/
|
| 605 |
|
| 606 |
if ( !empty( $topic_id ) && !is_wp_error( $topic_id ) ) {
|
| 607 |
|
| 614 |
if ( $forum_id != $topic->post_parent )
|
| 615 |
bbp_move_topic_handler( $topic_id, $topic->post_parent, $forum_id );
|
| 616 |
|
| 617 |
+
/** Additional Actions (After Save) *******************************/
|
| 618 |
|
| 619 |
do_action( 'bbp_edit_topic_post_extras', $topic_id );
|
| 620 |
|
| 621 |
+
/** Redirect ******************************************************/
|
| 622 |
|
| 623 |
// Redirect to
|
| 624 |
$redirect_to = !empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '';
|
| 636 |
// Allow to be filtered
|
| 637 |
$topic_url = apply_filters( 'bbp_edit_topic_redirect_to', $topic_url, $view_all, $redirect_to );
|
| 638 |
|
| 639 |
+
/** Successful Edit ***********************************************/
|
| 640 |
|
| 641 |
// Redirect back to new topic
|
| 642 |
wp_safe_redirect( $topic_url );
|
| 644 |
// For good measure
|
| 645 |
exit();
|
| 646 |
|
| 647 |
+
/** Errors ************************************************************/
|
| 648 |
|
| 649 |
} else {
|
| 650 |
$append_error = ( is_wp_error( $topic_id ) && $topic_id->get_error_message() ) ? $topic_id->get_error_message() . ' ' : '';
|
| 943 |
$source_topic = $destination_topic = 0;
|
| 944 |
$subscribers = $favoriters = $replies = array();
|
| 945 |
|
| 946 |
+
/** Source Topic **********************************************************/
|
| 947 |
|
| 948 |
// Topic id
|
| 949 |
if ( empty( $_POST['bbp_topic_id'] ) )
|
| 962 |
if ( !current_user_can( 'edit_topic', $source_topic->ID ) )
|
| 963 |
bbp_add_error( 'bbp_merge_topic_source_permission', __( '<strong>ERROR</strong>: You do not have the permissions to edit the source topic.', 'bbpress' ) );
|
| 964 |
|
| 965 |
+
/** Destination Topic *****************************************************/
|
| 966 |
|
| 967 |
// Topic id
|
| 968 |
if ( empty( $_POST['bbp_destination_topic'] ) )
|
| 978 |
if ( !current_user_can( 'edit_topic', $destination_topic->ID ) )
|
| 979 |
bbp_add_error( 'bbp_merge_topic_destination_permission', __( '<strong>ERROR</strong>: You do not have the permissions to edit the destination topic.', 'bbpress' ) );
|
| 980 |
|
| 981 |
+
/** No Errors *************************************************************/
|
| 982 |
|
| 983 |
if ( !bbp_has_errors() ) {
|
| 984 |
|
| 985 |
// Update counts, etc...
|
| 986 |
do_action( 'bbp_merge_topic', $destination_topic->ID, $source_topic->ID );
|
| 987 |
|
| 988 |
+
/** Date Check ********************************************************/
|
| 989 |
|
| 990 |
// Check if the destination topic is older than the source topic
|
| 991 |
if ( strtotime( $source_topic->post_date ) < strtotime( $destination_topic->post_date ) ) {
|
| 1003 |
wp_update_post( $postarr );
|
| 1004 |
}
|
| 1005 |
|
| 1006 |
+
/** Subscriptions *****************************************************/
|
| 1007 |
|
| 1008 |
// Get subscribers from source topic
|
| 1009 |
$subscribers = bbp_get_topic_subscribers( $source_topic->ID );
|
| 1023 |
}
|
| 1024 |
}
|
| 1025 |
|
| 1026 |
+
/** Favorites *********************************************************/
|
| 1027 |
|
| 1028 |
// Get favoriters from source topic
|
| 1029 |
$favoriters = bbp_get_topic_favoriters( $source_topic->ID );
|
| 1043 |
}
|
| 1044 |
}
|
| 1045 |
|
| 1046 |
+
/** Tags **************************************************************/
|
| 1047 |
|
| 1048 |
// Get the source topic tags
|
| 1049 |
$source_topic_tags = wp_get_post_terms( $source_topic->ID, bbp_get_topic_tag_tax_id(), array( 'fields' => 'names' ) );
|
| 1059 |
wp_delete_object_term_relationships( $source_topic->ID, bbp_get_topic_tag_tax_id() );
|
| 1060 |
}
|
| 1061 |
|
| 1062 |
+
/** Source Topic ******************************************************/
|
| 1063 |
|
| 1064 |
// Status
|
| 1065 |
bbp_open_topic( $source_topic->ID );
|
| 1104 |
}
|
| 1105 |
}
|
| 1106 |
|
| 1107 |
+
/** Successful Merge **************************************************/
|
| 1108 |
|
| 1109 |
// Send the post parent of the source topic as it has been shifted
|
| 1110 |
// (possibly to a new forum) so we need to update the counts of the
|
| 1206 |
// Bail if not a POST action
|
| 1207 |
if ( 'POST' !== strtoupper( $_SERVER['REQUEST_METHOD'] ) )
|
| 1208 |
return;
|
| 1209 |
+
|
| 1210 |
// Bail if action is not 'bbp-split-topic'
|
| 1211 |
if ( empty( $_POST['action'] ) || ( 'bbp-split-topic' !== $_POST['action'] ) )
|
| 1212 |
return;
|
| 1219 |
$destination_topic = $from_reply = $source_topic = '';
|
| 1220 |
$split_option = false;
|
| 1221 |
|
| 1222 |
+
/** Split Reply ***********************************************************/
|
| 1223 |
|
| 1224 |
if ( empty( $_POST['bbp_reply_id'] ) )
|
| 1225 |
bbp_add_error( 'bbp_split_topic_reply_id', __( '<strong>ERROR</strong>: Reply ID to split the topic from not found!', 'bbpress' ) );
|
| 1232 |
if ( empty( $from_reply ) )
|
| 1233 |
bbp_add_error( 'bbp_split_topic_r_not_found', __( '<strong>ERROR</strong>: The reply you want to split from was not found.', 'bbpress' ) );
|
| 1234 |
|
| 1235 |
+
/** Topic to Split ********************************************************/
|
| 1236 |
|
| 1237 |
// Get the topic being split
|
| 1238 |
$source_topic = bbp_get_topic( $from_reply->post_parent );
|
| 1248 |
if ( !current_user_can( 'edit_topic', $source_topic->ID ) )
|
| 1249 |
bbp_add_error( 'bbp_split_topic_source_permission', __( '<strong>ERROR</strong>: You do not have the permissions to edit the source topic.', 'bbpress' ) );
|
| 1250 |
|
| 1251 |
+
/** How to Split **********************************************************/
|
| 1252 |
|
| 1253 |
if ( !empty( $_POST['bbp_topic_split_option'] ) )
|
| 1254 |
$split_option = (string) trim( $_POST['bbp_topic_split_option'] );
|
| 1332 |
}
|
| 1333 |
}
|
| 1334 |
|
| 1335 |
+
/** No Errors - Do the Spit ***********************************************/
|
| 1336 |
|
| 1337 |
if ( !bbp_has_errors() ) {
|
| 1338 |
|
| 1339 |
// Update counts, etc...
|
| 1340 |
do_action( 'bbp_pre_split_topic', $from_reply->ID, $source_topic->ID, $destination_topic->ID );
|
| 1341 |
|
| 1342 |
+
/** Subscriptions *****************************************************/
|
| 1343 |
|
| 1344 |
// Copy the subscribers
|
| 1345 |
if ( !empty( $_POST['bbp_topic_subscribers'] ) && 1 == $_POST['bbp_topic_subscribers'] && bbp_is_subscriptions_active() ) {
|
| 1356 |
}
|
| 1357 |
}
|
| 1358 |
|
| 1359 |
+
/** Favorites *********************************************************/
|
| 1360 |
|
| 1361 |
// Copy the favoriters if told to
|
| 1362 |
if ( !empty( $_POST['bbp_topic_favoriters'] ) && 1 == $_POST['bbp_topic_favoriters'] ) {
|
| 1373 |
}
|
| 1374 |
}
|
| 1375 |
|
| 1376 |
+
/** Tags **************************************************************/
|
| 1377 |
|
| 1378 |
// Copy the tags if told to
|
| 1379 |
if ( !empty( $_POST['bbp_topic_tags'] ) && ( 1 == $_POST['bbp_topic_tags'] ) ) {
|
| 1429 |
bbp_update_topic_last_active_time( $destination_topic->ID, $freshness );
|
| 1430 |
}
|
| 1431 |
|
| 1432 |
+
/** Successful Split **************************************************/
|
| 1433 |
|
| 1434 |
// Update counts, etc...
|
| 1435 |
do_action( 'bbp_post_split_topic', $from_reply->ID, $source_topic->ID, $destination_topic->ID );
|
| 1508 |
// Bail if not a POST action
|
| 1509 |
if ( 'POST' !== strtoupper( $_SERVER['REQUEST_METHOD'] ) )
|
| 1510 |
return;
|
| 1511 |
+
|
| 1512 |
// Bail if required POST actions aren't passed
|
| 1513 |
if ( empty( $_POST['tag-id'] ) || empty( $_POST['action'] ) )
|
| 1514 |
return;
|
| 1587 |
}
|
| 1588 |
|
| 1589 |
// No tag name was provided
|
| 1590 |
+
if ( empty( $_POST['tag-existing-name'] ) || !$name = $_POST['tag-existing-name'] ) {
|
| 1591 |
bbp_add_error( 'bbp_manage_topic_tag_merge_name', __( '<strong>ERROR</strong>: You need to enter a tag name.', 'bbpress' ) );
|
| 1592 |
return;
|
| 1593 |
}
|
| 1658 |
break;
|
| 1659 |
}
|
| 1660 |
|
| 1661 |
+
/** Successful Moderation *************************************************/
|
| 1662 |
|
| 1663 |
// Redirect back
|
| 1664 |
$redirect = ( !empty( $redirect ) && !is_wp_error( $redirect ) ) ? $redirect : home_url();
|
| 2379 |
|
| 2380 |
// Get previous status
|
| 2381 |
$topic_status = get_post_meta( $topic_id, '_bbp_status', true );
|
| 2382 |
+
|
| 2383 |
// Set previous status
|
| 2384 |
$topic['post_status'] = $topic_status;
|
| 2385 |
|
| 2429 |
// Add the original post status as post meta for future restoration
|
| 2430 |
add_post_meta( $topic_id, '_bbp_spam_meta_status', $topic['post_status'] );
|
| 2431 |
|
| 2432 |
+
// Get topic tags
|
| 2433 |
+
$terms = get_the_terms( $topic_id, bbp_get_topic_tag_tax_id() );
|
| 2434 |
+
|
| 2435 |
+
// Topic has tags
|
| 2436 |
+
if ( !empty( $terms ) ) {
|
| 2437 |
+
|
| 2438 |
+
// Loop through and collect term names
|
| 2439 |
+
foreach( $terms as $term ) {
|
| 2440 |
+
$term_names[] = $term->name;
|
| 2441 |
+
}
|
| 2442 |
+
|
| 2443 |
+
// Topic terms have slugs
|
| 2444 |
+
if ( !empty( $term_names ) ) {
|
| 2445 |
+
|
| 2446 |
+
// Add the original post status as post meta for future restoration
|
| 2447 |
+
add_post_meta( $topic_id, '_bbp_spam_topic_tags', $term_names );
|
| 2448 |
+
|
| 2449 |
+
// Empty the topic of its tags
|
| 2450 |
+
$topic['tax_input'] = array( bbp_get_topic_tag_tax_id() => '' );
|
| 2451 |
+
}
|
| 2452 |
+
}
|
| 2453 |
+
|
| 2454 |
// Set post status to spam
|
| 2455 |
$topic['post_status'] = $bbp->spam_status_id;
|
| 2456 |
|
| 2457 |
// No revisions
|
| 2458 |
remove_action( 'pre_post_update', 'wp_save_post_revision' );
|
| 2459 |
+
|
| 2460 |
// Update the topic
|
| 2461 |
$topic_id = wp_insert_post( $topic );
|
| 2462 |
|
| 2496 |
do_action( 'bbp_unspam_topic', $topic_id );
|
| 2497 |
|
| 2498 |
// Get pre spam status
|
| 2499 |
+
$topic_status = get_post_meta( $topic_id, '_bbp_spam_meta_status', true );
|
| 2500 |
+
|
| 2501 |
// Set post status to pre spam
|
| 2502 |
$topic['post_status'] = $topic_status;
|
| 2503 |
|
| 2507 |
// No revisions
|
| 2508 |
remove_action( 'pre_post_update', 'wp_save_post_revision' );
|
| 2509 |
|
| 2510 |
+
// Get pre-spam topic tags
|
| 2511 |
+
$terms = get_post_meta( $topic_id, '_bbp_spam_topic_tags', true );
|
| 2512 |
+
|
| 2513 |
+
// Topic had tags before it was spammed
|
| 2514 |
+
if ( !empty( $terms ) ) {
|
| 2515 |
+
|
| 2516 |
+
// Set the tax_input of the topic
|
| 2517 |
+
$topic['tax_input'] = array( bbp_get_topic_tag_tax_id() => $terms );
|
| 2518 |
+
|
| 2519 |
+
// Delete pre-spam topic tag meta
|
| 2520 |
+
delete_post_meta( $topic_id, '_bbp_spam_topic_tags' );
|
| 2521 |
+
}
|
| 2522 |
+
|
| 2523 |
// Update the topic
|
| 2524 |
$topic_id = wp_insert_post( $topic );
|
| 2525 |
|
| 2711 |
|
| 2712 |
do_action( 'bbp_untrash_topic', $topic_id );
|
| 2713 |
|
| 2714 |
+
// Get the replies that were not previously trashed
|
| 2715 |
$pre_trashed_replies = get_post_meta( $topic_id, '_bbp_pre_trashed_replies', true );
|
| 2716 |
|
| 2717 |
+
// There are replies to untrash
|
| 2718 |
if ( !empty( $pre_trashed_replies ) ) {
|
| 2719 |
+
|
| 2720 |
+
// Maybe reverse the trashed replies array
|
| 2721 |
+
if ( is_array( $pre_trashed_replies ) )
|
| 2722 |
+
$pre_trashed_replies = array_reverse( $pre_trashed_replies );
|
| 2723 |
+
|
| 2724 |
+
// Loop through replies
|
| 2725 |
+
foreach ( (array) $pre_trashed_replies as $reply ) {
|
| 2726 |
wp_untrash_post( $reply );
|
| 2727 |
}
|
| 2728 |
}
|
| 2785 |
*
|
| 2786 |
* @since bbPress (r3171)
|
| 2787 |
*
|
| 2788 |
+
* @uses bbp_version()
|
|
|
|
| 2789 |
* @uses bbp_is_single_topic()
|
| 2790 |
* @uses bbp_user_can_view_forum()
|
| 2791 |
* @uses bbp_get_topic_forum_id()
|
| 2810 |
* @param array $topics_query
|
| 2811 |
*/
|
| 2812 |
function bbp_display_topics_feed_rss2( $topics_query = array() ) {
|
|
|
|
| 2813 |
|
| 2814 |
// User cannot access this forum
|
| 2815 |
if ( bbp_is_single_forum() && !bbp_user_can_view_forum( array( 'forum_id' => bbp_get_forum_id() ) ) )
|
| 2836 |
<link><?php self_link(); ?></link>
|
| 2837 |
<description><?php //?></description>
|
| 2838 |
<pubDate><?php echo mysql2date( 'D, d M Y H:i:s O', '', false ); ?></pubDate>
|
| 2839 |
+
<generator>http://bbpress.org/?v=<?php bbp_version(); ?></generator>
|
| 2840 |
<language><?php echo get_option( 'rss_language' ); ?></language>
|
| 2841 |
|
| 2842 |
<?php do_action( 'bbp_feed_head' ); ?>
|
bbp-includes/bbp-topic-template.php
CHANGED
|
@@ -668,7 +668,7 @@ function bbp_topic_pagination( $args = '' ) {
|
|
| 668 |
if ( $wp_rewrite->using_permalinks() )
|
| 669 |
$base = trailingslashit( get_permalink( $topic_id ) ) . user_trailingslashit( $wp_rewrite->pagination_base . '/%#%/' );
|
| 670 |
else
|
| 671 |
-
$base = add_query_arg( 'paged', '%#%' );
|
| 672 |
|
| 673 |
// Get total and add 1 if topic is included in the reply loop
|
| 674 |
$total = bbp_get_topic_reply_count( $topic_id );
|
|
@@ -1282,15 +1282,70 @@ function bbp_topic_author_url( $topic_id = 0 ) {
|
|
| 1282 |
$topic_id = bbp_get_topic_id( $topic_id );
|
| 1283 |
|
| 1284 |
// Check for anonymous user
|
| 1285 |
-
if ( !bbp_is_topic_anonymous( $topic_id ) )
|
| 1286 |
$author_url = bbp_get_user_profile_url( bbp_get_topic_author_id( $topic_id ) );
|
| 1287 |
-
else
|
| 1288 |
-
if ( !$author_url = get_post_meta( $topic_id, '_bbp_anonymous_website', true ) )
|
| 1289 |
$author_url = '';
|
|
|
|
|
|
|
| 1290 |
|
| 1291 |
return apply_filters( 'bbp_get_topic_author_url', $author_url, $topic_id );
|
| 1292 |
}
|
| 1293 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1294 |
/**
|
| 1295 |
* Output the title of the forum a topic belongs to
|
| 1296 |
*
|
|
@@ -1561,7 +1616,7 @@ function bbp_topic_last_reply_url( $topic_id = 0 ) {
|
|
| 1561 |
* @param int $topic_id Optional. Topic id
|
| 1562 |
* @uses bbp_get_topic_freshness_link() To get the topic freshness link
|
| 1563 |
*/
|
| 1564 |
-
function bbp_topic_freshness_link( $topic_id = 0) {
|
| 1565 |
echo bbp_get_topic_freshness_link( $topic_id );
|
| 1566 |
}
|
| 1567 |
/**
|
|
@@ -1814,7 +1869,28 @@ function bbp_topic_tag_list( $topic_id = 0, $args = '' ) {
|
|
| 1814 |
|
| 1815 |
$topic_id = bbp_get_topic_id( $topic_id );
|
| 1816 |
|
| 1817 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1818 |
}
|
| 1819 |
|
| 1820 |
/**
|
|
@@ -2407,15 +2483,31 @@ function bbp_forum_pagination_count() {
|
|
| 2407 |
$to_num = bbp_number_format( ( $start_num + ( $bbp->topic_query->posts_per_page - 1 ) > $bbp->topic_query->found_posts ) ? $bbp->topic_query->found_posts : $start_num + ( $bbp->topic_query->posts_per_page - 1 ) );
|
| 2408 |
$total = bbp_number_format( !empty( $bbp->topic_query->found_posts ) ? $bbp->topic_query->found_posts : $bbp->topic_query->post_count );
|
| 2409 |
|
| 2410 |
-
|
| 2411 |
-
|
| 2412 |
-
|
| 2413 |
-
|
| 2414 |
-
|
| 2415 |
-
|
| 2416 |
-
|
| 2417 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2418 |
$retstr = sprintf( __( 'Viewing %1$s topic', 'bbpress' ), $total );
|
|
|
|
| 2419 |
|
| 2420 |
// Filter and return
|
| 2421 |
return apply_filters( 'bbp_get_topic_pagination_count', $retstr );
|
|
@@ -2862,7 +2954,7 @@ function bbp_topic_tag_edit_link( $tag = '' ) {
|
|
| 2862 |
* @return string Term Name
|
| 2863 |
*/
|
| 2864 |
function bbp_get_topic_tag_edit_link( $tag = '' ) {
|
| 2865 |
-
global $wp_query;
|
| 2866 |
|
| 2867 |
// Get the term
|
| 2868 |
$tag = !empty( $tag ) ? $tag : get_query_var( 'term' );
|
|
@@ -2877,7 +2969,7 @@ function bbp_topic_tag_edit_link( $tag = '' ) {
|
|
| 2877 |
|
| 2878 |
// Ugly
|
| 2879 |
} else {
|
| 2880 |
-
$retval = add_query_arg( array( '
|
| 2881 |
}
|
| 2882 |
|
| 2883 |
// No link
|
|
@@ -3040,19 +3132,36 @@ function bbp_form_topic_tags() {
|
|
| 3040 |
} elseif ( !empty( $post ) ) {
|
| 3041 |
|
| 3042 |
// Post is a topic
|
| 3043 |
-
if ( bbp_get_topic_post_type() == $post->post_type )
|
| 3044 |
$topic_id = $post->ID;
|
| 3045 |
|
| 3046 |
// Post is a reply
|
| 3047 |
-
elseif ( bbp_get_reply_post_type() == $post->post_type )
|
| 3048 |
$topic_id = bbp_get_reply_topic_id( $post->ID );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3049 |
|
| 3050 |
-
|
| 3051 |
-
|
|
|
|
| 3052 |
|
| 3053 |
-
|
| 3054 |
-
|
| 3055 |
-
|
|
|
|
| 3056 |
}
|
| 3057 |
|
| 3058 |
// Define local variable(s)
|
| 668 |
if ( $wp_rewrite->using_permalinks() )
|
| 669 |
$base = trailingslashit( get_permalink( $topic_id ) ) . user_trailingslashit( $wp_rewrite->pagination_base . '/%#%/' );
|
| 670 |
else
|
| 671 |
+
$base = add_query_arg( 'paged', '%#%', get_permalink( $topic_id ) );
|
| 672 |
|
| 673 |
// Get total and add 1 if topic is included in the reply loop
|
| 674 |
$total = bbp_get_topic_reply_count( $topic_id );
|
| 1282 |
$topic_id = bbp_get_topic_id( $topic_id );
|
| 1283 |
|
| 1284 |
// Check for anonymous user
|
| 1285 |
+
if ( !bbp_is_topic_anonymous( $topic_id ) ) {
|
| 1286 |
$author_url = bbp_get_user_profile_url( bbp_get_topic_author_id( $topic_id ) );
|
| 1287 |
+
} else {
|
| 1288 |
+
if ( !$author_url = get_post_meta( $topic_id, '_bbp_anonymous_website', true ) ) {
|
| 1289 |
$author_url = '';
|
| 1290 |
+
}
|
| 1291 |
+
}
|
| 1292 |
|
| 1293 |
return apply_filters( 'bbp_get_topic_author_url', $author_url, $topic_id );
|
| 1294 |
}
|
| 1295 |
|
| 1296 |
+
/**
|
| 1297 |
+
* Output the topic author email address
|
| 1298 |
+
*
|
| 1299 |
+
* @since bbPress (r3445)
|
| 1300 |
+
*
|
| 1301 |
+
* @param int $topic_id Optional. Reply id
|
| 1302 |
+
* @uses bbp_get_topic_author_email() To get the topic author email
|
| 1303 |
+
*/
|
| 1304 |
+
function bbp_topic_author_email( $topic_id = 0 ) {
|
| 1305 |
+
echo bbp_get_topic_author_email( $topic_id );
|
| 1306 |
+
}
|
| 1307 |
+
/**
|
| 1308 |
+
* Return the topic author email address
|
| 1309 |
+
*
|
| 1310 |
+
* @since bbPress (r3445)
|
| 1311 |
+
*
|
| 1312 |
+
* @param int $topic_id Optional. Reply id
|
| 1313 |
+
* @uses bbp_get_topic_id() To get the topic id
|
| 1314 |
+
* @uses bbp_is_topic_anonymous() To check if the topic is by an anonymous
|
| 1315 |
+
* user
|
| 1316 |
+
* @uses bbp_get_topic_author_id() To get the topic author id
|
| 1317 |
+
* @uses get_userdata() To get the user data
|
| 1318 |
+
* @uses get_post_meta() To get the anonymous poster's email
|
| 1319 |
+
* @uses apply_filters() Calls bbp_get_topic_author_email with the author
|
| 1320 |
+
* email & topic id
|
| 1321 |
+
* @return string Topic author email address
|
| 1322 |
+
*/
|
| 1323 |
+
function bbp_get_topic_author_email( $topic_id = 0 ) {
|
| 1324 |
+
$topic_id = bbp_get_topic_id( $topic_id );
|
| 1325 |
+
|
| 1326 |
+
// Not anonymous user
|
| 1327 |
+
if ( !bbp_is_topic_anonymous( $topic_id ) ) {
|
| 1328 |
+
|
| 1329 |
+
// Use topic author email address
|
| 1330 |
+
$user_id = bbp_get_topic_author_id( $topic_id );
|
| 1331 |
+
$user = get_userdata( $user_id );
|
| 1332 |
+
$author_email = !empty( $user->user_email ) ? $user->user_email : '';
|
| 1333 |
+
|
| 1334 |
+
// Anonymous
|
| 1335 |
+
} else {
|
| 1336 |
+
|
| 1337 |
+
// Get email from post meta
|
| 1338 |
+
$author_email = get_post_meta( $topic_id, '_bbp_anonymous_email', true );
|
| 1339 |
+
|
| 1340 |
+
// Sanity check for missing email address
|
| 1341 |
+
if ( empty( $author_email ) ) {
|
| 1342 |
+
$author_email = '';
|
| 1343 |
+
}
|
| 1344 |
+
}
|
| 1345 |
+
|
| 1346 |
+
return apply_filters( 'bbp_get_topic_author_email', $author_email, $topic_id );
|
| 1347 |
+
}
|
| 1348 |
+
|
| 1349 |
/**
|
| 1350 |
* Output the title of the forum a topic belongs to
|
| 1351 |
*
|
| 1616 |
* @param int $topic_id Optional. Topic id
|
| 1617 |
* @uses bbp_get_topic_freshness_link() To get the topic freshness link
|
| 1618 |
*/
|
| 1619 |
+
function bbp_topic_freshness_link( $topic_id = 0 ) {
|
| 1620 |
echo bbp_get_topic_freshness_link( $topic_id );
|
| 1621 |
}
|
| 1622 |
/**
|
| 1869 |
|
| 1870 |
$topic_id = bbp_get_topic_id( $topic_id );
|
| 1871 |
|
| 1872 |
+
// Topic is spammed, so display pre-spam terms
|
| 1873 |
+
if ( bbp_is_topic_spam( $topic_id ) ) {
|
| 1874 |
+
|
| 1875 |
+
// Get pre-spam terms
|
| 1876 |
+
$terms = get_post_meta( $topic_id, '_bbp_spam_topic_tags', true );
|
| 1877 |
+
|
| 1878 |
+
// If terms exist, explode them and compile the return value
|
| 1879 |
+
if ( !empty( $terms ) ) {
|
| 1880 |
+
$terms = implode( $sep, $terms );
|
| 1881 |
+
$retval = $before . $terms . $after;
|
| 1882 |
+
|
| 1883 |
+
// No terms so return emty string
|
| 1884 |
+
} else {
|
| 1885 |
+
$retval = '';
|
| 1886 |
+
}
|
| 1887 |
+
|
| 1888 |
+
// Topic is not spam so display a clickable term list
|
| 1889 |
+
} else {
|
| 1890 |
+
$retval = get_the_term_list( $topic_id, bbp_get_topic_tag_tax_id(), $before, $sep, $after );
|
| 1891 |
+
}
|
| 1892 |
+
|
| 1893 |
+
return $retval;
|
| 1894 |
}
|
| 1895 |
|
| 1896 |
/**
|
| 2483 |
$to_num = bbp_number_format( ( $start_num + ( $bbp->topic_query->posts_per_page - 1 ) > $bbp->topic_query->found_posts ) ? $bbp->topic_query->found_posts : $start_num + ( $bbp->topic_query->posts_per_page - 1 ) );
|
| 2484 |
$total = bbp_number_format( !empty( $bbp->topic_query->found_posts ) ? $bbp->topic_query->found_posts : $bbp->topic_query->post_count );
|
| 2485 |
|
| 2486 |
+
/**
|
| 2487 |
+
* Translators - _n() should not be needed, as singular/plural strings
|
| 2488 |
+
* are already separated into unique strings for you
|
| 2489 |
+
*/
|
| 2490 |
+
|
| 2491 |
+
// More than one topic
|
| 2492 |
+
if ( $total > 1 ) {
|
| 2493 |
+
|
| 2494 |
+
// Single topic in a forum with several pages
|
| 2495 |
+
if ( (int) $from_num == (int) $to_num ) {
|
| 2496 |
+
$retstr = sprintf( __( 'Viewing topic %1$s (of %2$s total)', 'bbpress' ), $from_num, $total );
|
| 2497 |
+
|
| 2498 |
+
// Several topics in a forum with a single page
|
| 2499 |
+
} elseif ( empty( $to_num ) ) {
|
| 2500 |
+
$retstr = sprintf( __( 'Viewing %1$s topics', 'bbpress' ), $total );
|
| 2501 |
+
|
| 2502 |
+
// Several topics in a forum with several pages
|
| 2503 |
+
} elseif ( (int) $from_num != (int) $to_num ) {
|
| 2504 |
+
$retstr = sprintf( __( 'Viewing %1$s topics - %2$s through %3$s (of %4$s total)', 'bbpress' ), $bbp->topic_query->post_count, $from_num, $to_num, $total );
|
| 2505 |
+
}
|
| 2506 |
+
|
| 2507 |
+
// Only 1 topic
|
| 2508 |
+
} else {
|
| 2509 |
$retstr = sprintf( __( 'Viewing %1$s topic', 'bbpress' ), $total );
|
| 2510 |
+
}
|
| 2511 |
|
| 2512 |
// Filter and return
|
| 2513 |
return apply_filters( 'bbp_get_topic_pagination_count', $retstr );
|
| 2954 |
* @return string Term Name
|
| 2955 |
*/
|
| 2956 |
function bbp_get_topic_tag_edit_link( $tag = '' ) {
|
| 2957 |
+
global $wp_query, $wp_rewrite;
|
| 2958 |
|
| 2959 |
// Get the term
|
| 2960 |
$tag = !empty( $tag ) ? $tag : get_query_var( 'term' );
|
| 2969 |
|
| 2970 |
// Ugly
|
| 2971 |
} else {
|
| 2972 |
+
$retval = add_query_arg( array( 'edit' => '1' ), bbp_get_topic_tag_link() );
|
| 2973 |
}
|
| 2974 |
|
| 2975 |
// No link
|
| 3132 |
} elseif ( !empty( $post ) ) {
|
| 3133 |
|
| 3134 |
// Post is a topic
|
| 3135 |
+
if ( bbp_get_topic_post_type() == $post->post_type ) {
|
| 3136 |
$topic_id = $post->ID;
|
| 3137 |
|
| 3138 |
// Post is a reply
|
| 3139 |
+
} elseif ( bbp_get_reply_post_type() == $post->post_type ) {
|
| 3140 |
$topic_id = bbp_get_reply_topic_id( $post->ID );
|
| 3141 |
+
}
|
| 3142 |
+
|
| 3143 |
+
// Topic exists
|
| 3144 |
+
if ( !empty( $topic_id ) ) {
|
| 3145 |
+
|
| 3146 |
+
// Topic is spammed so display pre-spam terms
|
| 3147 |
+
if ( bbp_is_topic_spam( $topic_id ) ) {
|
| 3148 |
+
|
| 3149 |
+
// Get pre-spam terms
|
| 3150 |
+
$new_terms = get_post_meta( $topic_id, '_bbp_spam_topic_tags', true );
|
| 3151 |
+
|
| 3152 |
+
// If terms exist, explode them and compile the return value
|
| 3153 |
+
if ( empty( $new_terms ) ) {
|
| 3154 |
+
$new_terms = '';
|
| 3155 |
+
}
|
| 3156 |
|
| 3157 |
+
// Topic is not spam so get real terms
|
| 3158 |
+
} else {
|
| 3159 |
+
$terms = array_filter( (array) get_the_terms( $topic_id, bbp_get_topic_tag_tax_id() ) );
|
| 3160 |
|
| 3161 |
+
// Loop through them
|
| 3162 |
+
foreach( $terms as $term ) {
|
| 3163 |
+
$new_terms[] = $term->name;
|
| 3164 |
+
}
|
| 3165 |
}
|
| 3166 |
|
| 3167 |
// Define local variable(s)
|
bbp-includes/bbp-user-functions.php
CHANGED
|
@@ -144,6 +144,24 @@ function bbp_current_author_ip() {
|
|
| 144 |
return apply_filters( 'bbp_current_author_ip', $retval );
|
| 145 |
}
|
| 146 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 147 |
/** Favorites *****************************************************************/
|
| 148 |
|
| 149 |
/**
|
|
@@ -939,7 +957,7 @@ function bbp_is_user_spammer( $user_id = 0 ) {
|
|
| 939 |
// No user found
|
| 940 |
if ( empty( $user ) ) {
|
| 941 |
$is_spammer = false;
|
| 942 |
-
|
| 943 |
// User found
|
| 944 |
} else {
|
| 945 |
|
|
@@ -947,7 +965,7 @@ function bbp_is_user_spammer( $user_id = 0 ) {
|
|
| 947 |
if ( !empty( $user->spam ) )
|
| 948 |
$is_spammer = true;
|
| 949 |
|
| 950 |
-
if (
|
| 951 |
$is_spammer = true;
|
| 952 |
}
|
| 953 |
|
|
@@ -975,7 +993,7 @@ function bbp_is_user_spammer( $user_id = 0 ) {
|
|
| 975 |
* @uses bbp_spam_topic()
|
| 976 |
* @uses bbp_spam_reply()
|
| 977 |
* @uses restore_current_blog()
|
| 978 |
-
*
|
| 979 |
* @return If no user ID passed
|
| 980 |
*/
|
| 981 |
function bbp_make_spam_user( $user_id = 0 ) {
|
|
@@ -1019,7 +1037,7 @@ function bbp_make_spam_user( $user_id = 0 ) {
|
|
| 1019 |
// Loop through posts and spam them
|
| 1020 |
if ( !empty( $posts ) ) {
|
| 1021 |
foreach ( $posts as $post_id ) {
|
| 1022 |
-
|
| 1023 |
// The routines for topics ang replies are different, so use the
|
| 1024 |
// correct one based on the post type
|
| 1025 |
switch ( get_post_type( $post_id ) ) {
|
|
@@ -1060,7 +1078,7 @@ function bbp_make_spam_user( $user_id = 0 ) {
|
|
| 1060 |
* @uses bbp_unspam_topic()
|
| 1061 |
* @uses bbp_unspam_reply()
|
| 1062 |
* @uses restore_current_blog()
|
| 1063 |
-
*
|
| 1064 |
* @return If no user ID passed
|
| 1065 |
*/
|
| 1066 |
function bbp_make_ham_user( $user_id = 0 ) {
|
|
@@ -1103,7 +1121,7 @@ function bbp_make_ham_user( $user_id = 0 ) {
|
|
| 1103 |
// Loop through posts and spam them
|
| 1104 |
if ( !empty( $posts ) ) {
|
| 1105 |
foreach ( $posts as $post_id ) {
|
| 1106 |
-
|
| 1107 |
// The routines for topics ang replies are different, so use the
|
| 1108 |
// correct one based on the post type
|
| 1109 |
switch ( get_post_type( $post_id ) ) {
|
|
@@ -1151,7 +1169,7 @@ function bbp_is_user_deleted( $user_id = 0 ) {
|
|
| 1151 |
// No user found
|
| 1152 |
if ( empty( $user ) ) {
|
| 1153 |
$is_deleted = true;
|
| 1154 |
-
|
| 1155 |
// User found
|
| 1156 |
} else {
|
| 1157 |
|
|
@@ -1159,7 +1177,7 @@ function bbp_is_user_deleted( $user_id = 0 ) {
|
|
| 1159 |
if ( !empty( $user->deleted ) )
|
| 1160 |
$is_deleted = true;
|
| 1161 |
|
| 1162 |
-
if (
|
| 1163 |
$is_deleted = true;
|
| 1164 |
|
| 1165 |
}
|
| 144 |
return apply_filters( 'bbp_current_author_ip', $retval );
|
| 145 |
}
|
| 146 |
|
| 147 |
+
/**
|
| 148 |
+
* Get the poster user agent
|
| 149 |
+
*
|
| 150 |
+
* @since bbPress (r3446)
|
| 151 |
+
*
|
| 152 |
+
* @return string
|
| 153 |
+
*/
|
| 154 |
+
function bbp_current_author_ua() {
|
| 155 |
+
|
| 156 |
+
// Sanity check the user agent
|
| 157 |
+
if ( !empty( $_SERVER['HTTP_USER_AGENT'] ) )
|
| 158 |
+
$retval = substr( $_SERVER['HTTP_USER_AGENT'], 0, 254 );
|
| 159 |
+
else
|
| 160 |
+
$retval = '';
|
| 161 |
+
|
| 162 |
+
return apply_filters( 'bbp_current_author_ua', $retval );
|
| 163 |
+
}
|
| 164 |
+
|
| 165 |
/** Favorites *****************************************************************/
|
| 166 |
|
| 167 |
/**
|
| 957 |
// No user found
|
| 958 |
if ( empty( $user ) ) {
|
| 959 |
$is_spammer = false;
|
| 960 |
+
|
| 961 |
// User found
|
| 962 |
} else {
|
| 963 |
|
| 965 |
if ( !empty( $user->spam ) )
|
| 966 |
$is_spammer = true;
|
| 967 |
|
| 968 |
+
if ( 1 == $user->user_status )
|
| 969 |
$is_spammer = true;
|
| 970 |
}
|
| 971 |
|
| 993 |
* @uses bbp_spam_topic()
|
| 994 |
* @uses bbp_spam_reply()
|
| 995 |
* @uses restore_current_blog()
|
| 996 |
+
*
|
| 997 |
* @return If no user ID passed
|
| 998 |
*/
|
| 999 |
function bbp_make_spam_user( $user_id = 0 ) {
|
| 1037 |
// Loop through posts and spam them
|
| 1038 |
if ( !empty( $posts ) ) {
|
| 1039 |
foreach ( $posts as $post_id ) {
|
| 1040 |
+
|
| 1041 |
// The routines for topics ang replies are different, so use the
|
| 1042 |
// correct one based on the post type
|
| 1043 |
switch ( get_post_type( $post_id ) ) {
|
| 1078 |
* @uses bbp_unspam_topic()
|
| 1079 |
* @uses bbp_unspam_reply()
|
| 1080 |
* @uses restore_current_blog()
|
| 1081 |
+
*
|
| 1082 |
* @return If no user ID passed
|
| 1083 |
*/
|
| 1084 |
function bbp_make_ham_user( $user_id = 0 ) {
|
| 1121 |
// Loop through posts and spam them
|
| 1122 |
if ( !empty( $posts ) ) {
|
| 1123 |
foreach ( $posts as $post_id ) {
|
| 1124 |
+
|
| 1125 |
// The routines for topics ang replies are different, so use the
|
| 1126 |
// correct one based on the post type
|
| 1127 |
switch ( get_post_type( $post_id ) ) {
|
| 1169 |
// No user found
|
| 1170 |
if ( empty( $user ) ) {
|
| 1171 |
$is_deleted = true;
|
| 1172 |
+
|
| 1173 |
// User found
|
| 1174 |
} else {
|
| 1175 |
|
| 1177 |
if ( !empty( $user->deleted ) )
|
| 1178 |
$is_deleted = true;
|
| 1179 |
|
| 1180 |
+
if ( 2 == $user->user_status )
|
| 1181 |
$is_deleted = true;
|
| 1182 |
|
| 1183 |
}
|
bbp-includes/bbp-user-template.php
CHANGED
|
@@ -261,7 +261,7 @@ function bbp_user_profile_url( $user_id = 0, $user_nicename = '' ) {
|
|
| 261 |
$early_profile_url = apply_filters( 'bbp_pre_get_user_profile_url', (int) $user_id );
|
| 262 |
if ( is_string( $early_profile_url ) )
|
| 263 |
return $early_profile_url;
|
| 264 |
-
|
| 265 |
// Pretty permalinks
|
| 266 |
if ( $wp_rewrite->using_permalinks() ) {
|
| 267 |
$url = $wp_rewrite->root . $bbp->user_slug . '/%' . $bbp->user_id . '%';
|
|
@@ -759,7 +759,9 @@ function bbp_edit_user_display_name() {
|
|
| 759 |
|
| 760 |
$public_display = array();
|
| 761 |
$public_display['display_username'] = $bbp->displayed_user->user_login;
|
| 762 |
-
|
|
|
|
|
|
|
| 763 |
|
| 764 |
if ( !empty( $bbp->displayed_user->first_name ) )
|
| 765 |
$public_display['display_firstname'] = $bbp->displayed_user->first_name;
|
|
@@ -919,6 +921,7 @@ function bbp_logged_in_redirect( $url = '' ) {
|
|
| 919 |
*
|
| 920 |
* @since bbPress (r2815)
|
| 921 |
*
|
|
|
|
| 922 |
* @uses bbp_redirect_to_field() To output the hidden request url field
|
| 923 |
* @uses wp_nonce_field() To generate hidden nonce fields
|
| 924 |
*/
|
|
@@ -927,9 +930,14 @@ function bbp_user_login_fields() {
|
|
| 927 |
|
| 928 |
<input type="hidden" name="user-cookie" value="1" />
|
| 929 |
|
| 930 |
-
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
| 931 |
|
| 932 |
-
|
|
|
|
| 933 |
}
|
| 934 |
|
| 935 |
/** Register ******************************************************************/
|
|
@@ -941,6 +949,7 @@ function bbp_user_login_fields() {
|
|
| 941 |
*
|
| 942 |
* @uses add_query_arg() To add query args
|
| 943 |
* @uses bbp_login_url() To get the login url
|
|
|
|
| 944 |
* @uses bbp_redirect_to_field() To output the redirect to field
|
| 945 |
* @uses wp_nonce_field() To generate hidden nonce fields
|
| 946 |
*/
|
|
@@ -950,9 +959,14 @@ function bbp_user_register_fields() {
|
|
| 950 |
<input type="hidden" name="action" value="register" />
|
| 951 |
<input type="hidden" name="user-cookie" value="1" />
|
| 952 |
|
| 953 |
-
<?php
|
| 954 |
|
| 955 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 956 |
}
|
| 957 |
|
| 958 |
/** Lost Password *************************************************************/
|
|
@@ -962,6 +976,7 @@ function bbp_user_register_fields() {
|
|
| 962 |
*
|
| 963 |
* @since bbPress (r2815)
|
| 964 |
*
|
|
|
|
| 965 |
* @uses wp_referer_field() Set referer
|
| 966 |
* @uses wp_nonce_field() To generate hidden nonce fields
|
| 967 |
*/
|
|
@@ -970,9 +985,14 @@ function bbp_user_lost_pass_fields() {
|
|
| 970 |
|
| 971 |
<input type="hidden" name="user-cookie" value="1" />
|
| 972 |
|
| 973 |
-
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
| 974 |
|
| 975 |
-
|
|
|
|
| 976 |
}
|
| 977 |
|
| 978 |
/** Author Avatar *************************************************************/
|
| 261 |
$early_profile_url = apply_filters( 'bbp_pre_get_user_profile_url', (int) $user_id );
|
| 262 |
if ( is_string( $early_profile_url ) )
|
| 263 |
return $early_profile_url;
|
| 264 |
+
|
| 265 |
// Pretty permalinks
|
| 266 |
if ( $wp_rewrite->using_permalinks() ) {
|
| 267 |
$url = $wp_rewrite->root . $bbp->user_slug . '/%' . $bbp->user_id . '%';
|
| 759 |
|
| 760 |
$public_display = array();
|
| 761 |
$public_display['display_username'] = $bbp->displayed_user->user_login;
|
| 762 |
+
|
| 763 |
+
if ( !empty( $bbp->displayed_user->nickname ) )
|
| 764 |
+
$public_display['display_nickname'] = $bbp->displayed_user->nickname;
|
| 765 |
|
| 766 |
if ( !empty( $bbp->displayed_user->first_name ) )
|
| 767 |
$public_display['display_firstname'] = $bbp->displayed_user->first_name;
|
| 921 |
*
|
| 922 |
* @since bbPress (r2815)
|
| 923 |
*
|
| 924 |
+
* @uses apply_filters() To allow custom redirection
|
| 925 |
* @uses bbp_redirect_to_field() To output the hidden request url field
|
| 926 |
* @uses wp_nonce_field() To generate hidden nonce fields
|
| 927 |
*/
|
| 930 |
|
| 931 |
<input type="hidden" name="user-cookie" value="1" />
|
| 932 |
|
| 933 |
+
<?php
|
| 934 |
+
|
| 935 |
+
// Allow custom login redirection
|
| 936 |
+
$redirect_to = apply_filters( 'bbp_user_login_redirect_to', '' );
|
| 937 |
+
bbp_redirect_to_field( $redirect_to );
|
| 938 |
|
| 939 |
+
// Prevent intention hi-jacking of log-in form
|
| 940 |
+
wp_nonce_field( 'bbp-user-login' );
|
| 941 |
}
|
| 942 |
|
| 943 |
/** Register ******************************************************************/
|
| 949 |
*
|
| 950 |
* @uses add_query_arg() To add query args
|
| 951 |
* @uses bbp_login_url() To get the login url
|
| 952 |
+
* @uses apply_filters() To allow custom redirection
|
| 953 |
* @uses bbp_redirect_to_field() To output the redirect to field
|
| 954 |
* @uses wp_nonce_field() To generate hidden nonce fields
|
| 955 |
*/
|
| 959 |
<input type="hidden" name="action" value="register" />
|
| 960 |
<input type="hidden" name="user-cookie" value="1" />
|
| 961 |
|
| 962 |
+
<?php
|
| 963 |
|
| 964 |
+
// Allow custom registration redirection
|
| 965 |
+
$redirect_to = apply_filters( 'bbp_user_register_redirect_to', '' );
|
| 966 |
+
bbp_redirect_to_field( add_query_arg( array( 'checkemail' => 'registered' ), $redirect_to ) );
|
| 967 |
+
|
| 968 |
+
// Prevent intention hi-jacking of sign-up form
|
| 969 |
+
wp_nonce_field( 'bbp-user-register' );
|
| 970 |
}
|
| 971 |
|
| 972 |
/** Lost Password *************************************************************/
|
| 976 |
*
|
| 977 |
* @since bbPress (r2815)
|
| 978 |
*
|
| 979 |
+
* @uses apply_filters() To allow custom redirection
|
| 980 |
* @uses wp_referer_field() Set referer
|
| 981 |
* @uses wp_nonce_field() To generate hidden nonce fields
|
| 982 |
*/
|
| 985 |
|
| 986 |
<input type="hidden" name="user-cookie" value="1" />
|
| 987 |
|
| 988 |
+
<?php
|
| 989 |
+
|
| 990 |
+
// Allow custom lost pass redirection
|
| 991 |
+
$redirect_to = apply_filters( 'bbp_user_lost_pass_redirect_to', get_permalink() );
|
| 992 |
+
bbp_redirect_to_field( add_query_arg( array( 'checkemail' => 'confirm' ), $redirect_to ) );
|
| 993 |
|
| 994 |
+
// Prevent intention hi-jacking of lost pass form
|
| 995 |
+
wp_nonce_field( 'bbp-user-lost-pass' );
|
| 996 |
}
|
| 997 |
|
| 998 |
/** Author Avatar *************************************************************/
|
bbp-languages/bbpress.pot
CHANGED
|
@@ -2,9 +2,9 @@
|
|
| 2 |
# This file is distributed under the same license as the bbPress package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
-
"Project-Id-Version: bbPress 2.0-rc-
|
| 6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/bbpress\n"
|
| 7 |
-
"POT-Creation-Date: 2011-08-
|
| 8 |
"MIME-Version: 1.0\n"
|
| 9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 10 |
"Content-Transfer-Encoding: 8bit\n"
|
|
@@ -12,3503 +12,3540 @@ msgstr ""
|
|
| 12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
| 13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
| 14 |
|
| 15 |
-
#: bbp-
|
| 16 |
-
msgid "
|
| 17 |
-
msgstr ""
|
| 18 |
-
|
| 19 |
-
#: bbp-themes/bbp-twentyten/bbpress/user-favorites.php:16
|
| 20 |
-
msgid "Favorite Forum Topics"
|
| 21 |
-
msgstr ""
|
| 22 |
-
|
| 23 |
-
#: bbp-themes/bbp-twentyten/bbpress/user-favorites.php:27
|
| 24 |
-
msgid "You currently have no favorite topics."
|
| 25 |
msgstr ""
|
| 26 |
|
| 27 |
-
#: bbp-
|
| 28 |
-
msgid "
|
| 29 |
msgstr ""
|
| 30 |
|
| 31 |
-
#: bbp-
|
| 32 |
-
|
| 33 |
-
#: bbp-includes/bbp-core-widgets.php:80 bbp-includes/bbp-core-widgets.php:101
|
| 34 |
-
msgid "Log In"
|
| 35 |
msgstr ""
|
| 36 |
|
| 37 |
-
#: bbp-
|
| 38 |
-
|
| 39 |
-
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:99
|
| 40 |
-
#: bbp-includes/bbp-core-widgets.php:83
|
| 41 |
-
msgid "Username"
|
| 42 |
msgstr ""
|
| 43 |
|
| 44 |
-
#: bbp-
|
| 45 |
-
|
| 46 |
-
msgid "Password"
|
| 47 |
msgstr ""
|
| 48 |
|
| 49 |
-
#: bbp-
|
| 50 |
-
|
| 51 |
-
msgid "Keep me signed in"
|
| 52 |
msgstr ""
|
| 53 |
|
| 54 |
-
#: bbp-
|
| 55 |
-
msgid "
|
| 56 |
msgstr ""
|
| 57 |
|
| 58 |
-
#: bbp-
|
| 59 |
-
msgid "
|
| 60 |
msgstr ""
|
| 61 |
|
| 62 |
-
#: bbp-
|
| 63 |
-
msgid "
|
| 64 |
msgstr ""
|
| 65 |
|
| 66 |
-
#: bbp-
|
| 67 |
-
msgid "
|
| 68 |
msgstr ""
|
| 69 |
|
| 70 |
-
#: bbp-
|
| 71 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 72 |
msgstr ""
|
| 73 |
|
| 74 |
-
#: bbp-
|
| 75 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 76 |
msgstr ""
|
| 77 |
|
| 78 |
-
#: bbp-
|
| 79 |
-
msgid "
|
| 80 |
msgstr ""
|
| 81 |
|
| 82 |
-
#: bbp-
|
| 83 |
msgid ""
|
| 84 |
-
"
|
| 85 |
-
"account."
|
| 86 |
-
msgstr ""
|
| 87 |
-
|
| 88 |
-
#: bbp-themes/bbp-twentyten/bbpress/form-user-register.php:28
|
| 89 |
-
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:105
|
| 90 |
-
#: bbp-admin/bbp-metaboxes.php:471 bbp-admin/bbp-metaboxes.php:474
|
| 91 |
-
msgid "Email"
|
| 92 |
msgstr ""
|
| 93 |
|
| 94 |
-
#: bbp-
|
| 95 |
-
msgid "
|
| 96 |
msgstr ""
|
| 97 |
|
| 98 |
-
#: bbp-
|
| 99 |
-
|
| 100 |
-
#: bbp-admin/bbp-metaboxes.php:464 bbp-admin/bbp-metaboxes.php:467
|
| 101 |
-
msgid "Name"
|
| 102 |
msgstr ""
|
| 103 |
|
| 104 |
-
#: bbp-
|
| 105 |
-
msgid "
|
| 106 |
msgstr ""
|
| 107 |
|
| 108 |
-
#: bbp-
|
| 109 |
-
msgid "
|
| 110 |
msgstr ""
|
| 111 |
|
| 112 |
-
#: bbp-
|
| 113 |
-
msgid "
|
| 114 |
msgstr ""
|
| 115 |
|
| 116 |
-
#: bbp-
|
| 117 |
-
msgid "
|
| 118 |
msgstr ""
|
| 119 |
|
| 120 |
-
#: bbp-
|
| 121 |
-
|
| 122 |
-
msgid "Contact Info"
|
| 123 |
msgstr ""
|
| 124 |
|
| 125 |
-
#: bbp-
|
| 126 |
-
|
| 127 |
-
msgid "Website"
|
| 128 |
msgstr ""
|
| 129 |
|
| 130 |
-
#: bbp-
|
| 131 |
-
|
| 132 |
-
msgid "About Yourself"
|
| 133 |
msgstr ""
|
| 134 |
|
| 135 |
-
#: bbp-
|
| 136 |
-
|
| 137 |
-
msgid "About the user"
|
| 138 |
msgstr ""
|
| 139 |
|
| 140 |
-
#: bbp-
|
| 141 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 142 |
msgstr ""
|
| 143 |
|
| 144 |
-
#: bbp-
|
| 145 |
msgid ""
|
| 146 |
-
"
|
| 147 |
-
"
|
| 148 |
msgstr ""
|
| 149 |
|
| 150 |
-
#: bbp-
|
| 151 |
-
|
| 152 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 153 |
msgstr ""
|
| 154 |
|
| 155 |
-
#: bbp-
|
| 156 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
| 157 |
msgstr ""
|
| 158 |
|
| 159 |
-
#: bbp-
|
| 160 |
msgid ""
|
| 161 |
-
"
|
| 162 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 163 |
msgstr ""
|
| 164 |
|
| 165 |
-
#: bbp-
|
| 166 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
| 167 |
msgstr ""
|
| 168 |
|
| 169 |
-
#: bbp-
|
| 170 |
msgid ""
|
| 171 |
-
"
|
| 172 |
-
"
|
|
|
|
| 173 |
msgstr ""
|
| 174 |
|
| 175 |
-
#: bbp-
|
| 176 |
-
|
|
|
|
|
|
|
|
|
|
| 177 |
msgstr ""
|
| 178 |
|
| 179 |
-
#: bbp-
|
| 180 |
-
|
| 181 |
-
|
| 182 |
-
|
| 183 |
-
"
|
| 184 |
msgstr ""
|
| 185 |
|
| 186 |
-
#: bbp-
|
| 187 |
-
|
|
|
|
|
|
|
|
|
|
| 188 |
msgstr ""
|
| 189 |
|
| 190 |
-
#: bbp-
|
| 191 |
-
msgid "
|
| 192 |
msgstr ""
|
| 193 |
|
| 194 |
-
#: bbp-
|
| 195 |
-
|
|
|
|
| 196 |
msgstr ""
|
| 197 |
|
| 198 |
-
#: bbp-
|
| 199 |
-
|
| 200 |
-
|
|
|
|
| 201 |
msgstr ""
|
| 202 |
|
| 203 |
-
#: bbp-
|
| 204 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
| 205 |
msgstr ""
|
| 206 |
|
| 207 |
-
#: bbp-
|
| 208 |
-
msgid "
|
|
|
|
|
|
|
| 209 |
msgstr ""
|
| 210 |
|
| 211 |
-
#: bbp-
|
| 212 |
-
|
| 213 |
-
|
|
|
|
|
|
|
| 214 |
msgstr ""
|
| 215 |
|
| 216 |
-
#: bbp-
|
| 217 |
-
|
| 218 |
-
|
| 219 |
-
|
| 220 |
-
|
| 221 |
-
msgid "Topic"
|
| 222 |
msgstr ""
|
| 223 |
|
| 224 |
-
#: bbp-
|
| 225 |
-
|
| 226 |
-
|
| 227 |
msgstr ""
|
| 228 |
|
| 229 |
-
#: bbp-
|
| 230 |
-
|
| 231 |
-
|
|
|
|
| 232 |
msgstr ""
|
| 233 |
|
| 234 |
-
#: bbp-
|
| 235 |
-
msgid "
|
|
|
|
|
|
|
| 236 |
msgstr ""
|
| 237 |
|
| 238 |
-
#: bbp-
|
| 239 |
-
msgid "
|
|
|
|
|
|
|
| 240 |
msgstr ""
|
| 241 |
|
| 242 |
-
#: bbp-
|
| 243 |
-
msgid "
|
| 244 |
msgstr ""
|
| 245 |
|
| 246 |
-
#: bbp-
|
| 247 |
-
msgid "
|
|
|
|
|
|
|
| 248 |
msgstr ""
|
| 249 |
|
| 250 |
-
#: bbp-
|
| 251 |
msgid ""
|
| 252 |
-
"
|
| 253 |
-
"
|
|
|
|
| 254 |
msgstr ""
|
| 255 |
|
| 256 |
-
#: bbp-
|
| 257 |
-
msgid "
|
|
|
|
|
|
|
| 258 |
msgstr ""
|
| 259 |
|
| 260 |
-
#: bbp-
|
| 261 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 262 |
msgstr ""
|
| 263 |
|
| 264 |
-
#: bbp-
|
| 265 |
-
msgid "
|
|
|
|
|
|
|
| 266 |
msgstr ""
|
| 267 |
|
| 268 |
-
#: bbp-
|
| 269 |
-
|
| 270 |
-
|
| 271 |
-
|
|
|
|
| 272 |
msgstr ""
|
| 273 |
|
| 274 |
-
#: bbp-
|
| 275 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
| 276 |
msgstr ""
|
| 277 |
|
| 278 |
-
#: bbp-
|
| 279 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
| 280 |
msgstr ""
|
| 281 |
|
| 282 |
-
#: bbp-
|
| 283 |
msgid ""
|
| 284 |
-
"
|
|
|
|
| 285 |
msgstr ""
|
| 286 |
|
| 287 |
-
#: bbp-
|
| 288 |
-
|
| 289 |
-
#: bbp-includes/bbp-reply-template.php:1479
|
| 290 |
-
#: bbp-includes/bbp-topic-template.php:2100
|
| 291 |
-
msgid "Delete"
|
| 292 |
msgstr ""
|
| 293 |
|
| 294 |
-
#: bbp-
|
| 295 |
-
msgid "
|
|
|
|
|
|
|
| 296 |
msgstr ""
|
| 297 |
|
| 298 |
-
#: bbp-
|
| 299 |
-
msgid "
|
|
|
|
|
|
|
| 300 |
msgstr ""
|
| 301 |
|
| 302 |
-
#: bbp-
|
| 303 |
-
msgid "
|
| 304 |
msgstr ""
|
| 305 |
|
| 306 |
-
#: bbp-
|
| 307 |
-
|
| 308 |
-
|
| 309 |
-
"be undone."
|
| 310 |
msgstr ""
|
| 311 |
|
| 312 |
-
#: bbp-
|
| 313 |
-
msgid "
|
| 314 |
msgstr ""
|
| 315 |
|
| 316 |
-
#: bbp-
|
| 317 |
-
|
| 318 |
-
msgid "Voices"
|
| 319 |
msgstr ""
|
| 320 |
|
| 321 |
-
#: bbp-
|
| 322 |
-
|
| 323 |
-
#: bbp-themes/bbp-twentyten/bbpress/loop-replies.php:30
|
| 324 |
-
#: bbp-themes/bbp-twentyten/bbpress/loop-replies.php:49
|
| 325 |
-
#: bbp-themes/bbp-twentyten/page-forum-statistics.php:50
|
| 326 |
-
#: bbp-themes/bbp-twentyten/single-reply.php:32
|
| 327 |
-
#: bbp-includes/bbp-forum-template.php:1841
|
| 328 |
-
#: bbp-includes/bbp-core-compatibility.php:834 bbp-admin/bbp-topics.php:593
|
| 329 |
-
#: bbp-admin/bbp-forums.php:390 bbp-admin/bbp-admin.php:217
|
| 330 |
-
#: bbp-admin/bbp-admin.php:230 bbpress.php:657 bbpress.php:658
|
| 331 |
-
msgid "Replies"
|
| 332 |
msgstr ""
|
| 333 |
|
| 334 |
-
#: bbp-
|
| 335 |
-
|
| 336 |
-
#: bbp-themes/bbp-twentyten/bbpress/loop-replies.php:22
|
| 337 |
-
#: bbp-themes/bbp-twentyten/bbpress/loop-replies.php:45
|
| 338 |
-
#: bbp-admin/bbp-settings.php:552
|
| 339 |
-
msgid "Posts"
|
| 340 |
msgstr ""
|
| 341 |
|
| 342 |
-
#: bbp-
|
| 343 |
-
|
| 344 |
-
#: bbp-admin/bbp-topics.php:597 bbp-admin/bbp-forums.php:393
|
| 345 |
-
msgid "Freshness"
|
| 346 |
msgstr ""
|
| 347 |
|
| 348 |
-
#: bbp-
|
| 349 |
-
msgid "
|
| 350 |
msgstr ""
|
| 351 |
|
| 352 |
-
#: bbp-
|
| 353 |
-
msgid "
|
| 354 |
msgstr ""
|
| 355 |
|
| 356 |
-
#: bbp-
|
| 357 |
-
msgid "
|
| 358 |
msgstr ""
|
| 359 |
|
| 360 |
-
#: bbp-
|
| 361 |
-
msgid "
|
| 362 |
msgstr ""
|
| 363 |
|
| 364 |
-
#: bbp-
|
| 365 |
-
msgid "
|
| 366 |
msgstr ""
|
| 367 |
|
| 368 |
-
#: bbp-
|
| 369 |
-
msgid "
|
| 370 |
msgstr ""
|
| 371 |
|
| 372 |
-
#: bbp-
|
| 373 |
-
msgid "
|
| 374 |
msgstr ""
|
| 375 |
|
| 376 |
-
#: bbp-
|
| 377 |
-
msgid "
|
| 378 |
msgstr ""
|
| 379 |
|
| 380 |
-
#: bbp-
|
| 381 |
-
msgid "
|
| 382 |
msgstr ""
|
| 383 |
|
| 384 |
-
#: bbp-
|
| 385 |
-
msgid "
|
| 386 |
msgstr ""
|
| 387 |
|
| 388 |
-
#: bbp-
|
| 389 |
-
msgid ""
|
| 390 |
-
"When you split a topic, you are slicing it in half starting with the reply "
|
| 391 |
-
"you just selected. Choose to use that reply as a new topic with a new title, "
|
| 392 |
-
"or merge those replies into an existing topic."
|
| 393 |
msgstr ""
|
| 394 |
|
| 395 |
-
#: bbp-
|
| 396 |
-
|
| 397 |
-
|
| 398 |
-
|
| 399 |
-
|
|
|
|
|
|
|
| 400 |
msgstr ""
|
| 401 |
|
| 402 |
-
#: bbp-
|
| 403 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 404 |
msgstr ""
|
| 405 |
|
| 406 |
-
#: bbp-
|
| 407 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 408 |
msgstr ""
|
| 409 |
|
| 410 |
-
#: bbp-
|
| 411 |
-
|
|
|
|
| 412 |
msgstr ""
|
| 413 |
|
| 414 |
-
#: bbp-
|
| 415 |
-
|
|
|
|
|
|
|
|
|
|
| 416 |
msgstr ""
|
| 417 |
|
| 418 |
-
#: bbp-
|
| 419 |
-
|
|
|
|
| 420 |
msgstr ""
|
| 421 |
|
| 422 |
-
#: bbp-
|
| 423 |
-
#: bbp-themes/bbp-twentyten/bbpress/
|
| 424 |
-
|
|
|
|
| 425 |
msgstr ""
|
| 426 |
|
| 427 |
-
#: bbp-
|
| 428 |
-
|
|
|
|
| 429 |
msgstr ""
|
| 430 |
|
| 431 |
-
#: bbp-
|
| 432 |
-
msgid "
|
| 433 |
msgstr ""
|
| 434 |
|
| 435 |
-
#: bbp-
|
| 436 |
-
|
|
|
|
| 437 |
msgstr ""
|
| 438 |
|
| 439 |
-
#: bbp-
|
| 440 |
-
|
| 441 |
-
msgid "<strong>WARNING:</strong> This process cannot be undone."
|
| 442 |
msgstr ""
|
| 443 |
|
| 444 |
-
#: bbp-
|
| 445 |
-
|
| 446 |
-
#: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:88
|
| 447 |
-
#: bbp-themes/bbp-twentyten/bbpress/form-reply.php:115
|
| 448 |
-
msgid "Submit"
|
| 449 |
msgstr ""
|
| 450 |
|
| 451 |
-
#: bbp-
|
| 452 |
-
|
| 453 |
-
msgid "You do not have the permissions to edit this topic!"
|
| 454 |
msgstr ""
|
| 455 |
|
| 456 |
-
#: bbp-
|
| 457 |
-
|
| 458 |
-
msgid "You cannot edit this topic."
|
| 459 |
msgstr ""
|
| 460 |
|
| 461 |
-
#: bbp-
|
| 462 |
-
|
| 463 |
-
#: bbp-admin/bbp-metaboxes.php:50 bbp-admin/bbp-metaboxes.php:254
|
| 464 |
-
#: bbp-admin/bbp-metaboxes.php:362 bbp-admin/bbp-metaboxes.php:365
|
| 465 |
-
#: bbp-admin/bbp-metaboxes.php:405 bbp-admin/bbp-metaboxes.php:408
|
| 466 |
-
#: bbp-admin/bbp-replies.php:524 bbpress.php:545
|
| 467 |
-
msgid "Forum"
|
| 468 |
msgstr ""
|
| 469 |
|
| 470 |
-
#: bbp-
|
| 471 |
-
|
| 472 |
-
#: bbp-includes/bbp-forum-template.php:1777 bbp-admin/bbp-topics.php:591
|
| 473 |
-
#: bbp-admin/bbp-forums.php:389 bbp-admin/bbp-admin.php:213
|
| 474 |
-
#: bbp-admin/bbp-admin.php:226 bbpress.php:600 bbpress.php:601
|
| 475 |
-
msgid "Topics"
|
| 476 |
msgstr ""
|
| 477 |
|
| 478 |
-
#: bbp-
|
| 479 |
-
msgid "
|
| 480 |
-
msgstr ""
|
| 481 |
-
|
| 482 |
-
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:38
|
| 483 |
-
msgid "Create New Topic in “%s”"
|
| 484 |
msgstr ""
|
| 485 |
|
| 486 |
-
#: bbp-
|
| 487 |
-
|
|
|
|
| 488 |
msgstr ""
|
| 489 |
|
| 490 |
-
#: bbp-
|
| 491 |
-
msgid ""
|
| 492 |
-
"This forum is marked as closed to new topics, however your posting "
|
| 493 |
-
"capabilities still allow you to do so."
|
| 494 |
msgstr ""
|
| 495 |
|
| 496 |
-
#: bbp-
|
| 497 |
-
|
| 498 |
-
msgid "Your account has the ability to post unrestricted HTML content."
|
| 499 |
msgstr ""
|
| 500 |
|
| 501 |
-
#: bbp-
|
| 502 |
-
msgid "
|
| 503 |
msgstr ""
|
| 504 |
|
| 505 |
-
#: bbp-
|
| 506 |
-
msgid "
|
| 507 |
msgstr ""
|
| 508 |
|
| 509 |
-
#: bbp-
|
| 510 |
-
|
| 511 |
-
msgid ""
|
| 512 |
-
"You may use these <abbr title=\"HyperText Markup Language\">HTML</abbr> tags "
|
| 513 |
-
"and attributes:"
|
| 514 |
msgstr ""
|
| 515 |
|
| 516 |
-
#: bbp-
|
| 517 |
-
msgid "
|
| 518 |
msgstr ""
|
| 519 |
|
| 520 |
-
#: bbp-
|
| 521 |
-
msgid "
|
| 522 |
msgstr ""
|
| 523 |
|
| 524 |
-
#: bbp-
|
| 525 |
-
msgid "
|
| 526 |
msgstr ""
|
| 527 |
|
| 528 |
-
#: bbp-
|
| 529 |
-
|
| 530 |
-
msgid "Notify the author of follow-up replies via email"
|
| 531 |
msgstr ""
|
| 532 |
|
| 533 |
-
#: bbp-
|
| 534 |
-
#: bbp-
|
| 535 |
-
|
|
|
|
| 536 |
msgstr ""
|
| 537 |
|
| 538 |
-
#: bbp-
|
| 539 |
-
#: bbp-
|
| 540 |
-
|
|
|
|
| 541 |
msgstr ""
|
| 542 |
|
| 543 |
-
#: bbp-
|
| 544 |
-
#: bbp-
|
| 545 |
-
|
|
|
|
| 546 |
msgstr ""
|
| 547 |
|
| 548 |
-
#: bbp-
|
| 549 |
-
#: bbp-
|
| 550 |
-
|
|
|
|
| 551 |
msgstr ""
|
| 552 |
|
| 553 |
-
#: bbp-
|
| 554 |
-
#: bbp-
|
| 555 |
-
|
|
|
|
| 556 |
msgstr ""
|
| 557 |
|
| 558 |
-
#: bbp-
|
| 559 |
-
|
|
|
|
|
|
|
| 560 |
msgstr ""
|
| 561 |
|
| 562 |
-
#: bbp-
|
| 563 |
-
msgid "
|
| 564 |
msgstr ""
|
| 565 |
|
| 566 |
-
#: bbp-
|
| 567 |
-
msgid "
|
| 568 |
msgstr ""
|
| 569 |
|
| 570 |
-
#: bbp-
|
| 571 |
-
msgid "
|
| 572 |
msgstr ""
|
| 573 |
|
| 574 |
-
#: bbp-
|
| 575 |
-
msgid "
|
| 576 |
msgstr ""
|
| 577 |
|
| 578 |
-
#: bbp-
|
| 579 |
-
|
|
|
|
| 580 |
msgstr ""
|
| 581 |
|
| 582 |
-
#: bbp-
|
| 583 |
-
#: bbp-admin/bbp-
|
| 584 |
-
msgid "
|
| 585 |
msgstr ""
|
| 586 |
|
| 587 |
-
#: bbp-
|
| 588 |
-
msgid "
|
| 589 |
msgstr ""
|
| 590 |
|
| 591 |
-
|
| 592 |
-
|
|
|
|
| 593 |
msgstr ""
|
| 594 |
|
| 595 |
-
#: bbp-
|
| 596 |
-
msgid "
|
| 597 |
msgstr ""
|
| 598 |
|
| 599 |
-
#: bbp-
|
| 600 |
-
msgid "
|
| 601 |
msgstr ""
|
| 602 |
|
| 603 |
-
#: bbp-
|
| 604 |
-
msgid "
|
| 605 |
msgstr ""
|
| 606 |
|
| 607 |
-
#: bbp-
|
| 608 |
msgid ""
|
| 609 |
-
"
|
| 610 |
-
"
|
| 611 |
msgstr ""
|
| 612 |
|
| 613 |
-
|
| 614 |
-
|
| 615 |
-
|
| 616 |
-
"
|
| 617 |
msgstr ""
|
| 618 |
|
| 619 |
-
#: bbp-
|
| 620 |
-
msgid ""
|
| 621 |
-
"All replies within both topics will be merged chronologically. The order of "
|
| 622 |
-
"the merged replies is based on the time and date they were posted. If the "
|
| 623 |
-
"destination topic was created after this one, it's post date will be updated "
|
| 624 |
-
"to second earlier than this one."
|
| 625 |
msgstr ""
|
| 626 |
|
| 627 |
-
#: bbp-
|
| 628 |
-
msgid "
|
| 629 |
msgstr ""
|
| 630 |
|
| 631 |
-
#: bbp-
|
| 632 |
-
msgid "
|
| 633 |
msgstr ""
|
| 634 |
|
| 635 |
-
#: bbp-
|
| 636 |
-
msgid "
|
| 637 |
msgstr ""
|
| 638 |
|
| 639 |
-
#: bbp-
|
| 640 |
-
msgid "
|
| 641 |
msgstr ""
|
| 642 |
|
| 643 |
-
#: bbp-
|
| 644 |
-
msgid "
|
| 645 |
msgstr ""
|
| 646 |
|
| 647 |
-
#: bbp-
|
| 648 |
-
msgid "
|
| 649 |
msgstr ""
|
| 650 |
|
| 651 |
-
#: bbp-
|
| 652 |
-
msgid "
|
| 653 |
msgstr ""
|
| 654 |
|
| 655 |
-
#: bbp-
|
| 656 |
-
|
| 657 |
-
|
| 658 |
-
#: bbp-includes/bbp-topic-functions.php:1079
|
| 659 |
-
#: bbp-includes/bbp-topic-functions.php:1394
|
| 660 |
-
#: bbp-admin/importers/bbpress.php:1002
|
| 661 |
-
msgid "Reply To: %s"
|
| 662 |
msgstr ""
|
| 663 |
|
| 664 |
-
#: bbp-
|
| 665 |
-
msgid ""
|
| 666 |
-
"This topic is marked as closed to new replies, however your posting "
|
| 667 |
-
"capabilities still allow you to do so."
|
| 668 |
msgstr ""
|
| 669 |
|
| 670 |
-
#: bbp-
|
| 671 |
-
|
|
|
|
| 672 |
msgstr ""
|
| 673 |
|
| 674 |
-
#: bbp-
|
| 675 |
-
msgid "
|
| 676 |
msgstr ""
|
| 677 |
|
| 678 |
-
#: bbp-
|
| 679 |
-
msgid "
|
|
|
|
|
|
|
| 680 |
msgstr ""
|
| 681 |
|
| 682 |
-
#: bbp-
|
| 683 |
-
msgid "
|
|
|
|
|
|
|
| 684 |
msgstr ""
|
| 685 |
|
| 686 |
-
#: bbp-
|
| 687 |
-
msgid "
|
| 688 |
msgstr ""
|
| 689 |
|
| 690 |
-
#: bbp-
|
| 691 |
-
|
| 692 |
-
#: bbp-themes/bbp-twentyten/single-reply.php:31 bbp-admin/bbp-topics.php:595
|
| 693 |
-
#: bbp-admin/bbp-replies.php:526
|
| 694 |
-
msgid "Author"
|
| 695 |
msgstr ""
|
| 696 |
|
| 697 |
-
#: bbp-
|
| 698 |
-
|
| 699 |
-
"
|
| 700 |
msgstr ""
|
| 701 |
|
| 702 |
-
#: bbp-
|
| 703 |
-
msgid "
|
| 704 |
msgstr ""
|
| 705 |
|
| 706 |
-
#: bbp-
|
| 707 |
-
msgid "
|
| 708 |
msgstr ""
|
| 709 |
|
| 710 |
-
#: bbp-
|
| 711 |
-
|
| 712 |
-
|
|
|
|
|
|
|
| 713 |
msgstr ""
|
| 714 |
|
| 715 |
-
#: bbp-
|
| 716 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
| 717 |
msgstr ""
|
| 718 |
|
| 719 |
-
#: bbp-
|
| 720 |
-
msgid "
|
|
|
|
|
|
|
| 721 |
msgstr ""
|
| 722 |
|
| 723 |
-
#: bbp-
|
| 724 |
-
msgid "
|
|
|
|
|
|
|
| 725 |
msgstr ""
|
| 726 |
|
| 727 |
-
#: bbp-
|
| 728 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
| 729 |
msgstr ""
|
| 730 |
|
| 731 |
-
#: bbp-
|
| 732 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
| 733 |
msgstr ""
|
| 734 |
|
| 735 |
-
#: bbp-
|
| 736 |
-
|
| 737 |
-
|
| 738 |
-
|
| 739 |
-
|
| 740 |
-
#: bbp-includes/bbp-core-compatibility.php:891
|
| 741 |
-
msgid "Topic Tag: %s"
|
| 742 |
msgstr ""
|
| 743 |
|
| 744 |
-
#: bbp-
|
| 745 |
-
msgid "
|
|
|
|
|
|
|
| 746 |
msgstr ""
|
| 747 |
|
| 748 |
-
#: bbp-
|
| 749 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 750 |
msgstr ""
|
| 751 |
|
| 752 |
-
#: bbp-
|
| 753 |
-
msgid "
|
| 754 |
msgstr ""
|
| 755 |
|
| 756 |
-
#: bbp-
|
| 757 |
-
msgid "
|
| 758 |
msgstr ""
|
| 759 |
|
| 760 |
-
#: bbp-
|
| 761 |
-
|
| 762 |
-
msgid "×"
|
| 763 |
msgstr ""
|
| 764 |
|
| 765 |
-
#: bbp-
|
| 766 |
-
|
| 767 |
-
msgid "Add this topic to your favorites"
|
| 768 |
msgstr ""
|
| 769 |
|
| 770 |
-
#: bbp-
|
| 771 |
-
|
| 772 |
-
msgid "Subscribe"
|
| 773 |
msgstr ""
|
| 774 |
|
| 775 |
-
#: bbp-
|
| 776 |
-
|
| 777 |
-
msgid "Unsubscribe"
|
| 778 |
msgstr ""
|
| 779 |
|
| 780 |
-
#: bbp-
|
| 781 |
-
msgid "
|
| 782 |
msgstr ""
|
| 783 |
|
| 784 |
-
#: bbp-
|
| 785 |
-
|
| 786 |
-
#: bbp-includes/bbp-topic-template.php:1217
|
| 787 |
-
msgid "View %s's profile"
|
| 788 |
msgstr ""
|
| 789 |
|
| 790 |
-
#: bbp-
|
| 791 |
-
|
| 792 |
-
#: bbp-includes/bbp-topic-template.php:1217
|
| 793 |
-
msgid "Visit %s's website"
|
| 794 |
-
msgstr ""
|
| 795 |
-
|
| 796 |
-
#: bbp-includes/bbp-reply-template.php:1364
|
| 797 |
-
#: bbp-includes/bbp-common-template.php:1498
|
| 798 |
-
#: bbp-includes/bbp-topic-template.php:1985 bbpress.php:549 bbpress.php:606
|
| 799 |
-
#: bbpress.php:663
|
| 800 |
-
msgid "Edit"
|
| 801 |
msgstr ""
|
| 802 |
|
| 803 |
-
#: bbp-
|
| 804 |
-
|
| 805 |
-
#: bbp-admin/bbp-replies.php:697
|
| 806 |
-
msgid "Trash"
|
| 807 |
msgstr ""
|
| 808 |
|
| 809 |
-
#: bbp-
|
| 810 |
-
|
| 811 |
-
#: bbp-admin/bbp-replies.php:695
|
| 812 |
-
msgid "Restore"
|
| 813 |
msgstr ""
|
| 814 |
|
| 815 |
-
#: bbp-
|
| 816 |
-
|
| 817 |
-
#: bbp-admin/bbp-replies.php:695
|
| 818 |
-
msgid "Restore this item from the Trash"
|
| 819 |
msgstr ""
|
| 820 |
|
| 821 |
-
#: bbp-
|
| 822 |
-
|
| 823 |
-
#: bbp-admin/bbp-replies.php:697
|
| 824 |
-
msgid "Move this item to the Trash"
|
| 825 |
msgstr ""
|
| 826 |
|
| 827 |
-
#: bbp-
|
| 828 |
-
|
| 829 |
-
#: bbp-admin/bbp-replies.php:701
|
| 830 |
-
msgid "Delete this item permanently"
|
| 831 |
msgstr ""
|
| 832 |
|
| 833 |
-
#: bbp-
|
| 834 |
-
|
| 835 |
-
msgid "Are you sure you want to delete that permanently?"
|
| 836 |
msgstr ""
|
| 837 |
|
| 838 |
-
#: bbp-
|
| 839 |
-
|
| 840 |
-
#: bbp-admin/bbp-replies.php:687
|
| 841 |
-
msgid "Spam"
|
| 842 |
msgstr ""
|
| 843 |
|
| 844 |
-
#: bbp-
|
| 845 |
-
#: bbp-
|
| 846 |
-
|
|
|
|
| 847 |
msgstr ""
|
| 848 |
|
| 849 |
-
#: bbp-
|
| 850 |
-
msgid "
|
| 851 |
msgstr ""
|
| 852 |
|
| 853 |
-
#: bbp-
|
| 854 |
-
msgid "
|
| 855 |
msgstr ""
|
| 856 |
|
| 857 |
-
#: bbp-
|
| 858 |
-
msgid "
|
| 859 |
msgstr ""
|
| 860 |
|
| 861 |
-
#: bbp-
|
| 862 |
-
msgid "
|
| 863 |
msgstr ""
|
| 864 |
|
| 865 |
-
#: bbp-
|
| 866 |
-
msgid "
|
| 867 |
msgstr ""
|
| 868 |
|
| 869 |
-
#: bbp-
|
| 870 |
-
msgid "
|
| 871 |
msgstr ""
|
| 872 |
|
| 873 |
-
#: bbp-
|
| 874 |
-
msgid "
|
| 875 |
msgstr ""
|
| 876 |
|
| 877 |
-
#: bbp-
|
| 878 |
-
msgid "
|
| 879 |
msgstr ""
|
| 880 |
|
| 881 |
-
#: bbp-
|
| 882 |
-
msgid "
|
| 883 |
msgstr ""
|
| 884 |
|
| 885 |
-
#: bbp-
|
| 886 |
-
msgid "
|
| 887 |
msgstr ""
|
| 888 |
|
| 889 |
-
#: bbp-
|
| 890 |
-
msgid "
|
| 891 |
msgstr ""
|
| 892 |
|
| 893 |
-
#: bbp-
|
| 894 |
-
msgid "
|
| 895 |
msgstr ""
|
| 896 |
|
| 897 |
-
#: bbp-
|
| 898 |
-
msgid "
|
| 899 |
msgstr ""
|
| 900 |
|
| 901 |
-
#: bbp-
|
| 902 |
-
msgid "
|
|
|
|
|
|
|
| 903 |
msgstr ""
|
| 904 |
|
| 905 |
-
#: bbp-
|
| 906 |
-
msgid "
|
| 907 |
msgstr ""
|
| 908 |
|
| 909 |
-
#: bbp-
|
| 910 |
-
msgid "
|
| 911 |
msgstr ""
|
| 912 |
|
| 913 |
-
#: bbp-
|
| 914 |
-
msgid "
|
| 915 |
msgstr ""
|
| 916 |
|
| 917 |
-
#: bbp-
|
| 918 |
-
msgid "
|
| 919 |
msgstr ""
|
| 920 |
|
| 921 |
-
#: bbp-
|
| 922 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
| 923 |
msgstr ""
|
| 924 |
|
| 925 |
-
#: bbp-
|
| 926 |
-
msgid "You
|
| 927 |
msgstr ""
|
| 928 |
|
| 929 |
-
#: bbp-
|
| 930 |
-
msgid "
|
| 931 |
msgstr ""
|
| 932 |
|
| 933 |
-
#: bbp-
|
| 934 |
-
msgid "
|
| 935 |
msgstr ""
|
| 936 |
|
| 937 |
-
#: bbp-
|
| 938 |
-
msgid "
|
| 939 |
msgstr ""
|
| 940 |
|
| 941 |
-
#: bbp-
|
| 942 |
-
msgid "
|
| 943 |
msgstr ""
|
| 944 |
|
| 945 |
-
#: bbp-
|
| 946 |
-
msgid "
|
| 947 |
msgstr ""
|
| 948 |
|
| 949 |
-
#: bbp-
|
| 950 |
-
msgid "
|
|
|
|
|
|
|
| 951 |
msgstr ""
|
| 952 |
|
| 953 |
-
#: bbp-
|
| 954 |
-
msgid "
|
| 955 |
msgstr ""
|
| 956 |
|
| 957 |
-
#: bbp-
|
| 958 |
-
|
| 959 |
-
msgid "Post status was changed to %s"
|
| 960 |
msgstr ""
|
| 961 |
|
| 962 |
-
#: bbp-
|
| 963 |
-
msgid "
|
|
|
|
|
|
|
| 964 |
msgstr ""
|
| 965 |
|
| 966 |
-
#: bbp-
|
| 967 |
msgid ""
|
| 968 |
-
"
|
| 969 |
-
"
|
| 970 |
msgstr ""
|
| 971 |
|
| 972 |
-
#: bbp-
|
| 973 |
-
msgid "
|
| 974 |
msgstr ""
|
| 975 |
|
| 976 |
-
#: bbp-
|
| 977 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
| 978 |
msgstr ""
|
| 979 |
|
| 980 |
-
#: bbp-
|
| 981 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
| 982 |
msgstr ""
|
| 983 |
|
| 984 |
-
#: bbp-
|
| 985 |
-
msgid "
|
| 986 |
msgstr ""
|
| 987 |
|
| 988 |
-
#: bbp-
|
| 989 |
-
msgid "
|
|
|
|
|
|
|
| 990 |
msgstr ""
|
| 991 |
|
| 992 |
-
#: bbp-
|
| 993 |
-
msgid "
|
| 994 |
msgstr ""
|
| 995 |
|
| 996 |
-
#: bbp-
|
| 997 |
-
msgid "
|
| 998 |
msgstr ""
|
| 999 |
|
| 1000 |
-
#: bbp-
|
| 1001 |
-
msgid "
|
|
|
|
|
|
|
| 1002 |
msgstr ""
|
| 1003 |
|
| 1004 |
-
#: bbp-
|
| 1005 |
-
msgid "
|
|
|
|
|
|
|
| 1006 |
msgstr ""
|
| 1007 |
|
| 1008 |
-
#: bbp-
|
| 1009 |
-
msgid "
|
|
|
|
|
|
|
| 1010 |
msgstr ""
|
| 1011 |
|
| 1012 |
-
#: bbp-
|
| 1013 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
| 1014 |
msgstr ""
|
| 1015 |
|
| 1016 |
-
#: bbp-
|
| 1017 |
-
msgid "
|
| 1018 |
msgstr ""
|
| 1019 |
|
| 1020 |
-
#: bbp-
|
| 1021 |
-
msgid "
|
|
|
|
|
|
|
| 1022 |
msgstr ""
|
| 1023 |
|
| 1024 |
-
#: bbp-
|
| 1025 |
-
msgid "
|
| 1026 |
msgstr ""
|
| 1027 |
|
| 1028 |
-
#: bbp-
|
| 1029 |
-
msgid "
|
| 1030 |
msgstr ""
|
| 1031 |
|
| 1032 |
-
#: bbp-
|
| 1033 |
-
msgid "
|
|
|
|
|
|
|
| 1034 |
msgstr ""
|
| 1035 |
|
| 1036 |
-
#: bbp-
|
| 1037 |
-
msgid "
|
| 1038 |
msgstr ""
|
| 1039 |
|
| 1040 |
-
#: bbp-
|
| 1041 |
-
msgid "
|
|
|
|
|
|
|
| 1042 |
msgstr ""
|
| 1043 |
|
| 1044 |
-
#: bbp-
|
| 1045 |
-
|
| 1046 |
-
msgid "Private: %s"
|
| 1047 |
msgstr ""
|
| 1048 |
|
| 1049 |
-
#: bbp-
|
| 1050 |
-
|
| 1051 |
-
|
|
|
|
|
|
|
| 1052 |
msgstr ""
|
| 1053 |
|
| 1054 |
-
#: bbp-
|
| 1055 |
-
|
| 1056 |
-
|
|
|
|
| 1057 |
msgstr ""
|
| 1058 |
|
| 1059 |
-
#: bbp-
|
| 1060 |
-
msgid "
|
| 1061 |
msgstr ""
|
| 1062 |
|
| 1063 |
-
#: bbp-
|
| 1064 |
-
msgid "
|
|
|
|
|
|
|
| 1065 |
msgstr ""
|
| 1066 |
|
| 1067 |
-
#: bbp-
|
| 1068 |
msgid ""
|
| 1069 |
-
"%1$s
|
| 1070 |
-
"
|
| 1071 |
-
"%2$s\n"
|
| 1072 |
-
"\n"
|
| 1073 |
-
"Post Link: %3$s\n"
|
| 1074 |
-
"\n"
|
| 1075 |
-
"You're getting this mail because you subscribed to the topic, visit the "
|
| 1076 |
-
"topic and login to unsubscribe."
|
| 1077 |
msgstr ""
|
| 1078 |
|
| 1079 |
-
#: bbp-
|
| 1080 |
-
msgid "
|
| 1081 |
msgstr ""
|
| 1082 |
|
| 1083 |
-
#: bbp-
|
| 1084 |
msgid ""
|
| 1085 |
-
"
|
| 1086 |
-
|
| 1087 |
-
|
| 1088 |
-
#: bbp-includes/bbp-topic-functions.php:179
|
| 1089 |
-
#: bbp-includes/bbp-topic-functions.php:498
|
| 1090 |
-
msgid "<strong>ERROR</strong>: Your topic needs a title."
|
| 1091 |
msgstr ""
|
| 1092 |
|
| 1093 |
-
#: bbp-
|
| 1094 |
-
|
| 1095 |
-
msgid "<strong>ERROR</strong>: Your topic cannot be empty."
|
| 1096 |
msgstr ""
|
| 1097 |
|
| 1098 |
-
#: bbp-
|
| 1099 |
-
|
| 1100 |
-
|
| 1101 |
-
|
| 1102 |
msgstr ""
|
| 1103 |
|
| 1104 |
-
#: bbp-
|
| 1105 |
msgid ""
|
| 1106 |
-
"
|
| 1107 |
-
"
|
| 1108 |
-
|
| 1109 |
-
|
| 1110 |
-
#: bbp-includes/bbp-topic-functions.php:212
|
| 1111 |
-
#: bbp-includes/bbp-topic-functions.php:477
|
| 1112 |
-
msgid "<strong>ERROR</strong>: This forum has been closed to new topics."
|
| 1113 |
msgstr ""
|
| 1114 |
|
| 1115 |
-
#: bbp-
|
| 1116 |
-
#: bbp-includes/bbp-topic-functions.php:481
|
| 1117 |
msgid ""
|
| 1118 |
-
"
|
| 1119 |
-
"
|
| 1120 |
msgstr ""
|
| 1121 |
|
| 1122 |
-
#: bbp-
|
| 1123 |
-
|
| 1124 |
-
msgid ""
|
| 1125 |
-
"<strong>ERROR</strong>: This forum is hidden and you do not have the "
|
| 1126 |
-
"capability to read or create new topics in it."
|
| 1127 |
msgstr ""
|
| 1128 |
|
| 1129 |
-
#: bbp-
|
| 1130 |
-
|
| 1131 |
-
msgid "<strong>ERROR</strong>: Slow down; you move too fast."
|
| 1132 |
msgstr ""
|
| 1133 |
|
| 1134 |
-
#: bbp-
|
| 1135 |
-
msgid ""
|
| 1136 |
-
"<strong>ERROR</strong>: Duplicate topic detected; it looks as though "
|
| 1137 |
-
"you’ve already said that!"
|
| 1138 |
msgstr ""
|
| 1139 |
|
| 1140 |
-
#: bbp-
|
| 1141 |
-
|
| 1142 |
-
msgid "<strong>ERROR</strong>: Topic ID not found."
|
| 1143 |
msgstr ""
|
| 1144 |
|
| 1145 |
-
#: bbp-
|
| 1146 |
-
msgid "
|
| 1147 |
msgstr ""
|
| 1148 |
|
| 1149 |
-
#: bbp-
|
| 1150 |
-
msgid "
|
|
|
|
|
|
|
| 1151 |
msgstr ""
|
| 1152 |
|
| 1153 |
-
#: bbp-
|
| 1154 |
msgid ""
|
| 1155 |
-
"
|
| 1156 |
-
"
|
|
|
|
| 1157 |
msgstr ""
|
| 1158 |
|
| 1159 |
-
#: bbp-
|
| 1160 |
-
msgid "<
|
| 1161 |
msgstr ""
|
| 1162 |
|
| 1163 |
-
#: bbp-
|
| 1164 |
-
#: bbp-includes/bbp-topic-functions.php:1239
|
| 1165 |
msgid ""
|
| 1166 |
-
"
|
| 1167 |
-
"
|
| 1168 |
msgstr ""
|
| 1169 |
|
| 1170 |
-
#: bbp-
|
| 1171 |
-
msgid "
|
|
|
|
|
|
|
| 1172 |
msgstr ""
|
| 1173 |
|
| 1174 |
-
#: bbp-
|
| 1175 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1176 |
msgstr ""
|
| 1177 |
|
| 1178 |
-
#: bbp-
|
| 1179 |
msgid ""
|
| 1180 |
-
"
|
| 1181 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1182 |
msgstr ""
|
| 1183 |
|
| 1184 |
-
#: bbp-
|
| 1185 |
-
msgid "
|
|
|
|
|
|
|
| 1186 |
msgstr ""
|
| 1187 |
|
| 1188 |
-
#: bbp-
|
| 1189 |
-
msgid "
|
| 1190 |
msgstr ""
|
| 1191 |
|
| 1192 |
-
#: bbp-
|
| 1193 |
-
msgid "
|
| 1194 |
msgstr ""
|
| 1195 |
|
| 1196 |
-
#: bbp-
|
| 1197 |
-
msgid "
|
|
|
|
| 1198 |
msgstr ""
|
| 1199 |
|
| 1200 |
-
#: bbp-
|
| 1201 |
-
msgid "
|
| 1202 |
msgstr ""
|
| 1203 |
|
| 1204 |
-
#: bbp-
|
| 1205 |
-
msgid "
|
| 1206 |
msgstr ""
|
| 1207 |
|
| 1208 |
-
#: bbp-
|
| 1209 |
-
msgid ""
|
| 1210 |
-
"<strong>ERROR</strong>: You do not have the permissions to edit the "
|
| 1211 |
-
"destination topic!"
|
| 1212 |
msgstr ""
|
| 1213 |
|
| 1214 |
-
#: bbp-
|
| 1215 |
-
msgid ""
|
| 1216 |
-
"<strong>ERROR</strong>: There was a problem converting the reply into the "
|
| 1217 |
-
"topic. Please try again."
|
| 1218 |
msgstr ""
|
| 1219 |
|
| 1220 |
-
#: bbp-
|
| 1221 |
-
msgid ""
|
| 1222 |
-
"<strong>ERROR</strong>: You do not have the permissions to create new "
|
| 1223 |
-
"topics. The reply could not be converted into a topic."
|
| 1224 |
msgstr ""
|
| 1225 |
|
| 1226 |
-
#: bbp-
|
| 1227 |
-
msgid ""
|
| 1228 |
-
"<strong>ERROR</strong>: The following problem(s) have been found while "
|
| 1229 |
-
"getting the tag: %s"
|
| 1230 |
msgstr ""
|
| 1231 |
|
| 1232 |
-
#: bbp-
|
| 1233 |
-
#: bbp-includes/bbp-topic-functions.php:1575
|
| 1234 |
msgid ""
|
| 1235 |
-
"
|
| 1236 |
-
"
|
| 1237 |
msgstr ""
|
| 1238 |
|
| 1239 |
-
#: bbp-
|
| 1240 |
-
|
| 1241 |
-
msgid "<strong>ERROR</strong>: You need to enter a tag name."
|
| 1242 |
msgstr ""
|
| 1243 |
|
| 1244 |
-
#: bbp-
|
| 1245 |
-
|
| 1246 |
-
|
| 1247 |
-
|
|
|
|
|
|
|
|
|
|
| 1248 |
msgstr ""
|
| 1249 |
|
| 1250 |
-
#: bbp-
|
| 1251 |
-
#: bbp-includes/bbp-topic-functions.php:1609
|
| 1252 |
msgid ""
|
| 1253 |
-
"
|
| 1254 |
-
"
|
| 1255 |
msgstr ""
|
| 1256 |
|
| 1257 |
-
#: bbp-
|
| 1258 |
-
msgid ""
|
| 1259 |
-
"<strong>ERROR</strong>: The tags which are being merged can not be the same."
|
| 1260 |
msgstr ""
|
| 1261 |
|
| 1262 |
-
#: bbp-
|
| 1263 |
msgid ""
|
| 1264 |
-
"
|
| 1265 |
-
"
|
|
|
|
| 1266 |
msgstr ""
|
| 1267 |
|
| 1268 |
-
#: bbp-
|
| 1269 |
-
msgid ""
|
| 1270 |
-
"<strong>ERROR</strong>: The following problem(s) have been found while "
|
| 1271 |
-
"deleting the tag: %s"
|
| 1272 |
msgstr ""
|
| 1273 |
|
| 1274 |
-
#: bbp-
|
| 1275 |
-
msgid "
|
| 1276 |
msgstr ""
|
| 1277 |
|
| 1278 |
-
#: bbp-
|
| 1279 |
-
msgid "
|
| 1280 |
msgstr ""
|
| 1281 |
|
| 1282 |
-
#: bbp-
|
| 1283 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1284 |
msgstr ""
|
| 1285 |
|
| 1286 |
-
#: bbp-
|
| 1287 |
-
msgid "
|
|
|
|
|
|
|
| 1288 |
msgstr ""
|
| 1289 |
|
| 1290 |
-
#: bbp-
|
| 1291 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1292 |
msgstr ""
|
| 1293 |
|
| 1294 |
-
#: bbp-
|
| 1295 |
msgid ""
|
| 1296 |
-
"<strong>
|
|
|
|
| 1297 |
msgstr ""
|
| 1298 |
|
| 1299 |
-
#: bbp-
|
| 1300 |
-
msgid "
|
|
|
|
|
|
|
| 1301 |
msgstr ""
|
| 1302 |
|
| 1303 |
-
#: bbp-
|
| 1304 |
-
msgid "
|
|
|
|
|
|
|
| 1305 |
msgstr ""
|
| 1306 |
|
| 1307 |
-
#: bbp-
|
| 1308 |
-
msgid "
|
|
|
|
|
|
|
| 1309 |
msgstr ""
|
| 1310 |
|
| 1311 |
-
#: bbp-
|
| 1312 |
-
msgid "
|
|
|
|
|
|
|
| 1313 |
msgstr ""
|
| 1314 |
|
| 1315 |
-
#: bbp-
|
| 1316 |
-
msgid "
|
|
|
|
|
|
|
| 1317 |
msgstr ""
|
| 1318 |
|
| 1319 |
-
#: bbp-
|
| 1320 |
-
|
| 1321 |
-
|
|
|
|
|
|
|
| 1322 |
msgstr ""
|
| 1323 |
|
| 1324 |
-
#: bbp-
|
| 1325 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
| 1326 |
msgstr ""
|
| 1327 |
|
| 1328 |
-
#: bbp-
|
| 1329 |
-
msgid "
|
| 1330 |
-
msgid_plural "%s topics"
|
| 1331 |
-
msgstr[0] ""
|
| 1332 |
-
msgstr[1] ""
|
| 1333 |
-
|
| 1334 |
-
#: bbp-includes/bbp-forum-template.php:1097
|
| 1335 |
-
#: bbp-includes/bbp-topic-template.php:1646
|
| 1336 |
-
msgid " (+ %d hidden)"
|
| 1337 |
msgstr ""
|
| 1338 |
|
| 1339 |
-
#: bbp-
|
| 1340 |
-
#: bbp-includes/bbp-topic-template.php:1633
|
| 1341 |
-
msgid "%s reply"
|
| 1342 |
-
msgid_plural "%s replies"
|
| 1343 |
-
msgstr[0] ""
|
| 1344 |
-
msgstr[1] ""
|
| 1345 |
-
|
| 1346 |
-
#: bbp-includes/bbp-forum-template.php:1688
|
| 1347 |
msgid ""
|
| 1348 |
-
"
|
|
|
|
| 1349 |
msgstr ""
|
| 1350 |
|
| 1351 |
-
#: bbp-
|
| 1352 |
msgid ""
|
| 1353 |
-
"
|
|
|
|
|
|
|
| 1354 |
msgstr ""
|
| 1355 |
|
| 1356 |
-
#: bbp-
|
| 1357 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1358 |
msgstr ""
|
| 1359 |
|
| 1360 |
-
#: bbp-
|
| 1361 |
-
msgid "
|
|
|
|
|
|
|
| 1362 |
msgstr ""
|
| 1363 |
|
| 1364 |
-
#: bbp-
|
| 1365 |
-
msgid "
|
|
|
|
|
|
|
| 1366 |
msgstr ""
|
| 1367 |
|
| 1368 |
-
#: bbp-
|
| 1369 |
-
msgid "
|
|
|
|
|
|
|
| 1370 |
msgstr ""
|
| 1371 |
|
| 1372 |
-
#: bbp-
|
| 1373 |
-
|
| 1374 |
-
#: bbp-includes/bbp-core-widgets.php:761
|
| 1375 |
-
msgid "Title:"
|
| 1376 |
msgstr ""
|
| 1377 |
|
| 1378 |
-
#: bbp-
|
| 1379 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1380 |
msgstr ""
|
| 1381 |
|
| 1382 |
-
#: bbp-
|
| 1383 |
-
msgid "
|
|
|
|
|
|
|
| 1384 |
msgstr ""
|
| 1385 |
|
| 1386 |
-
#: bbp-
|
| 1387 |
-
msgid "
|
| 1388 |
msgstr ""
|
| 1389 |
|
| 1390 |
-
#: bbp-
|
| 1391 |
-
|
|
|
|
| 1392 |
msgstr ""
|
| 1393 |
|
| 1394 |
-
#: bbp-
|
| 1395 |
-
msgid "
|
| 1396 |
msgstr ""
|
| 1397 |
|
| 1398 |
-
#: bbp-
|
| 1399 |
-
msgid ""
|
| 1400 |
-
"Forum ID number. \"0\" to show only root forums, \"-1\" to display all "
|
| 1401 |
-
"forums."
|
| 1402 |
msgstr ""
|
| 1403 |
|
| 1404 |
-
#: bbp-
|
| 1405 |
-
msgid "
|
| 1406 |
msgstr ""
|
| 1407 |
|
| 1408 |
-
|
| 1409 |
-
|
|
|
|
| 1410 |
msgstr ""
|
| 1411 |
|
| 1412 |
-
#: bbp-
|
| 1413 |
-
msgid "
|
| 1414 |
msgstr ""
|
| 1415 |
|
| 1416 |
-
#: bbp-
|
| 1417 |
-
msgid "
|
| 1418 |
msgstr ""
|
| 1419 |
|
| 1420 |
-
#: bbp-
|
| 1421 |
-
msgid "
|
| 1422 |
msgstr ""
|
| 1423 |
|
| 1424 |
-
#: bbp-
|
| 1425 |
msgid ""
|
| 1426 |
-
"
|
| 1427 |
-
"
|
| 1428 |
msgstr ""
|
| 1429 |
|
| 1430 |
-
#: bbp-
|
| 1431 |
-
msgid "
|
| 1432 |
msgstr ""
|
| 1433 |
|
| 1434 |
-
#: bbp-
|
| 1435 |
-
msgid "
|
| 1436 |
msgstr ""
|
| 1437 |
|
| 1438 |
-
#: bbp-
|
| 1439 |
-
|
| 1440 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1441 |
|
| 1442 |
-
#: bbp-
|
| 1443 |
-
msgid "
|
| 1444 |
-
|
|
|
|
|
|
|
| 1445 |
|
| 1446 |
-
#: bbp-
|
| 1447 |
-
msgid ""
|
| 1448 |
-
"
|
| 1449 |
-
|
| 1450 |
-
msgstr ""
|
| 1451 |
|
| 1452 |
-
#: bbp-
|
| 1453 |
-
msgid "
|
| 1454 |
msgstr ""
|
| 1455 |
|
| 1456 |
-
#: bbp-
|
| 1457 |
-
|
| 1458 |
-
|
| 1459 |
-
|
| 1460 |
-
|
| 1461 |
-
msgstr ""
|
| 1462 |
|
| 1463 |
-
#: bbp-
|
| 1464 |
-
msgid ""
|
| 1465 |
-
"
|
| 1466 |
-
|
| 1467 |
-
msgstr ""
|
| 1468 |
|
| 1469 |
-
#: bbp-
|
| 1470 |
-
msgid ""
|
| 1471 |
-
"
|
| 1472 |
-
"
|
| 1473 |
-
msgstr ""
|
| 1474 |
|
| 1475 |
-
#: bbp-
|
| 1476 |
-
msgid "
|
| 1477 |
-
|
|
|
|
|
|
|
| 1478 |
|
| 1479 |
-
#: bbp-
|
| 1480 |
-
msgid ""
|
| 1481 |
-
"<strong>ERROR</strong>: No topic was found! Which topic are you subscribing/"
|
| 1482 |
-
"unsubscribing to?"
|
| 1483 |
msgstr ""
|
| 1484 |
|
| 1485 |
-
#: bbp-
|
| 1486 |
-
msgid ""
|
| 1487 |
-
"<strong>ERROR</strong>: There was a problem unsubscribing from that topic!"
|
| 1488 |
msgstr ""
|
| 1489 |
|
| 1490 |
-
#: bbp-
|
| 1491 |
-
msgid "
|
| 1492 |
msgstr ""
|
| 1493 |
|
| 1494 |
-
#: bbp-
|
| 1495 |
-
msgid ""
|
| 1496 |
-
"What are you doing here? You do not have the permission to edit this user."
|
| 1497 |
msgstr ""
|
| 1498 |
|
| 1499 |
-
#: bbp-
|
| 1500 |
-
msgid "
|
| 1501 |
msgstr ""
|
| 1502 |
|
| 1503 |
-
#: bbp-
|
| 1504 |
-
msgid "
|
| 1505 |
msgstr ""
|
| 1506 |
|
| 1507 |
-
#: bbp-
|
| 1508 |
-
|
|
|
|
| 1509 |
msgstr ""
|
| 1510 |
|
| 1511 |
-
#: bbp-
|
| 1512 |
-
|
| 1513 |
-
msgid "Open"
|
| 1514 |
msgstr ""
|
| 1515 |
|
| 1516 |
-
#: bbp-
|
| 1517 |
-
msgid "
|
| 1518 |
msgstr ""
|
| 1519 |
|
| 1520 |
-
#: bbp-
|
| 1521 |
-
msgid "
|
| 1522 |
msgstr ""
|
| 1523 |
|
| 1524 |
-
#: bbp-
|
| 1525 |
-
msgid "
|
| 1526 |
msgstr ""
|
| 1527 |
|
| 1528 |
-
#: bbp-
|
| 1529 |
-
msgid "
|
| 1530 |
msgstr ""
|
| 1531 |
|
| 1532 |
-
#: bbp-
|
| 1533 |
-
msgid "
|
| 1534 |
msgstr ""
|
| 1535 |
|
| 1536 |
-
#: bbp-
|
| 1537 |
-
msgid "
|
| 1538 |
msgstr ""
|
| 1539 |
|
| 1540 |
-
#: bbp-
|
| 1541 |
-
msgid "
|
| 1542 |
msgstr ""
|
| 1543 |
|
| 1544 |
-
#: bbp-
|
| 1545 |
-
msgid "
|
| 1546 |
msgstr ""
|
| 1547 |
|
| 1548 |
-
#: bbp-
|
| 1549 |
-
msgid "
|
| 1550 |
msgstr ""
|
| 1551 |
|
| 1552 |
-
#: bbp-
|
| 1553 |
-
msgid "
|
| 1554 |
msgstr ""
|
| 1555 |
|
| 1556 |
-
#: bbp-
|
| 1557 |
-
|
|
|
|
|
|
|
| 1558 |
msgstr ""
|
| 1559 |
|
| 1560 |
-
#: bbp-
|
| 1561 |
-
|
|
|
|
|
|
|
| 1562 |
msgstr ""
|
| 1563 |
|
| 1564 |
-
#: bbp-
|
| 1565 |
-
|
| 1566 |
-
|
| 1567 |
-
msgstr[0] ""
|
| 1568 |
-
msgstr[1] ""
|
| 1569 |
-
|
| 1570 |
-
#: bbp-includes/bbp-topic-template.php:2648
|
| 1571 |
-
msgid ""
|
| 1572 |
-
"This topic has %1$s, contains %2$s, and was last updated by %3$s %4$s ago."
|
| 1573 |
msgstr ""
|
| 1574 |
|
| 1575 |
-
#: bbp-
|
| 1576 |
-
msgid "
|
| 1577 |
msgstr ""
|
| 1578 |
|
| 1579 |
-
#: bbp-
|
| 1580 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1581 |
msgstr ""
|
| 1582 |
|
| 1583 |
-
#: bbp-
|
| 1584 |
-
msgid "
|
|
|
|
|
|
|
| 1585 |
msgstr ""
|
| 1586 |
|
| 1587 |
-
#: bbp-
|
| 1588 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1589 |
msgstr ""
|
| 1590 |
|
| 1591 |
-
#: bbp-
|
| 1592 |
-
|
| 1593 |
-
|
|
|
|
|
|
|
| 1594 |
msgstr ""
|
| 1595 |
|
| 1596 |
-
#: bbp-
|
| 1597 |
msgid ""
|
| 1598 |
-
"<strong>
|
| 1599 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1600 |
msgstr ""
|
| 1601 |
|
| 1602 |
-
#: bbp-
|
| 1603 |
-
#: bbp-includes/bbp-reply-functions.php:488
|
| 1604 |
msgid ""
|
| 1605 |
-
"<strong>
|
|
|
|
|
|
|
| 1606 |
msgstr ""
|
| 1607 |
|
| 1608 |
-
#: bbp-
|
| 1609 |
-
msgid "
|
| 1610 |
msgstr ""
|
| 1611 |
|
| 1612 |
-
#: bbp-
|
| 1613 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
| 1614 |
msgstr ""
|
| 1615 |
|
| 1616 |
-
#: bbp-
|
| 1617 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
| 1618 |
msgstr ""
|
| 1619 |
|
| 1620 |
-
#: bbp-
|
| 1621 |
msgid ""
|
| 1622 |
-
"
|
| 1623 |
-
"
|
| 1624 |
msgstr ""
|
| 1625 |
|
| 1626 |
-
#: bbp-
|
| 1627 |
msgid ""
|
| 1628 |
-
"
|
|
|
|
|
|
|
| 1629 |
msgstr ""
|
| 1630 |
|
| 1631 |
-
#: bbp-
|
| 1632 |
msgid ""
|
| 1633 |
-
"
|
| 1634 |
-
"
|
|
|
|
| 1635 |
msgstr ""
|
| 1636 |
|
| 1637 |
-
#: bbp-
|
| 1638 |
msgid ""
|
| 1639 |
-
"
|
| 1640 |
-
"
|
| 1641 |
msgstr ""
|
| 1642 |
|
| 1643 |
-
#: bbp-
|
| 1644 |
-
msgid "
|
|
|
|
|
|
|
| 1645 |
msgstr ""
|
| 1646 |
|
| 1647 |
-
#: bbp-
|
| 1648 |
msgid ""
|
| 1649 |
-
"
|
|
|
|
| 1650 |
msgstr ""
|
| 1651 |
|
| 1652 |
-
#: bbp-
|
| 1653 |
-
msgid "
|
| 1654 |
msgstr ""
|
| 1655 |
|
| 1656 |
-
#: bbp-
|
| 1657 |
-
msgid "
|
|
|
|
|
|
|
| 1658 |
msgstr ""
|
| 1659 |
|
| 1660 |
-
#: bbp-
|
| 1661 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1662 |
msgstr ""
|
| 1663 |
|
| 1664 |
-
#: bbp-
|
| 1665 |
-
msgid "
|
|
|
|
|
|
|
| 1666 |
msgstr ""
|
| 1667 |
|
| 1668 |
-
#: bbp-
|
| 1669 |
-
msgid "
|
| 1670 |
msgstr ""
|
| 1671 |
|
| 1672 |
-
#: bbp-
|
| 1673 |
-
msgid "
|
| 1674 |
msgstr ""
|
| 1675 |
|
| 1676 |
-
#: bbp-admin/bbp-
|
| 1677 |
-
msgid ""
|
| 1678 |
-
"The topic title field and the big topic editing area are fixed in place, but "
|
| 1679 |
-
"you can reposition all the other boxes using drag and drop, and can minimize "
|
| 1680 |
-
"or expand them by clicking the title bar of the box. Use the Screen Options "
|
| 1681 |
-
"tab to unhide more boxes (Topic Tags, Topic Attributes, or Slug) or to "
|
| 1682 |
-
"choose a 1- or 2-column layout for this screen."
|
| 1683 |
msgstr ""
|
| 1684 |
|
| 1685 |
-
#: bbp-admin/bbp-
|
| 1686 |
-
msgid ""
|
| 1687 |
-
"<strong>Title</strong> - Enter a title for your topic. After you enter a "
|
| 1688 |
-
"title, you will see the permalink below, which you can edit."
|
| 1689 |
msgstr ""
|
| 1690 |
|
| 1691 |
-
#: bbp-admin/bbp-
|
| 1692 |
-
msgid ""
|
| 1693 |
-
"<strong>Post editor</strong> - Enter the text for your topic. There are two "
|
| 1694 |
-
"modes of editing: Visual and HTML. Choose the mode by clicking on the "
|
| 1695 |
-
"appropriate tab. Visual mode gives you a WYSIWYG editor. Click the last icon "
|
| 1696 |
-
"in the row to get a second row of controls. The screen icon just before that "
|
| 1697 |
-
"allows you to expand the edit box to full screen. The HTML mode allows you "
|
| 1698 |
-
"to enter raw HTML along with your forum text. You can insert media files by "
|
| 1699 |
-
"clicking the icons above the post editor and following the directions."
|
| 1700 |
msgstr ""
|
| 1701 |
|
| 1702 |
-
#: bbp-admin/bbp-
|
| 1703 |
-
msgid ""
|
| 1704 |
-
"<strong>Topic Attributes</strong> - Select the attributes that your topic "
|
| 1705 |
-
"should have. The Forum dropdown determines the parent forum that the topic "
|
| 1706 |
-
"belongs to. Select the forum or category from the dropdown, or leave the "
|
| 1707 |
-
"default (No Forum) to post the topic without an assigned forum."
|
| 1708 |
msgstr ""
|
| 1709 |
|
| 1710 |
-
#: bbp-admin/bbp-
|
| 1711 |
-
msgid ""
|
| 1712 |
-
"<strong>Publish</strong> - The Publish box will allow you to save your topic "
|
| 1713 |
-
"as Draft or Pending Review. You may Preview your topic before it is "
|
| 1714 |
-
"published as well. The Visibility will determine whether the topic is "
|
| 1715 |
-
"Public, Password protected (requiring a password on the site to view) or "
|
| 1716 |
-
"Private (only the author will have access to it). Topics may be published "
|
| 1717 |
-
"immediately by clicking the dropdown, or at a specific date and time by "
|
| 1718 |
-
"clicking the Edit link."
|
| 1719 |
msgstr ""
|
| 1720 |
|
| 1721 |
-
#: bbp-admin/bbp-
|
| 1722 |
-
msgid ""
|
| 1723 |
-
"<strong>Topic Tags</strong> - You can assign keywords to your topics using "
|
| 1724 |
-
"Topic Tags. Unlike categories, tags have no hierarchy, meaning there is no "
|
| 1725 |
-
"relationship from one tag to another. Topics can be added and modified "
|
| 1726 |
-
"further from the Topic Tags screen."
|
| 1727 |
msgstr ""
|
| 1728 |
|
| 1729 |
-
#: bbp-admin/bbp-
|
| 1730 |
-
msgid ""
|
| 1731 |
-
"<strong>Revisions</strong> - Revisions show past versions of the saved "
|
| 1732 |
-
"topic. Each revision can be compared to the current version, or another "
|
| 1733 |
-
"revision. Revisions can also be restored to the current version."
|
| 1734 |
msgstr ""
|
| 1735 |
|
| 1736 |
-
#: bbp-admin/bbp-
|
| 1737 |
-
|
| 1738 |
-
#: bbp-admin/bbp-forums.php:157 bbp-admin/bbp-replies.php:122
|
| 1739 |
-
#: bbp-admin/bbp-replies.php:163
|
| 1740 |
-
msgid "<strong>For more information:</strong>"
|
| 1741 |
msgstr ""
|
| 1742 |
|
| 1743 |
-
#: bbp-admin/bbp-
|
| 1744 |
-
|
| 1745 |
-
#: bbp-admin/bbp-forums.php:160 bbp-admin/bbp-replies.php:125
|
| 1746 |
-
#: bbp-admin/bbp-replies.php:166
|
| 1747 |
-
msgid "<a href=\"http://bbpress.org/documentation/\">bbPress Documentation</a>"
|
| 1748 |
msgstr ""
|
| 1749 |
|
| 1750 |
-
#: bbp-admin/bbp-
|
| 1751 |
-
|
| 1752 |
-
#: bbp-admin/bbp-forums.php:161 bbp-admin/bbp-replies.php:126
|
| 1753 |
-
#: bbp-admin/bbp-replies.php:167
|
| 1754 |
-
msgid "<a href=\"http://bbpress.org/forums/\">bbPress Support Forums</a>"
|
| 1755 |
msgstr ""
|
| 1756 |
|
| 1757 |
-
#: bbp-admin/bbp-
|
| 1758 |
-
msgid "
|
| 1759 |
msgstr ""
|
| 1760 |
|
| 1761 |
-
|
| 1762 |
-
#: bbp-admin/bbp-replies.php:
|
| 1763 |
-
msgid "
|
| 1764 |
msgstr ""
|
| 1765 |
|
| 1766 |
-
#: bbp-admin/bbp-
|
| 1767 |
-
msgid ""
|
| 1768 |
-
"You can hide/display columns based on your needs and decide how many topics "
|
| 1769 |
-
"to list per screen using the Screen Options tab."
|
| 1770 |
msgstr ""
|
| 1771 |
|
| 1772 |
-
#: bbp-admin/bbp-
|
| 1773 |
-
msgid ""
|
| 1774 |
-
"You can filter the list of topics by topics status using the text links in "
|
| 1775 |
-
"the upper left to show All, Published, Pending Review, Draft, or Trashed "
|
| 1776 |
-
"topics. The default view is to show all topics."
|
| 1777 |
msgstr ""
|
| 1778 |
|
| 1779 |
-
#: bbp-admin/bbp-
|
| 1780 |
-
msgid ""
|
| 1781 |
-
"You can view topics in a simple title list or with an excerpt. Choose the "
|
| 1782 |
-
"view you prefer by clicking on the icons at the top of the list on the right."
|
| 1783 |
msgstr ""
|
| 1784 |
|
| 1785 |
-
#: bbp-admin/bbp-
|
| 1786 |
msgid ""
|
| 1787 |
-
"
|
| 1788 |
-
"
|
| 1789 |
-
"making your selection."
|
| 1790 |
msgstr ""
|
| 1791 |
|
| 1792 |
-
#: bbp-admin/bbp-
|
| 1793 |
-
msgid ""
|
| 1794 |
-
"You can also show only topics from a specific parent forum by using the "
|
| 1795 |
-
"parent forum dropdown above the topics list and selecting the parent forum. "
|
| 1796 |
-
"Click the Filter button after making your selection."
|
| 1797 |
msgstr ""
|
| 1798 |
|
| 1799 |
-
#: bbp-
|
| 1800 |
-
msgid ""
|
| 1801 |
-
"You can refine the list by clicking on the topic creator in the topics list."
|
| 1802 |
msgstr ""
|
| 1803 |
|
| 1804 |
-
#: bbp-
|
| 1805 |
-
msgid ""
|
| 1806 |
-
"Hovering over a row in the topics list will display action links that allow "
|
| 1807 |
-
"you to manage your topic. You can perform the following actions:"
|
| 1808 |
msgstr ""
|
| 1809 |
|
| 1810 |
-
#: bbp-
|
| 1811 |
-
msgid ""
|
| 1812 |
-
"Edit takes you to the editing screen for that topic. You can also reach that "
|
| 1813 |
-
"screen by clicking on the topic title."
|
| 1814 |
msgstr ""
|
| 1815 |
|
| 1816 |
-
#: bbp-
|
| 1817 |
-
msgid ""
|
| 1818 |
-
"Trash removes your topic from this list and places it in the trash, from "
|
| 1819 |
-
"which you can permanently delete it."
|
| 1820 |
msgstr ""
|
| 1821 |
|
| 1822 |
-
#: bbp-
|
| 1823 |
-
|
|
|
|
| 1824 |
msgstr ""
|
| 1825 |
|
| 1826 |
-
#: bbp-
|
| 1827 |
-
|
| 1828 |
-
|
| 1829 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1830 |
msgstr ""
|
| 1831 |
|
| 1832 |
-
#: bbp-
|
| 1833 |
-
|
| 1834 |
-
|
| 1835 |
-
|
| 1836 |
-
|
| 1837 |
msgstr ""
|
| 1838 |
|
| 1839 |
-
#: bbp-
|
| 1840 |
-
msgid ""
|
| 1841 |
-
"Spam will mark the topic as spam, closing the post to new replies and "
|
| 1842 |
-
"removing it from the public view."
|
| 1843 |
msgstr ""
|
| 1844 |
|
| 1845 |
-
#: bbp-
|
| 1846 |
-
msgid ""
|
| 1847 |
-
"You can also edit multiple topics at once. Select the topics you want to "
|
| 1848 |
-
"edit using the checkboxes, select Edit from the Bulk Actions menu and click "
|
| 1849 |
-
"Apply. You will be able to change the metadata for all selected topics at "
|
| 1850 |
-
"once. To remove a topic from the grouping, just click the x next to its name "
|
| 1851 |
-
"in the Bulk Edit area that appears."
|
| 1852 |
msgstr ""
|
| 1853 |
|
| 1854 |
-
#: bbp-
|
| 1855 |
-
msgid ""
|
| 1856 |
-
"The Bulk Actions menu may also be used to delete multiple topics at once. "
|
| 1857 |
-
"Select Delete from the dropdown after making your selection."
|
| 1858 |
msgstr ""
|
| 1859 |
|
| 1860 |
-
#: bbp-
|
| 1861 |
-
msgid ""
|
| 1862 |
-
"You can change the display of this screen using the Screen Options tab to "
|
| 1863 |
-
"set how many items are displayed per screen (20 by default) and to display/"
|
| 1864 |
-
"hide columns in the table (Description, Slug, and Topics)."
|
| 1865 |
msgstr ""
|
| 1866 |
|
| 1867 |
-
#: bbp-
|
| 1868 |
-
msgid ""
|
| 1869 |
-
"You can assign keywords to your topics using Topic Tags. Unlike categories, "
|
| 1870 |
-
"tags have no hierarchy, meaning there is no relationship from one tag to "
|
| 1871 |
-
"another."
|
| 1872 |
msgstr ""
|
| 1873 |
|
| 1874 |
-
#: bbp-
|
| 1875 |
-
msgid ""
|
| 1876 |
-
"Normally, tags are ad-hoc keywords that identify important information in "
|
| 1877 |
-
"your topic (names, subjects, etc) that may or may not recur in other topics. "
|
| 1878 |
-
"If you think of your forum like a book, the tags are like the terms in the "
|
| 1879 |
-
"index."
|
| 1880 |
msgstr ""
|
| 1881 |
|
| 1882 |
-
#: bbp-
|
| 1883 |
-
msgid ""
|
| 1884 |
-
"When editing a topic tag on this screen, you will fill in the following "
|
| 1885 |
-
"fields:"
|
| 1886 |
msgstr ""
|
| 1887 |
|
| 1888 |
-
#: bbp-
|
| 1889 |
-
msgid "
|
| 1890 |
msgstr ""
|
| 1891 |
|
| 1892 |
-
#: bbp-
|
| 1893 |
-
msgid ""
|
| 1894 |
-
"<strong>Slug</strong> - The Slug is the URL-friendly version of the name. It "
|
| 1895 |
-
"is usually all lowercase and contains only letters, numbers, and hyphens."
|
| 1896 |
msgstr ""
|
| 1897 |
|
| 1898 |
-
#: bbp-
|
| 1899 |
-
msgid ""
|
| 1900 |
-
"<strong>Description</strong> - The description is not prominent by default; "
|
| 1901 |
-
"however, some forum themes may display it."
|
| 1902 |
msgstr ""
|
| 1903 |
|
| 1904 |
-
#: bbp-
|
| 1905 |
-
msgid "
|
| 1906 |
msgstr ""
|
| 1907 |
|
| 1908 |
-
#: bbp-
|
| 1909 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1910 |
msgstr ""
|
| 1911 |
|
| 1912 |
-
#: bbp-
|
| 1913 |
-
msgid "
|
| 1914 |
msgstr ""
|
| 1915 |
|
| 1916 |
-
#: bbp-
|
| 1917 |
-
msgid "
|
| 1918 |
msgstr ""
|
| 1919 |
|
| 1920 |
-
#: bbp-
|
| 1921 |
-
msgid "
|
| 1922 |
msgstr ""
|
| 1923 |
|
| 1924 |
-
#: bbp-
|
| 1925 |
-
msgid "
|
| 1926 |
msgstr ""
|
| 1927 |
|
| 1928 |
-
#: bbp-
|
| 1929 |
-
msgid "
|
|
|
|
|
|
|
| 1930 |
msgstr ""
|
| 1931 |
|
| 1932 |
-
#: bbp-
|
| 1933 |
-
msgid "
|
| 1934 |
msgstr ""
|
| 1935 |
|
| 1936 |
-
#: bbp-
|
| 1937 |
-
msgid "
|
| 1938 |
msgstr ""
|
| 1939 |
|
| 1940 |
-
#: bbp-
|
| 1941 |
-
msgid "
|
| 1942 |
msgstr ""
|
| 1943 |
|
| 1944 |
-
#: bbp-
|
| 1945 |
-
|
|
|
|
|
|
|
| 1946 |
msgstr ""
|
| 1947 |
|
| 1948 |
-
#: bbp-
|
| 1949 |
-
msgid "
|
| 1950 |
msgstr ""
|
| 1951 |
|
| 1952 |
-
#: bbp-
|
| 1953 |
-
|
|
|
|
| 1954 |
msgstr ""
|
| 1955 |
|
| 1956 |
-
#: bbp-
|
| 1957 |
-
|
|
|
|
| 1958 |
msgstr ""
|
| 1959 |
|
| 1960 |
-
#: bbp-
|
| 1961 |
-
msgid "
|
|
|
|
|
|
|
| 1962 |
msgstr ""
|
| 1963 |
|
| 1964 |
-
#: bbp-
|
| 1965 |
-
msgid "
|
| 1966 |
msgstr ""
|
| 1967 |
|
| 1968 |
-
#: bbp-
|
| 1969 |
-
|
|
|
|
|
|
|
| 1970 |
msgstr ""
|
| 1971 |
|
| 1972 |
-
#: bbp-
|
| 1973 |
-
|
| 1974 |
-
msgid "Created"
|
| 1975 |
msgstr ""
|
| 1976 |
|
| 1977 |
-
#: bbp-
|
| 1978 |
-
|
| 1979 |
-
msgid "No Forum"
|
| 1980 |
msgstr ""
|
| 1981 |
|
| 1982 |
-
#: bbp-
|
| 1983 |
-
msgid "
|
| 1984 |
msgstr ""
|
| 1985 |
|
| 1986 |
-
#: bbp-
|
| 1987 |
-
|
| 1988 |
-
|
|
|
|
| 1989 |
msgstr ""
|
| 1990 |
|
| 1991 |
-
#: bbp-
|
| 1992 |
-
msgid "
|
|
|
|
| 1993 |
msgstr ""
|
| 1994 |
|
| 1995 |
-
#: bbp-
|
| 1996 |
-
msgid "
|
|
|
|
|
|
|
| 1997 |
msgstr ""
|
| 1998 |
|
| 1999 |
-
#: bbp-
|
| 2000 |
-
msgid "
|
|
|
|
|
|
|
| 2001 |
msgstr ""
|
| 2002 |
|
| 2003 |
-
#: bbp-
|
| 2004 |
-
msgid "
|
| 2005 |
msgstr ""
|
| 2006 |
|
| 2007 |
-
#: bbp-
|
| 2008 |
-
msgid "
|
| 2009 |
msgstr ""
|
| 2010 |
|
| 2011 |
-
#: bbp-
|
| 2012 |
-
msgid "
|
|
|
|
| 2013 |
msgstr ""
|
| 2014 |
|
| 2015 |
-
#: bbp-
|
| 2016 |
-
msgid "
|
| 2017 |
msgstr ""
|
| 2018 |
|
| 2019 |
-
#: bbp-
|
| 2020 |
-
msgid "
|
| 2021 |
msgstr ""
|
| 2022 |
|
| 2023 |
-
#: bbp-
|
| 2024 |
-
msgid "
|
| 2025 |
msgstr ""
|
| 2026 |
|
| 2027 |
-
#: bbp-
|
| 2028 |
-
msgid "
|
| 2029 |
msgstr ""
|
| 2030 |
|
| 2031 |
-
#: bbp-
|
| 2032 |
-
msgid "
|
| 2033 |
msgstr ""
|
| 2034 |
|
| 2035 |
-
#: bbp-
|
| 2036 |
-
msgid "
|
| 2037 |
msgstr ""
|
| 2038 |
|
| 2039 |
-
#: bbp-
|
| 2040 |
-
|
|
|
|
| 2041 |
msgstr ""
|
| 2042 |
|
| 2043 |
-
#: bbp-
|
| 2044 |
-
|
|
|
|
|
|
|
|
|
|
| 2045 |
msgstr ""
|
| 2046 |
|
| 2047 |
-
#: bbp-
|
| 2048 |
-
|
|
|
|
| 2049 |
msgstr ""
|
| 2050 |
|
| 2051 |
-
#: bbp-
|
| 2052 |
-
#: bbp-
|
| 2053 |
-
msgid "
|
| 2054 |
msgstr ""
|
| 2055 |
|
| 2056 |
-
#: bbp-
|
| 2057 |
-
|
| 2058 |
-
msgid "Custom field deleted."
|
| 2059 |
msgstr ""
|
| 2060 |
|
| 2061 |
-
#: bbp-
|
| 2062 |
-
msgid "
|
| 2063 |
msgstr ""
|
| 2064 |
|
| 2065 |
-
|
| 2066 |
-
|
| 2067 |
-
msgid "Topic restored to revision from %s"
|
| 2068 |
msgstr ""
|
| 2069 |
|
| 2070 |
-
#: bbp-
|
| 2071 |
-
msgid "
|
| 2072 |
msgstr ""
|
| 2073 |
|
| 2074 |
-
#: bbp-
|
| 2075 |
-
msgid "
|
| 2076 |
msgstr ""
|
| 2077 |
|
| 2078 |
-
#: bbp-
|
| 2079 |
-
msgid "
|
| 2080 |
msgstr ""
|
| 2081 |
|
| 2082 |
-
#: bbp-
|
| 2083 |
-
msgid ""
|
| 2084 |
-
"Topic scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
|
| 2085 |
-
"\">Preview topic</a>"
|
| 2086 |
msgstr ""
|
| 2087 |
|
| 2088 |
-
|
| 2089 |
-
|
| 2090 |
-
#: bbp-admin/bbp-replies.php:852
|
| 2091 |
-
msgid "M j, Y @ G:i"
|
| 2092 |
msgstr ""
|
| 2093 |
|
| 2094 |
-
#: bbp-
|
| 2095 |
-
msgid "
|
| 2096 |
msgstr ""
|
| 2097 |
|
| 2098 |
-
#: bbp-
|
| 2099 |
-
msgid "
|
| 2100 |
msgstr ""
|
| 2101 |
|
| 2102 |
-
#: bbp-
|
| 2103 |
-
msgid "
|
| 2104 |
-
|
|
|
|
|
|
|
| 2105 |
|
| 2106 |
-
#: bbp-
|
| 2107 |
-
|
|
|
|
| 2108 |
msgstr ""
|
| 2109 |
|
| 2110 |
-
#: bbp-
|
| 2111 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2112 |
msgstr ""
|
| 2113 |
|
| 2114 |
-
#: bbp-
|
| 2115 |
-
msgid "
|
|
|
|
| 2116 |
msgstr ""
|
| 2117 |
|
| 2118 |
-
#: bbp-
|
| 2119 |
-
msgid "
|
| 2120 |
msgstr ""
|
| 2121 |
|
| 2122 |
-
#: bbp-
|
| 2123 |
-
msgid "
|
| 2124 |
msgstr ""
|
| 2125 |
|
| 2126 |
-
#: bbp-
|
| 2127 |
-
msgid "
|
| 2128 |
msgstr ""
|
| 2129 |
|
| 2130 |
-
#: bbp-
|
| 2131 |
-
msgid "
|
| 2132 |
msgstr ""
|
| 2133 |
|
| 2134 |
-
#: bbp-
|
| 2135 |
-
|
|
|
|
|
|
|
| 2136 |
msgstr ""
|
| 2137 |
|
| 2138 |
-
#: bbp-
|
| 2139 |
-
#: bbp-
|
| 2140 |
-
#: bbp-
|
| 2141 |
-
#: bbp-
|
| 2142 |
-
|
| 2143 |
-
#: bbp-admin/bbp-functions.php:765 bbp-admin/bbp-functions.php:822
|
| 2144 |
-
msgid "Failed!"
|
| 2145 |
msgstr ""
|
| 2146 |
|
| 2147 |
-
#: bbp-
|
| 2148 |
-
#: bbp-
|
| 2149 |
-
|
| 2150 |
-
#: bbp-admin/bbp-functions.php:747 bbp-admin/bbp-functions.php:805
|
| 2151 |
-
#: bbp-admin/bbp-functions.php:902
|
| 2152 |
-
msgid "Complete!"
|
| 2153 |
msgstr ""
|
| 2154 |
|
| 2155 |
-
#: bbp-
|
| 2156 |
-
msgid "
|
| 2157 |
msgstr ""
|
| 2158 |
|
| 2159 |
-
#: bbp-
|
| 2160 |
-
|
| 2161 |
-
|
| 2162 |
msgstr ""
|
| 2163 |
|
| 2164 |
-
#: bbp-
|
| 2165 |
-
|
|
|
|
| 2166 |
msgstr ""
|
| 2167 |
|
| 2168 |
-
#: bbp-
|
| 2169 |
-
|
|
|
|
|
|
|
| 2170 |
msgstr ""
|
| 2171 |
|
| 2172 |
-
#: bbp-
|
| 2173 |
-
msgid "
|
| 2174 |
msgstr ""
|
| 2175 |
|
| 2176 |
-
#: bbp-
|
| 2177 |
-
msgid "
|
| 2178 |
msgstr ""
|
| 2179 |
|
| 2180 |
-
#: bbp-
|
| 2181 |
-
msgid "
|
| 2182 |
msgstr ""
|
| 2183 |
|
| 2184 |
-
#: bbp-
|
| 2185 |
-
msgid "
|
| 2186 |
msgstr ""
|
| 2187 |
|
| 2188 |
-
#: bbp-
|
| 2189 |
-
msgid "
|
| 2190 |
msgstr ""
|
| 2191 |
|
| 2192 |
-
#: bbp-
|
| 2193 |
-
msgid "
|
| 2194 |
msgstr ""
|
| 2195 |
|
| 2196 |
-
#: bbp-
|
| 2197 |
-
msgid "
|
| 2198 |
msgstr ""
|
| 2199 |
|
| 2200 |
-
#: bbp-
|
| 2201 |
-
msgid "
|
| 2202 |
msgstr ""
|
| 2203 |
|
| 2204 |
-
#: bbp-
|
| 2205 |
-
msgid "
|
| 2206 |
msgstr ""
|
| 2207 |
|
| 2208 |
-
#: bbp-
|
| 2209 |
-
msgid "
|
| 2210 |
msgstr ""
|
| 2211 |
|
| 2212 |
-
#: bbp-
|
| 2213 |
-
msgid "
|
| 2214 |
msgstr ""
|
| 2215 |
|
| 2216 |
-
#: bbp-
|
| 2217 |
-
msgid "
|
| 2218 |
msgstr ""
|
| 2219 |
|
| 2220 |
-
#: bbp-
|
| 2221 |
-
msgid "
|
| 2222 |
msgstr ""
|
| 2223 |
|
| 2224 |
-
#: bbp-
|
| 2225 |
-
msgid "
|
|
|
|
|
|
|
| 2226 |
msgstr ""
|
| 2227 |
|
| 2228 |
-
#: bbp-
|
| 2229 |
-
msgid ""
|
| 2230 |
-
"Allow all users of your multisite installation to create topics and replies"
|
| 2231 |
msgstr ""
|
| 2232 |
|
| 2233 |
-
#: bbp-
|
| 2234 |
-
msgid "
|
| 2235 |
msgstr ""
|
| 2236 |
|
| 2237 |
-
#: bbp-
|
| 2238 |
-
#: bbp-
|
| 2239 |
-
msgid "
|
| 2240 |
msgstr ""
|
| 2241 |
|
| 2242 |
-
#: bbp-
|
| 2243 |
-
|
|
|
|
| 2244 |
msgstr ""
|
| 2245 |
|
| 2246 |
-
#: bbp-
|
| 2247 |
-
|
| 2248 |
-
"
|
| 2249 |
-
"be partnered with WordPress pages to allow more flexibility."
|
| 2250 |
msgstr ""
|
| 2251 |
|
| 2252 |
-
#: bbp-
|
| 2253 |
-
msgid ""
|
| 2254 |
-
"You can enter custom slugs for your single forums, topics, replies, and tags "
|
| 2255 |
-
"URLs here. If you change these, existing permalinks will also change."
|
| 2256 |
msgstr ""
|
| 2257 |
|
| 2258 |
-
#: bbp-
|
| 2259 |
-
msgid "
|
| 2260 |
msgstr ""
|
| 2261 |
|
| 2262 |
-
#: bbp-
|
| 2263 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2264 |
msgstr ""
|
| 2265 |
|
| 2266 |
-
#: bbp-
|
| 2267 |
-
msgid "
|
|
|
|
| 2268 |
msgstr ""
|
| 2269 |
|
| 2270 |
-
#: bbp-
|
| 2271 |
-
|
|
|
|
| 2272 |
msgstr ""
|
| 2273 |
|
| 2274 |
-
#: bbp-
|
| 2275 |
-
|
| 2276 |
-
"
|
| 2277 |
-
"post editing\" will prevent the author from editing some amount of time "
|
| 2278 |
-
"after saving a post."
|
| 2279 |
msgstr ""
|
| 2280 |
|
| 2281 |
-
#: bbp-
|
| 2282 |
msgid ""
|
| 2283 |
-
"
|
| 2284 |
-
"
|
| 2285 |
-
"between posting to the forum."
|
| 2286 |
msgstr ""
|
| 2287 |
|
| 2288 |
-
#: bbp-
|
| 2289 |
-
|
| 2290 |
-
"
|
| 2291 |
-
"later return to topics they favor. This is enabled by default."
|
| 2292 |
msgstr ""
|
| 2293 |
|
| 2294 |
-
#: bbp-
|
|
|
|
| 2295 |
msgid ""
|
| 2296 |
-
"
|
| 2297 |
-
"
|
| 2298 |
msgstr ""
|
| 2299 |
|
| 2300 |
-
#: bbp-
|
|
|
|
| 2301 |
msgid ""
|
| 2302 |
-
"
|
| 2303 |
-
"
|
| 2304 |
-
"replies."
|
| 2305 |
msgstr ""
|
| 2306 |
|
| 2307 |
-
#: bbp-
|
| 2308 |
msgid ""
|
| 2309 |
-
"
|
| 2310 |
-
"
|
| 2311 |
-
"Settings\" page, where you can set the number of posts that should show on "
|
| 2312 |
-
"blog pages and in feeds."
|
| 2313 |
msgstr ""
|
| 2314 |
|
| 2315 |
-
#: bbp-
|
| 2316 |
-
msgid ""
|
| 2317 |
-
"The Forums section allows you to control the permalink structure for your "
|
| 2318 |
-
"forums. Each \"base\" is what will be displayed after your main URL and "
|
| 2319 |
-
"right before your permalink slug."
|
| 2320 |
msgstr ""
|
| 2321 |
|
| 2322 |
-
#: bbp-
|
| 2323 |
-
|
| 2324 |
-
"
|
| 2325 |
-
"settings to take effect."
|
| 2326 |
msgstr ""
|
| 2327 |
|
| 2328 |
-
#: bbp-
|
| 2329 |
-
msgid "
|
| 2330 |
msgstr ""
|
| 2331 |
|
| 2332 |
-
#: bbp-
|
| 2333 |
-
msgid "
|
| 2334 |
msgstr ""
|
| 2335 |
|
| 2336 |
-
#: bbp-
|
| 2337 |
-
msgid "
|
|
|
|
|
|
|
| 2338 |
msgstr ""
|
| 2339 |
|
| 2340 |
-
#: bbp-
|
| 2341 |
-
msgid "
|
| 2342 |
msgstr ""
|
| 2343 |
|
| 2344 |
-
#: bbp-
|
| 2345 |
-
msgid "
|
| 2346 |
msgstr ""
|
| 2347 |
|
| 2348 |
-
#: bbp-
|
| 2349 |
-
|
|
|
|
|
|
|
|
|
|
| 2350 |
msgstr ""
|
| 2351 |
|
| 2352 |
-
#: bbp-
|
| 2353 |
-
msgid "
|
| 2354 |
msgstr ""
|
| 2355 |
|
| 2356 |
-
#: bbp-
|
| 2357 |
-
msgid "
|
| 2358 |
msgstr ""
|
| 2359 |
|
| 2360 |
-
#: bbp-
|
| 2361 |
-
msgid "
|
|
|
|
|
|
|
| 2362 |
msgstr ""
|
| 2363 |
|
| 2364 |
-
#: bbp-
|
| 2365 |
-
msgid "
|
| 2366 |
msgstr ""
|
| 2367 |
|
| 2368 |
-
#: bbp-
|
| 2369 |
-
msgid "
|
| 2370 |
msgstr ""
|
| 2371 |
|
| 2372 |
-
#: bbp-
|
| 2373 |
-
msgid "
|
| 2374 |
msgstr ""
|
| 2375 |
|
| 2376 |
-
#: bbp-
|
| 2377 |
-
msgid "
|
| 2378 |
msgstr ""
|
| 2379 |
|
| 2380 |
-
#: bbp-
|
| 2381 |
-
msgid "
|
| 2382 |
msgstr ""
|
| 2383 |
|
| 2384 |
-
#: bbp-
|
| 2385 |
-
msgid "
|
| 2386 |
msgstr ""
|
| 2387 |
|
| 2388 |
-
#: bbp-
|
| 2389 |
msgid ""
|
| 2390 |
-
"
|
| 2391 |
-
"
|
| 2392 |
-
"or expand them by clicking the title bar of the box. Use the Screen Options "
|
| 2393 |
-
"tab to unhide more boxes (like Slug) or to choose a 1- or 2-column layout "
|
| 2394 |
-
"for this screen."
|
| 2395 |
msgstr ""
|
| 2396 |
|
| 2397 |
-
#: bbp-
|
| 2398 |
msgid ""
|
| 2399 |
-
"<strong>
|
| 2400 |
-
"
|
| 2401 |
msgstr ""
|
| 2402 |
|
| 2403 |
-
#: bbp-
|
| 2404 |
msgid ""
|
| 2405 |
-
"<strong>
|
| 2406 |
-
"
|
| 2407 |
-
"the appropriate tab. Visual mode gives you a WYSIWYG editor. Click the last "
|
| 2408 |
-
"icon in the row to get a second row of controls. The screen icon just before "
|
| 2409 |
-
"that allows you to expand the edit box to full screen. The HTML mode allows "
|
| 2410 |
-
"you to enter raw HTML along with your forum text. You can insert media files "
|
| 2411 |
-
"by clicking the icons above the post editor and following the directions."
|
| 2412 |
msgstr ""
|
| 2413 |
|
| 2414 |
-
#: bbp-
|
| 2415 |
msgid ""
|
| 2416 |
-
"<strong>
|
| 2417 |
-
"
|
| 2418 |
msgstr ""
|
| 2419 |
|
| 2420 |
-
#: bbp-
|
|
|
|
| 2421 |
msgid ""
|
| 2422 |
-
"
|
| 2423 |
-
"
|
| 2424 |
msgstr ""
|
| 2425 |
|
| 2426 |
-
#: bbp-
|
| 2427 |
-
|
| 2428 |
-
"
|
| 2429 |
-
"closed (thus not able to be posted to)."
|
| 2430 |
msgstr ""
|
| 2431 |
|
| 2432 |
-
#: bbp-
|
| 2433 |
msgid ""
|
| 2434 |
-
"
|
| 2435 |
-
"
|
| 2436 |
msgstr ""
|
| 2437 |
|
| 2438 |
-
#: bbp-
|
|
|
|
| 2439 |
msgid ""
|
| 2440 |
-
"
|
| 2441 |
-
"the
|
| 2442 |
msgstr ""
|
| 2443 |
|
| 2444 |
-
#: bbp-
|
| 2445 |
msgid ""
|
| 2446 |
-
"
|
| 2447 |
-
"(lower numbers first, higher numbers last)."
|
| 2448 |
msgstr ""
|
| 2449 |
|
| 2450 |
-
#: bbp-
|
| 2451 |
msgid ""
|
| 2452 |
-
"<strong>
|
| 2453 |
-
"
|
| 2454 |
-
"Trash will move your forum to the trash."
|
| 2455 |
msgstr ""
|
| 2456 |
|
| 2457 |
-
#: bbp-
|
| 2458 |
msgid ""
|
| 2459 |
-
"<strong>
|
| 2460 |
-
"
|
| 2461 |
-
"revision. Revisions can also be restored to the current version."
|
| 2462 |
msgstr ""
|
| 2463 |
|
| 2464 |
-
#: bbp-
|
| 2465 |
-
msgid "
|
| 2466 |
msgstr ""
|
| 2467 |
|
| 2468 |
-
#: bbp-
|
| 2469 |
-
msgid ""
|
| 2470 |
-
"You can hide/display columns based on your needs and decide how many forums "
|
| 2471 |
-
"to list per screen using the Screen Options tab."
|
| 2472 |
msgstr ""
|
| 2473 |
|
| 2474 |
-
#: bbp-
|
| 2475 |
-
msgid ""
|
| 2476 |
-
"You can filter the list of forums by forum status using the text links in "
|
| 2477 |
-
"the upper left to show All, Published, or Trashed forums. The default view "
|
| 2478 |
-
"is to show all forums."
|
| 2479 |
msgstr ""
|
| 2480 |
|
| 2481 |
-
#: bbp-
|
| 2482 |
-
msgid ""
|
| 2483 |
-
"You can refine the list to show only forums from a specific month by using "
|
| 2484 |
-
"the dropdown menus above the forums list. Click the Filter button after "
|
| 2485 |
-
"making your selection. You also can refine the list by clicking on the forum "
|
| 2486 |
-
"creator in the forums list."
|
| 2487 |
msgstr ""
|
| 2488 |
|
| 2489 |
-
#: bbp-
|
| 2490 |
-
msgid ""
|
| 2491 |
-
"Hovering over a row in the forums list will display action links that allow "
|
| 2492 |
-
"you to manage your forum. You can perform the following actions:"
|
| 2493 |
msgstr ""
|
| 2494 |
|
| 2495 |
-
#: bbp-
|
| 2496 |
msgid ""
|
| 2497 |
-
"
|
| 2498 |
-
"screen by clicking on the forum title."
|
| 2499 |
msgstr ""
|
| 2500 |
|
| 2501 |
-
#: bbp-
|
| 2502 |
-
msgid ""
|
| 2503 |
-
"Trash removes your forum from this list and places it in the trash, from "
|
| 2504 |
-
"which you can permanently delete it."
|
| 2505 |
msgstr ""
|
| 2506 |
|
| 2507 |
-
#: bbp-
|
| 2508 |
-
msgid "
|
| 2509 |
msgstr ""
|
| 2510 |
|
| 2511 |
-
#: bbp-
|
| 2512 |
-
msgid ""
|
| 2513 |
-
"You can also edit multiple forums at once. Select the forums you want to "
|
| 2514 |
-
"edit using the checkboxes, select Edit from the Bulk Actions menu and click "
|
| 2515 |
-
"Apply. You will be able to change the metadata for all selected forums at "
|
| 2516 |
-
"once. To remove a forum from the grouping, just click the x next to its name "
|
| 2517 |
-
"in the Bulk Edit area that appears."
|
| 2518 |
msgstr ""
|
| 2519 |
|
| 2520 |
-
#: bbp-
|
| 2521 |
-
msgid ""
|
| 2522 |
-
"The Bulk Actions menu may also be used to delete multiple forums at once. "
|
| 2523 |
-
"Select Delete from the dropdown after making your selection."
|
| 2524 |
msgstr ""
|
| 2525 |
|
| 2526 |
-
#: bbp-
|
| 2527 |
-
msgid "
|
| 2528 |
msgstr ""
|
| 2529 |
|
| 2530 |
-
#: bbp-
|
| 2531 |
-
msgid "
|
| 2532 |
msgstr ""
|
| 2533 |
|
| 2534 |
-
#: bbp-
|
| 2535 |
-
msgid "
|
| 2536 |
msgstr ""
|
| 2537 |
|
| 2538 |
-
|
| 2539 |
-
|
| 2540 |
-
msgid "Forum restored to revision from %s"
|
| 2541 |
msgstr ""
|
| 2542 |
|
| 2543 |
-
#: bbp-
|
| 2544 |
-
|
|
|
|
| 2545 |
msgstr ""
|
| 2546 |
|
| 2547 |
-
#: bbp-
|
| 2548 |
-
msgid "
|
| 2549 |
msgstr ""
|
| 2550 |
|
| 2551 |
-
#: bbp-
|
| 2552 |
-
msgid "
|
|
|
|
|
|
|
| 2553 |
msgstr ""
|
| 2554 |
|
| 2555 |
-
#: bbp-
|
|
|
|
| 2556 |
msgid ""
|
| 2557 |
-
"
|
| 2558 |
-
"
|
| 2559 |
msgstr ""
|
| 2560 |
|
| 2561 |
-
#: bbp-
|
| 2562 |
-
msgid "
|
|
|
|
|
|
|
| 2563 |
msgstr ""
|
| 2564 |
|
| 2565 |
-
#: bbp-
|
| 2566 |
-
msgid "
|
|
|
|
|
|
|
| 2567 |
msgstr ""
|
| 2568 |
|
| 2569 |
-
#: bbp-
|
| 2570 |
-
msgid "
|
| 2571 |
-
msgid_plural "Replies"
|
| 2572 |
-
msgstr[0] ""
|
| 2573 |
-
msgstr[1] ""
|
| 2574 |
-
|
| 2575 |
-
#: bbp-admin/bbp-metaboxes.php:101 bbpress.php:800
|
| 2576 |
-
msgid "Topic Tag"
|
| 2577 |
-
msgid_plural "Topic Tags"
|
| 2578 |
-
msgstr[0] ""
|
| 2579 |
-
msgstr[1] ""
|
| 2580 |
-
|
| 2581 |
-
#: bbp-admin/bbp-metaboxes.php:123
|
| 2582 |
-
msgid "Discussion"
|
| 2583 |
msgstr ""
|
| 2584 |
|
| 2585 |
-
#: bbp-
|
| 2586 |
-
msgid "
|
| 2587 |
-
|
| 2588 |
-
|
| 2589 |
-
msgstr
|
| 2590 |
-
|
| 2591 |
-
#: bbp-admin/bbp-metaboxes.php:150
|
| 2592 |
-
msgid "Hidden Topic"
|
| 2593 |
-
msgid_plural "Hidden Topics"
|
| 2594 |
-
msgstr[0] ""
|
| 2595 |
-
msgstr[1] ""
|
| 2596 |
-
|
| 2597 |
-
#: bbp-admin/bbp-metaboxes.php:169
|
| 2598 |
-
msgid "Hidden Reply"
|
| 2599 |
-
msgid_plural "Hidden Replies"
|
| 2600 |
-
msgstr[0] ""
|
| 2601 |
-
msgstr[1] ""
|
| 2602 |
-
|
| 2603 |
-
#: bbp-admin/bbp-metaboxes.php:188
|
| 2604 |
-
msgid "Empty Topic Tag"
|
| 2605 |
-
msgid_plural "Empty Topic Tags"
|
| 2606 |
-
msgstr[0] ""
|
| 2607 |
-
msgstr[1] ""
|
| 2608 |
|
| 2609 |
-
#: bbp-
|
| 2610 |
-
msgid "
|
|
|
|
| 2611 |
msgstr ""
|
| 2612 |
|
| 2613 |
-
#: bbp-
|
| 2614 |
-
msgid "
|
| 2615 |
msgstr ""
|
| 2616 |
|
| 2617 |
-
#: bbp-
|
| 2618 |
-
msgid "
|
|
|
|
| 2619 |
msgstr ""
|
| 2620 |
|
| 2621 |
-
#: bbp-
|
| 2622 |
-
msgid "
|
| 2623 |
msgstr ""
|
| 2624 |
|
| 2625 |
-
#: bbp-
|
| 2626 |
-
|
|
|
|
|
|
|
| 2627 |
msgstr ""
|
| 2628 |
|
| 2629 |
-
#: bbp-
|
| 2630 |
-
msgid "
|
| 2631 |
msgstr ""
|
| 2632 |
|
| 2633 |
-
#: bbp-
|
| 2634 |
-
msgid "
|
| 2635 |
msgstr ""
|
| 2636 |
|
| 2637 |
-
#: bbp-
|
| 2638 |
-
msgid "
|
| 2639 |
msgstr ""
|
| 2640 |
|
| 2641 |
-
#: bbp-
|
| 2642 |
-
msgid "
|
| 2643 |
msgstr ""
|
| 2644 |
|
| 2645 |
-
#: bbp-
|
| 2646 |
-
msgid "
|
| 2647 |
msgstr ""
|
| 2648 |
|
| 2649 |
-
#: bbp-
|
| 2650 |
-
msgid "
|
| 2651 |
msgstr ""
|
| 2652 |
|
| 2653 |
-
#: bbp-
|
| 2654 |
-
msgid "
|
| 2655 |
msgstr ""
|
| 2656 |
|
| 2657 |
-
#: bbp-
|
| 2658 |
-
msgid "
|
| 2659 |
msgstr ""
|
| 2660 |
|
| 2661 |
-
#: bbp-
|
| 2662 |
-
msgid "
|
| 2663 |
msgstr ""
|
| 2664 |
|
| 2665 |
-
#: bbp-
|
| 2666 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2667 |
msgstr ""
|
| 2668 |
|
| 2669 |
-
#: bbp-
|
| 2670 |
-
msgid "
|
| 2671 |
msgstr ""
|
| 2672 |
|
| 2673 |
-
#: bbp-
|
| 2674 |
-
msgid "
|
| 2675 |
msgstr ""
|
| 2676 |
|
| 2677 |
-
#: bbp-
|
| 2678 |
-
msgid "
|
| 2679 |
msgstr ""
|
| 2680 |
|
| 2681 |
-
#: bbp-
|
| 2682 |
-
msgid "
|
| 2683 |
msgstr ""
|
| 2684 |
|
| 2685 |
-
#: bbp-
|
| 2686 |
-
msgid "
|
| 2687 |
msgstr ""
|
| 2688 |
|
| 2689 |
-
#: bbp-
|
| 2690 |
msgid ""
|
| 2691 |
-
"
|
| 2692 |
-
"and got interrupted."
|
| 2693 |
msgstr ""
|
| 2694 |
|
| 2695 |
-
#: bbp-
|
| 2696 |
-
msgid "
|
| 2697 |
msgstr ""
|
| 2698 |
|
| 2699 |
-
#: bbp-
|
| 2700 |
-
msgid "
|
| 2701 |
msgstr ""
|
| 2702 |
|
| 2703 |
-
#: bbp-
|
| 2704 |
-
msgid ""
|
| 2705 |
-
"Existing bbPress standalone installation found. See configuration section "
|
| 2706 |
-
"for details."
|
| 2707 |
msgstr ""
|
| 2708 |
|
| 2709 |
-
#: bbp-
|
| 2710 |
-
msgid ""
|
| 2711 |
-
"This importer allows you to convert your bbPress Standalone into the bbPress "
|
| 2712 |
-
"Plugin."
|
| 2713 |
msgstr ""
|
| 2714 |
|
| 2715 |
-
#: bbp-
|
| 2716 |
-
msgid "
|
| 2717 |
msgstr ""
|
| 2718 |
|
| 2719 |
-
#: bbp-
|
| 2720 |
-
msgid ""
|
| 2721 |
-
"Create a <a href=\"%s\">backup</a> of your database and files. If the import "
|
| 2722 |
-
"process is interrupted for any reason, restore from that backup and re-run "
|
| 2723 |
-
"the import."
|
| 2724 |
msgstr ""
|
| 2725 |
|
| 2726 |
-
#: bbp-
|
| 2727 |
-
msgid ""
|
| 2728 |
-
"Seriously... Go back everything up, and don't come back until that's done. "
|
| 2729 |
-
"If things go awry, it's possible this importer will not be able to complete "
|
| 2730 |
-
"and your forums will be lost in limbo forever. This is serious business. No, "
|
| 2731 |
-
"we're not kidding."
|
| 2732 |
msgstr ""
|
| 2733 |
|
| 2734 |
-
#: bbp-
|
| 2735 |
-
msgid "
|
| 2736 |
msgstr ""
|
| 2737 |
|
| 2738 |
-
#: bbp-
|
| 2739 |
-
msgid ""
|
| 2740 |
-
"Disable all plugins (except bbPress) on both your WordPress and bbPress "
|
| 2741 |
-
"standalone installations."
|
| 2742 |
msgstr ""
|
| 2743 |
|
| 2744 |
-
#: bbp-
|
| 2745 |
-
msgid "
|
| 2746 |
msgstr ""
|
| 2747 |
|
| 2748 |
-
#: bbp-
|
| 2749 |
-
msgid "
|
| 2750 |
msgstr ""
|
| 2751 |
|
| 2752 |
-
#: bbp-
|
| 2753 |
-
msgid ""
|
| 2754 |
-
"If you are using the alpha version of bbPress 1.1, subscriptions will be "
|
| 2755 |
-
"ported automatically."
|
| 2756 |
msgstr ""
|
| 2757 |
|
| 2758 |
-
#: bbp-
|
| 2759 |
-
msgid ""
|
| 2760 |
-
"If you have the <a href=\"%s\">Subscribe to Topic</a> plugin active, then "
|
| 2761 |
-
"this script will migrate user subscriptions from that plugin."
|
| 2762 |
msgstr ""
|
| 2763 |
|
| 2764 |
-
#: bbp-
|
| 2765 |
-
msgid ""
|
| 2766 |
-
"If you are importing an existing BuddyPress Forums installation, we should "
|
| 2767 |
-
"have found your previous configuration file."
|
| 2768 |
msgstr ""
|
| 2769 |
|
| 2770 |
-
#: bbp-
|
| 2771 |
msgid ""
|
| 2772 |
-
"This
|
| 2773 |
-
"
|
| 2774 |
-
"installation.)"
|
| 2775 |
msgstr ""
|
| 2776 |
|
| 2777 |
-
#: bbp-
|
| 2778 |
-
|
|
|
|
| 2779 |
msgstr ""
|
| 2780 |
|
| 2781 |
-
#: bbp-
|
| 2782 |
-
msgid ""
|
| 2783 |
-
"Enter the full path to your bbPress configuration file i.e. <code>bb-config."
|
| 2784 |
-
"php</code>:"
|
| 2785 |
msgstr ""
|
| 2786 |
|
| 2787 |
-
#: bbp-
|
| 2788 |
-
|
|
|
|
|
|
|
|
|
|
| 2789 |
msgstr ""
|
| 2790 |
|
| 2791 |
-
#: bbp-
|
| 2792 |
-
msgid "
|
| 2793 |
msgstr ""
|
| 2794 |
|
| 2795 |
-
#: bbp-
|
| 2796 |
-
|
| 2797 |
-
"
|
| 2798 |
-
"php</code>."
|
| 2799 |
msgstr ""
|
| 2800 |
|
| 2801 |
-
#: bbp-
|
| 2802 |
-
|
|
|
|
| 2803 |
msgstr ""
|
| 2804 |
|
| 2805 |
-
#: bbp-
|
| 2806 |
-
|
| 2807 |
-
|
| 2808 |
-
"path specified! Please check the path and try again."
|
| 2809 |
msgstr ""
|
| 2810 |
|
| 2811 |
-
#: bbp-
|
| 2812 |
-
|
|
|
|
| 2813 |
msgstr ""
|
| 2814 |
|
| 2815 |
-
#: bbp-
|
| 2816 |
-
|
| 2817 |
-
"
|
| 2818 |
-
|
| 2819 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2820 |
msgstr ""
|
| 2821 |
|
| 2822 |
-
#: bbp-
|
| 2823 |
-
msgid ""
|
| 2824 |
-
"Your WordPress blog is <strong>new</strong> and you don't have the fear of "
|
| 2825 |
-
"losing WordPress users:"
|
| 2826 |
msgstr ""
|
| 2827 |
|
| 2828 |
-
#: bbp-
|
| 2829 |
-
|
|
|
|
| 2830 |
msgstr ""
|
| 2831 |
|
| 2832 |
-
#: bbp-
|
| 2833 |
-
msgid ""
|
| 2834 |
-
"<strong>Note</strong>: The WordPress %1$s and %2$s tables will be renamed "
|
| 2835 |
-
"(not deleted) so that you can restore them if something goes wrong."
|
| 2836 |
msgstr ""
|
| 2837 |
|
| 2838 |
-
#: bbp-
|
| 2839 |
-
msgid ""
|
| 2840 |
-
"Please ensure there are no tables named %1$s and %2$s to avoid renaming "
|
| 2841 |
-
"conflicts."
|
| 2842 |
msgstr ""
|
| 2843 |
|
| 2844 |
-
#: bbp-
|
| 2845 |
-
msgid "
|
| 2846 |
msgstr ""
|
| 2847 |
|
| 2848 |
-
#: bbp-
|
| 2849 |
-
msgid ""
|
| 2850 |
-
"You're done with user migration or have the user tables <strong>integrated</"
|
| 2851 |
-
"strong>:"
|
| 2852 |
msgstr ""
|
| 2853 |
|
| 2854 |
-
#: bbp-
|
| 2855 |
-
msgid "
|
| 2856 |
msgstr ""
|
| 2857 |
|
| 2858 |
-
#: bbp-
|
| 2859 |
-
msgid ""
|
| 2860 |
-
"You have a well <strong>established</strong> WordPress user base, the user "
|
| 2861 |
-
"tables are not integrated and you can't lose your users:"
|
| 2862 |
msgstr ""
|
| 2863 |
|
| 2864 |
-
#: bbp-
|
| 2865 |
-
msgid ""
|
| 2866 |
-
"This is currently not yet supported, and will likely not be in the future "
|
| 2867 |
-
"also as it is highly complex to merge two user sets (which might even "
|
| 2868 |
-
"conflict)."
|
| 2869 |
msgstr ""
|
| 2870 |
|
| 2871 |
-
#: bbp-
|
| 2872 |
-
msgid ""
|
| 2873 |
-
"Patches are always <a href=\"%s\" title=\"The last revision containing the "
|
| 2874 |
-
"custom user migration code\">welcome</a>. :)"
|
| 2875 |
msgstr ""
|
| 2876 |
|
| 2877 |
-
#: bbp-
|
| 2878 |
-
msgid "
|
| 2879 |
msgstr ""
|
| 2880 |
|
| 2881 |
-
#: bbp-
|
| 2882 |
-
msgid "
|
| 2883 |
msgstr ""
|
| 2884 |
|
| 2885 |
-
#: bbp-
|
| 2886 |
-
|
|
|
|
| 2887 |
msgstr ""
|
| 2888 |
|
| 2889 |
-
#: bbp-
|
| 2890 |
-
|
|
|
|
| 2891 |
msgstr ""
|
| 2892 |
|
| 2893 |
-
#: bbp-
|
| 2894 |
-
|
|
|
|
| 2895 |
msgstr ""
|
| 2896 |
|
| 2897 |
-
#: bbp-
|
| 2898 |
-
msgid ""
|
| 2899 |
-
"Renamed the <code>%1$s</code> and <code>%2$s</code> tables to <code>%3$s</"
|
| 2900 |
-
"code> and <code>%4$s</code> respectively."
|
| 2901 |
msgstr ""
|
| 2902 |
|
| 2903 |
-
#: bbp-
|
| 2904 |
msgid ""
|
| 2905 |
-
"
|
| 2906 |
-
"
|
| 2907 |
-
"yourself."
|
| 2908 |
msgstr ""
|
| 2909 |
|
| 2910 |
-
#: bbp-
|
| 2911 |
-
|
|
|
|
| 2912 |
msgstr ""
|
| 2913 |
|
| 2914 |
-
#: bbp-
|
| 2915 |
-
msgid ""
|
| 2916 |
-
"There was a problem duplicating the table <code>%1$s</code> to <code>%2$s</"
|
| 2917 |
-
"code>. Please check and re-run the script or duplicate the table yourself."
|
| 2918 |
msgstr ""
|
| 2919 |
|
| 2920 |
-
#: bbp-
|
| 2921 |
msgid ""
|
| 2922 |
-
"
|
| 2923 |
-
"
|
| 2924 |
msgstr ""
|
| 2925 |
|
| 2926 |
-
#: bbp-
|
| 2927 |
-
msgid ""
|
| 2928 |
-
"There was a problem in getting an administrator of the blog. Now, please go "
|
| 2929 |
-
"to your blog, set a user as administrator, login as that user and directly "
|
| 2930 |
-
"go to importing forums, topics and replies section. Note that old logins "
|
| 2931 |
-
"won't work, you would have to edit your database (you can still try logging "
|
| 2932 |
-
"in as the bbPress keymaster)."
|
| 2933 |
msgstr ""
|
| 2934 |
|
| 2935 |
-
#: bbp-
|
| 2936 |
msgid ""
|
| 2937 |
-
"
|
| 2938 |
-
"
|
| 2939 |
-
"and rest all WordPress roles are %1$s. Now, you can only login into your "
|
| 2940 |
-
"WordPress blog by the bbPress credentials. For the time being, you have been "
|
| 2941 |
-
"logged in as the first available administrator (Username: %2$s, User ID: %3"
|
| 2942 |
-
"$s)."
|
| 2943 |
msgstr ""
|
| 2944 |
|
| 2945 |
-
#: bbp-
|
| 2946 |
-
msgid ""
|
| 2947 |
-
"Your users have all been imported, but wait – there’s more! Now "
|
| 2948 |
-
"we need to import your forums, topics and posts!"
|
| 2949 |
msgstr ""
|
| 2950 |
|
| 2951 |
-
#: bbp-
|
| 2952 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
| 2953 |
msgstr ""
|
| 2954 |
|
| 2955 |
-
#: bbp-
|
| 2956 |
-
msgid "
|
| 2957 |
msgstr ""
|
| 2958 |
|
| 2959 |
-
#: bbp-
|
| 2960 |
-
msgid ""
|
| 2961 |
-
"We’re importing your bbPress standalone forums, topics and replies..."
|
| 2962 |
msgstr ""
|
| 2963 |
|
| 2964 |
-
#: bbp-
|
| 2965 |
-
msgid "
|
| 2966 |
msgstr ""
|
| 2967 |
|
| 2968 |
-
#: bbp-
|
| 2969 |
-
msgid "
|
| 2970 |
msgstr ""
|
| 2971 |
|
| 2972 |
-
#: bbp-
|
| 2973 |
-
msgid "
|
| 2974 |
msgstr ""
|
| 2975 |
|
| 2976 |
-
#: bbp-
|
| 2977 |
-
msgid "
|
| 2978 |
msgstr ""
|
| 2979 |
|
| 2980 |
-
#: bbp-
|
| 2981 |
-
msgid "
|
|
|
|
|
|
|
| 2982 |
msgstr ""
|
| 2983 |
|
| 2984 |
-
#: bbp-
|
| 2985 |
-
msgid "
|
|
|
|
|
|
|
| 2986 |
msgstr ""
|
| 2987 |
|
| 2988 |
-
#: bbp-
|
| 2989 |
msgid ""
|
| 2990 |
-
"
|
| 2991 |
-
"
|
|
|
|
|
|
|
| 2992 |
msgstr ""
|
| 2993 |
|
| 2994 |
-
#: bbp-
|
| 2995 |
-
msgid "
|
| 2996 |
msgstr ""
|
| 2997 |
|
| 2998 |
-
#: bbp-
|
| 2999 |
-
msgid ""
|
| 3000 |
-
"Added topic #%1$s (<a href=\"%2$s\">%3$s</a>) as topic #<a href=\"%4$s\">%5"
|
| 3001 |
-
"$s</a> with %6$s replies."
|
| 3002 |
msgstr ""
|
| 3003 |
|
| 3004 |
-
#: bbp-
|
| 3005 |
-
msgid "
|
| 3006 |
msgstr ""
|
| 3007 |
|
| 3008 |
-
#: bbp-
|
| 3009 |
-
msgid ""
|
| 3010 |
-
"Your forums, topics and posts have all been imported, but wait – "
|
| 3011 |
-
"there’s more! Now we need to do a <a href=\"%s\">recount</a> to get "
|
| 3012 |
-
"the counts in sync! Yes, we’re bad at Math."
|
| 3013 |
msgstr ""
|
| 3014 |
|
| 3015 |
-
#: bbp-
|
| 3016 |
-
|
|
|
|
| 3017 |
msgstr ""
|
| 3018 |
|
| 3019 |
-
#: bbp-
|
| 3020 |
-
msgid "
|
| 3021 |
msgstr ""
|
| 3022 |
|
| 3023 |
-
#: bbp-
|
| 3024 |
-
msgid "
|
| 3025 |
msgstr ""
|
| 3026 |
|
| 3027 |
-
#: bbp-
|
| 3028 |
-
msgid "
|
| 3029 |
msgstr ""
|
| 3030 |
|
| 3031 |
-
#: bbp-
|
| 3032 |
-
|
| 3033 |
-
"
|
| 3034 |
-
"topics in each forum. In rare occasions these counts can fall out of sync. "
|
| 3035 |
-
"Using this form you can have bbPress manually recount these items."
|
| 3036 |
msgstr ""
|
| 3037 |
|
| 3038 |
-
#: bbp-
|
| 3039 |
-
|
|
|
|
| 3040 |
msgstr ""
|
| 3041 |
|
| 3042 |
-
#: bbp-
|
| 3043 |
-
|
|
|
|
| 3044 |
msgstr ""
|
| 3045 |
|
| 3046 |
-
#: bbp-
|
| 3047 |
-
|
|
|
|
| 3048 |
msgstr ""
|
| 3049 |
|
| 3050 |
-
#: bbp-
|
| 3051 |
-
msgid "
|
| 3052 |
msgstr ""
|
| 3053 |
|
| 3054 |
-
#: bbp-
|
| 3055 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
| 3056 |
msgstr ""
|
| 3057 |
|
| 3058 |
-
#: bbp-
|
| 3059 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
| 3060 |
msgstr ""
|
| 3061 |
|
| 3062 |
-
#: bbp-
|
| 3063 |
-
msgid "
|
| 3064 |
msgstr ""
|
| 3065 |
|
| 3066 |
-
#: bbp-
|
| 3067 |
-
msgid "
|
| 3068 |
msgstr ""
|
| 3069 |
|
| 3070 |
-
#: bbp-
|
| 3071 |
-
msgid "
|
| 3072 |
msgstr ""
|
| 3073 |
|
| 3074 |
-
#: bbp-
|
| 3075 |
-
msgid "
|
| 3076 |
msgstr ""
|
| 3077 |
|
| 3078 |
-
#: bbp-
|
| 3079 |
-
msgid "
|
| 3080 |
msgstr ""
|
| 3081 |
|
| 3082 |
-
#: bbp-
|
| 3083 |
-
msgid "
|
| 3084 |
msgstr ""
|
| 3085 |
|
| 3086 |
-
#: bbp-
|
| 3087 |
-
msgid "
|
| 3088 |
msgstr ""
|
| 3089 |
|
| 3090 |
-
#: bbp-
|
| 3091 |
-
msgid "
|
| 3092 |
msgstr ""
|
| 3093 |
|
| 3094 |
-
#: bbp-
|
| 3095 |
-
msgid "
|
| 3096 |
msgstr ""
|
| 3097 |
|
| 3098 |
-
#: bbp-
|
| 3099 |
-
msgid "
|
| 3100 |
msgstr ""
|
| 3101 |
|
| 3102 |
-
#: bbp-
|
| 3103 |
-
msgid "
|
| 3104 |
msgstr ""
|
| 3105 |
|
| 3106 |
-
#: bbp-
|
| 3107 |
-
msgid ""
|
| 3108 |
-
"Your active theme does not include bbPress template files. Your forums are "
|
| 3109 |
-
"using the default styling included with bbPress."
|
| 3110 |
msgstr ""
|
| 3111 |
|
| 3112 |
-
#: bbp-
|
| 3113 |
-
msgid "
|
| 3114 |
msgstr ""
|
| 3115 |
|
| 3116 |
-
#: bbp-
|
| 3117 |
-
msgid "
|
| 3118 |
msgstr ""
|
| 3119 |
|
| 3120 |
-
#: bbp-
|
| 3121 |
-
msgid "
|
| 3122 |
msgstr ""
|
| 3123 |
|
| 3124 |
-
#: bbp-
|
| 3125 |
msgid ""
|
| 3126 |
-
"
|
| 3127 |
-
"
|
| 3128 |
-
"or expand them by clicking the title bar of the box. Use the Screen Options "
|
| 3129 |
-
"tab to unhide more boxes (Reply Attributes, Slug) or to choose a 1- or 2-"
|
| 3130 |
-
"column layout for this screen."
|
| 3131 |
msgstr ""
|
| 3132 |
|
| 3133 |
-
#: bbp-
|
| 3134 |
-
msgid ""
|
| 3135 |
-
"<strong>Title</strong> - Enter a title for your reply. After you enter a "
|
| 3136 |
-
"title, you will see the permalink below, which you can edit."
|
| 3137 |
msgstr ""
|
| 3138 |
|
| 3139 |
-
#: bbp-
|
| 3140 |
-
msgid ""
|
| 3141 |
-
"<strong>Post editor</strong> - Enter the text for your reply. There are two "
|
| 3142 |
-
"modes of editing: Visual and HTML. Choose the mode by clicking on the "
|
| 3143 |
-
"appropriate tab. Visual mode gives you a WYSIWYG editor. Click the last icon "
|
| 3144 |
-
"in the row to get a second row of controls. The screen icon just before that "
|
| 3145 |
-
"allows you to expand the edit box to full screen. The HTML mode allows you "
|
| 3146 |
-
"to enter raw HTML along with your forum text. You can insert media files by "
|
| 3147 |
-
"clicking the icons above the post editor and following the directions."
|
| 3148 |
msgstr ""
|
| 3149 |
|
| 3150 |
-
#: bbp-
|
| 3151 |
-
msgid ""
|
| 3152 |
-
"<strong>Reply Attributes</strong> - Select the attributes that your reply "
|
| 3153 |
-
"should have. The Parent Topic dropdown determines the parent topic that the "
|
| 3154 |
-
"reply belongs to."
|
| 3155 |
msgstr ""
|
| 3156 |
|
| 3157 |
-
#: bbp-
|
| 3158 |
-
msgid ""
|
| 3159 |
-
"<strong>Publish</strong> - The Publish box will allow you to save your reply "
|
| 3160 |
-
"as Draft or Pending Review. You may Preview your reply before it is "
|
| 3161 |
-
"published as well. The Visibility will determine whether the reply is "
|
| 3162 |
-
"Public, Password protected (requiring a password on the site to view) or "
|
| 3163 |
-
"Private (only the author will have access to it). Replies may be published "
|
| 3164 |
-
"immediately by clicking the dropdown, or at a specific date and time by "
|
| 3165 |
-
"clicking the Edit link."
|
| 3166 |
msgstr ""
|
| 3167 |
|
| 3168 |
-
#: bbp-
|
| 3169 |
-
msgid ""
|
| 3170 |
-
"<strong>Revisions</strong> - Revisions show past versions of the saved "
|
| 3171 |
-
"reply. Each revision can be compared to the current version, or another "
|
| 3172 |
-
"revision. Revisions can also be restored to the current version."
|
| 3173 |
msgstr ""
|
| 3174 |
|
| 3175 |
-
#: bbp-
|
| 3176 |
-
msgid "
|
|
|
|
| 3177 |
msgstr ""
|
| 3178 |
|
| 3179 |
-
#: bbp-
|
| 3180 |
-
msgid ""
|
| 3181 |
-
"You can hide/display columns based on your needs (Forum, Topic, Author, and "
|
| 3182 |
-
"Created) and decide how many replies to list per screen using the Screen "
|
| 3183 |
-
"Options tab."
|
| 3184 |
msgstr ""
|
| 3185 |
|
| 3186 |
-
#: bbp-
|
| 3187 |
-
msgid ""
|
| 3188 |
-
"You can filter the list of replies by reply status using the text links in "
|
| 3189 |
-
"the upper left to show All, Published, Pending Review, Draft, or Trashed "
|
| 3190 |
-
"topics. The default view is to show all replies."
|
| 3191 |
msgstr ""
|
| 3192 |
|
| 3193 |
-
#: bbp-
|
| 3194 |
-
msgid ""
|
| 3195 |
-
"You can view replies in a simple title list or with an excerpt. Choose the "
|
| 3196 |
-
"view you prefer by clicking on the icons at the top of the list on the right."
|
| 3197 |
msgstr ""
|
| 3198 |
|
| 3199 |
-
#: bbp-
|
| 3200 |
msgid ""
|
| 3201 |
-
"
|
| 3202 |
-
"
|
| 3203 |
-
"making your selection."
|
| 3204 |
msgstr ""
|
| 3205 |
|
| 3206 |
-
#: bbp-
|
| 3207 |
-
msgid ""
|
| 3208 |
-
"You can also show only replies from a specific parent forum by using the "
|
| 3209 |
-
"parent forum dropdown above the replies list and selecting the parent forum. "
|
| 3210 |
-
"Click the Filter button after making your selection."
|
| 3211 |
msgstr ""
|
| 3212 |
|
| 3213 |
-
#: bbp-
|
| 3214 |
-
msgid ""
|
| 3215 |
-
"Hovering over a row in the replies list will display action links that allow "
|
| 3216 |
-
"you to manage your reply. You can perform the following actions:"
|
| 3217 |
msgstr ""
|
| 3218 |
|
| 3219 |
-
#: bbp-
|
| 3220 |
-
msgid ""
|
| 3221 |
-
"Edit takes you to the editing screen for that reply. You can also reach that "
|
| 3222 |
-
"screen by clicking on the reply title."
|
| 3223 |
msgstr ""
|
| 3224 |
|
| 3225 |
-
#: bbp-
|
| 3226 |
-
msgid ""
|
| 3227 |
-
"Trash removes your reply from this list and places it in the trash, from "
|
| 3228 |
-
"which you can permanently delete it."
|
| 3229 |
msgstr ""
|
| 3230 |
|
| 3231 |
-
#: bbp-
|
| 3232 |
-
msgid "
|
| 3233 |
msgstr ""
|
| 3234 |
|
| 3235 |
-
#: bbp-
|
| 3236 |
-
msgid ""
|
| 3237 |
-
"Spam will mark the topic as spam, preventing further replies to it and "
|
| 3238 |
-
"removing it from the site’s public view."
|
| 3239 |
msgstr ""
|
| 3240 |
|
| 3241 |
-
#: bbp-
|
| 3242 |
msgid ""
|
| 3243 |
-
"
|
| 3244 |
-
"
|
| 3245 |
-
"Apply. You will be able to change the metadata for all selected replies at "
|
| 3246 |
-
"once. To remove a reply from the grouping, just click the x next to its name "
|
| 3247 |
-
"in the Bulk Edit area that appears."
|
| 3248 |
msgstr ""
|
| 3249 |
|
| 3250 |
-
#: bbp-
|
| 3251 |
-
msgid ""
|
| 3252 |
-
"The Bulk Actions menu may also be used to delete multiple replies at once. "
|
| 3253 |
-
"Select Delete from the dropdown after making your selection."
|
| 3254 |
msgstr ""
|
| 3255 |
|
| 3256 |
-
#: bbp-
|
| 3257 |
-
msgid "
|
| 3258 |
msgstr ""
|
| 3259 |
|
| 3260 |
-
#: bbp-
|
| 3261 |
-
msgid "
|
| 3262 |
msgstr ""
|
| 3263 |
|
| 3264 |
-
#: bbp-
|
| 3265 |
-
msgid "
|
| 3266 |
msgstr ""
|
| 3267 |
|
| 3268 |
-
#: bbp-
|
| 3269 |
-
msgid "
|
| 3270 |
msgstr ""
|
| 3271 |
|
| 3272 |
-
#: bbp-
|
| 3273 |
-
msgid "
|
|
|
|
|
|
|
| 3274 |
msgstr ""
|
| 3275 |
|
| 3276 |
-
#: bbp-
|
| 3277 |
-
msgid "
|
| 3278 |
msgstr ""
|
| 3279 |
|
| 3280 |
-
#: bbp-
|
| 3281 |
-
msgid "
|
| 3282 |
msgstr ""
|
| 3283 |
|
| 3284 |
-
#: bbp-
|
| 3285 |
-
msgid "
|
| 3286 |
msgstr ""
|
| 3287 |
|
| 3288 |
-
#: bbp-
|
| 3289 |
-
msgid "
|
| 3290 |
msgstr ""
|
| 3291 |
|
| 3292 |
-
#: bbp-
|
| 3293 |
-
msgid "
|
| 3294 |
msgstr ""
|
| 3295 |
|
| 3296 |
-
#: bbp-
|
| 3297 |
-
msgid "
|
| 3298 |
msgstr ""
|
| 3299 |
|
| 3300 |
-
#: bbp-
|
| 3301 |
-
msgid "
|
| 3302 |
msgstr ""
|
| 3303 |
|
| 3304 |
-
#: bbp-
|
| 3305 |
-
msgid "
|
| 3306 |
msgstr ""
|
| 3307 |
|
| 3308 |
-
|
| 3309 |
-
|
| 3310 |
-
msgid "Reply restored to revision from %s"
|
| 3311 |
msgstr ""
|
| 3312 |
|
| 3313 |
-
#: bbp-
|
| 3314 |
-
msgid "
|
| 3315 |
msgstr ""
|
| 3316 |
|
| 3317 |
-
#: bbp-
|
| 3318 |
-
msgid "
|
| 3319 |
msgstr ""
|
| 3320 |
|
| 3321 |
-
#: bbp-
|
| 3322 |
-
msgid "
|
| 3323 |
msgstr ""
|
| 3324 |
|
| 3325 |
-
#: bbp-
|
| 3326 |
-
msgid ""
|
| 3327 |
-
"Reply scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
|
| 3328 |
-
"\">Preview topic</a>"
|
| 3329 |
msgstr ""
|
| 3330 |
|
| 3331 |
-
#: bbp-
|
| 3332 |
-
msgid "
|
| 3333 |
msgstr ""
|
| 3334 |
|
| 3335 |
-
#: bbpress.php:
|
| 3336 |
msgid "All Forums"
|
| 3337 |
msgstr ""
|
| 3338 |
|
| 3339 |
-
#: bbpress.php:
|
| 3340 |
msgid "New Forum"
|
| 3341 |
msgstr ""
|
| 3342 |
|
| 3343 |
-
#: bbpress.php:
|
| 3344 |
msgid "Create New Forum"
|
| 3345 |
msgstr ""
|
| 3346 |
|
| 3347 |
-
#: bbpress.php:
|
| 3348 |
msgid "Edit Forum"
|
| 3349 |
msgstr ""
|
| 3350 |
|
| 3351 |
-
#: bbpress.php:
|
| 3352 |
msgid "View Forum"
|
| 3353 |
msgstr ""
|
| 3354 |
|
| 3355 |
-
#: bbpress.php:
|
| 3356 |
msgid "Search Forums"
|
| 3357 |
msgstr ""
|
| 3358 |
|
| 3359 |
-
#: bbpress.php:
|
| 3360 |
msgid "No forums found in Trash"
|
| 3361 |
msgstr ""
|
| 3362 |
|
| 3363 |
-
#: bbpress.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3364 |
msgid "bbPress Forums"
|
| 3365 |
msgstr ""
|
| 3366 |
|
| 3367 |
-
#: bbpress.php:
|
| 3368 |
msgid "New Topic"
|
| 3369 |
msgstr ""
|
| 3370 |
|
| 3371 |
-
#: bbpress.php:
|
| 3372 |
msgid "Edit Topic"
|
| 3373 |
msgstr ""
|
| 3374 |
|
| 3375 |
-
#: bbpress.php:
|
| 3376 |
msgid "View Topic"
|
| 3377 |
msgstr ""
|
| 3378 |
|
| 3379 |
-
#: bbpress.php:
|
| 3380 |
msgid "Search Topics"
|
| 3381 |
msgstr ""
|
| 3382 |
|
| 3383 |
-
#: bbpress.php:
|
| 3384 |
msgid "No topics found"
|
| 3385 |
msgstr ""
|
| 3386 |
|
| 3387 |
-
#: bbpress.php:
|
| 3388 |
msgid "No topics found in Trash"
|
| 3389 |
msgstr ""
|
| 3390 |
|
| 3391 |
-
#: bbpress.php:
|
| 3392 |
msgid "bbPress Topics"
|
| 3393 |
msgstr ""
|
| 3394 |
|
| 3395 |
-
#: bbpress.php:
|
| 3396 |
msgid "New Reply"
|
| 3397 |
msgstr ""
|
| 3398 |
|
| 3399 |
-
#: bbpress.php:
|
| 3400 |
msgid "Create New Reply"
|
| 3401 |
msgstr ""
|
| 3402 |
|
| 3403 |
-
#: bbpress.php:
|
| 3404 |
msgid "Edit Reply"
|
| 3405 |
msgstr ""
|
| 3406 |
|
| 3407 |
-
#: bbpress.php:
|
| 3408 |
msgid "View Reply"
|
| 3409 |
msgstr ""
|
| 3410 |
|
| 3411 |
-
#: bbpress.php:
|
| 3412 |
msgid "Search Replies"
|
| 3413 |
msgstr ""
|
| 3414 |
|
| 3415 |
-
#: bbpress.php:
|
| 3416 |
msgid "No replies found"
|
| 3417 |
msgstr ""
|
| 3418 |
|
| 3419 |
-
#: bbpress.php:
|
| 3420 |
msgid "No replies found in Trash"
|
| 3421 |
msgstr ""
|
| 3422 |
|
| 3423 |
-
#: bbpress.php:
|
| 3424 |
msgid "Topic:"
|
| 3425 |
msgstr ""
|
| 3426 |
|
| 3427 |
-
#: bbpress.php:
|
| 3428 |
msgid "bbPress Replies"
|
| 3429 |
msgstr ""
|
| 3430 |
|
| 3431 |
-
#: bbpress.php:
|
| 3432 |
msgctxt "post"
|
| 3433 |
msgid "Closed"
|
| 3434 |
msgstr ""
|
| 3435 |
|
| 3436 |
-
#: bbpress.php:
|
| 3437 |
msgctxt "bbpress"
|
| 3438 |
msgid "Closed <span class=\"count\">(%s)</span>"
|
| 3439 |
msgid_plural "Closed <span class=\"count\">(%s)</span>"
|
| 3440 |
msgstr[0] ""
|
| 3441 |
msgstr[1] ""
|
| 3442 |
|
| 3443 |
-
#: bbpress.php:
|
| 3444 |
msgctxt "post"
|
| 3445 |
msgid "Spam"
|
| 3446 |
msgstr ""
|
| 3447 |
|
| 3448 |
-
#: bbpress.php:
|
| 3449 |
msgctxt "bbpress"
|
| 3450 |
msgid "Spam <span class=\"count\">(%s)</span>"
|
| 3451 |
msgid_plural "Spam <span class=\"count\">(%s)</span>"
|
| 3452 |
msgstr[0] ""
|
| 3453 |
msgstr[1] ""
|
| 3454 |
|
| 3455 |
-
#: bbpress.php:
|
| 3456 |
msgctxt "post"
|
| 3457 |
msgid "Orphan"
|
| 3458 |
msgstr ""
|
| 3459 |
|
| 3460 |
-
#: bbpress.php:
|
| 3461 |
msgctxt "bbpress"
|
| 3462 |
msgid "Orphan <span class=\"count\">(%s)</span>"
|
| 3463 |
msgid_plural "Orphans <span class=\"count\">(%s)</span>"
|
| 3464 |
msgstr[0] ""
|
| 3465 |
msgstr[1] ""
|
| 3466 |
|
| 3467 |
-
#: bbpress.php:
|
| 3468 |
msgctxt "post"
|
| 3469 |
msgid "Hidden"
|
| 3470 |
msgstr ""
|
| 3471 |
|
| 3472 |
-
#: bbpress.php:
|
| 3473 |
msgctxt "bbpress"
|
| 3474 |
msgid "Hidden <span class=\"count\">(%s)</span>"
|
| 3475 |
msgid_plural "Hidden <span class=\"count\">(%s)</span>"
|
| 3476 |
msgstr[0] ""
|
| 3477 |
msgstr[1] ""
|
| 3478 |
|
| 3479 |
-
#: bbpress.php:
|
| 3480 |
msgid "Search Tags"
|
| 3481 |
msgstr ""
|
| 3482 |
|
| 3483 |
-
#: bbpress.php:
|
| 3484 |
msgid "Popular Tags"
|
| 3485 |
msgstr ""
|
| 3486 |
|
| 3487 |
-
#: bbpress.php:
|
| 3488 |
msgid "All Tags"
|
| 3489 |
msgstr ""
|
| 3490 |
|
| 3491 |
-
#: bbpress.php:
|
| 3492 |
msgid "Edit Tag"
|
| 3493 |
msgstr ""
|
| 3494 |
|
| 3495 |
-
#: bbpress.php:
|
| 3496 |
msgid "Update Tag"
|
| 3497 |
msgstr ""
|
| 3498 |
|
| 3499 |
-
#: bbpress.php:
|
| 3500 |
msgid "Add New Tag"
|
| 3501 |
msgstr ""
|
| 3502 |
|
| 3503 |
-
#: bbpress.php:
|
| 3504 |
msgid "New Tag Name"
|
| 3505 |
msgstr ""
|
| 3506 |
|
| 3507 |
-
#: bbpress.php:
|
| 3508 |
msgid "View Topic Tag"
|
| 3509 |
msgstr ""
|
| 3510 |
|
| 3511 |
-
#: bbpress.php:
|
| 3512 |
msgid "Topics with no replies"
|
| 3513 |
msgstr ""
|
| 3514 |
|
|
@@ -3516,9 +3553,9 @@ msgstr ""
|
|
| 3516 |
msgid "bbPress"
|
| 3517 |
msgstr ""
|
| 3518 |
|
| 3519 |
-
#. #-#-#-#-# plugin.pot (bbPress 2.0-rc-
|
| 3520 |
#. Plugin URI of the plugin/theme
|
| 3521 |
-
#. #-#-#-#-# plugin.pot (bbPress 2.0-rc-
|
| 3522 |
#. Author URI of the plugin/theme
|
| 3523 |
msgid "http://bbpress.org"
|
| 3524 |
msgstr ""
|
| 2 |
# This file is distributed under the same license as the bbPress package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
+
"Project-Id-Version: bbPress 2.0-rc-4\n"
|
| 6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/bbpress\n"
|
| 7 |
+
"POT-Creation-Date: 2011-08-30 13:56:36+00:00\n"
|
| 8 |
"MIME-Version: 1.0\n"
|
| 9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 10 |
"Content-Transfer-Encoding: 8bit\n"
|
| 12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
| 13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
| 14 |
|
| 15 |
+
#: bbp-admin/bbp-functions.php:157
|
| 16 |
+
msgid "Count topics in each forum"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
msgstr ""
|
| 18 |
|
| 19 |
+
#: bbp-admin/bbp-functions.php:158
|
| 20 |
+
msgid "Count replies in each forum"
|
| 21 |
msgstr ""
|
| 22 |
|
| 23 |
+
#: bbp-admin/bbp-functions.php:159
|
| 24 |
+
msgid "Count replies in each topic"
|
|
|
|
|
|
|
| 25 |
msgstr ""
|
| 26 |
|
| 27 |
+
#: bbp-admin/bbp-functions.php:160
|
| 28 |
+
msgid "Count voices in each topic"
|
|
|
|
|
|
|
|
|
|
| 29 |
msgstr ""
|
| 30 |
|
| 31 |
+
#: bbp-admin/bbp-functions.php:161
|
| 32 |
+
msgid "Count spammed & trashed replies in each topic"
|
|
|
|
| 33 |
msgstr ""
|
| 34 |
|
| 35 |
+
#: bbp-admin/bbp-functions.php:162
|
| 36 |
+
msgid "Count replies for each user"
|
|
|
|
| 37 |
msgstr ""
|
| 38 |
|
| 39 |
+
#: bbp-admin/bbp-functions.php:163
|
| 40 |
+
msgid "Remove trashed topics from user favorites"
|
| 41 |
msgstr ""
|
| 42 |
|
| 43 |
+
#: bbp-admin/bbp-functions.php:164
|
| 44 |
+
msgid "Remove trashed topics from user subscriptions"
|
| 45 |
msgstr ""
|
| 46 |
|
| 47 |
+
#: bbp-admin/bbp-functions.php:168
|
| 48 |
+
msgid "Recalculate last activity in each topic and forum"
|
| 49 |
msgstr ""
|
| 50 |
|
| 51 |
+
#: bbp-admin/bbp-functions.php:188
|
| 52 |
+
msgid "Counting the number of replies in each topic… %s"
|
| 53 |
msgstr ""
|
| 54 |
|
| 55 |
+
#: bbp-admin/bbp-functions.php:189 bbp-admin/bbp-functions.php:233
|
| 56 |
+
#: bbp-admin/bbp-functions.php:276 bbp-admin/bbp-functions.php:306
|
| 57 |
+
#: bbp-admin/bbp-functions.php:340 bbp-admin/bbp-functions.php:372
|
| 58 |
+
#: bbp-admin/bbp-functions.php:418 bbp-admin/bbp-functions.php:497
|
| 59 |
+
#: bbp-admin/bbp-functions.php:579 bbp-admin/bbp-functions.php:711
|
| 60 |
+
#: bbp-admin/bbp-functions.php:770 bbp-admin/bbp-functions.php:827
|
| 61 |
+
msgid "Failed!"
|
| 62 |
msgstr ""
|
| 63 |
|
| 64 |
+
#: bbp-admin/bbp-functions.php:215 bbp-admin/bbp-functions.php:259
|
| 65 |
+
#: bbp-admin/bbp-functions.php:286 bbp-admin/bbp-functions.php:320
|
| 66 |
+
#: bbp-admin/bbp-functions.php:354 bbp-admin/bbp-functions.php:400
|
| 67 |
+
#: bbp-admin/bbp-functions.php:752 bbp-admin/bbp-functions.php:810
|
| 68 |
+
#: bbp-admin/bbp-functions.php:907
|
| 69 |
+
msgid "Complete!"
|
| 70 |
msgstr ""
|
| 71 |
|
| 72 |
+
#: bbp-admin/bbp-functions.php:232
|
| 73 |
+
msgid "Counting the number of voices in each topic… %s"
|
| 74 |
msgstr ""
|
| 75 |
|
| 76 |
+
#: bbp-admin/bbp-functions.php:275
|
| 77 |
msgid ""
|
| 78 |
+
"Counting the number of spammed and trashed replies in each topic… %s"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 79 |
msgstr ""
|
| 80 |
|
| 81 |
+
#: bbp-admin/bbp-functions.php:305
|
| 82 |
+
msgid "Counting the number of topics in each forum… %s"
|
| 83 |
msgstr ""
|
| 84 |
|
| 85 |
+
#: bbp-admin/bbp-functions.php:339
|
| 86 |
+
msgid "Counting the number of replies in each forum… %s"
|
|
|
|
|
|
|
| 87 |
msgstr ""
|
| 88 |
|
| 89 |
+
#: bbp-admin/bbp-functions.php:371
|
| 90 |
+
msgid "Counting the number of topics to which each user has replied… %s"
|
| 91 |
msgstr ""
|
| 92 |
|
| 93 |
+
#: bbp-admin/bbp-functions.php:417
|
| 94 |
+
msgid "Counting the number of topic tags in each topic… %s"
|
| 95 |
msgstr ""
|
| 96 |
|
| 97 |
+
#: bbp-admin/bbp-functions.php:496
|
| 98 |
+
msgid "Counting the number of topics in each topic tag… %s"
|
| 99 |
msgstr ""
|
| 100 |
|
| 101 |
+
#: bbp-admin/bbp-functions.php:578
|
| 102 |
+
msgid "Deleting topic tags with no topics… %s"
|
| 103 |
msgstr ""
|
| 104 |
|
| 105 |
+
#: bbp-admin/bbp-functions.php:710
|
| 106 |
+
msgid "Removing trashed topics from user favorites… %s"
|
|
|
|
| 107 |
msgstr ""
|
| 108 |
|
| 109 |
+
#: bbp-admin/bbp-functions.php:736 bbp-admin/bbp-functions.php:794
|
| 110 |
+
msgid "Nothing to remove!"
|
|
|
|
| 111 |
msgstr ""
|
| 112 |
|
| 113 |
+
#: bbp-admin/bbp-functions.php:769
|
| 114 |
+
msgid "Removing trashed topics from user subscriptions… %s"
|
|
|
|
| 115 |
msgstr ""
|
| 116 |
|
| 117 |
+
#: bbp-admin/bbp-functions.php:826
|
| 118 |
+
msgid "Recomputing latest post in every topic and forum… %s"
|
|
|
|
| 119 |
msgstr ""
|
| 120 |
|
| 121 |
+
#: bbp-admin/bbp-topics.php:116
|
| 122 |
+
msgid ""
|
| 123 |
+
"The topic title field and the big topic editing area are fixed in place, but "
|
| 124 |
+
"you can reposition all the other boxes using drag and drop, and can minimize "
|
| 125 |
+
"or expand them by clicking the title bar of the box. Use the Screen Options "
|
| 126 |
+
"tab to unhide more boxes (Topic Tags, Topic Attributes, or Slug) or to "
|
| 127 |
+
"choose a 1- or 2-column layout for this screen."
|
| 128 |
msgstr ""
|
| 129 |
|
| 130 |
+
#: bbp-admin/bbp-topics.php:117
|
| 131 |
msgid ""
|
| 132 |
+
"<strong>Title</strong> - Enter a title for your topic. After you enter a "
|
| 133 |
+
"title, you will see the permalink below, which you can edit."
|
| 134 |
msgstr ""
|
| 135 |
|
| 136 |
+
#: bbp-admin/bbp-topics.php:118
|
| 137 |
+
msgid ""
|
| 138 |
+
"<strong>Post editor</strong> - Enter the text for your topic. There are two "
|
| 139 |
+
"modes of editing: Visual and HTML. Choose the mode by clicking on the "
|
| 140 |
+
"appropriate tab. Visual mode gives you a WYSIWYG editor. Click the last icon "
|
| 141 |
+
"in the row to get a second row of controls. The screen icon just before that "
|
| 142 |
+
"allows you to expand the edit box to full screen. The HTML mode allows you "
|
| 143 |
+
"to enter raw HTML along with your forum text. You can insert media files by "
|
| 144 |
+
"clicking the icons above the post editor and following the directions."
|
| 145 |
msgstr ""
|
| 146 |
|
| 147 |
+
#: bbp-admin/bbp-topics.php:119
|
| 148 |
+
msgid ""
|
| 149 |
+
"<strong>Topic Attributes</strong> - Select the attributes that your topic "
|
| 150 |
+
"should have. The Forum dropdown determines the parent forum that the topic "
|
| 151 |
+
"belongs to. Select the forum or category from the dropdown, or leave the "
|
| 152 |
+
"default (No Forum) to post the topic without an assigned forum."
|
| 153 |
msgstr ""
|
| 154 |
|
| 155 |
+
#: bbp-admin/bbp-topics.php:120
|
| 156 |
msgid ""
|
| 157 |
+
"<strong>Publish</strong> - The Publish box will allow you to save your topic "
|
| 158 |
+
"as Draft or Pending Review. You may Preview your topic before it is "
|
| 159 |
+
"published as well. The Visibility will determine whether the topic is "
|
| 160 |
+
"Public, Password protected (requiring a password on the site to view) or "
|
| 161 |
+
"Private (only the author will have access to it). Topics may be published "
|
| 162 |
+
"immediately by clicking the dropdown, or at a specific date and time by "
|
| 163 |
+
"clicking the Edit link."
|
| 164 |
msgstr ""
|
| 165 |
|
| 166 |
+
#: bbp-admin/bbp-topics.php:121
|
| 167 |
+
msgid ""
|
| 168 |
+
"<strong>Topic Tags</strong> - You can assign keywords to your topics using "
|
| 169 |
+
"Topic Tags. Unlike categories, tags have no hierarchy, meaning there is no "
|
| 170 |
+
"relationship from one tag to another. Topics can be added and modified "
|
| 171 |
+
"further from the Topic Tags screen."
|
| 172 |
msgstr ""
|
| 173 |
|
| 174 |
+
#: bbp-admin/bbp-topics.php:122
|
| 175 |
msgid ""
|
| 176 |
+
"<strong>Revisions</strong> - Revisions show past versions of the saved "
|
| 177 |
+
"topic. Each revision can be compared to the current version, or another "
|
| 178 |
+
"revision. Revisions can also be restored to the current version."
|
| 179 |
msgstr ""
|
| 180 |
|
| 181 |
+
#: bbp-admin/bbp-topics.php:123 bbp-admin/bbp-topics.php:167
|
| 182 |
+
#: bbp-admin/bbp-settings.php:478 bbp-admin/bbp-forums.php:119
|
| 183 |
+
#: bbp-admin/bbp-forums.php:157 bbp-admin/bbp-replies.php:122
|
| 184 |
+
#: bbp-admin/bbp-replies.php:163
|
| 185 |
+
msgid "<strong>For more information:</strong>"
|
| 186 |
msgstr ""
|
| 187 |
|
| 188 |
+
#: bbp-admin/bbp-topics.php:126 bbp-admin/bbp-topics.php:170
|
| 189 |
+
#: bbp-admin/bbp-settings.php:481 bbp-admin/bbp-forums.php:122
|
| 190 |
+
#: bbp-admin/bbp-forums.php:160 bbp-admin/bbp-replies.php:125
|
| 191 |
+
#: bbp-admin/bbp-replies.php:166
|
| 192 |
+
msgid "<a href=\"http://bbpress.org/documentation/\">bbPress Documentation</a>"
|
| 193 |
msgstr ""
|
| 194 |
|
| 195 |
+
#: bbp-admin/bbp-topics.php:127 bbp-admin/bbp-topics.php:171
|
| 196 |
+
#: bbp-admin/bbp-settings.php:482 bbp-admin/bbp-forums.php:123
|
| 197 |
+
#: bbp-admin/bbp-forums.php:161 bbp-admin/bbp-replies.php:126
|
| 198 |
+
#: bbp-admin/bbp-replies.php:167
|
| 199 |
+
msgid "<a href=\"http://bbpress.org/forums/\">bbPress Support Forums</a>"
|
| 200 |
msgstr ""
|
| 201 |
|
| 202 |
+
#: bbp-admin/bbp-topics.php:142
|
| 203 |
+
msgid "This screen displays the topics created on your site."
|
| 204 |
msgstr ""
|
| 205 |
|
| 206 |
+
#: bbp-admin/bbp-topics.php:143 bbp-admin/bbp-forums.php:139
|
| 207 |
+
#: bbp-admin/bbp-replies.php:142
|
| 208 |
+
msgid "You can customize the display of this screen in a number of ways:"
|
| 209 |
msgstr ""
|
| 210 |
|
| 211 |
+
#: bbp-admin/bbp-topics.php:146
|
| 212 |
+
msgid ""
|
| 213 |
+
"You can hide/display columns based on your needs and decide how many topics "
|
| 214 |
+
"to list per screen using the Screen Options tab."
|
| 215 |
msgstr ""
|
| 216 |
|
| 217 |
+
#: bbp-admin/bbp-topics.php:147
|
| 218 |
+
msgid ""
|
| 219 |
+
"You can filter the list of topics by topics status using the text links in "
|
| 220 |
+
"the upper left to show All, Published, Pending Review, Draft, or Trashed "
|
| 221 |
+
"topics. The default view is to show all topics."
|
| 222 |
msgstr ""
|
| 223 |
|
| 224 |
+
#: bbp-admin/bbp-topics.php:148
|
| 225 |
+
msgid ""
|
| 226 |
+
"You can view topics in a simple title list or with an excerpt. Choose the "
|
| 227 |
+
"view you prefer by clicking on the icons at the top of the list on the right."
|
| 228 |
msgstr ""
|
| 229 |
|
| 230 |
+
#: bbp-admin/bbp-topics.php:149
|
| 231 |
+
msgid ""
|
| 232 |
+
"You can refine the list to show only topics from a specific month by using "
|
| 233 |
+
"the dropdown menus above the topics list. Click the Filter button after "
|
| 234 |
+
"making your selection."
|
| 235 |
msgstr ""
|
| 236 |
|
| 237 |
+
#: bbp-admin/bbp-topics.php:150
|
| 238 |
+
msgid ""
|
| 239 |
+
"You can also show only topics from a specific parent forum by using the "
|
| 240 |
+
"parent forum dropdown above the topics list and selecting the parent forum. "
|
| 241 |
+
"Click the Filter button after making your selection."
|
|
|
|
| 242 |
msgstr ""
|
| 243 |
|
| 244 |
+
#: bbp-admin/bbp-topics.php:151
|
| 245 |
+
msgid ""
|
| 246 |
+
"You can refine the list by clicking on the topic creator in the topics list."
|
| 247 |
msgstr ""
|
| 248 |
|
| 249 |
+
#: bbp-admin/bbp-topics.php:154
|
| 250 |
+
msgid ""
|
| 251 |
+
"Hovering over a row in the topics list will display action links that allow "
|
| 252 |
+
"you to manage your topic. You can perform the following actions:"
|
| 253 |
msgstr ""
|
| 254 |
|
| 255 |
+
#: bbp-admin/bbp-topics.php:157
|
| 256 |
+
msgid ""
|
| 257 |
+
"Edit takes you to the editing screen for that topic. You can also reach that "
|
| 258 |
+
"screen by clicking on the topic title."
|
| 259 |
msgstr ""
|
| 260 |
|
| 261 |
+
#: bbp-admin/bbp-topics.php:158
|
| 262 |
+
msgid ""
|
| 263 |
+
"Trash removes your topic from this list and places it in the trash, from "
|
| 264 |
+
"which you can permanently delete it."
|
| 265 |
msgstr ""
|
| 266 |
|
| 267 |
+
#: bbp-admin/bbp-topics.php:159
|
| 268 |
+
msgid "View will take you to your live topic to view the topic."
|
| 269 |
msgstr ""
|
| 270 |
|
| 271 |
+
#: bbp-admin/bbp-topics.php:160
|
| 272 |
+
msgid ""
|
| 273 |
+
"Close will close your topic, disabling new replies within it. It will remain "
|
| 274 |
+
"viewable to users, but replies will not be allowed."
|
| 275 |
msgstr ""
|
| 276 |
|
| 277 |
+
#: bbp-admin/bbp-topics.php:161
|
| 278 |
msgid ""
|
| 279 |
+
"Stick (to front) will pin the topic to the front page of the forum that "
|
| 280 |
+
"it’s in. New topics will begin beneath the list of \"stuck\" topics, "
|
| 281 |
+
"which will always sit at the top of the list."
|
| 282 |
msgstr ""
|
| 283 |
|
| 284 |
+
#: bbp-admin/bbp-topics.php:162
|
| 285 |
+
msgid ""
|
| 286 |
+
"Spam will mark the topic as spam, closing the post to new replies and "
|
| 287 |
+
"removing it from the public view."
|
| 288 |
msgstr ""
|
| 289 |
|
| 290 |
+
#: bbp-admin/bbp-topics.php:165
|
| 291 |
+
msgid ""
|
| 292 |
+
"You can also edit multiple topics at once. Select the topics you want to "
|
| 293 |
+
"edit using the checkboxes, select Edit from the Bulk Actions menu and click "
|
| 294 |
+
"Apply. You will be able to change the metadata for all selected topics at "
|
| 295 |
+
"once. To remove a topic from the grouping, just click the x next to its name "
|
| 296 |
+
"in the Bulk Edit area that appears."
|
| 297 |
msgstr ""
|
| 298 |
|
| 299 |
+
#: bbp-admin/bbp-topics.php:166
|
| 300 |
+
msgid ""
|
| 301 |
+
"The Bulk Actions menu may also be used to delete multiple topics at once. "
|
| 302 |
+
"Select Delete from the dropdown after making your selection."
|
| 303 |
msgstr ""
|
| 304 |
|
| 305 |
+
#: bbp-admin/bbp-topics.php:186
|
| 306 |
+
msgid ""
|
| 307 |
+
"You can change the display of this screen using the Screen Options tab to "
|
| 308 |
+
"set how many items are displayed per screen (20 by default) and to display/"
|
| 309 |
+
"hide columns in the table (Description, Slug, and Topics)."
|
| 310 |
msgstr ""
|
| 311 |
|
| 312 |
+
#: bbp-admin/bbp-topics.php:187
|
| 313 |
+
msgid ""
|
| 314 |
+
"You can assign keywords to your topics using Topic Tags. Unlike categories, "
|
| 315 |
+
"tags have no hierarchy, meaning there is no relationship from one tag to "
|
| 316 |
+
"another."
|
| 317 |
msgstr ""
|
| 318 |
|
| 319 |
+
#: bbp-admin/bbp-topics.php:188
|
| 320 |
+
msgid ""
|
| 321 |
+
"Normally, tags are ad-hoc keywords that identify important information in "
|
| 322 |
+
"your topic (names, subjects, etc) that may or may not recur in other topics. "
|
| 323 |
+
"If you think of your forum like a book, the tags are like the terms in the "
|
| 324 |
+
"index."
|
| 325 |
msgstr ""
|
| 326 |
|
| 327 |
+
#: bbp-admin/bbp-topics.php:189
|
| 328 |
msgid ""
|
| 329 |
+
"When editing a topic tag on this screen, you will fill in the following "
|
| 330 |
+
"fields:"
|
| 331 |
msgstr ""
|
| 332 |
|
| 333 |
+
#: bbp-admin/bbp-topics.php:192
|
| 334 |
+
msgid "<strong>Name</strong> - The name is how it appears on your site."
|
|
|
|
|
|
|
|
|
|
| 335 |
msgstr ""
|
| 336 |
|
| 337 |
+
#: bbp-admin/bbp-topics.php:193
|
| 338 |
+
msgid ""
|
| 339 |
+
"<strong>Slug</strong> - The Slug is the URL-friendly version of the name. It "
|
| 340 |
+
"is usually all lowercase and contains only letters, numbers, and hyphens."
|
| 341 |
msgstr ""
|
| 342 |
|
| 343 |
+
#: bbp-admin/bbp-topics.php:194
|
| 344 |
+
msgid ""
|
| 345 |
+
"<strong>Description</strong> - The description is not prominent by default; "
|
| 346 |
+
"however, some forum themes may display it."
|
| 347 |
msgstr ""
|
| 348 |
|
| 349 |
+
#: bbp-admin/bbp-topics.php:218
|
| 350 |
+
msgid "Topic Attributes"
|
| 351 |
msgstr ""
|
| 352 |
|
| 353 |
+
#: bbp-admin/bbp-topics.php:293 bbp-admin/bbp-replies.php:272
|
| 354 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-anonymous.php:17
|
| 355 |
+
msgid "Author Information"
|
|
|
|
| 356 |
msgstr ""
|
| 357 |
|
| 358 |
+
#: bbp-admin/bbp-topics.php:454
|
| 359 |
+
msgid "The topic was not found!"
|
| 360 |
msgstr ""
|
| 361 |
|
| 362 |
+
#: bbp-admin/bbp-topics.php:457 bbp-admin/bbp-replies.php:428
|
| 363 |
+
msgid "You do not have the permission to do that!"
|
|
|
|
| 364 |
msgstr ""
|
| 365 |
|
| 366 |
+
#: bbp-admin/bbp-topics.php:537
|
| 367 |
+
msgid "There was a problem opening the topic \"%1$s\"."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 368 |
msgstr ""
|
| 369 |
|
| 370 |
+
#: bbp-admin/bbp-topics.php:537
|
| 371 |
+
msgid "Topic \"%1$s\" successfully opened."
|
|
|
|
|
|
|
|
|
|
|
|
|
| 372 |
msgstr ""
|
| 373 |
|
| 374 |
+
#: bbp-admin/bbp-topics.php:541
|
| 375 |
+
msgid "There was a problem closing the topic \"%1$s\"."
|
|
|
|
|
|
|
| 376 |
msgstr ""
|
| 377 |
|
| 378 |
+
#: bbp-admin/bbp-topics.php:541
|
| 379 |
+
msgid "Topic \"%1$s\" successfully closed."
|
| 380 |
msgstr ""
|
| 381 |
|
| 382 |
+
#: bbp-admin/bbp-topics.php:545
|
| 383 |
+
msgid "There was a problem sticking the topic \"%1$s\" to front."
|
| 384 |
msgstr ""
|
| 385 |
|
| 386 |
+
#: bbp-admin/bbp-topics.php:545
|
| 387 |
+
msgid "Topic \"%1$s\" successfully sticked to front."
|
| 388 |
msgstr ""
|
| 389 |
|
| 390 |
+
#: bbp-admin/bbp-topics.php:549
|
| 391 |
+
msgid "There was a problem sticking the topic \"%1$s\"."
|
| 392 |
msgstr ""
|
| 393 |
|
| 394 |
+
#: bbp-admin/bbp-topics.php:549
|
| 395 |
+
msgid "Topic \"%1$s\" successfully sticked."
|
| 396 |
msgstr ""
|
| 397 |
|
| 398 |
+
#: bbp-admin/bbp-topics.php:553
|
| 399 |
+
msgid "There was a problem unsticking the topic \"%1$s\"."
|
| 400 |
msgstr ""
|
| 401 |
|
| 402 |
+
#: bbp-admin/bbp-topics.php:553
|
| 403 |
+
msgid "Topic \"%1$s\" successfully unsticked."
|
| 404 |
msgstr ""
|
| 405 |
|
| 406 |
+
#: bbp-admin/bbp-topics.php:557
|
| 407 |
+
msgid "There was a problem marking the topic \"%1$s\" as spam."
|
| 408 |
msgstr ""
|
| 409 |
|
| 410 |
+
#: bbp-admin/bbp-topics.php:557
|
| 411 |
+
msgid "Topic \"%1$s\" successfully marked as spam."
|
| 412 |
msgstr ""
|
| 413 |
|
| 414 |
+
#: bbp-admin/bbp-topics.php:561
|
| 415 |
+
msgid "There was a problem unmarking the topic \"%1$s\" as spam."
|
| 416 |
msgstr ""
|
| 417 |
|
| 418 |
+
#: bbp-admin/bbp-topics.php:561
|
| 419 |
+
msgid "Topic \"%1$s\" successfully unmarked as spam."
|
|
|
|
|
|
|
|
|
|
| 420 |
msgstr ""
|
| 421 |
|
| 422 |
+
#: bbp-admin/bbp-topics.php:591 bbp-admin/bbp-admin.php:236
|
| 423 |
+
#: bbp-admin/bbp-admin.php:249 bbp-admin/bbp-forums.php:389
|
| 424 |
+
#: bbp-includes/bbp-forum-template.php:1777
|
| 425 |
+
#: bbp-themes/bbp-twentyten/page-forum-statistics.php:45
|
| 426 |
+
#: bbp-themes/bbp-twentyten/bbpress/loop-forums.php:19 bbpress.php:617
|
| 427 |
+
#: bbpress.php:618
|
| 428 |
+
msgid "Topics"
|
| 429 |
msgstr ""
|
| 430 |
|
| 431 |
+
#: bbp-admin/bbp-topics.php:592 bbp-admin/bbp-forums.php:388
|
| 432 |
+
#: bbp-admin/bbp-metaboxes.php:50 bbp-admin/bbp-metaboxes.php:254
|
| 433 |
+
#: bbp-admin/bbp-metaboxes.php:362 bbp-admin/bbp-metaboxes.php:365
|
| 434 |
+
#: bbp-admin/bbp-metaboxes.php:405 bbp-admin/bbp-metaboxes.php:408
|
| 435 |
+
#: bbp-admin/bbp-replies.php:524
|
| 436 |
+
#: bbp-themes/bbp-twentyten/bbpress/loop-forums.php:18 bbpress.php:562
|
| 437 |
+
msgid "Forum"
|
| 438 |
msgstr ""
|
| 439 |
|
| 440 |
+
#: bbp-admin/bbp-topics.php:593 bbp-admin/bbp-admin.php:240
|
| 441 |
+
#: bbp-admin/bbp-admin.php:253 bbp-admin/bbp-forums.php:390
|
| 442 |
+
#: bbp-includes/bbp-core-compatibility.php:865
|
| 443 |
+
#: bbp-includes/bbp-forum-template.php:1841
|
| 444 |
+
#: bbp-themes/bbp-twentyten/single-reply.php:32
|
| 445 |
+
#: bbp-themes/bbp-twentyten/page-forum-statistics.php:50
|
| 446 |
+
#: bbp-themes/bbp-twentyten/bbpress/loop-replies.php:30
|
| 447 |
+
#: bbp-themes/bbp-twentyten/bbpress/loop-replies.php:49
|
| 448 |
+
#: bbp-themes/bbp-twentyten/bbpress/loop-forums.php:20
|
| 449 |
+
#: bbp-themes/bbp-twentyten/bbpress/loop-topics.php:19 bbpress.php:674
|
| 450 |
+
#: bbpress.php:675
|
| 451 |
+
msgid "Replies"
|
| 452 |
msgstr ""
|
| 453 |
|
| 454 |
+
#: bbp-admin/bbp-topics.php:594
|
| 455 |
+
#: bbp-themes/bbp-twentyten/bbpress/loop-topics.php:18
|
| 456 |
+
msgid "Voices"
|
| 457 |
msgstr ""
|
| 458 |
|
| 459 |
+
#: bbp-admin/bbp-topics.php:595 bbp-admin/bbp-replies.php:526
|
| 460 |
+
#: bbp-themes/bbp-twentyten/single-reply.php:31
|
| 461 |
+
#: bbp-themes/bbp-twentyten/bbpress/loop-replies.php:17
|
| 462 |
+
#: bbp-themes/bbp-twentyten/bbpress/loop-replies.php:40
|
| 463 |
+
msgid "Author"
|
| 464 |
msgstr ""
|
| 465 |
|
| 466 |
+
#: bbp-admin/bbp-topics.php:596 bbp-admin/bbp-forums.php:392
|
| 467 |
+
#: bbp-admin/bbp-replies.php:527
|
| 468 |
+
msgid "Created"
|
| 469 |
msgstr ""
|
| 470 |
|
| 471 |
+
#: bbp-admin/bbp-topics.php:597 bbp-admin/bbp-forums.php:393
|
| 472 |
+
#: bbp-themes/bbp-twentyten/bbpress/loop-forums.php:21
|
| 473 |
+
#: bbp-themes/bbp-twentyten/bbpress/loop-topics.php:20
|
| 474 |
+
msgid "Freshness"
|
| 475 |
msgstr ""
|
| 476 |
|
| 477 |
+
#: bbp-admin/bbp-topics.php:644 bbp-admin/bbp-replies.php:601
|
| 478 |
+
#: bbp-admin/bbp-replies.php:615
|
| 479 |
+
msgid "No Forum"
|
| 480 |
msgstr ""
|
| 481 |
|
| 482 |
+
#: bbp-admin/bbp-topics.php:650 bbp-admin/bbp-metaboxes.php:359
|
| 483 |
+
msgid "(No Forum)"
|
| 484 |
msgstr ""
|
| 485 |
|
| 486 |
+
#: bbp-admin/bbp-topics.php:672 bbp-admin/bbp-forums.php:427
|
| 487 |
+
#: bbp-admin/bbp-replies.php:629
|
| 488 |
+
msgid "%1$s <br /> %2$s"
|
| 489 |
msgstr ""
|
| 490 |
|
| 491 |
+
#: bbp-admin/bbp-topics.php:682 bbp-admin/bbp-forums.php:436
|
| 492 |
+
msgid "%s ago"
|
|
|
|
| 493 |
msgstr ""
|
| 494 |
|
| 495 |
+
#: bbp-admin/bbp-topics.php:684 bbp-includes/bbp-topic-template.php:1646
|
| 496 |
+
msgid "No Replies"
|
|
|
|
|
|
|
|
|
|
| 497 |
msgstr ""
|
| 498 |
|
| 499 |
+
#: bbp-admin/bbp-topics.php:730 bbp-admin/bbp-replies.php:674
|
| 500 |
+
msgid "View “%s”"
|
|
|
|
| 501 |
msgstr ""
|
| 502 |
|
| 503 |
+
#: bbp-admin/bbp-topics.php:730 bbp-admin/bbp-replies.php:674
|
| 504 |
+
msgid "View"
|
|
|
|
| 505 |
msgstr ""
|
| 506 |
|
| 507 |
+
#: bbp-admin/bbp-topics.php:740
|
| 508 |
+
msgid "Close this topic"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 509 |
msgstr ""
|
| 510 |
|
| 511 |
+
#: bbp-admin/bbp-topics.php:740 bbp-includes/bbp-topic-template.php:2245
|
| 512 |
+
msgid "Close"
|
|
|
|
|
|
|
|
|
|
|
|
|
| 513 |
msgstr ""
|
| 514 |
|
| 515 |
+
#: bbp-admin/bbp-topics.php:742
|
| 516 |
+
msgid "Open this topic"
|
|
|
|
|
|
|
|
|
|
|
|
|
| 517 |
msgstr ""
|
| 518 |
|
| 519 |
+
#: bbp-admin/bbp-topics.php:742 bbp-admin/bbp-metaboxes.php:267
|
| 520 |
+
#: bbp-includes/bbp-topic-template.php:2246
|
| 521 |
+
msgid "Open"
|
| 522 |
msgstr ""
|
| 523 |
|
| 524 |
+
#: bbp-admin/bbp-topics.php:751
|
| 525 |
+
msgid "Unstick this topic"
|
|
|
|
|
|
|
| 526 |
msgstr ""
|
| 527 |
|
| 528 |
+
#: bbp-admin/bbp-topics.php:751 bbp-includes/bbp-topic-template.php:2307
|
| 529 |
+
msgid "Unstick"
|
|
|
|
| 530 |
msgstr ""
|
| 531 |
|
| 532 |
+
#: bbp-admin/bbp-topics.php:754
|
| 533 |
+
msgid "Stick this topic to its forum"
|
| 534 |
msgstr ""
|
| 535 |
|
| 536 |
+
#: bbp-admin/bbp-topics.php:754 bbp-includes/bbp-topic-template.php:2306
|
| 537 |
+
msgid "Stick"
|
| 538 |
msgstr ""
|
| 539 |
|
| 540 |
+
#: bbp-admin/bbp-topics.php:754
|
| 541 |
+
msgid "Stick this topic to front"
|
|
|
|
|
|
|
|
|
|
| 542 |
msgstr ""
|
| 543 |
|
| 544 |
+
#: bbp-admin/bbp-topics.php:754 bbp-includes/bbp-topic-template.php:2308
|
| 545 |
+
msgid "to front"
|
| 546 |
msgstr ""
|
| 547 |
|
| 548 |
+
#: bbp-admin/bbp-topics.php:761
|
| 549 |
+
msgid "Mark the topic as not spam"
|
| 550 |
msgstr ""
|
| 551 |
|
| 552 |
+
#: bbp-admin/bbp-topics.php:761 bbp-admin/bbp-replies.php:685
|
| 553 |
+
msgid "Not spam"
|
| 554 |
msgstr ""
|
| 555 |
|
| 556 |
+
#: bbp-admin/bbp-topics.php:763
|
| 557 |
+
msgid "Mark this topic as spam"
|
|
|
|
| 558 |
msgstr ""
|
| 559 |
|
| 560 |
+
#: bbp-admin/bbp-topics.php:763 bbp-admin/bbp-replies.php:687
|
| 561 |
+
#: bbp-includes/bbp-reply-template.php:1604
|
| 562 |
+
#: bbp-includes/bbp-topic-template.php:2432
|
| 563 |
+
msgid "Spam"
|
| 564 |
msgstr ""
|
| 565 |
|
| 566 |
+
#: bbp-admin/bbp-topics.php:771 bbp-admin/bbp-replies.php:695
|
| 567 |
+
#: bbp-includes/bbp-reply-template.php:1548
|
| 568 |
+
#: bbp-includes/bbp-topic-template.php:2189
|
| 569 |
+
msgid "Restore this item from the Trash"
|
| 570 |
msgstr ""
|
| 571 |
|
| 572 |
+
#: bbp-admin/bbp-topics.php:771 bbp-admin/bbp-replies.php:695
|
| 573 |
+
#: bbp-includes/bbp-reply-template.php:1533
|
| 574 |
+
#: bbp-includes/bbp-topic-template.php:2175
|
| 575 |
+
msgid "Restore"
|
| 576 |
msgstr ""
|
| 577 |
|
| 578 |
+
#: bbp-admin/bbp-topics.php:773 bbp-admin/bbp-replies.php:697
|
| 579 |
+
#: bbp-includes/bbp-reply-template.php:1550
|
| 580 |
+
#: bbp-includes/bbp-topic-template.php:2191
|
| 581 |
+
msgid "Move this item to the Trash"
|
| 582 |
msgstr ""
|
| 583 |
|
| 584 |
+
#: bbp-admin/bbp-topics.php:773 bbp-admin/bbp-replies.php:697
|
| 585 |
+
#: bbp-includes/bbp-reply-template.php:1532
|
| 586 |
+
#: bbp-includes/bbp-topic-template.php:2174
|
| 587 |
+
msgid "Trash"
|
| 588 |
msgstr ""
|
| 589 |
|
| 590 |
+
#: bbp-admin/bbp-topics.php:777 bbp-admin/bbp-replies.php:701
|
| 591 |
+
#: bbp-includes/bbp-reply-template.php:1554
|
| 592 |
+
#: bbp-includes/bbp-topic-template.php:2195
|
| 593 |
+
msgid "Delete this item permanently"
|
| 594 |
msgstr ""
|
| 595 |
|
| 596 |
+
#: bbp-admin/bbp-topics.php:777 bbp-admin/bbp-replies.php:701
|
| 597 |
+
msgid "Delete Permanently"
|
| 598 |
msgstr ""
|
| 599 |
|
| 600 |
+
#: bbp-admin/bbp-topics.php:812 bbp-admin/bbp-replies.php:736
|
| 601 |
+
msgid "Empty Spam"
|
| 602 |
msgstr ""
|
| 603 |
|
| 604 |
+
#: bbp-admin/bbp-topics.php:822 bbp-admin/bbp-replies.php:746
|
| 605 |
+
msgid "In all forums"
|
| 606 |
msgstr ""
|
| 607 |
|
| 608 |
+
#: bbp-admin/bbp-topics.php:899
|
| 609 |
+
msgid "Topic updated. <a href=\"%s\">View topic</a>"
|
| 610 |
msgstr ""
|
| 611 |
|
| 612 |
+
#: bbp-admin/bbp-topics.php:902 bbp-admin/bbp-forums.php:506
|
| 613 |
+
#: bbp-admin/bbp-replies.php:826
|
| 614 |
+
msgid "Custom field updated."
|
| 615 |
msgstr ""
|
| 616 |
|
| 617 |
+
#: bbp-admin/bbp-topics.php:905 bbp-admin/bbp-forums.php:509
|
| 618 |
+
#: bbp-admin/bbp-replies.php:829
|
| 619 |
+
msgid "Custom field deleted."
|
| 620 |
msgstr ""
|
| 621 |
|
| 622 |
+
#: bbp-admin/bbp-topics.php:908
|
| 623 |
+
msgid "Topic updated."
|
| 624 |
msgstr ""
|
| 625 |
|
| 626 |
+
#. translators: %s: date and time of the revision
|
| 627 |
+
#: bbp-admin/bbp-topics.php:913
|
| 628 |
+
msgid "Topic restored to revision from %s"
|
| 629 |
msgstr ""
|
| 630 |
|
| 631 |
+
#: bbp-admin/bbp-topics.php:917
|
| 632 |
+
msgid "Topic created. <a href=\"%s\">View topic</a>"
|
| 633 |
msgstr ""
|
| 634 |
|
| 635 |
+
#: bbp-admin/bbp-topics.php:920
|
| 636 |
+
msgid "Topic saved."
|
| 637 |
msgstr ""
|
| 638 |
|
| 639 |
+
#: bbp-admin/bbp-topics.php:923
|
| 640 |
+
msgid "Topic submitted. <a target=\"_blank\" href=\"%s\">Preview topic</a>"
|
| 641 |
msgstr ""
|
| 642 |
|
| 643 |
+
#: bbp-admin/bbp-topics.php:926
|
| 644 |
msgid ""
|
| 645 |
+
"Topic scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
|
| 646 |
+
"\">Preview topic</a>"
|
| 647 |
msgstr ""
|
| 648 |
|
| 649 |
+
#. translators: Publish box date format, see http:php.net/date
|
| 650 |
+
#: bbp-admin/bbp-topics.php:928 bbp-admin/bbp-forums.php:532
|
| 651 |
+
#: bbp-admin/bbp-replies.php:852
|
| 652 |
+
msgid "M j, Y @ G:i"
|
| 653 |
msgstr ""
|
| 654 |
|
| 655 |
+
#: bbp-admin/bbp-topics.php:933
|
| 656 |
+
msgid "Topic draft updated. <a target=\"_blank\" href=\"%s\">Preview topic</a>"
|
|
|
|
|
|
|
|
|
|
|
|
|
| 657 |
msgstr ""
|
| 658 |
|
| 659 |
+
#: bbp-admin/bbp-settings.php:23
|
| 660 |
+
msgid "Main settings for the bbPress plugin"
|
| 661 |
msgstr ""
|
| 662 |
|
| 663 |
+
#: bbp-admin/bbp-settings.php:39
|
| 664 |
+
msgid "minutes"
|
| 665 |
msgstr ""
|
| 666 |
|
| 667 |
+
#: bbp-admin/bbp-settings.php:55
|
| 668 |
+
msgid "seconds"
|
| 669 |
msgstr ""
|
| 670 |
|
| 671 |
+
#: bbp-admin/bbp-settings.php:71
|
| 672 |
+
msgid "Allow users to mark topics as favorites?"
|
| 673 |
msgstr ""
|
| 674 |
|
| 675 |
+
#: bbp-admin/bbp-settings.php:87
|
| 676 |
+
msgid "Allow users to subscribe to topics"
|
| 677 |
msgstr ""
|
| 678 |
|
| 679 |
+
#: bbp-admin/bbp-settings.php:103
|
| 680 |
+
msgid "Allow topic and reply revision logging"
|
| 681 |
msgstr ""
|
| 682 |
|
| 683 |
+
#: bbp-admin/bbp-settings.php:119
|
| 684 |
+
msgid "Allow guest users without accounts to create topics and replies"
|
| 685 |
msgstr ""
|
| 686 |
|
| 687 |
+
#: bbp-admin/bbp-settings.php:135
|
| 688 |
+
msgid ""
|
| 689 |
+
"Allow all users of your multisite installation to create topics and replies"
|
|
|
|
|
|
|
|
|
|
|
|
|
| 690 |
msgstr ""
|
| 691 |
|
| 692 |
+
#: bbp-admin/bbp-settings.php:150
|
| 693 |
+
msgid "Per page settings for the bbPress plugin"
|
|
|
|
|
|
|
| 694 |
msgstr ""
|
| 695 |
|
| 696 |
+
#: bbp-admin/bbp-settings.php:166 bbp-admin/bbp-settings.php:182
|
| 697 |
+
#: bbp-admin/bbp-settings.php:213 bbp-admin/bbp-settings.php:229
|
| 698 |
+
msgid "per page"
|
| 699 |
msgstr ""
|
| 700 |
|
| 701 |
+
#: bbp-admin/bbp-settings.php:197
|
| 702 |
+
msgid "Per RSS page settings for the bbPress plugin"
|
| 703 |
msgstr ""
|
| 704 |
|
| 705 |
+
#: bbp-admin/bbp-settings.php:247
|
| 706 |
+
msgid ""
|
| 707 |
+
"Include custom root slugs to prefix your forums and topics with. These can "
|
| 708 |
+
"be partnered with WordPress pages to allow more flexibility."
|
| 709 |
msgstr ""
|
| 710 |
|
| 711 |
+
#: bbp-admin/bbp-settings.php:296
|
| 712 |
+
msgid ""
|
| 713 |
+
"You can enter custom slugs for your single forums, topics, replies, and tags "
|
| 714 |
+
"URLs here. If you change these, existing permalinks will also change."
|
| 715 |
msgstr ""
|
| 716 |
|
| 717 |
+
#: bbp-admin/bbp-settings.php:312
|
| 718 |
+
msgid "Incude the Forum Base slug in your single forum item links"
|
| 719 |
msgstr ""
|
| 720 |
|
| 721 |
+
#: bbp-admin/bbp-settings.php:440
|
| 722 |
+
msgid "bbPress Settings"
|
|
|
|
|
|
|
|
|
|
| 723 |
msgstr ""
|
| 724 |
|
| 725 |
+
#: bbp-admin/bbp-settings.php:449
|
| 726 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:169
|
| 727 |
+
msgid "Save Changes"
|
| 728 |
msgstr ""
|
| 729 |
|
| 730 |
+
#: bbp-admin/bbp-settings.php:464
|
| 731 |
+
msgid "This screen provides access to basic bbPress settings."
|
| 732 |
msgstr ""
|
| 733 |
|
| 734 |
+
#: bbp-admin/bbp-settings.php:465
|
| 735 |
+
msgid "In the Main Settings you have a number of options:"
|
| 736 |
msgstr ""
|
| 737 |
|
| 738 |
+
#: bbp-admin/bbp-settings.php:468
|
| 739 |
+
msgid ""
|
| 740 |
+
"You can choose to lock a post after a certain number of minutes. \"Locking "
|
| 741 |
+
"post editing\" will prevent the author from editing some amount of time "
|
| 742 |
+
"after saving a post."
|
| 743 |
msgstr ""
|
| 744 |
|
| 745 |
+
#: bbp-admin/bbp-settings.php:469
|
| 746 |
+
msgid ""
|
| 747 |
+
"\"Throttle time\" is the amount of time required between posts from a single "
|
| 748 |
+
"author. The higher the throttle time, the longer a user will need to wait "
|
| 749 |
+
"between posting to the forum."
|
| 750 |
msgstr ""
|
| 751 |
|
| 752 |
+
#: bbp-admin/bbp-settings.php:470
|
| 753 |
+
msgid ""
|
| 754 |
+
"You may choose to allow favorites, which are a way for users to save and "
|
| 755 |
+
"later return to topics they favor. This is enabled by default."
|
| 756 |
msgstr ""
|
| 757 |
|
| 758 |
+
#: bbp-admin/bbp-settings.php:471
|
| 759 |
+
msgid ""
|
| 760 |
+
"You may choose to allow subscriptions, which allows users to subscribe for "
|
| 761 |
+
"notifications to topics that interest them. This is enabled by default."
|
| 762 |
msgstr ""
|
| 763 |
|
| 764 |
+
#: bbp-admin/bbp-settings.php:472
|
| 765 |
+
msgid ""
|
| 766 |
+
"You may choose to allow \"Anonymous Posting\", which will allow guest users "
|
| 767 |
+
"who do not have accounts on your site to both create topics as well as "
|
| 768 |
+
"replies."
|
| 769 |
msgstr ""
|
| 770 |
|
| 771 |
+
#: bbp-admin/bbp-settings.php:475
|
| 772 |
+
msgid ""
|
| 773 |
+
"Per Page settings allow you to control the number of topics and replies will "
|
| 774 |
+
"appear on each of those pages. This is comparable to the WordPress \"Reading "
|
| 775 |
+
"Settings\" page, where you can set the number of posts that should show on "
|
| 776 |
+
"blog pages and in feeds."
|
| 777 |
msgstr ""
|
| 778 |
|
| 779 |
+
#: bbp-admin/bbp-settings.php:476
|
| 780 |
+
msgid ""
|
| 781 |
+
"The Forums section allows you to control the permalink structure for your "
|
| 782 |
+
"forums. Each \"base\" is what will be displayed after your main URL and "
|
| 783 |
+
"right before your permalink slug."
|
|
|
|
|
|
|
| 784 |
msgstr ""
|
| 785 |
|
| 786 |
+
#: bbp-admin/bbp-settings.php:477
|
| 787 |
+
msgid ""
|
| 788 |
+
"You must click the Save Changes button at the bottom of the screen for new "
|
| 789 |
+
"settings to take effect."
|
| 790 |
msgstr ""
|
| 791 |
|
| 792 |
+
#: bbp-admin/bbp-settings.php:565
|
| 793 |
+
#: bbp-themes/bbp-twentyten/bbpress/loop-replies.php:22
|
| 794 |
+
#: bbp-themes/bbp-twentyten/bbpress/loop-replies.php:45
|
| 795 |
+
#: bbp-themes/bbp-twentyten/bbpress/loop-forums.php:20
|
| 796 |
+
#: bbp-themes/bbp-twentyten/bbpress/loop-topics.php:19
|
| 797 |
+
msgid "Posts"
|
| 798 |
msgstr ""
|
| 799 |
|
| 800 |
+
#: bbp-admin/bbp-settings.php:566
|
| 801 |
+
msgid "Pages"
|
| 802 |
msgstr ""
|
| 803 |
|
| 804 |
+
#: bbp-admin/bbp-settings.php:567
|
| 805 |
+
msgid "Revisions"
|
| 806 |
msgstr ""
|
| 807 |
|
| 808 |
+
#: bbp-admin/bbp-settings.php:568
|
| 809 |
+
msgid "Attachments"
|
|
|
|
| 810 |
msgstr ""
|
| 811 |
|
| 812 |
+
#: bbp-admin/bbp-settings.php:569
|
| 813 |
+
msgid "Menus"
|
|
|
|
| 814 |
msgstr ""
|
| 815 |
|
| 816 |
+
#: bbp-admin/bbp-settings.php:572
|
| 817 |
+
msgid "Tag base"
|
|
|
|
| 818 |
msgstr ""
|
| 819 |
|
| 820 |
+
#: bbp-admin/bbp-settings.php:575
|
| 821 |
+
msgid "Category base"
|
|
|
|
| 822 |
msgstr ""
|
| 823 |
|
| 824 |
+
#: bbp-admin/bbp-settings.php:580 bbp-admin/bbp-admin.php:262
|
| 825 |
+
msgid "Forums base"
|
| 826 |
msgstr ""
|
| 827 |
|
| 828 |
+
#: bbp-admin/bbp-settings.php:583 bbp-admin/bbp-admin.php:266
|
| 829 |
+
msgid "Topics base"
|
|
|
|
|
|
|
| 830 |
msgstr ""
|
| 831 |
|
| 832 |
+
#: bbp-admin/bbp-settings.php:586 bbp-admin/bbp-admin.php:279
|
| 833 |
+
msgid "Forum slug"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 834 |
msgstr ""
|
| 835 |
|
| 836 |
+
#: bbp-admin/bbp-settings.php:589 bbp-admin/bbp-admin.php:283
|
| 837 |
+
msgid "Topic slug"
|
|
|
|
|
|
|
| 838 |
msgstr ""
|
| 839 |
|
| 840 |
+
#: bbp-admin/bbp-settings.php:592 bbp-admin/bbp-admin.php:291
|
| 841 |
+
msgid "Reply slug"
|
|
|
|
|
|
|
| 842 |
msgstr ""
|
| 843 |
|
| 844 |
+
#: bbp-admin/bbp-settings.php:595 bbp-admin/bbp-admin.php:297
|
| 845 |
+
msgid "User base"
|
|
|
|
|
|
|
| 846 |
msgstr ""
|
| 847 |
|
| 848 |
+
#: bbp-admin/bbp-settings.php:598 bbp-admin/bbp-admin.php:301
|
| 849 |
+
msgid "View base"
|
|
|
|
|
|
|
| 850 |
msgstr ""
|
| 851 |
|
| 852 |
+
#: bbp-admin/bbp-settings.php:601 bbp-admin/bbp-admin.php:287
|
| 853 |
+
msgid "Topic tag slug"
|
|
|
|
|
|
|
| 854 |
msgstr ""
|
| 855 |
|
| 856 |
+
#: bbp-admin/bbp-settings.php:613
|
| 857 |
+
msgid "Possible \"%s\" conflict"
|
|
|
|
| 858 |
msgstr ""
|
| 859 |
|
| 860 |
+
#: bbp-admin/bbp-admin.php:177 bbp-admin/bbp-tools.php:67
|
| 861 |
+
msgid "Recount"
|
|
|
|
|
|
|
| 862 |
msgstr ""
|
| 863 |
|
| 864 |
+
#: bbp-admin/bbp-admin.php:180
|
| 865 |
+
#: bbp-themes/bbp-twentyten/page-forum-statistics.php:40 bbpress.php:560
|
| 866 |
+
#: bbpress.php:561
|
| 867 |
+
msgid "Forums"
|
| 868 |
msgstr ""
|
| 869 |
|
| 870 |
+
#: bbp-admin/bbp-admin.php:198
|
| 871 |
+
msgid "Main Settings"
|
| 872 |
msgstr ""
|
| 873 |
|
| 874 |
+
#: bbp-admin/bbp-admin.php:201
|
| 875 |
+
msgid "Lock post editing after"
|
| 876 |
msgstr ""
|
| 877 |
|
| 878 |
+
#: bbp-admin/bbp-admin.php:205
|
| 879 |
+
msgid "Throttle time"
|
| 880 |
msgstr ""
|
| 881 |
|
| 882 |
+
#: bbp-admin/bbp-admin.php:209
|
| 883 |
+
msgid "Allow Revisions"
|
| 884 |
msgstr ""
|
| 885 |
|
| 886 |
+
#: bbp-admin/bbp-admin.php:213
|
| 887 |
+
msgid "Allow Favorites"
|
| 888 |
msgstr ""
|
| 889 |
|
| 890 |
+
#: bbp-admin/bbp-admin.php:217
|
| 891 |
+
msgid "Allow Subscriptions"
|
| 892 |
msgstr ""
|
| 893 |
|
| 894 |
+
#: bbp-admin/bbp-admin.php:221
|
| 895 |
+
msgid "Allow Anonymous Posting"
|
| 896 |
msgstr ""
|
| 897 |
|
| 898 |
+
#: bbp-admin/bbp-admin.php:226
|
| 899 |
+
msgid "Allow Global Access"
|
| 900 |
msgstr ""
|
| 901 |
|
| 902 |
+
#: bbp-admin/bbp-admin.php:233
|
| 903 |
+
msgid "Per Page"
|
| 904 |
msgstr ""
|
| 905 |
|
| 906 |
+
#: bbp-admin/bbp-admin.php:246
|
| 907 |
+
msgid "Per RSS Page"
|
| 908 |
msgstr ""
|
| 909 |
|
| 910 |
+
#: bbp-admin/bbp-admin.php:259
|
| 911 |
+
msgid "Archive Slugs"
|
| 912 |
msgstr ""
|
| 913 |
|
| 914 |
+
#: bbp-admin/bbp-admin.php:272
|
| 915 |
+
msgid "Single Slugs"
|
| 916 |
msgstr ""
|
| 917 |
|
| 918 |
+
#: bbp-admin/bbp-admin.php:275
|
| 919 |
+
msgid "Forum Prefix"
|
| 920 |
msgstr ""
|
| 921 |
|
| 922 |
+
#: bbp-admin/bbp-admin.php:374
|
| 923 |
+
msgid ""
|
| 924 |
+
"Your active theme does not include bbPress template files. Your forums are "
|
| 925 |
+
"using the default styling included with bbPress."
|
| 926 |
msgstr ""
|
| 927 |
|
| 928 |
+
#: bbp-admin/bbp-admin.php:393
|
| 929 |
+
msgid "Settings"
|
| 930 |
msgstr ""
|
| 931 |
|
| 932 |
+
#: bbp-admin/bbp-admin.php:419
|
| 933 |
+
msgid "Right Now in Forums"
|
| 934 |
msgstr ""
|
| 935 |
|
| 936 |
+
#: bbp-admin/bbp-admin.php:679
|
| 937 |
+
msgid "Green"
|
| 938 |
msgstr ""
|
| 939 |
|
| 940 |
+
#: bbp-admin/bbp-tools.php:53
|
| 941 |
+
msgid "bbPress Recount"
|
| 942 |
msgstr ""
|
| 943 |
|
| 944 |
+
#: bbp-admin/bbp-tools.php:57
|
| 945 |
+
msgid ""
|
| 946 |
+
"bbPress keeps a running count of things like replies to each topic and "
|
| 947 |
+
"topics in each forum. In rare occasions these counts can fall out of sync. "
|
| 948 |
+
"Using this form you can have bbPress manually recount these items."
|
| 949 |
msgstr ""
|
| 950 |
|
| 951 |
+
#: bbp-admin/bbp-tools.php:58
|
| 952 |
+
msgid "You can also use this form to clean out stale items like empty tags."
|
| 953 |
msgstr ""
|
| 954 |
|
| 955 |
+
#: bbp-admin/bbp-tools.php:64
|
| 956 |
+
msgid "Things to recount:"
|
| 957 |
msgstr ""
|
| 958 |
|
| 959 |
+
#: bbp-admin/bbp-tools.php:78
|
| 960 |
+
msgid "There are no recount tools available."
|
| 961 |
msgstr ""
|
| 962 |
|
| 963 |
+
#: bbp-admin/bbp-tools.php:89
|
| 964 |
+
msgid "Recount Items"
|
| 965 |
msgstr ""
|
| 966 |
|
| 967 |
+
#: bbp-admin/importers/bbpress.php:350
|
| 968 |
+
msgid "bbPress Standalone Importer"
|
| 969 |
msgstr ""
|
| 970 |
|
| 971 |
+
#: bbp-admin/importers/bbpress.php:363
|
| 972 |
+
msgid "Try Again"
|
| 973 |
msgstr ""
|
| 974 |
|
| 975 |
+
#: bbp-admin/importers/bbpress.php:447
|
| 976 |
+
msgid ""
|
| 977 |
+
"It looks like you attempted to convert your bbPress standalone previously "
|
| 978 |
+
"and got interrupted."
|
| 979 |
msgstr ""
|
| 980 |
|
| 981 |
+
#: bbp-admin/importers/bbpress.php:450
|
| 982 |
+
msgid "Cancel & start a new import"
|
| 983 |
msgstr ""
|
| 984 |
|
| 985 |
+
#: bbp-admin/importers/bbpress.php:451
|
| 986 |
+
msgid "Continue previous import"
|
|
|
|
| 987 |
msgstr ""
|
| 988 |
|
| 989 |
+
#: bbp-admin/importers/bbpress.php:459
|
| 990 |
+
msgid ""
|
| 991 |
+
"Existing bbPress standalone installation found. See configuration section "
|
| 992 |
+
"for details."
|
| 993 |
msgstr ""
|
| 994 |
|
| 995 |
+
#: bbp-admin/importers/bbpress.php:466
|
| 996 |
msgid ""
|
| 997 |
+
"This importer allows you to convert your bbPress Standalone into the bbPress "
|
| 998 |
+
"Plugin."
|
| 999 |
msgstr ""
|
| 1000 |
|
| 1001 |
+
#: bbp-admin/importers/bbpress.php:468
|
| 1002 |
+
msgid "Instructions"
|
| 1003 |
msgstr ""
|
| 1004 |
|
| 1005 |
+
#: bbp-admin/importers/bbpress.php:470
|
| 1006 |
+
msgid ""
|
| 1007 |
+
"Create a <a href=\"%s\">backup</a> of your database and files. If the import "
|
| 1008 |
+
"process is interrupted for any reason, restore from that backup and re-run "
|
| 1009 |
+
"the import."
|
| 1010 |
msgstr ""
|
| 1011 |
|
| 1012 |
+
#: bbp-admin/importers/bbpress.php:471
|
| 1013 |
+
msgid ""
|
| 1014 |
+
"Seriously... Go back everything up, and don't come back until that's done. "
|
| 1015 |
+
"If things go awry, it's possible this importer will not be able to complete "
|
| 1016 |
+
"and your forums will be lost in limbo forever. This is serious business. No, "
|
| 1017 |
+
"we're not kidding."
|
| 1018 |
msgstr ""
|
| 1019 |
|
| 1020 |
+
#: bbp-admin/importers/bbpress.php:472
|
| 1021 |
+
msgid "To reduce memory overhead and avoid possible conflicts please:"
|
| 1022 |
msgstr ""
|
| 1023 |
|
| 1024 |
+
#: bbp-admin/importers/bbpress.php:475
|
| 1025 |
+
msgid ""
|
| 1026 |
+
"Disable all plugins (except bbPress) on both your WordPress and bbPress "
|
| 1027 |
+
"standalone installations."
|
| 1028 |
msgstr ""
|
| 1029 |
|
| 1030 |
+
#: bbp-admin/importers/bbpress.php:478
|
| 1031 |
+
msgid "Switch to a default WordPress theme."
|
| 1032 |
msgstr ""
|
| 1033 |
|
| 1034 |
+
#: bbp-admin/importers/bbpress.php:482
|
| 1035 |
+
msgid "Notes on compatibility:"
|
| 1036 |
msgstr ""
|
| 1037 |
|
| 1038 |
+
#: bbp-admin/importers/bbpress.php:485
|
| 1039 |
+
msgid ""
|
| 1040 |
+
"If you are using the alpha version of bbPress 1.1, subscriptions will be "
|
| 1041 |
+
"ported automatically."
|
| 1042 |
msgstr ""
|
| 1043 |
|
| 1044 |
+
#: bbp-admin/importers/bbpress.php:488
|
| 1045 |
+
msgid ""
|
| 1046 |
+
"If you have the <a href=\"%s\">Subscribe to Topic</a> plugin active, then "
|
| 1047 |
+
"this script will migrate user subscriptions from that plugin."
|
| 1048 |
msgstr ""
|
| 1049 |
|
| 1050 |
+
#: bbp-admin/importers/bbpress.php:491
|
| 1051 |
+
msgid ""
|
| 1052 |
+
"If you are importing an existing BuddyPress Forums installation, we should "
|
| 1053 |
+
"have found your previous configuration file."
|
| 1054 |
msgstr ""
|
| 1055 |
|
| 1056 |
+
#: bbp-admin/importers/bbpress.php:495
|
| 1057 |
+
msgid ""
|
| 1058 |
+
"This converter can be a drag on large forums with lots of existing topics "
|
| 1059 |
+
"and replies. If possible, do this import in a safe place (like a local "
|
| 1060 |
+
"installation.)"
|
| 1061 |
msgstr ""
|
| 1062 |
|
| 1063 |
+
#: bbp-admin/importers/bbpress.php:498
|
| 1064 |
+
msgid "Configuration"
|
| 1065 |
msgstr ""
|
| 1066 |
|
| 1067 |
+
#: bbp-admin/importers/bbpress.php:499
|
| 1068 |
+
msgid ""
|
| 1069 |
+
"Enter the full path to your bbPress configuration file i.e. <code>bb-config."
|
| 1070 |
+
"php</code>:"
|
| 1071 |
msgstr ""
|
| 1072 |
|
| 1073 |
+
#: bbp-admin/importers/bbpress.php:503
|
| 1074 |
+
msgid "bbPress Standalone Path:"
|
| 1075 |
msgstr ""
|
| 1076 |
|
| 1077 |
+
#: bbp-admin/importers/bbpress.php:510
|
| 1078 |
+
msgid "Proceed"
|
| 1079 |
msgstr ""
|
| 1080 |
|
| 1081 |
+
#: bbp-admin/importers/bbpress.php:556
|
| 1082 |
+
msgid ""
|
| 1083 |
+
"Please enter the path to your bbPress configuration file - <code>bb-config."
|
| 1084 |
+
"php</code>."
|
| 1085 |
msgstr ""
|
| 1086 |
|
| 1087 |
+
#: bbp-admin/importers/bbpress.php:557 bbp-admin/importers/bbpress.php:575
|
| 1088 |
+
msgid "Go Back"
|
| 1089 |
msgstr ""
|
| 1090 |
|
| 1091 |
+
#: bbp-admin/importers/bbpress.php:574
|
| 1092 |
+
msgid ""
|
| 1093 |
+
"bbPress configuration file <code>bb-config.php</code> doesn't exist in the "
|
| 1094 |
+
"path specified! Please check the path and try again."
|
| 1095 |
msgstr ""
|
| 1096 |
|
| 1097 |
+
#: bbp-admin/importers/bbpress.php:608
|
| 1098 |
+
msgid "Configuration Options"
|
|
|
|
| 1099 |
msgstr ""
|
| 1100 |
|
| 1101 |
+
#: bbp-admin/importers/bbpress.php:614
|
| 1102 |
+
msgid ""
|
| 1103 |
+
"<strong>Auto-detected</strong>: Your WordPress and bbPress user tables are "
|
| 1104 |
+
"integrated. Proceed to <label for=\"step_board\">importing forums, topics "
|
| 1105 |
+
"and posts</label>."
|
| 1106 |
msgstr ""
|
| 1107 |
|
| 1108 |
+
#: bbp-admin/importers/bbpress.php:621
|
| 1109 |
+
msgid ""
|
| 1110 |
+
"Your WordPress blog is <strong>new</strong> and you don't have the fear of "
|
| 1111 |
+
"losing WordPress users:"
|
| 1112 |
msgstr ""
|
| 1113 |
|
| 1114 |
+
#: bbp-admin/importers/bbpress.php:622
|
| 1115 |
+
msgid "Go to migrating users section."
|
| 1116 |
msgstr ""
|
| 1117 |
|
| 1118 |
+
#: bbp-admin/importers/bbpress.php:623
|
| 1119 |
+
msgid ""
|
| 1120 |
+
"<strong>Note</strong>: The WordPress %1$s and %2$s tables will be renamed "
|
| 1121 |
+
"(not deleted) so that you can restore them if something goes wrong."
|
| 1122 |
msgstr ""
|
| 1123 |
|
| 1124 |
+
#: bbp-admin/importers/bbpress.php:624
|
| 1125 |
msgid ""
|
| 1126 |
+
"Please ensure there are no tables named %1$s and %2$s to avoid renaming "
|
| 1127 |
+
"conflicts."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1128 |
msgstr ""
|
| 1129 |
|
| 1130 |
+
#: bbp-admin/importers/bbpress.php:625
|
| 1131 |
+
msgid "Also, your WordPress and bbPress installs must be in the same database."
|
| 1132 |
msgstr ""
|
| 1133 |
|
| 1134 |
+
#: bbp-admin/importers/bbpress.php:629
|
| 1135 |
msgid ""
|
| 1136 |
+
"You're done with user migration or have the user tables <strong>integrated</"
|
| 1137 |
+
"strong>:"
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1138 |
msgstr ""
|
| 1139 |
|
| 1140 |
+
#: bbp-admin/importers/bbpress.php:630
|
| 1141 |
+
msgid "Proceed to importing forums, topics and posts section."
|
|
|
|
| 1142 |
msgstr ""
|
| 1143 |
|
| 1144 |
+
#: bbp-admin/importers/bbpress.php:634
|
| 1145 |
+
msgid ""
|
| 1146 |
+
"You have a well <strong>established</strong> WordPress user base, the user "
|
| 1147 |
+
"tables are not integrated and you can't lose your users:"
|
| 1148 |
msgstr ""
|
| 1149 |
|
| 1150 |
+
#: bbp-admin/importers/bbpress.php:635
|
| 1151 |
msgid ""
|
| 1152 |
+
"This is currently not yet supported, and will likely not be in the future "
|
| 1153 |
+
"also as it is highly complex to merge two user sets (which might even "
|
| 1154 |
+
"conflict)."
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1155 |
msgstr ""
|
| 1156 |
|
| 1157 |
+
#: bbp-admin/importers/bbpress.php:636
|
|
|
|
| 1158 |
msgid ""
|
| 1159 |
+
"Patches are always <a href=\"%s\" title=\"The last revision containing the "
|
| 1160 |
+
"custom user migration code\">welcome</a>. :)"
|
| 1161 |
msgstr ""
|
| 1162 |
|
| 1163 |
+
#: bbp-admin/importers/bbpress.php:644
|
| 1164 |
+
msgid "Migrate Users"
|
|
|
|
|
|
|
|
|
|
| 1165 |
msgstr ""
|
| 1166 |
|
| 1167 |
+
#: bbp-admin/importers/bbpress.php:647
|
| 1168 |
+
msgid "Import Forums, Topics & Posts"
|
|
|
|
| 1169 |
msgstr ""
|
| 1170 |
|
| 1171 |
+
#: bbp-admin/importers/bbpress.php:651
|
| 1172 |
+
msgid "Start!"
|
|
|
|
|
|
|
| 1173 |
msgstr ""
|
| 1174 |
|
| 1175 |
+
#: bbp-admin/importers/bbpress.php:687
|
| 1176 |
+
msgid "Importing Users"
|
|
|
|
| 1177 |
msgstr ""
|
| 1178 |
|
| 1179 |
+
#: bbp-admin/importers/bbpress.php:688
|
| 1180 |
+
msgid "We’re in the process of migrating your users..."
|
| 1181 |
msgstr ""
|
| 1182 |
|
| 1183 |
+
#: bbp-admin/importers/bbpress.php:698
|
| 1184 |
+
msgid ""
|
| 1185 |
+
"Renamed the <code>%1$s</code> and <code>%2$s</code> tables to <code>%3$s</"
|
| 1186 |
+
"code> and <code>%4$s</code> respectively."
|
| 1187 |
msgstr ""
|
| 1188 |
|
| 1189 |
+
#: bbp-admin/importers/bbpress.php:700
|
| 1190 |
msgid ""
|
| 1191 |
+
"There was a problem dropping the <code>%1$s</code> and <code>%2$s</code> "
|
| 1192 |
+
"tables. Please check and re-run the script or rename or drop the tables "
|
| 1193 |
+
"yourself."
|
| 1194 |
msgstr ""
|
| 1195 |
|
| 1196 |
+
#: bbp-admin/importers/bbpress.php:716
|
| 1197 |
+
msgid "Created the <code>%s</code> table and copied the users from bbPress."
|
| 1198 |
msgstr ""
|
| 1199 |
|
| 1200 |
+
#: bbp-admin/importers/bbpress.php:718 bbp-admin/importers/bbpress.php:735
|
|
|
|
| 1201 |
msgid ""
|
| 1202 |
+
"There was a problem duplicating the table <code>%1$s</code> to <code>%2$s</"
|
| 1203 |
+
"code>. Please check and re-run the script or duplicate the table yourself."
|
| 1204 |
msgstr ""
|
| 1205 |
|
| 1206 |
+
#: bbp-admin/importers/bbpress.php:733
|
| 1207 |
+
msgid ""
|
| 1208 |
+
"Created the <code>%s</code> table and copied the user information from "
|
| 1209 |
+
"bbPress."
|
| 1210 |
msgstr ""
|
| 1211 |
|
| 1212 |
+
#: bbp-admin/importers/bbpress.php:808
|
| 1213 |
+
msgid ""
|
| 1214 |
+
"There was a problem in getting an administrator of the blog. Now, please go "
|
| 1215 |
+
"to your blog, set a user as administrator, login as that user and directly "
|
| 1216 |
+
"go to importing forums, topics and replies section. Note that old logins "
|
| 1217 |
+
"won't work, you would have to edit your database (you can still try logging "
|
| 1218 |
+
"in as the bbPress keymaster)."
|
| 1219 |
msgstr ""
|
| 1220 |
|
| 1221 |
+
#: bbp-admin/importers/bbpress.php:831
|
| 1222 |
msgid ""
|
| 1223 |
+
"User roles have been successfully mapped based. The bbPress keymaster is "
|
| 1224 |
+
"WordPress administrator, bbPress administrator and moderators are moderators "
|
| 1225 |
+
"and rest all WordPress roles are %1$s. Now, you can only login into your "
|
| 1226 |
+
"WordPress blog by the bbPress credentials. For the time being, you have been "
|
| 1227 |
+
"logged in as the first available administrator (Username: %2$s, User ID: %3"
|
| 1228 |
+
"$s)."
|
| 1229 |
msgstr ""
|
| 1230 |
|
| 1231 |
+
#: bbp-admin/importers/bbpress.php:836
|
| 1232 |
+
msgid ""
|
| 1233 |
+
"Your users have all been imported, but wait – there’s more! Now "
|
| 1234 |
+
"we need to import your forums, topics and posts!"
|
| 1235 |
msgstr ""
|
| 1236 |
|
| 1237 |
+
#: bbp-admin/importers/bbpress.php:839
|
| 1238 |
+
msgid "Import forums, topics and posts »"
|
| 1239 |
msgstr ""
|
| 1240 |
|
| 1241 |
+
#: bbp-admin/importers/bbpress.php:867
|
| 1242 |
+
msgid "Importing Forums, Topics And Posts"
|
| 1243 |
msgstr ""
|
| 1244 |
|
| 1245 |
+
#: bbp-admin/importers/bbpress.php:868
|
| 1246 |
+
msgid ""
|
| 1247 |
+
"We’re importing your bbPress standalone forums, topics and replies..."
|
| 1248 |
msgstr ""
|
| 1249 |
|
| 1250 |
+
#: bbp-admin/importers/bbpress.php:875 bbpress.php:572
|
| 1251 |
+
msgid "No forums found"
|
| 1252 |
msgstr ""
|
| 1253 |
|
| 1254 |
+
#: bbp-admin/importers/bbpress.php:879
|
| 1255 |
+
msgid "Total number of forums: %s"
|
| 1256 |
msgstr ""
|
| 1257 |
|
| 1258 |
+
#: bbp-admin/importers/bbpress.php:885
|
| 1259 |
+
msgid "Processing forum #%1$s (<a href=\"%2$s\">%3$s</a>)"
|
|
|
|
|
|
|
| 1260 |
msgstr ""
|
| 1261 |
|
| 1262 |
+
#: bbp-admin/importers/bbpress.php:905
|
| 1263 |
+
msgid "Added the forum as forum #<a href=\"%1$s\">%2$s</a>"
|
|
|
|
|
|
|
| 1264 |
msgstr ""
|
| 1265 |
|
| 1266 |
+
#: bbp-admin/importers/bbpress.php:907
|
| 1267 |
+
msgid "There was a problem in adding the forum."
|
|
|
|
|
|
|
| 1268 |
msgstr ""
|
| 1269 |
|
| 1270 |
+
#: bbp-admin/importers/bbpress.php:928
|
| 1271 |
+
msgid "The forum is a category and has no topics."
|
|
|
|
|
|
|
| 1272 |
msgstr ""
|
| 1273 |
|
| 1274 |
+
#: bbp-admin/importers/bbpress.php:933
|
|
|
|
| 1275 |
msgid ""
|
| 1276 |
+
"The forum is a category but has topics, so it has been set as closed on the "
|
| 1277 |
+
"new board."
|
| 1278 |
msgstr ""
|
| 1279 |
|
| 1280 |
+
#: bbp-admin/importers/bbpress.php:940
|
| 1281 |
+
msgid "Total number of topics in the forum: %s"
|
|
|
|
| 1282 |
msgstr ""
|
| 1283 |
|
| 1284 |
+
#: bbp-admin/importers/bbpress.php:1002
|
| 1285 |
+
#: bbp-includes/bbp-common-template.php:1094
|
| 1286 |
+
#: bbp-includes/bbp-common-template.php:1111
|
| 1287 |
+
#: bbp-includes/bbp-topic-functions.php:1089
|
| 1288 |
+
#: bbp-includes/bbp-topic-functions.php:1404
|
| 1289 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-reply.php:27
|
| 1290 |
+
msgid "Reply To: %s"
|
| 1291 |
msgstr ""
|
| 1292 |
|
| 1293 |
+
#: bbp-admin/importers/bbpress.php:1080
|
|
|
|
| 1294 |
msgid ""
|
| 1295 |
+
"Added topic #%1$s (<a href=\"%2$s\">%3$s</a>) as topic #<a href=\"%4$s\">%5"
|
| 1296 |
+
"$s</a> with %6$s replies."
|
| 1297 |
msgstr ""
|
| 1298 |
|
| 1299 |
+
#: bbp-admin/importers/bbpress.php:1082
|
| 1300 |
+
msgid "There was a problem in adding topic #1$s (<a href=\"%2$s\">%3$s</a>)."
|
|
|
|
| 1301 |
msgstr ""
|
| 1302 |
|
| 1303 |
+
#: bbp-admin/importers/bbpress.php:1101
|
| 1304 |
msgid ""
|
| 1305 |
+
"Your forums, topics and posts have all been imported, but wait – "
|
| 1306 |
+
"there’s more! Now we need to do a <a href=\"%s\">recount</a> to get "
|
| 1307 |
+
"the counts in sync! Yes, we’re bad at Math."
|
| 1308 |
msgstr ""
|
| 1309 |
|
| 1310 |
+
#: bbp-admin/importers/bbpress.php:1103
|
| 1311 |
+
msgid "After that it's all done. <a href=\"%s\">Have fun!</a> :)"
|
|
|
|
|
|
|
| 1312 |
msgstr ""
|
| 1313 |
|
| 1314 |
+
#: bbp-admin/importers/bbpress.php:1114
|
| 1315 |
+
msgid "bbPress Standalone"
|
| 1316 |
msgstr ""
|
| 1317 |
|
| 1318 |
+
#: bbp-admin/importers/bbpress.php:1114
|
| 1319 |
+
msgid "Import your bbPress standalone board."
|
| 1320 |
msgstr ""
|
| 1321 |
|
| 1322 |
+
#: bbp-admin/bbp-forums.php:104
|
| 1323 |
+
msgid ""
|
| 1324 |
+
"The forum title field and the big forum editing area are fixed in place, but "
|
| 1325 |
+
"you can reposition all the other boxes using drag and drop, and can minimize "
|
| 1326 |
+
"or expand them by clicking the title bar of the box. Use the Screen Options "
|
| 1327 |
+
"tab to unhide more boxes (like Slug) or to choose a 1- or 2-column layout "
|
| 1328 |
+
"for this screen."
|
| 1329 |
msgstr ""
|
| 1330 |
|
| 1331 |
+
#: bbp-admin/bbp-forums.php:105
|
| 1332 |
+
msgid ""
|
| 1333 |
+
"<strong>Title</strong> - Enter a title for your forum. After you enter a "
|
| 1334 |
+
"title, you will see the permalink appear below it, which is fully editable."
|
| 1335 |
msgstr ""
|
| 1336 |
|
| 1337 |
+
#: bbp-admin/bbp-forums.php:106
|
| 1338 |
+
msgid ""
|
| 1339 |
+
"<strong>Post editor</strong> - Enter the description for your forum. There "
|
| 1340 |
+
"are two modes of editing: Visual and HTML. Choose the mode by clicking on "
|
| 1341 |
+
"the appropriate tab. Visual mode gives you a WYSIWYG editor. Click the last "
|
| 1342 |
+
"icon in the row to get a second row of controls. The screen icon just before "
|
| 1343 |
+
"that allows you to expand the edit box to full screen. The HTML mode allows "
|
| 1344 |
+
"you to enter raw HTML along with your forum text. You can insert media files "
|
| 1345 |
+
"by clicking the icons above the post editor and following the directions."
|
| 1346 |
msgstr ""
|
| 1347 |
|
| 1348 |
+
#: bbp-admin/bbp-forums.php:107
|
| 1349 |
msgid ""
|
| 1350 |
+
"<strong>Forum Attributes</strong> - Select the various attributes that your "
|
| 1351 |
+
"forum should have:"
|
| 1352 |
msgstr ""
|
| 1353 |
|
| 1354 |
+
#: bbp-admin/bbp-forums.php:110
|
| 1355 |
+
msgid ""
|
| 1356 |
+
"Forum Type determines whether it is a Forum (by default) or a Category, "
|
| 1357 |
+
"which means no new topics (only other forums) can be created within it."
|
| 1358 |
msgstr ""
|
| 1359 |
|
| 1360 |
+
#: bbp-admin/bbp-forums.php:111
|
| 1361 |
+
msgid ""
|
| 1362 |
+
"Forum Status controls whether it is open (and thus can be posted to) or "
|
| 1363 |
+
"closed (thus not able to be posted to)."
|
| 1364 |
msgstr ""
|
| 1365 |
|
| 1366 |
+
#: bbp-admin/bbp-forums.php:112
|
| 1367 |
+
msgid ""
|
| 1368 |
+
"Visibility can be set to either Public (by default, seen by everyone), "
|
| 1369 |
+
"Private (seen only by chosen users), and Hidden (hidden from all users)."
|
| 1370 |
msgstr ""
|
| 1371 |
|
| 1372 |
+
#: bbp-admin/bbp-forums.php:113
|
| 1373 |
+
msgid ""
|
| 1374 |
+
"Parent turns the forum into a child forum of the selected forum/category in "
|
| 1375 |
+
"the dropdown."
|
| 1376 |
msgstr ""
|
| 1377 |
|
| 1378 |
+
#: bbp-admin/bbp-forums.php:114
|
| 1379 |
+
msgid ""
|
| 1380 |
+
"Order determines the order that forums in the given hierarchy are displayed "
|
| 1381 |
+
"(lower numbers first, higher numbers last)."
|
| 1382 |
msgstr ""
|
| 1383 |
|
| 1384 |
+
#: bbp-admin/bbp-forums.php:117
|
| 1385 |
+
msgid ""
|
| 1386 |
+
"<strong>Publish</strong> - The Publish box will allow you to Preview your "
|
| 1387 |
+
"forum before it is published, Publish your forum to your site, or Move to "
|
| 1388 |
+
"Trash will move your forum to the trash."
|
| 1389 |
msgstr ""
|
| 1390 |
|
| 1391 |
+
#: bbp-admin/bbp-forums.php:118
|
| 1392 |
+
msgid ""
|
| 1393 |
+
"<strong>Revisions</strong> - Revisions show past versions of the saved "
|
| 1394 |
+
"forum. Each revision can be compared to the current version, or another "
|
| 1395 |
+
"revision. Revisions can also be restored to the current version."
|
| 1396 |
msgstr ""
|
| 1397 |
|
| 1398 |
+
#: bbp-admin/bbp-forums.php:138
|
| 1399 |
+
msgid "This screen displays the forums available on your site."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1400 |
msgstr ""
|
| 1401 |
|
| 1402 |
+
#: bbp-admin/bbp-forums.php:142
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1403 |
msgid ""
|
| 1404 |
+
"You can hide/display columns based on your needs and decide how many forums "
|
| 1405 |
+
"to list per screen using the Screen Options tab."
|
| 1406 |
msgstr ""
|
| 1407 |
|
| 1408 |
+
#: bbp-admin/bbp-forums.php:143
|
| 1409 |
msgid ""
|
| 1410 |
+
"You can filter the list of forums by forum status using the text links in "
|
| 1411 |
+
"the upper left to show All, Published, or Trashed forums. The default view "
|
| 1412 |
+
"is to show all forums."
|
| 1413 |
msgstr ""
|
| 1414 |
|
| 1415 |
+
#: bbp-admin/bbp-forums.php:144
|
| 1416 |
+
msgid ""
|
| 1417 |
+
"You can refine the list to show only forums from a specific month by using "
|
| 1418 |
+
"the dropdown menus above the forums list. Click the Filter button after "
|
| 1419 |
+
"making your selection. You also can refine the list by clicking on the forum "
|
| 1420 |
+
"creator in the forums list."
|
| 1421 |
msgstr ""
|
| 1422 |
|
| 1423 |
+
#: bbp-admin/bbp-forums.php:147
|
| 1424 |
+
msgid ""
|
| 1425 |
+
"Hovering over a row in the forums list will display action links that allow "
|
| 1426 |
+
"you to manage your forum. You can perform the following actions:"
|
| 1427 |
msgstr ""
|
| 1428 |
|
| 1429 |
+
#: bbp-admin/bbp-forums.php:150
|
| 1430 |
+
msgid ""
|
| 1431 |
+
"Edit takes you to the editing screen for that forum. You can also reach that "
|
| 1432 |
+
"screen by clicking on the forum title."
|
| 1433 |
msgstr ""
|
| 1434 |
|
| 1435 |
+
#: bbp-admin/bbp-forums.php:151
|
| 1436 |
+
msgid ""
|
| 1437 |
+
"Trash removes your forum from this list and places it in the trash, from "
|
| 1438 |
+
"which you can permanently delete it."
|
| 1439 |
msgstr ""
|
| 1440 |
|
| 1441 |
+
#: bbp-admin/bbp-forums.php:152
|
| 1442 |
+
msgid "View will take you to your live forum to view the forum."
|
|
|
|
|
|
|
| 1443 |
msgstr ""
|
| 1444 |
|
| 1445 |
+
#: bbp-admin/bbp-forums.php:155
|
| 1446 |
+
msgid ""
|
| 1447 |
+
"You can also edit multiple forums at once. Select the forums you want to "
|
| 1448 |
+
"edit using the checkboxes, select Edit from the Bulk Actions menu and click "
|
| 1449 |
+
"Apply. You will be able to change the metadata for all selected forums at "
|
| 1450 |
+
"once. To remove a forum from the grouping, just click the x next to its name "
|
| 1451 |
+
"in the Bulk Edit area that appears."
|
| 1452 |
msgstr ""
|
| 1453 |
|
| 1454 |
+
#: bbp-admin/bbp-forums.php:156
|
| 1455 |
+
msgid ""
|
| 1456 |
+
"The Bulk Actions menu may also be used to delete multiple forums at once. "
|
| 1457 |
+
"Select Delete from the dropdown after making your selection."
|
| 1458 |
msgstr ""
|
| 1459 |
|
| 1460 |
+
#: bbp-admin/bbp-forums.php:184
|
| 1461 |
+
msgid "Forum Attributes"
|
| 1462 |
msgstr ""
|
| 1463 |
|
| 1464 |
+
#: bbp-admin/bbp-forums.php:391
|
| 1465 |
+
#: bbp-themes/bbp-twentyten/bbpress/content-single-topic-lead.php:15
|
| 1466 |
+
msgid "Creator"
|
| 1467 |
msgstr ""
|
| 1468 |
|
| 1469 |
+
#: bbp-admin/bbp-forums.php:438 bbp-includes/bbp-forum-template.php:512
|
| 1470 |
+
msgid "No Topics"
|
| 1471 |
msgstr ""
|
| 1472 |
|
| 1473 |
+
#: bbp-admin/bbp-forums.php:503
|
| 1474 |
+
msgid "Forum updated. <a href=\"%s\">View forum</a>"
|
|
|
|
|
|
|
| 1475 |
msgstr ""
|
| 1476 |
|
| 1477 |
+
#: bbp-admin/bbp-forums.php:512
|
| 1478 |
+
msgid "Forum updated."
|
| 1479 |
msgstr ""
|
| 1480 |
|
| 1481 |
+
#. translators: %s: date and time of the revision
|
| 1482 |
+
#: bbp-admin/bbp-forums.php:517
|
| 1483 |
+
msgid "Forum restored to revision from %s"
|
| 1484 |
msgstr ""
|
| 1485 |
|
| 1486 |
+
#: bbp-admin/bbp-forums.php:521
|
| 1487 |
+
msgid "Forum created. <a href=\"%s\">View forum</a>"
|
| 1488 |
msgstr ""
|
| 1489 |
|
| 1490 |
+
#: bbp-admin/bbp-forums.php:524
|
| 1491 |
+
msgid "Forum saved."
|
| 1492 |
msgstr ""
|
| 1493 |
|
| 1494 |
+
#: bbp-admin/bbp-forums.php:527
|
| 1495 |
+
msgid "Forum submitted. <a target=\"_blank\" href=\"%s\">Preview forum</a>"
|
| 1496 |
msgstr ""
|
| 1497 |
|
| 1498 |
+
#: bbp-admin/bbp-forums.php:530
|
| 1499 |
msgid ""
|
| 1500 |
+
"Forum scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
|
| 1501 |
+
"\">Preview forum</a>"
|
| 1502 |
msgstr ""
|
| 1503 |
|
| 1504 |
+
#: bbp-admin/bbp-forums.php:537
|
| 1505 |
+
msgid "Forum draft updated. <a target=\"_blank\" href=\"%s\">Preview forum</a>"
|
| 1506 |
msgstr ""
|
| 1507 |
|
| 1508 |
+
#: bbp-admin/bbp-metaboxes.php:42
|
| 1509 |
+
msgid "Discussion"
|
| 1510 |
msgstr ""
|
| 1511 |
|
| 1512 |
+
#: bbp-admin/bbp-metaboxes.php:67 bbp-admin/bbp-metaboxes.php:430
|
| 1513 |
+
#: bbp-admin/bbp-metaboxes.php:433 bbp-admin/bbp-replies.php:525
|
| 1514 |
+
#: bbp-themes/bbp-twentyten/bbpress/content-single-topic-lead.php:18
|
| 1515 |
+
#: bbp-themes/bbp-twentyten/bbpress/loop-topics.php:17 bbpress.php:619
|
| 1516 |
+
msgid "Topic"
|
| 1517 |
+
msgid_plural "Topics"
|
| 1518 |
+
msgstr[0] ""
|
| 1519 |
+
msgstr[1] ""
|
| 1520 |
|
| 1521 |
+
#: bbp-admin/bbp-metaboxes.php:84 bbpress.php:676
|
| 1522 |
+
msgid "Reply"
|
| 1523 |
+
msgid_plural "Replies"
|
| 1524 |
+
msgstr[0] ""
|
| 1525 |
+
msgstr[1] ""
|
| 1526 |
|
| 1527 |
+
#: bbp-admin/bbp-metaboxes.php:101 bbpress.php:817
|
| 1528 |
+
msgid "Topic Tag"
|
| 1529 |
+
msgid_plural "Topic Tags"
|
| 1530 |
+
msgstr[0] ""
|
| 1531 |
+
msgstr[1] ""
|
| 1532 |
|
| 1533 |
+
#: bbp-admin/bbp-metaboxes.php:123
|
| 1534 |
+
msgid "Users & Moderation"
|
| 1535 |
msgstr ""
|
| 1536 |
|
| 1537 |
+
#: bbp-admin/bbp-metaboxes.php:131
|
| 1538 |
+
msgid "User"
|
| 1539 |
+
msgid_plural "Users"
|
| 1540 |
+
msgstr[0] ""
|
| 1541 |
+
msgstr[1] ""
|
|
|
|
| 1542 |
|
| 1543 |
+
#: bbp-admin/bbp-metaboxes.php:150
|
| 1544 |
+
msgid "Hidden Topic"
|
| 1545 |
+
msgid_plural "Hidden Topics"
|
| 1546 |
+
msgstr[0] ""
|
| 1547 |
+
msgstr[1] ""
|
| 1548 |
|
| 1549 |
+
#: bbp-admin/bbp-metaboxes.php:169
|
| 1550 |
+
msgid "Hidden Reply"
|
| 1551 |
+
msgid_plural "Hidden Replies"
|
| 1552 |
+
msgstr[0] ""
|
| 1553 |
+
msgstr[1] ""
|
| 1554 |
|
| 1555 |
+
#: bbp-admin/bbp-metaboxes.php:188
|
| 1556 |
+
msgid "Empty Topic Tag"
|
| 1557 |
+
msgid_plural "Empty Topic Tags"
|
| 1558 |
+
msgstr[0] ""
|
| 1559 |
+
msgstr[1] ""
|
| 1560 |
|
| 1561 |
+
#: bbp-admin/bbp-metaboxes.php:214
|
| 1562 |
+
msgid "Theme is using <strong>custom bbPress</strong> styling."
|
|
|
|
|
|
|
| 1563 |
msgstr ""
|
| 1564 |
|
| 1565 |
+
#: bbp-admin/bbp-metaboxes.php:216
|
| 1566 |
+
msgid "Theme is using <strong>default bbPress</strong> styling."
|
|
|
|
| 1567 |
msgstr ""
|
| 1568 |
|
| 1569 |
+
#: bbp-admin/bbp-metaboxes.php:221
|
| 1570 |
+
msgid "You are using <span class=\"b\">bbPress %s</span>."
|
| 1571 |
msgstr ""
|
| 1572 |
|
| 1573 |
+
#: bbp-admin/bbp-metaboxes.php:255
|
| 1574 |
+
msgid "Category"
|
|
|
|
| 1575 |
msgstr ""
|
| 1576 |
|
| 1577 |
+
#: bbp-admin/bbp-metaboxes.php:268
|
| 1578 |
+
msgid "Closed"
|
| 1579 |
msgstr ""
|
| 1580 |
|
| 1581 |
+
#: bbp-admin/bbp-metaboxes.php:280
|
| 1582 |
+
msgid "Public"
|
| 1583 |
msgstr ""
|
| 1584 |
|
| 1585 |
+
#: bbp-admin/bbp-metaboxes.php:281
|
| 1586 |
+
#: bbp-themes/bbp-twentyten/bbpress/feedback-no-access.php:13
|
| 1587 |
+
msgid "Private"
|
| 1588 |
msgstr ""
|
| 1589 |
|
| 1590 |
+
#: bbp-admin/bbp-metaboxes.php:282
|
| 1591 |
+
msgid "Hidden"
|
|
|
|
| 1592 |
msgstr ""
|
| 1593 |
|
| 1594 |
+
#: bbp-admin/bbp-metaboxes.php:294 bbp-admin/bbp-metaboxes.php:295
|
| 1595 |
+
msgid "Type:"
|
| 1596 |
msgstr ""
|
| 1597 |
|
| 1598 |
+
#: bbp-admin/bbp-metaboxes.php:300 bbp-admin/bbp-metaboxes.php:301
|
| 1599 |
+
msgid "Status:"
|
| 1600 |
msgstr ""
|
| 1601 |
|
| 1602 |
+
#: bbp-admin/bbp-metaboxes.php:306 bbp-admin/bbp-metaboxes.php:307
|
| 1603 |
+
msgid "Visibility:"
|
| 1604 |
msgstr ""
|
| 1605 |
|
| 1606 |
+
#: bbp-admin/bbp-metaboxes.php:314
|
| 1607 |
+
msgid "Parent:"
|
| 1608 |
msgstr ""
|
| 1609 |
|
| 1610 |
+
#: bbp-admin/bbp-metaboxes.php:315
|
| 1611 |
+
msgid "Forum Parent"
|
| 1612 |
msgstr ""
|
| 1613 |
|
| 1614 |
+
#: bbp-admin/bbp-metaboxes.php:321
|
| 1615 |
+
msgid "(No Parent)"
|
| 1616 |
msgstr ""
|
| 1617 |
|
| 1618 |
+
#: bbp-admin/bbp-metaboxes.php:330
|
| 1619 |
+
msgid "Order:"
|
| 1620 |
msgstr ""
|
| 1621 |
|
| 1622 |
+
#: bbp-admin/bbp-metaboxes.php:331
|
| 1623 |
+
msgid "Forum Order"
|
| 1624 |
msgstr ""
|
| 1625 |
|
| 1626 |
+
#: bbp-admin/bbp-metaboxes.php:402
|
| 1627 |
+
msgid "(Use Forum of Topic)"
|
| 1628 |
msgstr ""
|
| 1629 |
|
| 1630 |
+
#: bbp-admin/bbp-metaboxes.php:423
|
| 1631 |
+
msgid "(No Topic)"
|
| 1632 |
msgstr ""
|
| 1633 |
|
| 1634 |
+
#: bbp-admin/bbp-metaboxes.php:464 bbp-admin/bbp-metaboxes.php:467
|
| 1635 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:14
|
| 1636 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:19
|
| 1637 |
+
msgid "Name"
|
| 1638 |
msgstr ""
|
| 1639 |
|
| 1640 |
+
#: bbp-admin/bbp-metaboxes.php:471 bbp-admin/bbp-metaboxes.php:474
|
| 1641 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:105
|
| 1642 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-register.php:28
|
| 1643 |
+
msgid "Email"
|
| 1644 |
msgstr ""
|
| 1645 |
|
| 1646 |
+
#: bbp-admin/bbp-metaboxes.php:478 bbp-admin/bbp-metaboxes.php:481
|
| 1647 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:57
|
| 1648 |
+
msgid "Website"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1649 |
msgstr ""
|
| 1650 |
|
| 1651 |
+
#: bbp-admin/bbp-metaboxes.php:487 bbp-admin/bbp-metaboxes.php:490
|
| 1652 |
+
msgid "IP Address"
|
| 1653 |
msgstr ""
|
| 1654 |
|
| 1655 |
+
#: bbp-admin/bbp-replies.php:116
|
| 1656 |
+
msgid ""
|
| 1657 |
+
"The reply title field and the big reply editing area are fixed in place, but "
|
| 1658 |
+
"you can reposition all the other boxes using drag and drop, and can minimize "
|
| 1659 |
+
"or expand them by clicking the title bar of the box. Use the Screen Options "
|
| 1660 |
+
"tab to unhide more boxes (Reply Attributes, Slug) or to choose a 1- or 2-"
|
| 1661 |
+
"column layout for this screen."
|
| 1662 |
msgstr ""
|
| 1663 |
|
| 1664 |
+
#: bbp-admin/bbp-replies.php:117
|
| 1665 |
+
msgid ""
|
| 1666 |
+
"<strong>Title</strong> - Enter a title for your reply. After you enter a "
|
| 1667 |
+
"title, you will see the permalink below, which you can edit."
|
| 1668 |
msgstr ""
|
| 1669 |
|
| 1670 |
+
#: bbp-admin/bbp-replies.php:118
|
| 1671 |
+
msgid ""
|
| 1672 |
+
"<strong>Post editor</strong> - Enter the text for your reply. There are two "
|
| 1673 |
+
"modes of editing: Visual and HTML. Choose the mode by clicking on the "
|
| 1674 |
+
"appropriate tab. Visual mode gives you a WYSIWYG editor. Click the last icon "
|
| 1675 |
+
"in the row to get a second row of controls. The screen icon just before that "
|
| 1676 |
+
"allows you to expand the edit box to full screen. The HTML mode allows you "
|
| 1677 |
+
"to enter raw HTML along with your forum text. You can insert media files by "
|
| 1678 |
+
"clicking the icons above the post editor and following the directions."
|
| 1679 |
msgstr ""
|
| 1680 |
|
| 1681 |
+
#: bbp-admin/bbp-replies.php:119
|
| 1682 |
+
msgid ""
|
| 1683 |
+
"<strong>Reply Attributes</strong> - Select the attributes that your reply "
|
| 1684 |
+
"should have. The Parent Topic dropdown determines the parent topic that the "
|
| 1685 |
+
"reply belongs to."
|
| 1686 |
msgstr ""
|
| 1687 |
|
| 1688 |
+
#: bbp-admin/bbp-replies.php:120
|
| 1689 |
msgid ""
|
| 1690 |
+
"<strong>Publish</strong> - The Publish box will allow you to save your reply "
|
| 1691 |
+
"as Draft or Pending Review. You may Preview your reply before it is "
|
| 1692 |
+
"published as well. The Visibility will determine whether the reply is "
|
| 1693 |
+
"Public, Password protected (requiring a password on the site to view) or "
|
| 1694 |
+
"Private (only the author will have access to it). Replies may be published "
|
| 1695 |
+
"immediately by clicking the dropdown, or at a specific date and time by "
|
| 1696 |
+
"clicking the Edit link."
|
| 1697 |
msgstr ""
|
| 1698 |
|
| 1699 |
+
#: bbp-admin/bbp-replies.php:121
|
|
|
|
| 1700 |
msgid ""
|
| 1701 |
+
"<strong>Revisions</strong> - Revisions show past versions of the saved "
|
| 1702 |
+
"reply. Each revision can be compared to the current version, or another "
|
| 1703 |
+
"revision. Revisions can also be restored to the current version."
|
| 1704 |
msgstr ""
|
| 1705 |
|
| 1706 |
+
#: bbp-admin/bbp-replies.php:141
|
| 1707 |
+
msgid "This screen displays the replies created on your site."
|
| 1708 |
msgstr ""
|
| 1709 |
|
| 1710 |
+
#: bbp-admin/bbp-replies.php:145
|
| 1711 |
+
msgid ""
|
| 1712 |
+
"You can hide/display columns based on your needs (Forum, Topic, Author, and "
|
| 1713 |
+
"Created) and decide how many replies to list per screen using the Screen "
|
| 1714 |
+
"Options tab."
|
| 1715 |
msgstr ""
|
| 1716 |
|
| 1717 |
+
#: bbp-admin/bbp-replies.php:146
|
| 1718 |
+
msgid ""
|
| 1719 |
+
"You can filter the list of replies by reply status using the text links in "
|
| 1720 |
+
"the upper left to show All, Published, Pending Review, Draft, or Trashed "
|
| 1721 |
+
"topics. The default view is to show all replies."
|
| 1722 |
msgstr ""
|
| 1723 |
|
| 1724 |
+
#: bbp-admin/bbp-replies.php:147
|
| 1725 |
msgid ""
|
| 1726 |
+
"You can view replies in a simple title list or with an excerpt. Choose the "
|
| 1727 |
+
"view you prefer by clicking on the icons at the top of the list on the right."
|
| 1728 |
msgstr ""
|
| 1729 |
|
| 1730 |
+
#: bbp-admin/bbp-replies.php:148
|
| 1731 |
msgid ""
|
| 1732 |
+
"You can refine the list to show only replies from a specific month by using "
|
| 1733 |
+
"the dropdown menus above the replies list. Click the Filter button after "
|
| 1734 |
+
"making your selection."
|
| 1735 |
msgstr ""
|
| 1736 |
|
| 1737 |
+
#: bbp-admin/bbp-replies.php:149
|
| 1738 |
msgid ""
|
| 1739 |
+
"You can also show only replies from a specific parent forum by using the "
|
| 1740 |
+
"parent forum dropdown above the replies list and selecting the parent forum. "
|
| 1741 |
+
"Click the Filter button after making your selection."
|
| 1742 |
msgstr ""
|
| 1743 |
|
| 1744 |
+
#: bbp-admin/bbp-replies.php:152
|
| 1745 |
msgid ""
|
| 1746 |
+
"Hovering over a row in the replies list will display action links that allow "
|
| 1747 |
+
"you to manage your reply. You can perform the following actions:"
|
| 1748 |
msgstr ""
|
| 1749 |
|
| 1750 |
+
#: bbp-admin/bbp-replies.php:155
|
| 1751 |
+
msgid ""
|
| 1752 |
+
"Edit takes you to the editing screen for that reply. You can also reach that "
|
| 1753 |
+
"screen by clicking on the reply title."
|
| 1754 |
msgstr ""
|
| 1755 |
|
| 1756 |
+
#: bbp-admin/bbp-replies.php:156
|
| 1757 |
msgid ""
|
| 1758 |
+
"Trash removes your reply from this list and places it in the trash, from "
|
| 1759 |
+
"which you can permanently delete it."
|
| 1760 |
msgstr ""
|
| 1761 |
|
| 1762 |
+
#: bbp-admin/bbp-replies.php:157
|
| 1763 |
+
msgid "View will take you to your live reply to view the reply."
|
| 1764 |
msgstr ""
|
| 1765 |
|
| 1766 |
+
#: bbp-admin/bbp-replies.php:158
|
| 1767 |
+
msgid ""
|
| 1768 |
+
"Spam will mark the topic as spam, preventing further replies to it and "
|
| 1769 |
+
"removing it from the site’s public view."
|
| 1770 |
msgstr ""
|
| 1771 |
|
| 1772 |
+
#: bbp-admin/bbp-replies.php:161
|
| 1773 |
+
msgid ""
|
| 1774 |
+
"You can also edit multiple replies at once. Select the replies you want to "
|
| 1775 |
+
"edit using the checkboxes, select Edit from the Bulk Actions menu and click "
|
| 1776 |
+
"Apply. You will be able to change the metadata for all selected replies at "
|
| 1777 |
+
"once. To remove a reply from the grouping, just click the x next to its name "
|
| 1778 |
+
"in the Bulk Edit area that appears."
|
| 1779 |
msgstr ""
|
| 1780 |
|
| 1781 |
+
#: bbp-admin/bbp-replies.php:162
|
| 1782 |
+
msgid ""
|
| 1783 |
+
"The Bulk Actions menu may also be used to delete multiple replies at once. "
|
| 1784 |
+
"Select Delete from the dropdown after making your selection."
|
| 1785 |
msgstr ""
|
| 1786 |
|
| 1787 |
+
#: bbp-admin/bbp-replies.php:190
|
| 1788 |
+
msgid "Reply Attributes"
|
| 1789 |
msgstr ""
|
| 1790 |
|
| 1791 |
+
#: bbp-admin/bbp-replies.php:425
|
| 1792 |
+
msgid "The reply was not found!"
|
| 1793 |
msgstr ""
|
| 1794 |
|
| 1795 |
+
#: bbp-admin/bbp-replies.php:489
|
| 1796 |
+
msgid "There was a problem marking the reply \"%1$s\" as spam."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1797 |
msgstr ""
|
| 1798 |
|
| 1799 |
+
#: bbp-admin/bbp-replies.php:489
|
| 1800 |
+
msgid "Reply \"%1$s\" successfully marked as spam."
|
|
|
|
|
|
|
| 1801 |
msgstr ""
|
| 1802 |
|
| 1803 |
+
#: bbp-admin/bbp-replies.php:493
|
| 1804 |
+
msgid "There was a problem unmarking the reply \"%1$s\" as spam."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1805 |
msgstr ""
|
| 1806 |
|
| 1807 |
+
#: bbp-admin/bbp-replies.php:493
|
| 1808 |
+
msgid "Reply \"%1$s\" successfully unmarked as spam."
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1809 |
msgstr ""
|
| 1810 |
|
| 1811 |
+
#: bbp-admin/bbp-replies.php:523
|
| 1812 |
+
msgid "Title"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1813 |
msgstr ""
|
| 1814 |
|
| 1815 |
+
#: bbp-admin/bbp-replies.php:577 bbp-admin/bbp-replies.php:584
|
| 1816 |
+
msgid "No Topic"
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1817 |
msgstr ""
|
| 1818 |
|
| 1819 |
+
#: bbp-admin/bbp-replies.php:606
|
| 1820 |
+
msgid "(Mismatch)"
|
|
|
|
|
|
|
|
|
|
| 1821 |
msgstr ""
|
| 1822 |
|
| 1823 |
+
#: bbp-admin/bbp-replies.php:685
|
| 1824 |
+
msgid "Mark the reply as not spam"
|
|
|
|
|
|
|
|
|
|
| 1825 |
msgstr ""
|
| 1826 |
|
| 1827 |
+
#: bbp-admin/bbp-replies.php:687
|
| 1828 |
+
msgid "Mark this reply as spam"
|
|
|
|
|
|
|
|
|
|
| 1829 |
msgstr ""
|
| 1830 |
|
| 1831 |
+
#: bbp-admin/bbp-replies.php:823
|
| 1832 |
+
msgid "Reply updated. <a href=\"%s\">View topic</a>"
|
|
|
|
|
|
|
|
|
|
| 1833 |
msgstr ""
|
| 1834 |
|
| 1835 |
+
#: bbp-admin/bbp-replies.php:832
|
| 1836 |
+
msgid "Reply updated."
|
| 1837 |
msgstr ""
|
| 1838 |
|
| 1839 |
+
#. translators: %s: date and time of the revision
|
| 1840 |
+
#: bbp-admin/bbp-replies.php:837
|
| 1841 |
+
msgid "Reply restored to revision from %s"
|
| 1842 |
msgstr ""
|
| 1843 |
|
| 1844 |
+
#: bbp-admin/bbp-replies.php:841
|
| 1845 |
+
msgid "Reply created. <a href=\"%s\">View topic</a>"
|
|
|
|
|
|
|
| 1846 |
msgstr ""
|
| 1847 |
|
| 1848 |
+
#: bbp-admin/bbp-replies.php:844
|
| 1849 |
+
msgid "Reply saved."
|
|
|
|
|
|
|
|
|
|
| 1850 |
msgstr ""
|
| 1851 |
|
| 1852 |
+
#: bbp-admin/bbp-replies.php:847
|
| 1853 |
+
msgid "Reply submitted. <a target=\"_blank\" href=\"%s\">Preview topic</a>"
|
|
|
|
|
|
|
| 1854 |
msgstr ""
|
| 1855 |
|
| 1856 |
+
#: bbp-admin/bbp-replies.php:850
|
| 1857 |
msgid ""
|
| 1858 |
+
"Reply scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
|
| 1859 |
+
"\">Preview topic</a>"
|
|
|
|
| 1860 |
msgstr ""
|
| 1861 |
|
| 1862 |
+
#: bbp-admin/bbp-replies.php:857
|
| 1863 |
+
msgid "Reply draft updated. <a target=\"_blank\" href=\"%s\">Preview topic</a>"
|
|
|
|
|
|
|
|
|
|
| 1864 |
msgstr ""
|
| 1865 |
|
| 1866 |
+
#: bbp-includes/bbp-common-template.php:1012
|
| 1867 |
+
msgid "No topics available"
|
|
|
|
| 1868 |
msgstr ""
|
| 1869 |
|
| 1870 |
+
#: bbp-includes/bbp-common-template.php:1017
|
| 1871 |
+
msgid "No forums available"
|
|
|
|
|
|
|
| 1872 |
msgstr ""
|
| 1873 |
|
| 1874 |
+
#: bbp-includes/bbp-common-template.php:1022
|
| 1875 |
+
msgid "None available"
|
|
|
|
|
|
|
| 1876 |
msgstr ""
|
| 1877 |
|
| 1878 |
+
#: bbp-includes/bbp-common-template.php:1442
|
| 1879 |
+
msgid "Home"
|
|
|
|
|
|
|
| 1880 |
msgstr ""
|
| 1881 |
|
| 1882 |
+
#: bbp-includes/bbp-common-template.php:1504
|
| 1883 |
+
#: bbp-themes/bbp-twentyten/bbpress/user-details.php:18
|
| 1884 |
+
msgid "(Edit)"
|
| 1885 |
msgstr ""
|
| 1886 |
|
| 1887 |
+
#: bbp-includes/bbp-common-template.php:1508
|
| 1888 |
+
#: bbp-includes/bbp-common-template.php:1606
|
| 1889 |
+
#: bbp-includes/bbp-common-template.php:1818
|
| 1890 |
+
#: bbp-includes/bbp-core-compatibility.php:912
|
| 1891 |
+
#: bbp-includes/bbp-core-compatibility.php:922
|
| 1892 |
+
#: bbp-themes/bbp-twentyten/taxonomy-topic-tag.php:20
|
| 1893 |
+
#: bbp-themes/bbp-twentyten/taxonomy-topic-tag-edit.php:20
|
| 1894 |
+
msgid "Topic Tag: %s"
|
| 1895 |
msgstr ""
|
| 1896 |
|
| 1897 |
+
#: bbp-includes/bbp-common-template.php:1512
|
| 1898 |
+
#: bbp-includes/bbp-reply-template.php:1419
|
| 1899 |
+
#: bbp-includes/bbp-topic-template.php:2061 bbpress.php:566 bbpress.php:623
|
| 1900 |
+
#: bbpress.php:680
|
| 1901 |
+
msgid "Edit"
|
| 1902 |
msgstr ""
|
| 1903 |
|
| 1904 |
+
#: bbp-includes/bbp-common-template.php:1527
|
| 1905 |
+
msgid "‹"
|
|
|
|
|
|
|
| 1906 |
msgstr ""
|
| 1907 |
|
| 1908 |
+
#: bbp-includes/bbp-common-template.php:1527
|
| 1909 |
+
msgid "›"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1910 |
msgstr ""
|
| 1911 |
|
| 1912 |
+
#: bbp-includes/bbp-common-template.php:1752
|
| 1913 |
+
msgid "Log Out"
|
|
|
|
|
|
|
| 1914 |
msgstr ""
|
| 1915 |
|
| 1916 |
+
#: bbp-includes/bbp-common-template.php:1805
|
| 1917 |
+
msgid "Forum: %s"
|
|
|
|
|
|
|
|
|
|
| 1918 |
msgstr ""
|
| 1919 |
|
| 1920 |
+
#: bbp-includes/bbp-common-template.php:1809
|
| 1921 |
+
msgid "Topic: %s"
|
|
|
|
|
|
|
|
|
|
| 1922 |
msgstr ""
|
| 1923 |
|
| 1924 |
+
#: bbp-includes/bbp-common-template.php:1827
|
| 1925 |
+
msgid "Your Profile"
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1926 |
msgstr ""
|
| 1927 |
|
| 1928 |
+
#: bbp-includes/bbp-common-template.php:1832
|
| 1929 |
+
msgid "%s's Profile"
|
|
|
|
|
|
|
| 1930 |
msgstr ""
|
| 1931 |
|
| 1932 |
+
#: bbp-includes/bbp-common-template.php:1840
|
| 1933 |
+
msgid "Edit Your Profile"
|
| 1934 |
msgstr ""
|
| 1935 |
|
| 1936 |
+
#: bbp-includes/bbp-common-template.php:1845
|
| 1937 |
+
msgid "Edit %s's Profile"
|
|
|
|
|
|
|
| 1938 |
msgstr ""
|
| 1939 |
|
| 1940 |
+
#: bbp-includes/bbp-common-template.php:1852
|
| 1941 |
+
msgid "View: %s"
|
|
|
|
|
|
|
| 1942 |
msgstr ""
|
| 1943 |
|
| 1944 |
+
#: bbp-includes/bbp-user-template.php:151
|
| 1945 |
+
msgid "Anonymous"
|
| 1946 |
msgstr ""
|
| 1947 |
|
| 1948 |
+
#: bbp-includes/bbp-user-template.php:413
|
| 1949 |
+
msgid "Admin"
|
| 1950 |
+
msgstr ""
|
| 1951 |
+
|
| 1952 |
+
#: bbp-includes/bbp-user-template.php:546
|
| 1953 |
+
#: bbp-themes/bbp-twentyten/functions.php:164
|
| 1954 |
+
msgid "Add this topic to your favorites"
|
| 1955 |
+
msgstr ""
|
| 1956 |
+
|
| 1957 |
+
#: bbp-includes/bbp-user-template.php:547
|
| 1958 |
+
msgid " (%?%)"
|
| 1959 |
+
msgstr ""
|
| 1960 |
+
|
| 1961 |
+
#: bbp-includes/bbp-user-template.php:553
|
| 1962 |
+
msgid "This topic is one of your %favorites% ["
|
| 1963 |
+
msgstr ""
|
| 1964 |
+
|
| 1965 |
+
#: bbp-includes/bbp-user-template.php:554
|
| 1966 |
+
#: bbp-themes/bbp-twentyten/functions.php:163
|
| 1967 |
+
msgid "×"
|
| 1968 |
+
msgstr ""
|
| 1969 |
+
|
| 1970 |
+
#: bbp-includes/bbp-user-template.php:555
|
| 1971 |
+
msgid "]"
|
| 1972 |
+
msgstr ""
|
| 1973 |
+
|
| 1974 |
+
#: bbp-includes/bbp-user-template.php:659
|
| 1975 |
+
#: bbp-themes/bbp-twentyten/functions.php:173
|
| 1976 |
+
msgid "Subscribe"
|
| 1977 |
+
msgstr ""
|
| 1978 |
+
|
| 1979 |
+
#: bbp-includes/bbp-user-template.php:660
|
| 1980 |
+
#: bbp-themes/bbp-twentyten/functions.php:174
|
| 1981 |
+
msgid "Unsubscribe"
|
| 1982 |
+
msgstr ""
|
| 1983 |
+
|
| 1984 |
+
#: bbp-includes/bbp-user-template.php:722
|
| 1985 |
+
msgid "User updated."
|
| 1986 |
+
msgstr ""
|
| 1987 |
+
|
| 1988 |
+
#: bbp-includes/bbp-user-template.php:746
|
| 1989 |
+
msgid "You have super admin privileges."
|
| 1990 |
+
msgstr ""
|
| 1991 |
+
|
| 1992 |
+
#: bbp-includes/bbp-user-template.php:746
|
| 1993 |
+
msgid "This user has super admin privileges."
|
| 1994 |
+
msgstr ""
|
| 1995 |
+
|
| 1996 |
+
#: bbp-includes/bbp-user-template.php:813
|
| 1997 |
+
msgid "— No role for this site —"
|
| 1998 |
+
msgstr ""
|
| 1999 |
+
|
| 2000 |
+
#: bbp-includes/bbp-user-template.php:862
|
| 2001 |
+
msgid "You are now logged out."
|
| 2002 |
+
msgstr ""
|
| 2003 |
+
|
| 2004 |
+
#: bbp-includes/bbp-user-template.php:866
|
| 2005 |
+
msgid "New user registration is currently not allowed."
|
| 2006 |
+
msgstr ""
|
| 2007 |
+
|
| 2008 |
+
#: bbp-includes/bbp-user-template.php:875
|
| 2009 |
+
msgid "Check your e-mail for the confirmation link."
|
| 2010 |
+
msgstr ""
|
| 2011 |
+
|
| 2012 |
+
#: bbp-includes/bbp-user-template.php:880
|
| 2013 |
+
msgid "Check your e-mail for your new password."
|
| 2014 |
+
msgstr ""
|
| 2015 |
+
|
| 2016 |
+
#: bbp-includes/bbp-user-template.php:885
|
| 2017 |
+
msgid "Registration complete. Please check your e-mail."
|
| 2018 |
+
msgstr ""
|
| 2019 |
+
|
| 2020 |
+
#: bbp-includes/bbp-user-template.php:1056
|
| 2021 |
+
#: bbp-includes/bbp-reply-template.php:959
|
| 2022 |
+
#: bbp-includes/bbp-topic-template.php:1217
|
| 2023 |
+
msgid "View %s's profile"
|
| 2024 |
+
msgstr ""
|
| 2025 |
+
|
| 2026 |
+
#: bbp-includes/bbp-user-template.php:1056
|
| 2027 |
+
#: bbp-includes/bbp-reply-template.php:959
|
| 2028 |
+
#: bbp-includes/bbp-topic-template.php:1217
|
| 2029 |
+
msgid "Visit %s's website"
|
| 2030 |
+
msgstr ""
|
| 2031 |
+
|
| 2032 |
+
#: bbp-includes/bbp-extend-buddypress.php:219
|
| 2033 |
+
msgid "New topic created"
|
| 2034 |
msgstr ""
|
| 2035 |
|
| 2036 |
+
#: bbp-includes/bbp-extend-buddypress.php:222
|
| 2037 |
+
msgid "New reply created"
|
| 2038 |
msgstr ""
|
| 2039 |
|
| 2040 |
+
#: bbp-includes/bbp-extend-buddypress.php:449
|
| 2041 |
+
msgid "%1$s started the topic %2$s in the forum %3$s"
|
| 2042 |
msgstr ""
|
| 2043 |
|
| 2044 |
+
#: bbp-includes/bbp-extend-buddypress.php:538
|
| 2045 |
+
msgid "%1$s replied to the topic %2$s in the forum %3$s"
|
| 2046 |
msgstr ""
|
| 2047 |
|
| 2048 |
+
#: bbp-includes/bbp-core-compatibility.php:237
|
| 2049 |
+
msgid "Hands off, partner!"
|
| 2050 |
msgstr ""
|
| 2051 |
|
| 2052 |
+
#: bbp-includes/bbp-core-compatibility.php:1256
|
| 2053 |
+
msgid ""
|
| 2054 |
+
"Conditional query tags do not work before the query is run. Before then, "
|
| 2055 |
+
"they always return false."
|
| 2056 |
msgstr ""
|
| 2057 |
|
| 2058 |
+
#: bbp-includes/bbp-core-compatibility.php:1491
|
| 2059 |
+
msgid "You do not have the permission to edit this user."
|
| 2060 |
msgstr ""
|
| 2061 |
|
| 2062 |
+
#: bbp-includes/bbp-reply-functions.php:145
|
| 2063 |
+
msgid "<strong>ERROR</strong>: You do not have permission to reply."
|
| 2064 |
msgstr ""
|
| 2065 |
|
| 2066 |
+
#: bbp-includes/bbp-reply-functions.php:157
|
| 2067 |
+
msgid "<strong>ERROR</strong>: Topic ID is missing."
|
| 2068 |
msgstr ""
|
| 2069 |
|
| 2070 |
+
#: bbp-includes/bbp-reply-functions.php:163
|
| 2071 |
+
#: bbp-includes/bbp-topic-functions.php:197
|
| 2072 |
+
#: bbp-includes/bbp-topic-functions.php:463
|
| 2073 |
+
msgid "<strong>ERROR</strong>: Forum ID is missing."
|
| 2074 |
msgstr ""
|
| 2075 |
|
| 2076 |
+
#: bbp-includes/bbp-reply-functions.php:183
|
| 2077 |
+
msgid "<strong>ERROR</strong>: Your reply needs a title."
|
| 2078 |
msgstr ""
|
| 2079 |
|
| 2080 |
+
#: bbp-includes/bbp-reply-functions.php:195
|
| 2081 |
+
#: bbp-includes/bbp-reply-functions.php:453
|
| 2082 |
+
msgid "<strong>ERROR</strong>: Your reply cannot be empty."
|
| 2083 |
msgstr ""
|
| 2084 |
|
| 2085 |
+
#: bbp-includes/bbp-reply-functions.php:200
|
| 2086 |
+
#: bbp-includes/bbp-topic-functions.php:226
|
| 2087 |
+
msgid "<strong>ERROR</strong>: Slow down; you move too fast."
|
| 2088 |
msgstr ""
|
| 2089 |
|
| 2090 |
+
#: bbp-includes/bbp-reply-functions.php:205
|
| 2091 |
+
msgid ""
|
| 2092 |
+
"<strong>ERROR</strong>: Duplicate reply detected; it looks as though "
|
| 2093 |
+
"you’ve already said that!"
|
| 2094 |
msgstr ""
|
| 2095 |
|
| 2096 |
+
#: bbp-includes/bbp-reply-functions.php:210
|
| 2097 |
+
msgid "<strong>ERROR</strong>: Your reply cannot be created at this time."
|
| 2098 |
msgstr ""
|
| 2099 |
|
| 2100 |
+
#: bbp-includes/bbp-reply-functions.php:259
|
| 2101 |
+
#: bbp-includes/bbp-reply-functions.php:497
|
| 2102 |
+
msgid ""
|
| 2103 |
+
"<strong>ERROR</strong>: There was a problem adding the tags to the topic."
|
| 2104 |
msgstr ""
|
| 2105 |
|
| 2106 |
+
#: bbp-includes/bbp-reply-functions.php:367
|
| 2107 |
+
msgid "<strong>ERROR</strong>: Reply ID not found."
|
|
|
|
| 2108 |
msgstr ""
|
| 2109 |
|
| 2110 |
+
#: bbp-includes/bbp-reply-functions.php:377
|
| 2111 |
+
msgid "<strong>ERROR</strong>: The reply you want to edit was not found."
|
|
|
|
| 2112 |
msgstr ""
|
| 2113 |
|
| 2114 |
+
#: bbp-includes/bbp-reply-functions.php:390
|
| 2115 |
+
msgid "<strong>ERROR</strong>: You do not have permission to edit that reply."
|
| 2116 |
msgstr ""
|
| 2117 |
|
| 2118 |
+
#: bbp-includes/bbp-reply-functions.php:420
|
| 2119 |
+
msgid ""
|
| 2120 |
+
"<strong>ERROR</strong>: This forum is a category. No topics or replies can "
|
| 2121 |
+
"be created in it."
|
| 2122 |
msgstr ""
|
| 2123 |
|
| 2124 |
+
#: bbp-includes/bbp-reply-functions.php:424
|
| 2125 |
+
msgid ""
|
| 2126 |
+
"<strong>ERROR</strong>: This forum has been closed to new topics and replies."
|
| 2127 |
msgstr ""
|
| 2128 |
|
| 2129 |
+
#: bbp-includes/bbp-reply-functions.php:428
|
| 2130 |
+
msgid ""
|
| 2131 |
+
"<strong>ERROR</strong>: This forum is private and you do not have the "
|
| 2132 |
+
"capability to read or create new replies in it."
|
| 2133 |
msgstr ""
|
| 2134 |
|
| 2135 |
+
#: bbp-includes/bbp-reply-functions.php:432
|
| 2136 |
+
msgid ""
|
| 2137 |
+
"<strong>ERROR</strong>: This forum is hidden and you do not have the "
|
| 2138 |
+
"capability to read or create new replies in it."
|
| 2139 |
msgstr ""
|
| 2140 |
|
| 2141 |
+
#: bbp-includes/bbp-reply-functions.php:458
|
| 2142 |
+
msgid "<strong>ERROR</strong>: Your reply cannot be edited at this time."
|
| 2143 |
msgstr ""
|
| 2144 |
|
| 2145 |
+
#: bbp-includes/bbp-reply-functions.php:967
|
| 2146 |
+
msgid "<strong>ERROR:</strong> You do not have the permission to do that!"
|
| 2147 |
msgstr ""
|
| 2148 |
|
| 2149 |
+
#: bbp-includes/bbp-reply-functions.php:980
|
| 2150 |
+
msgid ""
|
| 2151 |
+
"<strong>ERROR</strong>: There was a problem unmarking the reply as spam!"
|
| 2152 |
msgstr ""
|
| 2153 |
|
| 2154 |
+
#: bbp-includes/bbp-reply-functions.php:980
|
| 2155 |
+
msgid "<strong>ERROR</strong>: There was a problem marking the reply as spam!"
|
| 2156 |
msgstr ""
|
| 2157 |
|
| 2158 |
+
#: bbp-includes/bbp-reply-functions.php:999
|
| 2159 |
+
msgid "<strong>ERROR</strong>: There was a problem trashing the reply!"
|
| 2160 |
msgstr ""
|
| 2161 |
|
| 2162 |
+
#: bbp-includes/bbp-reply-functions.php:1007
|
| 2163 |
+
msgid "<strong>ERROR</strong>: There was a problem untrashing the reply!"
|
| 2164 |
msgstr ""
|
| 2165 |
|
| 2166 |
+
#: bbp-includes/bbp-reply-functions.php:1015
|
| 2167 |
+
msgid "<strong>ERROR</strong>: There was a problem deleting the reply!"
|
| 2168 |
msgstr ""
|
| 2169 |
|
| 2170 |
+
#: bbp-includes/bbp-reply-functions.php:1292
|
| 2171 |
+
msgid "All Posts"
|
| 2172 |
msgstr ""
|
| 2173 |
|
| 2174 |
+
#: bbp-includes/bbp-reply-functions.php:1294 bbpress.php:677
|
| 2175 |
+
msgid "All Replies"
|
| 2176 |
msgstr ""
|
| 2177 |
|
| 2178 |
+
#: bbp-includes/bbp-reply-functions.php:1334
|
| 2179 |
+
#: bbp-includes/bbp-topic-functions.php:2859
|
| 2180 |
+
msgid "Replies: %s"
|
| 2181 |
msgstr ""
|
| 2182 |
|
| 2183 |
+
#: bbp-includes/bbp-reply-template.php:1534
|
| 2184 |
+
#: bbp-includes/bbp-topic-template.php:2176
|
| 2185 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:89
|
| 2186 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:102
|
| 2187 |
+
msgid "Delete"
|
| 2188 |
msgstr ""
|
| 2189 |
|
| 2190 |
+
#: bbp-includes/bbp-reply-template.php:1554
|
| 2191 |
+
#: bbp-includes/bbp-topic-template.php:2195
|
| 2192 |
+
msgid "Are you sure you want to delete that permanently?"
|
| 2193 |
msgstr ""
|
| 2194 |
|
| 2195 |
+
#: bbp-includes/bbp-reply-template.php:1605
|
| 2196 |
+
#: bbp-includes/bbp-topic-template.php:2433
|
| 2197 |
+
msgid "Unspam"
|
| 2198 |
msgstr ""
|
| 2199 |
|
| 2200 |
+
#: bbp-includes/bbp-reply-template.php:1669
|
| 2201 |
+
msgid "Split"
|
|
|
|
| 2202 |
msgstr ""
|
| 2203 |
|
| 2204 |
+
#: bbp-includes/bbp-reply-template.php:1670
|
| 2205 |
+
msgid "Split the topic from this reply"
|
| 2206 |
msgstr ""
|
| 2207 |
|
| 2208 |
+
#: bbp-includes/bbp-reply-template.php:1767
|
| 2209 |
+
msgid "Viewing reply %1$s (of %2$s total)"
|
|
|
|
| 2210 |
msgstr ""
|
| 2211 |
|
| 2212 |
+
#: bbp-includes/bbp-reply-template.php:1771
|
| 2213 |
+
msgid "Viewing %1$s replies"
|
| 2214 |
msgstr ""
|
| 2215 |
|
| 2216 |
+
#: bbp-includes/bbp-reply-template.php:1775
|
| 2217 |
+
msgid "Viewing %1$s replies - %2$s through %3$s (of %4$s total)"
|
| 2218 |
msgstr ""
|
| 2219 |
|
| 2220 |
+
#: bbp-includes/bbp-reply-template.php:1780
|
| 2221 |
+
msgid "Viewing %1$s reply"
|
| 2222 |
msgstr ""
|
| 2223 |
|
| 2224 |
+
#: bbp-includes/bbp-reply-template.php:1791
|
| 2225 |
+
msgid "Viewing post %1$s (of %2$s total)"
|
|
|
|
|
|
|
| 2226 |
msgstr ""
|
| 2227 |
|
| 2228 |
+
#: bbp-includes/bbp-reply-template.php:1795
|
| 2229 |
+
msgid "Viewing %1$s posts"
|
|
|
|
|
|
|
| 2230 |
msgstr ""
|
| 2231 |
|
| 2232 |
+
#: bbp-includes/bbp-reply-template.php:1799
|
| 2233 |
+
msgid "Viewing %1$s posts - %2$s through %3$s (of %4$s total)"
|
| 2234 |
msgstr ""
|
| 2235 |
|
| 2236 |
+
#: bbp-includes/bbp-reply-template.php:1804
|
| 2237 |
+
msgid "Viewing %1$s post"
|
| 2238 |
msgstr ""
|
| 2239 |
|
| 2240 |
+
#: bbp-includes/bbp-forum-template.php:1084
|
| 2241 |
+
msgid "%s topic"
|
| 2242 |
+
msgid_plural "%s topics"
|
| 2243 |
+
msgstr[0] ""
|
| 2244 |
+
msgstr[1] ""
|
| 2245 |
|
| 2246 |
+
#: bbp-includes/bbp-forum-template.php:1097
|
| 2247 |
+
#: bbp-includes/bbp-topic-template.php:1701
|
| 2248 |
+
msgid " (+ %d hidden)"
|
| 2249 |
msgstr ""
|
| 2250 |
|
| 2251 |
+
#: bbp-includes/bbp-forum-template.php:1678
|
| 2252 |
+
#: bbp-includes/bbp-topic-template.php:1688
|
| 2253 |
+
msgid "%s reply"
|
| 2254 |
+
msgid_plural "%s replies"
|
| 2255 |
+
msgstr[0] ""
|
| 2256 |
+
msgstr[1] ""
|
| 2257 |
+
|
| 2258 |
+
#: bbp-includes/bbp-forum-template.php:1688
|
| 2259 |
+
msgid ""
|
| 2260 |
+
"This category contains %1$s and %2$s, and was last updated by %3$s %4$s ago."
|
| 2261 |
msgstr ""
|
| 2262 |
|
| 2263 |
+
#: bbp-includes/bbp-forum-template.php:1692
|
| 2264 |
+
msgid ""
|
| 2265 |
+
"This forum contains %1$s and %2$s, and was last updated by %3$s %4$s ago."
|
| 2266 |
msgstr ""
|
| 2267 |
|
| 2268 |
+
#: bbp-includes/bbp-forum-template.php:1699
|
| 2269 |
+
msgid "This category contains %1$s and %2$s."
|
| 2270 |
msgstr ""
|
| 2271 |
|
| 2272 |
+
#: bbp-includes/bbp-forum-template.php:1703
|
| 2273 |
+
msgid "This forum contains %1$s and %2$s."
|
| 2274 |
msgstr ""
|
| 2275 |
|
| 2276 |
+
#: bbp-includes/bbp-core-widgets.php:50
|
| 2277 |
+
msgid "The login widget."
|
| 2278 |
msgstr ""
|
| 2279 |
|
| 2280 |
+
#: bbp-includes/bbp-core-widgets.php:53
|
| 2281 |
+
msgid "bbPress Login Widget"
|
| 2282 |
msgstr ""
|
| 2283 |
|
| 2284 |
+
#: bbp-includes/bbp-core-widgets.php:82 bbp-includes/bbp-core-widgets.php:103
|
| 2285 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-login.php:14
|
| 2286 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-login.php:35
|
| 2287 |
+
msgid "Log In"
|
| 2288 |
msgstr ""
|
| 2289 |
|
| 2290 |
+
#: bbp-includes/bbp-core-widgets.php:85
|
| 2291 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-login.php:17
|
| 2292 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:99
|
| 2293 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-register.php:23
|
| 2294 |
+
msgid "Username"
|
|
|
|
|
|
|
| 2295 |
msgstr ""
|
| 2296 |
|
| 2297 |
+
#: bbp-includes/bbp-core-widgets.php:90
|
| 2298 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-login.php:22
|
| 2299 |
+
msgid "Password"
|
|
|
|
|
|
|
|
|
|
| 2300 |
msgstr ""
|
| 2301 |
|
| 2302 |
+
#: bbp-includes/bbp-core-widgets.php:96
|
| 2303 |
+
msgid "Remember Me"
|
| 2304 |
msgstr ""
|
| 2305 |
|
| 2306 |
+
#: bbp-includes/bbp-core-widgets.php:115
|
| 2307 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-register.php:36
|
| 2308 |
+
msgid "Register"
|
| 2309 |
msgstr ""
|
| 2310 |
|
| 2311 |
+
#: bbp-includes/bbp-core-widgets.php:121
|
| 2312 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-lost-pass.php:14
|
| 2313 |
+
msgid "Lost Password"
|
| 2314 |
msgstr ""
|
| 2315 |
|
| 2316 |
+
#: bbp-includes/bbp-core-widgets.php:182 bbp-includes/bbp-core-widgets.php:308
|
| 2317 |
+
#: bbp-includes/bbp-core-widgets.php:450 bbp-includes/bbp-core-widgets.php:652
|
| 2318 |
+
#: bbp-includes/bbp-core-widgets.php:811
|
| 2319 |
+
msgid "Title:"
|
| 2320 |
msgstr ""
|
| 2321 |
|
| 2322 |
+
#: bbp-includes/bbp-core-widgets.php:187
|
| 2323 |
+
msgid "Register URI:"
|
| 2324 |
msgstr ""
|
| 2325 |
|
| 2326 |
+
#: bbp-includes/bbp-core-widgets.php:192
|
| 2327 |
+
msgid "Lost Password URI:"
|
| 2328 |
msgstr ""
|
| 2329 |
|
| 2330 |
+
#: bbp-includes/bbp-core-widgets.php:235
|
| 2331 |
+
msgid "A list of views."
|
| 2332 |
msgstr ""
|
| 2333 |
|
| 2334 |
+
#: bbp-includes/bbp-core-widgets.php:238
|
| 2335 |
+
msgid "bbPress View List"
|
| 2336 |
msgstr ""
|
| 2337 |
|
| 2338 |
+
#: bbp-includes/bbp-core-widgets.php:352
|
| 2339 |
+
msgid "A list of forums."
|
| 2340 |
msgstr ""
|
| 2341 |
|
| 2342 |
+
#: bbp-includes/bbp-core-widgets.php:355
|
| 2343 |
+
msgid "bbPress Forum List"
|
| 2344 |
msgstr ""
|
| 2345 |
|
| 2346 |
+
#: bbp-includes/bbp-core-widgets.php:456
|
| 2347 |
+
msgid "Parent Forum ID:"
|
| 2348 |
msgstr ""
|
| 2349 |
|
| 2350 |
+
#: bbp-includes/bbp-core-widgets.php:462
|
| 2351 |
+
msgid "\"0\" to show only root - \"any\" to show all"
|
| 2352 |
msgstr ""
|
| 2353 |
|
| 2354 |
+
#: bbp-includes/bbp-core-widgets.php:504
|
| 2355 |
+
msgid "A list of recent topics, sorted by popularity or freshness."
|
| 2356 |
msgstr ""
|
| 2357 |
|
| 2358 |
+
#: bbp-includes/bbp-core-widgets.php:507
|
| 2359 |
+
msgid "bbPress Topics List"
|
| 2360 |
msgstr ""
|
| 2361 |
|
| 2362 |
+
#: bbp-includes/bbp-core-widgets.php:653
|
| 2363 |
+
msgid "Maximum topics to show:"
|
| 2364 |
msgstr ""
|
| 2365 |
|
| 2366 |
+
#: bbp-includes/bbp-core-widgets.php:654 bbp-includes/bbp-core-widgets.php:813
|
| 2367 |
+
msgid "Show post date:"
|
| 2368 |
msgstr ""
|
| 2369 |
|
| 2370 |
+
#: bbp-includes/bbp-core-widgets.php:656
|
| 2371 |
+
msgid "Popularity check:"
|
| 2372 |
msgstr ""
|
| 2373 |
|
| 2374 |
+
#: bbp-includes/bbp-core-widgets.php:657
|
| 2375 |
+
msgid ""
|
| 2376 |
+
"Number of topics back to check reply count to determine popularity. A number "
|
| 2377 |
+
"less than the maximum number of topics to show disables the check."
|
| 2378 |
msgstr ""
|
| 2379 |
|
| 2380 |
+
#: bbp-includes/bbp-core-widgets.php:699
|
| 2381 |
+
msgid "A list of bbPress recent replies."
|
|
|
|
| 2382 |
msgstr ""
|
| 2383 |
|
| 2384 |
+
#: bbp-includes/bbp-core-widgets.php:812
|
| 2385 |
+
msgid "Maximum replies to show:"
|
| 2386 |
msgstr ""
|
| 2387 |
|
| 2388 |
+
#: bbp-includes/bbp-common-functions.php:495
|
| 2389 |
+
#: bbp-includes/bbp-common-functions.php:527
|
| 2390 |
+
msgid "Private: %s"
|
| 2391 |
msgstr ""
|
| 2392 |
|
| 2393 |
+
#: bbp-includes/bbp-common-functions.php:496
|
| 2394 |
+
#: bbp-includes/bbp-common-functions.php:528
|
| 2395 |
+
msgid "Spammed: %s"
|
| 2396 |
msgstr ""
|
| 2397 |
|
| 2398 |
+
#: bbp-includes/bbp-common-functions.php:497
|
| 2399 |
+
#: bbp-includes/bbp-common-functions.php:529
|
| 2400 |
+
msgid "Trashed: %s"
|
|
|
|
| 2401 |
msgstr ""
|
| 2402 |
|
| 2403 |
+
#: bbp-includes/bbp-common-functions.php:730
|
| 2404 |
+
msgid "<strong>ERROR</strong>: Invalid author name submitted!"
|
|
|
|
|
|
|
| 2405 |
msgstr ""
|
| 2406 |
|
| 2407 |
+
#: bbp-includes/bbp-common-functions.php:733
|
| 2408 |
+
msgid "<strong>ERROR</strong>: Invalid email address submitted!"
|
| 2409 |
msgstr ""
|
| 2410 |
|
| 2411 |
+
#: bbp-includes/bbp-common-functions.php:1011
|
| 2412 |
+
msgid ""
|
| 2413 |
+
"%1$s wrote:\n"
|
| 2414 |
+
"\n"
|
| 2415 |
+
"%2$s\n"
|
| 2416 |
+
"\n"
|
| 2417 |
+
"Post Link: %3$s\n"
|
| 2418 |
+
"\n"
|
| 2419 |
+
"You're getting this mail because you subscribed to the topic, visit the "
|
| 2420 |
+
"topic and login to unsubscribe."
|
| 2421 |
msgstr ""
|
| 2422 |
|
| 2423 |
+
#: bbp-includes/bbp-topic-functions.php:155
|
| 2424 |
+
msgid ""
|
| 2425 |
+
"<strong>ERROR</strong>: You do not have permission to create new topics."
|
| 2426 |
msgstr ""
|
| 2427 |
|
| 2428 |
+
#: bbp-includes/bbp-topic-functions.php:179
|
| 2429 |
+
#: bbp-includes/bbp-topic-functions.php:503
|
| 2430 |
+
msgid "<strong>ERROR</strong>: Your topic needs a title."
|
| 2431 |
msgstr ""
|
| 2432 |
|
| 2433 |
+
#: bbp-includes/bbp-topic-functions.php:191
|
| 2434 |
+
#: bbp-includes/bbp-topic-functions.php:515
|
| 2435 |
+
msgid "<strong>ERROR</strong>: Your topic cannot be empty."
|
|
|
|
|
|
|
| 2436 |
msgstr ""
|
| 2437 |
|
| 2438 |
+
#: bbp-includes/bbp-topic-functions.php:208
|
| 2439 |
msgid ""
|
| 2440 |
+
"<strong>ERROR</strong>: This forum is a category. No topics can be created "
|
| 2441 |
+
"in this forum."
|
|
|
|
| 2442 |
msgstr ""
|
| 2443 |
|
| 2444 |
+
#: bbp-includes/bbp-topic-functions.php:212
|
| 2445 |
+
#: bbp-includes/bbp-topic-functions.php:482
|
| 2446 |
+
msgid "<strong>ERROR</strong>: This forum has been closed to new topics."
|
|
|
|
| 2447 |
msgstr ""
|
| 2448 |
|
| 2449 |
+
#: bbp-includes/bbp-topic-functions.php:216
|
| 2450 |
+
#: bbp-includes/bbp-topic-functions.php:486
|
| 2451 |
msgid ""
|
| 2452 |
+
"<strong>ERROR</strong>: This forum is private and you do not have the "
|
| 2453 |
+
"capability to read or create new topics in it."
|
| 2454 |
msgstr ""
|
| 2455 |
|
| 2456 |
+
#: bbp-includes/bbp-topic-functions.php:220
|
| 2457 |
+
#: bbp-includes/bbp-topic-functions.php:490
|
| 2458 |
msgid ""
|
| 2459 |
+
"<strong>ERROR</strong>: This forum is hidden and you do not have the "
|
| 2460 |
+
"capability to read or create new topics in it."
|
|
|
|
| 2461 |
msgstr ""
|
| 2462 |
|
| 2463 |
+
#: bbp-includes/bbp-topic-functions.php:231
|
| 2464 |
msgid ""
|
| 2465 |
+
"<strong>ERROR</strong>: Duplicate topic detected; it looks as though "
|
| 2466 |
+
"you’ve already said that!"
|
|
|
|
|
|
|
| 2467 |
msgstr ""
|
| 2468 |
|
| 2469 |
+
#: bbp-includes/bbp-topic-functions.php:236
|
| 2470 |
+
msgid "<strong>ERROR</strong>: Your topic cannot be created at this time."
|
|
|
|
|
|
|
|
|
|
| 2471 |
msgstr ""
|
| 2472 |
|
| 2473 |
+
#: bbp-includes/bbp-topic-functions.php:419
|
| 2474 |
+
#: bbp-includes/bbp-topic-functions.php:950
|
| 2475 |
+
msgid "<strong>ERROR</strong>: Topic ID not found."
|
|
|
|
| 2476 |
msgstr ""
|
| 2477 |
|
| 2478 |
+
#: bbp-includes/bbp-topic-functions.php:429
|
| 2479 |
+
msgid "<strong>ERROR</strong>: The topic you want to edit was not found."
|
| 2480 |
msgstr ""
|
| 2481 |
|
| 2482 |
+
#: bbp-includes/bbp-topic-functions.php:442
|
| 2483 |
+
msgid "<strong>ERROR</strong>: You do not have permission to edit that topic."
|
| 2484 |
msgstr ""
|
| 2485 |
|
| 2486 |
+
#: bbp-includes/bbp-topic-functions.php:478
|
| 2487 |
+
msgid ""
|
| 2488 |
+
"<strong>ERROR</strong>: This forum is a category. No topics can be created "
|
| 2489 |
+
"in it."
|
| 2490 |
msgstr ""
|
| 2491 |
|
| 2492 |
+
#: bbp-includes/bbp-topic-functions.php:520
|
| 2493 |
+
msgid "<strong>ERROR</strong>: Your topic cannot be edited at this time."
|
| 2494 |
msgstr ""
|
| 2495 |
|
| 2496 |
+
#: bbp-includes/bbp-topic-functions.php:959
|
| 2497 |
+
msgid "<strong>ERROR</strong>: The topic you want to merge was not found."
|
| 2498 |
msgstr ""
|
| 2499 |
|
| 2500 |
+
#: bbp-includes/bbp-topic-functions.php:963
|
| 2501 |
+
#: bbp-includes/bbp-topic-functions.php:1249
|
| 2502 |
+
msgid ""
|
| 2503 |
+
"<strong>ERROR</strong>: You do not have the permissions to edit the source "
|
| 2504 |
+
"topic."
|
| 2505 |
msgstr ""
|
| 2506 |
|
| 2507 |
+
#: bbp-includes/bbp-topic-functions.php:969
|
| 2508 |
+
msgid "<strong>ERROR</strong>: Destination topic ID not found."
|
| 2509 |
msgstr ""
|
| 2510 |
|
| 2511 |
+
#: bbp-includes/bbp-topic-functions.php:975
|
| 2512 |
+
msgid "<strong>ERROR</strong>: The topic you want to merge to was not found."
|
| 2513 |
msgstr ""
|
| 2514 |
|
| 2515 |
+
#: bbp-includes/bbp-topic-functions.php:979
|
| 2516 |
+
msgid ""
|
| 2517 |
+
"<strong>ERROR</strong>: You do not have the permissions to edit the "
|
| 2518 |
+
"destination topic."
|
| 2519 |
msgstr ""
|
| 2520 |
|
| 2521 |
+
#: bbp-includes/bbp-topic-functions.php:1225
|
| 2522 |
+
msgid "<strong>ERROR</strong>: Reply ID to split the topic from not found!"
|
| 2523 |
msgstr ""
|
| 2524 |
|
| 2525 |
+
#: bbp-includes/bbp-topic-functions.php:1233
|
| 2526 |
+
msgid "<strong>ERROR</strong>: The reply you want to split from was not found."
|
| 2527 |
msgstr ""
|
| 2528 |
|
| 2529 |
+
#: bbp-includes/bbp-topic-functions.php:1242
|
| 2530 |
+
msgid "<strong>ERROR</strong>: The topic you want to split was not found."
|
| 2531 |
msgstr ""
|
| 2532 |
|
| 2533 |
+
#: bbp-includes/bbp-topic-functions.php:1258
|
| 2534 |
+
msgid "<strong>ERROR</strong>: You need to choose a valid split option."
|
| 2535 |
msgstr ""
|
| 2536 |
|
| 2537 |
+
#: bbp-includes/bbp-topic-functions.php:1271
|
| 2538 |
+
msgid "<strong>ERROR</strong>: Destination topic ID not found!"
|
| 2539 |
msgstr ""
|
| 2540 |
|
| 2541 |
+
#: bbp-includes/bbp-topic-functions.php:1280
|
| 2542 |
+
msgid "<strong>ERROR</strong>: The topic you want to split to was not found!"
|
| 2543 |
msgstr ""
|
| 2544 |
|
| 2545 |
+
#: bbp-includes/bbp-topic-functions.php:1284
|
| 2546 |
msgid ""
|
| 2547 |
+
"<strong>ERROR</strong>: You do not have the permissions to edit the "
|
| 2548 |
+
"destination topic!"
|
|
|
|
|
|
|
|
|
|
| 2549 |
msgstr ""
|
| 2550 |
|
| 2551 |
+
#: bbp-includes/bbp-topic-functions.php:1323
|
| 2552 |
msgid ""
|
| 2553 |
+
"<strong>ERROR</strong>: There was a problem converting the reply into the "
|
| 2554 |
+
"topic. Please try again."
|
| 2555 |
msgstr ""
|
| 2556 |
|
| 2557 |
+
#: bbp-includes/bbp-topic-functions.php:1328
|
| 2558 |
msgid ""
|
| 2559 |
+
"<strong>ERROR</strong>: You do not have the permissions to create new "
|
| 2560 |
+
"topics. The reply could not be converted into a topic."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2561 |
msgstr ""
|
| 2562 |
|
| 2563 |
+
#: bbp-includes/bbp-topic-functions.php:1534
|
| 2564 |
msgid ""
|
| 2565 |
+
"<strong>ERROR</strong>: The following problem(s) have been found while "
|
| 2566 |
+
"getting the tag: %s"
|
| 2567 |
msgstr ""
|
| 2568 |
|
| 2569 |
+
#: bbp-includes/bbp-topic-functions.php:1549
|
| 2570 |
+
#: bbp-includes/bbp-topic-functions.php:1585
|
| 2571 |
msgid ""
|
| 2572 |
+
"<strong>ERROR</strong>: You do not have the permissions to edit the topic "
|
| 2573 |
+
"tags."
|
| 2574 |
msgstr ""
|
| 2575 |
|
| 2576 |
+
#: bbp-includes/bbp-topic-functions.php:1555
|
| 2577 |
+
#: bbp-includes/bbp-topic-functions.php:1591
|
| 2578 |
+
msgid "<strong>ERROR</strong>: You need to enter a tag name."
|
|
|
|
| 2579 |
msgstr ""
|
| 2580 |
|
| 2581 |
+
#: bbp-includes/bbp-topic-functions.php:1565
|
| 2582 |
msgid ""
|
| 2583 |
+
"<strong>ERROR</strong>: The following problem(s) have been found while "
|
| 2584 |
+
"updating the tag: %s"
|
| 2585 |
msgstr ""
|
| 2586 |
|
| 2587 |
+
#: bbp-includes/bbp-topic-functions.php:1601
|
| 2588 |
+
#: bbp-includes/bbp-topic-functions.php:1619
|
| 2589 |
msgid ""
|
| 2590 |
+
"<strong>ERROR</strong>: The following problem(s) have been found while "
|
| 2591 |
+
"merging the tags: %s"
|
| 2592 |
msgstr ""
|
| 2593 |
|
| 2594 |
+
#: bbp-includes/bbp-topic-functions.php:1610
|
| 2595 |
msgid ""
|
| 2596 |
+
"<strong>ERROR</strong>: The tags which are being merged can not be the same."
|
|
|
|
| 2597 |
msgstr ""
|
| 2598 |
|
| 2599 |
+
#: bbp-includes/bbp-topic-functions.php:1639
|
| 2600 |
msgid ""
|
| 2601 |
+
"<strong>ERROR</strong>: You do not have the permissions to delete the topic "
|
| 2602 |
+
"tags."
|
|
|
|
| 2603 |
msgstr ""
|
| 2604 |
|
| 2605 |
+
#: bbp-includes/bbp-topic-functions.php:1648
|
| 2606 |
msgid ""
|
| 2607 |
+
"<strong>ERROR</strong>: The following problem(s) have been found while "
|
| 2608 |
+
"deleting the tag: %s"
|
|
|
|
| 2609 |
msgstr ""
|
| 2610 |
|
| 2611 |
+
#: bbp-includes/bbp-topic-functions.php:1774
|
| 2612 |
+
msgid "<strong>ERROR:</strong> You do not have the permission to do that."
|
| 2613 |
msgstr ""
|
| 2614 |
|
| 2615 |
+
#: bbp-includes/bbp-topic-functions.php:1787
|
| 2616 |
+
msgid "<strong>ERROR</strong>: There was a problem closing the topic."
|
|
|
|
|
|
|
| 2617 |
msgstr ""
|
| 2618 |
|
| 2619 |
+
#: bbp-includes/bbp-topic-functions.php:1787
|
| 2620 |
+
msgid "<strong>ERROR</strong>: There was a problem opening the topic."
|
|
|
|
|
|
|
|
|
|
| 2621 |
msgstr ""
|
| 2622 |
|
| 2623 |
+
#: bbp-includes/bbp-topic-functions.php:1798
|
| 2624 |
+
msgid "<strong>ERROR</strong>: There was a problem unsticking the topic."
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2625 |
msgstr ""
|
| 2626 |
|
| 2627 |
+
#: bbp-includes/bbp-topic-functions.php:1798
|
| 2628 |
+
msgid "<strong>ERROR</strong>: There was a problem sticking the topic."
|
|
|
|
|
|
|
| 2629 |
msgstr ""
|
| 2630 |
|
| 2631 |
+
#: bbp-includes/bbp-topic-functions.php:1808
|
| 2632 |
msgid ""
|
| 2633 |
+
"<strong>ERROR</strong>: There was a problem unmarking the topic as spam."
|
|
|
|
| 2634 |
msgstr ""
|
| 2635 |
|
| 2636 |
+
#: bbp-includes/bbp-topic-functions.php:1808
|
| 2637 |
+
msgid "<strong>ERROR</strong>: There was a problem marking the topic as spam."
|
|
|
|
|
|
|
| 2638 |
msgstr ""
|
| 2639 |
|
| 2640 |
+
#: bbp-includes/bbp-topic-functions.php:1827
|
| 2641 |
+
msgid "<strong>ERROR</strong>: There was a problem trashing the topic."
|
| 2642 |
msgstr ""
|
| 2643 |
|
| 2644 |
+
#: bbp-includes/bbp-topic-functions.php:1835
|
| 2645 |
+
msgid "<strong>ERROR</strong>: There was a problem untrashing the topic."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2646 |
msgstr ""
|
| 2647 |
|
| 2648 |
+
#: bbp-includes/bbp-topic-functions.php:1843
|
| 2649 |
+
msgid "<strong>ERROR</strong>: There was a problem deleting the topic."
|
|
|
|
|
|
|
| 2650 |
msgstr ""
|
| 2651 |
|
| 2652 |
+
#: bbp-includes/bbp-topic-functions.php:2834 bbpress.php:620
|
| 2653 |
+
msgid "All Topics"
|
| 2654 |
msgstr ""
|
| 2655 |
|
| 2656 |
+
#: bbp-includes/bbp-extend-akismet.php:259
|
| 2657 |
+
msgid "%1$s reported this %2$s as spam"
|
| 2658 |
msgstr ""
|
| 2659 |
|
| 2660 |
+
#: bbp-includes/bbp-extend-akismet.php:266
|
| 2661 |
+
msgid "%1$s reported this %2$s as not spam"
|
| 2662 |
msgstr ""
|
| 2663 |
|
| 2664 |
+
#: bbp-includes/bbp-extend-akismet.php:410
|
| 2665 |
+
msgid "Akismet caught this post as spam"
|
|
|
|
| 2666 |
msgstr ""
|
| 2667 |
|
| 2668 |
+
#: bbp-includes/bbp-extend-akismet.php:414
|
| 2669 |
+
#: bbp-includes/bbp-extend-akismet.php:429
|
| 2670 |
+
msgid "Post status was changed to %s"
|
| 2671 |
msgstr ""
|
| 2672 |
|
| 2673 |
+
#: bbp-includes/bbp-extend-akismet.php:422
|
| 2674 |
+
msgid "Akismet cleared this post"
|
| 2675 |
msgstr ""
|
| 2676 |
|
| 2677 |
+
#: bbp-includes/bbp-extend-akismet.php:436
|
| 2678 |
+
msgid ""
|
| 2679 |
+
"Akismet was unable to check this post (response: %s), will automatically "
|
| 2680 |
+
"retry again later."
|
| 2681 |
msgstr ""
|
| 2682 |
|
| 2683 |
+
#: bbp-includes/bbp-user-functions.php:402
|
| 2684 |
+
#: bbp-includes/bbp-user-functions.php:694
|
| 2685 |
msgid ""
|
| 2686 |
+
"<strong>ERROR</strong>: You don't have the permission to edit favorites of "
|
| 2687 |
+
"that user!"
|
| 2688 |
msgstr ""
|
| 2689 |
|
| 2690 |
+
#: bbp-includes/bbp-user-functions.php:406
|
| 2691 |
+
msgid ""
|
| 2692 |
+
"<strong>ERROR</strong>: No topic was found! Which topic are you marking/"
|
| 2693 |
+
"unmarking as favorite?"
|
| 2694 |
msgstr ""
|
| 2695 |
|
| 2696 |
+
#: bbp-includes/bbp-user-functions.php:445
|
| 2697 |
+
msgid ""
|
| 2698 |
+
"<strong>ERROR</strong>: There was a problem removing that topic from "
|
| 2699 |
+
"favorites!"
|
| 2700 |
msgstr ""
|
| 2701 |
|
| 2702 |
+
#: bbp-includes/bbp-user-functions.php:447
|
| 2703 |
+
msgid "<strong>ERROR</strong>: There was a problem favoriting that topic!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2704 |
msgstr ""
|
| 2705 |
|
| 2706 |
+
#: bbp-includes/bbp-user-functions.php:698
|
| 2707 |
+
msgid ""
|
| 2708 |
+
"<strong>ERROR</strong>: No topic was found! Which topic are you subscribing/"
|
| 2709 |
+
"unsubscribing to?"
|
| 2710 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2711 |
|
| 2712 |
+
#: bbp-includes/bbp-user-functions.php:736
|
| 2713 |
+
msgid ""
|
| 2714 |
+
"<strong>ERROR</strong>: There was a problem unsubscribing from that topic!"
|
| 2715 |
msgstr ""
|
| 2716 |
|
| 2717 |
+
#: bbp-includes/bbp-user-functions.php:738
|
| 2718 |
+
msgid "<strong>ERROR</strong>: There was a problem subscribing to that topic!"
|
| 2719 |
msgstr ""
|
| 2720 |
|
| 2721 |
+
#: bbp-includes/bbp-user-functions.php:820
|
| 2722 |
+
msgid ""
|
| 2723 |
+
"What are you doing here? You do not have the permission to edit this user."
|
| 2724 |
msgstr ""
|
| 2725 |
|
| 2726 |
+
#: bbp-includes/bbp-topic-template.php:1862
|
| 2727 |
+
msgid "Tagged:"
|
| 2728 |
msgstr ""
|
| 2729 |
|
| 2730 |
+
#: bbp-includes/bbp-topic-template.php:2375
|
| 2731 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:59
|
| 2732 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:73
|
| 2733 |
+
msgid "Merge"
|
| 2734 |
msgstr ""
|
| 2735 |
|
| 2736 |
+
#: bbp-includes/bbp-topic-template.php:2496
|
| 2737 |
+
msgid "Viewing topic %1$s (of %2$s total)"
|
| 2738 |
msgstr ""
|
| 2739 |
|
| 2740 |
+
#: bbp-includes/bbp-topic-template.php:2500
|
| 2741 |
+
msgid "Viewing %1$s topics"
|
| 2742 |
msgstr ""
|
| 2743 |
|
| 2744 |
+
#: bbp-includes/bbp-topic-template.php:2504
|
| 2745 |
+
msgid "Viewing %1$s topics - %2$s through %3$s (of %4$s total)"
|
| 2746 |
msgstr ""
|
| 2747 |
|
| 2748 |
+
#: bbp-includes/bbp-topic-template.php:2509
|
| 2749 |
+
msgid "Viewing %1$s topic"
|
| 2750 |
msgstr ""
|
| 2751 |
|
| 2752 |
+
#: bbp-includes/bbp-topic-template.php:2570
|
| 2753 |
+
msgid "This topic is marked as spam."
|
| 2754 |
msgstr ""
|
| 2755 |
|
| 2756 |
+
#: bbp-includes/bbp-topic-template.php:2575
|
| 2757 |
+
msgid "This topic is in the trash."
|
| 2758 |
msgstr ""
|
| 2759 |
|
| 2760 |
+
#: bbp-includes/bbp-topic-template.php:2611
|
| 2761 |
+
msgid "Normal"
|
| 2762 |
msgstr ""
|
| 2763 |
|
| 2764 |
+
#: bbp-includes/bbp-topic-template.php:2612
|
| 2765 |
+
msgid "Sticky"
|
| 2766 |
msgstr ""
|
| 2767 |
|
| 2768 |
+
#: bbp-includes/bbp-topic-template.php:2613
|
| 2769 |
+
msgid "Super Sticky"
|
| 2770 |
msgstr ""
|
| 2771 |
|
| 2772 |
+
#: bbp-includes/bbp-topic-template.php:2735
|
| 2773 |
+
msgid "%s voice"
|
| 2774 |
+
msgid_plural "%s voices"
|
| 2775 |
+
msgstr[0] ""
|
| 2776 |
+
msgstr[1] ""
|
| 2777 |
+
|
| 2778 |
+
#: bbp-includes/bbp-topic-template.php:2740
|
| 2779 |
+
msgid ""
|
| 2780 |
+
"This topic has %1$s, contains %2$s, and was last updated by %3$s %4$s ago."
|
| 2781 |
msgstr ""
|
| 2782 |
|
| 2783 |
+
#: bbp-includes/bbp-topic-template.php:2744
|
| 2784 |
+
msgid "This topic has %1$s, contains %2$s."
|
| 2785 |
msgstr ""
|
| 2786 |
|
| 2787 |
+
#: bbp-themes/bbp-twentyten/functions.php:159
|
| 2788 |
+
msgid "favorites"
|
| 2789 |
msgstr ""
|
| 2790 |
|
| 2791 |
+
#: bbp-themes/bbp-twentyten/functions.php:160
|
| 2792 |
+
msgid "?"
|
| 2793 |
msgstr ""
|
| 2794 |
|
| 2795 |
+
#: bbp-themes/bbp-twentyten/functions.php:161
|
| 2796 |
+
msgid "This topic is one of your %favLinkYes% [%favDel%]"
|
| 2797 |
msgstr ""
|
| 2798 |
|
| 2799 |
+
#: bbp-themes/bbp-twentyten/functions.php:162
|
| 2800 |
+
msgid "%favAdd% (%favLinkNo%)"
|
| 2801 |
msgstr ""
|
| 2802 |
|
| 2803 |
+
#: bbp-themes/bbp-twentyten/page-topic-tags.php:25
|
| 2804 |
msgid ""
|
| 2805 |
+
"<p>This is a collection of tags that are currently popular on our forums.</p>"
|
|
|
|
| 2806 |
msgstr ""
|
| 2807 |
|
| 2808 |
+
#: bbp-themes/bbp-twentyten/single-reply.php:52
|
| 2809 |
+
msgid "Posted on %1$s at %2$s"
|
| 2810 |
msgstr ""
|
| 2811 |
|
| 2812 |
+
#: bbp-themes/bbp-twentyten/page-forum-statistics.php:29
|
| 2813 |
+
msgid "<p>Here are the statistics and popular topics of our forums.</p>"
|
| 2814 |
msgstr ""
|
| 2815 |
|
| 2816 |
+
#: bbp-themes/bbp-twentyten/page-forum-statistics.php:35
|
| 2817 |
+
msgid "Registered Users"
|
|
|
|
|
|
|
| 2818 |
msgstr ""
|
| 2819 |
|
| 2820 |
+
#: bbp-themes/bbp-twentyten/page-forum-statistics.php:55 bbpress.php:816
|
| 2821 |
+
msgid "Topic Tags"
|
|
|
|
|
|
|
| 2822 |
msgstr ""
|
| 2823 |
|
| 2824 |
+
#: bbp-themes/bbp-twentyten/page-forum-statistics.php:62
|
| 2825 |
+
msgid "Empty Topic Tags"
|
| 2826 |
msgstr ""
|
| 2827 |
|
| 2828 |
+
#: bbp-themes/bbp-twentyten/page-forum-statistics.php:71
|
| 2829 |
+
msgid "Hidden Topics"
|
|
|
|
|
|
|
|
|
|
| 2830 |
msgstr ""
|
| 2831 |
|
| 2832 |
+
#: bbp-themes/bbp-twentyten/page-forum-statistics.php:82
|
| 2833 |
+
msgid "Hidden Replies"
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2834 |
msgstr ""
|
| 2835 |
|
| 2836 |
+
#: bbp-themes/bbp-twentyten/page-forum-statistics.php:101
|
| 2837 |
+
msgid "Popular Topics"
|
| 2838 |
msgstr ""
|
| 2839 |
|
| 2840 |
+
#: bbp-themes/bbp-twentyten/bbpress/feedback-no-topics.php:13
|
| 2841 |
+
msgid "Oh bother! No topics were found here!"
|
|
|
|
|
|
|
| 2842 |
msgstr ""
|
| 2843 |
|
| 2844 |
+
#: bbp-themes/bbp-twentyten/bbpress/user-topics-created.php:16
|
| 2845 |
+
msgid "Forum Topics Created"
|
| 2846 |
msgstr ""
|
| 2847 |
|
| 2848 |
+
#: bbp-themes/bbp-twentyten/bbpress/user-topics-created.php:27
|
| 2849 |
+
msgid "You have not created any topics."
|
| 2850 |
msgstr ""
|
| 2851 |
|
| 2852 |
+
#: bbp-themes/bbp-twentyten/bbpress/user-topics-created.php:27
|
| 2853 |
+
msgid "This user has not created any topics."
|
|
|
|
|
|
|
| 2854 |
msgstr ""
|
| 2855 |
|
| 2856 |
+
#: bbp-themes/bbp-twentyten/bbpress/feedback-no-access.php:16
|
| 2857 |
+
msgid "You do not have permission to view this forum."
|
|
|
|
|
|
|
| 2858 |
msgstr ""
|
| 2859 |
|
| 2860 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-login.php:28
|
| 2861 |
+
msgid "Keep me signed in"
|
|
|
|
|
|
|
| 2862 |
msgstr ""
|
| 2863 |
|
| 2864 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-reply.php:34
|
| 2865 |
msgid ""
|
| 2866 |
+
"This topic is marked as closed to new replies, however your posting "
|
| 2867 |
+
"capabilities still allow you to do so."
|
|
|
|
| 2868 |
msgstr ""
|
| 2869 |
|
| 2870 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-reply.php:42
|
| 2871 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:59
|
| 2872 |
+
msgid "Your account has the ability to post unrestricted HTML content."
|
| 2873 |
msgstr ""
|
| 2874 |
|
| 2875 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-reply.php:56
|
| 2876 |
+
msgid "Reply:"
|
|
|
|
|
|
|
| 2877 |
msgstr ""
|
| 2878 |
|
| 2879 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-reply.php:65
|
| 2880 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:91
|
| 2881 |
+
msgid ""
|
| 2882 |
+
"You may use these <abbr title=\"HyperText Markup Language\">HTML</abbr> tags "
|
| 2883 |
+
"and attributes:"
|
| 2884 |
msgstr ""
|
| 2885 |
|
| 2886 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-reply.php:74
|
| 2887 |
+
msgid "Tags:"
|
| 2888 |
msgstr ""
|
| 2889 |
|
| 2890 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-reply.php:90
|
| 2891 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:144
|
| 2892 |
+
msgid "Notify the author of follow-up replies via email"
|
|
|
|
| 2893 |
msgstr ""
|
| 2894 |
|
| 2895 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-reply.php:94
|
| 2896 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:148
|
| 2897 |
+
msgid "Notify me of follow-up replies via email"
|
| 2898 |
msgstr ""
|
| 2899 |
|
| 2900 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-reply.php:109
|
| 2901 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:162
|
| 2902 |
+
msgid "Revision"
|
|
|
|
| 2903 |
msgstr ""
|
| 2904 |
|
| 2905 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-reply.php:112
|
| 2906 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:165
|
| 2907 |
+
msgid "Keep a log of this edit:"
|
| 2908 |
msgstr ""
|
| 2909 |
|
| 2910 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-reply.php:116
|
| 2911 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:169
|
| 2912 |
+
msgid "Optional reason for editing:"
|
| 2913 |
+
msgstr ""
|
| 2914 |
+
|
| 2915 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-reply.php:135
|
| 2916 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:88
|
| 2917 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:92
|
| 2918 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:184
|
| 2919 |
+
msgid "Submit"
|
| 2920 |
msgstr ""
|
| 2921 |
|
| 2922 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-reply.php:158
|
| 2923 |
+
msgid "The topic ‘%s’ is closed to new replies."
|
|
|
|
|
|
|
| 2924 |
msgstr ""
|
| 2925 |
|
| 2926 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-reply.php:166
|
| 2927 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:207
|
| 2928 |
+
msgid "The forum ‘%s’ is closed to new topics and replies."
|
| 2929 |
msgstr ""
|
| 2930 |
|
| 2931 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-reply.php:174
|
| 2932 |
+
msgid "You cannot reply to this topic."
|
|
|
|
|
|
|
| 2933 |
msgstr ""
|
| 2934 |
|
| 2935 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-reply.php:174
|
| 2936 |
+
msgid "You must be logged in to reply to this topic."
|
|
|
|
|
|
|
| 2937 |
msgstr ""
|
| 2938 |
|
| 2939 |
+
#: bbp-themes/bbp-twentyten/bbpress/user-subscriptions.php:20
|
| 2940 |
+
msgid "Subscribed Forum Topics"
|
| 2941 |
msgstr ""
|
| 2942 |
|
| 2943 |
+
#: bbp-themes/bbp-twentyten/bbpress/user-subscriptions.php:31
|
| 2944 |
+
msgid "You are not currently subscribed to any topics."
|
|
|
|
|
|
|
| 2945 |
msgstr ""
|
| 2946 |
|
| 2947 |
+
#: bbp-themes/bbp-twentyten/bbpress/user-subscriptions.php:31
|
| 2948 |
+
msgid "This user is not currently subscribed to any topics."
|
| 2949 |
msgstr ""
|
| 2950 |
|
| 2951 |
+
#: bbp-themes/bbp-twentyten/bbpress/feedback-logged-in.php:13
|
| 2952 |
+
msgid "You are already logged in."
|
|
|
|
|
|
|
| 2953 |
msgstr ""
|
| 2954 |
|
| 2955 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:24
|
| 2956 |
+
msgid "First Name"
|
|
|
|
|
|
|
|
|
|
| 2957 |
msgstr ""
|
| 2958 |
|
| 2959 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:29
|
| 2960 |
+
msgid "Last Name"
|
|
|
|
|
|
|
| 2961 |
msgstr ""
|
| 2962 |
|
| 2963 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:34
|
| 2964 |
+
msgid "Nickname"
|
| 2965 |
msgstr ""
|
| 2966 |
|
| 2967 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:39
|
| 2968 |
+
msgid "Display name publicly as"
|
| 2969 |
msgstr ""
|
| 2970 |
|
| 2971 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:49
|
| 2972 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:52
|
| 2973 |
+
msgid "Contact Info"
|
| 2974 |
msgstr ""
|
| 2975 |
|
| 2976 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:74
|
| 2977 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:77
|
| 2978 |
+
msgid "About Yourself"
|
| 2979 |
msgstr ""
|
| 2980 |
|
| 2981 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:74
|
| 2982 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:77
|
| 2983 |
+
msgid "About the user"
|
| 2984 |
msgstr ""
|
| 2985 |
|
| 2986 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:82
|
| 2987 |
+
msgid "Biographical Info"
|
|
|
|
|
|
|
| 2988 |
msgstr ""
|
| 2989 |
|
| 2990 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:84
|
| 2991 |
msgid ""
|
| 2992 |
+
"Share a little biographical information to fill out your profile. This may "
|
| 2993 |
+
"be shown publicly."
|
|
|
|
| 2994 |
msgstr ""
|
| 2995 |
|
| 2996 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:91
|
| 2997 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:94
|
| 2998 |
+
msgid "Account"
|
| 2999 |
msgstr ""
|
| 3000 |
|
| 3001 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:101
|
| 3002 |
+
msgid "Usernames cannot be changed."
|
|
|
|
|
|
|
| 3003 |
msgstr ""
|
| 3004 |
|
| 3005 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:117
|
| 3006 |
msgid ""
|
| 3007 |
+
"There is a pending email address change to <code>%1$s</code>. <a href=\"%2$s"
|
| 3008 |
+
"\">Cancel</a>"
|
| 3009 |
msgstr ""
|
| 3010 |
|
| 3011 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:126
|
| 3012 |
+
msgid "New Password"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3013 |
msgstr ""
|
| 3014 |
|
| 3015 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:129
|
| 3016 |
msgid ""
|
| 3017 |
+
"If you would like to change the password type a new one. Otherwise leave "
|
| 3018 |
+
"this blank."
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3019 |
msgstr ""
|
| 3020 |
|
| 3021 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:132
|
| 3022 |
+
msgid "Type your new password again."
|
|
|
|
|
|
|
| 3023 |
msgstr ""
|
| 3024 |
|
| 3025 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:135
|
| 3026 |
+
msgid ""
|
| 3027 |
+
"Hint: The password should be at least seven characters long. To make it "
|
| 3028 |
+
"stronger, use upper and lower case letters, numbers and symbols like ! \" ? "
|
| 3029 |
+
"$ % ^ & )."
|
| 3030 |
msgstr ""
|
| 3031 |
|
| 3032 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:142
|
| 3033 |
+
msgid "Role:"
|
| 3034 |
msgstr ""
|
| 3035 |
|
| 3036 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:153
|
| 3037 |
+
msgid "Super Admin"
|
|
|
|
| 3038 |
msgstr ""
|
| 3039 |
|
| 3040 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:156
|
| 3041 |
+
msgid "Grant this user super admin privileges for the Network."
|
| 3042 |
msgstr ""
|
| 3043 |
|
| 3044 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:174
|
| 3045 |
+
msgid "Update Profile"
|
| 3046 |
msgstr ""
|
| 3047 |
|
| 3048 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-edit.php:174
|
| 3049 |
+
msgid "Update User"
|
| 3050 |
msgstr ""
|
| 3051 |
|
| 3052 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:22
|
| 3053 |
+
msgid "Merge topic \"%s\""
|
| 3054 |
msgstr ""
|
| 3055 |
|
| 3056 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:27
|
| 3057 |
+
msgid ""
|
| 3058 |
+
"Select the topic to merge this one into. The destination topic will remain "
|
| 3059 |
+
"the lead topic, and this one will change into a reply."
|
| 3060 |
msgstr ""
|
| 3061 |
|
| 3062 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:28
|
| 3063 |
+
msgid ""
|
| 3064 |
+
"To keep this topic as the lead, go to the other topic and use the merge tool "
|
| 3065 |
+
"from there instead."
|
| 3066 |
msgstr ""
|
| 3067 |
|
| 3068 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:32
|
| 3069 |
msgid ""
|
| 3070 |
+
"All replies within both topics will be merged chronologically. The order of "
|
| 3071 |
+
"the merged replies is based on the time and date they were posted. If the "
|
| 3072 |
+
"destination topic was created after this one, it's post date will be updated "
|
| 3073 |
+
"to second earlier than this one."
|
| 3074 |
msgstr ""
|
| 3075 |
|
| 3076 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:36
|
| 3077 |
+
msgid "Destination"
|
| 3078 |
msgstr ""
|
| 3079 |
|
| 3080 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:40
|
| 3081 |
+
msgid "Merge with this topic:"
|
|
|
|
|
|
|
| 3082 |
msgstr ""
|
| 3083 |
|
| 3084 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:49
|
| 3085 |
+
msgid "No topics were found to which the topic could be merged to!"
|
| 3086 |
msgstr ""
|
| 3087 |
|
| 3088 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:55
|
| 3089 |
+
msgid "There are no other topics in this forum to merge with."
|
|
|
|
|
|
|
|
|
|
| 3090 |
msgstr ""
|
| 3091 |
|
| 3092 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:63
|
| 3093 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:67
|
| 3094 |
+
msgid "Topic Extras"
|
| 3095 |
msgstr ""
|
| 3096 |
|
| 3097 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:70
|
| 3098 |
+
msgid "Merge topic subscribers"
|
| 3099 |
msgstr ""
|
| 3100 |
|
| 3101 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:75
|
| 3102 |
+
msgid "Merge topic favoriters"
|
| 3103 |
msgstr ""
|
| 3104 |
|
| 3105 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:78
|
| 3106 |
+
msgid "Merge topic tags"
|
| 3107 |
msgstr ""
|
| 3108 |
|
| 3109 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:84
|
| 3110 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:88
|
| 3111 |
+
msgid "<strong>WARNING:</strong> This process cannot be undone."
|
|
|
|
|
|
|
| 3112 |
msgstr ""
|
| 3113 |
|
| 3114 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:101
|
| 3115 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:105
|
| 3116 |
+
msgid "You do not have the permissions to edit this topic!"
|
| 3117 |
msgstr ""
|
| 3118 |
|
| 3119 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-merge.php:101
|
| 3120 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:105
|
| 3121 |
+
msgid "You cannot edit this topic."
|
| 3122 |
msgstr ""
|
| 3123 |
|
| 3124 |
+
#: bbp-themes/bbp-twentyten/bbpress/loop-single-reply.php:15
|
| 3125 |
+
#: bbp-themes/bbp-twentyten/bbpress/content-single-topic-lead.php:43
|
| 3126 |
+
msgid "%1$s at %2$s"
|
| 3127 |
msgstr ""
|
| 3128 |
|
| 3129 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:22
|
| 3130 |
+
msgid "Split topic \"%s\""
|
| 3131 |
msgstr ""
|
| 3132 |
|
| 3133 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:27
|
| 3134 |
+
msgid ""
|
| 3135 |
+
"When you split a topic, you are slicing it in half starting with the reply "
|
| 3136 |
+
"you just selected. Choose to use that reply as a new topic with a new title, "
|
| 3137 |
+
"or merge those replies into an existing topic."
|
| 3138 |
msgstr ""
|
| 3139 |
|
| 3140 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:31
|
| 3141 |
+
msgid ""
|
| 3142 |
+
"If you use the existing topic option, replies within both topics will be "
|
| 3143 |
+
"merged chronologically. The order of the merged replies is based on the time "
|
| 3144 |
+
"and date they were posted."
|
| 3145 |
msgstr ""
|
| 3146 |
|
| 3147 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:35
|
| 3148 |
+
msgid "Split Method"
|
| 3149 |
msgstr ""
|
| 3150 |
|
| 3151 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:39
|
| 3152 |
+
msgid "New topic in <strong>%s</strong> titled:"
|
| 3153 |
msgstr ""
|
| 3154 |
|
| 3155 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:40
|
| 3156 |
+
msgid "Split: %s"
|
| 3157 |
msgstr ""
|
| 3158 |
|
| 3159 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:47
|
| 3160 |
+
msgid "Use an existing topic in this forum:"
|
| 3161 |
msgstr ""
|
| 3162 |
|
| 3163 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:56
|
| 3164 |
+
msgid "No other topics found!"
|
| 3165 |
msgstr ""
|
| 3166 |
|
| 3167 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:74
|
| 3168 |
+
msgid "Copy subscribers to the new topic"
|
| 3169 |
msgstr ""
|
| 3170 |
|
| 3171 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:79
|
| 3172 |
+
msgid "Copy favoriters to the new topic"
|
| 3173 |
msgstr ""
|
| 3174 |
|
| 3175 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-split.php:82
|
| 3176 |
+
msgid "Copy topic tags to the new topic"
|
| 3177 |
msgstr ""
|
| 3178 |
|
| 3179 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-anonymous.php:17
|
| 3180 |
+
msgid "Your information:"
|
| 3181 |
msgstr ""
|
| 3182 |
|
| 3183 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-anonymous.php:22
|
| 3184 |
+
msgid "Name (required):"
|
| 3185 |
msgstr ""
|
| 3186 |
|
| 3187 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-anonymous.php:27
|
| 3188 |
+
msgid "Mail (will not be published) (required):"
|
| 3189 |
msgstr ""
|
| 3190 |
|
| 3191 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-anonymous.php:32
|
| 3192 |
+
msgid "Website:"
|
|
|
|
|
|
|
| 3193 |
msgstr ""
|
| 3194 |
|
| 3195 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:18
|
| 3196 |
+
msgid "Manage Tag: \"%s\""
|
| 3197 |
msgstr ""
|
| 3198 |
|
| 3199 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:22
|
| 3200 |
+
msgid "Rename"
|
| 3201 |
msgstr ""
|
| 3202 |
|
| 3203 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:25
|
| 3204 |
+
msgid "Leave the slug empty to have one automatically generated."
|
| 3205 |
msgstr ""
|
| 3206 |
|
| 3207 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:29
|
| 3208 |
msgid ""
|
| 3209 |
+
"Changing the slug affects its permalink. Any links to the old slug will stop "
|
| 3210 |
+
"working."
|
|
|
|
|
|
|
|
|
|
| 3211 |
msgstr ""
|
| 3212 |
|
| 3213 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:35
|
| 3214 |
+
msgid "Name:"
|
|
|
|
|
|
|
| 3215 |
msgstr ""
|
| 3216 |
|
| 3217 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:40
|
| 3218 |
+
msgid "Slug:"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3219 |
msgstr ""
|
| 3220 |
|
| 3221 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:45
|
| 3222 |
+
msgid "Update"
|
|
|
|
|
|
|
|
|
|
| 3223 |
msgstr ""
|
| 3224 |
|
| 3225 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:62
|
| 3226 |
+
msgid "Merging tags together cannot be undone."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3227 |
msgstr ""
|
| 3228 |
|
| 3229 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:68
|
| 3230 |
+
msgid "Existing tag:"
|
|
|
|
|
|
|
|
|
|
| 3231 |
msgstr ""
|
| 3232 |
|
| 3233 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:74
|
| 3234 |
+
msgid ""
|
| 3235 |
+
"Are you sure you want to merge the \"%s\" tag into the tag you specified?"
|
| 3236 |
msgstr ""
|
| 3237 |
|
| 3238 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:92
|
| 3239 |
+
msgid "This does not delete your topics. Only the tag itself is deleted."
|
|
|
|
|
|
|
|
|
|
| 3240 |
msgstr ""
|
| 3241 |
|
| 3242 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:95
|
| 3243 |
+
msgid "Deleting a tag cannot be undone."
|
|
|
|
|
|
|
|
|
|
| 3244 |
msgstr ""
|
| 3245 |
|
| 3246 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:96
|
| 3247 |
+
msgid "Any links to this tag will no longer function."
|
|
|
|
|
|
|
| 3248 |
msgstr ""
|
| 3249 |
|
| 3250 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php:103
|
| 3251 |
msgid ""
|
| 3252 |
+
"Are you sure you want to delete the \"%s\" tag? This is permanent and cannot "
|
| 3253 |
+
"be undone."
|
|
|
|
| 3254 |
msgstr ""
|
| 3255 |
|
| 3256 |
+
#: bbp-themes/bbp-twentyten/bbpress/user-favorites.php:16
|
| 3257 |
+
msgid "Favorite Forum Topics"
|
|
|
|
|
|
|
|
|
|
| 3258 |
msgstr ""
|
| 3259 |
|
| 3260 |
+
#: bbp-themes/bbp-twentyten/bbpress/user-favorites.php:27
|
| 3261 |
+
msgid "You currently have no favorite topics."
|
|
|
|
|
|
|
| 3262 |
msgstr ""
|
| 3263 |
|
| 3264 |
+
#: bbp-themes/bbp-twentyten/bbpress/user-favorites.php:27
|
| 3265 |
+
msgid "This user has no favorite topics."
|
|
|
|
|
|
|
| 3266 |
msgstr ""
|
| 3267 |
|
| 3268 |
+
#: bbp-themes/bbp-twentyten/bbpress/feedback-no-forums.php:13
|
| 3269 |
+
msgid "Oh bother! No forums were found here!"
|
|
|
|
|
|
|
| 3270 |
msgstr ""
|
| 3271 |
|
| 3272 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-register.php:14
|
| 3273 |
+
msgid "Create an Account"
|
| 3274 |
msgstr ""
|
| 3275 |
|
| 3276 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-register.php:17
|
| 3277 |
+
msgid "Your username must be unique, and cannot be changed later."
|
|
|
|
|
|
|
| 3278 |
msgstr ""
|
| 3279 |
|
| 3280 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-register.php:18
|
| 3281 |
msgid ""
|
| 3282 |
+
"We use your email address to email you a secure password and verify your "
|
| 3283 |
+
"account."
|
|
|
|
|
|
|
|
|
|
| 3284 |
msgstr ""
|
| 3285 |
|
| 3286 |
+
#: bbp-themes/bbp-twentyten/bbpress/loop-single-topic.php:30
|
| 3287 |
+
msgid "Started by: %1$s"
|
|
|
|
|
|
|
| 3288 |
msgstr ""
|
| 3289 |
|
| 3290 |
+
#: bbp-themes/bbp-twentyten/bbpress/loop-single-topic.php:38
|
| 3291 |
+
msgid "in: <a href=\"%1$s\">%2$s</a>"
|
| 3292 |
msgstr ""
|
| 3293 |
|
| 3294 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:39
|
| 3295 |
+
msgid "Now Editing “%s”"
|
| 3296 |
msgstr ""
|
| 3297 |
|
| 3298 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:41
|
| 3299 |
+
msgid "Create New Topic in “%s”"
|
| 3300 |
msgstr ""
|
| 3301 |
|
| 3302 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:41 bbpress.php:622
|
| 3303 |
+
msgid "Create New Topic"
|
| 3304 |
msgstr ""
|
| 3305 |
|
| 3306 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:51
|
| 3307 |
+
msgid ""
|
| 3308 |
+
"This forum is marked as closed to new topics, however your posting "
|
| 3309 |
+
"capabilities still allow you to do so."
|
| 3310 |
msgstr ""
|
| 3311 |
|
| 3312 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:73
|
| 3313 |
+
msgid "Topic Title (Maximum Length: %d):"
|
| 3314 |
msgstr ""
|
| 3315 |
|
| 3316 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:82
|
| 3317 |
+
msgid "Topic Description:"
|
| 3318 |
msgstr ""
|
| 3319 |
|
| 3320 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:100
|
| 3321 |
+
msgid "Topic Tags:"
|
| 3322 |
msgstr ""
|
| 3323 |
|
| 3324 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:111 bbpress.php:631
|
| 3325 |
+
msgid "Forum:"
|
| 3326 |
msgstr ""
|
| 3327 |
|
| 3328 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:125
|
| 3329 |
+
msgid "Topic Type:"
|
| 3330 |
msgstr ""
|
| 3331 |
|
| 3332 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:215
|
| 3333 |
+
msgid "You cannot create new topics at this time."
|
| 3334 |
msgstr ""
|
| 3335 |
|
| 3336 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-topic.php:215
|
| 3337 |
+
msgid "You must be logged in to create new topics."
|
| 3338 |
msgstr ""
|
| 3339 |
|
| 3340 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-protected.php:13
|
| 3341 |
+
msgid "Protected"
|
| 3342 |
msgstr ""
|
| 3343 |
|
| 3344 |
+
#: bbp-themes/bbp-twentyten/bbpress/loop-topics.php:21
|
| 3345 |
+
msgid "Remove"
|
|
|
|
| 3346 |
msgstr ""
|
| 3347 |
|
| 3348 |
+
#: bbp-themes/bbp-twentyten/bbpress/user-details.php:14
|
| 3349 |
+
msgid "Profile: %s"
|
| 3350 |
msgstr ""
|
| 3351 |
|
| 3352 |
+
#: bbp-themes/bbp-twentyten/bbpress/user-details.php:18
|
| 3353 |
+
msgid "Edit Profile of User %s"
|
| 3354 |
msgstr ""
|
| 3355 |
|
| 3356 |
+
#: bbp-themes/bbp-twentyten/bbpress/user-details.php:31
|
| 3357 |
+
msgid "About %s"
|
| 3358 |
msgstr ""
|
| 3359 |
|
| 3360 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-lost-pass.php:18
|
| 3361 |
+
msgid "Username or Email"
|
|
|
|
|
|
|
| 3362 |
msgstr ""
|
| 3363 |
|
| 3364 |
+
#: bbp-themes/bbp-twentyten/bbpress/form-user-lost-pass.php:27
|
| 3365 |
+
msgid "Reset my password"
|
| 3366 |
msgstr ""
|
| 3367 |
|
| 3368 |
+
#: bbpress.php:563
|
| 3369 |
msgid "All Forums"
|
| 3370 |
msgstr ""
|
| 3371 |
|
| 3372 |
+
#: bbpress.php:564 bbpress.php:568
|
| 3373 |
msgid "New Forum"
|
| 3374 |
msgstr ""
|
| 3375 |
|
| 3376 |
+
#: bbpress.php:565
|
| 3377 |
msgid "Create New Forum"
|
| 3378 |
msgstr ""
|
| 3379 |
|
| 3380 |
+
#: bbpress.php:567
|
| 3381 |
msgid "Edit Forum"
|
| 3382 |
msgstr ""
|
| 3383 |
|
| 3384 |
+
#: bbpress.php:569 bbpress.php:570
|
| 3385 |
msgid "View Forum"
|
| 3386 |
msgstr ""
|
| 3387 |
|
| 3388 |
+
#: bbpress.php:571
|
| 3389 |
msgid "Search Forums"
|
| 3390 |
msgstr ""
|
| 3391 |
|
| 3392 |
+
#: bbpress.php:573
|
| 3393 |
msgid "No forums found in Trash"
|
| 3394 |
msgstr ""
|
| 3395 |
|
| 3396 |
+
#: bbpress.php:574
|
| 3397 |
+
msgid "Parent Forum:"
|
| 3398 |
+
msgstr ""
|
| 3399 |
+
|
| 3400 |
+
#: bbpress.php:595
|
| 3401 |
msgid "bbPress Forums"
|
| 3402 |
msgstr ""
|
| 3403 |
|
| 3404 |
+
#: bbpress.php:621 bbpress.php:625
|
| 3405 |
msgid "New Topic"
|
| 3406 |
msgstr ""
|
| 3407 |
|
| 3408 |
+
#: bbpress.php:624
|
| 3409 |
msgid "Edit Topic"
|
| 3410 |
msgstr ""
|
| 3411 |
|
| 3412 |
+
#: bbpress.php:626 bbpress.php:627
|
| 3413 |
msgid "View Topic"
|
| 3414 |
msgstr ""
|
| 3415 |
|
| 3416 |
+
#: bbpress.php:628
|
| 3417 |
msgid "Search Topics"
|
| 3418 |
msgstr ""
|
| 3419 |
|
| 3420 |
+
#: bbpress.php:629
|
| 3421 |
msgid "No topics found"
|
| 3422 |
msgstr ""
|
| 3423 |
|
| 3424 |
+
#: bbpress.php:630
|
| 3425 |
msgid "No topics found in Trash"
|
| 3426 |
msgstr ""
|
| 3427 |
|
| 3428 |
+
#: bbpress.php:652
|
| 3429 |
msgid "bbPress Topics"
|
| 3430 |
msgstr ""
|
| 3431 |
|
| 3432 |
+
#: bbpress.php:678 bbpress.php:682
|
| 3433 |
msgid "New Reply"
|
| 3434 |
msgstr ""
|
| 3435 |
|
| 3436 |
+
#: bbpress.php:679
|
| 3437 |
msgid "Create New Reply"
|
| 3438 |
msgstr ""
|
| 3439 |
|
| 3440 |
+
#: bbpress.php:681
|
| 3441 |
msgid "Edit Reply"
|
| 3442 |
msgstr ""
|
| 3443 |
|
| 3444 |
+
#: bbpress.php:683 bbpress.php:684
|
| 3445 |
msgid "View Reply"
|
| 3446 |
msgstr ""
|
| 3447 |
|
| 3448 |
+
#: bbpress.php:685
|
| 3449 |
msgid "Search Replies"
|
| 3450 |
msgstr ""
|
| 3451 |
|
| 3452 |
+
#: bbpress.php:686
|
| 3453 |
msgid "No replies found"
|
| 3454 |
msgstr ""
|
| 3455 |
|
| 3456 |
+
#: bbpress.php:687
|
| 3457 |
msgid "No replies found in Trash"
|
| 3458 |
msgstr ""
|
| 3459 |
|
| 3460 |
+
#: bbpress.php:688
|
| 3461 |
msgid "Topic:"
|
| 3462 |
msgstr ""
|
| 3463 |
|
| 3464 |
+
#: bbpress.php:709
|
| 3465 |
msgid "bbPress Replies"
|
| 3466 |
msgstr ""
|
| 3467 |
|
| 3468 |
+
#: bbpress.php:743
|
| 3469 |
msgctxt "post"
|
| 3470 |
msgid "Closed"
|
| 3471 |
msgstr ""
|
| 3472 |
|
| 3473 |
+
#: bbpress.php:744
|
| 3474 |
msgctxt "bbpress"
|
| 3475 |
msgid "Closed <span class=\"count\">(%s)</span>"
|
| 3476 |
msgid_plural "Closed <span class=\"count\">(%s)</span>"
|
| 3477 |
msgstr[0] ""
|
| 3478 |
msgstr[1] ""
|
| 3479 |
|
| 3480 |
+
#: bbpress.php:752
|
| 3481 |
msgctxt "post"
|
| 3482 |
msgid "Spam"
|
| 3483 |
msgstr ""
|
| 3484 |
|
| 3485 |
+
#: bbpress.php:753
|
| 3486 |
msgctxt "bbpress"
|
| 3487 |
msgid "Spam <span class=\"count\">(%s)</span>"
|
| 3488 |
msgid_plural "Spam <span class=\"count\">(%s)</span>"
|
| 3489 |
msgstr[0] ""
|
| 3490 |
msgstr[1] ""
|
| 3491 |
|
| 3492 |
+
#: bbpress.php:763
|
| 3493 |
msgctxt "post"
|
| 3494 |
msgid "Orphan"
|
| 3495 |
msgstr ""
|
| 3496 |
|
| 3497 |
+
#: bbpress.php:764
|
| 3498 |
msgctxt "bbpress"
|
| 3499 |
msgid "Orphan <span class=\"count\">(%s)</span>"
|
| 3500 |
msgid_plural "Orphans <span class=\"count\">(%s)</span>"
|
| 3501 |
msgstr[0] ""
|
| 3502 |
msgstr[1] ""
|
| 3503 |
|
| 3504 |
+
#: bbpress.php:774
|
| 3505 |
msgctxt "post"
|
| 3506 |
msgid "Hidden"
|
| 3507 |
msgstr ""
|
| 3508 |
|
| 3509 |
+
#: bbpress.php:775
|
| 3510 |
msgctxt "bbpress"
|
| 3511 |
msgid "Hidden <span class=\"count\">(%s)</span>"
|
| 3512 |
msgid_plural "Hidden <span class=\"count\">(%s)</span>"
|
| 3513 |
msgstr[0] ""
|
| 3514 |
msgstr[1] ""
|
| 3515 |
|
| 3516 |
+
#: bbpress.php:818
|
| 3517 |
msgid "Search Tags"
|
| 3518 |
msgstr ""
|
| 3519 |
|
| 3520 |
+
#: bbpress.php:819
|
| 3521 |
msgid "Popular Tags"
|
| 3522 |
msgstr ""
|
| 3523 |
|
| 3524 |
+
#: bbpress.php:820
|
| 3525 |
msgid "All Tags"
|
| 3526 |
msgstr ""
|
| 3527 |
|
| 3528 |
+
#: bbpress.php:821
|
| 3529 |
msgid "Edit Tag"
|
| 3530 |
msgstr ""
|
| 3531 |
|
| 3532 |
+
#: bbpress.php:822
|
| 3533 |
msgid "Update Tag"
|
| 3534 |
msgstr ""
|
| 3535 |
|
| 3536 |
+
#: bbpress.php:823
|
| 3537 |
msgid "Add New Tag"
|
| 3538 |
msgstr ""
|
| 3539 |
|
| 3540 |
+
#: bbpress.php:824
|
| 3541 |
msgid "New Tag Name"
|
| 3542 |
msgstr ""
|
| 3543 |
|
| 3544 |
+
#: bbpress.php:825
|
| 3545 |
msgid "View Topic Tag"
|
| 3546 |
msgstr ""
|
| 3547 |
|
| 3548 |
+
#: bbpress.php:872
|
| 3549 |
msgid "Topics with no replies"
|
| 3550 |
msgstr ""
|
| 3551 |
|
| 3553 |
msgid "bbPress"
|
| 3554 |
msgstr ""
|
| 3555 |
|
| 3556 |
+
#. #-#-#-#-# plugin.pot (bbPress 2.0-rc-4) #-#-#-#-#
|
| 3557 |
#. Plugin URI of the plugin/theme
|
| 3558 |
+
#. #-#-#-#-# plugin.pot (bbPress 2.0-rc-4) #-#-#-#-#
|
| 3559 |
#. Author URI of the plugin/theme
|
| 3560 |
msgid "http://bbpress.org"
|
| 3561 |
msgstr ""
|
bbp-languages/index.php
CHANGED
|
@@ -2,8 +2,8 @@
|
|
| 2 |
|
| 3 |
/**
|
| 4 |
* Do not put custom translations here. They will be deleted on bbPress updates.
|
| 5 |
-
*
|
| 6 |
-
* Keep custom bbPress
|
| 7 |
*/
|
| 8 |
|
| 9 |
?>
|
| 2 |
|
| 3 |
/**
|
| 4 |
* Do not put custom translations here. They will be deleted on bbPress updates.
|
| 5 |
+
*
|
| 6 |
+
* Keep custom bbPress translations in /wp-content/languages/
|
| 7 |
*/
|
| 8 |
|
| 9 |
?>
|
bbp-themes/bbp-twentyten/bbpress/form-anonymous.php
CHANGED
|
@@ -20,17 +20,17 @@
|
|
| 20 |
|
| 21 |
<p>
|
| 22 |
<label for="bbp_anonymous_author"><?php _e( 'Name (required):', 'bbpress' ); ?></label><br />
|
| 23 |
-
<input type="text" id="bbp_anonymous_author"
|
| 24 |
</p>
|
| 25 |
|
| 26 |
<p>
|
| 27 |
<label for="bbp_anonymous_email"><?php _e( 'Mail (will not be published) (required):', 'bbpress' ); ?></label><br />
|
| 28 |
-
<input type="text" id="bbp_anonymous_email"
|
| 29 |
</p>
|
| 30 |
|
| 31 |
<p>
|
| 32 |
<label for="bbp_anonymous_website"><?php _e( 'Website:', 'bbpress' ); ?></label><br />
|
| 33 |
-
<input type="text" id="bbp_anonymous_website" value="<?php bbp_is_topic_edit() ? bbp_topic_author_url()
|
| 34 |
</p>
|
| 35 |
|
| 36 |
<?php do_action( 'bbp_theme_anonymous_form_extras_bottom' ); ?>
|
| 20 |
|
| 21 |
<p>
|
| 22 |
<label for="bbp_anonymous_author"><?php _e( 'Name (required):', 'bbpress' ); ?></label><br />
|
| 23 |
+
<input type="text" id="bbp_anonymous_author" value="<?php bbp_is_topic_edit() ? bbp_topic_author() : bbp_is_reply_edit() ? bbp_reply_author() : bbp_current_anonymous_user_data( 'name' ); ?>" tabindex="<?php bbp_tab_index(); ?>" size="40" name="bbp_anonymous_name" />
|
| 24 |
</p>
|
| 25 |
|
| 26 |
<p>
|
| 27 |
<label for="bbp_anonymous_email"><?php _e( 'Mail (will not be published) (required):', 'bbpress' ); ?></label><br />
|
| 28 |
+
<input type="text" id="bbp_anonymous_email" value="<?php bbp_is_topic_edit() ? bbp_topic_author_email() : bbp_is_reply_edit() ? bbp_reply_author_email() : bbp_current_anonymous_user_data( 'email' ); ?>" tabindex="<?php bbp_tab_index(); ?>" size="40" name="bbp_anonymous_email" />
|
| 29 |
</p>
|
| 30 |
|
| 31 |
<p>
|
| 32 |
<label for="bbp_anonymous_website"><?php _e( 'Website:', 'bbpress' ); ?></label><br />
|
| 33 |
+
<input type="text" id="bbp_anonymous_website" value="<?php bbp_is_topic_edit() ? bbp_topic_author_url() : bbp_is_reply_edit() ? bbp_reply_author_url() : bbp_current_anonymous_user_data( 'website' ); ?>" tabindex="<?php bbp_tab_index(); ?>" size="40" name="bbp_anonymous_website" />
|
| 34 |
</p>
|
| 35 |
|
| 36 |
<?php do_action( 'bbp_theme_anonymous_form_extras_bottom' ); ?>
|
bbp-themes/bbp-twentyten/bbpress/form-reply.php
CHANGED
|
@@ -48,19 +48,13 @@
|
|
| 48 |
|
| 49 |
<div>
|
| 50 |
|
| 51 |
-
<div class="avatar">
|
| 52 |
-
|
| 53 |
-
<?php bbp_is_reply_edit() ? bbp_reply_author_avatar( bbp_get_reply_id(), 120 ) : bbp_current_user_avatar( 120 ); ?>
|
| 54 |
-
|
| 55 |
-
</div>
|
| 56 |
-
|
| 57 |
<?php bbp_get_template_part( 'bbpress/form', 'anonymous' ); ?>
|
| 58 |
|
| 59 |
<?php do_action( 'bbp_theme_before_reply_form_content' ); ?>
|
| 60 |
|
| 61 |
<p>
|
| 62 |
<label for="bbp_reply_content"><?php _e( 'Reply:', 'bbpress' ); ?></label><br />
|
| 63 |
-
<textarea id="bbp_reply_content" tabindex="<?php bbp_tab_index(); ?>" name="bbp_reply_content"
|
| 64 |
</p>
|
| 65 |
|
| 66 |
<?php do_action( 'bbp_theme_after_reply_form_content' ); ?>
|
|
@@ -78,7 +72,7 @@
|
|
| 78 |
|
| 79 |
<p>
|
| 80 |
<label for="bbp_topic_tags"><?php _e( 'Tags:', 'bbpress' ); ?></label><br />
|
| 81 |
-
<input
|
| 82 |
</p>
|
| 83 |
|
| 84 |
<?php do_action( 'bbp_theme_after_reply_form_tags' ); ?>
|
| 48 |
|
| 49 |
<div>
|
| 50 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 51 |
<?php bbp_get_template_part( 'bbpress/form', 'anonymous' ); ?>
|
| 52 |
|
| 53 |
<?php do_action( 'bbp_theme_before_reply_form_content' ); ?>
|
| 54 |
|
| 55 |
<p>
|
| 56 |
<label for="bbp_reply_content"><?php _e( 'Reply:', 'bbpress' ); ?></label><br />
|
| 57 |
+
<textarea id="bbp_reply_content" tabindex="<?php bbp_tab_index(); ?>" name="bbp_reply_content" rows="6"><?php bbp_form_reply_content(); ?></textarea>
|
| 58 |
</p>
|
| 59 |
|
| 60 |
<?php do_action( 'bbp_theme_after_reply_form_content' ); ?>
|
| 72 |
|
| 73 |
<p>
|
| 74 |
<label for="bbp_topic_tags"><?php _e( 'Tags:', 'bbpress' ); ?></label><br />
|
| 75 |
+
<input type="text" value="<?php bbp_form_topic_tags(); ?>" tabindex="<?php bbp_tab_index(); ?>" size="40" name="bbp_topic_tags" id="bbp_topic_tags" <?php disabled( bbp_is_topic_spam() ); ?> />
|
| 76 |
</p>
|
| 77 |
|
| 78 |
<?php do_action( 'bbp_theme_after_reply_form_tags' ); ?>
|
bbp-themes/bbp-twentyten/bbpress/form-topic-tag.php
CHANGED
|
@@ -33,12 +33,12 @@
|
|
| 33 |
|
| 34 |
<div>
|
| 35 |
<label for="tag-name"><?php _e( 'Name:', 'bbpress' ); ?></label>
|
| 36 |
-
<input type="text" name="tag-name" size="20" maxlength="40" tabindex="<?php bbp_tab_index(); ?>" value="<?php echo esc_attr( bbp_get_topic_tag_name() ); ?>" />
|
| 37 |
</div>
|
| 38 |
|
| 39 |
<div>
|
| 40 |
-
<label for="tag-
|
| 41 |
-
<input type="text" name="tag-slug" size="20" maxlength="40" tabindex="<?php bbp_tab_index(); ?>" value="<?php echo esc_attr( apply_filters( 'editable_slug', bbp_get_topic_tag_slug() ) ); ?>" />
|
| 42 |
</div>
|
| 43 |
|
| 44 |
<div class="bbp-submit-wrapper">
|
|
@@ -65,8 +65,8 @@
|
|
| 65 |
<form id="merge_tag" name="merge_tag" method="post" action="">
|
| 66 |
|
| 67 |
<div>
|
| 68 |
-
<label for="tag-name"><?php _e( 'Existing tag:', 'bbpress' ); ?></label>
|
| 69 |
-
<input type="text" name="tag-name" size="22" tabindex="<?php bbp_tab_index(); ?>" maxlength="40" />
|
| 70 |
</div>
|
| 71 |
|
| 72 |
<div class="bbp-submit-wrapper">
|
| 33 |
|
| 34 |
<div>
|
| 35 |
<label for="tag-name"><?php _e( 'Name:', 'bbpress' ); ?></label>
|
| 36 |
+
<input type="text" id="tag-name" name="tag-name" size="20" maxlength="40" tabindex="<?php bbp_tab_index(); ?>" value="<?php echo esc_attr( bbp_get_topic_tag_name() ); ?>" />
|
| 37 |
</div>
|
| 38 |
|
| 39 |
<div>
|
| 40 |
+
<label for="tag-slug"><?php _e( 'Slug:', 'bbpress' ); ?></label>
|
| 41 |
+
<input type="text" id="tag-slug" name="tag-slug" size="20" maxlength="40" tabindex="<?php bbp_tab_index(); ?>" value="<?php echo esc_attr( apply_filters( 'editable_slug', bbp_get_topic_tag_slug() ) ); ?>" />
|
| 42 |
</div>
|
| 43 |
|
| 44 |
<div class="bbp-submit-wrapper">
|
| 65 |
<form id="merge_tag" name="merge_tag" method="post" action="">
|
| 66 |
|
| 67 |
<div>
|
| 68 |
+
<label for="tag-existing-name"><?php _e( 'Existing tag:', 'bbpress' ); ?></label>
|
| 69 |
+
<input type="text" id="tag-existing-name" name="tag-existing-name" size="22" tabindex="<?php bbp_tab_index(); ?>" maxlength="40" />
|
| 70 |
</div>
|
| 71 |
|
| 72 |
<div class="bbp-submit-wrapper">
|
bbp-themes/bbp-twentyten/bbpress/form-topic.php
CHANGED
|
@@ -64,11 +64,6 @@
|
|
| 64 |
<?php do_action( 'bbp_template_notices' ); ?>
|
| 65 |
|
| 66 |
<div>
|
| 67 |
-
<div class="avatar">
|
| 68 |
-
|
| 69 |
-
<?php bbp_is_topic_edit() ? bbp_topic_author_avatar( bbp_get_topic_id(), 120 ) : bbp_current_user_avatar( 120 ); ?>
|
| 70 |
-
|
| 71 |
-
</div>
|
| 72 |
|
| 73 |
<?php bbp_get_template_part( 'bbpress/form', 'anonymous' ); ?>
|
| 74 |
|
|
@@ -85,7 +80,7 @@
|
|
| 85 |
|
| 86 |
<p>
|
| 87 |
<label for="bbp_topic_content"><?php _e( 'Topic Description:', 'bbpress' ); ?></label><br />
|
| 88 |
-
<textarea id="bbp_topic_content" tabindex="<?php bbp_tab_index(); ?>" name="bbp_topic_content" cols="
|
| 89 |
</p>
|
| 90 |
|
| 91 |
<?php do_action( 'bbp_theme_after_topic_form_content' ); ?>
|
|
@@ -103,7 +98,7 @@
|
|
| 103 |
|
| 104 |
<p>
|
| 105 |
<label for="bbp_topic_tags"><?php _e( 'Topic Tags:', 'bbpress' ); ?></label><br />
|
| 106 |
-
<input type="text" value="<?php bbp_form_topic_tags(); ?>" tabindex="<?php bbp_tab_index(); ?>" size="40" name="bbp_topic_tags" id="bbp_topic_tags" />
|
| 107 |
</p>
|
| 108 |
|
| 109 |
<?php do_action( 'bbp_theme_after_topic_form_tags' ); ?>
|
|
@@ -192,7 +187,7 @@
|
|
| 192 |
|
| 193 |
</div>
|
| 194 |
|
| 195 |
-
<?php do_action( '
|
| 196 |
|
| 197 |
</div>
|
| 198 |
|
| 64 |
<?php do_action( 'bbp_template_notices' ); ?>
|
| 65 |
|
| 66 |
<div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 67 |
|
| 68 |
<?php bbp_get_template_part( 'bbpress/form', 'anonymous' ); ?>
|
| 69 |
|
| 80 |
|
| 81 |
<p>
|
| 82 |
<label for="bbp_topic_content"><?php _e( 'Topic Description:', 'bbpress' ); ?></label><br />
|
| 83 |
+
<textarea id="bbp_topic_content" tabindex="<?php bbp_tab_index(); ?>" name="bbp_topic_content" cols="60" rows="6"><?php bbp_form_topic_content(); ?></textarea>
|
| 84 |
</p>
|
| 85 |
|
| 86 |
<?php do_action( 'bbp_theme_after_topic_form_content' ); ?>
|
| 98 |
|
| 99 |
<p>
|
| 100 |
<label for="bbp_topic_tags"><?php _e( 'Topic Tags:', 'bbpress' ); ?></label><br />
|
| 101 |
+
<input type="text" value="<?php bbp_form_topic_tags(); ?>" tabindex="<?php bbp_tab_index(); ?>" size="40" name="bbp_topic_tags" id="bbp_topic_tags" <?php disabled( bbp_is_topic_spam() ); ?> />
|
| 102 |
</p>
|
| 103 |
|
| 104 |
<?php do_action( 'bbp_theme_after_topic_form_tags' ); ?>
|
| 187 |
|
| 188 |
</div>
|
| 189 |
|
| 190 |
+
<?php do_action( 'bbp_theme_before_after_form_submit_wrapper' ); ?>
|
| 191 |
|
| 192 |
</div>
|
| 193 |
|
bbp-themes/bbp-twentyten/bbpress/loop-forums.php
CHANGED
|
@@ -30,54 +30,7 @@
|
|
| 30 |
|
| 31 |
<?php while ( bbp_forums() ) : bbp_the_forum(); ?>
|
| 32 |
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
<td class="bbp-forum-info">
|
| 36 |
-
|
| 37 |
-
<?php do_action( 'bbp_theme_before_forum_title' ); ?>
|
| 38 |
-
|
| 39 |
-
<a class="bbp-forum-title" href="<?php bbp_forum_permalink(); ?>" title="<?php bbp_forum_title(); ?>"><?php bbp_forum_title(); ?></a>
|
| 40 |
-
|
| 41 |
-
<?php do_action( 'bbp_theme_after_forum_title' ); ?>
|
| 42 |
-
|
| 43 |
-
<?php do_action( 'bbp_theme_before_forum_sub_forums' ); ?>
|
| 44 |
-
|
| 45 |
-
<?php bbp_list_forums(); ?>
|
| 46 |
-
|
| 47 |
-
<?php do_action( 'bbp_theme_after_forum_sub_forums' ); ?>
|
| 48 |
-
|
| 49 |
-
<?php do_action( 'bbp_theme_before_forum_description' ); ?>
|
| 50 |
-
|
| 51 |
-
<div class="bbp-forum-description"><?php the_content(); ?></div>
|
| 52 |
-
|
| 53 |
-
<?php do_action( 'bbp_theme_after_forum_description' ); ?>
|
| 54 |
-
|
| 55 |
-
</td>
|
| 56 |
-
|
| 57 |
-
<td class="bbp-forum-topic-count"><?php bbp_forum_topic_count(); ?></td>
|
| 58 |
-
|
| 59 |
-
<td class="bbp-forum-reply-count"><?php bbp_show_lead_topic() ? bbp_forum_reply_count() : bbp_forum_post_count(); ?></td>
|
| 60 |
-
|
| 61 |
-
<td class="bbp-forum-freshness">
|
| 62 |
-
|
| 63 |
-
<?php do_action( 'bbp_theme_before_forum_freshness_link' ); ?>
|
| 64 |
-
|
| 65 |
-
<?php bbp_forum_freshness_link(); ?>
|
| 66 |
-
|
| 67 |
-
<?php do_action( 'bbp_theme_after_forum_freshness_link' ); ?>
|
| 68 |
-
|
| 69 |
-
<p class="bbp-topic-meta">
|
| 70 |
-
|
| 71 |
-
<?php do_action( 'bbp_theme_before_topic_author' ); ?>
|
| 72 |
-
|
| 73 |
-
<span class="bbp-topic-freshness-author"><?php bbp_author_link( array( 'post_id' => bbp_get_forum_last_active_id(), 'size' => 14 ) ); ?></span>
|
| 74 |
-
|
| 75 |
-
<?php do_action( 'bbp_theme_after_topic_author' ); ?>
|
| 76 |
-
|
| 77 |
-
</p>
|
| 78 |
-
</td>
|
| 79 |
-
|
| 80 |
-
</tr><!-- bbp-forum-<?php bbp_forum_id(); ?> -->
|
| 81 |
|
| 82 |
<?php endwhile; ?>
|
| 83 |
|
| 30 |
|
| 31 |
<?php while ( bbp_forums() ) : bbp_the_forum(); ?>
|
| 32 |
|
| 33 |
+
<?php bbp_get_template_part( 'bbpress/loop', 'single-forum' ); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
|
| 35 |
<?php endwhile; ?>
|
| 36 |
|
bbp-themes/bbp-twentyten/bbpress/loop-replies.php
CHANGED
|
@@ -58,55 +58,7 @@
|
|
| 58 |
|
| 59 |
<?php while ( bbp_replies() ) : bbp_the_reply(); ?>
|
| 60 |
|
| 61 |
-
|
| 62 |
-
<td colspan="2">
|
| 63 |
-
|
| 64 |
-
<?php printf( __( '%1$s at %2$s', 'bbpress' ), get_the_date(), esc_attr( get_the_time() ) ); ?>
|
| 65 |
-
|
| 66 |
-
<a href="<?php bbp_reply_url(); ?>" title="<?php bbp_reply_title(); ?>" class="bbp-reply-permalink">#<?php bbp_reply_id(); ?></a>
|
| 67 |
-
|
| 68 |
-
<?php do_action( 'bbp_theme_before_reply_admin_links' ); ?>
|
| 69 |
-
|
| 70 |
-
<?php bbp_reply_admin_links(); ?>
|
| 71 |
-
|
| 72 |
-
<?php do_action( 'bbp_theme_after_reply_admin_links' ); ?>
|
| 73 |
-
|
| 74 |
-
</td>
|
| 75 |
-
</tr>
|
| 76 |
-
|
| 77 |
-
<tr id="post-<?php bbp_reply_id(); ?>" <?php bbp_reply_class(); ?>>
|
| 78 |
-
|
| 79 |
-
<td class="bbp-reply-author">
|
| 80 |
-
|
| 81 |
-
<?php do_action( 'bbp_theme_before_reply_author_details' ); ?>
|
| 82 |
-
|
| 83 |
-
<?php bbp_reply_author_link(); ?>
|
| 84 |
-
|
| 85 |
-
<?php if ( is_super_admin() ) : ?>
|
| 86 |
-
|
| 87 |
-
<?php do_action( 'bbp_theme_before_reply_author_admin_details' ); ?>
|
| 88 |
-
|
| 89 |
-
<div class="bbp-reply-ip"><?php bbp_author_ip( bbp_get_reply_id() ); ?></div>
|
| 90 |
-
|
| 91 |
-
<?php do_action( 'bbp_theme_after_reply_author_admin_details' ); ?>
|
| 92 |
-
|
| 93 |
-
<?php endif; ?>
|
| 94 |
-
|
| 95 |
-
<?php do_action( 'bbp_theme_after_reply_author_details' ); ?>
|
| 96 |
-
|
| 97 |
-
</td>
|
| 98 |
-
|
| 99 |
-
<td class="bbp-reply-content">
|
| 100 |
-
|
| 101 |
-
<?php do_action( 'bbp_theme_after_reply_content' ); ?>
|
| 102 |
-
|
| 103 |
-
<?php bbp_reply_content(); ?>
|
| 104 |
-
|
| 105 |
-
<?php do_action( 'bbp_theme_before_reply_content' ); ?>
|
| 106 |
-
|
| 107 |
-
</td>
|
| 108 |
-
|
| 109 |
-
</tr><!-- #post-<?php bbp_topic_id(); ?> -->
|
| 110 |
|
| 111 |
<?php endwhile; ?>
|
| 112 |
|
| 58 |
|
| 59 |
<?php while ( bbp_replies() ) : bbp_the_reply(); ?>
|
| 60 |
|
| 61 |
+
<?php bbp_get_template_part( 'bbpress/loop', 'single-reply' ); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 62 |
|
| 63 |
<?php endwhile; ?>
|
| 64 |
|
bbp-themes/bbp-twentyten/bbpress/loop-single-forum.php
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
|
| 3 |
+
/**
|
| 4 |
+
* Forums Loop - Single Forum
|
| 5 |
+
*
|
| 6 |
+
* @package bbPress
|
| 7 |
+
* @subpackage Theme
|
| 8 |
+
*/
|
| 9 |
+
|
| 10 |
+
?>
|
| 11 |
+
|
| 12 |
+
<tr id="bbp-forum-<?php bbp_forum_id(); ?>" <?php bbp_forum_class(); ?>>
|
| 13 |
+
|
| 14 |
+
<td class="bbp-forum-info">
|
| 15 |
+
|
| 16 |
+
<?php do_action( 'bbp_theme_before_forum_title' ); ?>
|
| 17 |
+
|
| 18 |
+
<a class="bbp-forum-title" href="<?php bbp_forum_permalink(); ?>" title="<?php bbp_forum_title(); ?>"><?php bbp_forum_title(); ?></a>
|
| 19 |
+
|
| 20 |
+
<?php do_action( 'bbp_theme_after_forum_title' ); ?>
|
| 21 |
+
|
| 22 |
+
<?php do_action( 'bbp_theme_before_forum_sub_forums' ); ?>
|
| 23 |
+
|
| 24 |
+
<?php bbp_list_forums(); ?>
|
| 25 |
+
|
| 26 |
+
<?php do_action( 'bbp_theme_after_forum_sub_forums' ); ?>
|
| 27 |
+
|
| 28 |
+
<?php do_action( 'bbp_theme_before_forum_description' ); ?>
|
| 29 |
+
|
| 30 |
+
<div class="bbp-forum-description"><?php the_content(); ?></div>
|
| 31 |
+
|
| 32 |
+
<?php do_action( 'bbp_theme_after_forum_description' ); ?>
|
| 33 |
+
|
| 34 |
+
</td>
|
| 35 |
+
|
| 36 |
+
<td class="bbp-forum-topic-count"><?php bbp_forum_topic_count(); ?></td>
|
| 37 |
+
|
| 38 |
+
<td class="bbp-forum-reply-count"><?php bbp_show_lead_topic() ? bbp_forum_reply_count() : bbp_forum_post_count(); ?></td>
|
| 39 |
+
|
| 40 |
+
<td class="bbp-forum-freshness">
|
| 41 |
+
|
| 42 |
+
<?php do_action( 'bbp_theme_before_forum_freshness_link' ); ?>
|
| 43 |
+
|
| 44 |
+
<?php bbp_forum_freshness_link(); ?>
|
| 45 |
+
|
| 46 |
+
<?php do_action( 'bbp_theme_after_forum_freshness_link' ); ?>
|
| 47 |
+
|
| 48 |
+
<p class="bbp-topic-meta">
|
| 49 |
+
|
| 50 |
+
<?php do_action( 'bbp_theme_before_topic_author' ); ?>
|
| 51 |
+
|
| 52 |
+
<span class="bbp-topic-freshness-author"><?php bbp_author_link( array( 'post_id' => bbp_get_forum_last_active_id(), 'size' => 14 ) ); ?></span>
|
| 53 |
+
|
| 54 |
+
<?php do_action( 'bbp_theme_after_topic_author' ); ?>
|
| 55 |
+
|
| 56 |
+
</p>
|
| 57 |
+
</td>
|
| 58 |
+
|
| 59 |
+
</tr><!-- bbp-forum-<?php bbp_forum_id(); ?> -->
|
bbp-themes/bbp-twentyten/bbpress/loop-single-reply.php
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
|
| 3 |
+
/**
|
| 4 |
+
* Replies Loop - Single Reply
|
| 5 |
+
*
|
| 6 |
+
* @package bbPress
|
| 7 |
+
* @subpackage Theme
|
| 8 |
+
*/
|
| 9 |
+
|
| 10 |
+
?>
|
| 11 |
+
|
| 12 |
+
<tr class="bbp-reply-header">
|
| 13 |
+
<td colspan="2">
|
| 14 |
+
|
| 15 |
+
<?php printf( __( '%1$s at %2$s', 'bbpress' ), get_the_date(), esc_attr( get_the_time() ) ); ?>
|
| 16 |
+
|
| 17 |
+
<a href="<?php bbp_reply_url(); ?>" title="<?php bbp_reply_title(); ?>" class="bbp-reply-permalink">#<?php bbp_reply_id(); ?></a>
|
| 18 |
+
|
| 19 |
+
<?php do_action( 'bbp_theme_before_reply_admin_links' ); ?>
|
| 20 |
+
|
| 21 |
+
<?php bbp_reply_admin_links(); ?>
|
| 22 |
+
|
| 23 |
+
<?php do_action( 'bbp_theme_after_reply_admin_links' ); ?>
|
| 24 |
+
|
| 25 |
+
</td>
|
| 26 |
+
</tr>
|
| 27 |
+
|
| 28 |
+
<tr id="post-<?php bbp_reply_id(); ?>" <?php bbp_reply_class(); ?>>
|
| 29 |
+
|
| 30 |
+
<td class="bbp-reply-author">
|
| 31 |
+
|
| 32 |
+
<?php do_action( 'bbp_theme_before_reply_author_details' ); ?>
|
| 33 |
+
|
| 34 |
+
<?php bbp_reply_author_link(); ?>
|
| 35 |
+
|
| 36 |
+
<?php if ( is_super_admin() ) : ?>
|
| 37 |
+
|
| 38 |
+
<?php do_action( 'bbp_theme_before_reply_author_admin_details' ); ?>
|
| 39 |
+
|
| 40 |
+
<div class="bbp-reply-ip"><?php bbp_author_ip( bbp_get_reply_id() ); ?></div>
|
| 41 |
+
|
| 42 |
+
<?php do_action( 'bbp_theme_after_reply_author_admin_details' ); ?>
|
| 43 |
+
|
| 44 |
+
<?php endif; ?>
|
| 45 |
+
|
| 46 |
+
<?php do_action( 'bbp_theme_after_reply_author_details' ); ?>
|
| 47 |
+
|
| 48 |
+
</td>
|
| 49 |
+
|
| 50 |
+
<td class="bbp-reply-content">
|
| 51 |
+
|
| 52 |
+
<?php do_action( 'bbp_theme_after_reply_content' ); ?>
|
| 53 |
+
|
| 54 |
+
<?php bbp_reply_content(); ?>
|
| 55 |
+
|
| 56 |
+
<?php do_action( 'bbp_theme_before_reply_content' ); ?>
|
| 57 |
+
|
| 58 |
+
</td>
|
| 59 |
+
|
| 60 |
+
</tr><!-- #post-<?php bbp_topic_id(); ?> -->
|
bbp-themes/bbp-twentyten/bbpress/loop-single-topic.php
ADDED
|
@@ -0,0 +1,103 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
|
| 3 |
+
/**
|
| 4 |
+
* Topics Loop - Single
|
| 5 |
+
*
|
| 6 |
+
* @package bbPress
|
| 7 |
+
* @subpackage Theme
|
| 8 |
+
*/
|
| 9 |
+
|
| 10 |
+
?>
|
| 11 |
+
|
| 12 |
+
<tr id="topic-<?php bbp_topic_id(); ?>" <?php bbp_topic_class(); ?>>
|
| 13 |
+
|
| 14 |
+
<td class="bbp-topic-title">
|
| 15 |
+
|
| 16 |
+
<?php do_action( 'bbp_theme_before_topic_title' ); ?>
|
| 17 |
+
|
| 18 |
+
<a href="<?php bbp_topic_permalink(); ?>" title="<?php bbp_topic_title(); ?>"><?php bbp_topic_title(); ?></a>
|
| 19 |
+
|
| 20 |
+
<?php do_action( 'bbp_theme_after_topic_title' ); ?>
|
| 21 |
+
|
| 22 |
+
<?php bbp_topic_pagination(); ?>
|
| 23 |
+
|
| 24 |
+
<?php do_action( 'bbp_theme_before_topic_meta' ); ?>
|
| 25 |
+
|
| 26 |
+
<p class="bbp-topic-meta">
|
| 27 |
+
|
| 28 |
+
<?php do_action( 'bbp_theme_before_topic_started_by' ); ?>
|
| 29 |
+
|
| 30 |
+
<span class="bbp-topic-started-by"><?php printf( __( 'Started by: %1$s', 'bbpress' ), bbp_get_topic_author_link( array( 'size' => '14' ) ) ); ?></span>
|
| 31 |
+
|
| 32 |
+
<?php do_action( 'bbp_theme_after_topic_started_by' ); ?>
|
| 33 |
+
|
| 34 |
+
<?php if ( !bbp_is_single_forum() || ( bbp_get_topic_forum_id() != bbp_get_forum_id() ) ) : ?>
|
| 35 |
+
|
| 36 |
+
<?php do_action( 'bbp_theme_before_topic_started_in' ); ?>
|
| 37 |
+
|
| 38 |
+
<span class="bbp-topic-started-in"><?php printf( __( 'in: <a href="%1$s">%2$s</a>', 'bbpress' ), bbp_get_forum_permalink( bbp_get_topic_forum_id() ), bbp_get_forum_title( bbp_get_topic_forum_id() ) ); ?></span>
|
| 39 |
+
|
| 40 |
+
<?php do_action( 'bbp_theme_after_topic_started_in' ); ?>
|
| 41 |
+
|
| 42 |
+
<?php endif; ?>
|
| 43 |
+
|
| 44 |
+
</p>
|
| 45 |
+
|
| 46 |
+
<?php do_action( 'bbp_theme_after_topic_meta' ); ?>
|
| 47 |
+
|
| 48 |
+
</td>
|
| 49 |
+
|
| 50 |
+
<td class="bbp-topic-voice-count"><?php bbp_topic_voice_count(); ?></td>
|
| 51 |
+
|
| 52 |
+
<td class="bbp-topic-reply-count"><?php bbp_show_lead_topic() ? bbp_topic_reply_count() : bbp_topic_post_count(); ?></td>
|
| 53 |
+
|
| 54 |
+
<td class="bbp-topic-freshness">
|
| 55 |
+
|
| 56 |
+
<?php do_action( 'bbp_theme_before_topic_freshness_link' ); ?>
|
| 57 |
+
|
| 58 |
+
<?php bbp_topic_freshness_link(); ?>
|
| 59 |
+
|
| 60 |
+
<?php do_action( 'bbp_theme_after_topic_freshness_link' ); ?>
|
| 61 |
+
|
| 62 |
+
<p class="bbp-topic-meta">
|
| 63 |
+
|
| 64 |
+
<?php do_action( 'bbp_theme_before_topic_freshness_author' ); ?>
|
| 65 |
+
|
| 66 |
+
<span class="bbp-topic-freshness-author"><?php bbp_author_link( array( 'post_id' => bbp_get_topic_last_active_id(), 'size' => 14 ) ); ?></span>
|
| 67 |
+
|
| 68 |
+
<?php do_action( 'bbp_theme_after_topic_freshness_author' ); ?>
|
| 69 |
+
|
| 70 |
+
</p>
|
| 71 |
+
</td>
|
| 72 |
+
|
| 73 |
+
<?php if ( bbp_is_user_home() ) : ?>
|
| 74 |
+
|
| 75 |
+
<?php if ( bbp_is_favorites() ) : ?>
|
| 76 |
+
|
| 77 |
+
<td class="bbp-topic-action">
|
| 78 |
+
|
| 79 |
+
<?php do_action( 'bbp_theme_before_topic_favorites_action' ); ?>
|
| 80 |
+
|
| 81 |
+
<?php bbp_user_favorites_link( array( 'mid' => '+', 'post' => '' ), array( 'pre' => '', 'mid' => '×', 'post' => '' ) ); ?>
|
| 82 |
+
|
| 83 |
+
<?php do_action( 'bbp_theme_after_topic_favorites_action' ); ?>
|
| 84 |
+
|
| 85 |
+
</td>
|
| 86 |
+
|
| 87 |
+
<?php elseif ( bbp_is_subscriptions() ) : ?>
|
| 88 |
+
|
| 89 |
+
<td class="bbp-topic-action">
|
| 90 |
+
|
| 91 |
+
<?php do_action( 'bbp_theme_before_topic_subscription_action' ); ?>
|
| 92 |
+
|
| 93 |
+
<?php bbp_user_subscribe_link( array( 'before' => '', 'subscribe' => '+', 'unsubscribe' => '×' ) ); ?>
|
| 94 |
+
|
| 95 |
+
<?php do_action( 'bbp_theme_after_topic_subscription_action' ); ?>
|
| 96 |
+
|
| 97 |
+
</td>
|
| 98 |
+
|
| 99 |
+
<?php endif; ?>
|
| 100 |
+
|
| 101 |
+
<?php endif; ?>
|
| 102 |
+
|
| 103 |
+
</tr><!-- #topic-<?php bbp_topic_id(); ?> -->
|
bbp-themes/bbp-twentyten/bbpress/loop-topics.php
CHANGED
|
@@ -30,98 +30,7 @@
|
|
| 30 |
|
| 31 |
<?php while ( bbp_topics() ) : bbp_the_topic(); ?>
|
| 32 |
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
<td class="bbp-topic-title">
|
| 36 |
-
|
| 37 |
-
<?php do_action( 'bbp_theme_before_topic_title' ); ?>
|
| 38 |
-
|
| 39 |
-
<a href="<?php bbp_topic_permalink(); ?>" title="<?php bbp_topic_title(); ?>"><?php bbp_topic_title(); ?></a>
|
| 40 |
-
|
| 41 |
-
<?php do_action( 'bbp_theme_after_topic_title' ); ?>
|
| 42 |
-
|
| 43 |
-
<?php bbp_topic_pagination(); ?>
|
| 44 |
-
|
| 45 |
-
<?php do_action( 'bbp_theme_before_topic_meta' ); ?>
|
| 46 |
-
|
| 47 |
-
<p class="bbp-topic-meta">
|
| 48 |
-
|
| 49 |
-
<?php do_action( 'bbp_theme_before_topic_started_by' ); ?>
|
| 50 |
-
|
| 51 |
-
<span class="bbp-topic-started-by"><?php printf( __( 'Started by: %1$s', 'bbpress' ), bbp_get_topic_author_link( array( 'size' => '14' ) ) ); ?></span>
|
| 52 |
-
|
| 53 |
-
<?php do_action( 'bbp_theme_after_topic_started_by' ); ?>
|
| 54 |
-
|
| 55 |
-
<?php if ( !bbp_is_single_forum() || ( bbp_get_topic_forum_id() != bbp_get_forum_id() ) ) : ?>
|
| 56 |
-
|
| 57 |
-
<?php do_action( 'bbp_theme_before_topic_started_in' ); ?>
|
| 58 |
-
|
| 59 |
-
<span class="bbp-topic-started-in"><?php printf( __( 'in: <a href="%1$s">%2$s</a>', 'bbpress' ), bbp_get_forum_permalink( bbp_get_topic_forum_id() ), bbp_get_forum_title( bbp_get_topic_forum_id() ) ); ?></span>
|
| 60 |
-
|
| 61 |
-
<?php do_action( 'bbp_theme_after_topic_started_in' ); ?>
|
| 62 |
-
|
| 63 |
-
<?php endif; ?>
|
| 64 |
-
|
| 65 |
-
</p>
|
| 66 |
-
|
| 67 |
-
<?php do_action( 'bbp_theme_after_topic_meta' ); ?>
|
| 68 |
-
|
| 69 |
-
</td>
|
| 70 |
-
|
| 71 |
-
<td class="bbp-topic-voice-count"><?php bbp_topic_voice_count(); ?></td>
|
| 72 |
-
|
| 73 |
-
<td class="bbp-topic-reply-count"><?php bbp_show_lead_topic() ? bbp_topic_reply_count() : bbp_topic_post_count(); ?></td>
|
| 74 |
-
|
| 75 |
-
<td class="bbp-topic-freshness">
|
| 76 |
-
|
| 77 |
-
<?php do_action( 'bbp_theme_before_topic_freshness_link' ); ?>
|
| 78 |
-
|
| 79 |
-
<?php bbp_topic_freshness_link(); ?>
|
| 80 |
-
|
| 81 |
-
<?php do_action( 'bbp_theme_after_topic_freshness_link' ); ?>
|
| 82 |
-
|
| 83 |
-
<p class="bbp-topic-meta">
|
| 84 |
-
|
| 85 |
-
<?php do_action( 'bbp_theme_before_topic_freshness_author' ); ?>
|
| 86 |
-
|
| 87 |
-
<span class="bbp-topic-freshness-author"><?php bbp_author_link( array( 'post_id' => bbp_get_topic_last_active_id(), 'size' => 14 ) ); ?></span>
|
| 88 |
-
|
| 89 |
-
<?php do_action( 'bbp_theme_after_topic_freshness_author' ); ?>
|
| 90 |
-
|
| 91 |
-
</p>
|
| 92 |
-
</td>
|
| 93 |
-
|
| 94 |
-
<?php if ( bbp_is_user_home() ) : ?>
|
| 95 |
-
|
| 96 |
-
<?php if ( bbp_is_favorites() ) : ?>
|
| 97 |
-
|
| 98 |
-
<td class="bbp-topic-action">
|
| 99 |
-
|
| 100 |
-
<?php do_action( 'bbp_theme_before_topic_favorites_action' ); ?>
|
| 101 |
-
|
| 102 |
-
<?php bbp_user_favorites_link( array( 'mid' => '+', 'post' => '' ), array( 'pre' => '', 'mid' => '×', 'post' => '' ) ); ?>
|
| 103 |
-
|
| 104 |
-
<?php do_action( 'bbp_theme_after_topic_favorites_action' ); ?>
|
| 105 |
-
|
| 106 |
-
</td>
|
| 107 |
-
|
| 108 |
-
<?php elseif ( bbp_is_subscriptions() ) : ?>
|
| 109 |
-
|
| 110 |
-
<td class="bbp-topic-action">
|
| 111 |
-
|
| 112 |
-
<?php do_action( 'bbp_theme_before_topic_subscription_action' ); ?>
|
| 113 |
-
|
| 114 |
-
<?php bbp_user_subscribe_link( array( 'before' => '', 'subscribe' => '+', 'unsubscribe' => '×' ) ); ?>
|
| 115 |
-
|
| 116 |
-
<?php do_action( 'bbp_theme_after_topic_subscription_action' ); ?>
|
| 117 |
-
|
| 118 |
-
</td>
|
| 119 |
-
|
| 120 |
-
<?php endif; ?>
|
| 121 |
-
|
| 122 |
-
<?php endif; ?>
|
| 123 |
-
|
| 124 |
-
</tr><!-- #topic-<?php bbp_topic_id(); ?> -->
|
| 125 |
|
| 126 |
<?php endwhile; ?>
|
| 127 |
|
|
@@ -130,4 +39,3 @@
|
|
| 130 |
</table><!-- #bbp-forum-<?php bbp_topic_id(); ?> -->
|
| 131 |
|
| 132 |
<?php do_action( 'bbp_template_after_topics_loop' ); ?>
|
| 133 |
-
|
| 30 |
|
| 31 |
<?php while ( bbp_topics() ) : bbp_the_topic(); ?>
|
| 32 |
|
| 33 |
+
<?php bbp_get_template_part( 'bbpress/loop', 'single-topic' ); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
|
| 35 |
<?php endwhile; ?>
|
| 36 |
|
| 39 |
</table><!-- #bbp-forum-<?php bbp_topic_id(); ?> -->
|
| 40 |
|
| 41 |
<?php do_action( 'bbp_template_after_topics_loop' ); ?>
|
|
|
bbp-themes/bbp-twentyten/css/bbpress-rtl.css
CHANGED
|
@@ -550,44 +550,54 @@ div.bbp-template-notice a {
|
|
| 550 |
/* =Widgets
|
| 551 |
-------------------------------------------------------------- */
|
| 552 |
|
| 553 |
-
.
|
| 554 |
display: none;
|
| 555 |
}
|
| 556 |
|
| 557 |
-
.
|
| 558 |
-
.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 559 |
width: 70px;
|
| 560 |
display: inline-block;
|
| 561 |
}
|
| 562 |
-
.
|
| 563 |
-
.
|
| 564 |
-
.
|
| 565 |
-
.
|
| 566 |
margin-top: 10px;
|
| 567 |
}
|
| 568 |
|
| 569 |
-
.
|
| 570 |
-
|
| 571 |
}
|
| 572 |
|
| 573 |
-
.
|
| 574 |
-
|
|
|
|
|
|
|
|
|
|
| 575 |
}
|
| 576 |
|
| 577 |
-
.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 578 |
float: right;
|
| 579 |
margin-left: 15px;
|
| 580 |
}
|
| 581 |
|
| 582 |
-
.
|
| 583 |
font-weight: bold;
|
| 584 |
font-size: 1.3em;
|
| 585 |
-
display: inline;
|
| 586 |
clear: none;
|
| 587 |
-
|
| 588 |
-
|
| 589 |
-
.widget-area .bbp-logged-in a.logout-link {
|
| 590 |
-
display: block;
|
| 591 |
}
|
| 592 |
|
| 593 |
/* =Avatars
|
| 550 |
/* =Widgets
|
| 551 |
-------------------------------------------------------------- */
|
| 552 |
|
| 553 |
+
.bbp-login-form fieldset legend {
|
| 554 |
display: none;
|
| 555 |
}
|
| 556 |
|
| 557 |
+
.bbp-login-form .bbp-username input,
|
| 558 |
+
.bbp-login-form .bbp-password input {
|
| 559 |
+
width: 90%;
|
| 560 |
+
padding: 5px;
|
| 561 |
+
}
|
| 562 |
+
s
|
| 563 |
+
.bbp-login-form .bbp-username label,
|
| 564 |
+
.bbp-login-form .bbp-password label {
|
| 565 |
width: 70px;
|
| 566 |
display: inline-block;
|
| 567 |
}
|
| 568 |
+
.bbp-login-form .bbp-username,
|
| 569 |
+
.bbp-login-form .bbp-password,
|
| 570 |
+
.bbp-login-form .bbp-remember-me,
|
| 571 |
+
.bbp-login-form .bbp-submit-wrapper {
|
| 572 |
margin-top: 10px;
|
| 573 |
}
|
| 574 |
|
| 575 |
+
.bbp-login-form .bbp-remember-me {
|
| 576 |
+
|
| 577 |
}
|
| 578 |
|
| 579 |
+
.bbp-login-form .bbp-submit-wrapper {
|
| 580 |
+
text-align: left;
|
| 581 |
+
}
|
| 582 |
+
|
| 583 |
+
.bbp-login-form .bbp-login-links {
|
| 584 |
}
|
| 585 |
|
| 586 |
+
.bbp-login-form .bbp-login-links a {
|
| 587 |
+
float: right;
|
| 588 |
+
clear: right;
|
| 589 |
+
}
|
| 590 |
+
|
| 591 |
+
.bbp-logged-in img.avatar {
|
| 592 |
float: right;
|
| 593 |
margin-left: 15px;
|
| 594 |
}
|
| 595 |
|
| 596 |
+
.bbp-logged-in h4 {
|
| 597 |
font-weight: bold;
|
| 598 |
font-size: 1.3em;
|
|
|
|
| 599 |
clear: none;
|
| 600 |
+
margin-bottom: 10px;
|
|
|
|
|
|
|
|
|
|
| 601 |
}
|
| 602 |
|
| 603 |
/* =Avatars
|
bbp-themes/bbp-twentyten/css/bbpress.css
CHANGED
|
@@ -359,6 +359,15 @@ a.bbp-reply-permalink {
|
|
| 359 |
margin: 0px 0px 10px;
|
| 360 |
}
|
| 361 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 362 |
.bbp-topic-form,
|
| 363 |
.bbp-reply-form,
|
| 364 |
.bbp-topic-tag-form {
|
|
@@ -560,44 +569,54 @@ div.bbp-template-notice a {
|
|
| 560 |
/* =Widgets
|
| 561 |
-------------------------------------------------------------- */
|
| 562 |
|
| 563 |
-
.
|
| 564 |
display: none;
|
| 565 |
}
|
| 566 |
|
| 567 |
-
.
|
| 568 |
-
.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 569 |
width: 70px;
|
| 570 |
display: inline-block;
|
| 571 |
}
|
| 572 |
-
.
|
| 573 |
-
.
|
| 574 |
-
.
|
| 575 |
-
.
|
| 576 |
margin-top: 10px;
|
| 577 |
}
|
| 578 |
|
| 579 |
-
.
|
| 580 |
-
|
| 581 |
}
|
| 582 |
|
| 583 |
-
.
|
| 584 |
-
|
| 585 |
}
|
| 586 |
|
| 587 |
-
.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 588 |
float: left;
|
| 589 |
margin-right: 15px;
|
| 590 |
}
|
| 591 |
|
| 592 |
-
.
|
| 593 |
font-weight: bold;
|
| 594 |
font-size: 1.3em;
|
| 595 |
-
display: inline;
|
| 596 |
clear: none;
|
| 597 |
-
|
| 598 |
-
|
| 599 |
-
.widget-area .bbp-logged-in a.logout-link {
|
| 600 |
-
display: block;
|
| 601 |
}
|
| 602 |
|
| 603 |
/* =Avatars
|
| 359 |
margin: 0px 0px 10px;
|
| 360 |
}
|
| 361 |
|
| 362 |
+
textarea#bbp_reply_content,
|
| 363 |
+
textarea#bbp_topic_content {
|
| 364 |
+
width: 100%;
|
| 365 |
+
box-sizing: border-box;
|
| 366 |
+
-webkit-box-sizing:border-box;
|
| 367 |
+
-moz-box-sizing: border-box;
|
| 368 |
+
-ms-box-sizing: border-box;
|
| 369 |
+
}
|
| 370 |
+
|
| 371 |
.bbp-topic-form,
|
| 372 |
.bbp-reply-form,
|
| 373 |
.bbp-topic-tag-form {
|
| 569 |
/* =Widgets
|
| 570 |
-------------------------------------------------------------- */
|
| 571 |
|
| 572 |
+
.bbp-login-form fieldset legend {
|
| 573 |
display: none;
|
| 574 |
}
|
| 575 |
|
| 576 |
+
.bbp-login-form .bbp-username input,
|
| 577 |
+
.bbp-login-form .bbp-email input,
|
| 578 |
+
.bbp-login-form .bbp-password input {
|
| 579 |
+
padding: 5px;
|
| 580 |
+
}
|
| 581 |
+
|
| 582 |
+
.bbp-login-form .bbp-username label,
|
| 583 |
+
.bbp-login-form .bbp-password label {
|
| 584 |
width: 70px;
|
| 585 |
display: inline-block;
|
| 586 |
}
|
| 587 |
+
.bbp-login-form .bbp-username,
|
| 588 |
+
.bbp-login-form .bbp-password,
|
| 589 |
+
.bbp-login-form .bbp-remember-me,
|
| 590 |
+
.bbp-login-form .bbp-submit-wrapper {
|
| 591 |
margin-top: 10px;
|
| 592 |
}
|
| 593 |
|
| 594 |
+
.bbp-login-form .bbp-remember-me {
|
| 595 |
+
|
| 596 |
}
|
| 597 |
|
| 598 |
+
.bbp-login-form .bbp-submit-wrapper {
|
| 599 |
+
text-align: right;
|
| 600 |
}
|
| 601 |
|
| 602 |
+
.bbp-login-form .bbp-login-links {
|
| 603 |
+
}
|
| 604 |
+
|
| 605 |
+
.bbp-login-form .bbp-login-links a {
|
| 606 |
+
float: left;
|
| 607 |
+
clear: left;
|
| 608 |
+
}
|
| 609 |
+
|
| 610 |
+
.bbp-logged-in img.avatar {
|
| 611 |
float: left;
|
| 612 |
margin-right: 15px;
|
| 613 |
}
|
| 614 |
|
| 615 |
+
.bbp-logged-in h4 {
|
| 616 |
font-weight: bold;
|
| 617 |
font-size: 1.3em;
|
|
|
|
| 618 |
clear: none;
|
| 619 |
+
margin-bottom: 10px;
|
|
|
|
|
|
|
|
|
|
| 620 |
}
|
| 621 |
|
| 622 |
/* =Avatars
|
bbp-themes/bbp-twentyten/functions.php
CHANGED
|
@@ -1,11 +1,13 @@
|
|
| 1 |
<?php
|
| 2 |
|
| 3 |
-
|
| 4 |
* @package bbPress
|
| 5 |
* @subpackage BBP_Twenty_Ten
|
| 6 |
* @since Twenty Ten 1.1
|
| 7 |
*/
|
| 8 |
|
|
|
|
|
|
|
| 9 |
if ( ! function_exists( 'bbp_twentyten_setup' ) ):
|
| 10 |
/**
|
| 11 |
* Sets up theme support for bbPress
|
|
@@ -24,6 +26,8 @@ function bbp_twentyten_setup() {
|
|
| 24 |
add_action( 'after_setup_theme', 'bbp_twentyten_setup' );
|
| 25 |
endif;
|
| 26 |
|
|
|
|
|
|
|
| 27 |
if ( !function_exists( 'bbp_twentyten_enqueue_styles' ) ) :
|
| 28 |
/**
|
| 29 |
* Load the theme CSS
|
|
@@ -34,7 +38,7 @@ if ( !function_exists( 'bbp_twentyten_enqueue_styles' ) ) :
|
|
| 34 |
*/
|
| 35 |
function bbp_twentyten_enqueue_styles () {
|
| 36 |
|
| 37 |
-
$version = '
|
| 38 |
|
| 39 |
// Right to left
|
| 40 |
if ( is_rtl() ) {
|
|
@@ -59,6 +63,8 @@ function bbp_twentyten_enqueue_styles () {
|
|
| 59 |
add_action( 'bbp_enqueue_scripts', 'bbp_twentyten_enqueue_styles' );
|
| 60 |
endif;
|
| 61 |
|
|
|
|
|
|
|
| 62 |
if ( !function_exists( 'bbp_twentyten_enqueue_scripts' ) ) :
|
| 63 |
/**
|
| 64 |
* Enqueue the required Javascript files
|
|
@@ -72,7 +78,7 @@ if ( !function_exists( 'bbp_twentyten_enqueue_scripts' ) ) :
|
|
| 72 |
*/
|
| 73 |
function bbp_twentyten_enqueue_scripts () {
|
| 74 |
|
| 75 |
-
$version = '
|
| 76 |
|
| 77 |
if ( bbp_is_single_topic() )
|
| 78 |
wp_enqueue_script( 'bbp_topic', get_stylesheet_directory_uri() . '/js/topic.js', array( 'wp-lists' ), $version );
|
|
@@ -200,14 +206,16 @@ function bbp_twentyten_dim_favorite () {
|
|
| 200 |
if ( !$topic = bbp_get_topic( $id ) )
|
| 201 |
die( '0' );
|
| 202 |
|
| 203 |
-
check_ajax_referer(
|
| 204 |
|
| 205 |
if ( bbp_is_user_favorite( $user_id, $topic->ID ) ) {
|
| 206 |
-
if ( bbp_remove_user_favorite( $user_id, $topic->ID ) )
|
| 207 |
die( '1' );
|
|
|
|
| 208 |
} else {
|
| 209 |
-
if ( bbp_add_user_favorite( $user_id, $topic->ID ) )
|
| 210 |
die( '1' );
|
|
|
|
| 211 |
}
|
| 212 |
|
| 213 |
die( '0' );
|
|
@@ -245,14 +253,16 @@ function bbp_twentyten_dim_subscription () {
|
|
| 245 |
if ( !$topic = bbp_get_topic( $id ) )
|
| 246 |
die( '0' );
|
| 247 |
|
| 248 |
-
check_ajax_referer(
|
| 249 |
|
| 250 |
if ( bbp_is_user_subscribed( $user_id, $topic->ID ) ) {
|
| 251 |
-
if ( bbp_remove_user_subscription( $user_id, $topic->ID ) )
|
| 252 |
die( '1' );
|
|
|
|
| 253 |
} else {
|
| 254 |
-
if ( bbp_add_user_subscription( $user_id, $topic->ID ) )
|
| 255 |
die( '1' );
|
|
|
|
| 256 |
}
|
| 257 |
|
| 258 |
die( '0' );
|
| 1 |
<?php
|
| 2 |
|
| 3 |
+
/**
|
| 4 |
* @package bbPress
|
| 5 |
* @subpackage BBP_Twenty_Ten
|
| 6 |
* @since Twenty Ten 1.1
|
| 7 |
*/
|
| 8 |
|
| 9 |
+
/** Theme Setup ***************************************************************/
|
| 10 |
+
|
| 11 |
if ( ! function_exists( 'bbp_twentyten_setup' ) ):
|
| 12 |
/**
|
| 13 |
* Sets up theme support for bbPress
|
| 26 |
add_action( 'after_setup_theme', 'bbp_twentyten_setup' );
|
| 27 |
endif;
|
| 28 |
|
| 29 |
+
/** Theme CSS *****************************************************************/
|
| 30 |
+
|
| 31 |
if ( !function_exists( 'bbp_twentyten_enqueue_styles' ) ) :
|
| 32 |
/**
|
| 33 |
* Load the theme CSS
|
| 38 |
*/
|
| 39 |
function bbp_twentyten_enqueue_styles () {
|
| 40 |
|
| 41 |
+
$version = '20110830';
|
| 42 |
|
| 43 |
// Right to left
|
| 44 |
if ( is_rtl() ) {
|
| 63 |
add_action( 'bbp_enqueue_scripts', 'bbp_twentyten_enqueue_styles' );
|
| 64 |
endif;
|
| 65 |
|
| 66 |
+
/** Theme Ajax and JS *********************************************************/
|
| 67 |
+
|
| 68 |
if ( !function_exists( 'bbp_twentyten_enqueue_scripts' ) ) :
|
| 69 |
/**
|
| 70 |
* Enqueue the required Javascript files
|
| 78 |
*/
|
| 79 |
function bbp_twentyten_enqueue_scripts () {
|
| 80 |
|
| 81 |
+
$version = '20110830';
|
| 82 |
|
| 83 |
if ( bbp_is_single_topic() )
|
| 84 |
wp_enqueue_script( 'bbp_topic', get_stylesheet_directory_uri() . '/js/topic.js', array( 'wp-lists' ), $version );
|
| 206 |
if ( !$topic = bbp_get_topic( $id ) )
|
| 207 |
die( '0' );
|
| 208 |
|
| 209 |
+
check_ajax_referer( 'toggle-favorite_' . $topic->ID );
|
| 210 |
|
| 211 |
if ( bbp_is_user_favorite( $user_id, $topic->ID ) ) {
|
| 212 |
+
if ( bbp_remove_user_favorite( $user_id, $topic->ID ) ) {
|
| 213 |
die( '1' );
|
| 214 |
+
}
|
| 215 |
} else {
|
| 216 |
+
if ( bbp_add_user_favorite( $user_id, $topic->ID ) ) {
|
| 217 |
die( '1' );
|
| 218 |
+
}
|
| 219 |
}
|
| 220 |
|
| 221 |
die( '0' );
|
| 253 |
if ( !$topic = bbp_get_topic( $id ) )
|
| 254 |
die( '0' );
|
| 255 |
|
| 256 |
+
check_ajax_referer( 'toggle-subscription_' . $topic->ID );
|
| 257 |
|
| 258 |
if ( bbp_is_user_subscribed( $user_id, $topic->ID ) ) {
|
| 259 |
+
if ( bbp_remove_user_subscription( $user_id, $topic->ID ) ) {
|
| 260 |
die( '1' );
|
| 261 |
+
}
|
| 262 |
} else {
|
| 263 |
+
if ( bbp_add_user_subscription( $user_id, $topic->ID ) ) {
|
| 264 |
die( '1' );
|
| 265 |
+
}
|
| 266 |
}
|
| 267 |
|
| 268 |
die( '0' );
|
bbp-themes/bbp-twentyten/single-reply-edit.php
CHANGED
|
@@ -20,8 +20,6 @@
|
|
| 20 |
<h1 class="entry-title"><?php the_title(); ?></h1>
|
| 21 |
<div class="entry-content">
|
| 22 |
|
| 23 |
-
<?php bbp_breadcrumb(); ?>
|
| 24 |
-
|
| 25 |
<?php bbp_get_template_part( 'bbpress/form', 'reply' ); ?>
|
| 26 |
|
| 27 |
</div>
|
|
@@ -31,4 +29,4 @@
|
|
| 31 |
</div><!-- #container -->
|
| 32 |
|
| 33 |
<?php get_sidebar(); ?>
|
| 34 |
-
<?php get_footer(); ?>
|
| 20 |
<h1 class="entry-title"><?php the_title(); ?></h1>
|
| 21 |
<div class="entry-content">
|
| 22 |
|
|
|
|
|
|
|
| 23 |
<?php bbp_get_template_part( 'bbpress/form', 'reply' ); ?>
|
| 24 |
|
| 25 |
</div>
|
| 29 |
</div><!-- #container -->
|
| 30 |
|
| 31 |
<?php get_sidebar(); ?>
|
| 32 |
+
<?php get_footer(); ?>
|
bbp-themes/index.php
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
|
| 3 |
/**
|
| 4 |
* Do not put custom themes here. They will be deleted on bbPress updates.
|
| 5 |
-
*
|
| 6 |
* Keep custom bbPress themes in /wp-content/themes/
|
| 7 |
*/
|
| 8 |
|
| 2 |
|
| 3 |
/**
|
| 4 |
* Do not put custom themes here. They will be deleted on bbPress updates.
|
| 5 |
+
*
|
| 6 |
* Keep custom bbPress themes in /wp-content/themes/
|
| 7 |
*/
|
| 8 |
|
bbpress.php
CHANGED
|
@@ -15,7 +15,7 @@
|
|
| 15 |
* Description: bbPress is forum software with a twist from the creators of WordPress.
|
| 16 |
* Author: The bbPress Community
|
| 17 |
* Author URI: http://bbpress.org
|
| 18 |
-
* Version: 2.0-rc-
|
| 19 |
*/
|
| 20 |
|
| 21 |
// Exit if accessed directly
|
|
@@ -36,12 +36,12 @@ class bbPress {
|
|
| 36 |
/**
|
| 37 |
* @public string bbPress version
|
| 38 |
*/
|
| 39 |
-
public $version = '2.0-rc-
|
| 40 |
|
| 41 |
/**
|
| 42 |
* @public string bbPress DB version
|
| 43 |
*/
|
| 44 |
-
public $db_version = '
|
| 45 |
|
| 46 |
/** Post types ************************************************************/
|
| 47 |
|
|
@@ -275,6 +275,13 @@ class bbPress {
|
|
| 275 |
*/
|
| 276 |
public $extend = false;
|
| 277 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 278 |
/** Functions *************************************************************/
|
| 279 |
|
| 280 |
/**
|
|
@@ -766,7 +773,7 @@ class bbPress {
|
|
| 766 |
$status = apply_filters( 'bbp_register_hidden_post_status', array(
|
| 767 |
'label' => _x( 'Hidden', 'post', 'bbpress' ),
|
| 768 |
'label_count' => _nx_noop( 'Hidden <span class="count">(%s)</span>', 'Hidden <span class="count">(%s)</span>', 'bbpress' ),
|
| 769 |
-
'
|
| 770 |
'exclude_from_search' => true,
|
| 771 |
'show_in_admin_status_list' => true,
|
| 772 |
'show_in_admin_all_list' => true
|
| 15 |
* Description: bbPress is forum software with a twist from the creators of WordPress.
|
| 16 |
* Author: The bbPress Community
|
| 17 |
* Author URI: http://bbpress.org
|
| 18 |
+
* Version: 2.0-rc-4
|
| 19 |
*/
|
| 20 |
|
| 21 |
// Exit if accessed directly
|
| 36 |
/**
|
| 37 |
* @public string bbPress version
|
| 38 |
*/
|
| 39 |
+
public $version = '2.0-rc-4';
|
| 40 |
|
| 41 |
/**
|
| 42 |
* @public string bbPress DB version
|
| 43 |
*/
|
| 44 |
+
public $db_version = '165';
|
| 45 |
|
| 46 |
/** Post types ************************************************************/
|
| 47 |
|
| 275 |
*/
|
| 276 |
public $extend = false;
|
| 277 |
|
| 278 |
+
/** Option Overload *******************************************************/
|
| 279 |
+
|
| 280 |
+
/**
|
| 281 |
+
* @var array Optional Overloads default options retrieved from get_option()
|
| 282 |
+
*/
|
| 283 |
+
public $options = array();
|
| 284 |
+
|
| 285 |
/** Functions *************************************************************/
|
| 286 |
|
| 287 |
/**
|
| 773 |
$status = apply_filters( 'bbp_register_hidden_post_status', array(
|
| 774 |
'label' => _x( 'Hidden', 'post', 'bbpress' ),
|
| 775 |
'label_count' => _nx_noop( 'Hidden <span class="count">(%s)</span>', 'Hidden <span class="count">(%s)</span>', 'bbpress' ),
|
| 776 |
+
'private' => true,
|
| 777 |
'exclude_from_search' => true,
|
| 778 |
'show_in_admin_status_list' => true,
|
| 779 |
'show_in_admin_all_list' => true
|
humans.txt
CHANGED
|
@@ -39,7 +39,7 @@ Twitter: johnjamesjacoby
|
|
| 39 |
Favorite Food: Pizza
|
| 40 |
|
| 41 |
/* THANKS */
|
| 42 |
-
Mike Adams, Gautam Gupta, Ben L, Justin Tadlock, cnorris23, anointed
|
| 43 |
|
| 44 |
/* META */
|
| 45 |
Updated: 2011/05/29
|
| 39 |
Favorite Food: Pizza
|
| 40 |
|
| 41 |
/* THANKS */
|
| 42 |
+
Mike Adams, Gautam Gupta, Ben L, Justin Tadlock, cnorris23, anointed, andy, nacin
|
| 43 |
|
| 44 |
/* META */
|
| 45 |
Updated: 2011/05/29
|
readme.txt
CHANGED
|
@@ -1,15 +1,15 @@
|
|
| 1 |
=== bbPress ===
|
| 2 |
Contributors: matt, johnjamesjacoby
|
| 3 |
-
Tags: bbpress, forums, discussion,
|
| 4 |
-
Requires at least: 3.2
|
| 5 |
-
Tested up to: 3.2
|
| 6 |
-
Stable tag: 2.0-rc-
|
| 7 |
|
| 8 |
bbPress is forum software with a twist from the creators of WordPress
|
| 9 |
|
| 10 |
== Description ==
|
| 11 |
|
| 12 |
-
Have you ever been frustrated with forum or bulletin board software that was slow, bloated and always got your server hacked? bbPress is focused on
|
| 13 |
|
| 14 |
We're keeping things as small and light as possible while still allowing for great add-on features through WordPress's extensive plugin system. What does all that mean? bbPress is lean, mean, and ready to take on any job you throw at it.
|
| 15 |
|
|
@@ -24,12 +24,21 @@ We're keeping things as small and light as possible while still allowing for gre
|
|
| 24 |
|
| 25 |
== Changelog ==
|
| 26 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 27 |
= 2.0-rc-3 =
|
| 28 |
* Fixed activation/deactivation
|
| 29 |
* Added Forum Participant role for multisite use
|
| 30 |
|
| 31 |
= 2.0-rc-2 =
|
| 32 |
-
* BuddyPress
|
| 33 |
* Multisite integration
|
| 34 |
* Fixed a bushel of bugs
|
| 35 |
* Fixed tag pagination again
|
| 1 |
=== bbPress ===
|
| 2 |
Contributors: matt, johnjamesjacoby
|
| 3 |
+
Tags: bbpress, forums, discussion, support, theme, buddypress, akismet, multisite
|
| 4 |
+
Requires at least: 3.2.1
|
| 5 |
+
Tested up to: 3.2.1
|
| 6 |
+
Stable tag: 2.0-rc-4
|
| 7 |
|
| 8 |
bbPress is forum software with a twist from the creators of WordPress
|
| 9 |
|
| 10 |
== Description ==
|
| 11 |
|
| 12 |
+
Have you ever been frustrated with forum or bulletin board software that was slow, bloated and always got your server hacked? bbPress is focused on ease of integration, ease of use, web standards, and speed.
|
| 13 |
|
| 14 |
We're keeping things as small and light as possible while still allowing for great add-on features through WordPress's extensive plugin system. What does all that mean? bbPress is lean, mean, and ready to take on any job you throw at it.
|
| 15 |
|
| 24 |
|
| 25 |
== Changelog ==
|
| 26 |
|
| 27 |
+
= 2.0-rc-4 =
|
| 28 |
+
* BuddyPress @mention integration
|
| 29 |
+
* Improved Akismet user agent handling
|
| 30 |
+
* Added blacklist_keys support
|
| 31 |
+
* Fixed spam/deleted user handling
|
| 32 |
+
* Updated green admin color scheme for WordPress 3.2
|
| 33 |
+
* Added actions to topic/reply forms
|
| 34 |
+
* Improved support for future ajaxification
|
| 35 |
+
|
| 36 |
= 2.0-rc-3 =
|
| 37 |
* Fixed activation/deactivation
|
| 38 |
* Added Forum Participant role for multisite use
|
| 39 |
|
| 40 |
= 2.0-rc-2 =
|
| 41 |
+
* BuddyPress activity actionin tegration
|
| 42 |
* Multisite integration
|
| 43 |
* Fixed a bushel of bugs
|
| 44 |
* Fixed tag pagination again
|
