Version Description
- Fixed post_excerpt conflict with Jetpack 2.0
- Fixed theme compat CSS issues
- Fixed non-latin chars in slugs on import
- Fixes index on topics query
Download this release
Release Info
Developer | johnjamesjacoby |
Plugin | bbPress |
Version | 2.1.3 |
Comparing to | |
See all releases |
Code changes from version 2.1.2 to 2.1.3
- bbp-admin/bbp-admin.php +415 -22
- bbp-admin/bbp-converter.php +1 -1
- bbp-admin/bbp-tools.php +3 -0
- bbp-admin/styles/admin-1.css +0 -1
- bbp-admin/styles/admin-1.dev.css +0 -1937
- bbp-admin/styles/admin-2.css +0 -1
- bbp-admin/styles/admin-2.dev.css +0 -1937
- bbp-admin/styles/admin.css +1 -1
- bbp-admin/styles/admin.dev.css +227 -86
- bbp-includes/bbp-core-widgets.php +10 -1
- bbp-includes/bbp-forum-functions.php +6 -1
- bbp-includes/bbp-reply-functions.php +4 -0
- bbp-includes/bbp-theme-compatibility.php +68 -106
- bbp-includes/bbp-topic-functions.php +6 -0
- bbp-theme-compat/css/bbpress-rtl.css +22 -6
- bbp-theme-compat/css/bbpress.css +2 -5
- bbpress.php +3 -3
- readme.txt +7 -1
- screenshot-1.png +0 -0
- screenshot-2.png +0 -0
- screenshot-3.png +0 -0
- screenshot-4.png +0 -0
- screenshot-5.png +0 -0
- screenshot-6.png +0 -0
- screenshot-7.png +0 -0
bbp-admin/bbp-admin.php
CHANGED
@@ -51,13 +51,6 @@ class BBP_Admin {
|
|
51 |
*/
|
52 |
public $minimum_capability = 'manage_options';
|
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 |
/**
|
@@ -384,6 +377,9 @@ class BBP_Admin {
|
|
384 |
remove_submenu_page( 'tools.php', 'bbp-converter' );
|
385 |
remove_submenu_page( 'tools.php', 'bbp-reset' );
|
386 |
|
|
|
|
|
|
|
387 |
// Icons for top level admin menus
|
388 |
$version = bbp_get_version();
|
389 |
$menu_icon_url = $this->images_url . 'menu.png?ver=' . $version;
|
@@ -612,6 +608,417 @@ class BBP_Admin {
|
|
612 |
}
|
613 |
}
|
614 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
615 |
/*]]>*/
|
616 |
</style>
|
617 |
|
@@ -630,21 +1037,7 @@ class BBP_Admin {
|
|
630 |
* @uses wp_admin_css_color() To register the color scheme
|
631 |
*/
|
632 |
public function register_admin_style () {
|
633 |
-
|
634 |
-
// Normal wp-content dir
|
635 |
-
if ( 0 === $this->content_depth )
|
636 |
-
$css_file = $this->styles_url . 'admin.css';
|
637 |
-
|
638 |
-
// Custom wp-content dir is 1 level away
|
639 |
-
elseif ( 1 === $this->content_depth )
|
640 |
-
$css_file = $this->styles_url . 'admin-1.css';
|
641 |
-
|
642 |
-
// Custom wp-content dir is 1 level away
|
643 |
-
elseif ( 2 === $this->content_depth )
|
644 |
-
$css_file = $this->styles_url . 'admin-2.css';
|
645 |
-
|
646 |
-
// Load the admin CSS styling
|
647 |
-
wp_admin_css_color( 'bbpress', __( 'Green', 'bbpress' ), $css_file, array( '#222222', '#006600', '#deece1', '#6eb469' ) );
|
648 |
}
|
649 |
|
650 |
/** Updaters **************************************************************/
|
51 |
*/
|
52 |
public $minimum_capability = 'manage_options';
|
53 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
/** Functions *************************************************************/
|
55 |
|
56 |
/**
|
377 |
remove_submenu_page( 'tools.php', 'bbp-converter' );
|
378 |
remove_submenu_page( 'tools.php', 'bbp-reset' );
|
379 |
|
380 |
+
// The /wp-admin/images/ folder
|
381 |
+
$wp_admin_url = admin_url( 'images/' );
|
382 |
+
|
383 |
// Icons for top level admin menus
|
384 |
$version = bbp_get_version();
|
385 |
$menu_icon_url = $this->images_url . 'menu.png?ver=' . $version;
|
608 |
}
|
609 |
}
|
610 |
|
611 |
+
<?php if ( 'bbpress' == get_user_option( 'admin_color' ) ) : ?>
|
612 |
+
|
613 |
+
/* Green Scheme Images */
|
614 |
+
|
615 |
+
.post-com-count {
|
616 |
+
background-image: url('<?php echo $wp_admin_url; ?>bubble_bg.gif');
|
617 |
+
}
|
618 |
+
|
619 |
+
.button,
|
620 |
+
.submit input,
|
621 |
+
.button-secondary {
|
622 |
+
background-image: url('<?php echo $wp_admin_url; ?>white-grad.png');
|
623 |
+
}
|
624 |
+
|
625 |
+
.button:active,
|
626 |
+
.submit input:active,
|
627 |
+
.button-secondary:active {
|
628 |
+
background-image: url('<?php echo $wp_admin_url; ?>white-grad-active.png');
|
629 |
+
}
|
630 |
+
|
631 |
+
.curtime #timestamp {
|
632 |
+
background-image: url('<?php echo $wp_admin_url; ?>date-button.gif');
|
633 |
+
}
|
634 |
+
|
635 |
+
.tagchecklist span a,
|
636 |
+
#bulk-titles div a {
|
637 |
+
background-image: url('<?php echo $wp_admin_url; ?>xit.gif');
|
638 |
+
}
|
639 |
+
|
640 |
+
.tagchecklist span a:hover,
|
641 |
+
#bulk-titles div a:hover {
|
642 |
+
background-image: url('<?php echo $wp_admin_url; ?>xit.gif');
|
643 |
+
}
|
644 |
+
#screen-meta-links a.show-settings {
|
645 |
+
background-image: url('<?php echo $wp_admin_url; ?>arrows.png');
|
646 |
+
}
|
647 |
+
|
648 |
+
#screen-meta-links a.show-settings.screen-meta-active {
|
649 |
+
background-image: url('<?php echo $wp_admin_url; ?>arrows.png');
|
650 |
+
}
|
651 |
+
|
652 |
+
#adminmenushadow,
|
653 |
+
#adminmenuback {
|
654 |
+
background-image: url('<?php echo $wp_admin_url; ?>menu-shadow.png');
|
655 |
+
}
|
656 |
+
|
657 |
+
#adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,
|
658 |
+
#adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle {
|
659 |
+
background-image: url('<?php echo $wp_admin_url; ?>arrows-dark.png');
|
660 |
+
}
|
661 |
+
|
662 |
+
#adminmenu .wp-has-submenu:hover .wp-menu-toggle,
|
663 |
+
#adminmenu .wp-menu-open .wp-menu-toggle {
|
664 |
+
background-image: url('<?php echo $wp_admin_url; ?>arrows.png');
|
665 |
+
}
|
666 |
+
|
667 |
+
#collapse-button div {
|
668 |
+
background-image: url('<?php echo $wp_admin_url; ?>arrows.png');
|
669 |
+
}
|
670 |
+
|
671 |
+
/* menu and screen icons */
|
672 |
+
.icon16.icon-dashboard,
|
673 |
+
#adminmenu .menu-icon-dashboard div.wp-menu-image {
|
674 |
+
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
675 |
+
}
|
676 |
+
|
677 |
+
#adminmenu .menu-icon-dashboard:hover div.wp-menu-image,
|
678 |
+
#adminmenu .menu-icon-dashboard.wp-has-current-submenu div.wp-menu-image,
|
679 |
+
#adminmenu .menu-icon-dashboard.current div.wp-menu-image {
|
680 |
+
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
681 |
+
}
|
682 |
+
|
683 |
+
.icon16.icon-post,
|
684 |
+
#adminmenu .menu-icon-post div.wp-menu-image {
|
685 |
+
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
686 |
+
}
|
687 |
+
|
688 |
+
#adminmenu .menu-icon-post:hover div.wp-menu-image,
|
689 |
+
#adminmenu .menu-icon-post.wp-has-current-submenu div.wp-menu-image {
|
690 |
+
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
691 |
+
}
|
692 |
+
|
693 |
+
.icon16.icon-media,
|
694 |
+
#adminmenu .menu-icon-media div.wp-menu-image {
|
695 |
+
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
696 |
+
}
|
697 |
+
|
698 |
+
#adminmenu .menu-icon-media:hover div.wp-menu-image,
|
699 |
+
#adminmenu .menu-icon-media.wp-has-current-submenu div.wp-menu-image {
|
700 |
+
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
701 |
+
}
|
702 |
+
|
703 |
+
.icon16.icon-links,
|
704 |
+
#adminmenu .menu-icon-links div.wp-menu-image {
|
705 |
+
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
706 |
+
}
|
707 |
+
|
708 |
+
#adminmenu .menu-icon-links:hover div.wp-menu-image,
|
709 |
+
#adminmenu .menu-icon-links.wp-has-current-submenu div.wp-menu-image {
|
710 |
+
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
711 |
+
}
|
712 |
+
|
713 |
+
.icon16.icon-page,
|
714 |
+
#adminmenu .menu-icon-page div.wp-menu-image {
|
715 |
+
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
716 |
+
}
|
717 |
+
|
718 |
+
#adminmenu .menu-icon-page:hover div.wp-menu-image,
|
719 |
+
#adminmenu .menu-icon-page.wp-has-current-submenu div.wp-menu-image {
|
720 |
+
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
721 |
+
}
|
722 |
+
|
723 |
+
.icon16.icon-comments,
|
724 |
+
#adminmenu .menu-icon-comments div.wp-menu-image {
|
725 |
+
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
726 |
+
}
|
727 |
+
|
728 |
+
#adminmenu .menu-icon-comments:hover div.wp-menu-image,
|
729 |
+
#adminmenu .menu-icon-comments.wp-has-current-submenu div.wp-menu-image,
|
730 |
+
#adminmenu .menu-icon-comments.current div.wp-menu-image {
|
731 |
+
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
732 |
+
}
|
733 |
+
|
734 |
+
.icon16.icon-appearance,
|
735 |
+
#adminmenu .menu-icon-appearance div.wp-menu-image {
|
736 |
+
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
737 |
+
}
|
738 |
+
|
739 |
+
#adminmenu .menu-icon-appearance:hover div.wp-menu-image,
|
740 |
+
#adminmenu .menu-icon-appearance.wp-has-current-submenu div.wp-menu-image {
|
741 |
+
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
742 |
+
}
|
743 |
+
|
744 |
+
.icon16.icon-plugins,
|
745 |
+
#adminmenu .menu-icon-plugins div.wp-menu-image {
|
746 |
+
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
747 |
+
}
|
748 |
+
|
749 |
+
#adminmenu .menu-icon-plugins:hover div.wp-menu-image,
|
750 |
+
#adminmenu .menu-icon-plugins.wp-has-current-submenu div.wp-menu-image {
|
751 |
+
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
752 |
+
}
|
753 |
+
|
754 |
+
.icon16.icon-users,
|
755 |
+
#adminmenu .menu-icon-users div.wp-menu-image {
|
756 |
+
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
757 |
+
}
|
758 |
+
|
759 |
+
#adminmenu .menu-icon-users:hover div.wp-menu-image,
|
760 |
+
#adminmenu .menu-icon-users.wp-has-current-submenu div.wp-menu-image,
|
761 |
+
#adminmenu .menu-icon-users.current div.wp-menu-image {
|
762 |
+
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
763 |
+
}
|
764 |
+
|
765 |
+
.icon16.icon-tools,
|
766 |
+
#adminmenu .menu-icon-tools div.wp-menu-image {
|
767 |
+
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
768 |
+
}
|
769 |
+
|
770 |
+
#adminmenu .menu-icon-tools:hover div.wp-menu-image,
|
771 |
+
#adminmenu .menu-icon-tools.wp-has-current-submenu div.wp-menu-image,
|
772 |
+
#adminmenu .menu-icon-tools.current div.wp-menu-image {
|
773 |
+
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
774 |
+
}
|
775 |
+
|
776 |
+
.icon16.icon-settings,
|
777 |
+
#adminmenu .menu-icon-settings div.wp-menu-image {
|
778 |
+
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
779 |
+
}
|
780 |
+
|
781 |
+
#adminmenu .menu-icon-settings:hover div.wp-menu-image,
|
782 |
+
#adminmenu .menu-icon-settings.wp-has-current-submenu div.wp-menu-image {
|
783 |
+
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
784 |
+
}
|
785 |
+
|
786 |
+
.icon16.icon-site,
|
787 |
+
#adminmenu .menu-icon-site div.wp-menu-image {
|
788 |
+
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
789 |
+
}
|
790 |
+
|
791 |
+
#adminmenu .menu-icon-site:hover div.wp-menu-image,
|
792 |
+
#adminmenu .menu-icon-site.wp-has-current-submenu div.wp-menu-image {
|
793 |
+
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
794 |
+
}
|
795 |
+
/* end menu and screen icons */
|
796 |
+
|
797 |
+
/* Screen Icons */
|
798 |
+
.icon32.icon-post,
|
799 |
+
#icon-edit,
|
800 |
+
#icon-post {
|
801 |
+
background-image: url('<?php echo $wp_admin_url; ?>icons32.png?ver=20100531');
|
802 |
+
}
|
803 |
+
|
804 |
+
.icon32.icon-dashboard,
|
805 |
+
#icon-index {
|
806 |
+
background-image: url('<?php echo $wp_admin_url; ?>icons32.png?ver=20100531');
|
807 |
+
}
|
808 |
+
|
809 |
+
.icon32.icon-media,
|
810 |
+
#icon-upload {
|
811 |
+
background-image: url('<?php echo $wp_admin_url; ?>icons32.png?ver=20100531');
|
812 |
+
}
|
813 |
+
|
814 |
+
.icon32.icon-links,
|
815 |
+
#icon-link-manager,
|
816 |
+
#icon-link,
|
817 |
+
#icon-link-category {
|
818 |
+
background-image: url('<?php echo $wp_admin_url; ?>icons32.png?ver=20100531');
|
819 |
+
}
|
820 |
+
|
821 |
+
.icon32.icon-page,
|
822 |
+
#icon-edit-pages,
|
823 |
+
#icon-page {
|
824 |
+
background-image: url('<?php echo $wp_admin_url; ?>icons32.png?ver=20100531');
|
825 |
+
}
|
826 |
+
|
827 |
+
.icon32.icon-comments,
|
828 |
+
#icon-edit-comments {
|
829 |
+
background-image: url('<?php echo $wp_admin_url; ?>icons32.png?ver=20100531');
|
830 |
+
}
|
831 |
+
|
832 |
+
.icon32.icon-appearance,
|
833 |
+
#icon-themes {
|
834 |
+
background-image: url('<?php echo $wp_admin_url; ?>icons32.png?ver=20100531');
|
835 |
+
}
|
836 |
+
|
837 |
+
.icon32.icon-plugins,
|
838 |
+
#icon-plugins {
|
839 |
+
background-image: url('<?php echo $wp_admin_url; ?>icons32.png?ver=20100531');
|
840 |
+
}
|
841 |
+
|
842 |
+
.icon32.icon-users,
|
843 |
+
#icon-users,
|
844 |
+
#icon-profile,
|
845 |
+
#icon-user-edit {
|
846 |
+
background-image: url('<?php echo $wp_admin_url; ?>icons32.png?ver=20100531');
|
847 |
+
}
|
848 |
+
|
849 |
+
.icon32.icon-tools,
|
850 |
+
#icon-tools,
|
851 |
+
#icon-admin {
|
852 |
+
background-image: url('<?php echo $wp_admin_url; ?>icons32.png?ver=20100531');
|
853 |
+
}
|
854 |
+
|
855 |
+
.icon32.icon-settings,
|
856 |
+
#icon-options-general {
|
857 |
+
background-image: url('<?php echo $wp_admin_url; ?>icons32.png?ver=20100531');
|
858 |
+
}
|
859 |
+
|
860 |
+
.icon32.icon-site,
|
861 |
+
#icon-ms-admin {
|
862 |
+
background-image: url('<?php echo $wp_admin_url; ?>icons32.png?ver=20100531');
|
863 |
+
}
|
864 |
+
/* end screen icons */
|
865 |
+
|
866 |
+
.meta-box-sortables .postbox:hover .handlediv {
|
867 |
+
background-image: url('<?php echo $wp_admin_url; ?>arrows.png');
|
868 |
+
}
|
869 |
+
|
870 |
+
.tablenav .tablenav-pages a {
|
871 |
+
background-image: url('<?php echo $wp_admin_url; ?>menu-bits.gif?ver=20100610');
|
872 |
+
}
|
873 |
+
|
874 |
+
.view-switch #view-switch-list {
|
875 |
+
background-image: url('<?php echo $wp_admin_url; ?>list.png');
|
876 |
+
}
|
877 |
+
|
878 |
+
.view-switch .current #view-switch-list {
|
879 |
+
background-image: url('<?php echo $wp_admin_url; ?>list.png');
|
880 |
+
}
|
881 |
+
|
882 |
+
.view-switch #view-switch-excerpt {
|
883 |
+
background-image: url('<?php echo $wp_admin_url; ?>list.png');
|
884 |
+
}
|
885 |
+
|
886 |
+
.view-switch .current #view-switch-excerpt {
|
887 |
+
background-image: url('<?php echo $wp_admin_url; ?>list.png');
|
888 |
+
}
|
889 |
+
|
890 |
+
#header-logo {
|
891 |
+
background-image: url('<?php echo $wp_admin_url; ?>wp-logo.png?ver=20110504');
|
892 |
+
}
|
893 |
+
|
894 |
+
.sidebar-name-arrow {
|
895 |
+
background-image: url('<?php echo $wp_admin_url; ?>arrows.png');
|
896 |
+
}
|
897 |
+
|
898 |
+
.sidebar-name:hover .sidebar-name-arrow {
|
899 |
+
background-image: url('<?php echo $wp_admin_url; ?>arrows-dark.png');
|
900 |
+
}
|
901 |
+
|
902 |
+
.item-edit {
|
903 |
+
background-image: url('<?php echo $wp_admin_url; ?>arrows.png');
|
904 |
+
}
|
905 |
+
|
906 |
+
.item-edit:hover {
|
907 |
+
background-image: url('<?php echo $wp_admin_url; ?>arrows-dark.png');
|
908 |
+
}
|
909 |
+
|
910 |
+
.wp-badge {
|
911 |
+
background-image: url('<?php echo $wp_admin_url; ?>wp-badge.png');
|
912 |
+
background-image: url('<?php echo $wp_admin_url; ?>wp-badge.png'), -ms-linear-gradient(top, #378aac, #165d84); /* IE10 */
|
913 |
+
background-image: url('<?php echo $wp_admin_url; ?>wp-badge.png'), -moz-linear-gradient(top, #378aac, #165d84); /* Firefox */
|
914 |
+
background-image: url('<?php echo $wp_admin_url; ?>wp-badge.png'), -o-linear-gradient(top, #378aac, #165d84); /* Opera */
|
915 |
+
background-image: url('<?php echo $wp_admin_url; ?>wp-badge.png'), -webkit-gradient(linear, left top, left bottom, from(#378aac), to(#165d84)); /* old Webkit */
|
916 |
+
background-image: url('<?php echo $wp_admin_url; ?>wp-badge.png'), -webkit-linear-gradient(top, #378aac, #165d84); /* new Webkit */
|
917 |
+
background-image: url('<?php echo $wp_admin_url; ?>wp-badge.png'), linear-gradient(top, #378aac, #165d84); /* proposed W3C Markup */
|
918 |
+
}
|
919 |
+
|
920 |
+
.rtl .post-com-count {
|
921 |
+
background-image: url('<?php echo $wp_admin_url; ?>bubble_bg-rtl.gif');
|
922 |
+
}
|
923 |
+
|
924 |
+
/* Menu */
|
925 |
+
.rtl #adminmenushadow,
|
926 |
+
.rtl #adminmenuback {
|
927 |
+
background-image: url('<?php echo $wp_admin_url; ?>menu-shadow-rtl.png');
|
928 |
+
}
|
929 |
+
|
930 |
+
.rtl #adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,
|
931 |
+
.rtl #adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle {
|
932 |
+
background-image: url('<?php echo $wp_admin_url; ?>arrows-dark.png');
|
933 |
+
}
|
934 |
+
|
935 |
+
.rtl #adminmenu .wp-has-submenu:hover .wp-menu-toggle,
|
936 |
+
.rtl #adminmenu .wp-menu-open .wp-menu-toggle {
|
937 |
+
background-image: url('<?php echo $wp_admin_url; ?>arrows.png');
|
938 |
+
}
|
939 |
+
|
940 |
+
.rtl .meta-box-sortables .postbox:hover .handlediv {
|
941 |
+
background-image: url('<?php echo $wp_admin_url; ?>arrows.png');
|
942 |
+
}
|
943 |
+
|
944 |
+
.rtl .tablenav .tablenav-pages a {
|
945 |
+
background-image: url('<?php echo $wp_admin_url; ?>menu-bits-rtl.gif?ver=20100610');
|
946 |
+
}
|
947 |
+
|
948 |
+
.rtl .sidebar-name-arrow {
|
949 |
+
background-image: url('<?php echo $wp_admin_url; ?>arrows.png');
|
950 |
+
}
|
951 |
+
|
952 |
+
.rtl .sidebar-name:hover .sidebar-name-arrow {
|
953 |
+
background-image: url('<?php echo $wp_admin_url; ?>arrows-dark.png');
|
954 |
+
}
|
955 |
+
|
956 |
+
@media only screen and (-webkit-min-device-pixel-ratio: 1.5) {
|
957 |
+
.icon32.icon-post,
|
958 |
+
#icon-edit,
|
959 |
+
#icon-post,
|
960 |
+
.icon32.icon-dashboard,
|
961 |
+
#icon-index,
|
962 |
+
.icon32.icon-media,
|
963 |
+
#icon-upload,
|
964 |
+
.icon32.icon-links,
|
965 |
+
#icon-link-manager,
|
966 |
+
#icon-link,
|
967 |
+
#icon-link-category,
|
968 |
+
.icon32.icon-page,
|
969 |
+
#icon-edit-pages,
|
970 |
+
#icon-page,
|
971 |
+
.icon32.icon-comments,
|
972 |
+
#icon-edit-comments,
|
973 |
+
.icon32.icon-appearance,
|
974 |
+
#icon-themes,
|
975 |
+
.icon32.icon-plugins,
|
976 |
+
#icon-plugins,
|
977 |
+
.icon32.icon-users,
|
978 |
+
#icon-users,
|
979 |
+
#icon-profile,
|
980 |
+
#icon-user-edit,
|
981 |
+
.icon32.icon-tools,
|
982 |
+
#icon-tools,
|
983 |
+
#icon-admin,
|
984 |
+
.icon32.icon-settings,
|
985 |
+
#icon-options-general,
|
986 |
+
.icon32.icon-site,
|
987 |
+
#icon-ms-admin {
|
988 |
+
background-image: url('<?php echo $wp_admin_url; ?>icons32-2x.png?ver=20120412') !important;
|
989 |
+
background-size: 708px 45px;
|
990 |
+
}
|
991 |
+
|
992 |
+
.icon16.icon-dashboard,
|
993 |
+
.menu-icon-dashboard div.wp-menu-image,
|
994 |
+
.icon16.icon-post,
|
995 |
+
.menu-icon-post div.wp-menu-image,
|
996 |
+
.icon16.icon-media,
|
997 |
+
.menu-icon-media div.wp-menu-image,
|
998 |
+
.icon16.icon-links,
|
999 |
+
.menu-icon-links div.wp-menu-image,
|
1000 |
+
.icon16.icon-page,
|
1001 |
+
.menu-icon-page div.wp-menu-image,
|
1002 |
+
.icon16.icon-comments,
|
1003 |
+
.menu-icon-comments div.wp-menu-image,
|
1004 |
+
.icon16.icon-appearance,
|
1005 |
+
.menu-icon-appearance div.wp-menu-image,
|
1006 |
+
.icon16.icon-plugins,
|
1007 |
+
.menu-icon-plugins div.wp-menu-image,
|
1008 |
+
.icon16.icon-users,
|
1009 |
+
.menu-icon-users div.wp-menu-image,
|
1010 |
+
.icon16.icon-tools,
|
1011 |
+
.menu-icon-tools div.wp-menu-image,
|
1012 |
+
.icon16.icon-settings,
|
1013 |
+
.menu-icon-settings div.wp-menu-image,
|
1014 |
+
.icon16.icon-site,
|
1015 |
+
.menu-icon-site div.wp-menu-image {
|
1016 |
+
background-image: url('<?php echo $wp_admin_url; ?>menu-2x.png?ver=20120412') !important;
|
1017 |
+
background-size: 390px 64px;
|
1018 |
+
}
|
1019 |
+
}
|
1020 |
+
<?php endif; ?>
|
1021 |
+
|
1022 |
/*]]>*/
|
1023 |
</style>
|
1024 |
|
1037 |
* @uses wp_admin_css_color() To register the color scheme
|
1038 |
*/
|
1039 |
public function register_admin_style () {
|
1040 |
+
wp_admin_css_color( 'bbpress', __( 'Green', 'bbpress' ), $this->styles_url . 'admin.css', array( '#222222', '#006600', '#deece1', '#6eb469' ) );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1041 |
}
|
1042 |
|
1043 |
/** Updaters **************************************************************/
|
bbp-admin/bbp-converter.php
CHANGED
@@ -1226,7 +1226,7 @@ abstract class BBP_Converter_Base {
|
|
1226 |
}
|
1227 |
|
1228 |
protected function callback_slug( $field ) {
|
1229 |
-
return
|
1230 |
}
|
1231 |
|
1232 |
protected function callback_negative( $field ) {
|
1226 |
}
|
1227 |
|
1228 |
protected function callback_slug( $field ) {
|
1229 |
+
return sanitize_title( $field );
|
1230 |
}
|
1231 |
|
1232 |
protected function callback_negative( $field ) {
|
bbp-admin/bbp-tools.php
CHANGED
@@ -727,6 +727,9 @@ function bbp_admin_repair_forum_visibility() {
|
|
727 |
update_option( '_bbp_private_forums', $private_forums->posts ); // Private forums
|
728 |
update_option( '_bbp_hidden_forums', $hidden_forums->posts ); // Hidden forums
|
729 |
|
|
|
|
|
|
|
730 |
// Complete results
|
731 |
$result = __( 'Complete!', 'bbpress' );
|
732 |
return array( 0, sprintf( $statement, $result ) );
|
727 |
update_option( '_bbp_private_forums', $private_forums->posts ); // Private forums
|
728 |
update_option( '_bbp_hidden_forums', $hidden_forums->posts ); // Hidden forums
|
729 |
|
730 |
+
// Reset the $post global
|
731 |
+
wp_reset_postdata();
|
732 |
+
|
733 |
// Complete results
|
734 |
$result = __( 'Complete!', 'bbpress' );
|
735 |
return array( 0, sprintf( $statement, $result ) );
|
bbp-admin/styles/admin-1.css
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
html,.wp-dialog{background-color:#fff}textarea,input[type="text"],input[type="password"],input[type="file"],input[type="button"],input[type="submit"],input[type="reset"],input[type="email"],input[type="number"],input[type="search"],input[type="tel"],input[type="url"],select{border-color:#dfdfdf;background-color:#fff}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="file"]:focus,input[type="button"]:focus,input[type="submit"]:focus,input[type="reset"]:focus,input[type="email"]:focus,input[type="number"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="url"]:focus,select:focus{border-color:#bbb}kbd,code{background:#eaeaea}input[readonly]{background-color:#eee}.find-box-search{border-color:#dfdfdf;background-color:#f1f1f1}.find-box{background-color:#f1f1f1}.find-box-inside{background-color:#fff}a.page-numbers:hover{border-color:#999}body,#wpbody,.form-table .pre{color:#333}body>#upload-menu{border-bottom-color:#fff}#postcustomstuff table,#your-profile fieldset,#rightnow,div.dashboard-widget,#dashboard-widgets p.dashboard-widget-links{border-color:#ccc}#poststuff .inside label.spam,#poststuff .inside label.deleted{color:red}#poststuff .inside label.waiting{color:orange}#poststuff .inside label.approved{color:green}#postcustomstuff table{border-color:#dfdfdf;background-color:#f9f9f9}#postcustomstuff thead th{background-color:#f1f1f1}.widefat{border-color:#dfdfdf;background-color:#eefcf1}textarea.widefat{background-color:#fff}div.dashboard-widget-error{background-color:#c43}div.dashboard-widget-notice{background-color:#cfe1ef}div.dashboard-widget-submit{border-top-color:#ccc}div.tabs-panel,.wp-tab-panel,ul.category-tabs li.tabs,ul.add-menu-item-tabs li.tabs,.wp-tab-active{border-color:#dfdfdf;background-color:#fff}ul.category-tabs li.tabs,ul.add-menu-item-tabs li.tabs,.wp-tab-active{background-color:#fff}input.disabled,textarea.disabled{background-color:#ccc}#plugin-information .action-button a,#plugin-information .action-button a:hover,#plugin-information .action-button a:visited{color:#fff}.widget .widget-top,.postbox h3,.stuffbox h3,.widefat thead tr th,.widefat tfoot tr th,h3.dashboard-widget-title,h3.dashboard-widget-title span,h3.dashboard-widget-title small,.find-box-head,.sidebar-name,#nav-menu-header,#nav-menu-footer,.menu-item-handle,#fullscreen-topbar{background-color:#f1f1f1;background-image:-ms-linear-gradient(top,#eefcf1,#deece1);background-image:-moz-linear-gradient(top,#eefcf1,#deece1);background-image:-o-linear-gradient(top,#eefcf1,#deece1);background-image:-webkit-gradient(linear,left top,left bottom,from(#eefcf1),to(#deece1));background-image:-webkit-linear-gradient(top,#eefcf1,#deece1);background-image:linear-gradient(top,#eefcf1,#deece1)}.widget .widget-top,.postbox h3,.stuffbox h3{border-bottom-color:#dfdfdf;text-shadow:#fff 0 1px 0;-moz-box-shadow:0 1px 0 #fff;-webkit-box-shadow:0 1px 0 #fff;box-shadow:0 1px 0 #fff}.form-table th,.form-wrap label{color:#222;text-shadow:#fff 0 1px 0}.description,.form-wrap p{color:#666}strong .post-com-count span{background-color:#070}.sorthelper{background-color:#ccf3fa}.ac_match,.subsubsub a.current{color:#000}.wrap h2{color:#464646}.wrap .add-new-h2{background:#f1f1f1}.subtitle{color:#777}.ac_over{background-color:#f0f0b8}.ac_results{background-color:#fff;border-color:#6eb469}.ac_results li{color:#101010}.alternate,.alt{background-color:#fefefe}.available-theme a.screenshot{background-color:#f1f1f1;border-color:#ddd}.bar{background-color:#e8e8e8;border-right-color:#99d}#media-upload,#media-upload .media-item .slidetoggle{background:#fff}#media-upload .slidetoggle{border-top-color:#dfdfdf}div.error,.login #login_error{background-color:#ffebe8;border-color:#c00}div.error a{color:#c00}.form-invalid{background-color:#ffebe8!important}.form-invalid input,.form-invalid select{border-color:#c00!important}.submit{border-color:#dfdfdf}.highlight{background-color:#e4f2fd;color:#000}.howto,.nonessential,#edit-slug-box,.form-input-tip,.subsubsub{color:#666}#wpbody-content #media-items .describe{border-top-color:#dfdfdf}.media-upload-form label.form-help,td.help{color:#9a9a9a}.post-com-count{background-image:url(../../../../wp-admin/images/bubble_bg.gif);color:#fff}.post-com-count span{background-color:#bbb;color:#fff}.post-com-count:hover span{background-color:#d54e21}.quicktags,.search{background-color:#ccc;color:#000}.side-info h5{border-bottom-color:#dadada}.side-info ul{color:#666}.button,.button-secondary,.submit input,input[type=button],input[type=submit]{border-color:#bbb;color:#464646}.button:hover,.button-secondary:hover,.submit input:hover,input[type=button]:hover,input[type=submit]:hover{color:#000;border-color:#666}.button,.submit input,.button-secondary{background:#f2f2f2 url(../../../../wp-admin/images/white-grad.png) repeat-x scroll left top;text-shadow:rgba(255,255,255,1) 0 1px 0}.button:active,.submit input:active,.button-secondary:active{background:#eee url(../../../../wp-admin/images/white-grad-active.png) repeat-x scroll left top}input.button-primary,button.button-primary,a.button-primary{border-color:#298cba;font-weight:bold;color:#fff;background:#070 url(../images/button-grad.png) repeat-x scroll left top;text-shadow:rgba(0,0,0,0.3) 0 -1px 0}input.button-primary:active,button.button-primary:active,a.button-primary:active{background:#070 url(../images/button-grad-active.png) repeat-x scroll left top;color:#eaf2fa}input.button-primary:hover,button.button-primary:hover,a.button-primary:hover,a.button-primary:focus,a.button-primary:active{border-color:#13455b;color:#eaf2fa}.button-disabled,.button[disabled],.button:disabled,.button-secondary[disabled],.button-secondary:disabled,a.button.disabled{color:#aaa!important;border-color:#ddd!important}.button-primary-disabled,.button-primary[disabled],.button-primary:disabled{color:#9fd0d5!important;background:#298cba!important}a:hover,a:active,a:focus{color:#d54e21}#adminmenu a:hover,#adminmenu li.menu-top>a:focus,#adminmenu ul.wp-submenu a:hover,#the-comment-list .comment a:hover,#rightnow a:hover,#media-upload a.del-link:hover,div.dashboard-widget-submit input:hover,.subsubsub a:hover,.subsubsub a.current:hover,.ui-tabs-nav a:hover,.plugins .inactive a:hover,#all-plugins-table .plugins .inactive a:hover,#search-plugins-table .plugins .inactive a:hover{color:#d54e21}#the-comment-list .comment-item,#dashboard-widgets #dashboard_quick_press form p.submit{border-color:#dfdfdf}#side-sortables .category-tabs .tabs a,#side-sortables .add-menu-item-tabs .tabs a,.wp-tab-bar .wp-tab-active a{color:#333}#rightnow .rbutton{background-color:#ebebeb;color:#264761}.submitbox .submit{background-color:#464646;color:#ccc}.plugins a.delete:hover,#all-plugins-table .plugins a.delete:hover,#search-plugins-table .plugins a.delete:hover,.submitbox .submitdelete{color:#f00;border-bottom-color:#f00}.submitbox .submitdelete:hover,#media-items a.delete:hover{color:#fff;background-color:#f00;border-bottom-color:#f00}#normal-sortables .submitbox .submitdelete:hover{color:#000;background-color:#f00;border-bottom-color:#f00}.tablenav .dots{border-color:transparent}.tablenav .next,.tablenav .prev{border-color:transparent;color:#070}.tablenav .next:hover,.tablenav .prev:hover{border-color:transparent;color:#d54e21}div.updated,.login .message{background-color:#ffffe0;border-color:#e6db55}.update-message{color:#000}a.page-numbers{border-bottom-color:#b8d3e2}.commentlist li{border-bottom-color:#ccc}.widefat td,.widefat th{border-top-color:#fff;border-bottom-color:#dfdfdf}.widefat th{text-shadow:rgba(255,255,255,0.8) 0 1px 0}.widefat td{color:#555}.widefat p,.widefat ol,.widefat ul{color:#333}.widefat thead tr th,.widefat tfoot tr th,h3.dashboard-widget-title,h3.dashboard-widget-title span,h3.dashboard-widget-title small,.find-box-head{color:#333}th.sortable a:hover,th.sortable a:active,th.sortable a:focus{color:#333}h3.dashboard-widget-title small a{color:#d7d7d7}h3.dashboard-widget-title small a:hover{color:#fff}a,#adminmenu a,#the-comment-list p.comment-author strong a,#media-upload a.del-link,#media-items a.delete,.plugins a.delete,.ui-tabs-nav a{color:#070}#adminmenu .awaiting-mod,#adminmenu .update-plugins,#sidemenu a .update-plugins,#rightnow .reallynow{background-color:#464646;color:#fff;-moz-box-shadow:rgba(255,255,255,0.5) 0 1px 0;-khtml-box-shadow:rgba(255,255,255,0.5) 0 1px 0;-webkit-box-shadow:rgba(255,255,255,0.5) 0 1px 0;box-shadow:rgba(255,255,255,0.5) 0 1px 0}#plugin-information .action-button{background-color:#d54e21;color:#fff}#adminmenu li.current a .awaiting-mod,#adminmenu li a.wp-has-current-submenu .update-plugins{background-color:#464646;color:#fff;-moz-box-shadow:rgba(255,255,255,0.5) 0 1px 0;-khtml-box-shadow:rgba(255,255,255,0.5) 0 1px 0;-webkit-box-shadow:rgba(255,255,255,0.5) 0 1px 0;box-shadow:rgba(255,255,255,0.5) 0 1px 0}div#media-upload-header,div#plugin-information-header{background-color:#eefcf1;border-bottom-color:#dfdfdf}#currenttheme img{border-color:#666}#dashboard_secondary div.dashboard-widget-content ul li a{background-color:#eefcf1}input.readonly,textarea.readonly{background-color:#ddd}#editable-post-name{background-color:#fffbcc}#edit-slug-box strong,.tablenav .displaying-num,#submitted-on,.submitted-on{color:#777}.login #nav a,.login #backtoblog a{color:#070!important}.login #nav a:hover,.login #backtoblog a:hover{color:#d54e21!important}#footer{color:#777;border-color:#dfdfdf}#media-items,.imgedit-group,.media-item{border-color:#dfdfdf}.checkbox,.side-info,.plugins tr,#your-profile #rich_editing{background-color:#fcfcfc}.plugins .inactive,.plugins .inactive th,.plugins .inactive td,tr.inactive+tr.plugin-update-tr .plugin-update{background-color:#f4f4f4}.plugin-update-tr .update-message{background-color:#fffbe4;border-color:#dfdfdf}.plugins .active,.plugins .active th,.plugins .active td{color:#000}.plugins .inactive a{color:#579}#the-comment-list tr.undo,#the-comment-list div.undo{background-color:#f4f4f4}#the-comment-list .unapproved{background-color:#ffffe0}#the-comment-list .approve a{color:#006505}#the-comment-list .unapprove a{color:#d98500}table.widefat span.delete a,table.widefat span.trash a,table.widefat span.spam a,#dashboard_recent_comments .delete a,#dashboard_recent_comments .trash a,#dashboard_recent_comments .spam a{color:#bc0b0b}.welcome-panel{border-color:#dfdfdf}.welcome-panel p{color:#777}.welcome-panel-column p{color:#464646}.welcome-panel .welcome-panel-close{background:#eee;text-shadow:1px 1px 1px #eee}.welcome-panel h3{text-shadow:1px 1px 1px white}.widget,#widget-list .widget-top,.postbox,#titlediv,#poststuff .postarea,.stuffbox{border-color:#dfdfdf;-moz-box-shadow:inset 0 1px 0 #fff;-webkit-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff;-moz-border-radius:3px;-khtml-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.widget,#widget-list .widget-top,.postbox,.menu-item-settings{background-color:#eefcf1;background-image:-ms-linear-gradient(top,#eefcf1,#deece1);background-image:-moz-linear-gradient(top,#eefcf1,#deece1);background-image:-o-linear-gradient(top,#eefcf1,#deece1);background-image:-webkit-gradient(linear,left top,left bottom,from(#eefcf1),to(#deece1));background-image:-webkit-linear-gradient(top,#eefcf1,#deece1);background-image:linear-gradient(top,#eefcf1,#deece1)}.postbox h3{color:#464646}.widget .widget-top{color:#222}.sidebar-name:hover h3,.postbox h3:hover{color:#000}.curtime #timestamp{background-image:url(../../../../wp-admin/images/date-button.gif)}#quicktags #ed_link{color:#00f}#rightnow .youhave{background-color:#f0f6fb}#rightnow a{color:#448abd}.tagchecklist span a,#bulk-titles div a{background:url(../../../../wp-admin/images/xit.gif) no-repeat}.tagchecklist span a:hover,#bulk-titles div a:hover{background:url(../../../../wp-admin/images/xit.gif) no-repeat -10px 0}#update-nag,.update-nag{background-color:#fffbcc;border-color:#e6db55;color:#555}#screen-meta{background-color:#f1f1f1;border-color:#ccc;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.05);box-shadow:0 1px 3px rgba(0,0,0,0.05)}.contextual-help-tabs a:hover{color:#333}.contextual-help-sidebar,.contextual-help-tabs .active{border-color:#ccc}.contextual-help-tabs .active,.contextual-help-tabs .active a,.contextual-help-tabs .active a:hover{background:#fff;color:#000}.contextual-help-tabs-wrap{border-color:#ccc;background-color:#fff}#screen-options-link-wrap,#contextual-help-link-wrap{background-color:#e3e3e3;border-right:1px solid transparent;border-left:1px solid transparent;border-bottom:1px solid transparent;background-image:-ms-linear-gradient(bottom,#dfdfdf,#f1f1f1);background-image:-moz-linear-gradient(bottom,#dfdfdf,#f1f1f1);background-image:-o-linear-gradient(bottom,#dfdfdf,#f1f1f1);background-image:-webkit-gradient(linear,left bottom,left top,from(#dfdfdf),to(#f1f1f1));background-image:-webkit-linear-gradient(bottom,#dfdfdf,#f1f1f1);background-image:linear-gradient(bottom,#dfdfdf,#f1f1f1)}#screen-meta-links a.show-settings{color:#777}#screen-meta-links a.show-settings:hover{color:#000}#screen-meta-links a.show-settings{background:transparent url(../../../../wp-admin/images/arrows.png) no-repeat right 3px}#screen-meta-links a.show-settings.screen-meta-active{background:transparent url(../../../../wp-admin/images/arrows.png) no-repeat right -33px}.login #backtoblog a{color:#464646}#wphead{border-bottom:#dfdfdf 1px solid}#wphead h1 a{color:#464646}#footer a:link,#footer a:visited{text-decoration:none}#footer a:hover{color:#000;text-decoration:underline}.file-error,abbr.required,.widget-control-remove:hover,table.widefat .delete a:hover,table.widefat .trash a:hover,table.widefat .spam a:hover,#dashboard_recent_comments .delete a:hover,#dashboard_recent_comments .trash a:hover #dashboard_recent_comments .spam a:hover{color:#f00}#pass-strength-result{background-color:#eee;border-color:#ddd!important}#pass-strength-result.bad{background-color:#ffb78c;border-color:#ff853c!important}#pass-strength-result.good{background-color:#ffec8b;border-color:#fc0!important}#pass-strength-result.short{background-color:#ffa0a0;border-color:#f04040!important}#pass-strength-result.strong{background-color:#c3ff88;border-color:#8dff1c!important}#titlediv #title{border-color:#ccc}#post-status-info{border-color:#dfdfdf #ccc #ccc;background-color:#eaeaea}.editwidget .widget-inside{border-color:#dfdfdf}#titlediv #title{background-color:#fff}#tTips p#tTips_inside{background-color:#ddd;color:#333}#timestampdiv input,#namediv input,#poststuff .inside .the-tagcloud{border-color:#ddd}#adminmenuback,#adminmenuwrap{background-color:#deece1;border-color:#ccc}#adminmenushadow,#adminmenuback{background-image:url(../../../../wp-admin/images/menu-shadow.png);background-position:top right;background-repeat:repeat-y}#adminmenu li.wp-menu-separator{background:#dfdfdf;border-color:#cfcfcf}#adminmenu div.separator{border-color:#e1e1e1}#adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,#adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle{background:transparent url(../../../../wp-admin/images/arrows-dark.png) no-repeat -1px 6px}#adminmenu .wp-has-submenu:hover .wp-menu-toggle,#adminmenu .wp-menu-open .wp-menu-toggle{background:transparent url(../../../../wp-admin/images/arrows.png) no-repeat -2px 6px}#adminmenu a.menu-top,.folded #adminmenu li.menu-top,#adminmenu .wp-submenu .wp-submenu-head{border-top-color:#eefcf1;border-bottom-color:#dfdfdf}#adminmenu li.wp-menu-open{border-color:#dfdfdf}#adminmenu li.menu-top:hover>a,#adminmenu li.menu-top>a:focus{background-color:#eefcf1;text-shadow:0 1px 0 rgba(255,255,255,0.4)}#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,#adminmenu li.current a.menu-top,.folded #adminmenu li.wp-has-current-submenu,.folded #adminmenu li.current.menu-top,#adminmenu .wp-menu-arrow,#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head{background-color:#777;background-image:-ms-linear-gradient(bottom,#060,#6eb469);background-image:-moz-linear-gradient(bottom,#060,#6eb469);background-image:-o-linear-gradient(bottom,#060,#6eb469);background-image:-webkit-gradient(linear,left bottom,left top,from(#060),to(#6eb469));background-image:-webkit-linear-gradient(bottom,#060,#6eb469);background-image:linear-gradient(bottom,#060,#6eb469)}#adminmenu .wp-menu-arrow div{background-color:#777;background-image:-ms-linear-gradient(right bottom,#060,#6eb469);background-image:-moz-linear-gradient(right bottom,#060,#6eb469);background-image:-o-linear-gradient(right bottom,#060,#6eb469);background-image:-webkit-gradient(linear,right bottom,left top,from(#060),to(#6eb469));background-image:-webkit-linear-gradient(right bottom,#060,#6eb469);background-image:linear-gradient(right bottom,#060,#6eb469)}#adminmenu li.wp-not-current-submenu .wp-menu-arrow{border-top-color:#eefcf1;border-bottom-color:#dfdfdf;background:#eefcf1}#adminmenu li.wp-not-current-submenu .wp-menu-arrow div{background:#eefcf1;border-color:#ccc}.folded #adminmenu li.menu-top li:hover a{background-image:none}#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,#adminmenu li.current a.menu-top,#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head{text-shadow:0 -1px 0 #333;color:#fff;border-top-color:#6eb469;border-bottom-color:#060}.folded #adminmenu li.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{border-top-color:#6eb469;border-bottom-color:#060}#adminmenu .wp-submenu a:hover,#adminmenu .wp-submenu a:focus{background-color:#eefcf1;color:#333}#adminmenu .wp-submenu li.current,#adminmenu .wp-submenu li.current a,#adminmenu .wp-submenu li.current a:hover{color:#333}#adminmenu .wp-submenu ul{background-color:#fff}#adminmenu .wp-submenu-wrap,#adminmenu .wp-submenu ul{border-color:#dfdfdf}#adminmenu .wp-submenu-wrap,.folded #adminmenu .wp-has-current-submenu .wp-submenu-wrap{-moz-box-shadow:2px 2px 5px rgba(0,0,0,0.4);-webkit-box-shadow:2px 2px 5px rgba(0,0,0,0.4);box-shadow:2px 2px 5px rgba(0,0,0,0.4)}#adminmenu .wp-submenu .wp-submenu-head{border-right-color:#dfdfdf;background-color:#deece1}#adminmenu div.wp-submenu{background-color:transparent}#collapse-menu{color:#aaa}#collapse-menu:hover{color:#999}#collapse-button{border-color:#ccc;background-color:#f4f4f4;background-image:-ms-linear-gradient(bottom,#dfdfdf,#fff);background-image:-moz-linear-gradient(bottom,#dfdfdf,#fff);background-image:-o-linear-gradient(bottom,#dfdfdf,#fff);background-image:-webkit-gradient(linear,left bottom,left top,from(#dfdfdf),to(#fff));background-image:-webkit-linear-gradient(bottom,#dfdfdf,#fff);background-image:linear-gradient(bottom,#dfdfdf,#fff)}#collapse-menu:hover #collapse-button{border-color:#aaa}#collapse-button div{background:transparent url(../../../../wp-admin/images/arrows.png) no-repeat 0 -72px}.folded #collapse-button div{background-position:0 -108px}.icon16.icon-dashboard,#adminmenu .menu-icon-dashboard div.wp-menu-image{background:transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -60px -33px}#adminmenu .menu-icon-dashboard:hover div.wp-menu-image,#adminmenu .menu-icon-dashboard.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-dashboard.current div.wp-menu-image{background:transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -60px -1px}.icon16.icon-post,#adminmenu .menu-icon-post div.wp-menu-image{background:transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -271px -33px}#adminmenu .menu-icon-post:hover div.wp-menu-image,#adminmenu .menu-icon-post.wp-has-current-submenu div.wp-menu-image{background:transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -271px -1px}.icon16.icon-media,#adminmenu .menu-icon-media div.wp-menu-image{background:transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -120px -33px}#adminmenu .menu-icon-media:hover div.wp-menu-image,#adminmenu .menu-icon-media.wp-has-current-submenu div.wp-menu-image{background:transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -120px -1px}.icon16.icon-links,#adminmenu .menu-icon-links div.wp-menu-image{background:transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -90px -33px}#adminmenu .menu-icon-links:hover div.wp-menu-image,#adminmenu .menu-icon-links.wp-has-current-submenu div.wp-menu-image{background:transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -90px -1px}.icon16.icon-page,#adminmenu .menu-icon-page div.wp-menu-image{background:transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -150px -33px}#adminmenu .menu-icon-page:hover div.wp-menu-image,#adminmenu .menu-icon-page.wp-has-current-submenu div.wp-menu-image{background:transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -150px -1px}.icon16.icon-comments,#adminmenu .menu-icon-comments div.wp-menu-image{background:transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -30px -33px}#adminmenu .menu-icon-comments:hover div.wp-menu-image,#adminmenu .menu-icon-comments.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-comments.current div.wp-menu-image{background:transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -30px -1px}.icon16.icon-appearance,#adminmenu .menu-icon-appearance div.wp-menu-image{background:transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll 0 -33px}#adminmenu .menu-icon-appearance:hover div.wp-menu-image,#adminmenu .menu-icon-appearance.wp-has-current-submenu div.wp-menu-image{background:transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll 0 -1px}.icon16.icon-plugins,#adminmenu .menu-icon-plugins div.wp-menu-image{background:transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -180px -33px}#adminmenu .menu-icon-plugins:hover div.wp-menu-image,#adminmenu .menu-icon-plugins.wp-has-current-submenu div.wp-menu-image{background:transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -180px -1px}.icon16.icon-users,#adminmenu .menu-icon-users div.wp-menu-image{background:transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -300px -33px}#adminmenu .menu-icon-users:hover div.wp-menu-image,#adminmenu .menu-icon-users.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-users.current div.wp-menu-image{background:transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -300px -1px}.icon16.icon-tools,#adminmenu .menu-icon-tools div.wp-menu-image{background:transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -210px -33px}#adminmenu .menu-icon-tools:hover div.wp-menu-image,#adminmenu .menu-icon-tools.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-tools.current div.wp-menu-image{background:transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -210px -1px}.icon16.icon-settings,#adminmenu .menu-icon-settings div.wp-menu-image{background:transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -240px -33px}#adminmenu .menu-icon-settings:hover div.wp-menu-image,#adminmenu .menu-icon-settings.wp-has-current-submenu div.wp-menu-image{background:transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -240px -1px}.icon16.icon-site,#adminmenu .menu-icon-site div.wp-menu-image{background:transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -360px -33px}#adminmenu .menu-icon-site:hover div.wp-menu-image,#adminmenu .menu-icon-site.wp-has-current-submenu div.wp-menu-image{background:transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -360px -1px}.icon32.icon-post,#icon-edit,#icon-post{background:transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -552px -5px}.icon32.icon-dashboard,#icon-index{background:transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -137px -5px}.icon32.icon-media,#icon-upload{background:transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -251px -5px}.icon32.icon-links,#icon-link-manager,#icon-link,#icon-link-category{background:transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -190px -5px}.icon32.icon-page,#icon-edit-pages,#icon-page{background:transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -312px -5px}.icon32.icon-comments,#icon-edit-comments{background:transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -72px -5px}.icon32.icon-appearance,#icon-themes{background:transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -11px -5px}.icon32.icon-plugins,#icon-plugins{background:transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -370px -5px}.icon32.icon-users,#icon-users,#icon-profile,#icon-user-edit{background:transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -600px -5px}.icon32.icon-tools,#icon-tools,#icon-admin{background:transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -432px -5px}.icon32.icon-settings,#icon-options-general{background:transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -492px -5px}.icon32.icon-site,#icon-ms-admin{background:transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -659px -5px}table.diff .diff-deletedline{background-color:#fdd}table.diff .diff-deletedline del{background-color:#f99}table.diff .diff-addedline{background-color:#dfd}table.diff .diff-addedline ins{background-color:#9f9}#att-info{background-color:#e4f2fd}#sidemenu a{background-color:#eefcf1;border-color:#eefcf1;border-bottom-color:#dfdfdf}#sidemenu a.current{background-color:#fff;border-color:#dfdfdf #dfdfdf #fff;color:#d54e21}#replyerror{border-color:#ddd;background-color:#eefcf1}.vim-current,.vim-current th,.vim-current td{background-color:#e4f2fd!important}.star-average,.star.star-rating{background-color:#fc0}div.star.select:hover{background-color:#d00}div.star img{border-left:1px solid #fff;border-right:1px solid #fff}.widefat div.star img{border-left:1px solid #eefcf1;border-right:1px solid #eefcf1}#plugin-information .fyi ul{background-color:#eaf3fa}#plugin-information .fyi h2.mainheader{background-color:#cee1ef}#plugin-information pre,#plugin-information code{background-color:#ededff}#plugin-information pre{border:1px solid #ccc}.inline-edit-row fieldset input[type="text"],.inline-edit-row fieldset textarea,#bulk-titles{border-color:#ddd}.inline-editor div.title{background-color:#eaf3fa}.inline-editor ul.cat-checklist{background-color:#fff;border-color:#ddd}.inline-editor .categories .catshow,.inline-editor .categories .cathide{color:#070}.inline-editor .quick-edit-save{background-color:#f1f1f1}fieldset.inline-edit-col-right .inline-edit-col{border-color:#dfdfdf}.attention{color:#d54e21}.meta-box-sortables .postbox:hover .handlediv{background:transparent url(../../../../wp-admin/images/arrows.png) no-repeat 6px 7px}.tablenav .tablenav-pages{color:#555}.tablenav .tablenav-pages a{border-color:#e3e3e3;background:#eee url('../../../../wp-admin/images/menu-bits.gif?ver=20100610') repeat-x scroll left -379px}.tablenav .tablenav-pages a:hover,.tablenav .tablenav-pages a:focus{color:#d54e21}.tablenav .tablenav-pages a.disabled,.tablenav .tablenav-pages a.disabled:hover,.tablenav .tablenav-pages a.disabled:focus{color:#aaa}.tablenav .tablenav-pages .current{background:#dfdfdf;border-color:#d3d3d3}#availablethemes,#availablethemes td{border-color:#ddd}#current-theme img{border-color:#999}#TB_window #TB_title a.tb-theme-preview-link,#TB_window #TB_title a.tb-theme-preview-link:visited{color:#999}#TB_window #TB_title a.tb-theme-preview-link:hover,#TB_window #TB_title a.tb-theme-preview-link:focus{color:#ccc}.misc-pub-section{border-top-color:#fff;border-bottom-color:#dfdfdf}#minor-publishing{border-bottom-color:#dfdfdf}#post-body .misc-pub-section{border-right-color:#eee}.post-com-count span{background-color:#bbb}.form-table .color-palette td{border-color:#fff}.sortable-placeholder{border-color:#bbb;background-color:#eefcf1}#post-body ul.category-tabs li.tabs a,#post-body ul.add-menu-item-tabs li.tabs a,body.press-this ul.category-tabs li.tabs a{color:#333}.view-switch #view-switch-list{background:transparent url(../../../../wp-admin/images/list.png) no-repeat 0 0}.view-switch .current #view-switch-list{background:transparent url(../../../../wp-admin/images/list.png) no-repeat -40px 0}.view-switch #view-switch-excerpt{background:transparent url(../../../../wp-admin/images/list.png) no-repeat -20px 0}.view-switch .current #view-switch-excerpt{background:transparent url(../../../../wp-admin/images/list.png) no-repeat -60px 0}#header-logo{background:transparent url(../../../../wp-admin/images/wp-logo.png?ver=20110504) no-repeat scroll center center}.popular-tags,.feature-filter{background-color:#fff;border-color:#dfdfdf}#theme-information .action-button{border-top-color:#dfdfdf}.theme-listing br.line{border-bottom-color:#ccc}div.widgets-sortables,#widgets-left .inactive{background-color:#fcfcfc;border-color:#dfdfdf}#available-widgets .widget-holder{background-color:#fcfcfc;border-color:#dfdfdf}#available-widgets .widget-description{color:#555}.sidebar-name{color:#464646;text-shadow:#fff 0 1px 0;border-color:#dfdfdf;-moz-box-shadow:inset 0 1px 0 #fff;-webkit-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff}.sidebar-name:hover,#removing-widget{color:#d54e21}#removing-widget span{color:black}.sidebar-name-arrow{background:transparent url(../../../../wp-admin/images/arrows.png) no-repeat 5px 9px}.sidebar-name:hover .sidebar-name-arrow{background:transparent url(../../../../wp-admin/images/arrows-dark.png) no-repeat 5px 9px}.in-widget-title{color:#606060}.deleting .widget-title *{color:#aaa}.imgedit-menu div{border-color:#d5d5d5;background-color:#f1f1f1}.imgedit-menu div:hover{border-color:#c1c1c1;background-color:#eaeaea}.imgedit-menu div.disabled{border-color:#ccc;background-color:#ddd;filter:alpha(opacity=50);opacity:.5}#dashboard_recent_comments div.undo{border-top-color:#dfdfdf}.comment-ays,.comment-ays th{border-color:#ddd}.comment-ays th{background-color:#f1f1f1}#menu-management .menu-edit{border-color:#dfdfdf}#post-body{background:#fff;border-top-color:#fff;border-bottom-color:#dfdfdf}#nav-menu-header{border-bottom-color:#dfdfdf}#nav-menu-footer{border-top-color:#fff}#menu-management .nav-tabs-arrow a{color:#c1c1c1}#menu-management .nav-tabs-arrow a:hover{color:#d54e21}#menu-management .nav-tabs-arrow a:active{color:#464646}#menu-management .nav-tab-active{border-color:#dfdfdf}#menu-management .nav-tab{background:#fbfbfb;border-color:#dfdfdf}.js .input-with-default-title{color:#aaa}#cancel-save{color:#f00}#cancel-save:hover{background-color:#f00;color:#fff}.list-container{border-color:#dfdfdf}.menu-item-handle{border-color:#dfdfdf}.menu li.deleting .menu-item-handle{background-color:#f66;text-shadow:#ccc}.item-type{color:#999}.item-controls .menu-item-delete:hover{color:#f00}.item-edit{background:transparent url(../../../../wp-admin/images/arrows.png) no-repeat 8px 10px;border-bottom-color:#eee}.item-edit:hover{background:transparent url(../../../../wp-admin/images/arrows-dark.png) no-repeat 8px 10px}.menu-item-settings{border-color:#dfdfdf}.link-to-original{color:#777;border-color:#dfdfdf}#cancel-save:hover{color:#fff!important}#update-menu-item{color:#fff!important}#update-menu-item:hover,#update-menu-item:active,#update-menu-item:focus{color:#eaf2fa!important;border-color:#13455b!important}.submitbox .submitcancel{color:#070;border-bottom-color:#070}.submitbox .submitcancel:hover{background:#070;color:#fff}#menu-management .nav-tab-active,.menu-item-handle,.menu-item-settings{-moz-box-shadow:inset 0 1px 0 #fff;-webkit-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff}#menu-management .nav-tab-active{background:#eefcf1;border-bottom-color:#eefcf1}#upload-form label{color:#777}.fullscreen-overlay{background:#fff}.wp-fullscreen-focus #wp-fullscreen-title,.wp-fullscreen-focus #wp-fullscreen-container{border-color:#ccc}#fullscreen-topbar{border-bottom-color:#dfdfdf}.about-wrap h1{color:#333;text-shadow:1px 1px 1px white}.about-text{color:#777}.wp-badge{color:#fff;text-shadow:0 -1px 0 #0c3d57;border-color:#2b5173;-moz-box-shadow:inset 0 0 0 1px #5f8ca8;-webkit-box-shadow:inset 0 0 0 1px #5f8ca8;box-shadow:inset 0 0 0 1px #5f8ca8;background-color:#378aac;background-image:url(../../../../wp-admin/images/wp-badge.png);background-image:url(../../../../wp-admin/images/wp-badge.png),-ms-linear-gradient(top,#378aac,#165d84);background-image:url(../../../../wp-admin/images/wp-badge.png),-moz-linear-gradient(top,#378aac,#165d84);background-image:url(../../../../wp-admin/images/wp-badge.png),-o-linear-gradient(top,#378aac,#165d84);background-image:url(../../../../wp-admin/images/wp-badge.png),-webkit-gradient(linear,left top,left bottom,from(#378aac),to(#165d84));background-image:url(../../../../wp-admin/images/wp-badge.png),-webkit-linear-gradient(top,#378aac,#165d84);background-image:url(../../../../wp-admin/images/wp-badge.png),linear-gradient(top,#378aac,#165d84)}.about-wrap h2 .nav-tab{color:#070}.about-wrap h2 .nav-tab:hover{color:#d54e21}.about-wrap h2 .nav-tab-active,.about-wrap h2 .nav-tab-active:hover{color:#333}.about-wrap h2 .nav-tab-active{text-shadow:1px 1px 1px white;color:#464646}.about-wrap h3{color:#333;text-shadow:1px 1px 1px white}.about-wrap .feature-section h4{color:#464646}.about-wrap .feature-section img{background:#eefcf1;border-color:#dfdfdf;-moz-box-shadow:0 0 6px rgba(0,0,0,0.3);-webkit-box-shadow:0 0 6px rgba(0,0,0,0.3);box-shadow:0 0 6px rgba(0,0,0,0.3)}.about-wrap h4.wp-people-group{text-shadow:1px 1px 1px white}.about-wrap li.wp-person img.gravatar{-moz-box-shadow:0 0 4px rgba(0,0,0,0.4);-webkit-box-shadow:0 0 4px rgba(0,0,0,0.4);box-shadow:0 0 4px rgba(0,0,0,0.4)}.about-wrap li.wp-person .title{color:#464646;text-shadow:1px 1px 1px white}.freedoms-php .about-wrap ol li{color:#999}.freedoms-php .about-wrap ol p{color:#464646}.rtl .bar{border-right-color:none;border-left-color:#99d}.rtl .post-com-count{background-image:url(../../../../wp-admin/images/bubble_bg-rtl.gif)}.rtl #screen-meta-links a.show-settings{background-position:left 3px}.rtl #screen-meta-links a.show-settings.screen-meta-active{background-position:left -33px}.rtl #adminmenushadow,.rtl #adminmenuback{background-image:url(../../../../wp-admin/images/menu-shadow-rtl.png);background-position:top left}.rtl #adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,.rtl #adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle{background:transparent url(../../../../wp-admin/images/arrows-dark.png) no-repeat 8px 6px}.rtl #adminmenu .wp-has-submenu:hover .wp-menu-toggle,.rtl #adminmenu .wp-menu-open .wp-menu-toggle{background:transparent url(../../../../wp-admin/images/arrows.png) no-repeat 8px 6px}.rtl #adminmenu .wp-submenu .wp-submenu-head{border-right-color:none;border-left-color:#dfdfdf}.rtl .folded #adminmenu .wp-submenu-wrap{-moz-box-shadow:-2px 2px 5px rgba(0,0,0,0.4);-webkit-box-shadow:-2px 2px 5px rgba(0,0,0,0.4);box-shadow:-2px 2px 5px rgba(0,0,0,0.4)}.rtl #collapse-button div{background-position:0 -108px}.rtl .folded #collapse-button div{background-position:0 -72px}.rtl .meta-box-sortables .postbox:hover .handlediv{background:transparent url(../../../../wp-admin/images/arrows.png) no-repeat 6px 7px}.rtl .tablenav .tablenav-pages a{border-color:#e3e3e3;background:#eee url('../../../../wp-admin/images/menu-bits-rtl.gif?ver=20100610') repeat-x scroll right -379px}.rtl #post-body .misc-pub-section{border-right-color:none;border-left-color:#eee}.rtl .sidebar-name-arrow{background:transparent url(../../../../wp-admin/images/arrows.png) no-repeat 5px 9px}.rtl .sidebar-name:hover .sidebar-name-arrow{background:transparent url(../../../../wp-admin/images/arrows-dark.png) no-repeat 5px 9px}
|
|
bbp-admin/styles/admin-1.dev.css
DELETED
@@ -1,1937 +0,0 @@
|
|
1 |
-
/*------------------------------------------------------------------------------
|
2 |
-
|
3 |
-
|
4 |
-
Howdy! This is the CSS file that controls the
|
5 |
-
Green (minty) color style on the WordPress Dashboard.
|
6 |
-
|
7 |
-
This file contains both LTR and RTL styles.
|
8 |
-
|
9 |
-
|
10 |
-
TABLE OF CONTENTS:
|
11 |
-
------------------
|
12 |
-
1.0 - Left to Right Styles
|
13 |
-
2.0 - Right to Left Styles
|
14 |
-
|
15 |
-
|
16 |
-
------------------------------------------------------------------------------*/
|
17 |
-
|
18 |
-
|
19 |
-
/*------------------------------------------------------------------------------
|
20 |
-
1.0 - Left to Right Styles
|
21 |
-
------------------------------------------------------------------------------*/
|
22 |
-
|
23 |
-
html,
|
24 |
-
.wp-dialog {
|
25 |
-
background-color: #fff;
|
26 |
-
}
|
27 |
-
|
28 |
-
textarea,
|
29 |
-
input[type="text"],
|
30 |
-
input[type="password"],
|
31 |
-
input[type="file"],
|
32 |
-
input[type="button"],
|
33 |
-
input[type="submit"],
|
34 |
-
input[type="reset"],
|
35 |
-
input[type="email"],
|
36 |
-
input[type="number"],
|
37 |
-
input[type="search"],
|
38 |
-
input[type="tel"],
|
39 |
-
input[type="url"],
|
40 |
-
select {
|
41 |
-
border-color: #dfdfdf;
|
42 |
-
background-color: #fff;
|
43 |
-
}
|
44 |
-
|
45 |
-
textarea:focus,
|
46 |
-
input[type="text"]:focus,
|
47 |
-
input[type="password"]:focus,
|
48 |
-
input[type="file"]:focus,
|
49 |
-
input[type="button"]:focus,
|
50 |
-
input[type="submit"]:focus,
|
51 |
-
input[type="reset"]:focus,
|
52 |
-
input[type="email"]:focus,
|
53 |
-
input[type="number"]:focus,
|
54 |
-
input[type="search"]:focus,
|
55 |
-
input[type="tel"]:focus,
|
56 |
-
input[type="url"]:focus,
|
57 |
-
select:focus {
|
58 |
-
border-color: #bbb;
|
59 |
-
}
|
60 |
-
|
61 |
-
kbd,
|
62 |
-
code {
|
63 |
-
background: #eaeaea;
|
64 |
-
}
|
65 |
-
|
66 |
-
input[readonly] {
|
67 |
-
background-color: #eee;
|
68 |
-
}
|
69 |
-
|
70 |
-
.find-box-search {
|
71 |
-
border-color: #dfdfdf;
|
72 |
-
background-color: #f1f1f1;
|
73 |
-
}
|
74 |
-
|
75 |
-
.find-box {
|
76 |
-
background-color: #f1f1f1;
|
77 |
-
}
|
78 |
-
|
79 |
-
.find-box-inside {
|
80 |
-
background-color: #fff;
|
81 |
-
}
|
82 |
-
|
83 |
-
a.page-numbers:hover {
|
84 |
-
border-color: #999;
|
85 |
-
}
|
86 |
-
|
87 |
-
body,
|
88 |
-
#wpbody,
|
89 |
-
.form-table .pre {
|
90 |
-
color: #333;
|
91 |
-
}
|
92 |
-
|
93 |
-
body > #upload-menu {
|
94 |
-
border-bottom-color: #fff;
|
95 |
-
}
|
96 |
-
|
97 |
-
#postcustomstuff table,
|
98 |
-
#your-profile fieldset,
|
99 |
-
#rightnow,
|
100 |
-
div.dashboard-widget,
|
101 |
-
#dashboard-widgets p.dashboard-widget-links {
|
102 |
-
border-color: #ccc;
|
103 |
-
}
|
104 |
-
|
105 |
-
#poststuff .inside label.spam,
|
106 |
-
#poststuff .inside label.deleted {
|
107 |
-
color: red;
|
108 |
-
}
|
109 |
-
|
110 |
-
#poststuff .inside label.waiting {
|
111 |
-
color: orange;
|
112 |
-
}
|
113 |
-
|
114 |
-
#poststuff .inside label.approved {
|
115 |
-
color: green;
|
116 |
-
}
|
117 |
-
|
118 |
-
#postcustomstuff table {
|
119 |
-
border-color: #dfdfdf;
|
120 |
-
background-color: #F9F9F9;
|
121 |
-
}
|
122 |
-
|
123 |
-
#postcustomstuff thead th {
|
124 |
-
background-color: #F1F1F1;
|
125 |
-
}
|
126 |
-
|
127 |
-
.widefat {
|
128 |
-
border-color: #dfdfdf;
|
129 |
-
background-color: #eefcf1;
|
130 |
-
}
|
131 |
-
textarea.widefat {
|
132 |
-
background-color: #fff;
|
133 |
-
}
|
134 |
-
|
135 |
-
div.dashboard-widget-error {
|
136 |
-
background-color: #c43;
|
137 |
-
}
|
138 |
-
|
139 |
-
div.dashboard-widget-notice {
|
140 |
-
background-color: #cfe1ef;
|
141 |
-
}
|
142 |
-
|
143 |
-
div.dashboard-widget-submit {
|
144 |
-
border-top-color: #ccc;
|
145 |
-
}
|
146 |
-
|
147 |
-
div.tabs-panel,
|
148 |
-
.wp-tab-panel,
|
149 |
-
ul.category-tabs li.tabs,
|
150 |
-
ul.add-menu-item-tabs li.tabs,
|
151 |
-
.wp-tab-active {
|
152 |
-
border-color: #dfdfdf;
|
153 |
-
background-color: #fff;
|
154 |
-
}
|
155 |
-
|
156 |
-
ul.category-tabs li.tabs,
|
157 |
-
ul.add-menu-item-tabs li.tabs,
|
158 |
-
.wp-tab-active {
|
159 |
-
background-color: #fff;
|
160 |
-
}
|
161 |
-
|
162 |
-
input.disabled,
|
163 |
-
textarea.disabled {
|
164 |
-
background-color: #ccc;
|
165 |
-
}
|
166 |
-
/* #upload-menu li a.upload-tab-link, */
|
167 |
-
#plugin-information .action-button a,
|
168 |
-
#plugin-information .action-button a:hover,
|
169 |
-
#plugin-information .action-button a:visited {
|
170 |
-
color: #fff;
|
171 |
-
}
|
172 |
-
|
173 |
-
.widget .widget-top,
|
174 |
-
.postbox h3,
|
175 |
-
.stuffbox h3,
|
176 |
-
.widefat thead tr th,
|
177 |
-
.widefat tfoot tr th,
|
178 |
-
h3.dashboard-widget-title,
|
179 |
-
h3.dashboard-widget-title span,
|
180 |
-
h3.dashboard-widget-title small,
|
181 |
-
.find-box-head,
|
182 |
-
.sidebar-name,
|
183 |
-
#nav-menu-header,
|
184 |
-
#nav-menu-footer,
|
185 |
-
.menu-item-handle,
|
186 |
-
#fullscreen-topbar {
|
187 |
-
background-color: #f1f1f1; /* Fallback */
|
188 |
-
background-image: -ms-linear-gradient(top, #eefcf1, #deece1); /* IE10 */
|
189 |
-
background-image: -moz-linear-gradient(top, #eefcf1, #deece1); /* Firefox */
|
190 |
-
background-image: -o-linear-gradient(top, #eefcf1, #deece1); /* Opera */
|
191 |
-
background-image: -webkit-gradient(linear, left top, left bottom, from(#eefcf1), to(#deece1)); /* old Webkit */
|
192 |
-
background-image: -webkit-linear-gradient(top, #eefcf1, #deece1); /* new Webkit */
|
193 |
-
background-image: linear-gradient(top, #eefcf1, #deece1); /* proposed W3C Markup */
|
194 |
-
}
|
195 |
-
|
196 |
-
.widget .widget-top,
|
197 |
-
.postbox h3,
|
198 |
-
.stuffbox h3 {
|
199 |
-
border-bottom-color: #dfdfdf;
|
200 |
-
text-shadow: #fff 0 1px 0;
|
201 |
-
-moz-box-shadow: 0 1px 0 #fff;
|
202 |
-
-webkit-box-shadow: 0 1px 0 #fff;
|
203 |
-
box-shadow: 0 1px 0 #fff;
|
204 |
-
}
|
205 |
-
|
206 |
-
.form-table th,
|
207 |
-
.form-wrap label {
|
208 |
-
color: #222;
|
209 |
-
text-shadow: #fff 0 1px 0;
|
210 |
-
}
|
211 |
-
|
212 |
-
.description,
|
213 |
-
.form-wrap p {
|
214 |
-
color: #666;
|
215 |
-
}
|
216 |
-
|
217 |
-
strong .post-com-count span {
|
218 |
-
background-color: #007700;
|
219 |
-
}
|
220 |
-
|
221 |
-
.sorthelper {
|
222 |
-
background-color: #ccf3fa;
|
223 |
-
}
|
224 |
-
|
225 |
-
.ac_match,
|
226 |
-
.subsubsub a.current {
|
227 |
-
color: #000;
|
228 |
-
}
|
229 |
-
|
230 |
-
.wrap h2 {
|
231 |
-
color: #464646;
|
232 |
-
}
|
233 |
-
|
234 |
-
.wrap .add-new-h2 {
|
235 |
-
background: #f1f1f1;
|
236 |
-
}
|
237 |
-
|
238 |
-
.subtitle {
|
239 |
-
color: #777;
|
240 |
-
}
|
241 |
-
|
242 |
-
.ac_over {
|
243 |
-
background-color: #f0f0b8;
|
244 |
-
}
|
245 |
-
|
246 |
-
.ac_results {
|
247 |
-
background-color: #fff;
|
248 |
-
border-color: #6EB469;
|
249 |
-
}
|
250 |
-
|
251 |
-
.ac_results li {
|
252 |
-
color: #101010;
|
253 |
-
}
|
254 |
-
|
255 |
-
.alternate,
|
256 |
-
.alt {
|
257 |
-
background-color: #fefefe;
|
258 |
-
}
|
259 |
-
|
260 |
-
.available-theme a.screenshot {
|
261 |
-
background-color: #f1f1f1;
|
262 |
-
border-color: #ddd;
|
263 |
-
}
|
264 |
-
|
265 |
-
.bar {
|
266 |
-
background-color: #e8e8e8;
|
267 |
-
border-right-color: #99d;
|
268 |
-
}
|
269 |
-
|
270 |
-
#media-upload,
|
271 |
-
#media-upload .media-item .slidetoggle {
|
272 |
-
background: #fff;
|
273 |
-
}
|
274 |
-
|
275 |
-
#media-upload .slidetoggle {
|
276 |
-
border-top-color: #dfdfdf;
|
277 |
-
}
|
278 |
-
|
279 |
-
div.error,
|
280 |
-
.login #login_error {
|
281 |
-
background-color: #ffebe8;
|
282 |
-
border-color: #c00;
|
283 |
-
}
|
284 |
-
|
285 |
-
div.error a {
|
286 |
-
color: #c00;
|
287 |
-
}
|
288 |
-
|
289 |
-
.form-invalid {
|
290 |
-
background-color: #ffebe8 !important;
|
291 |
-
}
|
292 |
-
|
293 |
-
.form-invalid input,
|
294 |
-
.form-invalid select {
|
295 |
-
border-color: #c00 !important;
|
296 |
-
}
|
297 |
-
|
298 |
-
.submit {
|
299 |
-
border-color: #DFDFDF;
|
300 |
-
}
|
301 |
-
|
302 |
-
.highlight {
|
303 |
-
background-color: #e4f2fd;
|
304 |
-
color: #000;
|
305 |
-
}
|
306 |
-
|
307 |
-
.howto,
|
308 |
-
.nonessential,
|
309 |
-
#edit-slug-box,
|
310 |
-
.form-input-tip,
|
311 |
-
.subsubsub {
|
312 |
-
color: #666;
|
313 |
-
}
|
314 |
-
|
315 |
-
#wpbody-content #media-items .describe {
|
316 |
-
border-top-color: #dfdfdf;
|
317 |
-
}
|
318 |
-
|
319 |
-
.media-upload-form label.form-help,
|
320 |
-
td.help {
|
321 |
-
color: #9a9a9a;
|
322 |
-
}
|
323 |
-
|
324 |
-
.post-com-count {
|
325 |
-
background-image: url(../../../../wp-admin/images/bubble_bg.gif);
|
326 |
-
color: #fff;
|
327 |
-
}
|
328 |
-
|
329 |
-
.post-com-count span {
|
330 |
-
background-color: #bbb;
|
331 |
-
color: #fff;
|
332 |
-
}
|
333 |
-
|
334 |
-
.post-com-count:hover span {
|
335 |
-
background-color: #d54e21;
|
336 |
-
}
|
337 |
-
|
338 |
-
.quicktags, .search {
|
339 |
-
background-color: #ccc;
|
340 |
-
color: #000;
|
341 |
-
}
|
342 |
-
|
343 |
-
.side-info h5 {
|
344 |
-
border-bottom-color: #dadada;
|
345 |
-
}
|
346 |
-
|
347 |
-
.side-info ul {
|
348 |
-
color: #666;
|
349 |
-
}
|
350 |
-
|
351 |
-
.button,
|
352 |
-
.button-secondary,
|
353 |
-
.submit input,
|
354 |
-
input[type=button],
|
355 |
-
input[type=submit] {
|
356 |
-
border-color: #bbb;
|
357 |
-
color: #464646;
|
358 |
-
}
|
359 |
-
|
360 |
-
.button:hover,
|
361 |
-
.button-secondary:hover,
|
362 |
-
.submit input:hover,
|
363 |
-
input[type=button]:hover,
|
364 |
-
input[type=submit]:hover {
|
365 |
-
color: #000;
|
366 |
-
border-color: #666;
|
367 |
-
}
|
368 |
-
|
369 |
-
.button,
|
370 |
-
.submit input,
|
371 |
-
.button-secondary {
|
372 |
-
background: #f2f2f2 url(../../../../wp-admin/images/white-grad.png) repeat-x scroll left top;
|
373 |
-
text-shadow: rgba(255,255,255,1) 0 1px 0;
|
374 |
-
}
|
375 |
-
|
376 |
-
.button:active,
|
377 |
-
.submit input:active,
|
378 |
-
.button-secondary:active {
|
379 |
-
background: #eee url(../../../../wp-admin/images/white-grad-active.png) repeat-x scroll left top;
|
380 |
-
}
|
381 |
-
|
382 |
-
input.button-primary,
|
383 |
-
button.button-primary,
|
384 |
-
a.button-primary {
|
385 |
-
border-color: #298cba;
|
386 |
-
font-weight: bold;
|
387 |
-
color: #fff;
|
388 |
-
background: #007700 url(../images/button-grad.png) repeat-x scroll left top;
|
389 |
-
text-shadow: rgba(0,0,0,0.3) 0 -1px 0;
|
390 |
-
}
|
391 |
-
|
392 |
-
input.button-primary:active,
|
393 |
-
button.button-primary:active,
|
394 |
-
a.button-primary:active {
|
395 |
-
background: #007700 url(../images/button-grad-active.png) repeat-x scroll left top;
|
396 |
-
color: #eaf2fa;
|
397 |
-
}
|
398 |
-
|
399 |
-
input.button-primary:hover,
|
400 |
-
button.button-primary:hover,
|
401 |
-
a.button-primary:hover,
|
402 |
-
a.button-primary:focus,
|
403 |
-
a.button-primary:active {
|
404 |
-
border-color: #13455b;
|
405 |
-
color: #eaf2fa;
|
406 |
-
}
|
407 |
-
|
408 |
-
.button-disabled,
|
409 |
-
.button[disabled],
|
410 |
-
.button:disabled,
|
411 |
-
.button-secondary[disabled],
|
412 |
-
.button-secondary:disabled,
|
413 |
-
a.button.disabled {
|
414 |
-
color: #aaa !important;
|
415 |
-
border-color: #ddd !important;
|
416 |
-
}
|
417 |
-
|
418 |
-
.button-primary-disabled,
|
419 |
-
.button-primary[disabled],
|
420 |
-
.button-primary:disabled {
|
421 |
-
color: #9FD0D5 !important;
|
422 |
-
background: #298CBA !important;
|
423 |
-
}
|
424 |
-
|
425 |
-
a:hover,
|
426 |
-
a:active,
|
427 |
-
a:focus {
|
428 |
-
color: #d54e21;
|
429 |
-
}
|
430 |
-
|
431 |
-
#adminmenu a:hover,
|
432 |
-
#adminmenu li.menu-top > a:focus,
|
433 |
-
#adminmenu ul.wp-submenu a:hover,
|
434 |
-
#the-comment-list .comment a:hover,
|
435 |
-
#rightnow a:hover,
|
436 |
-
#media-upload a.del-link:hover,
|
437 |
-
div.dashboard-widget-submit input:hover,
|
438 |
-
.subsubsub a:hover,
|
439 |
-
.subsubsub a.current:hover,
|
440 |
-
.ui-tabs-nav a:hover,
|
441 |
-
.plugins .inactive a:hover,
|
442 |
-
#all-plugins-table .plugins .inactive a:hover,
|
443 |
-
#search-plugins-table .plugins .inactive a:hover {
|
444 |
-
color: #d54e21;
|
445 |
-
}
|
446 |
-
|
447 |
-
#the-comment-list .comment-item,
|
448 |
-
#dashboard-widgets #dashboard_quick_press form p.submit {
|
449 |
-
border-color: #dfdfdf;
|
450 |
-
}
|
451 |
-
|
452 |
-
#side-sortables .category-tabs .tabs a,
|
453 |
-
#side-sortables .add-menu-item-tabs .tabs a,
|
454 |
-
.wp-tab-bar .wp-tab-active a {
|
455 |
-
color: #333;
|
456 |
-
}
|
457 |
-
|
458 |
-
#rightnow .rbutton {
|
459 |
-
background-color: #ebebeb;
|
460 |
-
color: #264761;
|
461 |
-
}
|
462 |
-
|
463 |
-
.submitbox .submit {
|
464 |
-
background-color: #464646;
|
465 |
-
color: #ccc;
|
466 |
-
}
|
467 |
-
|
468 |
-
.plugins a.delete:hover,
|
469 |
-
#all-plugins-table .plugins a.delete:hover,
|
470 |
-
#search-plugins-table .plugins a.delete:hover,
|
471 |
-
.submitbox .submitdelete {
|
472 |
-
color: #f00;
|
473 |
-
border-bottom-color: #f00;
|
474 |
-
}
|
475 |
-
|
476 |
-
.submitbox .submitdelete:hover,
|
477 |
-
#media-items a.delete:hover {
|
478 |
-
color: #fff;
|
479 |
-
background-color: #f00;
|
480 |
-
border-bottom-color: #f00;
|
481 |
-
}
|
482 |
-
|
483 |
-
#normal-sortables .submitbox .submitdelete:hover {
|
484 |
-
color: #000;
|
485 |
-
background-color: #f00;
|
486 |
-
border-bottom-color: #f00;
|
487 |
-
}
|
488 |
-
|
489 |
-
.tablenav .dots {
|
490 |
-
border-color: transparent;
|
491 |
-
}
|
492 |
-
|
493 |
-
.tablenav .next,
|
494 |
-
.tablenav .prev {
|
495 |
-
border-color: transparent;
|
496 |
-
color: #007700;
|
497 |
-
}
|
498 |
-
|
499 |
-
.tablenav .next:hover,
|
500 |
-
.tablenav .prev:hover {
|
501 |
-
border-color: transparent;
|
502 |
-
color: #d54e21;
|
503 |
-
}
|
504 |
-
|
505 |
-
div.updated,
|
506 |
-
.login .message {
|
507 |
-
background-color: #ffffe0;
|
508 |
-
border-color: #e6db55;
|
509 |
-
}
|
510 |
-
|
511 |
-
.update-message {
|
512 |
-
color: #000;
|
513 |
-
}
|
514 |
-
|
515 |
-
a.page-numbers {
|
516 |
-
border-bottom-color: #B8D3E2;
|
517 |
-
}
|
518 |
-
|
519 |
-
.commentlist li {
|
520 |
-
border-bottom-color: #ccc;
|
521 |
-
}
|
522 |
-
|
523 |
-
.widefat td,
|
524 |
-
.widefat th {
|
525 |
-
border-top-color: #fff;
|
526 |
-
border-bottom-color: #dfdfdf;
|
527 |
-
}
|
528 |
-
|
529 |
-
.widefat th {
|
530 |
-
text-shadow: rgba(255,255,255,0.8) 0 1px 0;
|
531 |
-
}
|
532 |
-
|
533 |
-
.widefat td {
|
534 |
-
color: #555;
|
535 |
-
}
|
536 |
-
.widefat p,
|
537 |
-
.widefat ol,
|
538 |
-
.widefat ul {
|
539 |
-
color: #333;
|
540 |
-
}
|
541 |
-
|
542 |
-
.widefat thead tr th,
|
543 |
-
.widefat tfoot tr th,
|
544 |
-
h3.dashboard-widget-title,
|
545 |
-
h3.dashboard-widget-title span,
|
546 |
-
h3.dashboard-widget-title small,
|
547 |
-
.find-box-head {
|
548 |
-
color: #333;
|
549 |
-
}
|
550 |
-
|
551 |
-
th.sortable a:hover, th.sortable a:active, th.sortable a:focus {
|
552 |
-
color: #333;
|
553 |
-
}
|
554 |
-
|
555 |
-
h3.dashboard-widget-title small a {
|
556 |
-
color: #d7d7d7;
|
557 |
-
}
|
558 |
-
|
559 |
-
h3.dashboard-widget-title small a:hover {
|
560 |
-
color: #fff;
|
561 |
-
}
|
562 |
-
|
563 |
-
a,
|
564 |
-
#adminmenu a,
|
565 |
-
#the-comment-list p.comment-author strong a,
|
566 |
-
#media-upload a.del-link,
|
567 |
-
#media-items a.delete,
|
568 |
-
.plugins a.delete,
|
569 |
-
.ui-tabs-nav a {
|
570 |
-
color: #007700;
|
571 |
-
}
|
572 |
-
|
573 |
-
#adminmenu .awaiting-mod,
|
574 |
-
#adminmenu .update-plugins,
|
575 |
-
#sidemenu a .update-plugins,
|
576 |
-
#rightnow .reallynow {
|
577 |
-
background-color: #464646;
|
578 |
-
color: #fff;
|
579 |
-
-moz-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
580 |
-
-khtml-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
581 |
-
-webkit-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
582 |
-
box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
583 |
-
}
|
584 |
-
#plugin-information .action-button {
|
585 |
-
background-color: #d54e21;
|
586 |
-
color: #fff;
|
587 |
-
}
|
588 |
-
|
589 |
-
#adminmenu li.current a .awaiting-mod,
|
590 |
-
#adminmenu li a.wp-has-current-submenu .update-plugins{
|
591 |
-
background-color: #464646;
|
592 |
-
color: #fff;
|
593 |
-
-moz-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
594 |
-
-khtml-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
595 |
-
-webkit-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
596 |
-
box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
597 |
-
}
|
598 |
-
|
599 |
-
div#media-upload-header,
|
600 |
-
div#plugin-information-header {
|
601 |
-
background-color: #eefcf1;
|
602 |
-
border-bottom-color: #dfdfdf;
|
603 |
-
}
|
604 |
-
|
605 |
-
#currenttheme img {
|
606 |
-
border-color: #666;
|
607 |
-
}
|
608 |
-
|
609 |
-
#dashboard_secondary div.dashboard-widget-content ul li a {
|
610 |
-
background-color: #eefcf1;
|
611 |
-
}
|
612 |
-
|
613 |
-
input.readonly, textarea.readonly {
|
614 |
-
background-color: #ddd;
|
615 |
-
}
|
616 |
-
|
617 |
-
#editable-post-name {
|
618 |
-
background-color: #fffbcc;
|
619 |
-
}
|
620 |
-
|
621 |
-
#edit-slug-box strong,
|
622 |
-
.tablenav .displaying-num,
|
623 |
-
#submitted-on,
|
624 |
-
.submitted-on {
|
625 |
-
color: #777;
|
626 |
-
}
|
627 |
-
|
628 |
-
.login #nav a,
|
629 |
-
.login #backtoblog a {
|
630 |
-
color: #007700 !important;
|
631 |
-
}
|
632 |
-
|
633 |
-
.login #nav a:hover,
|
634 |
-
.login #backtoblog a:hover {
|
635 |
-
color: #d54e21 !important;
|
636 |
-
}
|
637 |
-
|
638 |
-
#footer {
|
639 |
-
color: #777;
|
640 |
-
border-color: #dfdfdf;
|
641 |
-
}
|
642 |
-
|
643 |
-
#media-items,
|
644 |
-
.imgedit-group,
|
645 |
-
.media-item {
|
646 |
-
border-color: #dfdfdf;
|
647 |
-
}
|
648 |
-
|
649 |
-
.checkbox,
|
650 |
-
.side-info,
|
651 |
-
.plugins tr,
|
652 |
-
#your-profile #rich_editing {
|
653 |
-
background-color: #fcfcfc;
|
654 |
-
}
|
655 |
-
|
656 |
-
.plugins .inactive,
|
657 |
-
.plugins .inactive th,
|
658 |
-
.plugins .inactive td,
|
659 |
-
tr.inactive + tr.plugin-update-tr .plugin-update {
|
660 |
-
background-color: #f4f4f4;
|
661 |
-
}
|
662 |
-
|
663 |
-
.plugin-update-tr .update-message {
|
664 |
-
background-color: #fffbe4;
|
665 |
-
border-color: #dfdfdf;
|
666 |
-
}
|
667 |
-
|
668 |
-
.plugins .active,
|
669 |
-
.plugins .active th,
|
670 |
-
.plugins .active td {
|
671 |
-
color: #000;
|
672 |
-
}
|
673 |
-
|
674 |
-
.plugins .inactive a {
|
675 |
-
color: #557799;
|
676 |
-
}
|
677 |
-
|
678 |
-
#the-comment-list tr.undo,
|
679 |
-
#the-comment-list div.undo {
|
680 |
-
background-color: #f4f4f4;
|
681 |
-
}
|
682 |
-
|
683 |
-
#the-comment-list .unapproved {
|
684 |
-
background-color: #ffffe0;
|
685 |
-
}
|
686 |
-
|
687 |
-
#the-comment-list .approve a {
|
688 |
-
color: #006505;
|
689 |
-
}
|
690 |
-
|
691 |
-
#the-comment-list .unapprove a {
|
692 |
-
color: #d98500;
|
693 |
-
}
|
694 |
-
|
695 |
-
table.widefat span.delete a,
|
696 |
-
table.widefat span.trash a,
|
697 |
-
table.widefat span.spam a,
|
698 |
-
#dashboard_recent_comments .delete a,
|
699 |
-
#dashboard_recent_comments .trash a,
|
700 |
-
#dashboard_recent_comments .spam a {
|
701 |
-
color: #bc0b0b;
|
702 |
-
}
|
703 |
-
|
704 |
-
.welcome-panel {
|
705 |
-
border-color: #dfdfdf;
|
706 |
-
}
|
707 |
-
.welcome-panel p {
|
708 |
-
color: #777;
|
709 |
-
}
|
710 |
-
.welcome-panel-column p {
|
711 |
-
color: #464646;
|
712 |
-
}
|
713 |
-
.welcome-panel .welcome-panel-close {
|
714 |
-
background: #eee;
|
715 |
-
text-shadow: 1px 1px 1px #eee;
|
716 |
-
}
|
717 |
-
.welcome-panel h3 {
|
718 |
-
text-shadow: 1px 1px 1px white;
|
719 |
-
}
|
720 |
-
|
721 |
-
.widget,
|
722 |
-
#widget-list .widget-top,
|
723 |
-
.postbox,
|
724 |
-
#titlediv,
|
725 |
-
#poststuff .postarea,
|
726 |
-
.stuffbox {
|
727 |
-
border-color: #dfdfdf;
|
728 |
-
-moz-box-shadow: inset 0 1px 0 #fff;
|
729 |
-
-webkit-box-shadow: inset 0 1px 0 #fff;
|
730 |
-
box-shadow: inset 0 1px 0 #fff;
|
731 |
-
-moz-border-radius: 3px;
|
732 |
-
-khtml-border-radius: 3px;
|
733 |
-
-webkit-border-radius: 3px;
|
734 |
-
border-radius: 3px;
|
735 |
-
}
|
736 |
-
|
737 |
-
.widget,
|
738 |
-
#widget-list .widget-top,
|
739 |
-
.postbox,
|
740 |
-
.menu-item-settings {
|
741 |
-
background-color: #eefcf1; /* Fallback */
|
742 |
-
background-image: -ms-linear-gradient(top, #eefcf1, #deece1); /* IE10 */
|
743 |
-
background-image: -moz-linear-gradient(top, #eefcf1, #deece1); /* Firefox */
|
744 |
-
background-image: -o-linear-gradient(top, #eefcf1, #deece1); /* Opera */
|
745 |
-
background-image: -webkit-gradient(linear, left top, left bottom, from(#eefcf1), to(#deece1)); /* old Webkit */
|
746 |
-
background-image: -webkit-linear-gradient(top, #eefcf1, #deece1); /* new Webkit */
|
747 |
-
background-image: linear-gradient(top, #eefcf1, #deece1); /* proposed W3C Markup */
|
748 |
-
}
|
749 |
-
|
750 |
-
.postbox h3 {
|
751 |
-
color: #464646;
|
752 |
-
}
|
753 |
-
|
754 |
-
.widget .widget-top {
|
755 |
-
color: #222;
|
756 |
-
}
|
757 |
-
|
758 |
-
.sidebar-name:hover h3,
|
759 |
-
.postbox h3:hover {
|
760 |
-
color: #000;
|
761 |
-
}
|
762 |
-
|
763 |
-
.curtime #timestamp {
|
764 |
-
background-image: url(../../../../wp-admin/images/date-button.gif);
|
765 |
-
}
|
766 |
-
|
767 |
-
#quicktags #ed_link {
|
768 |
-
color: #00f;
|
769 |
-
}
|
770 |
-
|
771 |
-
#rightnow .youhave {
|
772 |
-
background-color: #f0f6fb;
|
773 |
-
}
|
774 |
-
|
775 |
-
#rightnow a {
|
776 |
-
color: #448abd;
|
777 |
-
}
|
778 |
-
|
779 |
-
.tagchecklist span a,
|
780 |
-
#bulk-titles div a {
|
781 |
-
background: url(../../../../wp-admin/images/xit.gif) no-repeat;
|
782 |
-
}
|
783 |
-
|
784 |
-
.tagchecklist span a:hover,
|
785 |
-
#bulk-titles div a:hover {
|
786 |
-
background: url(../../../../wp-admin/images/xit.gif) no-repeat -10px 0;
|
787 |
-
}
|
788 |
-
|
789 |
-
#update-nag, .update-nag {
|
790 |
-
background-color: #FFFBCC;
|
791 |
-
border-color: #E6DB55;
|
792 |
-
color: #555;
|
793 |
-
}
|
794 |
-
|
795 |
-
#screen-meta {
|
796 |
-
background-color: #f1f1f1;
|
797 |
-
border-color: #ccc;
|
798 |
-
-webkit-box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.05 );
|
799 |
-
box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.05 );
|
800 |
-
}
|
801 |
-
|
802 |
-
.contextual-help-tabs a:hover {
|
803 |
-
color: #333;
|
804 |
-
}
|
805 |
-
|
806 |
-
.contextual-help-sidebar,
|
807 |
-
.contextual-help-tabs .active {
|
808 |
-
border-color: #ccc;
|
809 |
-
}
|
810 |
-
|
811 |
-
.contextual-help-tabs .active,
|
812 |
-
.contextual-help-tabs .active a,
|
813 |
-
.contextual-help-tabs .active a:hover {
|
814 |
-
background: #fff;
|
815 |
-
color: #000;
|
816 |
-
}
|
817 |
-
|
818 |
-
.contextual-help-tabs-wrap {
|
819 |
-
border-color: #ccc;
|
820 |
-
background-color: #fff;
|
821 |
-
}
|
822 |
-
|
823 |
-
/* screen options and help tabs */
|
824 |
-
#screen-options-link-wrap,
|
825 |
-
#contextual-help-link-wrap {
|
826 |
-
background-color: #e3e3e3; /* Fallback */
|
827 |
-
border-right: 1px solid transparent;
|
828 |
-
border-left: 1px solid transparent;
|
829 |
-
border-bottom: 1px solid transparent;
|
830 |
-
background-image: -ms-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* IE10 */
|
831 |
-
background-image: -moz-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* Firefox */
|
832 |
-
background-image: -o-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* Opera */
|
833 |
-
background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#f1f1f1)); /* old Webkit */
|
834 |
-
background-image: -webkit-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* new Webkit */
|
835 |
-
background-image: linear-gradient(bottom, #dfdfdf, #f1f1f1); /* proposed W3C Markup */
|
836 |
-
}
|
837 |
-
|
838 |
-
#screen-meta-links a.show-settings {
|
839 |
-
color: #777;
|
840 |
-
}
|
841 |
-
|
842 |
-
#screen-meta-links a.show-settings:hover {
|
843 |
-
color: #000;
|
844 |
-
}
|
845 |
-
|
846 |
-
#screen-meta-links a.show-settings {
|
847 |
-
background: transparent url(../../../../wp-admin/images/arrows.png) no-repeat right 3px;
|
848 |
-
}
|
849 |
-
|
850 |
-
#screen-meta-links a.show-settings.screen-meta-active {
|
851 |
-
background: transparent url(../../../../wp-admin/images/arrows.png) no-repeat right -33px;
|
852 |
-
}
|
853 |
-
|
854 |
-
/* end screen options and help tabs */
|
855 |
-
|
856 |
-
.login #backtoblog a {
|
857 |
-
color: #464646;
|
858 |
-
}
|
859 |
-
|
860 |
-
#wphead {
|
861 |
-
border-bottom:#dfdfdf 1px solid;
|
862 |
-
}
|
863 |
-
|
864 |
-
#wphead h1 a {
|
865 |
-
color: #464646;
|
866 |
-
}
|
867 |
-
|
868 |
-
#footer a:link,
|
869 |
-
#footer a:visited {
|
870 |
-
text-decoration: none;
|
871 |
-
}
|
872 |
-
|
873 |
-
#footer a:hover {
|
874 |
-
color: #000;
|
875 |
-
text-decoration: underline;
|
876 |
-
}
|
877 |
-
|
878 |
-
.file-error,
|
879 |
-
abbr.required,
|
880 |
-
.widget-control-remove:hover,
|
881 |
-
table.widefat .delete a:hover,
|
882 |
-
table.widefat .trash a:hover,
|
883 |
-
table.widefat .spam a:hover,
|
884 |
-
#dashboard_recent_comments .delete a:hover,
|
885 |
-
#dashboard_recent_comments .trash a:hover
|
886 |
-
#dashboard_recent_comments .spam a:hover {
|
887 |
-
color: #f00;
|
888 |
-
}
|
889 |
-
|
890 |
-
#pass-strength-result {
|
891 |
-
background-color: #eee;
|
892 |
-
border-color: #ddd !important;
|
893 |
-
}
|
894 |
-
|
895 |
-
#pass-strength-result.bad {
|
896 |
-
background-color: #ffb78c;
|
897 |
-
border-color: #ff853c !important;
|
898 |
-
}
|
899 |
-
|
900 |
-
#pass-strength-result.good {
|
901 |
-
background-color: #ffec8b;
|
902 |
-
border-color: #fc0 !important;
|
903 |
-
}
|
904 |
-
|
905 |
-
#pass-strength-result.short {
|
906 |
-
background-color: #ffa0a0;
|
907 |
-
border-color: #f04040 !important;
|
908 |
-
}
|
909 |
-
|
910 |
-
#pass-strength-result.strong {
|
911 |
-
background-color: #c3ff88;
|
912 |
-
border-color: #8dff1c !important;
|
913 |
-
}
|
914 |
-
|
915 |
-
#titlediv #title {
|
916 |
-
border-color: #ccc;
|
917 |
-
}
|
918 |
-
|
919 |
-
#post-status-info {
|
920 |
-
border-color: #dfdfdf #ccc #ccc;
|
921 |
-
background-color: #eaeaea;
|
922 |
-
}
|
923 |
-
|
924 |
-
.editwidget .widget-inside {
|
925 |
-
border-color: #dfdfdf;
|
926 |
-
}
|
927 |
-
|
928 |
-
#titlediv #title {
|
929 |
-
background-color: #fff;
|
930 |
-
}
|
931 |
-
|
932 |
-
#tTips p#tTips_inside {
|
933 |
-
background-color: #ddd;
|
934 |
-
color: #333;
|
935 |
-
}
|
936 |
-
|
937 |
-
#timestampdiv input,
|
938 |
-
#namediv input,
|
939 |
-
#poststuff .inside .the-tagcloud {
|
940 |
-
border-color: #ddd;
|
941 |
-
}
|
942 |
-
|
943 |
-
/* menu */
|
944 |
-
#adminmenuback,
|
945 |
-
#adminmenuwrap {
|
946 |
-
background-color: #deece1;
|
947 |
-
border-color: #ccc;
|
948 |
-
}
|
949 |
-
|
950 |
-
#adminmenushadow,
|
951 |
-
#adminmenuback {
|
952 |
-
background-image: url(../../../../wp-admin/images/menu-shadow.png);
|
953 |
-
background-position: top right;
|
954 |
-
background-repeat: repeat-y;
|
955 |
-
}
|
956 |
-
|
957 |
-
#adminmenu li.wp-menu-separator {
|
958 |
-
background: #dfdfdf;
|
959 |
-
border-color: #cfcfcf;
|
960 |
-
}
|
961 |
-
|
962 |
-
#adminmenu div.separator {
|
963 |
-
border-color: #e1e1e1;
|
964 |
-
}
|
965 |
-
|
966 |
-
#adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,
|
967 |
-
#adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle {
|
968 |
-
background: transparent url(../../../../wp-admin/images/arrows-dark.png) no-repeat -1px 6px;
|
969 |
-
}
|
970 |
-
|
971 |
-
#adminmenu .wp-has-submenu:hover .wp-menu-toggle,
|
972 |
-
#adminmenu .wp-menu-open .wp-menu-toggle {
|
973 |
-
background: transparent url(../../../../wp-admin/images/arrows.png) no-repeat -2px 6px;
|
974 |
-
}
|
975 |
-
|
976 |
-
#adminmenu a.menu-top,
|
977 |
-
.folded #adminmenu li.menu-top,
|
978 |
-
#adminmenu .wp-submenu .wp-submenu-head {
|
979 |
-
border-top-color: #eefcf1;
|
980 |
-
border-bottom-color: #dfdfdf;
|
981 |
-
}
|
982 |
-
|
983 |
-
#adminmenu li.wp-menu-open {
|
984 |
-
border-color: #dfdfdf;
|
985 |
-
}
|
986 |
-
|
987 |
-
#adminmenu li.menu-top:hover > a,
|
988 |
-
#adminmenu li.menu-top.focused > a,
|
989 |
-
#adminmenu li.menu-top > a:focus {
|
990 |
-
background-color: #eefcf1;
|
991 |
-
text-shadow: 0 1px 0 rgba( 255, 255, 255, 0.4 );
|
992 |
-
}
|
993 |
-
|
994 |
-
#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
|
995 |
-
#adminmenu li.current a.menu-top,
|
996 |
-
.folded #adminmenu li.wp-has-current-submenu,
|
997 |
-
.folded #adminmenu li.current.menu-top,
|
998 |
-
#adminmenu .wp-menu-arrow,
|
999 |
-
#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
|
1000 |
-
background-color: #777; /* Fallback */
|
1001 |
-
background-image: -ms-linear-gradient(bottom, #060, #6EB469); /* IE10 */
|
1002 |
-
background-image: -moz-linear-gradient(bottom, #060, #6EB469); /* Firefox */
|
1003 |
-
background-image: -o-linear-gradient(bottom, #060, #6EB469); /* Opera */
|
1004 |
-
background-image: -webkit-gradient(linear, left bottom, left top, from(#060), to(#6EB469)); /* old Webkit */
|
1005 |
-
background-image: -webkit-linear-gradient(bottom, #060, #6EB469); /* new Webkit */
|
1006 |
-
background-image: linear-gradient(bottom, #060, #6EB469); /* proposed W3C Markup */
|
1007 |
-
}
|
1008 |
-
|
1009 |
-
#adminmenu .wp-menu-arrow div {
|
1010 |
-
background-color: #777; /* Fallback */
|
1011 |
-
background-image: -ms-linear-gradient(right bottom, #060, #6EB469); /* IE10 */
|
1012 |
-
background-image: -moz-linear-gradient(right bottom, #060, #6EB469); /* Firefox */
|
1013 |
-
background-image: -o-linear-gradient(right bottom, #060, #6EB469); /* Opera */
|
1014 |
-
background-image: -webkit-gradient(linear, right bottom, left top, from(#060), to(#6EB469)); /* old Webkit */
|
1015 |
-
background-image: -webkit-linear-gradient(right bottom, #060, #6EB469); /* new Webkit */
|
1016 |
-
background-image: linear-gradient(right bottom, #060, #6EB469); /* proposed W3C Markup */
|
1017 |
-
}
|
1018 |
-
|
1019 |
-
#adminmenu li.wp-not-current-submenu .wp-menu-arrow {
|
1020 |
-
border-top-color: #eefcf1;
|
1021 |
-
border-bottom-color: #dfdfdf;
|
1022 |
-
background: #eefcf1;
|
1023 |
-
}
|
1024 |
-
|
1025 |
-
#adminmenu li.wp-not-current-submenu .wp-menu-arrow div {
|
1026 |
-
background: #eefcf1;
|
1027 |
-
border-color: #ccc;
|
1028 |
-
}
|
1029 |
-
|
1030 |
-
.folded #adminmenu li.menu-top li:hover a {
|
1031 |
-
background-image: none;
|
1032 |
-
}
|
1033 |
-
|
1034 |
-
#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
|
1035 |
-
#adminmenu li.current a.menu-top,
|
1036 |
-
#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
|
1037 |
-
text-shadow: 0 -1px 0 #333;
|
1038 |
-
color: #fff;
|
1039 |
-
border-top-color: #6EB469;
|
1040 |
-
border-bottom-color: #060;
|
1041 |
-
}
|
1042 |
-
|
1043 |
-
.folded #adminmenu li.wp-has-current-submenu,
|
1044 |
-
.folded #adminmenu li.current.menu-top {
|
1045 |
-
border-top-color: #6EB469;
|
1046 |
-
border-bottom-color: #060;
|
1047 |
-
}
|
1048 |
-
|
1049 |
-
#adminmenu .wp-submenu a:hover,
|
1050 |
-
#adminmenu .wp-submenu a:focus {
|
1051 |
-
background-color: #eefcf1;
|
1052 |
-
color: #333;
|
1053 |
-
}
|
1054 |
-
|
1055 |
-
#adminmenu .wp-submenu li.current,
|
1056 |
-
#adminmenu .wp-submenu li.current a,
|
1057 |
-
#adminmenu .wp-submenu li.current a:hover {
|
1058 |
-
color: #333;
|
1059 |
-
}
|
1060 |
-
|
1061 |
-
#adminmenu .wp-submenu ul {
|
1062 |
-
background-color: #fff;
|
1063 |
-
}
|
1064 |
-
|
1065 |
-
#adminmenu .wp-submenu-wrap,
|
1066 |
-
#adminmenu .wp-submenu ul {
|
1067 |
-
border-color: #dfdfdf;
|
1068 |
-
}
|
1069 |
-
|
1070 |
-
#adminmenu .wp-submenu-wrap,
|
1071 |
-
.folded #adminmenu .wp-has-current-submenu .wp-submenu-wrap {
|
1072 |
-
-moz-box-shadow: 2px 2px 5px rgba( 0, 0, 0, 0.4 );
|
1073 |
-
-webkit-box-shadow: 2px 2px 5px rgba( 0, 0, 0, 0.4 );
|
1074 |
-
box-shadow: 2px 2px 5px rgba( 0, 0, 0, 0.4 );
|
1075 |
-
}
|
1076 |
-
|
1077 |
-
#adminmenu .wp-submenu .wp-submenu-head {
|
1078 |
-
border-right-color: #dfdfdf;
|
1079 |
-
background-color: #deece1;
|
1080 |
-
}
|
1081 |
-
|
1082 |
-
#adminmenu div.wp-submenu {
|
1083 |
-
background-color: transparent;
|
1084 |
-
}
|
1085 |
-
|
1086 |
-
/* collapse menu button */
|
1087 |
-
#collapse-menu {
|
1088 |
-
color: #aaa;
|
1089 |
-
}
|
1090 |
-
|
1091 |
-
#collapse-menu:hover {
|
1092 |
-
color: #999;
|
1093 |
-
}
|
1094 |
-
|
1095 |
-
#collapse-button {
|
1096 |
-
border-color: #ccc;
|
1097 |
-
background-color: #f4f4f4; /* Fallback */
|
1098 |
-
background-image: -ms-linear-gradient(bottom, #dfdfdf, #fff); /* IE10 */
|
1099 |
-
background-image: -moz-linear-gradient(bottom, #dfdfdf, #fff); /* Firefox */
|
1100 |
-
background-image: -o-linear-gradient(bottom, #dfdfdf, #fff); /* Opera */
|
1101 |
-
background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#fff)); /* old Webkit */
|
1102 |
-
background-image: -webkit-linear-gradient(bottom, #dfdfdf, #fff); /* new Webkit */
|
1103 |
-
background-image: linear-gradient(bottom, #dfdfdf, #fff); /* proposed W3C Markup */
|
1104 |
-
}
|
1105 |
-
#collapse-menu:hover #collapse-button {
|
1106 |
-
border-color: #aaa;
|
1107 |
-
}
|
1108 |
-
#collapse-button div {
|
1109 |
-
background: transparent url(../../../../wp-admin/images/arrows.png) no-repeat 0 -72px;
|
1110 |
-
}
|
1111 |
-
.folded #collapse-button div {
|
1112 |
-
background-position: 0 -108px;
|
1113 |
-
}
|
1114 |
-
|
1115 |
-
/* menu and screen icons */
|
1116 |
-
.icon16.icon-dashboard,
|
1117 |
-
#adminmenu .menu-icon-dashboard div.wp-menu-image {
|
1118 |
-
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -60px -33px;
|
1119 |
-
}
|
1120 |
-
|
1121 |
-
#adminmenu .menu-icon-dashboard:hover div.wp-menu-image,
|
1122 |
-
#adminmenu .menu-icon-dashboard.wp-has-current-submenu div.wp-menu-image,
|
1123 |
-
#adminmenu .menu-icon-dashboard.current div.wp-menu-image {
|
1124 |
-
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -60px -1px;
|
1125 |
-
}
|
1126 |
-
|
1127 |
-
.icon16.icon-post,
|
1128 |
-
#adminmenu .menu-icon-post div.wp-menu-image {
|
1129 |
-
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -271px -33px;
|
1130 |
-
}
|
1131 |
-
|
1132 |
-
#adminmenu .menu-icon-post:hover div.wp-menu-image,
|
1133 |
-
#adminmenu .menu-icon-post.wp-has-current-submenu div.wp-menu-image {
|
1134 |
-
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -271px -1px;
|
1135 |
-
}
|
1136 |
-
|
1137 |
-
.icon16.icon-media,
|
1138 |
-
#adminmenu .menu-icon-media div.wp-menu-image {
|
1139 |
-
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -120px -33px;
|
1140 |
-
}
|
1141 |
-
|
1142 |
-
#adminmenu .menu-icon-media:hover div.wp-menu-image,
|
1143 |
-
#adminmenu .menu-icon-media.wp-has-current-submenu div.wp-menu-image {
|
1144 |
-
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -120px -1px;
|
1145 |
-
}
|
1146 |
-
|
1147 |
-
.icon16.icon-links,
|
1148 |
-
#adminmenu .menu-icon-links div.wp-menu-image {
|
1149 |
-
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -90px -33px;
|
1150 |
-
}
|
1151 |
-
|
1152 |
-
#adminmenu .menu-icon-links:hover div.wp-menu-image,
|
1153 |
-
#adminmenu .menu-icon-links.wp-has-current-submenu div.wp-menu-image {
|
1154 |
-
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -90px -1px;
|
1155 |
-
}
|
1156 |
-
|
1157 |
-
.icon16.icon-page,
|
1158 |
-
#adminmenu .menu-icon-page div.wp-menu-image {
|
1159 |
-
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -150px -33px;
|
1160 |
-
}
|
1161 |
-
|
1162 |
-
#adminmenu .menu-icon-page:hover div.wp-menu-image,
|
1163 |
-
#adminmenu .menu-icon-page.wp-has-current-submenu div.wp-menu-image {
|
1164 |
-
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -150px -1px;
|
1165 |
-
}
|
1166 |
-
|
1167 |
-
.icon16.icon-comments,
|
1168 |
-
#adminmenu .menu-icon-comments div.wp-menu-image {
|
1169 |
-
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -30px -33px;
|
1170 |
-
}
|
1171 |
-
|
1172 |
-
#adminmenu .menu-icon-comments:hover div.wp-menu-image,
|
1173 |
-
#adminmenu .menu-icon-comments.wp-has-current-submenu div.wp-menu-image,
|
1174 |
-
#adminmenu .menu-icon-comments.current div.wp-menu-image {
|
1175 |
-
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -30px -1px;
|
1176 |
-
}
|
1177 |
-
|
1178 |
-
.icon16.icon-appearance,
|
1179 |
-
#adminmenu .menu-icon-appearance div.wp-menu-image {
|
1180 |
-
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll 0 -33px;
|
1181 |
-
}
|
1182 |
-
|
1183 |
-
#adminmenu .menu-icon-appearance:hover div.wp-menu-image,
|
1184 |
-
#adminmenu .menu-icon-appearance.wp-has-current-submenu div.wp-menu-image {
|
1185 |
-
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll 0 -1px;
|
1186 |
-
}
|
1187 |
-
|
1188 |
-
.icon16.icon-plugins,
|
1189 |
-
#adminmenu .menu-icon-plugins div.wp-menu-image {
|
1190 |
-
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -180px -33px;
|
1191 |
-
}
|
1192 |
-
|
1193 |
-
#adminmenu .menu-icon-plugins:hover div.wp-menu-image,
|
1194 |
-
#adminmenu .menu-icon-plugins.wp-has-current-submenu div.wp-menu-image {
|
1195 |
-
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -180px -1px;
|
1196 |
-
}
|
1197 |
-
|
1198 |
-
.icon16.icon-users,
|
1199 |
-
#adminmenu .menu-icon-users div.wp-menu-image {
|
1200 |
-
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -300px -33px;
|
1201 |
-
}
|
1202 |
-
|
1203 |
-
#adminmenu .menu-icon-users:hover div.wp-menu-image,
|
1204 |
-
#adminmenu .menu-icon-users.wp-has-current-submenu div.wp-menu-image,
|
1205 |
-
#adminmenu .menu-icon-users.current div.wp-menu-image {
|
1206 |
-
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -300px -1px;
|
1207 |
-
}
|
1208 |
-
|
1209 |
-
.icon16.icon-tools,
|
1210 |
-
#adminmenu .menu-icon-tools div.wp-menu-image {
|
1211 |
-
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -210px -33px;
|
1212 |
-
}
|
1213 |
-
|
1214 |
-
#adminmenu .menu-icon-tools:hover div.wp-menu-image,
|
1215 |
-
#adminmenu .menu-icon-tools.wp-has-current-submenu div.wp-menu-image,
|
1216 |
-
#adminmenu .menu-icon-tools.current div.wp-menu-image {
|
1217 |
-
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -210px -1px;
|
1218 |
-
}
|
1219 |
-
|
1220 |
-
.icon16.icon-settings,
|
1221 |
-
#adminmenu .menu-icon-settings div.wp-menu-image {
|
1222 |
-
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -240px -33px;
|
1223 |
-
}
|
1224 |
-
|
1225 |
-
#adminmenu .menu-icon-settings:hover div.wp-menu-image,
|
1226 |
-
#adminmenu .menu-icon-settings.wp-has-current-submenu div.wp-menu-image {
|
1227 |
-
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -240px -1px;
|
1228 |
-
}
|
1229 |
-
|
1230 |
-
.icon16.icon-site,
|
1231 |
-
#adminmenu .menu-icon-site div.wp-menu-image {
|
1232 |
-
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -360px -33px;
|
1233 |
-
}
|
1234 |
-
|
1235 |
-
#adminmenu .menu-icon-site:hover div.wp-menu-image,
|
1236 |
-
#adminmenu .menu-icon-site.wp-has-current-submenu div.wp-menu-image {
|
1237 |
-
background: transparent url('../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -360px -1px;
|
1238 |
-
}
|
1239 |
-
/* end menu and screen icons */
|
1240 |
-
|
1241 |
-
/* Screen Icons */
|
1242 |
-
.icon32.icon-post,
|
1243 |
-
#icon-edit,
|
1244 |
-
#icon-post {
|
1245 |
-
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -552px -5px;
|
1246 |
-
}
|
1247 |
-
|
1248 |
-
.icon32.icon-dashboard,
|
1249 |
-
#icon-index {
|
1250 |
-
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -137px -5px;
|
1251 |
-
}
|
1252 |
-
|
1253 |
-
.icon32.icon-media,
|
1254 |
-
#icon-upload {
|
1255 |
-
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -251px -5px;
|
1256 |
-
}
|
1257 |
-
|
1258 |
-
.icon32.icon-links,
|
1259 |
-
#icon-link-manager,
|
1260 |
-
#icon-link,
|
1261 |
-
#icon-link-category {
|
1262 |
-
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -190px -5px;
|
1263 |
-
}
|
1264 |
-
|
1265 |
-
.icon32.icon-page,
|
1266 |
-
#icon-edit-pages,
|
1267 |
-
#icon-page {
|
1268 |
-
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -312px -5px;
|
1269 |
-
}
|
1270 |
-
|
1271 |
-
.icon32.icon-comments,
|
1272 |
-
#icon-edit-comments {
|
1273 |
-
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -72px -5px;
|
1274 |
-
}
|
1275 |
-
|
1276 |
-
.icon32.icon-appearance,
|
1277 |
-
#icon-themes {
|
1278 |
-
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -11px -5px;
|
1279 |
-
}
|
1280 |
-
|
1281 |
-
.icon32.icon-plugins,
|
1282 |
-
#icon-plugins {
|
1283 |
-
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -370px -5px;
|
1284 |
-
}
|
1285 |
-
|
1286 |
-
.icon32.icon-users,
|
1287 |
-
#icon-users,
|
1288 |
-
#icon-profile,
|
1289 |
-
#icon-user-edit {
|
1290 |
-
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -600px -5px;
|
1291 |
-
}
|
1292 |
-
|
1293 |
-
.icon32.icon-tools,
|
1294 |
-
#icon-tools,
|
1295 |
-
#icon-admin {
|
1296 |
-
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -432px -5px;
|
1297 |
-
}
|
1298 |
-
|
1299 |
-
.icon32.icon-settings,
|
1300 |
-
#icon-options-general {
|
1301 |
-
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -492px -5px;
|
1302 |
-
}
|
1303 |
-
|
1304 |
-
.icon32.icon-site,
|
1305 |
-
#icon-ms-admin {
|
1306 |
-
background: transparent url(../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -659px -5px;
|
1307 |
-
}
|
1308 |
-
/* end screen icons */
|
1309 |
-
|
1310 |
-
|
1311 |
-
/* Diff */
|
1312 |
-
table.diff .diff-deletedline {
|
1313 |
-
background-color: #fdd;
|
1314 |
-
}
|
1315 |
-
|
1316 |
-
table.diff .diff-deletedline del {
|
1317 |
-
background-color: #f99;
|
1318 |
-
}
|
1319 |
-
|
1320 |
-
table.diff .diff-addedline {
|
1321 |
-
background-color: #dfd;
|
1322 |
-
}
|
1323 |
-
|
1324 |
-
table.diff .diff-addedline ins {
|
1325 |
-
background-color: #9f9;
|
1326 |
-
}
|
1327 |
-
|
1328 |
-
#att-info {
|
1329 |
-
background-color: #E4F2FD;
|
1330 |
-
}
|
1331 |
-
|
1332 |
-
/* edit image */
|
1333 |
-
#sidemenu a {
|
1334 |
-
background-color: #eefcf1;
|
1335 |
-
border-color: #eefcf1;
|
1336 |
-
border-bottom-color: #dfdfdf;
|
1337 |
-
}
|
1338 |
-
|
1339 |
-
#sidemenu a.current {
|
1340 |
-
background-color: #fff;
|
1341 |
-
border-color: #dfdfdf #dfdfdf #fff;
|
1342 |
-
color: #D54E21;
|
1343 |
-
}
|
1344 |
-
|
1345 |
-
#replyerror {
|
1346 |
-
border-color: #ddd;
|
1347 |
-
background-color: #eefcf1;
|
1348 |
-
}
|
1349 |
-
|
1350 |
-
/* table vim shortcuts */
|
1351 |
-
.vim-current,
|
1352 |
-
.vim-current th,
|
1353 |
-
.vim-current td {
|
1354 |
-
background-color: #E4F2FD !important;
|
1355 |
-
}
|
1356 |
-
|
1357 |
-
/* Install Plugins */
|
1358 |
-
.star-average,
|
1359 |
-
.star.star-rating {
|
1360 |
-
background-color: #fc0;
|
1361 |
-
}
|
1362 |
-
|
1363 |
-
div.star.select:hover {
|
1364 |
-
background-color: #d00;
|
1365 |
-
}
|
1366 |
-
|
1367 |
-
div.star img {
|
1368 |
-
border-left: 1px solid #fff;
|
1369 |
-
border-right: 1px solid #fff;
|
1370 |
-
}
|
1371 |
-
|
1372 |
-
.widefat div.star img {
|
1373 |
-
border-left: 1px solid #eefcf1;
|
1374 |
-
border-right: 1px solid #eefcf1;
|
1375 |
-
}
|
1376 |
-
|
1377 |
-
#plugin-information .fyi ul {
|
1378 |
-
background-color: #eaf3fa;
|
1379 |
-
}
|
1380 |
-
|
1381 |
-
#plugin-information .fyi h2.mainheader {
|
1382 |
-
background-color: #cee1ef;
|
1383 |
-
}
|
1384 |
-
|
1385 |
-
#plugin-information pre,
|
1386 |
-
#plugin-information code {
|
1387 |
-
background-color: #ededff;
|
1388 |
-
}
|
1389 |
-
|
1390 |
-
#plugin-information pre {
|
1391 |
-
border: 1px solid #ccc;
|
1392 |
-
}
|
1393 |
-
|
1394 |
-
/* inline editor */
|
1395 |
-
.inline-edit-row fieldset input[type="text"],
|
1396 |
-
.inline-edit-row fieldset textarea,
|
1397 |
-
#bulk-titles {
|
1398 |
-
border-color: #ddd;
|
1399 |
-
}
|
1400 |
-
|
1401 |
-
.inline-editor div.title {
|
1402 |
-
background-color: #EAF3FA;
|
1403 |
-
}
|
1404 |
-
|
1405 |
-
.inline-editor ul.cat-checklist {
|
1406 |
-
background-color: #fff;
|
1407 |
-
border-color: #ddd;
|
1408 |
-
}
|
1409 |
-
|
1410 |
-
.inline-editor .categories .catshow,
|
1411 |
-
.inline-editor .categories .cathide {
|
1412 |
-
color: #007700;
|
1413 |
-
}
|
1414 |
-
|
1415 |
-
.inline-editor .quick-edit-save {
|
1416 |
-
background-color: #f1f1f1;
|
1417 |
-
}
|
1418 |
-
|
1419 |
-
fieldset.inline-edit-col-right .inline-edit-col {
|
1420 |
-
border-color: #dfdfdf;
|
1421 |
-
}
|
1422 |
-
|
1423 |
-
.attention {
|
1424 |
-
color: #D54E21;
|
1425 |
-
}
|
1426 |
-
|
1427 |
-
.meta-box-sortables .postbox:hover .handlediv {
|
1428 |
-
background: transparent url(../../../../wp-admin/images/arrows.png) no-repeat 6px 7px;
|
1429 |
-
}
|
1430 |
-
|
1431 |
-
.tablenav .tablenav-pages {
|
1432 |
-
color: #555;
|
1433 |
-
}
|
1434 |
-
|
1435 |
-
.tablenav .tablenav-pages a {
|
1436 |
-
border-color: #e3e3e3;
|
1437 |
-
background: #eee url('../../../../wp-admin/images/menu-bits.gif?ver=20100610') repeat-x scroll left -379px;
|
1438 |
-
}
|
1439 |
-
|
1440 |
-
.tablenav .tablenav-pages a:hover,
|
1441 |
-
.tablenav .tablenav-pages a:focus {
|
1442 |
-
color: #d54e21;
|
1443 |
-
}
|
1444 |
-
|
1445 |
-
.tablenav .tablenav-pages a.disabled,
|
1446 |
-
.tablenav .tablenav-pages a.disabled:hover,
|
1447 |
-
.tablenav .tablenav-pages a.disabled:focus {
|
1448 |
-
color: #aaa;
|
1449 |
-
}
|
1450 |
-
|
1451 |
-
.tablenav .tablenav-pages .current {
|
1452 |
-
background: #dfdfdf;
|
1453 |
-
border-color: #d3d3d3;
|
1454 |
-
}
|
1455 |
-
|
1456 |
-
#availablethemes,
|
1457 |
-
#availablethemes td {
|
1458 |
-
border-color: #ddd;
|
1459 |
-
}
|
1460 |
-
|
1461 |
-
#current-theme img {
|
1462 |
-
border-color: #999;
|
1463 |
-
}
|
1464 |
-
|
1465 |
-
#TB_window #TB_title a.tb-theme-preview-link,
|
1466 |
-
#TB_window #TB_title a.tb-theme-preview-link:visited {
|
1467 |
-
color: #999;
|
1468 |
-
}
|
1469 |
-
|
1470 |
-
#TB_window #TB_title a.tb-theme-preview-link:hover,
|
1471 |
-
#TB_window #TB_title a.tb-theme-preview-link:focus {
|
1472 |
-
color: #ccc;
|
1473 |
-
}
|
1474 |
-
|
1475 |
-
.misc-pub-section {
|
1476 |
-
border-top-color: #fff;
|
1477 |
-
border-bottom-color: #dfdfdf;
|
1478 |
-
}
|
1479 |
-
|
1480 |
-
#minor-publishing {
|
1481 |
-
border-bottom-color: #dfdfdf;
|
1482 |
-
}
|
1483 |
-
|
1484 |
-
#post-body .misc-pub-section {
|
1485 |
-
border-right-color: #eee;
|
1486 |
-
}
|
1487 |
-
|
1488 |
-
.post-com-count span {
|
1489 |
-
background-color: #bbb;
|
1490 |
-
}
|
1491 |
-
|
1492 |
-
.form-table .color-palette td {
|
1493 |
-
border-color: #fff;
|
1494 |
-
}
|
1495 |
-
|
1496 |
-
.sortable-placeholder {
|
1497 |
-
border-color: #bbb;
|
1498 |
-
background-color: #eefcf1;
|
1499 |
-
}
|
1500 |
-
|
1501 |
-
#post-body ul.category-tabs li.tabs a,
|
1502 |
-
#post-body ul.add-menu-item-tabs li.tabs a,
|
1503 |
-
body.press-this ul.category-tabs li.tabs a {
|
1504 |
-
color: #333;
|
1505 |
-
}
|
1506 |
-
|
1507 |
-
.view-switch #view-switch-list {
|
1508 |
-
background: transparent url(../../../../wp-admin/images/list.png) no-repeat 0 0;
|
1509 |
-
}
|
1510 |
-
|
1511 |
-
.view-switch .current #view-switch-list {
|
1512 |
-
background: transparent url(../../../../wp-admin/images/list.png) no-repeat -40px 0;
|
1513 |
-
}
|
1514 |
-
|
1515 |
-
.view-switch #view-switch-excerpt {
|
1516 |
-
background: transparent url(../../../../wp-admin/images/list.png) no-repeat -20px 0;
|
1517 |
-
}
|
1518 |
-
|
1519 |
-
.view-switch .current #view-switch-excerpt {
|
1520 |
-
background: transparent url(../../../../wp-admin/images/list.png) no-repeat -60px 0;
|
1521 |
-
}
|
1522 |
-
|
1523 |
-
#header-logo {
|
1524 |
-
background: transparent url(../../../../wp-admin/images/wp-logo.png?ver=20110504) no-repeat scroll center center;
|
1525 |
-
}
|
1526 |
-
|
1527 |
-
.popular-tags,
|
1528 |
-
.feature-filter {
|
1529 |
-
background-color: #fff;
|
1530 |
-
border-color: #DFDFDF;
|
1531 |
-
}
|
1532 |
-
|
1533 |
-
#theme-information .action-button {
|
1534 |
-
border-top-color: #DFDFDF;
|
1535 |
-
}
|
1536 |
-
|
1537 |
-
.theme-listing br.line {
|
1538 |
-
border-bottom-color: #ccc;
|
1539 |
-
}
|
1540 |
-
|
1541 |
-
div.widgets-sortables,
|
1542 |
-
#widgets-left .inactive {
|
1543 |
-
background-color: #fcfcfc;
|
1544 |
-
border-color: #dfdfdf;
|
1545 |
-
}
|
1546 |
-
|
1547 |
-
#available-widgets .widget-holder {
|
1548 |
-
background-color: #fcfcfc;
|
1549 |
-
border-color: #dfdfdf;
|
1550 |
-
}
|
1551 |
-
|
1552 |
-
#available-widgets .widget-description {
|
1553 |
-
color: #555;
|
1554 |
-
}
|
1555 |
-
|
1556 |
-
.sidebar-name {
|
1557 |
-
color: #464646;
|
1558 |
-
text-shadow: #fff 0 1px 0;
|
1559 |
-
border-color: #dfdfdf;
|
1560 |
-
-moz-box-shadow: inset 0 1px 0 #fff;
|
1561 |
-
-webkit-box-shadow: inset 0 1px 0 #fff;
|
1562 |
-
box-shadow: inset 0 1px 0 #fff;
|
1563 |
-
}
|
1564 |
-
|
1565 |
-
.sidebar-name:hover,
|
1566 |
-
#removing-widget {
|
1567 |
-
color: #d54e21;
|
1568 |
-
}
|
1569 |
-
|
1570 |
-
#removing-widget span {
|
1571 |
-
color: black;
|
1572 |
-
}
|
1573 |
-
|
1574 |
-
.sidebar-name-arrow {
|
1575 |
-
background: transparent url(../../../../wp-admin/images/arrows.png) no-repeat 5px 9px;
|
1576 |
-
}
|
1577 |
-
|
1578 |
-
.sidebar-name:hover .sidebar-name-arrow {
|
1579 |
-
background: transparent url(../../../../wp-admin/images/arrows-dark.png) no-repeat 5px 9px;
|
1580 |
-
}
|
1581 |
-
|
1582 |
-
.in-widget-title {
|
1583 |
-
color: #606060;
|
1584 |
-
}
|
1585 |
-
|
1586 |
-
.deleting .widget-title * {
|
1587 |
-
color: #aaa;
|
1588 |
-
}
|
1589 |
-
|
1590 |
-
.imgedit-menu div {
|
1591 |
-
border-color: #d5d5d5;
|
1592 |
-
background-color: #f1f1f1;
|
1593 |
-
}
|
1594 |
-
|
1595 |
-
.imgedit-menu div:hover {
|
1596 |
-
border-color: #c1c1c1;
|
1597 |
-
background-color: #eaeaea;
|
1598 |
-
}
|
1599 |
-
|
1600 |
-
.imgedit-menu div.disabled {
|
1601 |
-
border-color: #ccc;
|
1602 |
-
background-color: #ddd;
|
1603 |
-
filter: alpha(opacity=50);
|
1604 |
-
opacity: 0.5;
|
1605 |
-
}
|
1606 |
-
|
1607 |
-
#dashboard_recent_comments div.undo {
|
1608 |
-
border-top-color: #dfdfdf;
|
1609 |
-
}
|
1610 |
-
|
1611 |
-
.comment-ays,
|
1612 |
-
.comment-ays th {
|
1613 |
-
border-color: #ddd;
|
1614 |
-
}
|
1615 |
-
|
1616 |
-
.comment-ays th {
|
1617 |
-
background-color: #f1f1f1;
|
1618 |
-
}
|
1619 |
-
|
1620 |
-
/* added from nav-menu.css */
|
1621 |
-
#menu-management .menu-edit {
|
1622 |
-
border-color: #dfdfdf;
|
1623 |
-
}
|
1624 |
-
|
1625 |
-
#post-body {
|
1626 |
-
background: #fff;
|
1627 |
-
border-top-color: #fff;
|
1628 |
-
border-bottom-color: #dfdfdf;
|
1629 |
-
}
|
1630 |
-
|
1631 |
-
#nav-menu-header {
|
1632 |
-
border-bottom-color: #dfdfdf;
|
1633 |
-
}
|
1634 |
-
|
1635 |
-
#nav-menu-footer {
|
1636 |
-
border-top-color: #fff;
|
1637 |
-
}
|
1638 |
-
|
1639 |
-
#menu-management .nav-tabs-arrow a {
|
1640 |
-
color: #C1C1C1;
|
1641 |
-
}
|
1642 |
-
|
1643 |
-
#menu-management .nav-tabs-arrow a:hover {
|
1644 |
-
color: #D54E21;
|
1645 |
-
}
|
1646 |
-
|
1647 |
-
#menu-management .nav-tabs-arrow a:active {
|
1648 |
-
color: #464646;
|
1649 |
-
}
|
1650 |
-
|
1651 |
-
#menu-management .nav-tab-active {
|
1652 |
-
border-color: #dfdfdf;
|
1653 |
-
}
|
1654 |
-
|
1655 |
-
#menu-management .nav-tab {
|
1656 |
-
background: #fbfbfb;
|
1657 |
-
border-color: #dfdfdf;
|
1658 |
-
}
|
1659 |
-
|
1660 |
-
.js .input-with-default-title {
|
1661 |
-
color: #aaa;
|
1662 |
-
}
|
1663 |
-
|
1664 |
-
#cancel-save {
|
1665 |
-
color: #ff0000;
|
1666 |
-
}
|
1667 |
-
|
1668 |
-
#cancel-save:hover {
|
1669 |
-
background-color: #FF0000;
|
1670 |
-
color: #fff;
|
1671 |
-
}
|
1672 |
-
|
1673 |
-
.list-container {
|
1674 |
-
border-color: #DFDFDF;
|
1675 |
-
}
|
1676 |
-
|
1677 |
-
.menu-item-handle {
|
1678 |
-
border-color: #dfdfdf;
|
1679 |
-
}
|
1680 |
-
|
1681 |
-
.menu li.deleting .menu-item-handle {
|
1682 |
-
background-color: #f66;
|
1683 |
-
text-shadow: #ccc;
|
1684 |
-
}
|
1685 |
-
|
1686 |
-
.item-type { /* Menu item controls */
|
1687 |
-
color: #999999;
|
1688 |
-
}
|
1689 |
-
|
1690 |
-
.item-controls .menu-item-delete:hover {
|
1691 |
-
color: #ff0000;
|
1692 |
-
}
|
1693 |
-
|
1694 |
-
.item-edit {
|
1695 |
-
background: transparent url(../../../../wp-admin/images/arrows.png) no-repeat 8px 10px;
|
1696 |
-
border-bottom-color: #eee;
|
1697 |
-
}
|
1698 |
-
|
1699 |
-
.item-edit:hover {
|
1700 |
-
background: transparent url(../../../../wp-admin/images/arrows-dark.png) no-repeat 8px 10px;
|
1701 |
-
}
|
1702 |
-
|
1703 |
-
.menu-item-settings { /* Menu editing */
|
1704 |
-
border-color: #dfdfdf;
|
1705 |
-
}
|
1706 |
-
|
1707 |
-
.link-to-original {
|
1708 |
-
color: #777;
|
1709 |
-
border-color: #dfdfdf;
|
1710 |
-
}
|
1711 |
-
|
1712 |
-
#cancel-save:hover {
|
1713 |
-
color: #fff !important;
|
1714 |
-
}
|
1715 |
-
|
1716 |
-
#update-menu-item {
|
1717 |
-
color: #fff !important;
|
1718 |
-
}
|
1719 |
-
|
1720 |
-
#update-menu-item:hover,
|
1721 |
-
#update-menu-item:active,
|
1722 |
-
#update-menu-item:focus {
|
1723 |
-
color: #eaf2fa !important;
|
1724 |
-
border-color: #13455b !important;
|
1725 |
-
}
|
1726 |
-
|
1727 |
-
.submitbox .submitcancel {
|
1728 |
-
color: #007700;
|
1729 |
-
border-bottom-color: #007700;
|
1730 |
-
}
|
1731 |
-
|
1732 |
-
.submitbox .submitcancel:hover {
|
1733 |
-
background: #007700;
|
1734 |
-
color: #fff;
|
1735 |
-
}
|
1736 |
-
/* end added from nav-menu.css */
|
1737 |
-
|
1738 |
-
#menu-management .nav-tab-active,
|
1739 |
-
.menu-item-handle,
|
1740 |
-
.menu-item-settings {
|
1741 |
-
-moz-box-shadow: inset 0 1px 0 #fff;
|
1742 |
-
-webkit-box-shadow: inset 0 1px 0 #fff;
|
1743 |
-
box-shadow: inset 0 1px 0 #fff;
|
1744 |
-
}
|
1745 |
-
|
1746 |
-
#menu-management .nav-tab-active {
|
1747 |
-
background: #eefcf1;
|
1748 |
-
border-bottom-color: #eefcf1;
|
1749 |
-
}
|
1750 |
-
|
1751 |
-
/* custom header & background pages */
|
1752 |
-
#upload-form label {
|
1753 |
-
color: #777;
|
1754 |
-
}
|
1755 |
-
/* custom header & background pages */
|
1756 |
-
|
1757 |
-
/* full screen */
|
1758 |
-
.fullscreen-overlay {
|
1759 |
-
background: #fff;
|
1760 |
-
}
|
1761 |
-
|
1762 |
-
.wp-fullscreen-focus #wp-fullscreen-title,
|
1763 |
-
.wp-fullscreen-focus #wp-fullscreen-container {
|
1764 |
-
border-color: #ccc;
|
1765 |
-
}
|
1766 |
-
|
1767 |
-
#fullscreen-topbar {
|
1768 |
-
border-bottom-color: #DFDFDF;
|
1769 |
-
}
|
1770 |
-
|
1771 |
-
/* Begin About Pages */
|
1772 |
-
|
1773 |
-
.about-wrap h1 {
|
1774 |
-
color: #333;
|
1775 |
-
text-shadow: 1px 1px 1px white;
|
1776 |
-
}
|
1777 |
-
|
1778 |
-
.about-text {
|
1779 |
-
color: #777;
|
1780 |
-
}
|
1781 |
-
|
1782 |
-
.wp-badge {
|
1783 |
-
color: #fff;
|
1784 |
-
text-shadow: 0 -1px 0 #0c3d57;
|
1785 |
-
border-color: #2B5173;
|
1786 |
-
|
1787 |
-
-moz-box-shadow: inset 0 0 0 1px #5F8CA8;
|
1788 |
-
-webkit-box-shadow: inset 0 0 0 1px #5F8CA8;
|
1789 |
-
box-shadow: inset 0 0 0 1px #5F8CA8;
|
1790 |
-
|
1791 |
-
background-color: #378aac;
|
1792 |
-
background-image: url(../../../../wp-admin/images/wp-badge.png);
|
1793 |
-
background-image: url(../../../../wp-admin/images/wp-badge.png), -ms-linear-gradient(top, #378aac, #165d84); /* IE10 */
|
1794 |
-
background-image: url(../../../../wp-admin/images/wp-badge.png), -moz-linear-gradient(top, #378aac, #165d84); /* Firefox */
|
1795 |
-
background-image: url(../../../../wp-admin/images/wp-badge.png), -o-linear-gradient(top, #378aac, #165d84); /* Opera */
|
1796 |
-
background-image: url(../../../../wp-admin/images/wp-badge.png), -webkit-gradient(linear, left top, left bottom, from(#378aac), to(#165d84)); /* old Webkit */
|
1797 |
-
background-image: url(../../../../wp-admin/images/wp-badge.png), -webkit-linear-gradient(top, #378aac, #165d84); /* new Webkit */
|
1798 |
-
background-image: url(../../../../wp-admin/images/wp-badge.png), linear-gradient(top, #378aac, #165d84); /* proposed W3C Markup */
|
1799 |
-
}
|
1800 |
-
|
1801 |
-
.about-wrap h2 .nav-tab {
|
1802 |
-
color: #007700;
|
1803 |
-
}
|
1804 |
-
.about-wrap h2 .nav-tab:hover {
|
1805 |
-
color: #d54e21;
|
1806 |
-
}
|
1807 |
-
.about-wrap h2 .nav-tab-active,
|
1808 |
-
.about-wrap h2 .nav-tab-active:hover {
|
1809 |
-
color: #333;
|
1810 |
-
}
|
1811 |
-
.about-wrap h2 .nav-tab-active {
|
1812 |
-
text-shadow: 1px 1px 1px white;
|
1813 |
-
color: #464646;
|
1814 |
-
}
|
1815 |
-
|
1816 |
-
.about-wrap h3 {
|
1817 |
-
color: #333;
|
1818 |
-
text-shadow: 1px 1px 1px white;
|
1819 |
-
}
|
1820 |
-
|
1821 |
-
.about-wrap .feature-section h4 {
|
1822 |
-
color: #464646;
|
1823 |
-
}
|
1824 |
-
|
1825 |
-
.about-wrap .feature-section img {
|
1826 |
-
background: #eefcf1;
|
1827 |
-
border-color: #dfdfdf;
|
1828 |
-
|
1829 |
-
-moz-box-shadow: 0 0 6px rgba( 0, 0, 0, 0.3 );
|
1830 |
-
-webkit-box-shadow: 0 0 6px rgba( 0, 0, 0, 0.3 );
|
1831 |
-
box-shadow: 0 0 6px rgba( 0, 0, 0, 0.3 );
|
1832 |
-
}
|
1833 |
-
|
1834 |
-
.about-wrap h4.wp-people-group {
|
1835 |
-
text-shadow: 1px 1px 1px white;
|
1836 |
-
}
|
1837 |
-
|
1838 |
-
.about-wrap li.wp-person img.gravatar {
|
1839 |
-
-moz-box-shadow: 0 0 4px rgba( 0, 0, 0, 0.4 );
|
1840 |
-
-webkit-box-shadow: 0 0 4px rgba( 0, 0, 0, 0.4 );
|
1841 |
-
box-shadow: 0 0 4px rgba( 0, 0, 0, 0.4 );
|
1842 |
-
}
|
1843 |
-
.about-wrap li.wp-person .title {
|
1844 |
-
color: #464646;
|
1845 |
-
text-shadow: 1px 1px 1px white;
|
1846 |
-
}
|
1847 |
-
|
1848 |
-
.freedoms-php .about-wrap ol li {
|
1849 |
-
color: #999;
|
1850 |
-
}
|
1851 |
-
.freedoms-php .about-wrap ol p {
|
1852 |
-
color: #464646;
|
1853 |
-
}
|
1854 |
-
|
1855 |
-
/* End About Pages */
|
1856 |
-
|
1857 |
-
|
1858 |
-
/*------------------------------------------------------------------------------
|
1859 |
-
2.0 - Right to Left Styles
|
1860 |
-
------------------------------------------------------------------------------*/
|
1861 |
-
|
1862 |
-
.rtl .bar {
|
1863 |
-
border-right-color: none;
|
1864 |
-
border-left-color: #99d;
|
1865 |
-
}
|
1866 |
-
|
1867 |
-
.rtl .post-com-count {
|
1868 |
-
background-image: url(../../../../wp-admin/images/bubble_bg-rtl.gif);
|
1869 |
-
}
|
1870 |
-
|
1871 |
-
.rtl #screen-meta-links a.show-settings {
|
1872 |
-
background-position: left 3px;
|
1873 |
-
}
|
1874 |
-
|
1875 |
-
.rtl #screen-meta-links a.show-settings.screen-meta-active {
|
1876 |
-
background-position: left -33px;
|
1877 |
-
}
|
1878 |
-
|
1879 |
-
/* Menu */
|
1880 |
-
.rtl #adminmenushadow,
|
1881 |
-
.rtl #adminmenuback {
|
1882 |
-
background-image: url(../../../../wp-admin/images/menu-shadow-rtl.png);
|
1883 |
-
background-position: top left;
|
1884 |
-
}
|
1885 |
-
|
1886 |
-
.rtl #adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,
|
1887 |
-
.rtl #adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle {
|
1888 |
-
background: transparent url(../../../../wp-admin/images/arrows-dark.png) no-repeat 8px 6px;
|
1889 |
-
}
|
1890 |
-
|
1891 |
-
.rtl #adminmenu .wp-has-submenu:hover .wp-menu-toggle,
|
1892 |
-
.rtl #adminmenu .wp-menu-open .wp-menu-toggle {
|
1893 |
-
background: transparent url(../../../../wp-admin/images/arrows.png) no-repeat 8px 6px;
|
1894 |
-
}
|
1895 |
-
|
1896 |
-
.rtl #adminmenu .wp-submenu .wp-submenu-head {
|
1897 |
-
border-right-color: none;
|
1898 |
-
border-left-color: #dfdfdf;
|
1899 |
-
}
|
1900 |
-
|
1901 |
-
.rtl .folded #adminmenu .wp-submenu-wrap {
|
1902 |
-
-moz-box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 );
|
1903 |
-
-webkit-box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 );
|
1904 |
-
box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 );
|
1905 |
-
}
|
1906 |
-
|
1907 |
-
/* Collapse Menu Button */
|
1908 |
-
.rtl #collapse-button div {
|
1909 |
-
background-position: 0 -108px;
|
1910 |
-
}
|
1911 |
-
|
1912 |
-
.rtl .folded #collapse-button div {
|
1913 |
-
background-position: 0 -72px;
|
1914 |
-
}
|
1915 |
-
|
1916 |
-
/* Edit Image */
|
1917 |
-
.rtl .meta-box-sortables .postbox:hover .handlediv {
|
1918 |
-
background: transparent url(../../../../wp-admin/images/arrows.png) no-repeat 6px 7px;
|
1919 |
-
}
|
1920 |
-
|
1921 |
-
.rtl .tablenav .tablenav-pages a {
|
1922 |
-
border-color: #e3e3e3;
|
1923 |
-
background: #eee url('../../../../wp-admin/images/menu-bits-rtl.gif?ver=20100610') repeat-x scroll right -379px;
|
1924 |
-
}
|
1925 |
-
|
1926 |
-
.rtl #post-body .misc-pub-section {
|
1927 |
-
border-right-color: none;
|
1928 |
-
border-left-color: #eee;
|
1929 |
-
}
|
1930 |
-
|
1931 |
-
.rtl .sidebar-name-arrow {
|
1932 |
-
background: transparent url(../../../../wp-admin/images/arrows.png) no-repeat 5px 9px;
|
1933 |
-
}
|
1934 |
-
|
1935 |
-
.rtl .sidebar-name:hover .sidebar-name-arrow {
|
1936 |
-
background: transparent url(../../../../wp-admin/images/arrows-dark.png) no-repeat 5px 9px;
|
1937 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bbp-admin/styles/admin-2.css
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
html,.wp-dialog{background-color:#fff}textarea,input[type="text"],input[type="password"],input[type="file"],input[type="button"],input[type="submit"],input[type="reset"],input[type="email"],input[type="number"],input[type="search"],input[type="tel"],input[type="url"],select{border-color:#dfdfdf;background-color:#fff}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="file"]:focus,input[type="button"]:focus,input[type="submit"]:focus,input[type="reset"]:focus,input[type="email"]:focus,input[type="number"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="url"]:focus,select:focus{border-color:#bbb}kbd,code{background:#eaeaea}input[readonly]{background-color:#eee}.find-box-search{border-color:#dfdfdf;background-color:#f1f1f1}.find-box{background-color:#f1f1f1}.find-box-inside{background-color:#fff}a.page-numbers:hover{border-color:#999}body,#wpbody,.form-table .pre{color:#333}body>#upload-menu{border-bottom-color:#fff}#postcustomstuff table,#your-profile fieldset,#rightnow,div.dashboard-widget,#dashboard-widgets p.dashboard-widget-links{border-color:#ccc}#poststuff .inside label.spam,#poststuff .inside label.deleted{color:red}#poststuff .inside label.waiting{color:orange}#poststuff .inside label.approved{color:green}#postcustomstuff table{border-color:#dfdfdf;background-color:#f9f9f9}#postcustomstuff thead th{background-color:#f1f1f1}.widefat{border-color:#dfdfdf;background-color:#eefcf1}textarea.widefat{background-color:#fff}div.dashboard-widget-error{background-color:#c43}div.dashboard-widget-notice{background-color:#cfe1ef}div.dashboard-widget-submit{border-top-color:#ccc}div.tabs-panel,.wp-tab-panel,ul.category-tabs li.tabs,ul.add-menu-item-tabs li.tabs,.wp-tab-active{border-color:#dfdfdf;background-color:#fff}ul.category-tabs li.tabs,ul.add-menu-item-tabs li.tabs,.wp-tab-active{background-color:#fff}input.disabled,textarea.disabled{background-color:#ccc}#plugin-information .action-button a,#plugin-information .action-button a:hover,#plugin-information .action-button a:visited{color:#fff}.widget .widget-top,.postbox h3,.stuffbox h3,.widefat thead tr th,.widefat tfoot tr th,h3.dashboard-widget-title,h3.dashboard-widget-title span,h3.dashboard-widget-title small,.find-box-head,.sidebar-name,#nav-menu-header,#nav-menu-footer,.menu-item-handle,#fullscreen-topbar{background-color:#f1f1f1;background-image:-ms-linear-gradient(top,#eefcf1,#deece1);background-image:-moz-linear-gradient(top,#eefcf1,#deece1);background-image:-o-linear-gradient(top,#eefcf1,#deece1);background-image:-webkit-gradient(linear,left top,left bottom,from(#eefcf1),to(#deece1));background-image:-webkit-linear-gradient(top,#eefcf1,#deece1);background-image:linear-gradient(top,#eefcf1,#deece1)}.widget .widget-top,.postbox h3,.stuffbox h3{border-bottom-color:#dfdfdf;text-shadow:#fff 0 1px 0;-moz-box-shadow:0 1px 0 #fff;-webkit-box-shadow:0 1px 0 #fff;box-shadow:0 1px 0 #fff}.form-table th,.form-wrap label{color:#222;text-shadow:#fff 0 1px 0}.description,.form-wrap p{color:#666}strong .post-com-count span{background-color:#070}.sorthelper{background-color:#ccf3fa}.ac_match,.subsubsub a.current{color:#000}.wrap h2{color:#464646}.wrap .add-new-h2{background:#f1f1f1}.subtitle{color:#777}.ac_over{background-color:#f0f0b8}.ac_results{background-color:#fff;border-color:#6eb469}.ac_results li{color:#101010}.alternate,.alt{background-color:#fefefe}.available-theme a.screenshot{background-color:#f1f1f1;border-color:#ddd}.bar{background-color:#e8e8e8;border-right-color:#99d}#media-upload,#media-upload .media-item .slidetoggle{background:#fff}#media-upload .slidetoggle{border-top-color:#dfdfdf}div.error,.login #login_error{background-color:#ffebe8;border-color:#c00}div.error a{color:#c00}.form-invalid{background-color:#ffebe8!important}.form-invalid input,.form-invalid select{border-color:#c00!important}.submit{border-color:#dfdfdf}.highlight{background-color:#e4f2fd;color:#000}.howto,.nonessential,#edit-slug-box,.form-input-tip,.subsubsub{color:#666}#wpbody-content #media-items .describe{border-top-color:#dfdfdf}.media-upload-form label.form-help,td.help{color:#9a9a9a}.post-com-count{background-image:url(../../../wp-admin/images/bubble_bg.gif);color:#fff}.post-com-count span{background-color:#bbb;color:#fff}.post-com-count:hover span{background-color:#d54e21}.quicktags,.search{background-color:#ccc;color:#000}.side-info h5{border-bottom-color:#dadada}.side-info ul{color:#666}.button,.button-secondary,.submit input,input[type=button],input[type=submit]{border-color:#bbb;color:#464646}.button:hover,.button-secondary:hover,.submit input:hover,input[type=button]:hover,input[type=submit]:hover{color:#000;border-color:#666}.button,.submit input,.button-secondary{background:#f2f2f2 url(../../../wp-admin/images/white-grad.png) repeat-x scroll left top;text-shadow:rgba(255,255,255,1) 0 1px 0}.button:active,.submit input:active,.button-secondary:active{background:#eee url(../../../wp-admin/images/white-grad-active.png) repeat-x scroll left top}input.button-primary,button.button-primary,a.button-primary{border-color:#298cba;font-weight:bold;color:#fff;background:#070 url(../images/button-grad.png) repeat-x scroll left top;text-shadow:rgba(0,0,0,0.3) 0 -1px 0}input.button-primary:active,button.button-primary:active,a.button-primary:active{background:#070 url(../images/button-grad-active.png) repeat-x scroll left top;color:#eaf2fa}input.button-primary:hover,button.button-primary:hover,a.button-primary:hover,a.button-primary:focus,a.button-primary:active{border-color:#13455b;color:#eaf2fa}.button-disabled,.button[disabled],.button:disabled,.button-secondary[disabled],.button-secondary:disabled,a.button.disabled{color:#aaa!important;border-color:#ddd!important}.button-primary-disabled,.button-primary[disabled],.button-primary:disabled{color:#9fd0d5!important;background:#298cba!important}a:hover,a:active,a:focus{color:#d54e21}#adminmenu a:hover,#adminmenu li.menu-top>a:focus,#adminmenu ul.wp-submenu a:hover,#the-comment-list .comment a:hover,#rightnow a:hover,#media-upload a.del-link:hover,div.dashboard-widget-submit input:hover,.subsubsub a:hover,.subsubsub a.current:hover,.ui-tabs-nav a:hover,.plugins .inactive a:hover,#all-plugins-table .plugins .inactive a:hover,#search-plugins-table .plugins .inactive a:hover{color:#d54e21}#the-comment-list .comment-item,#dashboard-widgets #dashboard_quick_press form p.submit{border-color:#dfdfdf}#side-sortables .category-tabs .tabs a,#side-sortables .add-menu-item-tabs .tabs a,.wp-tab-bar .wp-tab-active a{color:#333}#rightnow .rbutton{background-color:#ebebeb;color:#264761}.submitbox .submit{background-color:#464646;color:#ccc}.plugins a.delete:hover,#all-plugins-table .plugins a.delete:hover,#search-plugins-table .plugins a.delete:hover,.submitbox .submitdelete{color:#f00;border-bottom-color:#f00}.submitbox .submitdelete:hover,#media-items a.delete:hover{color:#fff;background-color:#f00;border-bottom-color:#f00}#normal-sortables .submitbox .submitdelete:hover{color:#000;background-color:#f00;border-bottom-color:#f00}.tablenav .dots{border-color:transparent}.tablenav .next,.tablenav .prev{border-color:transparent;color:#070}.tablenav .next:hover,.tablenav .prev:hover{border-color:transparent;color:#d54e21}div.updated,.login .message{background-color:#ffffe0;border-color:#e6db55}.update-message{color:#000}a.page-numbers{border-bottom-color:#b8d3e2}.commentlist li{border-bottom-color:#ccc}.widefat td,.widefat th{border-top-color:#fff;border-bottom-color:#dfdfdf}.widefat th{text-shadow:rgba(255,255,255,0.8) 0 1px 0}.widefat td{color:#555}.widefat p,.widefat ol,.widefat ul{color:#333}.widefat thead tr th,.widefat tfoot tr th,h3.dashboard-widget-title,h3.dashboard-widget-title span,h3.dashboard-widget-title small,.find-box-head{color:#333}th.sortable a:hover,th.sortable a:active,th.sortable a:focus{color:#333}h3.dashboard-widget-title small a{color:#d7d7d7}h3.dashboard-widget-title small a:hover{color:#fff}a,#adminmenu a,#the-comment-list p.comment-author strong a,#media-upload a.del-link,#media-items a.delete,.plugins a.delete,.ui-tabs-nav a{color:#070}#adminmenu .awaiting-mod,#adminmenu .update-plugins,#sidemenu a .update-plugins,#rightnow .reallynow{background-color:#464646;color:#fff;-moz-box-shadow:rgba(255,255,255,0.5) 0 1px 0;-khtml-box-shadow:rgba(255,255,255,0.5) 0 1px 0;-webkit-box-shadow:rgba(255,255,255,0.5) 0 1px 0;box-shadow:rgba(255,255,255,0.5) 0 1px 0}#plugin-information .action-button{background-color:#d54e21;color:#fff}#adminmenu li.current a .awaiting-mod,#adminmenu li a.wp-has-current-submenu .update-plugins{background-color:#464646;color:#fff;-moz-box-shadow:rgba(255,255,255,0.5) 0 1px 0;-khtml-box-shadow:rgba(255,255,255,0.5) 0 1px 0;-webkit-box-shadow:rgba(255,255,255,0.5) 0 1px 0;box-shadow:rgba(255,255,255,0.5) 0 1px 0}div#media-upload-header,div#plugin-information-header{background-color:#eefcf1;border-bottom-color:#dfdfdf}#currenttheme img{border-color:#666}#dashboard_secondary div.dashboard-widget-content ul li a{background-color:#eefcf1}input.readonly,textarea.readonly{background-color:#ddd}#editable-post-name{background-color:#fffbcc}#edit-slug-box strong,.tablenav .displaying-num,#submitted-on,.submitted-on{color:#777}.login #nav a,.login #backtoblog a{color:#070!important}.login #nav a:hover,.login #backtoblog a:hover{color:#d54e21!important}#footer{color:#777;border-color:#dfdfdf}#media-items,.imgedit-group,.media-item{border-color:#dfdfdf}.checkbox,.side-info,.plugins tr,#your-profile #rich_editing{background-color:#fcfcfc}.plugins .inactive,.plugins .inactive th,.plugins .inactive td,tr.inactive+tr.plugin-update-tr .plugin-update{background-color:#f4f4f4}.plugin-update-tr .update-message{background-color:#fffbe4;border-color:#dfdfdf}.plugins .active,.plugins .active th,.plugins .active td{color:#000}.plugins .inactive a{color:#579}#the-comment-list tr.undo,#the-comment-list div.undo{background-color:#f4f4f4}#the-comment-list .unapproved{background-color:#ffffe0}#the-comment-list .approve a{color:#006505}#the-comment-list .unapprove a{color:#d98500}table.widefat span.delete a,table.widefat span.trash a,table.widefat span.spam a,#dashboard_recent_comments .delete a,#dashboard_recent_comments .trash a,#dashboard_recent_comments .spam a{color:#bc0b0b}.welcome-panel{border-color:#dfdfdf}.welcome-panel p{color:#777}.welcome-panel-column p{color:#464646}.welcome-panel .welcome-panel-close{background:#eee;text-shadow:1px 1px 1px #eee}.welcome-panel h3{text-shadow:1px 1px 1px white}.widget,#widget-list .widget-top,.postbox,#titlediv,#poststuff .postarea,.stuffbox{border-color:#dfdfdf;-moz-box-shadow:inset 0 1px 0 #fff;-webkit-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff;-moz-border-radius:3px;-khtml-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.widget,#widget-list .widget-top,.postbox,.menu-item-settings{background-color:#eefcf1;background-image:-ms-linear-gradient(top,#eefcf1,#deece1);background-image:-moz-linear-gradient(top,#eefcf1,#deece1);background-image:-o-linear-gradient(top,#eefcf1,#deece1);background-image:-webkit-gradient(linear,left top,left bottom,from(#eefcf1),to(#deece1));background-image:-webkit-linear-gradient(top,#eefcf1,#deece1);background-image:linear-gradient(top,#eefcf1,#deece1)}.postbox h3{color:#464646}.widget .widget-top{color:#222}.sidebar-name:hover h3,.postbox h3:hover{color:#000}.curtime #timestamp{background-image:url(../../../wp-admin/images/date-button.gif)}#quicktags #ed_link{color:#00f}#rightnow .youhave{background-color:#f0f6fb}#rightnow a{color:#448abd}.tagchecklist span a,#bulk-titles div a{background:url(../../../wp-admin/images/xit.gif) no-repeat}.tagchecklist span a:hover,#bulk-titles div a:hover{background:url(../../../wp-admin/images/xit.gif) no-repeat -10px 0}#update-nag,.update-nag{background-color:#fffbcc;border-color:#e6db55;color:#555}#screen-meta{background-color:#f1f1f1;border-color:#ccc;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.05);box-shadow:0 1px 3px rgba(0,0,0,0.05)}.contextual-help-tabs a:hover{color:#333}.contextual-help-sidebar,.contextual-help-tabs .active{border-color:#ccc}.contextual-help-tabs .active,.contextual-help-tabs .active a,.contextual-help-tabs .active a:hover{background:#fff;color:#000}.contextual-help-tabs-wrap{border-color:#ccc;background-color:#fff}#screen-options-link-wrap,#contextual-help-link-wrap{background-color:#e3e3e3;border-right:1px solid transparent;border-left:1px solid transparent;border-bottom:1px solid transparent;background-image:-ms-linear-gradient(bottom,#dfdfdf,#f1f1f1);background-image:-moz-linear-gradient(bottom,#dfdfdf,#f1f1f1);background-image:-o-linear-gradient(bottom,#dfdfdf,#f1f1f1);background-image:-webkit-gradient(linear,left bottom,left top,from(#dfdfdf),to(#f1f1f1));background-image:-webkit-linear-gradient(bottom,#dfdfdf,#f1f1f1);background-image:linear-gradient(bottom,#dfdfdf,#f1f1f1)}#screen-meta-links a.show-settings{color:#777}#screen-meta-links a.show-settings:hover{color:#000}#screen-meta-links a.show-settings{background:transparent url(../../../wp-admin/images/arrows.png) no-repeat right 3px}#screen-meta-links a.show-settings.screen-meta-active{background:transparent url(../../../wp-admin/images/arrows.png) no-repeat right -33px}.login #backtoblog a{color:#464646}#wphead{border-bottom:#dfdfdf 1px solid}#wphead h1 a{color:#464646}#footer a:link,#footer a:visited{text-decoration:none}#footer a:hover{color:#000;text-decoration:underline}.file-error,abbr.required,.widget-control-remove:hover,table.widefat .delete a:hover,table.widefat .trash a:hover,table.widefat .spam a:hover,#dashboard_recent_comments .delete a:hover,#dashboard_recent_comments .trash a:hover #dashboard_recent_comments .spam a:hover{color:#f00}#pass-strength-result{background-color:#eee;border-color:#ddd!important}#pass-strength-result.bad{background-color:#ffb78c;border-color:#ff853c!important}#pass-strength-result.good{background-color:#ffec8b;border-color:#fc0!important}#pass-strength-result.short{background-color:#ffa0a0;border-color:#f04040!important}#pass-strength-result.strong{background-color:#c3ff88;border-color:#8dff1c!important}#titlediv #title{border-color:#ccc}#post-status-info{border-color:#dfdfdf #ccc #ccc;background-color:#eaeaea}.editwidget .widget-inside{border-color:#dfdfdf}#titlediv #title{background-color:#fff}#tTips p#tTips_inside{background-color:#ddd;color:#333}#timestampdiv input,#namediv input,#poststuff .inside .the-tagcloud{border-color:#ddd}#adminmenuback,#adminmenuwrap{background-color:#deece1;border-color:#ccc}#adminmenushadow,#adminmenuback{background-image:url(../../../wp-admin/images/menu-shadow.png);background-position:top right;background-repeat:repeat-y}#adminmenu li.wp-menu-separator{background:#dfdfdf;border-color:#cfcfcf}#adminmenu div.separator{border-color:#e1e1e1}#adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,#adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle{background:transparent url(../../../wp-admin/images/arrows-dark.png) no-repeat -1px 6px}#adminmenu .wp-has-submenu:hover .wp-menu-toggle,#adminmenu .wp-menu-open .wp-menu-toggle{background:transparent url(../../../wp-admin/images/arrows.png) no-repeat -2px 6px}#adminmenu a.menu-top,.folded #adminmenu li.menu-top,#adminmenu .wp-submenu .wp-submenu-head{border-top-color:#eefcf1;border-bottom-color:#dfdfdf}#adminmenu li.wp-menu-open{border-color:#dfdfdf}#adminmenu li.menu-top:hover>a,#adminmenu li.menu-top>a:focus{background-color:#eefcf1;text-shadow:0 1px 0 rgba(255,255,255,0.4)}#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,#adminmenu li.current a.menu-top,.folded #adminmenu li.wp-has-current-submenu,.folded #adminmenu li.current.menu-top,#adminmenu .wp-menu-arrow,#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head{background-color:#777;background-image:-ms-linear-gradient(bottom,#060,#6eb469);background-image:-moz-linear-gradient(bottom,#060,#6eb469);background-image:-o-linear-gradient(bottom,#060,#6eb469);background-image:-webkit-gradient(linear,left bottom,left top,from(#060),to(#6eb469));background-image:-webkit-linear-gradient(bottom,#060,#6eb469);background-image:linear-gradient(bottom,#060,#6eb469)}#adminmenu .wp-menu-arrow div{background-color:#777;background-image:-ms-linear-gradient(right bottom,#060,#6eb469);background-image:-moz-linear-gradient(right bottom,#060,#6eb469);background-image:-o-linear-gradient(right bottom,#060,#6eb469);background-image:-webkit-gradient(linear,right bottom,left top,from(#060),to(#6eb469));background-image:-webkit-linear-gradient(right bottom,#060,#6eb469);background-image:linear-gradient(right bottom,#060,#6eb469)}#adminmenu li.wp-not-current-submenu .wp-menu-arrow{border-top-color:#eefcf1;border-bottom-color:#dfdfdf;background:#eefcf1}#adminmenu li.wp-not-current-submenu .wp-menu-arrow div{background:#eefcf1;border-color:#ccc}.folded #adminmenu li.menu-top li:hover a{background-image:none}#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,#adminmenu li.current a.menu-top,#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head{text-shadow:0 -1px 0 #333;color:#fff;border-top-color:#6eb469;border-bottom-color:#060}.folded #adminmenu li.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{border-top-color:#6eb469;border-bottom-color:#060}#adminmenu .wp-submenu a:hover,#adminmenu .wp-submenu a:focus{background-color:#eefcf1;color:#333}#adminmenu .wp-submenu li.current,#adminmenu .wp-submenu li.current a,#adminmenu .wp-submenu li.current a:hover{color:#333}#adminmenu .wp-submenu ul{background-color:#fff}#adminmenu .wp-submenu-wrap,#adminmenu .wp-submenu ul{border-color:#dfdfdf}#adminmenu .wp-submenu-wrap,.folded #adminmenu .wp-has-current-submenu .wp-submenu-wrap{-moz-box-shadow:2px 2px 5px rgba(0,0,0,0.4);-webkit-box-shadow:2px 2px 5px rgba(0,0,0,0.4);box-shadow:2px 2px 5px rgba(0,0,0,0.4)}#adminmenu .wp-submenu .wp-submenu-head{border-right-color:#dfdfdf;background-color:#deece1}#adminmenu div.wp-submenu{background-color:transparent}#collapse-menu{color:#aaa}#collapse-menu:hover{color:#999}#collapse-button{border-color:#ccc;background-color:#f4f4f4;background-image:-ms-linear-gradient(bottom,#dfdfdf,#fff);background-image:-moz-linear-gradient(bottom,#dfdfdf,#fff);background-image:-o-linear-gradient(bottom,#dfdfdf,#fff);background-image:-webkit-gradient(linear,left bottom,left top,from(#dfdfdf),to(#fff));background-image:-webkit-linear-gradient(bottom,#dfdfdf,#fff);background-image:linear-gradient(bottom,#dfdfdf,#fff)}#collapse-menu:hover #collapse-button{border-color:#aaa}#collapse-button div{background:transparent url(../../../wp-admin/images/arrows.png) no-repeat 0 -72px}.folded #collapse-button div{background-position:0 -108px}.icon16.icon-dashboard,#adminmenu .menu-icon-dashboard div.wp-menu-image{background:transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -60px -33px}#adminmenu .menu-icon-dashboard:hover div.wp-menu-image,#adminmenu .menu-icon-dashboard.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-dashboard.current div.wp-menu-image{background:transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -60px -1px}.icon16.icon-post,#adminmenu .menu-icon-post div.wp-menu-image{background:transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -271px -33px}#adminmenu .menu-icon-post:hover div.wp-menu-image,#adminmenu .menu-icon-post.wp-has-current-submenu div.wp-menu-image{background:transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -271px -1px}.icon16.icon-media,#adminmenu .menu-icon-media div.wp-menu-image{background:transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -120px -33px}#adminmenu .menu-icon-media:hover div.wp-menu-image,#adminmenu .menu-icon-media.wp-has-current-submenu div.wp-menu-image{background:transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -120px -1px}.icon16.icon-links,#adminmenu .menu-icon-links div.wp-menu-image{background:transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -90px -33px}#adminmenu .menu-icon-links:hover div.wp-menu-image,#adminmenu .menu-icon-links.wp-has-current-submenu div.wp-menu-image{background:transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -90px -1px}.icon16.icon-page,#adminmenu .menu-icon-page div.wp-menu-image{background:transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -150px -33px}#adminmenu .menu-icon-page:hover div.wp-menu-image,#adminmenu .menu-icon-page.wp-has-current-submenu div.wp-menu-image{background:transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -150px -1px}.icon16.icon-comments,#adminmenu .menu-icon-comments div.wp-menu-image{background:transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -30px -33px}#adminmenu .menu-icon-comments:hover div.wp-menu-image,#adminmenu .menu-icon-comments.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-comments.current div.wp-menu-image{background:transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -30px -1px}.icon16.icon-appearance,#adminmenu .menu-icon-appearance div.wp-menu-image{background:transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll 0 -33px}#adminmenu .menu-icon-appearance:hover div.wp-menu-image,#adminmenu .menu-icon-appearance.wp-has-current-submenu div.wp-menu-image{background:transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll 0 -1px}.icon16.icon-plugins,#adminmenu .menu-icon-plugins div.wp-menu-image{background:transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -180px -33px}#adminmenu .menu-icon-plugins:hover div.wp-menu-image,#adminmenu .menu-icon-plugins.wp-has-current-submenu div.wp-menu-image{background:transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -180px -1px}.icon16.icon-users,#adminmenu .menu-icon-users div.wp-menu-image{background:transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -300px -33px}#adminmenu .menu-icon-users:hover div.wp-menu-image,#adminmenu .menu-icon-users.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-users.current div.wp-menu-image{background:transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -300px -1px}.icon16.icon-tools,#adminmenu .menu-icon-tools div.wp-menu-image{background:transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -210px -33px}#adminmenu .menu-icon-tools:hover div.wp-menu-image,#adminmenu .menu-icon-tools.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-tools.current div.wp-menu-image{background:transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -210px -1px}.icon16.icon-settings,#adminmenu .menu-icon-settings div.wp-menu-image{background:transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -240px -33px}#adminmenu .menu-icon-settings:hover div.wp-menu-image,#adminmenu .menu-icon-settings.wp-has-current-submenu div.wp-menu-image{background:transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -240px -1px}.icon16.icon-site,#adminmenu .menu-icon-site div.wp-menu-image{background:transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -360px -33px}#adminmenu .menu-icon-site:hover div.wp-menu-image,#adminmenu .menu-icon-site.wp-has-current-submenu div.wp-menu-image{background:transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -360px -1px}.icon32.icon-post,#icon-edit,#icon-post{background:transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -552px -5px}.icon32.icon-dashboard,#icon-index{background:transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -137px -5px}.icon32.icon-media,#icon-upload{background:transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -251px -5px}.icon32.icon-links,#icon-link-manager,#icon-link,#icon-link-category{background:transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -190px -5px}.icon32.icon-page,#icon-edit-pages,#icon-page{background:transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -312px -5px}.icon32.icon-comments,#icon-edit-comments{background:transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -72px -5px}.icon32.icon-appearance,#icon-themes{background:transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -11px -5px}.icon32.icon-plugins,#icon-plugins{background:transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -370px -5px}.icon32.icon-users,#icon-users,#icon-profile,#icon-user-edit{background:transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -600px -5px}.icon32.icon-tools,#icon-tools,#icon-admin{background:transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -432px -5px}.icon32.icon-settings,#icon-options-general{background:transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -492px -5px}.icon32.icon-site,#icon-ms-admin{background:transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -659px -5px}table.diff .diff-deletedline{background-color:#fdd}table.diff .diff-deletedline del{background-color:#f99}table.diff .diff-addedline{background-color:#dfd}table.diff .diff-addedline ins{background-color:#9f9}#att-info{background-color:#e4f2fd}#sidemenu a{background-color:#eefcf1;border-color:#eefcf1;border-bottom-color:#dfdfdf}#sidemenu a.current{background-color:#fff;border-color:#dfdfdf #dfdfdf #fff;color:#d54e21}#replyerror{border-color:#ddd;background-color:#eefcf1}.vim-current,.vim-current th,.vim-current td{background-color:#e4f2fd!important}.star-average,.star.star-rating{background-color:#fc0}div.star.select:hover{background-color:#d00}div.star img{border-left:1px solid #fff;border-right:1px solid #fff}.widefat div.star img{border-left:1px solid #eefcf1;border-right:1px solid #eefcf1}#plugin-information .fyi ul{background-color:#eaf3fa}#plugin-information .fyi h2.mainheader{background-color:#cee1ef}#plugin-information pre,#plugin-information code{background-color:#ededff}#plugin-information pre{border:1px solid #ccc}.inline-edit-row fieldset input[type="text"],.inline-edit-row fieldset textarea,#bulk-titles{border-color:#ddd}.inline-editor div.title{background-color:#eaf3fa}.inline-editor ul.cat-checklist{background-color:#fff;border-color:#ddd}.inline-editor .categories .catshow,.inline-editor .categories .cathide{color:#070}.inline-editor .quick-edit-save{background-color:#f1f1f1}fieldset.inline-edit-col-right .inline-edit-col{border-color:#dfdfdf}.attention{color:#d54e21}.meta-box-sortables .postbox:hover .handlediv{background:transparent url(../../../wp-admin/images/arrows.png) no-repeat 6px 7px}.tablenav .tablenav-pages{color:#555}.tablenav .tablenav-pages a{border-color:#e3e3e3;background:#eee url('../../../wp-admin/images/menu-bits.gif?ver=20100610') repeat-x scroll left -379px}.tablenav .tablenav-pages a:hover,.tablenav .tablenav-pages a:focus{color:#d54e21}.tablenav .tablenav-pages a.disabled,.tablenav .tablenav-pages a.disabled:hover,.tablenav .tablenav-pages a.disabled:focus{color:#aaa}.tablenav .tablenav-pages .current{background:#dfdfdf;border-color:#d3d3d3}#availablethemes,#availablethemes td{border-color:#ddd}#current-theme img{border-color:#999}#TB_window #TB_title a.tb-theme-preview-link,#TB_window #TB_title a.tb-theme-preview-link:visited{color:#999}#TB_window #TB_title a.tb-theme-preview-link:hover,#TB_window #TB_title a.tb-theme-preview-link:focus{color:#ccc}.misc-pub-section{border-top-color:#fff;border-bottom-color:#dfdfdf}#minor-publishing{border-bottom-color:#dfdfdf}#post-body .misc-pub-section{border-right-color:#eee}.post-com-count span{background-color:#bbb}.form-table .color-palette td{border-color:#fff}.sortable-placeholder{border-color:#bbb;background-color:#eefcf1}#post-body ul.category-tabs li.tabs a,#post-body ul.add-menu-item-tabs li.tabs a,body.press-this ul.category-tabs li.tabs a{color:#333}.view-switch #view-switch-list{background:transparent url(../../../wp-admin/images/list.png) no-repeat 0 0}.view-switch .current #view-switch-list{background:transparent url(../../../wp-admin/images/list.png) no-repeat -40px 0}.view-switch #view-switch-excerpt{background:transparent url(../../../wp-admin/images/list.png) no-repeat -20px 0}.view-switch .current #view-switch-excerpt{background:transparent url(../../../wp-admin/images/list.png) no-repeat -60px 0}#header-logo{background:transparent url(../../../wp-admin/images/wp-logo.png?ver=20110504) no-repeat scroll center center}.popular-tags,.feature-filter{background-color:#fff;border-color:#dfdfdf}#theme-information .action-button{border-top-color:#dfdfdf}.theme-listing br.line{border-bottom-color:#ccc}div.widgets-sortables,#widgets-left .inactive{background-color:#fcfcfc;border-color:#dfdfdf}#available-widgets .widget-holder{background-color:#fcfcfc;border-color:#dfdfdf}#available-widgets .widget-description{color:#555}.sidebar-name{color:#464646;text-shadow:#fff 0 1px 0;border-color:#dfdfdf;-moz-box-shadow:inset 0 1px 0 #fff;-webkit-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff}.sidebar-name:hover,#removing-widget{color:#d54e21}#removing-widget span{color:black}.sidebar-name-arrow{background:transparent url(../../../wp-admin/images/arrows.png) no-repeat 5px 9px}.sidebar-name:hover .sidebar-name-arrow{background:transparent url(../../../wp-admin/images/arrows-dark.png) no-repeat 5px 9px}.in-widget-title{color:#606060}.deleting .widget-title *{color:#aaa}.imgedit-menu div{border-color:#d5d5d5;background-color:#f1f1f1}.imgedit-menu div:hover{border-color:#c1c1c1;background-color:#eaeaea}.imgedit-menu div.disabled{border-color:#ccc;background-color:#ddd;filter:alpha(opacity=50);opacity:.5}#dashboard_recent_comments div.undo{border-top-color:#dfdfdf}.comment-ays,.comment-ays th{border-color:#ddd}.comment-ays th{background-color:#f1f1f1}#menu-management .menu-edit{border-color:#dfdfdf}#post-body{background:#fff;border-top-color:#fff;border-bottom-color:#dfdfdf}#nav-menu-header{border-bottom-color:#dfdfdf}#nav-menu-footer{border-top-color:#fff}#menu-management .nav-tabs-arrow a{color:#c1c1c1}#menu-management .nav-tabs-arrow a:hover{color:#d54e21}#menu-management .nav-tabs-arrow a:active{color:#464646}#menu-management .nav-tab-active{border-color:#dfdfdf}#menu-management .nav-tab{background:#fbfbfb;border-color:#dfdfdf}.js .input-with-default-title{color:#aaa}#cancel-save{color:#f00}#cancel-save:hover{background-color:#f00;color:#fff}.list-container{border-color:#dfdfdf}.menu-item-handle{border-color:#dfdfdf}.menu li.deleting .menu-item-handle{background-color:#f66;text-shadow:#ccc}.item-type{color:#999}.item-controls .menu-item-delete:hover{color:#f00}.item-edit{background:transparent url(../../../wp-admin/images/arrows.png) no-repeat 8px 10px;border-bottom-color:#eee}.item-edit:hover{background:transparent url(../../../wp-admin/images/arrows-dark.png) no-repeat 8px 10px}.menu-item-settings{border-color:#dfdfdf}.link-to-original{color:#777;border-color:#dfdfdf}#cancel-save:hover{color:#fff!important}#update-menu-item{color:#fff!important}#update-menu-item:hover,#update-menu-item:active,#update-menu-item:focus{color:#eaf2fa!important;border-color:#13455b!important}.submitbox .submitcancel{color:#070;border-bottom-color:#070}.submitbox .submitcancel:hover{background:#070;color:#fff}#menu-management .nav-tab-active,.menu-item-handle,.menu-item-settings{-moz-box-shadow:inset 0 1px 0 #fff;-webkit-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff}#menu-management .nav-tab-active{background:#eefcf1;border-bottom-color:#eefcf1}#upload-form label{color:#777}.fullscreen-overlay{background:#fff}.wp-fullscreen-focus #wp-fullscreen-title,.wp-fullscreen-focus #wp-fullscreen-container{border-color:#ccc}#fullscreen-topbar{border-bottom-color:#dfdfdf}.about-wrap h1{color:#333;text-shadow:1px 1px 1px white}.about-text{color:#777}.wp-badge{color:#fff;text-shadow:0 -1px 0 #0c3d57;border-color:#2b5173;-moz-box-shadow:inset 0 0 0 1px #5f8ca8;-webkit-box-shadow:inset 0 0 0 1px #5f8ca8;box-shadow:inset 0 0 0 1px #5f8ca8;background-color:#378aac;background-image:url(../../../wp-admin/images/wp-badge.png);background-image:url(../../../wp-admin/images/wp-badge.png),-ms-linear-gradient(top,#378aac,#165d84);background-image:url(../../../wp-admin/images/wp-badge.png),-moz-linear-gradient(top,#378aac,#165d84);background-image:url(../../../wp-admin/images/wp-badge.png),-o-linear-gradient(top,#378aac,#165d84);background-image:url(../../../wp-admin/images/wp-badge.png),-webkit-gradient(linear,left top,left bottom,from(#378aac),to(#165d84));background-image:url(../../../wp-admin/images/wp-badge.png),-webkit-linear-gradient(top,#378aac,#165d84);background-image:url(../../../wp-admin/images/wp-badge.png),linear-gradient(top,#378aac,#165d84)}.about-wrap h2 .nav-tab{color:#070}.about-wrap h2 .nav-tab:hover{color:#d54e21}.about-wrap h2 .nav-tab-active,.about-wrap h2 .nav-tab-active:hover{color:#333}.about-wrap h2 .nav-tab-active{text-shadow:1px 1px 1px white;color:#464646}.about-wrap h3{color:#333;text-shadow:1px 1px 1px white}.about-wrap .feature-section h4{color:#464646}.about-wrap .feature-section img{background:#eefcf1;border-color:#dfdfdf;-moz-box-shadow:0 0 6px rgba(0,0,0,0.3);-webkit-box-shadow:0 0 6px rgba(0,0,0,0.3);box-shadow:0 0 6px rgba(0,0,0,0.3)}.about-wrap h4.wp-people-group{text-shadow:1px 1px 1px white}.about-wrap li.wp-person img.gravatar{-moz-box-shadow:0 0 4px rgba(0,0,0,0.4);-webkit-box-shadow:0 0 4px rgba(0,0,0,0.4);box-shadow:0 0 4px rgba(0,0,0,0.4)}.about-wrap li.wp-person .title{color:#464646;text-shadow:1px 1px 1px white}.freedoms-php .about-wrap ol li{color:#999}.freedoms-php .about-wrap ol p{color:#464646}.rtl .bar{border-right-color:none;border-left-color:#99d}.rtl .post-com-count{background-image:url(../../../wp-admin/images/bubble_bg-rtl.gif)}.rtl #screen-meta-links a.show-settings{background-position:left 3px}.rtl #screen-meta-links a.show-settings.screen-meta-active{background-position:left -33px}.rtl #adminmenushadow,.rtl #adminmenuback{background-image:url(../../../wp-admin/images/menu-shadow-rtl.png);background-position:top left}.rtl #adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,.rtl #adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle{background:transparent url(../../../wp-admin/images/arrows-dark.png) no-repeat 8px 6px}.rtl #adminmenu .wp-has-submenu:hover .wp-menu-toggle,.rtl #adminmenu .wp-menu-open .wp-menu-toggle{background:transparent url(../../../wp-admin/images/arrows.png) no-repeat 8px 6px}.rtl #adminmenu .wp-submenu .wp-submenu-head{border-right-color:none;border-left-color:#dfdfdf}.rtl .folded #adminmenu .wp-submenu-wrap{-moz-box-shadow:-2px 2px 5px rgba(0,0,0,0.4);-webkit-box-shadow:-2px 2px 5px rgba(0,0,0,0.4);box-shadow:-2px 2px 5px rgba(0,0,0,0.4)}.rtl #collapse-button div{background-position:0 -108px}.rtl .folded #collapse-button div{background-position:0 -72px}.rtl .meta-box-sortables .postbox:hover .handlediv{background:transparent url(../../../wp-admin/images/arrows.png) no-repeat 6px 7px}.rtl .tablenav .tablenav-pages a{border-color:#e3e3e3;background:#eee url('../../../wp-admin/images/menu-bits-rtl.gif?ver=20100610') repeat-x scroll right -379px}.rtl #post-body .misc-pub-section{border-right-color:none;border-left-color:#eee}.rtl .sidebar-name-arrow{background:transparent url(../../../wp-admin/images/arrows.png) no-repeat 5px 9px}.rtl .sidebar-name:hover .sidebar-name-arrow{background:transparent url(../../../wp-admin/images/arrows-dark.png) no-repeat 5px 9px}
|
|
bbp-admin/styles/admin-2.dev.css
DELETED
@@ -1,1937 +0,0 @@
|
|
1 |
-
/*------------------------------------------------------------------------------
|
2 |
-
|
3 |
-
|
4 |
-
Howdy! This is the CSS file that controls the
|
5 |
-
Green (minty) color style on the WordPress Dashboard.
|
6 |
-
|
7 |
-
This file contains both LTR and RTL styles.
|
8 |
-
|
9 |
-
|
10 |
-
TABLE OF CONTENTS:
|
11 |
-
------------------
|
12 |
-
1.0 - Left to Right Styles
|
13 |
-
2.0 - Right to Left Styles
|
14 |
-
|
15 |
-
|
16 |
-
------------------------------------------------------------------------------*/
|
17 |
-
|
18 |
-
|
19 |
-
/*------------------------------------------------------------------------------
|
20 |
-
1.0 - Left to Right Styles
|
21 |
-
------------------------------------------------------------------------------*/
|
22 |
-
|
23 |
-
html,
|
24 |
-
.wp-dialog {
|
25 |
-
background-color: #fff;
|
26 |
-
}
|
27 |
-
|
28 |
-
textarea,
|
29 |
-
input[type="text"],
|
30 |
-
input[type="password"],
|
31 |
-
input[type="file"],
|
32 |
-
input[type="button"],
|
33 |
-
input[type="submit"],
|
34 |
-
input[type="reset"],
|
35 |
-
input[type="email"],
|
36 |
-
input[type="number"],
|
37 |
-
input[type="search"],
|
38 |
-
input[type="tel"],
|
39 |
-
input[type="url"],
|
40 |
-
select {
|
41 |
-
border-color: #dfdfdf;
|
42 |
-
background-color: #fff;
|
43 |
-
}
|
44 |
-
|
45 |
-
textarea:focus,
|
46 |
-
input[type="text"]:focus,
|
47 |
-
input[type="password"]:focus,
|
48 |
-
input[type="file"]:focus,
|
49 |
-
input[type="button"]:focus,
|
50 |
-
input[type="submit"]:focus,
|
51 |
-
input[type="reset"]:focus,
|
52 |
-
input[type="email"]:focus,
|
53 |
-
input[type="number"]:focus,
|
54 |
-
input[type="search"]:focus,
|
55 |
-
input[type="tel"]:focus,
|
56 |
-
input[type="url"]:focus,
|
57 |
-
select:focus {
|
58 |
-
border-color: #bbb;
|
59 |
-
}
|
60 |
-
|
61 |
-
kbd,
|
62 |
-
code {
|
63 |
-
background: #eaeaea;
|
64 |
-
}
|
65 |
-
|
66 |
-
input[readonly] {
|
67 |
-
background-color: #eee;
|
68 |
-
}
|
69 |
-
|
70 |
-
.find-box-search {
|
71 |
-
border-color: #dfdfdf;
|
72 |
-
background-color: #f1f1f1;
|
73 |
-
}
|
74 |
-
|
75 |
-
.find-box {
|
76 |
-
background-color: #f1f1f1;
|
77 |
-
}
|
78 |
-
|
79 |
-
.find-box-inside {
|
80 |
-
background-color: #fff;
|
81 |
-
}
|
82 |
-
|
83 |
-
a.page-numbers:hover {
|
84 |
-
border-color: #999;
|
85 |
-
}
|
86 |
-
|
87 |
-
body,
|
88 |
-
#wpbody,
|
89 |
-
.form-table .pre {
|
90 |
-
color: #333;
|
91 |
-
}
|
92 |
-
|
93 |
-
body > #upload-menu {
|
94 |
-
border-bottom-color: #fff;
|
95 |
-
}
|
96 |
-
|
97 |
-
#postcustomstuff table,
|
98 |
-
#your-profile fieldset,
|
99 |
-
#rightnow,
|
100 |
-
div.dashboard-widget,
|
101 |
-
#dashboard-widgets p.dashboard-widget-links {
|
102 |
-
border-color: #ccc;
|
103 |
-
}
|
104 |
-
|
105 |
-
#poststuff .inside label.spam,
|
106 |
-
#poststuff .inside label.deleted {
|
107 |
-
color: red;
|
108 |
-
}
|
109 |
-
|
110 |
-
#poststuff .inside label.waiting {
|
111 |
-
color: orange;
|
112 |
-
}
|
113 |
-
|
114 |
-
#poststuff .inside label.approved {
|
115 |
-
color: green;
|
116 |
-
}
|
117 |
-
|
118 |
-
#postcustomstuff table {
|
119 |
-
border-color: #dfdfdf;
|
120 |
-
background-color: #F9F9F9;
|
121 |
-
}
|
122 |
-
|
123 |
-
#postcustomstuff thead th {
|
124 |
-
background-color: #F1F1F1;
|
125 |
-
}
|
126 |
-
|
127 |
-
.widefat {
|
128 |
-
border-color: #dfdfdf;
|
129 |
-
background-color: #eefcf1;
|
130 |
-
}
|
131 |
-
textarea.widefat {
|
132 |
-
background-color: #fff;
|
133 |
-
}
|
134 |
-
|
135 |
-
div.dashboard-widget-error {
|
136 |
-
background-color: #c43;
|
137 |
-
}
|
138 |
-
|
139 |
-
div.dashboard-widget-notice {
|
140 |
-
background-color: #cfe1ef;
|
141 |
-
}
|
142 |
-
|
143 |
-
div.dashboard-widget-submit {
|
144 |
-
border-top-color: #ccc;
|
145 |
-
}
|
146 |
-
|
147 |
-
div.tabs-panel,
|
148 |
-
.wp-tab-panel,
|
149 |
-
ul.category-tabs li.tabs,
|
150 |
-
ul.add-menu-item-tabs li.tabs,
|
151 |
-
.wp-tab-active {
|
152 |
-
border-color: #dfdfdf;
|
153 |
-
background-color: #fff;
|
154 |
-
}
|
155 |
-
|
156 |
-
ul.category-tabs li.tabs,
|
157 |
-
ul.add-menu-item-tabs li.tabs,
|
158 |
-
.wp-tab-active {
|
159 |
-
background-color: #fff;
|
160 |
-
}
|
161 |
-
|
162 |
-
input.disabled,
|
163 |
-
textarea.disabled {
|
164 |
-
background-color: #ccc;
|
165 |
-
}
|
166 |
-
/* #upload-menu li a.upload-tab-link, */
|
167 |
-
#plugin-information .action-button a,
|
168 |
-
#plugin-information .action-button a:hover,
|
169 |
-
#plugin-information .action-button a:visited {
|
170 |
-
color: #fff;
|
171 |
-
}
|
172 |
-
|
173 |
-
.widget .widget-top,
|
174 |
-
.postbox h3,
|
175 |
-
.stuffbox h3,
|
176 |
-
.widefat thead tr th,
|
177 |
-
.widefat tfoot tr th,
|
178 |
-
h3.dashboard-widget-title,
|
179 |
-
h3.dashboard-widget-title span,
|
180 |
-
h3.dashboard-widget-title small,
|
181 |
-
.find-box-head,
|
182 |
-
.sidebar-name,
|
183 |
-
#nav-menu-header,
|
184 |
-
#nav-menu-footer,
|
185 |
-
.menu-item-handle,
|
186 |
-
#fullscreen-topbar {
|
187 |
-
background-color: #f1f1f1; /* Fallback */
|
188 |
-
background-image: -ms-linear-gradient(top, #eefcf1, #deece1); /* IE10 */
|
189 |
-
background-image: -moz-linear-gradient(top, #eefcf1, #deece1); /* Firefox */
|
190 |
-
background-image: -o-linear-gradient(top, #eefcf1, #deece1); /* Opera */
|
191 |
-
background-image: -webkit-gradient(linear, left top, left bottom, from(#eefcf1), to(#deece1)); /* old Webkit */
|
192 |
-
background-image: -webkit-linear-gradient(top, #eefcf1, #deece1); /* new Webkit */
|
193 |
-
background-image: linear-gradient(top, #eefcf1, #deece1); /* proposed W3C Markup */
|
194 |
-
}
|
195 |
-
|
196 |
-
.widget .widget-top,
|
197 |
-
.postbox h3,
|
198 |
-
.stuffbox h3 {
|
199 |
-
border-bottom-color: #dfdfdf;
|
200 |
-
text-shadow: #fff 0 1px 0;
|
201 |
-
-moz-box-shadow: 0 1px 0 #fff;
|
202 |
-
-webkit-box-shadow: 0 1px 0 #fff;
|
203 |
-
box-shadow: 0 1px 0 #fff;
|
204 |
-
}
|
205 |
-
|
206 |
-
.form-table th,
|
207 |
-
.form-wrap label {
|
208 |
-
color: #222;
|
209 |
-
text-shadow: #fff 0 1px 0;
|
210 |
-
}
|
211 |
-
|
212 |
-
.description,
|
213 |
-
.form-wrap p {
|
214 |
-
color: #666;
|
215 |
-
}
|
216 |
-
|
217 |
-
strong .post-com-count span {
|
218 |
-
background-color: #007700;
|
219 |
-
}
|
220 |
-
|
221 |
-
.sorthelper {
|
222 |
-
background-color: #ccf3fa;
|
223 |
-
}
|
224 |
-
|
225 |
-
.ac_match,
|
226 |
-
.subsubsub a.current {
|
227 |
-
color: #000;
|
228 |
-
}
|
229 |
-
|
230 |
-
.wrap h2 {
|
231 |
-
color: #464646;
|
232 |
-
}
|
233 |
-
|
234 |
-
.wrap .add-new-h2 {
|
235 |
-
background: #f1f1f1;
|
236 |
-
}
|
237 |
-
|
238 |
-
.subtitle {
|
239 |
-
color: #777;
|
240 |
-
}
|
241 |
-
|
242 |
-
.ac_over {
|
243 |
-
background-color: #f0f0b8;
|
244 |
-
}
|
245 |
-
|
246 |
-
.ac_results {
|
247 |
-
background-color: #fff;
|
248 |
-
border-color: #6EB469;
|
249 |
-
}
|
250 |
-
|
251 |
-
.ac_results li {
|
252 |
-
color: #101010;
|
253 |
-
}
|
254 |
-
|
255 |
-
.alternate,
|
256 |
-
.alt {
|
257 |
-
background-color: #fefefe;
|
258 |
-
}
|
259 |
-
|
260 |
-
.available-theme a.screenshot {
|
261 |
-
background-color: #f1f1f1;
|
262 |
-
border-color: #ddd;
|
263 |
-
}
|
264 |
-
|
265 |
-
.bar {
|
266 |
-
background-color: #e8e8e8;
|
267 |
-
border-right-color: #99d;
|
268 |
-
}
|
269 |
-
|
270 |
-
#media-upload,
|
271 |
-
#media-upload .media-item .slidetoggle {
|
272 |
-
background: #fff;
|
273 |
-
}
|
274 |
-
|
275 |
-
#media-upload .slidetoggle {
|
276 |
-
border-top-color: #dfdfdf;
|
277 |
-
}
|
278 |
-
|
279 |
-
div.error,
|
280 |
-
.login #login_error {
|
281 |
-
background-color: #ffebe8;
|
282 |
-
border-color: #c00;
|
283 |
-
}
|
284 |
-
|
285 |
-
div.error a {
|
286 |
-
color: #c00;
|
287 |
-
}
|
288 |
-
|
289 |
-
.form-invalid {
|
290 |
-
background-color: #ffebe8 !important;
|
291 |
-
}
|
292 |
-
|
293 |
-
.form-invalid input,
|
294 |
-
.form-invalid select {
|
295 |
-
border-color: #c00 !important;
|
296 |
-
}
|
297 |
-
|
298 |
-
.submit {
|
299 |
-
border-color: #DFDFDF;
|
300 |
-
}
|
301 |
-
|
302 |
-
.highlight {
|
303 |
-
background-color: #e4f2fd;
|
304 |
-
color: #000;
|
305 |
-
}
|
306 |
-
|
307 |
-
.howto,
|
308 |
-
.nonessential,
|
309 |
-
#edit-slug-box,
|
310 |
-
.form-input-tip,
|
311 |
-
.subsubsub {
|
312 |
-
color: #666;
|
313 |
-
}
|
314 |
-
|
315 |
-
#wpbody-content #media-items .describe {
|
316 |
-
border-top-color: #dfdfdf;
|
317 |
-
}
|
318 |
-
|
319 |
-
.media-upload-form label.form-help,
|
320 |
-
td.help {
|
321 |
-
color: #9a9a9a;
|
322 |
-
}
|
323 |
-
|
324 |
-
.post-com-count {
|
325 |
-
background-image: url(../../../wp-admin/images/bubble_bg.gif);
|
326 |
-
color: #fff;
|
327 |
-
}
|
328 |
-
|
329 |
-
.post-com-count span {
|
330 |
-
background-color: #bbb;
|
331 |
-
color: #fff;
|
332 |
-
}
|
333 |
-
|
334 |
-
.post-com-count:hover span {
|
335 |
-
background-color: #d54e21;
|
336 |
-
}
|
337 |
-
|
338 |
-
.quicktags, .search {
|
339 |
-
background-color: #ccc;
|
340 |
-
color: #000;
|
341 |
-
}
|
342 |
-
|
343 |
-
.side-info h5 {
|
344 |
-
border-bottom-color: #dadada;
|
345 |
-
}
|
346 |
-
|
347 |
-
.side-info ul {
|
348 |
-
color: #666;
|
349 |
-
}
|
350 |
-
|
351 |
-
.button,
|
352 |
-
.button-secondary,
|
353 |
-
.submit input,
|
354 |
-
input[type=button],
|
355 |
-
input[type=submit] {
|
356 |
-
border-color: #bbb;
|
357 |
-
color: #464646;
|
358 |
-
}
|
359 |
-
|
360 |
-
.button:hover,
|
361 |
-
.button-secondary:hover,
|
362 |
-
.submit input:hover,
|
363 |
-
input[type=button]:hover,
|
364 |
-
input[type=submit]:hover {
|
365 |
-
color: #000;
|
366 |
-
border-color: #666;
|
367 |
-
}
|
368 |
-
|
369 |
-
.button,
|
370 |
-
.submit input,
|
371 |
-
.button-secondary {
|
372 |
-
background: #f2f2f2 url(../../../wp-admin/images/white-grad.png) repeat-x scroll left top;
|
373 |
-
text-shadow: rgba(255,255,255,1) 0 1px 0;
|
374 |
-
}
|
375 |
-
|
376 |
-
.button:active,
|
377 |
-
.submit input:active,
|
378 |
-
.button-secondary:active {
|
379 |
-
background: #eee url(../../../wp-admin/images/white-grad-active.png) repeat-x scroll left top;
|
380 |
-
}
|
381 |
-
|
382 |
-
input.button-primary,
|
383 |
-
button.button-primary,
|
384 |
-
a.button-primary {
|
385 |
-
border-color: #298cba;
|
386 |
-
font-weight: bold;
|
387 |
-
color: #fff;
|
388 |
-
background: #007700 url(../images/button-grad.png) repeat-x scroll left top;
|
389 |
-
text-shadow: rgba(0,0,0,0.3) 0 -1px 0;
|
390 |
-
}
|
391 |
-
|
392 |
-
input.button-primary:active,
|
393 |
-
button.button-primary:active,
|
394 |
-
a.button-primary:active {
|
395 |
-
background: #007700 url(../images/button-grad-active.png) repeat-x scroll left top;
|
396 |
-
color: #eaf2fa;
|
397 |
-
}
|
398 |
-
|
399 |
-
input.button-primary:hover,
|
400 |
-
button.button-primary:hover,
|
401 |
-
a.button-primary:hover,
|
402 |
-
a.button-primary:focus,
|
403 |
-
a.button-primary:active {
|
404 |
-
border-color: #13455b;
|
405 |
-
color: #eaf2fa;
|
406 |
-
}
|
407 |
-
|
408 |
-
.button-disabled,
|
409 |
-
.button[disabled],
|
410 |
-
.button:disabled,
|
411 |
-
.button-secondary[disabled],
|
412 |
-
.button-secondary:disabled,
|
413 |
-
a.button.disabled {
|
414 |
-
color: #aaa !important;
|
415 |
-
border-color: #ddd !important;
|
416 |
-
}
|
417 |
-
|
418 |
-
.button-primary-disabled,
|
419 |
-
.button-primary[disabled],
|
420 |
-
.button-primary:disabled {
|
421 |
-
color: #9FD0D5 !important;
|
422 |
-
background: #298CBA !important;
|
423 |
-
}
|
424 |
-
|
425 |
-
a:hover,
|
426 |
-
a:active,
|
427 |
-
a:focus {
|
428 |
-
color: #d54e21;
|
429 |
-
}
|
430 |
-
|
431 |
-
#adminmenu a:hover,
|
432 |
-
#adminmenu li.menu-top > a:focus,
|
433 |
-
#adminmenu ul.wp-submenu a:hover,
|
434 |
-
#the-comment-list .comment a:hover,
|
435 |
-
#rightnow a:hover,
|
436 |
-
#media-upload a.del-link:hover,
|
437 |
-
div.dashboard-widget-submit input:hover,
|
438 |
-
.subsubsub a:hover,
|
439 |
-
.subsubsub a.current:hover,
|
440 |
-
.ui-tabs-nav a:hover,
|
441 |
-
.plugins .inactive a:hover,
|
442 |
-
#all-plugins-table .plugins .inactive a:hover,
|
443 |
-
#search-plugins-table .plugins .inactive a:hover {
|
444 |
-
color: #d54e21;
|
445 |
-
}
|
446 |
-
|
447 |
-
#the-comment-list .comment-item,
|
448 |
-
#dashboard-widgets #dashboard_quick_press form p.submit {
|
449 |
-
border-color: #dfdfdf;
|
450 |
-
}
|
451 |
-
|
452 |
-
#side-sortables .category-tabs .tabs a,
|
453 |
-
#side-sortables .add-menu-item-tabs .tabs a,
|
454 |
-
.wp-tab-bar .wp-tab-active a {
|
455 |
-
color: #333;
|
456 |
-
}
|
457 |
-
|
458 |
-
#rightnow .rbutton {
|
459 |
-
background-color: #ebebeb;
|
460 |
-
color: #264761;
|
461 |
-
}
|
462 |
-
|
463 |
-
.submitbox .submit {
|
464 |
-
background-color: #464646;
|
465 |
-
color: #ccc;
|
466 |
-
}
|
467 |
-
|
468 |
-
.plugins a.delete:hover,
|
469 |
-
#all-plugins-table .plugins a.delete:hover,
|
470 |
-
#search-plugins-table .plugins a.delete:hover,
|
471 |
-
.submitbox .submitdelete {
|
472 |
-
color: #f00;
|
473 |
-
border-bottom-color: #f00;
|
474 |
-
}
|
475 |
-
|
476 |
-
.submitbox .submitdelete:hover,
|
477 |
-
#media-items a.delete:hover {
|
478 |
-
color: #fff;
|
479 |
-
background-color: #f00;
|
480 |
-
border-bottom-color: #f00;
|
481 |
-
}
|
482 |
-
|
483 |
-
#normal-sortables .submitbox .submitdelete:hover {
|
484 |
-
color: #000;
|
485 |
-
background-color: #f00;
|
486 |
-
border-bottom-color: #f00;
|
487 |
-
}
|
488 |
-
|
489 |
-
.tablenav .dots {
|
490 |
-
border-color: transparent;
|
491 |
-
}
|
492 |
-
|
493 |
-
.tablenav .next,
|
494 |
-
.tablenav .prev {
|
495 |
-
border-color: transparent;
|
496 |
-
color: #007700;
|
497 |
-
}
|
498 |
-
|
499 |
-
.tablenav .next:hover,
|
500 |
-
.tablenav .prev:hover {
|
501 |
-
border-color: transparent;
|
502 |
-
color: #d54e21;
|
503 |
-
}
|
504 |
-
|
505 |
-
div.updated,
|
506 |
-
.login .message {
|
507 |
-
background-color: #ffffe0;
|
508 |
-
border-color: #e6db55;
|
509 |
-
}
|
510 |
-
|
511 |
-
.update-message {
|
512 |
-
color: #000;
|
513 |
-
}
|
514 |
-
|
515 |
-
a.page-numbers {
|
516 |
-
border-bottom-color: #B8D3E2;
|
517 |
-
}
|
518 |
-
|
519 |
-
.commentlist li {
|
520 |
-
border-bottom-color: #ccc;
|
521 |
-
}
|
522 |
-
|
523 |
-
.widefat td,
|
524 |
-
.widefat th {
|
525 |
-
border-top-color: #fff;
|
526 |
-
border-bottom-color: #dfdfdf;
|
527 |
-
}
|
528 |
-
|
529 |
-
.widefat th {
|
530 |
-
text-shadow: rgba(255,255,255,0.8) 0 1px 0;
|
531 |
-
}
|
532 |
-
|
533 |
-
.widefat td {
|
534 |
-
color: #555;
|
535 |
-
}
|
536 |
-
.widefat p,
|
537 |
-
.widefat ol,
|
538 |
-
.widefat ul {
|
539 |
-
color: #333;
|
540 |
-
}
|
541 |
-
|
542 |
-
.widefat thead tr th,
|
543 |
-
.widefat tfoot tr th,
|
544 |
-
h3.dashboard-widget-title,
|
545 |
-
h3.dashboard-widget-title span,
|
546 |
-
h3.dashboard-widget-title small,
|
547 |
-
.find-box-head {
|
548 |
-
color: #333;
|
549 |
-
}
|
550 |
-
|
551 |
-
th.sortable a:hover, th.sortable a:active, th.sortable a:focus {
|
552 |
-
color: #333;
|
553 |
-
}
|
554 |
-
|
555 |
-
h3.dashboard-widget-title small a {
|
556 |
-
color: #d7d7d7;
|
557 |
-
}
|
558 |
-
|
559 |
-
h3.dashboard-widget-title small a:hover {
|
560 |
-
color: #fff;
|
561 |
-
}
|
562 |
-
|
563 |
-
a,
|
564 |
-
#adminmenu a,
|
565 |
-
#the-comment-list p.comment-author strong a,
|
566 |
-
#media-upload a.del-link,
|
567 |
-
#media-items a.delete,
|
568 |
-
.plugins a.delete,
|
569 |
-
.ui-tabs-nav a {
|
570 |
-
color: #007700;
|
571 |
-
}
|
572 |
-
|
573 |
-
#adminmenu .awaiting-mod,
|
574 |
-
#adminmenu .update-plugins,
|
575 |
-
#sidemenu a .update-plugins,
|
576 |
-
#rightnow .reallynow {
|
577 |
-
background-color: #464646;
|
578 |
-
color: #fff;
|
579 |
-
-moz-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
580 |
-
-khtml-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
581 |
-
-webkit-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
582 |
-
box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
583 |
-
}
|
584 |
-
#plugin-information .action-button {
|
585 |
-
background-color: #d54e21;
|
586 |
-
color: #fff;
|
587 |
-
}
|
588 |
-
|
589 |
-
#adminmenu li.current a .awaiting-mod,
|
590 |
-
#adminmenu li a.wp-has-current-submenu .update-plugins{
|
591 |
-
background-color: #464646;
|
592 |
-
color: #fff;
|
593 |
-
-moz-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
594 |
-
-khtml-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
595 |
-
-webkit-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
596 |
-
box-shadow: rgba(255,255,255,0.5) 0 1px 0;
|
597 |
-
}
|
598 |
-
|
599 |
-
div#media-upload-header,
|
600 |
-
div#plugin-information-header {
|
601 |
-
background-color: #eefcf1;
|
602 |
-
border-bottom-color: #dfdfdf;
|
603 |
-
}
|
604 |
-
|
605 |
-
#currenttheme img {
|
606 |
-
border-color: #666;
|
607 |
-
}
|
608 |
-
|
609 |
-
#dashboard_secondary div.dashboard-widget-content ul li a {
|
610 |
-
background-color: #eefcf1;
|
611 |
-
}
|
612 |
-
|
613 |
-
input.readonly, textarea.readonly {
|
614 |
-
background-color: #ddd;
|
615 |
-
}
|
616 |
-
|
617 |
-
#editable-post-name {
|
618 |
-
background-color: #fffbcc;
|
619 |
-
}
|
620 |
-
|
621 |
-
#edit-slug-box strong,
|
622 |
-
.tablenav .displaying-num,
|
623 |
-
#submitted-on,
|
624 |
-
.submitted-on {
|
625 |
-
color: #777;
|
626 |
-
}
|
627 |
-
|
628 |
-
.login #nav a,
|
629 |
-
.login #backtoblog a {
|
630 |
-
color: #007700 !important;
|
631 |
-
}
|
632 |
-
|
633 |
-
.login #nav a:hover,
|
634 |
-
.login #backtoblog a:hover {
|
635 |
-
color: #d54e21 !important;
|
636 |
-
}
|
637 |
-
|
638 |
-
#footer {
|
639 |
-
color: #777;
|
640 |
-
border-color: #dfdfdf;
|
641 |
-
}
|
642 |
-
|
643 |
-
#media-items,
|
644 |
-
.imgedit-group,
|
645 |
-
.media-item {
|
646 |
-
border-color: #dfdfdf;
|
647 |
-
}
|
648 |
-
|
649 |
-
.checkbox,
|
650 |
-
.side-info,
|
651 |
-
.plugins tr,
|
652 |
-
#your-profile #rich_editing {
|
653 |
-
background-color: #fcfcfc;
|
654 |
-
}
|
655 |
-
|
656 |
-
.plugins .inactive,
|
657 |
-
.plugins .inactive th,
|
658 |
-
.plugins .inactive td,
|
659 |
-
tr.inactive + tr.plugin-update-tr .plugin-update {
|
660 |
-
background-color: #f4f4f4;
|
661 |
-
}
|
662 |
-
|
663 |
-
.plugin-update-tr .update-message {
|
664 |
-
background-color: #fffbe4;
|
665 |
-
border-color: #dfdfdf;
|
666 |
-
}
|
667 |
-
|
668 |
-
.plugins .active,
|
669 |
-
.plugins .active th,
|
670 |
-
.plugins .active td {
|
671 |
-
color: #000;
|
672 |
-
}
|
673 |
-
|
674 |
-
.plugins .inactive a {
|
675 |
-
color: #557799;
|
676 |
-
}
|
677 |
-
|
678 |
-
#the-comment-list tr.undo,
|
679 |
-
#the-comment-list div.undo {
|
680 |
-
background-color: #f4f4f4;
|
681 |
-
}
|
682 |
-
|
683 |
-
#the-comment-list .unapproved {
|
684 |
-
background-color: #ffffe0;
|
685 |
-
}
|
686 |
-
|
687 |
-
#the-comment-list .approve a {
|
688 |
-
color: #006505;
|
689 |
-
}
|
690 |
-
|
691 |
-
#the-comment-list .unapprove a {
|
692 |
-
color: #d98500;
|
693 |
-
}
|
694 |
-
|
695 |
-
table.widefat span.delete a,
|
696 |
-
table.widefat span.trash a,
|
697 |
-
table.widefat span.spam a,
|
698 |
-
#dashboard_recent_comments .delete a,
|
699 |
-
#dashboard_recent_comments .trash a,
|
700 |
-
#dashboard_recent_comments .spam a {
|
701 |
-
color: #bc0b0b;
|
702 |
-
}
|
703 |
-
|
704 |
-
.welcome-panel {
|
705 |
-
border-color: #dfdfdf;
|
706 |
-
}
|
707 |
-
.welcome-panel p {
|
708 |
-
color: #777;
|
709 |
-
}
|
710 |
-
.welcome-panel-column p {
|
711 |
-
color: #464646;
|
712 |
-
}
|
713 |
-
.welcome-panel .welcome-panel-close {
|
714 |
-
background: #eee;
|
715 |
-
text-shadow: 1px 1px 1px #eee;
|
716 |
-
}
|
717 |
-
.welcome-panel h3 {
|
718 |
-
text-shadow: 1px 1px 1px white;
|
719 |
-
}
|
720 |
-
|
721 |
-
.widget,
|
722 |
-
#widget-list .widget-top,
|
723 |
-
.postbox,
|
724 |
-
#titlediv,
|
725 |
-
#poststuff .postarea,
|
726 |
-
.stuffbox {
|
727 |
-
border-color: #dfdfdf;
|
728 |
-
-moz-box-shadow: inset 0 1px 0 #fff;
|
729 |
-
-webkit-box-shadow: inset 0 1px 0 #fff;
|
730 |
-
box-shadow: inset 0 1px 0 #fff;
|
731 |
-
-moz-border-radius: 3px;
|
732 |
-
-khtml-border-radius: 3px;
|
733 |
-
-webkit-border-radius: 3px;
|
734 |
-
border-radius: 3px;
|
735 |
-
}
|
736 |
-
|
737 |
-
.widget,
|
738 |
-
#widget-list .widget-top,
|
739 |
-
.postbox,
|
740 |
-
.menu-item-settings {
|
741 |
-
background-color: #eefcf1; /* Fallback */
|
742 |
-
background-image: -ms-linear-gradient(top, #eefcf1, #deece1); /* IE10 */
|
743 |
-
background-image: -moz-linear-gradient(top, #eefcf1, #deece1); /* Firefox */
|
744 |
-
background-image: -o-linear-gradient(top, #eefcf1, #deece1); /* Opera */
|
745 |
-
background-image: -webkit-gradient(linear, left top, left bottom, from(#eefcf1), to(#deece1)); /* old Webkit */
|
746 |
-
background-image: -webkit-linear-gradient(top, #eefcf1, #deece1); /* new Webkit */
|
747 |
-
background-image: linear-gradient(top, #eefcf1, #deece1); /* proposed W3C Markup */
|
748 |
-
}
|
749 |
-
|
750 |
-
.postbox h3 {
|
751 |
-
color: #464646;
|
752 |
-
}
|
753 |
-
|
754 |
-
.widget .widget-top {
|
755 |
-
color: #222;
|
756 |
-
}
|
757 |
-
|
758 |
-
.sidebar-name:hover h3,
|
759 |
-
.postbox h3:hover {
|
760 |
-
color: #000;
|
761 |
-
}
|
762 |
-
|
763 |
-
.curtime #timestamp {
|
764 |
-
background-image: url(../../../wp-admin/images/date-button.gif);
|
765 |
-
}
|
766 |
-
|
767 |
-
#quicktags #ed_link {
|
768 |
-
color: #00f;
|
769 |
-
}
|
770 |
-
|
771 |
-
#rightnow .youhave {
|
772 |
-
background-color: #f0f6fb;
|
773 |
-
}
|
774 |
-
|
775 |
-
#rightnow a {
|
776 |
-
color: #448abd;
|
777 |
-
}
|
778 |
-
|
779 |
-
.tagchecklist span a,
|
780 |
-
#bulk-titles div a {
|
781 |
-
background: url(../../../wp-admin/images/xit.gif) no-repeat;
|
782 |
-
}
|
783 |
-
|
784 |
-
.tagchecklist span a:hover,
|
785 |
-
#bulk-titles div a:hover {
|
786 |
-
background: url(../../../wp-admin/images/xit.gif) no-repeat -10px 0;
|
787 |
-
}
|
788 |
-
|
789 |
-
#update-nag, .update-nag {
|
790 |
-
background-color: #FFFBCC;
|
791 |
-
border-color: #E6DB55;
|
792 |
-
color: #555;
|
793 |
-
}
|
794 |
-
|
795 |
-
#screen-meta {
|
796 |
-
background-color: #f1f1f1;
|
797 |
-
border-color: #ccc;
|
798 |
-
-webkit-box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.05 );
|
799 |
-
box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.05 );
|
800 |
-
}
|
801 |
-
|
802 |
-
.contextual-help-tabs a:hover {
|
803 |
-
color: #333;
|
804 |
-
}
|
805 |
-
|
806 |
-
.contextual-help-sidebar,
|
807 |
-
.contextual-help-tabs .active {
|
808 |
-
border-color: #ccc;
|
809 |
-
}
|
810 |
-
|
811 |
-
.contextual-help-tabs .active,
|
812 |
-
.contextual-help-tabs .active a,
|
813 |
-
.contextual-help-tabs .active a:hover {
|
814 |
-
background: #fff;
|
815 |
-
color: #000;
|
816 |
-
}
|
817 |
-
|
818 |
-
.contextual-help-tabs-wrap {
|
819 |
-
border-color: #ccc;
|
820 |
-
background-color: #fff;
|
821 |
-
}
|
822 |
-
|
823 |
-
/* screen options and help tabs */
|
824 |
-
#screen-options-link-wrap,
|
825 |
-
#contextual-help-link-wrap {
|
826 |
-
background-color: #e3e3e3; /* Fallback */
|
827 |
-
border-right: 1px solid transparent;
|
828 |
-
border-left: 1px solid transparent;
|
829 |
-
border-bottom: 1px solid transparent;
|
830 |
-
background-image: -ms-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* IE10 */
|
831 |
-
background-image: -moz-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* Firefox */
|
832 |
-
background-image: -o-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* Opera */
|
833 |
-
background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#f1f1f1)); /* old Webkit */
|
834 |
-
background-image: -webkit-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* new Webkit */
|
835 |
-
background-image: linear-gradient(bottom, #dfdfdf, #f1f1f1); /* proposed W3C Markup */
|
836 |
-
}
|
837 |
-
|
838 |
-
#screen-meta-links a.show-settings {
|
839 |
-
color: #777;
|
840 |
-
}
|
841 |
-
|
842 |
-
#screen-meta-links a.show-settings:hover {
|
843 |
-
color: #000;
|
844 |
-
}
|
845 |
-
|
846 |
-
#screen-meta-links a.show-settings {
|
847 |
-
background: transparent url(../../../wp-admin/images/arrows.png) no-repeat right 3px;
|
848 |
-
}
|
849 |
-
|
850 |
-
#screen-meta-links a.show-settings.screen-meta-active {
|
851 |
-
background: transparent url(../../../wp-admin/images/arrows.png) no-repeat right -33px;
|
852 |
-
}
|
853 |
-
|
854 |
-
/* end screen options and help tabs */
|
855 |
-
|
856 |
-
.login #backtoblog a {
|
857 |
-
color: #464646;
|
858 |
-
}
|
859 |
-
|
860 |
-
#wphead {
|
861 |
-
border-bottom:#dfdfdf 1px solid;
|
862 |
-
}
|
863 |
-
|
864 |
-
#wphead h1 a {
|
865 |
-
color: #464646;
|
866 |
-
}
|
867 |
-
|
868 |
-
#footer a:link,
|
869 |
-
#footer a:visited {
|
870 |
-
text-decoration: none;
|
871 |
-
}
|
872 |
-
|
873 |
-
#footer a:hover {
|
874 |
-
color: #000;
|
875 |
-
text-decoration: underline;
|
876 |
-
}
|
877 |
-
|
878 |
-
.file-error,
|
879 |
-
abbr.required,
|
880 |
-
.widget-control-remove:hover,
|
881 |
-
table.widefat .delete a:hover,
|
882 |
-
table.widefat .trash a:hover,
|
883 |
-
table.widefat .spam a:hover,
|
884 |
-
#dashboard_recent_comments .delete a:hover,
|
885 |
-
#dashboard_recent_comments .trash a:hover
|
886 |
-
#dashboard_recent_comments .spam a:hover {
|
887 |
-
color: #f00;
|
888 |
-
}
|
889 |
-
|
890 |
-
#pass-strength-result {
|
891 |
-
background-color: #eee;
|
892 |
-
border-color: #ddd !important;
|
893 |
-
}
|
894 |
-
|
895 |
-
#pass-strength-result.bad {
|
896 |
-
background-color: #ffb78c;
|
897 |
-
border-color: #ff853c !important;
|
898 |
-
}
|
899 |
-
|
900 |
-
#pass-strength-result.good {
|
901 |
-
background-color: #ffec8b;
|
902 |
-
border-color: #fc0 !important;
|
903 |
-
}
|
904 |
-
|
905 |
-
#pass-strength-result.short {
|
906 |
-
background-color: #ffa0a0;
|
907 |
-
border-color: #f04040 !important;
|
908 |
-
}
|
909 |
-
|
910 |
-
#pass-strength-result.strong {
|
911 |
-
background-color: #c3ff88;
|
912 |
-
border-color: #8dff1c !important;
|
913 |
-
}
|
914 |
-
|
915 |
-
#titlediv #title {
|
916 |
-
border-color: #ccc;
|
917 |
-
}
|
918 |
-
|
919 |
-
#post-status-info {
|
920 |
-
border-color: #dfdfdf #ccc #ccc;
|
921 |
-
background-color: #eaeaea;
|
922 |
-
}
|
923 |
-
|
924 |
-
.editwidget .widget-inside {
|
925 |
-
border-color: #dfdfdf;
|
926 |
-
}
|
927 |
-
|
928 |
-
#titlediv #title {
|
929 |
-
background-color: #fff;
|
930 |
-
}
|
931 |
-
|
932 |
-
#tTips p#tTips_inside {
|
933 |
-
background-color: #ddd;
|
934 |
-
color: #333;
|
935 |
-
}
|
936 |
-
|
937 |
-
#timestampdiv input,
|
938 |
-
#namediv input,
|
939 |
-
#poststuff .inside .the-tagcloud {
|
940 |
-
border-color: #ddd;
|
941 |
-
}
|
942 |
-
|
943 |
-
/* menu */
|
944 |
-
#adminmenuback,
|
945 |
-
#adminmenuwrap {
|
946 |
-
background-color: #deece1;
|
947 |
-
border-color: #ccc;
|
948 |
-
}
|
949 |
-
|
950 |
-
#adminmenushadow,
|
951 |
-
#adminmenuback {
|
952 |
-
background-image: url(../../../wp-admin/images/menu-shadow.png);
|
953 |
-
background-position: top right;
|
954 |
-
background-repeat: repeat-y;
|
955 |
-
}
|
956 |
-
|
957 |
-
#adminmenu li.wp-menu-separator {
|
958 |
-
background: #dfdfdf;
|
959 |
-
border-color: #cfcfcf;
|
960 |
-
}
|
961 |
-
|
962 |
-
#adminmenu div.separator {
|
963 |
-
border-color: #e1e1e1;
|
964 |
-
}
|
965 |
-
|
966 |
-
#adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,
|
967 |
-
#adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle {
|
968 |
-
background: transparent url(../../../wp-admin/images/arrows-dark.png) no-repeat -1px 6px;
|
969 |
-
}
|
970 |
-
|
971 |
-
#adminmenu .wp-has-submenu:hover .wp-menu-toggle,
|
972 |
-
#adminmenu .wp-menu-open .wp-menu-toggle {
|
973 |
-
background: transparent url(../../../wp-admin/images/arrows.png) no-repeat -2px 6px;
|
974 |
-
}
|
975 |
-
|
976 |
-
#adminmenu a.menu-top,
|
977 |
-
.folded #adminmenu li.menu-top,
|
978 |
-
#adminmenu .wp-submenu .wp-submenu-head {
|
979 |
-
border-top-color: #eefcf1;
|
980 |
-
border-bottom-color: #dfdfdf;
|
981 |
-
}
|
982 |
-
|
983 |
-
#adminmenu li.wp-menu-open {
|
984 |
-
border-color: #dfdfdf;
|
985 |
-
}
|
986 |
-
|
987 |
-
#adminmenu li.menu-top:hover > a,
|
988 |
-
#adminmenu li.menu-top.focused > a,
|
989 |
-
#adminmenu li.menu-top > a:focus {
|
990 |
-
background-color: #eefcf1;
|
991 |
-
text-shadow: 0 1px 0 rgba( 255, 255, 255, 0.4 );
|
992 |
-
}
|
993 |
-
|
994 |
-
#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
|
995 |
-
#adminmenu li.current a.menu-top,
|
996 |
-
.folded #adminmenu li.wp-has-current-submenu,
|
997 |
-
.folded #adminmenu li.current.menu-top,
|
998 |
-
#adminmenu .wp-menu-arrow,
|
999 |
-
#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
|
1000 |
-
background-color: #777; /* Fallback */
|
1001 |
-
background-image: -ms-linear-gradient(bottom, #060, #6EB469); /* IE10 */
|
1002 |
-
background-image: -moz-linear-gradient(bottom, #060, #6EB469); /* Firefox */
|
1003 |
-
background-image: -o-linear-gradient(bottom, #060, #6EB469); /* Opera */
|
1004 |
-
background-image: -webkit-gradient(linear, left bottom, left top, from(#060), to(#6EB469)); /* old Webkit */
|
1005 |
-
background-image: -webkit-linear-gradient(bottom, #060, #6EB469); /* new Webkit */
|
1006 |
-
background-image: linear-gradient(bottom, #060, #6EB469); /* proposed W3C Markup */
|
1007 |
-
}
|
1008 |
-
|
1009 |
-
#adminmenu .wp-menu-arrow div {
|
1010 |
-
background-color: #777; /* Fallback */
|
1011 |
-
background-image: -ms-linear-gradient(right bottom, #060, #6EB469); /* IE10 */
|
1012 |
-
background-image: -moz-linear-gradient(right bottom, #060, #6EB469); /* Firefox */
|
1013 |
-
background-image: -o-linear-gradient(right bottom, #060, #6EB469); /* Opera */
|
1014 |
-
background-image: -webkit-gradient(linear, right bottom, left top, from(#060), to(#6EB469)); /* old Webkit */
|
1015 |
-
background-image: -webkit-linear-gradient(right bottom, #060, #6EB469); /* new Webkit */
|
1016 |
-
background-image: linear-gradient(right bottom, #060, #6EB469); /* proposed W3C Markup */
|
1017 |
-
}
|
1018 |
-
|
1019 |
-
#adminmenu li.wp-not-current-submenu .wp-menu-arrow {
|
1020 |
-
border-top-color: #eefcf1;
|
1021 |
-
border-bottom-color: #dfdfdf;
|
1022 |
-
background: #eefcf1;
|
1023 |
-
}
|
1024 |
-
|
1025 |
-
#adminmenu li.wp-not-current-submenu .wp-menu-arrow div {
|
1026 |
-
background: #eefcf1;
|
1027 |
-
border-color: #ccc;
|
1028 |
-
}
|
1029 |
-
|
1030 |
-
.folded #adminmenu li.menu-top li:hover a {
|
1031 |
-
background-image: none;
|
1032 |
-
}
|
1033 |
-
|
1034 |
-
#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
|
1035 |
-
#adminmenu li.current a.menu-top,
|
1036 |
-
#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
|
1037 |
-
text-shadow: 0 -1px 0 #333;
|
1038 |
-
color: #fff;
|
1039 |
-
border-top-color: #6EB469;
|
1040 |
-
border-bottom-color: #060;
|
1041 |
-
}
|
1042 |
-
|
1043 |
-
.folded #adminmenu li.wp-has-current-submenu,
|
1044 |
-
.folded #adminmenu li.current.menu-top {
|
1045 |
-
border-top-color: #6EB469;
|
1046 |
-
border-bottom-color: #060;
|
1047 |
-
}
|
1048 |
-
|
1049 |
-
#adminmenu .wp-submenu a:hover,
|
1050 |
-
#adminmenu .wp-submenu a:focus {
|
1051 |
-
background-color: #eefcf1;
|
1052 |
-
color: #333;
|
1053 |
-
}
|
1054 |
-
|
1055 |
-
#adminmenu .wp-submenu li.current,
|
1056 |
-
#adminmenu .wp-submenu li.current a,
|
1057 |
-
#adminmenu .wp-submenu li.current a:hover {
|
1058 |
-
color: #333;
|
1059 |
-
}
|
1060 |
-
|
1061 |
-
#adminmenu .wp-submenu ul {
|
1062 |
-
background-color: #fff;
|
1063 |
-
}
|
1064 |
-
|
1065 |
-
#adminmenu .wp-submenu-wrap,
|
1066 |
-
#adminmenu .wp-submenu ul {
|
1067 |
-
border-color: #dfdfdf;
|
1068 |
-
}
|
1069 |
-
|
1070 |
-
#adminmenu .wp-submenu-wrap,
|
1071 |
-
.folded #adminmenu .wp-has-current-submenu .wp-submenu-wrap {
|
1072 |
-
-moz-box-shadow: 2px 2px 5px rgba( 0, 0, 0, 0.4 );
|
1073 |
-
-webkit-box-shadow: 2px 2px 5px rgba( 0, 0, 0, 0.4 );
|
1074 |
-
box-shadow: 2px 2px 5px rgba( 0, 0, 0, 0.4 );
|
1075 |
-
}
|
1076 |
-
|
1077 |
-
#adminmenu .wp-submenu .wp-submenu-head {
|
1078 |
-
border-right-color: #dfdfdf;
|
1079 |
-
background-color: #deece1;
|
1080 |
-
}
|
1081 |
-
|
1082 |
-
#adminmenu div.wp-submenu {
|
1083 |
-
background-color: transparent;
|
1084 |
-
}
|
1085 |
-
|
1086 |
-
/* collapse menu button */
|
1087 |
-
#collapse-menu {
|
1088 |
-
color: #aaa;
|
1089 |
-
}
|
1090 |
-
|
1091 |
-
#collapse-menu:hover {
|
1092 |
-
color: #999;
|
1093 |
-
}
|
1094 |
-
|
1095 |
-
#collapse-button {
|
1096 |
-
border-color: #ccc;
|
1097 |
-
background-color: #f4f4f4; /* Fallback */
|
1098 |
-
background-image: -ms-linear-gradient(bottom, #dfdfdf, #fff); /* IE10 */
|
1099 |
-
background-image: -moz-linear-gradient(bottom, #dfdfdf, #fff); /* Firefox */
|
1100 |
-
background-image: -o-linear-gradient(bottom, #dfdfdf, #fff); /* Opera */
|
1101 |
-
background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#fff)); /* old Webkit */
|
1102 |
-
background-image: -webkit-linear-gradient(bottom, #dfdfdf, #fff); /* new Webkit */
|
1103 |
-
background-image: linear-gradient(bottom, #dfdfdf, #fff); /* proposed W3C Markup */
|
1104 |
-
}
|
1105 |
-
#collapse-menu:hover #collapse-button {
|
1106 |
-
border-color: #aaa;
|
1107 |
-
}
|
1108 |
-
#collapse-button div {
|
1109 |
-
background: transparent url(../../../wp-admin/images/arrows.png) no-repeat 0 -72px;
|
1110 |
-
}
|
1111 |
-
.folded #collapse-button div {
|
1112 |
-
background-position: 0 -108px;
|
1113 |
-
}
|
1114 |
-
|
1115 |
-
/* menu and screen icons */
|
1116 |
-
.icon16.icon-dashboard,
|
1117 |
-
#adminmenu .menu-icon-dashboard div.wp-menu-image {
|
1118 |
-
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -60px -33px;
|
1119 |
-
}
|
1120 |
-
|
1121 |
-
#adminmenu .menu-icon-dashboard:hover div.wp-menu-image,
|
1122 |
-
#adminmenu .menu-icon-dashboard.wp-has-current-submenu div.wp-menu-image,
|
1123 |
-
#adminmenu .menu-icon-dashboard.current div.wp-menu-image {
|
1124 |
-
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -60px -1px;
|
1125 |
-
}
|
1126 |
-
|
1127 |
-
.icon16.icon-post,
|
1128 |
-
#adminmenu .menu-icon-post div.wp-menu-image {
|
1129 |
-
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -271px -33px;
|
1130 |
-
}
|
1131 |
-
|
1132 |
-
#adminmenu .menu-icon-post:hover div.wp-menu-image,
|
1133 |
-
#adminmenu .menu-icon-post.wp-has-current-submenu div.wp-menu-image {
|
1134 |
-
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -271px -1px;
|
1135 |
-
}
|
1136 |
-
|
1137 |
-
.icon16.icon-media,
|
1138 |
-
#adminmenu .menu-icon-media div.wp-menu-image {
|
1139 |
-
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -120px -33px;
|
1140 |
-
}
|
1141 |
-
|
1142 |
-
#adminmenu .menu-icon-media:hover div.wp-menu-image,
|
1143 |
-
#adminmenu .menu-icon-media.wp-has-current-submenu div.wp-menu-image {
|
1144 |
-
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -120px -1px;
|
1145 |
-
}
|
1146 |
-
|
1147 |
-
.icon16.icon-links,
|
1148 |
-
#adminmenu .menu-icon-links div.wp-menu-image {
|
1149 |
-
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -90px -33px;
|
1150 |
-
}
|
1151 |
-
|
1152 |
-
#adminmenu .menu-icon-links:hover div.wp-menu-image,
|
1153 |
-
#adminmenu .menu-icon-links.wp-has-current-submenu div.wp-menu-image {
|
1154 |
-
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -90px -1px;
|
1155 |
-
}
|
1156 |
-
|
1157 |
-
.icon16.icon-page,
|
1158 |
-
#adminmenu .menu-icon-page div.wp-menu-image {
|
1159 |
-
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -150px -33px;
|
1160 |
-
}
|
1161 |
-
|
1162 |
-
#adminmenu .menu-icon-page:hover div.wp-menu-image,
|
1163 |
-
#adminmenu .menu-icon-page.wp-has-current-submenu div.wp-menu-image {
|
1164 |
-
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -150px -1px;
|
1165 |
-
}
|
1166 |
-
|
1167 |
-
.icon16.icon-comments,
|
1168 |
-
#adminmenu .menu-icon-comments div.wp-menu-image {
|
1169 |
-
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -30px -33px;
|
1170 |
-
}
|
1171 |
-
|
1172 |
-
#adminmenu .menu-icon-comments:hover div.wp-menu-image,
|
1173 |
-
#adminmenu .menu-icon-comments.wp-has-current-submenu div.wp-menu-image,
|
1174 |
-
#adminmenu .menu-icon-comments.current div.wp-menu-image {
|
1175 |
-
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -30px -1px;
|
1176 |
-
}
|
1177 |
-
|
1178 |
-
.icon16.icon-appearance,
|
1179 |
-
#adminmenu .menu-icon-appearance div.wp-menu-image {
|
1180 |
-
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll 0 -33px;
|
1181 |
-
}
|
1182 |
-
|
1183 |
-
#adminmenu .menu-icon-appearance:hover div.wp-menu-image,
|
1184 |
-
#adminmenu .menu-icon-appearance.wp-has-current-submenu div.wp-menu-image {
|
1185 |
-
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll 0 -1px;
|
1186 |
-
}
|
1187 |
-
|
1188 |
-
.icon16.icon-plugins,
|
1189 |
-
#adminmenu .menu-icon-plugins div.wp-menu-image {
|
1190 |
-
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -180px -33px;
|
1191 |
-
}
|
1192 |
-
|
1193 |
-
#adminmenu .menu-icon-plugins:hover div.wp-menu-image,
|
1194 |
-
#adminmenu .menu-icon-plugins.wp-has-current-submenu div.wp-menu-image {
|
1195 |
-
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -180px -1px;
|
1196 |
-
}
|
1197 |
-
|
1198 |
-
.icon16.icon-users,
|
1199 |
-
#adminmenu .menu-icon-users div.wp-menu-image {
|
1200 |
-
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -300px -33px;
|
1201 |
-
}
|
1202 |
-
|
1203 |
-
#adminmenu .menu-icon-users:hover div.wp-menu-image,
|
1204 |
-
#adminmenu .menu-icon-users.wp-has-current-submenu div.wp-menu-image,
|
1205 |
-
#adminmenu .menu-icon-users.current div.wp-menu-image {
|
1206 |
-
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -300px -1px;
|
1207 |
-
}
|
1208 |
-
|
1209 |
-
.icon16.icon-tools,
|
1210 |
-
#adminmenu .menu-icon-tools div.wp-menu-image {
|
1211 |
-
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -210px -33px;
|
1212 |
-
}
|
1213 |
-
|
1214 |
-
#adminmenu .menu-icon-tools:hover div.wp-menu-image,
|
1215 |
-
#adminmenu .menu-icon-tools.wp-has-current-submenu div.wp-menu-image,
|
1216 |
-
#adminmenu .menu-icon-tools.current div.wp-menu-image {
|
1217 |
-
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -210px -1px;
|
1218 |
-
}
|
1219 |
-
|
1220 |
-
.icon16.icon-settings,
|
1221 |
-
#adminmenu .menu-icon-settings div.wp-menu-image {
|
1222 |
-
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -240px -33px;
|
1223 |
-
}
|
1224 |
-
|
1225 |
-
#adminmenu .menu-icon-settings:hover div.wp-menu-image,
|
1226 |
-
#adminmenu .menu-icon-settings.wp-has-current-submenu div.wp-menu-image {
|
1227 |
-
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -240px -1px;
|
1228 |
-
}
|
1229 |
-
|
1230 |
-
.icon16.icon-site,
|
1231 |
-
#adminmenu .menu-icon-site div.wp-menu-image {
|
1232 |
-
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -360px -33px;
|
1233 |
-
}
|
1234 |
-
|
1235 |
-
#adminmenu .menu-icon-site:hover div.wp-menu-image,
|
1236 |
-
#adminmenu .menu-icon-site.wp-has-current-submenu div.wp-menu-image {
|
1237 |
-
background: transparent url('../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -360px -1px;
|
1238 |
-
}
|
1239 |
-
/* end menu and screen icons */
|
1240 |
-
|
1241 |
-
/* Screen Icons */
|
1242 |
-
.icon32.icon-post,
|
1243 |
-
#icon-edit,
|
1244 |
-
#icon-post {
|
1245 |
-
background: transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -552px -5px;
|
1246 |
-
}
|
1247 |
-
|
1248 |
-
.icon32.icon-dashboard,
|
1249 |
-
#icon-index {
|
1250 |
-
background: transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -137px -5px;
|
1251 |
-
}
|
1252 |
-
|
1253 |
-
.icon32.icon-media,
|
1254 |
-
#icon-upload {
|
1255 |
-
background: transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -251px -5px;
|
1256 |
-
}
|
1257 |
-
|
1258 |
-
.icon32.icon-links,
|
1259 |
-
#icon-link-manager,
|
1260 |
-
#icon-link,
|
1261 |
-
#icon-link-category {
|
1262 |
-
background: transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -190px -5px;
|
1263 |
-
}
|
1264 |
-
|
1265 |
-
.icon32.icon-page,
|
1266 |
-
#icon-edit-pages,
|
1267 |
-
#icon-page {
|
1268 |
-
background: transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -312px -5px;
|
1269 |
-
}
|
1270 |
-
|
1271 |
-
.icon32.icon-comments,
|
1272 |
-
#icon-edit-comments {
|
1273 |
-
background: transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -72px -5px;
|
1274 |
-
}
|
1275 |
-
|
1276 |
-
.icon32.icon-appearance,
|
1277 |
-
#icon-themes {
|
1278 |
-
background: transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -11px -5px;
|
1279 |
-
}
|
1280 |
-
|
1281 |
-
.icon32.icon-plugins,
|
1282 |
-
#icon-plugins {
|
1283 |
-
background: transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -370px -5px;
|
1284 |
-
}
|
1285 |
-
|
1286 |
-
.icon32.icon-users,
|
1287 |
-
#icon-users,
|
1288 |
-
#icon-profile,
|
1289 |
-
#icon-user-edit {
|
1290 |
-
background: transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -600px -5px;
|
1291 |
-
}
|
1292 |
-
|
1293 |
-
.icon32.icon-tools,
|
1294 |
-
#icon-tools,
|
1295 |
-
#icon-admin {
|
1296 |
-
background: transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -432px -5px;
|
1297 |
-
}
|
1298 |
-
|
1299 |
-
.icon32.icon-settings,
|
1300 |
-
#icon-options-general {
|
1301 |
-
background: transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -492px -5px;
|
1302 |
-
}
|
1303 |
-
|
1304 |
-
.icon32.icon-site,
|
1305 |
-
#icon-ms-admin {
|
1306 |
-
background: transparent url(../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -659px -5px;
|
1307 |
-
}
|
1308 |
-
/* end screen icons */
|
1309 |
-
|
1310 |
-
|
1311 |
-
/* Diff */
|
1312 |
-
table.diff .diff-deletedline {
|
1313 |
-
background-color: #fdd;
|
1314 |
-
}
|
1315 |
-
|
1316 |
-
table.diff .diff-deletedline del {
|
1317 |
-
background-color: #f99;
|
1318 |
-
}
|
1319 |
-
|
1320 |
-
table.diff .diff-addedline {
|
1321 |
-
background-color: #dfd;
|
1322 |
-
}
|
1323 |
-
|
1324 |
-
table.diff .diff-addedline ins {
|
1325 |
-
background-color: #9f9;
|
1326 |
-
}
|
1327 |
-
|
1328 |
-
#att-info {
|
1329 |
-
background-color: #E4F2FD;
|
1330 |
-
}
|
1331 |
-
|
1332 |
-
/* edit image */
|
1333 |
-
#sidemenu a {
|
1334 |
-
background-color: #eefcf1;
|
1335 |
-
border-color: #eefcf1;
|
1336 |
-
border-bottom-color: #dfdfdf;
|
1337 |
-
}
|
1338 |
-
|
1339 |
-
#sidemenu a.current {
|
1340 |
-
background-color: #fff;
|
1341 |
-
border-color: #dfdfdf #dfdfdf #fff;
|
1342 |
-
color: #D54E21;
|
1343 |
-
}
|
1344 |
-
|
1345 |
-
#replyerror {
|
1346 |
-
border-color: #ddd;
|
1347 |
-
background-color: #eefcf1;
|
1348 |
-
}
|
1349 |
-
|
1350 |
-
/* table vim shortcuts */
|
1351 |
-
.vim-current,
|
1352 |
-
.vim-current th,
|
1353 |
-
.vim-current td {
|
1354 |
-
background-color: #E4F2FD !important;
|
1355 |
-
}
|
1356 |
-
|
1357 |
-
/* Install Plugins */
|
1358 |
-
.star-average,
|
1359 |
-
.star.star-rating {
|
1360 |
-
background-color: #fc0;
|
1361 |
-
}
|
1362 |
-
|
1363 |
-
div.star.select:hover {
|
1364 |
-
background-color: #d00;
|
1365 |
-
}
|
1366 |
-
|
1367 |
-
div.star img {
|
1368 |
-
border-left: 1px solid #fff;
|
1369 |
-
border-right: 1px solid #fff;
|
1370 |
-
}
|
1371 |
-
|
1372 |
-
.widefat div.star img {
|
1373 |
-
border-left: 1px solid #eefcf1;
|
1374 |
-
border-right: 1px solid #eefcf1;
|
1375 |
-
}
|
1376 |
-
|
1377 |
-
#plugin-information .fyi ul {
|
1378 |
-
background-color: #eaf3fa;
|
1379 |
-
}
|
1380 |
-
|
1381 |
-
#plugin-information .fyi h2.mainheader {
|
1382 |
-
background-color: #cee1ef;
|
1383 |
-
}
|
1384 |
-
|
1385 |
-
#plugin-information pre,
|
1386 |
-
#plugin-information code {
|
1387 |
-
background-color: #ededff;
|
1388 |
-
}
|
1389 |
-
|
1390 |
-
#plugin-information pre {
|
1391 |
-
border: 1px solid #ccc;
|
1392 |
-
}
|
1393 |
-
|
1394 |
-
/* inline editor */
|
1395 |
-
.inline-edit-row fieldset input[type="text"],
|
1396 |
-
.inline-edit-row fieldset textarea,
|
1397 |
-
#bulk-titles {
|
1398 |
-
border-color: #ddd;
|
1399 |
-
}
|
1400 |
-
|
1401 |
-
.inline-editor div.title {
|
1402 |
-
background-color: #EAF3FA;
|
1403 |
-
}
|
1404 |
-
|
1405 |
-
.inline-editor ul.cat-checklist {
|
1406 |
-
background-color: #fff;
|
1407 |
-
border-color: #ddd;
|
1408 |
-
}
|
1409 |
-
|
1410 |
-
.inline-editor .categories .catshow,
|
1411 |
-
.inline-editor .categories .cathide {
|
1412 |
-
color: #007700;
|
1413 |
-
}
|
1414 |
-
|
1415 |
-
.inline-editor .quick-edit-save {
|
1416 |
-
background-color: #f1f1f1;
|
1417 |
-
}
|
1418 |
-
|
1419 |
-
fieldset.inline-edit-col-right .inline-edit-col {
|
1420 |
-
border-color: #dfdfdf;
|
1421 |
-
}
|
1422 |
-
|
1423 |
-
.attention {
|
1424 |
-
color: #D54E21;
|
1425 |
-
}
|
1426 |
-
|
1427 |
-
.meta-box-sortables .postbox:hover .handlediv {
|
1428 |
-
background: transparent url(../../../wp-admin/images/arrows.png) no-repeat 6px 7px;
|
1429 |
-
}
|
1430 |
-
|
1431 |
-
.tablenav .tablenav-pages {
|
1432 |
-
color: #555;
|
1433 |
-
}
|
1434 |
-
|
1435 |
-
.tablenav .tablenav-pages a {
|
1436 |
-
border-color: #e3e3e3;
|
1437 |
-
background: #eee url('../../../wp-admin/images/menu-bits.gif?ver=20100610') repeat-x scroll left -379px;
|
1438 |
-
}
|
1439 |
-
|
1440 |
-
.tablenav .tablenav-pages a:hover,
|
1441 |
-
.tablenav .tablenav-pages a:focus {
|
1442 |
-
color: #d54e21;
|
1443 |
-
}
|
1444 |
-
|
1445 |
-
.tablenav .tablenav-pages a.disabled,
|
1446 |
-
.tablenav .tablenav-pages a.disabled:hover,
|
1447 |
-
.tablenav .tablenav-pages a.disabled:focus {
|
1448 |
-
color: #aaa;
|
1449 |
-
}
|
1450 |
-
|
1451 |
-
.tablenav .tablenav-pages .current {
|
1452 |
-
background: #dfdfdf;
|
1453 |
-
border-color: #d3d3d3;
|
1454 |
-
}
|
1455 |
-
|
1456 |
-
#availablethemes,
|
1457 |
-
#availablethemes td {
|
1458 |
-
border-color: #ddd;
|
1459 |
-
}
|
1460 |
-
|
1461 |
-
#current-theme img {
|
1462 |
-
border-color: #999;
|
1463 |
-
}
|
1464 |
-
|
1465 |
-
#TB_window #TB_title a.tb-theme-preview-link,
|
1466 |
-
#TB_window #TB_title a.tb-theme-preview-link:visited {
|
1467 |
-
color: #999;
|
1468 |
-
}
|
1469 |
-
|
1470 |
-
#TB_window #TB_title a.tb-theme-preview-link:hover,
|
1471 |
-
#TB_window #TB_title a.tb-theme-preview-link:focus {
|
1472 |
-
color: #ccc;
|
1473 |
-
}
|
1474 |
-
|
1475 |
-
.misc-pub-section {
|
1476 |
-
border-top-color: #fff;
|
1477 |
-
border-bottom-color: #dfdfdf;
|
1478 |
-
}
|
1479 |
-
|
1480 |
-
#minor-publishing {
|
1481 |
-
border-bottom-color: #dfdfdf;
|
1482 |
-
}
|
1483 |
-
|
1484 |
-
#post-body .misc-pub-section {
|
1485 |
-
border-right-color: #eee;
|
1486 |
-
}
|
1487 |
-
|
1488 |
-
.post-com-count span {
|
1489 |
-
background-color: #bbb;
|
1490 |
-
}
|
1491 |
-
|
1492 |
-
.form-table .color-palette td {
|
1493 |
-
border-color: #fff;
|
1494 |
-
}
|
1495 |
-
|
1496 |
-
.sortable-placeholder {
|
1497 |
-
border-color: #bbb;
|
1498 |
-
background-color: #eefcf1;
|
1499 |
-
}
|
1500 |
-
|
1501 |
-
#post-body ul.category-tabs li.tabs a,
|
1502 |
-
#post-body ul.add-menu-item-tabs li.tabs a,
|
1503 |
-
body.press-this ul.category-tabs li.tabs a {
|
1504 |
-
color: #333;
|
1505 |
-
}
|
1506 |
-
|
1507 |
-
.view-switch #view-switch-list {
|
1508 |
-
background: transparent url(../../../wp-admin/images/list.png) no-repeat 0 0;
|
1509 |
-
}
|
1510 |
-
|
1511 |
-
.view-switch .current #view-switch-list {
|
1512 |
-
background: transparent url(../../../wp-admin/images/list.png) no-repeat -40px 0;
|
1513 |
-
}
|
1514 |
-
|
1515 |
-
.view-switch #view-switch-excerpt {
|
1516 |
-
background: transparent url(../../../wp-admin/images/list.png) no-repeat -20px 0;
|
1517 |
-
}
|
1518 |
-
|
1519 |
-
.view-switch .current #view-switch-excerpt {
|
1520 |
-
background: transparent url(../../../wp-admin/images/list.png) no-repeat -60px 0;
|
1521 |
-
}
|
1522 |
-
|
1523 |
-
#header-logo {
|
1524 |
-
background: transparent url(../../../wp-admin/images/wp-logo.png?ver=20110504) no-repeat scroll center center;
|
1525 |
-
}
|
1526 |
-
|
1527 |
-
.popular-tags,
|
1528 |
-
.feature-filter {
|
1529 |
-
background-color: #fff;
|
1530 |
-
border-color: #DFDFDF;
|
1531 |
-
}
|
1532 |
-
|
1533 |
-
#theme-information .action-button {
|
1534 |
-
border-top-color: #DFDFDF;
|
1535 |
-
}
|
1536 |
-
|
1537 |
-
.theme-listing br.line {
|
1538 |
-
border-bottom-color: #ccc;
|
1539 |
-
}
|
1540 |
-
|
1541 |
-
div.widgets-sortables,
|
1542 |
-
#widgets-left .inactive {
|
1543 |
-
background-color: #fcfcfc;
|
1544 |
-
border-color: #dfdfdf;
|
1545 |
-
}
|
1546 |
-
|
1547 |
-
#available-widgets .widget-holder {
|
1548 |
-
background-color: #fcfcfc;
|
1549 |
-
border-color: #dfdfdf;
|
1550 |
-
}
|
1551 |
-
|
1552 |
-
#available-widgets .widget-description {
|
1553 |
-
color: #555;
|
1554 |
-
}
|
1555 |
-
|
1556 |
-
.sidebar-name {
|
1557 |
-
color: #464646;
|
1558 |
-
text-shadow: #fff 0 1px 0;
|
1559 |
-
border-color: #dfdfdf;
|
1560 |
-
-moz-box-shadow: inset 0 1px 0 #fff;
|
1561 |
-
-webkit-box-shadow: inset 0 1px 0 #fff;
|
1562 |
-
box-shadow: inset 0 1px 0 #fff;
|
1563 |
-
}
|
1564 |
-
|
1565 |
-
.sidebar-name:hover,
|
1566 |
-
#removing-widget {
|
1567 |
-
color: #d54e21;
|
1568 |
-
}
|
1569 |
-
|
1570 |
-
#removing-widget span {
|
1571 |
-
color: black;
|
1572 |
-
}
|
1573 |
-
|
1574 |
-
.sidebar-name-arrow {
|
1575 |
-
background: transparent url(../../../wp-admin/images/arrows.png) no-repeat 5px 9px;
|
1576 |
-
}
|
1577 |
-
|
1578 |
-
.sidebar-name:hover .sidebar-name-arrow {
|
1579 |
-
background: transparent url(../../../wp-admin/images/arrows-dark.png) no-repeat 5px 9px;
|
1580 |
-
}
|
1581 |
-
|
1582 |
-
.in-widget-title {
|
1583 |
-
color: #606060;
|
1584 |
-
}
|
1585 |
-
|
1586 |
-
.deleting .widget-title * {
|
1587 |
-
color: #aaa;
|
1588 |
-
}
|
1589 |
-
|
1590 |
-
.imgedit-menu div {
|
1591 |
-
border-color: #d5d5d5;
|
1592 |
-
background-color: #f1f1f1;
|
1593 |
-
}
|
1594 |
-
|
1595 |
-
.imgedit-menu div:hover {
|
1596 |
-
border-color: #c1c1c1;
|
1597 |
-
background-color: #eaeaea;
|
1598 |
-
}
|
1599 |
-
|
1600 |
-
.imgedit-menu div.disabled {
|
1601 |
-
border-color: #ccc;
|
1602 |
-
background-color: #ddd;
|
1603 |
-
filter: alpha(opacity=50);
|
1604 |
-
opacity: 0.5;
|
1605 |
-
}
|
1606 |
-
|
1607 |
-
#dashboard_recent_comments div.undo {
|
1608 |
-
border-top-color: #dfdfdf;
|
1609 |
-
}
|
1610 |
-
|
1611 |
-
.comment-ays,
|
1612 |
-
.comment-ays th {
|
1613 |
-
border-color: #ddd;
|
1614 |
-
}
|
1615 |
-
|
1616 |
-
.comment-ays th {
|
1617 |
-
background-color: #f1f1f1;
|
1618 |
-
}
|
1619 |
-
|
1620 |
-
/* added from nav-menu.css */
|
1621 |
-
#menu-management .menu-edit {
|
1622 |
-
border-color: #dfdfdf;
|
1623 |
-
}
|
1624 |
-
|
1625 |
-
#post-body {
|
1626 |
-
background: #fff;
|
1627 |
-
border-top-color: #fff;
|
1628 |
-
border-bottom-color: #dfdfdf;
|
1629 |
-
}
|
1630 |
-
|
1631 |
-
#nav-menu-header {
|
1632 |
-
border-bottom-color: #dfdfdf;
|
1633 |
-
}
|
1634 |
-
|
1635 |
-
#nav-menu-footer {
|
1636 |
-
border-top-color: #fff;
|
1637 |
-
}
|
1638 |
-
|
1639 |
-
#menu-management .nav-tabs-arrow a {
|
1640 |
-
color: #C1C1C1;
|
1641 |
-
}
|
1642 |
-
|
1643 |
-
#menu-management .nav-tabs-arrow a:hover {
|
1644 |
-
color: #D54E21;
|
1645 |
-
}
|
1646 |
-
|
1647 |
-
#menu-management .nav-tabs-arrow a:active {
|
1648 |
-
color: #464646;
|
1649 |
-
}
|
1650 |
-
|
1651 |
-
#menu-management .nav-tab-active {
|
1652 |
-
border-color: #dfdfdf;
|
1653 |
-
}
|
1654 |
-
|
1655 |
-
#menu-management .nav-tab {
|
1656 |
-
background: #fbfbfb;
|
1657 |
-
border-color: #dfdfdf;
|
1658 |
-
}
|
1659 |
-
|
1660 |
-
.js .input-with-default-title {
|
1661 |
-
color: #aaa;
|
1662 |
-
}
|
1663 |
-
|
1664 |
-
#cancel-save {
|
1665 |
-
color: #ff0000;
|
1666 |
-
}
|
1667 |
-
|
1668 |
-
#cancel-save:hover {
|
1669 |
-
background-color: #FF0000;
|
1670 |
-
color: #fff;
|
1671 |
-
}
|
1672 |
-
|
1673 |
-
.list-container {
|
1674 |
-
border-color: #DFDFDF;
|
1675 |
-
}
|
1676 |
-
|
1677 |
-
.menu-item-handle {
|
1678 |
-
border-color: #dfdfdf;
|
1679 |
-
}
|
1680 |
-
|
1681 |
-
.menu li.deleting .menu-item-handle {
|
1682 |
-
background-color: #f66;
|
1683 |
-
text-shadow: #ccc;
|
1684 |
-
}
|
1685 |
-
|
1686 |
-
.item-type { /* Menu item controls */
|
1687 |
-
color: #999999;
|
1688 |
-
}
|
1689 |
-
|
1690 |
-
.item-controls .menu-item-delete:hover {
|
1691 |
-
color: #ff0000;
|
1692 |
-
}
|
1693 |
-
|
1694 |
-
.item-edit {
|
1695 |
-
background: transparent url(../../../wp-admin/images/arrows.png) no-repeat 8px 10px;
|
1696 |
-
border-bottom-color: #eee;
|
1697 |
-
}
|
1698 |
-
|
1699 |
-
.item-edit:hover {
|
1700 |
-
background: transparent url(../../../wp-admin/images/arrows-dark.png) no-repeat 8px 10px;
|
1701 |
-
}
|
1702 |
-
|
1703 |
-
.menu-item-settings { /* Menu editing */
|
1704 |
-
border-color: #dfdfdf;
|
1705 |
-
}
|
1706 |
-
|
1707 |
-
.link-to-original {
|
1708 |
-
color: #777;
|
1709 |
-
border-color: #dfdfdf;
|
1710 |
-
}
|
1711 |
-
|
1712 |
-
#cancel-save:hover {
|
1713 |
-
color: #fff !important;
|
1714 |
-
}
|
1715 |
-
|
1716 |
-
#update-menu-item {
|
1717 |
-
color: #fff !important;
|
1718 |
-
}
|
1719 |
-
|
1720 |
-
#update-menu-item:hover,
|
1721 |
-
#update-menu-item:active,
|
1722 |
-
#update-menu-item:focus {
|
1723 |
-
color: #eaf2fa !important;
|
1724 |
-
border-color: #13455b !important;
|
1725 |
-
}
|
1726 |
-
|
1727 |
-
.submitbox .submitcancel {
|
1728 |
-
color: #007700;
|
1729 |
-
border-bottom-color: #007700;
|
1730 |
-
}
|
1731 |
-
|
1732 |
-
.submitbox .submitcancel:hover {
|
1733 |
-
background: #007700;
|
1734 |
-
color: #fff;
|
1735 |
-
}
|
1736 |
-
/* end added from nav-menu.css */
|
1737 |
-
|
1738 |
-
#menu-management .nav-tab-active,
|
1739 |
-
.menu-item-handle,
|
1740 |
-
.menu-item-settings {
|
1741 |
-
-moz-box-shadow: inset 0 1px 0 #fff;
|
1742 |
-
-webkit-box-shadow: inset 0 1px 0 #fff;
|
1743 |
-
box-shadow: inset 0 1px 0 #fff;
|
1744 |
-
}
|
1745 |
-
|
1746 |
-
#menu-management .nav-tab-active {
|
1747 |
-
background: #eefcf1;
|
1748 |
-
border-bottom-color: #eefcf1;
|
1749 |
-
}
|
1750 |
-
|
1751 |
-
/* custom header & background pages */
|
1752 |
-
#upload-form label {
|
1753 |
-
color: #777;
|
1754 |
-
}
|
1755 |
-
/* custom header & background pages */
|
1756 |
-
|
1757 |
-
/* full screen */
|
1758 |
-
.fullscreen-overlay {
|
1759 |
-
background: #fff;
|
1760 |
-
}
|
1761 |
-
|
1762 |
-
.wp-fullscreen-focus #wp-fullscreen-title,
|
1763 |
-
.wp-fullscreen-focus #wp-fullscreen-container {
|
1764 |
-
border-color: #ccc;
|
1765 |
-
}
|
1766 |
-
|
1767 |
-
#fullscreen-topbar {
|
1768 |
-
border-bottom-color: #DFDFDF;
|
1769 |
-
}
|
1770 |
-
|
1771 |
-
/* Begin About Pages */
|
1772 |
-
|
1773 |
-
.about-wrap h1 {
|
1774 |
-
color: #333;
|
1775 |
-
text-shadow: 1px 1px 1px white;
|
1776 |
-
}
|
1777 |
-
|
1778 |
-
.about-text {
|
1779 |
-
color: #777;
|
1780 |
-
}
|
1781 |
-
|
1782 |
-
.wp-badge {
|
1783 |
-
color: #fff;
|
1784 |
-
text-shadow: 0 -1px 0 #0c3d57;
|
1785 |
-
border-color: #2B5173;
|
1786 |
-
|
1787 |
-
-moz-box-shadow: inset 0 0 0 1px #5F8CA8;
|
1788 |
-
-webkit-box-shadow: inset 0 0 0 1px #5F8CA8;
|
1789 |
-
box-shadow: inset 0 0 0 1px #5F8CA8;
|
1790 |
-
|
1791 |
-
background-color: #378aac;
|
1792 |
-
background-image: url(../../../wp-admin/images/wp-badge.png);
|
1793 |
-
background-image: url(../../../wp-admin/images/wp-badge.png), -ms-linear-gradient(top, #378aac, #165d84); /* IE10 */
|
1794 |
-
background-image: url(../../../wp-admin/images/wp-badge.png), -moz-linear-gradient(top, #378aac, #165d84); /* Firefox */
|
1795 |
-
background-image: url(../../../wp-admin/images/wp-badge.png), -o-linear-gradient(top, #378aac, #165d84); /* Opera */
|
1796 |
-
background-image: url(../../../wp-admin/images/wp-badge.png), -webkit-gradient(linear, left top, left bottom, from(#378aac), to(#165d84)); /* old Webkit */
|
1797 |
-
background-image: url(../../../wp-admin/images/wp-badge.png), -webkit-linear-gradient(top, #378aac, #165d84); /* new Webkit */
|
1798 |
-
background-image: url(../../../wp-admin/images/wp-badge.png), linear-gradient(top, #378aac, #165d84); /* proposed W3C Markup */
|
1799 |
-
}
|
1800 |
-
|
1801 |
-
.about-wrap h2 .nav-tab {
|
1802 |
-
color: #007700;
|
1803 |
-
}
|
1804 |
-
.about-wrap h2 .nav-tab:hover {
|
1805 |
-
color: #d54e21;
|
1806 |
-
}
|
1807 |
-
.about-wrap h2 .nav-tab-active,
|
1808 |
-
.about-wrap h2 .nav-tab-active:hover {
|
1809 |
-
color: #333;
|
1810 |
-
}
|
1811 |
-
.about-wrap h2 .nav-tab-active {
|
1812 |
-
text-shadow: 1px 1px 1px white;
|
1813 |
-
color: #464646;
|
1814 |
-
}
|
1815 |
-
|
1816 |
-
.about-wrap h3 {
|
1817 |
-
color: #333;
|
1818 |
-
text-shadow: 1px 1px 1px white;
|
1819 |
-
}
|
1820 |
-
|
1821 |
-
.about-wrap .feature-section h4 {
|
1822 |
-
color: #464646;
|
1823 |
-
}
|
1824 |
-
|
1825 |
-
.about-wrap .feature-section img {
|
1826 |
-
background: #eefcf1;
|
1827 |
-
border-color: #dfdfdf;
|
1828 |
-
|
1829 |
-
-moz-box-shadow: 0 0 6px rgba( 0, 0, 0, 0.3 );
|
1830 |
-
-webkit-box-shadow: 0 0 6px rgba( 0, 0, 0, 0.3 );
|
1831 |
-
box-shadow: 0 0 6px rgba( 0, 0, 0, 0.3 );
|
1832 |
-
}
|
1833 |
-
|
1834 |
-
.about-wrap h4.wp-people-group {
|
1835 |
-
text-shadow: 1px 1px 1px white;
|
1836 |
-
}
|
1837 |
-
|
1838 |
-
.about-wrap li.wp-person img.gravatar {
|
1839 |
-
-moz-box-shadow: 0 0 4px rgba( 0, 0, 0, 0.4 );
|
1840 |
-
-webkit-box-shadow: 0 0 4px rgba( 0, 0, 0, 0.4 );
|
1841 |
-
box-shadow: 0 0 4px rgba( 0, 0, 0, 0.4 );
|
1842 |
-
}
|
1843 |
-
.about-wrap li.wp-person .title {
|
1844 |
-
color: #464646;
|
1845 |
-
text-shadow: 1px 1px 1px white;
|
1846 |
-
}
|
1847 |
-
|
1848 |
-
.freedoms-php .about-wrap ol li {
|
1849 |
-
color: #999;
|
1850 |
-
}
|
1851 |
-
.freedoms-php .about-wrap ol p {
|
1852 |
-
color: #464646;
|
1853 |
-
}
|
1854 |
-
|
1855 |
-
/* End About Pages */
|
1856 |
-
|
1857 |
-
|
1858 |
-
/*------------------------------------------------------------------------------
|
1859 |
-
2.0 - Right to Left Styles
|
1860 |
-
------------------------------------------------------------------------------*/
|
1861 |
-
|
1862 |
-
.rtl .bar {
|
1863 |
-
border-right-color: none;
|
1864 |
-
border-left-color: #99d;
|
1865 |
-
}
|
1866 |
-
|
1867 |
-
.rtl .post-com-count {
|
1868 |
-
background-image: url(../../../wp-admin/images/bubble_bg-rtl.gif);
|
1869 |
-
}
|
1870 |
-
|
1871 |
-
.rtl #screen-meta-links a.show-settings {
|
1872 |
-
background-position: left 3px;
|
1873 |
-
}
|
1874 |
-
|
1875 |
-
.rtl #screen-meta-links a.show-settings.screen-meta-active {
|
1876 |
-
background-position: left -33px;
|
1877 |
-
}
|
1878 |
-
|
1879 |
-
/* Menu */
|
1880 |
-
.rtl #adminmenushadow,
|
1881 |
-
.rtl #adminmenuback {
|
1882 |
-
background-image: url(../../../wp-admin/images/menu-shadow-rtl.png);
|
1883 |
-
background-position: top left;
|
1884 |
-
}
|
1885 |
-
|
1886 |
-
.rtl #adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,
|
1887 |
-
.rtl #adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle {
|
1888 |
-
background: transparent url(../../../wp-admin/images/arrows-dark.png) no-repeat 8px 6px;
|
1889 |
-
}
|
1890 |
-
|
1891 |
-
.rtl #adminmenu .wp-has-submenu:hover .wp-menu-toggle,
|
1892 |
-
.rtl #adminmenu .wp-menu-open .wp-menu-toggle {
|
1893 |
-
background: transparent url(../../../wp-admin/images/arrows.png) no-repeat 8px 6px;
|
1894 |
-
}
|
1895 |
-
|
1896 |
-
.rtl #adminmenu .wp-submenu .wp-submenu-head {
|
1897 |
-
border-right-color: none;
|
1898 |
-
border-left-color: #dfdfdf;
|
1899 |
-
}
|
1900 |
-
|
1901 |
-
.rtl .folded #adminmenu .wp-submenu-wrap {
|
1902 |
-
-moz-box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 );
|
1903 |
-
-webkit-box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 );
|
1904 |
-
box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 );
|
1905 |
-
}
|
1906 |
-
|
1907 |
-
/* Collapse Menu Button */
|
1908 |
-
.rtl #collapse-button div {
|
1909 |
-
background-position: 0 -108px;
|
1910 |
-
}
|
1911 |
-
|
1912 |
-
.rtl .folded #collapse-button div {
|
1913 |
-
background-position: 0 -72px;
|
1914 |
-
}
|
1915 |
-
|
1916 |
-
/* Edit Image */
|
1917 |
-
.rtl .meta-box-sortables .postbox:hover .handlediv {
|
1918 |
-
background: transparent url(../../../wp-admin/images/arrows.png) no-repeat 6px 7px;
|
1919 |
-
}
|
1920 |
-
|
1921 |
-
.rtl .tablenav .tablenav-pages a {
|
1922 |
-
border-color: #e3e3e3;
|
1923 |
-
background: #eee url('../../../wp-admin/images/menu-bits-rtl.gif?ver=20100610') repeat-x scroll right -379px;
|
1924 |
-
}
|
1925 |
-
|
1926 |
-
.rtl #post-body .misc-pub-section {
|
1927 |
-
border-right-color: none;
|
1928 |
-
border-left-color: #eee;
|
1929 |
-
}
|
1930 |
-
|
1931 |
-
.rtl .sidebar-name-arrow {
|
1932 |
-
background: transparent url(../../../wp-admin/images/arrows.png) no-repeat 5px 9px;
|
1933 |
-
}
|
1934 |
-
|
1935 |
-
.rtl .sidebar-name:hover .sidebar-name-arrow {
|
1936 |
-
background: transparent url(../../../wp-admin/images/arrows-dark.png) no-repeat 5px 9px;
|
1937 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bbp-admin/styles/admin.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
html,.wp-dialog{background-color:#fff}textarea,input[type="text"],input[type="password"],input[type="file"],input[type="button"],input[type="submit"],input[type="reset"],input[type="email"],input[type="number"],input[type="search"],input[type="tel"],input[type="url"],select{border-color:#dfdfdf;background-color:#fff}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="file"]:focus,input[type="button"]:focus,input[type="submit"]:focus,input[type="reset"]:focus,input[type="email"]:focus,input[type="number"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="url"]:focus,select:focus{border-color:#bbb}kbd,code{background:#eaeaea}input[readonly]{background-color:#eee}.find-box-search{border-color:#dfdfdf;background-color:#f1f1f1}.find-box{background-color:#f1f1f1}.find-box-inside{background-color:#fff}a.page-numbers:hover{border-color:#999}body,#wpbody,.form-table .pre{color:#333}body>#upload-menu{border-bottom-color:#fff}#postcustomstuff table,#your-profile fieldset,#rightnow,div.dashboard-widget,#dashboard-widgets p.dashboard-widget-links{border-color:#ccc}#poststuff .inside label.spam,#poststuff .inside label.deleted{color:red}#poststuff .inside label.waiting{color:orange}#poststuff .inside label.approved{color:green}#postcustomstuff table{border-color:#dfdfdf;background-color:#f9f9f9}#postcustomstuff thead th{background-color:#f1f1f1}.widefat{border-color:#dfdfdf;background-color:#eefcf1}textarea.widefat{background-color:#fff}div.dashboard-widget-error{background-color:#c43}div.dashboard-widget-notice{background-color:#cfe1ef}div.dashboard-widget-submit{border-top-color:#ccc}div.tabs-panel,.wp-tab-panel,ul.category-tabs li.tabs,ul.add-menu-item-tabs li.tabs,.wp-tab-active{border-color:#dfdfdf;background-color:#fff}ul.category-tabs li.tabs,ul.add-menu-item-tabs li.tabs,.wp-tab-active{background-color:#fff}input.disabled,textarea.disabled{background-color:#ccc}#plugin-information .action-button a,#plugin-information .action-button a:hover,#plugin-information .action-button a:visited{color:#fff}.widget .widget-top,.postbox h3,.stuffbox h3,.widefat thead tr th,.widefat tfoot tr th,h3.dashboard-widget-title,h3.dashboard-widget-title span,h3.dashboard-widget-title small,.find-box-head,.sidebar-name,#nav-menu-header,#nav-menu-footer,.menu-item-handle,#fullscreen-topbar{background-color:#f1f1f1;background-image:-ms-linear-gradient(top,#eefcf1,#deece1);background-image:-moz-linear-gradient(top,#eefcf1,#deece1);background-image:-o-linear-gradient(top,#eefcf1,#deece1);background-image:-webkit-gradient(linear,left top,left bottom,from(#eefcf1),to(#deece1));background-image:-webkit-linear-gradient(top,#eefcf1,#deece1);background-image:linear-gradient(top,#eefcf1,#deece1)}.widget .widget-top,.postbox h3,.stuffbox h3{border-bottom-color:#dfdfdf;text-shadow:#fff 0 1px 0;-moz-box-shadow:0 1px 0 #fff;-webkit-box-shadow:0 1px 0 #fff;box-shadow:0 1px 0 #fff}.form-table th,.form-wrap label{color:#222;text-shadow:#fff 0 1px 0}.description,.form-wrap p{color:#666}strong .post-com-count span{background-color:#070}.sorthelper{background-color:#ccf3fa}.ac_match,.subsubsub a.current{color:#000}.wrap h2{color:#464646}.wrap .add-new-h2{background:#f1f1f1}.subtitle{color:#777}.ac_over{background-color:#f0f0b8}.ac_results{background-color:#fff;border-color:#6eb469}.ac_results li{color:#101010}.alternate,.alt{background-color:#fefefe}.available-theme a.screenshot{background-color:#f1f1f1;border-color:#ddd}.bar{background-color:#e8e8e8;border-right-color:#99d}#media-upload,#media-upload .media-item .slidetoggle{background:#fff}#media-upload .slidetoggle{border-top-color:#dfdfdf}div.error,.login #login_error{background-color:#ffebe8;border-color:#c00}div.error a{color:#c00}.form-invalid{background-color:#ffebe8!important}.form-invalid input,.form-invalid select{border-color:#c00!important}.submit{border-color:#dfdfdf}.highlight{background-color:#e4f2fd;color:#000}.howto,.nonessential,#edit-slug-box,.form-input-tip,.subsubsub{color:#666}#wpbody-content #media-items .describe{border-top-color:#dfdfdf}.media-upload-form label.form-help,td.help{color:#9a9a9a}.post-com-count{background-image:url(../../../../../wp-admin/images/bubble_bg.gif);color:#fff}.post-com-count span{background-color:#bbb;color:#fff}.post-com-count:hover span{background-color:#d54e21}.quicktags,.search{background-color:#ccc;color:#000}.side-info h5{border-bottom-color:#dadada}.side-info ul{color:#666}.button,.button-secondary,.submit input,input[type=button],input[type=submit]{border-color:#bbb;color:#464646}.button:hover,.button-secondary:hover,.submit input:hover,input[type=button]:hover,input[type=submit]:hover{color:#000;border-color:#666}.button,.submit input,.button-secondary{background:#f2f2f2 url(../../../../../wp-admin/images/white-grad.png) repeat-x scroll left top;text-shadow:rgba(255,255,255,1) 0 1px 0}.button:active,.submit input:active,.button-secondary:active{background:#eee url(../../../../../wp-admin/images/white-grad-active.png) repeat-x scroll left top}input.button-primary,button.button-primary,a.button-primary{border-color:#298cba;font-weight:bold;color:#fff;background:#070 url(../images/button-grad.png) repeat-x scroll left top;text-shadow:rgba(0,0,0,0.3) 0 -1px 0}input.button-primary:active,button.button-primary:active,a.button-primary:active{background:#070 url(../images/button-grad-active.png) repeat-x scroll left top;color:#eaf2fa}input.button-primary:hover,button.button-primary:hover,a.button-primary:hover,a.button-primary:focus,a.button-primary:active{border-color:#13455b;color:#eaf2fa}.button-disabled,.button[disabled],.button:disabled,.button-secondary[disabled],.button-secondary:disabled,a.button.disabled{color:#aaa!important;border-color:#ddd!important}.button-primary-disabled,.button-primary[disabled],.button-primary:disabled{color:#9fd0d5!important;background:#298cba!important}a:hover,a:active,a:focus{color:#d54e21}#adminmenu a:hover,#adminmenu li.menu-top>a:focus,#adminmenu ul.wp-submenu a:hover,#the-comment-list .comment a:hover,#rightnow a:hover,#media-upload a.del-link:hover,div.dashboard-widget-submit input:hover,.subsubsub a:hover,.subsubsub a.current:hover,.ui-tabs-nav a:hover,.plugins .inactive a:hover,#all-plugins-table .plugins .inactive a:hover,#search-plugins-table .plugins .inactive a:hover{color:#d54e21}#the-comment-list .comment-item,#dashboard-widgets #dashboard_quick_press form p.submit{border-color:#dfdfdf}#side-sortables .category-tabs .tabs a,#side-sortables .add-menu-item-tabs .tabs a,.wp-tab-bar .wp-tab-active a{color:#333}#rightnow .rbutton{background-color:#ebebeb;color:#264761}.submitbox .submit{background-color:#464646;color:#ccc}.plugins a.delete:hover,#all-plugins-table .plugins a.delete:hover,#search-plugins-table .plugins a.delete:hover,.submitbox .submitdelete{color:#f00;border-bottom-color:#f00}.submitbox .submitdelete:hover,#media-items a.delete:hover{color:#fff;background-color:#f00;border-bottom-color:#f00}#normal-sortables .submitbox .submitdelete:hover{color:#000;background-color:#f00;border-bottom-color:#f00}.tablenav .dots{border-color:transparent}.tablenav .next,.tablenav .prev{border-color:transparent;color:#070}.tablenav .next:hover,.tablenav .prev:hover{border-color:transparent;color:#d54e21}div.updated,.login .message{background-color:#ffffe0;border-color:#e6db55}.update-message{color:#000}a.page-numbers{border-bottom-color:#b8d3e2}.commentlist li{border-bottom-color:#ccc}.widefat td,.widefat th{border-top-color:#fff;border-bottom-color:#dfdfdf}.widefat th{text-shadow:rgba(255,255,255,0.8) 0 1px 0}.widefat td{color:#555}.widefat p,.widefat ol,.widefat ul{color:#333}.widefat thead tr th,.widefat tfoot tr th,h3.dashboard-widget-title,h3.dashboard-widget-title span,h3.dashboard-widget-title small,.find-box-head{color:#333}th.sortable a:hover,th.sortable a:active,th.sortable a:focus{color:#333}h3.dashboard-widget-title small a{color:#d7d7d7}h3.dashboard-widget-title small a:hover{color:#fff}a,#adminmenu a,#the-comment-list p.comment-author strong a,#media-upload a.del-link,#media-items a.delete,.plugins a.delete,.ui-tabs-nav a{color:#070}#adminmenu .awaiting-mod,#adminmenu .update-plugins,#sidemenu a .update-plugins,#rightnow .reallynow{background-color:#464646;color:#fff;-moz-box-shadow:rgba(255,255,255,0.5) 0 1px 0;-khtml-box-shadow:rgba(255,255,255,0.5) 0 1px 0;-webkit-box-shadow:rgba(255,255,255,0.5) 0 1px 0;box-shadow:rgba(255,255,255,0.5) 0 1px 0}#plugin-information .action-button{background-color:#d54e21;color:#fff}#adminmenu li.current a .awaiting-mod,#adminmenu li a.wp-has-current-submenu .update-plugins{background-color:#464646;color:#fff;-moz-box-shadow:rgba(255,255,255,0.5) 0 1px 0;-khtml-box-shadow:rgba(255,255,255,0.5) 0 1px 0;-webkit-box-shadow:rgba(255,255,255,0.5) 0 1px 0;box-shadow:rgba(255,255,255,0.5) 0 1px 0}div#media-upload-header,div#plugin-information-header{background-color:#eefcf1;border-bottom-color:#dfdfdf}#currenttheme img{border-color:#666}#dashboard_secondary div.dashboard-widget-content ul li a{background-color:#eefcf1}input.readonly,textarea.readonly{background-color:#ddd}#editable-post-name{background-color:#fffbcc}#edit-slug-box strong,.tablenav .displaying-num,#submitted-on,.submitted-on{color:#777}.login #nav a,.login #backtoblog a{color:#070!important}.login #nav a:hover,.login #backtoblog a:hover{color:#d54e21!important}#footer{color:#777;border-color:#dfdfdf}#media-items,.imgedit-group,.media-item{border-color:#dfdfdf}.checkbox,.side-info,.plugins tr,#your-profile #rich_editing{background-color:#fcfcfc}.plugins .inactive,.plugins .inactive th,.plugins .inactive td,tr.inactive+tr.plugin-update-tr .plugin-update{background-color:#f4f4f4}.plugin-update-tr .update-message{background-color:#fffbe4;border-color:#dfdfdf}.plugins .active,.plugins .active th,.plugins .active td{color:#000}.plugins .inactive a{color:#579}#the-comment-list tr.undo,#the-comment-list div.undo{background-color:#f4f4f4}#the-comment-list .unapproved{background-color:#ffffe0}#the-comment-list .approve a{color:#006505}#the-comment-list .unapprove a{color:#d98500}table.widefat span.delete a,table.widefat span.trash a,table.widefat span.spam a,#dashboard_recent_comments .delete a,#dashboard_recent_comments .trash a,#dashboard_recent_comments .spam a{color:#bc0b0b}.welcome-panel{border-color:#dfdfdf}.welcome-panel p{color:#777}.welcome-panel-column p{color:#464646}.welcome-panel .welcome-panel-close{background:#eee;text-shadow:1px 1px 1px #eee}.welcome-panel h3{text-shadow:1px 1px 1px white}.widget,#widget-list .widget-top,.postbox,#titlediv,#poststuff .postarea,.stuffbox{border-color:#dfdfdf;-moz-box-shadow:inset 0 1px 0 #fff;-webkit-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff;-moz-border-radius:3px;-khtml-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.widget,#widget-list .widget-top,.postbox,.menu-item-settings{background-color:#eefcf1;background-image:-ms-linear-gradient(top,#eefcf1,#deece1);background-image:-moz-linear-gradient(top,#eefcf1,#deece1);background-image:-o-linear-gradient(top,#eefcf1,#deece1);background-image:-webkit-gradient(linear,left top,left bottom,from(#eefcf1),to(#deece1));background-image:-webkit-linear-gradient(top,#eefcf1,#deece1);background-image:linear-gradient(top,#eefcf1,#deece1)}.postbox h3{color:#464646}.widget .widget-top{color:#222}.sidebar-name:hover h3,.postbox h3:hover{color:#000}.curtime #timestamp{background-image:url(../../../../../wp-admin/images/date-button.gif)}#quicktags #ed_link{color:#00f}#rightnow .youhave{background-color:#f0f6fb}#rightnow a{color:#448abd}.tagchecklist span a,#bulk-titles div a{background:url(../../../../../wp-admin/images/xit.gif) no-repeat}.tagchecklist span a:hover,#bulk-titles div a:hover{background:url(../../../../../wp-admin/images/xit.gif) no-repeat -10px 0}#update-nag,.update-nag{background-color:#fffbcc;border-color:#e6db55;color:#555}#screen-meta{background-color:#f1f1f1;border-color:#ccc;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.05);box-shadow:0 1px 3px rgba(0,0,0,0.05)}.contextual-help-tabs a:hover{color:#333}.contextual-help-sidebar,.contextual-help-tabs .active{border-color:#ccc}.contextual-help-tabs .active,.contextual-help-tabs .active a,.contextual-help-tabs .active a:hover{background:#fff;color:#000}.contextual-help-tabs-wrap{border-color:#ccc;background-color:#fff}#screen-options-link-wrap,#contextual-help-link-wrap{background-color:#e3e3e3;border-right:1px solid transparent;border-left:1px solid transparent;border-bottom:1px solid transparent;background-image:-ms-linear-gradient(bottom,#dfdfdf,#f1f1f1);background-image:-moz-linear-gradient(bottom,#dfdfdf,#f1f1f1);background-image:-o-linear-gradient(bottom,#dfdfdf,#f1f1f1);background-image:-webkit-gradient(linear,left bottom,left top,from(#dfdfdf),to(#f1f1f1));background-image:-webkit-linear-gradient(bottom,#dfdfdf,#f1f1f1);background-image:linear-gradient(bottom,#dfdfdf,#f1f1f1)}#screen-meta-links a.show-settings{color:#777}#screen-meta-links a.show-settings:hover{color:#000}#screen-meta-links a.show-settings{background:transparent url(../../../../../wp-admin/images/arrows.png) no-repeat right 3px}#screen-meta-links a.show-settings.screen-meta-active{background:transparent url(../../../../../wp-admin/images/arrows.png) no-repeat right -33px}.login #backtoblog a{color:#464646}#wphead{border-bottom:#dfdfdf 1px solid}#wphead h1 a{color:#464646}#footer a:link,#footer a:visited{text-decoration:none}#footer a:hover{color:#000;text-decoration:underline}.file-error,abbr.required,.widget-control-remove:hover,table.widefat .delete a:hover,table.widefat .trash a:hover,table.widefat .spam a:hover,#dashboard_recent_comments .delete a:hover,#dashboard_recent_comments .trash a:hover #dashboard_recent_comments .spam a:hover{color:#f00}#pass-strength-result{background-color:#eee;border-color:#ddd!important}#pass-strength-result.bad{background-color:#ffb78c;border-color:#ff853c!important}#pass-strength-result.good{background-color:#ffec8b;border-color:#fc0!important}#pass-strength-result.short{background-color:#ffa0a0;border-color:#f04040!important}#pass-strength-result.strong{background-color:#c3ff88;border-color:#8dff1c!important}#titlediv #title{border-color:#ccc}#post-status-info{border-color:#dfdfdf #ccc #ccc;background-color:#eaeaea}.editwidget .widget-inside{border-color:#dfdfdf}#titlediv #title{background-color:#fff}#tTips p#tTips_inside{background-color:#ddd;color:#333}#timestampdiv input,#namediv input,#poststuff .inside .the-tagcloud{border-color:#ddd}#adminmenuback,#adminmenuwrap{background-color:#deece1;border-color:#ccc}#adminmenushadow,#adminmenuback{background-image:url(../../../../../wp-admin/images/menu-shadow.png);background-position:top right;background-repeat:repeat-y}#adminmenu li.wp-menu-separator{background:#dfdfdf;border-color:#cfcfcf}#adminmenu div.separator{border-color:#e1e1e1}#adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,#adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle{background:transparent url(../../../../../wp-admin/images/arrows-dark.png) no-repeat -1px 6px}#adminmenu .wp-has-submenu:hover .wp-menu-toggle,#adminmenu .wp-menu-open .wp-menu-toggle{background:transparent url(../../../../../wp-admin/images/arrows.png) no-repeat -2px 6px}#adminmenu a.menu-top,.folded #adminmenu li.menu-top,#adminmenu .wp-submenu .wp-submenu-head{border-top-color:#eefcf1;border-bottom-color:#dfdfdf}#adminmenu li.wp-menu-open{border-color:#dfdfdf}#adminmenu li.menu-top:hover>a,#adminmenu li.menu-top>a:focus{background-color:#eefcf1;text-shadow:0 1px 0 rgba(255,255,255,0.4)}#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,#adminmenu li.current a.menu-top,.folded #adminmenu li.wp-has-current-submenu,.folded #adminmenu li.current.menu-top,#adminmenu .wp-menu-arrow,#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head{background-color:#777;background-image:-ms-linear-gradient(bottom,#060,#6eb469);background-image:-moz-linear-gradient(bottom,#060,#6eb469);background-image:-o-linear-gradient(bottom,#060,#6eb469);background-image:-webkit-gradient(linear,left bottom,left top,from(#060),to(#6eb469));background-image:-webkit-linear-gradient(bottom,#060,#6eb469);background-image:linear-gradient(bottom,#060,#6eb469)}#adminmenu .wp-menu-arrow div{background-color:#777;background-image:-ms-linear-gradient(right bottom,#060,#6eb469);background-image:-moz-linear-gradient(right bottom,#060,#6eb469);background-image:-o-linear-gradient(right bottom,#060,#6eb469);background-image:-webkit-gradient(linear,right bottom,left top,from(#060),to(#6eb469));background-image:-webkit-linear-gradient(right bottom,#060,#6eb469);background-image:linear-gradient(right bottom,#060,#6eb469)}#adminmenu li.wp-not-current-submenu .wp-menu-arrow{border-top-color:#eefcf1;border-bottom-color:#dfdfdf;background:#eefcf1}#adminmenu li.wp-not-current-submenu .wp-menu-arrow div{background:#eefcf1;border-color:#ccc}.folded #adminmenu li.menu-top li:hover a{background-image:none}#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,#adminmenu li.current a.menu-top,#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head{text-shadow:0 -1px 0 #333;color:#fff;border-top-color:#6eb469;border-bottom-color:#060}.folded #adminmenu li.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{border-top-color:#6eb469;border-bottom-color:#060}#adminmenu .wp-submenu a:hover,#adminmenu .wp-submenu a:focus{background-color:#eefcf1;color:#333}#adminmenu .wp-submenu li.current,#adminmenu .wp-submenu li.current a,#adminmenu .wp-submenu li.current a:hover{color:#333}#adminmenu .wp-submenu ul{background-color:#fff}#adminmenu .wp-submenu-wrap,#adminmenu .wp-submenu ul{border-color:#dfdfdf}#adminmenu .wp-submenu-wrap,.folded #adminmenu .wp-has-current-submenu .wp-submenu-wrap{-moz-box-shadow:2px 2px 5px rgba(0,0,0,0.4);-webkit-box-shadow:2px 2px 5px rgba(0,0,0,0.4);box-shadow:2px 2px 5px rgba(0,0,0,0.4)}#adminmenu .wp-submenu .wp-submenu-head{border-right-color:#dfdfdf;background-color:#deece1}#adminmenu div.wp-submenu{background-color:transparent}#collapse-menu{color:#aaa}#collapse-menu:hover{color:#999}#collapse-button{border-color:#ccc;background-color:#f4f4f4;background-image:-ms-linear-gradient(bottom,#dfdfdf,#fff);background-image:-moz-linear-gradient(bottom,#dfdfdf,#fff);background-image:-o-linear-gradient(bottom,#dfdfdf,#fff);background-image:-webkit-gradient(linear,left bottom,left top,from(#dfdfdf),to(#fff));background-image:-webkit-linear-gradient(bottom,#dfdfdf,#fff);background-image:linear-gradient(bottom,#dfdfdf,#fff)}#collapse-menu:hover #collapse-button{border-color:#aaa}#collapse-button div{background:transparent url(../../../../../wp-admin/images/arrows.png) no-repeat 0 -72px}.folded #collapse-button div{background-position:0 -108px}.icon16.icon-dashboard,#adminmenu .menu-icon-dashboard div.wp-menu-image{background:transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -60px -33px}#adminmenu .menu-icon-dashboard:hover div.wp-menu-image,#adminmenu .menu-icon-dashboard.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-dashboard.current div.wp-menu-image{background:transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -60px -1px}.icon16.icon-post,#adminmenu .menu-icon-post div.wp-menu-image{background:transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -271px -33px}#adminmenu .menu-icon-post:hover div.wp-menu-image,#adminmenu .menu-icon-post.wp-has-current-submenu div.wp-menu-image{background:transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -271px -1px}.icon16.icon-media,#adminmenu .menu-icon-media div.wp-menu-image{background:transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -120px -33px}#adminmenu .menu-icon-media:hover div.wp-menu-image,#adminmenu .menu-icon-media.wp-has-current-submenu div.wp-menu-image{background:transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -120px -1px}.icon16.icon-links,#adminmenu .menu-icon-links div.wp-menu-image{background:transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -90px -33px}#adminmenu .menu-icon-links:hover div.wp-menu-image,#adminmenu .menu-icon-links.wp-has-current-submenu div.wp-menu-image{background:transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -90px -1px}.icon16.icon-page,#adminmenu .menu-icon-page div.wp-menu-image{background:transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -150px -33px}#adminmenu .menu-icon-page:hover div.wp-menu-image,#adminmenu .menu-icon-page.wp-has-current-submenu div.wp-menu-image{background:transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -150px -1px}.icon16.icon-comments,#adminmenu .menu-icon-comments div.wp-menu-image{background:transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -30px -33px}#adminmenu .menu-icon-comments:hover div.wp-menu-image,#adminmenu .menu-icon-comments.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-comments.current div.wp-menu-image{background:transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -30px -1px}.icon16.icon-appearance,#adminmenu .menu-icon-appearance div.wp-menu-image{background:transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll 0 -33px}#adminmenu .menu-icon-appearance:hover div.wp-menu-image,#adminmenu .menu-icon-appearance.wp-has-current-submenu div.wp-menu-image{background:transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll 0 -1px}.icon16.icon-plugins,#adminmenu .menu-icon-plugins div.wp-menu-image{background:transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -180px -33px}#adminmenu .menu-icon-plugins:hover div.wp-menu-image,#adminmenu .menu-icon-plugins.wp-has-current-submenu div.wp-menu-image{background:transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -180px -1px}.icon16.icon-users,#adminmenu .menu-icon-users div.wp-menu-image{background:transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -300px -33px}#adminmenu .menu-icon-users:hover div.wp-menu-image,#adminmenu .menu-icon-users.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-users.current div.wp-menu-image{background:transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -300px -1px}.icon16.icon-tools,#adminmenu .menu-icon-tools div.wp-menu-image{background:transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -210px -33px}#adminmenu .menu-icon-tools:hover div.wp-menu-image,#adminmenu .menu-icon-tools.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-tools.current div.wp-menu-image{background:transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -210px -1px}.icon16.icon-settings,#adminmenu .menu-icon-settings div.wp-menu-image{background:transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -240px -33px}#adminmenu .menu-icon-settings:hover div.wp-menu-image,#adminmenu .menu-icon-settings.wp-has-current-submenu div.wp-menu-image{background:transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -240px -1px}.icon16.icon-site,#adminmenu .menu-icon-site div.wp-menu-image{background:transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -360px -33px}#adminmenu .menu-icon-site:hover div.wp-menu-image,#adminmenu .menu-icon-site.wp-has-current-submenu div.wp-menu-image{background:transparent url('../../../../../wp-admin/images/menu.png?ver=20100531') no-repeat scroll -360px -1px}.icon32.icon-post,#icon-edit,#icon-post{background:transparent url(../../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -552px -5px}.icon32.icon-dashboard,#icon-index{background:transparent url(../../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -137px -5px}.icon32.icon-media,#icon-upload{background:transparent url(../../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -251px -5px}.icon32.icon-links,#icon-link-manager,#icon-link,#icon-link-category{background:transparent url(../../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -190px -5px}.icon32.icon-page,#icon-edit-pages,#icon-page{background:transparent url(../../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -312px -5px}.icon32.icon-comments,#icon-edit-comments{background:transparent url(../../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -72px -5px}.icon32.icon-appearance,#icon-themes{background:transparent url(../../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -11px -5px}.icon32.icon-plugins,#icon-plugins{background:transparent url(../../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -370px -5px}.icon32.icon-users,#icon-users,#icon-profile,#icon-user-edit{background:transparent url(../../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -600px -5px}.icon32.icon-tools,#icon-tools,#icon-admin{background:transparent url(../../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -432px -5px}.icon32.icon-settings,#icon-options-general{background:transparent url(../../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -492px -5px}.icon32.icon-site,#icon-ms-admin{background:transparent url(../../../../../wp-admin/images/icons32.png?ver=20100531) no-repeat -659px -5px}table.diff .diff-deletedline{background-color:#fdd}table.diff .diff-deletedline del{background-color:#f99}table.diff .diff-addedline{background-color:#dfd}table.diff .diff-addedline ins{background-color:#9f9}#att-info{background-color:#e4f2fd}#sidemenu a{background-color:#eefcf1;border-color:#eefcf1;border-bottom-color:#dfdfdf}#sidemenu a.current{background-color:#fff;border-color:#dfdfdf #dfdfdf #fff;color:#d54e21}#replyerror{border-color:#ddd;background-color:#eefcf1}.vim-current,.vim-current th,.vim-current td{background-color:#e4f2fd!important}.star-average,.star.star-rating{background-color:#fc0}div.star.select:hover{background-color:#d00}div.star img{border-left:1px solid #fff;border-right:1px solid #fff}.widefat div.star img{border-left:1px solid #eefcf1;border-right:1px solid #eefcf1}#plugin-information .fyi ul{background-color:#eaf3fa}#plugin-information .fyi h2.mainheader{background-color:#cee1ef}#plugin-information pre,#plugin-information code{background-color:#ededff}#plugin-information pre{border:1px solid #ccc}.inline-edit-row fieldset input[type="text"],.inline-edit-row fieldset textarea,#bulk-titles{border-color:#ddd}.inline-editor div.title{background-color:#eaf3fa}.inline-editor ul.cat-checklist{background-color:#fff;border-color:#ddd}.inline-editor .categories .catshow,.inline-editor .categories .cathide{color:#070}.inline-editor .quick-edit-save{background-color:#f1f1f1}fieldset.inline-edit-col-right .inline-edit-col{border-color:#dfdfdf}.attention{color:#d54e21}.meta-box-sortables .postbox:hover .handlediv{background:transparent url(../../../../../wp-admin/images/arrows.png) no-repeat 6px 7px}.tablenav .tablenav-pages{color:#555}.tablenav .tablenav-pages a{border-color:#e3e3e3;background:#eee url('../../../../../wp-admin/images/menu-bits.gif?ver=20100610') repeat-x scroll left -379px}.tablenav .tablenav-pages a:hover,.tablenav .tablenav-pages a:focus{color:#d54e21}.tablenav .tablenav-pages a.disabled,.tablenav .tablenav-pages a.disabled:hover,.tablenav .tablenav-pages a.disabled:focus{color:#aaa}.tablenav .tablenav-pages .current{background:#dfdfdf;border-color:#d3d3d3}#availablethemes,#availablethemes td{border-color:#ddd}#current-theme img{border-color:#999}#TB_window #TB_title a.tb-theme-preview-link,#TB_window #TB_title a.tb-theme-preview-link:visited{color:#999}#TB_window #TB_title a.tb-theme-preview-link:hover,#TB_window #TB_title a.tb-theme-preview-link:focus{color:#ccc}.misc-pub-section{border-top-color:#fff;border-bottom-color:#dfdfdf}#minor-publishing{border-bottom-color:#dfdfdf}#post-body .misc-pub-section{border-right-color:#eee}.post-com-count span{background-color:#bbb}.form-table .color-palette td{border-color:#fff}.sortable-placeholder{border-color:#bbb;background-color:#eefcf1}#post-body ul.category-tabs li.tabs a,#post-body ul.add-menu-item-tabs li.tabs a,body.press-this ul.category-tabs li.tabs a{color:#333}.view-switch #view-switch-list{background:transparent url(../../../../../wp-admin/images/list.png) no-repeat 0 0}.view-switch .current #view-switch-list{background:transparent url(../../../../../wp-admin/images/list.png) no-repeat -40px 0}.view-switch #view-switch-excerpt{background:transparent url(../../../../../wp-admin/images/list.png) no-repeat -20px 0}.view-switch .current #view-switch-excerpt{background:transparent url(../../../../../wp-admin/images/list.png) no-repeat -60px 0}#header-logo{background:transparent url(../../../../../wp-admin/images/wp-logo.png?ver=20110504) no-repeat scroll center center}.popular-tags,.feature-filter{background-color:#fff;border-color:#dfdfdf}#theme-information .action-button{border-top-color:#dfdfdf}.theme-listing br.line{border-bottom-color:#ccc}div.widgets-sortables,#widgets-left .inactive{background-color:#fcfcfc;border-color:#dfdfdf}#available-widgets .widget-holder{background-color:#fcfcfc;border-color:#dfdfdf}#available-widgets .widget-description{color:#555}.sidebar-name{color:#464646;text-shadow:#fff 0 1px 0;border-color:#dfdfdf;-moz-box-shadow:inset 0 1px 0 #fff;-webkit-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff}.sidebar-name:hover,#removing-widget{color:#d54e21}#removing-widget span{color:black}.sidebar-name-arrow{background:transparent url(../../../../../wp-admin/images/arrows.png) no-repeat 5px 9px}.sidebar-name:hover .sidebar-name-arrow{background:transparent url(../../../../../wp-admin/images/arrows-dark.png) no-repeat 5px 9px}.in-widget-title{color:#606060}.deleting .widget-title *{color:#aaa}.imgedit-menu div{border-color:#d5d5d5;background-color:#f1f1f1}.imgedit-menu div:hover{border-color:#c1c1c1;background-color:#eaeaea}.imgedit-menu div.disabled{border-color:#ccc;background-color:#ddd;filter:alpha(opacity=50);opacity:.5}#dashboard_recent_comments div.undo{border-top-color:#dfdfdf}.comment-ays,.comment-ays th{border-color:#ddd}.comment-ays th{background-color:#f1f1f1}#menu-management .menu-edit{border-color:#dfdfdf}#post-body{background:#fff;border-top-color:#fff;border-bottom-color:#dfdfdf}#nav-menu-header{border-bottom-color:#dfdfdf}#nav-menu-footer{border-top-color:#fff}#menu-management .nav-tabs-arrow a{color:#c1c1c1}#menu-management .nav-tabs-arrow a:hover{color:#d54e21}#menu-management .nav-tabs-arrow a:active{color:#464646}#menu-management .nav-tab-active{border-color:#dfdfdf}#menu-management .nav-tab{background:#fbfbfb;border-color:#dfdfdf}.js .input-with-default-title{color:#aaa}#cancel-save{color:#f00}#cancel-save:hover{background-color:#f00;color:#fff}.list-container{border-color:#dfdfdf}.menu-item-handle{border-color:#dfdfdf}.menu li.deleting .menu-item-handle{background-color:#f66;text-shadow:#ccc}.item-type{color:#999}.item-controls .menu-item-delete:hover{color:#f00}.item-edit{background:transparent url(../../../../../wp-admin/images/arrows.png) no-repeat 8px 10px;border-bottom-color:#eee}.item-edit:hover{background:transparent url(../../../../../wp-admin/images/arrows-dark.png) no-repeat 8px 10px}.menu-item-settings{border-color:#dfdfdf}.link-to-original{color:#777;border-color:#dfdfdf}#cancel-save:hover{color:#fff!important}#update-menu-item{color:#fff!important}#update-menu-item:hover,#update-menu-item:active,#update-menu-item:focus{color:#eaf2fa!important;border-color:#13455b!important}.submitbox .submitcancel{color:#070;border-bottom-color:#070}.submitbox .submitcancel:hover{background:#070;color:#fff}#menu-management .nav-tab-active,.menu-item-handle,.menu-item-settings{-moz-box-shadow:inset 0 1px 0 #fff;-webkit-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff}#menu-management .nav-tab-active{background:#eefcf1;border-bottom-color:#eefcf1}#upload-form label{color:#777}.fullscreen-overlay{background:#fff}.wp-fullscreen-focus #wp-fullscreen-title,.wp-fullscreen-focus #wp-fullscreen-container{border-color:#ccc}#fullscreen-topbar{border-bottom-color:#dfdfdf}.about-wrap h1{color:#333;text-shadow:1px 1px 1px white}.about-text{color:#777}.wp-badge{color:#fff;text-shadow:0 -1px 0 #0c3d57;border-color:#2b5173;-moz-box-shadow:inset 0 0 0 1px #5f8ca8;-webkit-box-shadow:inset 0 0 0 1px #5f8ca8;box-shadow:inset 0 0 0 1px #5f8ca8;background-color:#378aac;background-image:url(../../../../../wp-admin/images/wp-badge.png);background-image:url(../../../../../wp-admin/images/wp-badge.png),-ms-linear-gradient(top,#378aac,#165d84);background-image:url(../../../../../wp-admin/images/wp-badge.png),-moz-linear-gradient(top,#378aac,#165d84);background-image:url(../../../../../wp-admin/images/wp-badge.png),-o-linear-gradient(top,#378aac,#165d84);background-image:url(../../../../../wp-admin/images/wp-badge.png),-webkit-gradient(linear,left top,left bottom,from(#378aac),to(#165d84));background-image:url(../../../../../wp-admin/images/wp-badge.png),-webkit-linear-gradient(top,#378aac,#165d84);background-image:url(../../../../../wp-admin/images/wp-badge.png),linear-gradient(top,#378aac,#165d84)}.about-wrap h2 .nav-tab{color:#070}.about-wrap h2 .nav-tab:hover{color:#d54e21}.about-wrap h2 .nav-tab-active,.about-wrap h2 .nav-tab-active:hover{color:#333}.about-wrap h2 .nav-tab-active{text-shadow:1px 1px 1px white;color:#464646}.about-wrap h3{color:#333;text-shadow:1px 1px 1px white}.about-wrap .feature-section h4{color:#464646}.about-wrap .feature-section img{background:#eefcf1;border-color:#dfdfdf;-moz-box-shadow:0 0 6px rgba(0,0,0,0.3);-webkit-box-shadow:0 0 6px rgba(0,0,0,0.3);box-shadow:0 0 6px rgba(0,0,0,0.3)}.about-wrap h4.wp-people-group{text-shadow:1px 1px 1px white}.about-wrap li.wp-person img.gravatar{-moz-box-shadow:0 0 4px rgba(0,0,0,0.4);-webkit-box-shadow:0 0 4px rgba(0,0,0,0.4);box-shadow:0 0 4px rgba(0,0,0,0.4)}.about-wrap li.wp-person .title{color:#464646;text-shadow:1px 1px 1px white}.freedoms-php .about-wrap ol li{color:#999}.freedoms-php .about-wrap ol p{color:#464646}.rtl .bar{border-right-color:none;border-left-color:#99d}.rtl .post-com-count{background-image:url(../../../../../wp-admin/images/bubble_bg-rtl.gif)}.rtl #screen-meta-links a.show-settings{background-position:left 3px}.rtl #screen-meta-links a.show-settings.screen-meta-active{background-position:left -33px}.rtl #adminmenushadow,.rtl #adminmenuback{background-image:url(../../../../../wp-admin/images/menu-shadow-rtl.png);background-position:top left}.rtl #adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,.rtl #adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle{background:transparent url(../../../../../wp-admin/images/arrows-dark.png) no-repeat 8px 6px}.rtl #adminmenu .wp-has-submenu:hover .wp-menu-toggle,.rtl #adminmenu .wp-menu-open .wp-menu-toggle{background:transparent url(../../../../../wp-admin/images/arrows.png) no-repeat 8px 6px}.rtl #adminmenu .wp-submenu .wp-submenu-head{border-right-color:none;border-left-color:#dfdfdf}.rtl .folded #adminmenu .wp-submenu-wrap{-moz-box-shadow:-2px 2px 5px rgba(0,0,0,0.4);-webkit-box-shadow:-2px 2px 5px rgba(0,0,0,0.4);box-shadow:-2px 2px 5px rgba(0,0,0,0.4)}.rtl #collapse-button div{background-position:0 -108px}.rtl .folded #collapse-button div{background-position:0 -72px}.rtl .meta-box-sortables .postbox:hover .handlediv{background:transparent url(../../../../../wp-admin/images/arrows.png) no-repeat 6px 7px}.rtl .tablenav .tablenav-pages a{border-color:#e3e3e3;background:#eee url('../../../../../wp-admin/images/menu-bits-rtl.gif?ver=20100610') repeat-x scroll right -379px}.rtl #post-body .misc-pub-section{border-right-color:none;border-left-color:#eee}.rtl .sidebar-name-arrow{background:transparent url(../../../../../wp-admin/images/arrows.png) no-repeat 5px 9px}.rtl .sidebar-name:hover .sidebar-name-arrow{background:transparent url(../../../../../wp-admin/images/arrows-dark.png) no-repeat 5px 9px}
|
1 |
+
html,.wp-dialog{background-color:#fff}textarea,input[type="text"],input[type="password"],input[type="file"],input[type="button"],input[type="submit"],input[type="reset"],input[type="email"],input[type="number"],input[type="search"],input[type="tel"],input[type="url"],select{border-color:#dfdfdf;background-color:#fff}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="file"]:focus,input[type="button"]:focus,input[type="submit"]:focus,input[type="reset"]:focus,input[type="email"]:focus,input[type="number"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="url"]:focus,select:focus{border-color:#bbb}kbd,code{background:#eaeaea}input[readonly]{background-color:#eee}.find-box-search{border-color:#dfdfdf;background-color:#f1f1f1}.find-box{background-color:#f1f1f1}.find-box-inside{background-color:#fff}a.page-numbers:hover{border-color:#999}body,#wpbody,.form-table .pre{color:#333}body>#upload-menu{border-bottom-color:#fff}#postcustomstuff table,#your-profile fieldset,#rightnow,div.dashboard-widget,#dashboard-widgets p.dashboard-widget-links{border-color:#ccc}#poststuff .inside label.spam,#poststuff .inside label.deleted{color:red}#poststuff .inside label.waiting{color:orange}#poststuff .inside label.approved{color:green}#postcustomstuff table{border-color:#dfdfdf;background-color:#f9f9f9}#postcustomstuff thead th{background-color:#f1f1f1}.widefat{border-color:#dfdfdf;background-color:#eefcf1}textarea.widefat{background-color:#fff}div.dashboard-widget-error{background-color:#c43}div.dashboard-widget-notice{background-color:#cfe1ef}div.dashboard-widget-submit{border-top-color:#ccc}div.tabs-panel,.wp-tab-panel,ul.category-tabs li.tabs,ul.add-menu-item-tabs li.tabs,.wp-tab-active{border-color:#dfdfdf;background-color:#fff}ul.category-tabs li.tabs,ul.add-menu-item-tabs li.tabs,.wp-tab-active{background-color:#fff}input.disabled,textarea.disabled{background-color:#ccc}#plugin-information .action-button a,#plugin-information .action-button a:hover,#plugin-information .action-button a:visited{color:#fff}.widget .widget-top,.postbox h3,.stuffbox h3,.widefat thead tr th,.widefat tfoot tr th,h3.dashboard-widget-title,h3.dashboard-widget-title span,h3.dashboard-widget-title small,.find-box-head,.sidebar-name,#nav-menu-header,#nav-menu-footer,.menu-item-handle,#fullscreen-topbar{background-color:#f1f1f1;background-image:-ms-linear-gradient(top,#eefcf1,#deece1);background-image:-moz-linear-gradient(top,#eefcf1,#deece1);background-image:-o-linear-gradient(top,#eefcf1,#deece1);background-image:-webkit-gradient(linear,left top,left bottom,from(#eefcf1),to(#deece1));background-image:-webkit-linear-gradient(top,#eefcf1,#deece1);background-image:linear-gradient(top,#eefcf1,#deece1)}.widget .widget-top,.postbox h3,.stuffbox h3{border-bottom-color:#dfdfdf;text-shadow:#fff 0 1px 0;-moz-box-shadow:0 1px 0 #fff;-webkit-box-shadow:0 1px 0 #fff;box-shadow:0 1px 0 #fff}.form-table th,.form-wrap label{color:#222;text-shadow:#fff 0 1px 0}.description,.form-wrap p{color:#666}strong .post-com-count span{background-color:#070}.sorthelper{background-color:#ccf3fa}.ac_match,.subsubsub a.current{color:#000}.wrap h2{color:#464646}.wrap .add-new-h2{background:#f1f1f1}.subtitle{color:#777}.ac_over{background-color:#f0f0b8}.ac_results{background-color:#fff;border-color:#6eb469}.ac_results li{color:#101010}.alternate,.alt{background-color:#fefefe}.available-theme a.screenshot{background-color:#f1f1f1;border-color:#ddd}.bar{background-color:#e8e8e8;border-right-color:#99d}#media-upload,#media-upload .media-item .slidetoggle{background:#fff}#media-upload .slidetoggle{border-top-color:#dfdfdf}div.error,.login #login_error{background-color:#ffebe8;border-color:#c00}div.error a{color:#c00}.form-invalid{background-color:#ffebe8!important}.form-invalid input,.form-invalid select{border-color:#c00!important}.submit{border-color:#dfdfdf}.highlight{background-color:#e4f2fd;color:#000}.howto,.nonessential,#edit-slug-box,.form-input-tip,.subsubsub{color:#666}#wpbody-content #media-items .describe{border-top-color:#dfdfdf}.media-upload-form label.form-help,td.help{color:#9a9a9a}.post-com-count{color:#fff}.post-com-count span{background-color:#bbb;color:#fff}.post-com-count:hover span{background-color:#d54e21}.quicktags,.search{background-color:#ccc;color:#000}.side-info h5{border-bottom-color:#dadada}.side-info ul{color:#666}.button,.button-secondary,.submit input,input[type=button],input[type=submit]{border-color:#bbb;color:#464646}.button:hover,.button-secondary:hover,.submit input:hover,input[type=button]:hover,input[type=submit]:hover{color:#000;border-color:#666}.button,.submit input,.button-secondary{background-color:#f2f2f2;background-repeat:repeat-x;background-attachment:scroll;background-position:left top;text-shadow:rgba(255,255,255,1) 0 1px 0}.button:active,.submit input:active,.button-secondary:active{background-color:#eee;background-repeat:repeat-x;background-attachment:scroll;background-position:left top}input.button-primary,button.button-primary,a.button-primary{border-color:#298cba;font-weight:bold;color:#fff;background-image:url('../images/button-grad.png');background-color:#070;background-repeat:repeat-x;background-attachment:scroll;background-position:left top;text-shadow:rgba(0,0,0,0.3) 0 -1px 0}input.button-primary:active,button.button-primary:active,a.button-primary:active{background-image:url('../images/button-grad-active.png');background-color:#070;background-repeat:repeat-x;background-attachment:scroll;background-position:left top;color:#eaf2fa}input.button-primary:hover,button.button-primary:hover,a.button-primary:hover,a.button-primary:focus,a.button-primary:active{border-color:#13455b;color:#eaf2fa}.button-disabled,.button[disabled],.button:disabled,.button-secondary[disabled],.button-secondary:disabled,a.button.disabled{color:#aaa!important;border-color:#ddd!important}.button-primary-disabled,.button-primary[disabled],.button-primary:disabled{color:#9fd0d5!important;background:#298cba!important}a:hover,a:active,a:focus{color:#d54e21}#adminmenu a:hover,#adminmenu li.menu-top>a:focus,#adminmenu ul.wp-submenu a:hover,#the-comment-list .comment a:hover,#rightnow a:hover,#media-upload a.del-link:hover,div.dashboard-widget-submit input:hover,.subsubsub a:hover,.subsubsub a.current:hover,.ui-tabs-nav a:hover,.plugins .inactive a:hover,#all-plugins-table .plugins .inactive a:hover,#search-plugins-table .plugins .inactive a:hover{color:#d54e21}#the-comment-list .comment-item,#dashboard-widgets #dashboard_quick_press form p.submit{border-color:#dfdfdf}#side-sortables .category-tabs .tabs a,#side-sortables .add-menu-item-tabs .tabs a,.wp-tab-bar .wp-tab-active a{color:#333}#rightnow .rbutton{background-color:#ebebeb;color:#264761}.submitbox .submit{background-color:#464646;color:#ccc}.plugins a.delete:hover,#all-plugins-table .plugins a.delete:hover,#search-plugins-table .plugins a.delete:hover,.submitbox .submitdelete{color:#f00;border-bottom-color:#f00}.submitbox .submitdelete:hover,#media-items a.delete:hover{color:#fff;background-color:#f00;border-bottom-color:#f00}#normal-sortables .submitbox .submitdelete:hover{color:#000;background-color:#f00;border-bottom-color:#f00}.tablenav .dots{border-color:transparent}.tablenav .next,.tablenav .prev{border-color:transparent;color:#070}.tablenav .next:hover,.tablenav .prev:hover{border-color:transparent;color:#d54e21}div.updated,.login .message{background-color:#ffffe0;border-color:#e6db55}.update-message{color:#000}a.page-numbers{border-bottom-color:#b8d3e2}.commentlist li{border-bottom-color:#ccc}.widefat td,.widefat th{border-top-color:#fff;border-bottom-color:#dfdfdf}.widefat th{text-shadow:rgba(255,255,255,0.8) 0 1px 0}.widefat td{color:#555}.widefat p,.widefat ol,.widefat ul{color:#333}.widefat thead tr th,.widefat tfoot tr th,h3.dashboard-widget-title,h3.dashboard-widget-title span,h3.dashboard-widget-title small,.find-box-head{color:#333}th.sortable a:hover,th.sortable a:active,th.sortable a:focus{color:#333}h3.dashboard-widget-title small a{color:#d7d7d7}h3.dashboard-widget-title small a:hover{color:#fff}a,#adminmenu a,#the-comment-list p.comment-author strong a,#media-upload a.del-link,#media-items a.delete,.plugins a.delete,.ui-tabs-nav a{color:#070}#adminmenu .awaiting-mod,#adminmenu .update-plugins,#sidemenu a .update-plugins,#rightnow .reallynow{background-color:#464646;color:#fff;-moz-box-shadow:rgba(255,255,255,0.5) 0 1px 0;-khtml-box-shadow:rgba(255,255,255,0.5) 0 1px 0;-webkit-box-shadow:rgba(255,255,255,0.5) 0 1px 0;box-shadow:rgba(255,255,255,0.5) 0 1px 0}#plugin-information .action-button{background-color:#d54e21;color:#fff}#adminmenu li.current a .awaiting-mod,#adminmenu li a.wp-has-current-submenu .update-plugins{background-color:#464646;color:#fff;-moz-box-shadow:rgba(255,255,255,0.5) 0 1px 0;-khtml-box-shadow:rgba(255,255,255,0.5) 0 1px 0;-webkit-box-shadow:rgba(255,255,255,0.5) 0 1px 0;box-shadow:rgba(255,255,255,0.5) 0 1px 0}div#media-upload-header,div#plugin-information-header{background-color:#eefcf1;border-bottom-color:#dfdfdf}#currenttheme img{border-color:#666}#dashboard_secondary div.dashboard-widget-content ul li a{background-color:#eefcf1}input.readonly,textarea.readonly{background-color:#ddd}#editable-post-name{background-color:#fffbcc}#edit-slug-box strong,.tablenav .displaying-num,#submitted-on,.submitted-on{color:#777}.login #nav a,.login #backtoblog a{color:#070!important}.login #nav a:hover,.login #backtoblog a:hover{color:#d54e21!important}#footer{color:#777;border-color:#dfdfdf}#media-items,.imgedit-group,.media-item{border-color:#dfdfdf}.checkbox,.side-info,.plugins tr,#your-profile #rich_editing{background-color:#fcfcfc}.plugins .inactive,.plugins .inactive th,.plugins .inactive td,tr.inactive+tr.plugin-update-tr .plugin-update{background-color:#f4f4f4}.plugin-update-tr .update-message{background-color:#fffbe4;border-color:#dfdfdf}.plugins .active,.plugins .active th,.plugins .active td{color:#000}.plugins .inactive a{color:#579}#the-comment-list tr.undo,#the-comment-list div.undo{background-color:#f4f4f4}#the-comment-list .unapproved{background-color:#ffffe0}#the-comment-list .approve a{color:#006505}#the-comment-list .unapprove a{color:#d98500}table.widefat span.delete a,table.widefat span.trash a,table.widefat span.spam a,#dashboard_recent_comments .delete a,#dashboard_recent_comments .trash a,#dashboard_recent_comments .spam a{color:#bc0b0b}.welcome-panel{border-color:#dfdfdf}.welcome-panel p{color:#777}.welcome-panel-column p{color:#464646}.welcome-panel .welcome-panel-close{background:#eee;text-shadow:1px 1px 1px #eee}.welcome-panel h3{text-shadow:1px 1px 1px white}.widget,#widget-list .widget-top,.postbox,#titlediv,#poststuff .postarea,.stuffbox{border-color:#dfdfdf;-moz-box-shadow:inset 0 1px 0 #fff;-webkit-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff;-moz-border-radius:3px;-khtml-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.widget,#widget-list .widget-top,.postbox,.menu-item-settings{background-color:#eefcf1;background-image:-ms-linear-gradient(top,#eefcf1,#deece1);background-image:-moz-linear-gradient(top,#eefcf1,#deece1);background-image:-o-linear-gradient(top,#eefcf1,#deece1);background-image:-webkit-gradient(linear,left top,left bottom,from(#eefcf1),to(#deece1));background-image:-webkit-linear-gradient(top,#eefcf1,#deece1);background-image:linear-gradient(top,#eefcf1,#deece1)}.postbox h3{color:#464646}.widget .widget-top{color:#222}.sidebar-name:hover h3,.postbox h3:hover{color:#000}#quicktags #ed_link{color:#00f}#rightnow .youhave{background-color:#f0f6fb}#rightnow a{color:#448abd}.tagchecklist span a,#bulk-titles div a{background-repeat:no-repeat}.tagchecklist span a:hover,#bulk-titles div a:hover{background-repeat:no-repeat;background-position:-10px 0}#update-nag,.update-nag{background-color:#fffbcc;border-color:#e6db55;color:#555}#screen-meta{background-color:#f1f1f1;border-color:#ccc;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.05);box-shadow:0 1px 3px rgba(0,0,0,0.05)}.contextual-help-tabs a:hover{color:#333}.contextual-help-sidebar,.contextual-help-tabs .active{border-color:#ccc}.contextual-help-tabs .active,.contextual-help-tabs .active a,.contextual-help-tabs .active a:hover{background:#fff;color:#000}.contextual-help-tabs-wrap{border-color:#ccc;background-color:#fff}#screen-options-link-wrap,#contextual-help-link-wrap{background-color:#e3e3e3;border-right:1px solid transparent;border-left:1px solid transparent;border-bottom:1px solid transparent;background-image:-ms-linear-gradient(bottom,#dfdfdf,#f1f1f1);background-image:-moz-linear-gradient(bottom,#dfdfdf,#f1f1f1);background-image:-o-linear-gradient(bottom,#dfdfdf,#f1f1f1);background-image:-webkit-gradient(linear,left bottom,left top,from(#dfdfdf),to(#f1f1f1));background-image:-webkit-linear-gradient(bottom,#dfdfdf,#f1f1f1);background-image:linear-gradient(bottom,#dfdfdf,#f1f1f1)}#screen-meta-links a.show-settings{color:#777}#screen-meta-links a.show-settings:hover{color:#000}#screen-meta-links a.show-settings{background-color:transparent;background-repeat:no-repeat;background-position:right 3px}#screen-meta-links a.show-settings.screen-meta-active{background-color:transparent;background-repeat:no-repeat;background-position:right -33px}.login #backtoblog a{color:#464646}#wphead{border-bottom:#dfdfdf 1px solid}#wphead h1 a{color:#464646}#footer a:link,#footer a:visited{text-decoration:none}#footer a:hover{color:#000;text-decoration:underline}.file-error,abbr.required,.widget-control-remove:hover,table.widefat .delete a:hover,table.widefat .trash a:hover,table.widefat .spam a:hover,#dashboard_recent_comments .delete a:hover,#dashboard_recent_comments .trash a:hover #dashboard_recent_comments .spam a:hover{color:#f00}#pass-strength-result{background-color:#eee;border-color:#ddd!important}#pass-strength-result.bad{background-color:#ffb78c;border-color:#ff853c!important}#pass-strength-result.good{background-color:#ffec8b;border-color:#fc0!important}#pass-strength-result.short{background-color:#ffa0a0;border-color:#f04040!important}#pass-strength-result.strong{background-color:#c3ff88;border-color:#8dff1c!important}#titlediv #title{border-color:#ccc}#post-status-info{border-color:#dfdfdf #ccc #ccc;background-color:#eaeaea}.editwidget .widget-inside{border-color:#dfdfdf}#titlediv #title{background-color:#fff}#tTips p#tTips_inside{background-color:#ddd;color:#333}#timestampdiv input,#namediv input,#poststuff .inside .the-tagcloud{border-color:#ddd}#adminmenuback,#adminmenuwrap{background-color:#deece1;border-color:#ccc}#adminmenushadow,#adminmenuback{background-position:top right;background-repeat:repeat-y}#adminmenu li.wp-menu-separator{background:#dfdfdf;border-color:#cfcfcf}#adminmenu div.separator{border-color:#e1e1e1}#adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,#adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle{background-color:transparent;background-repeat:no-repeat;background-position:-1px 6px}#adminmenu .wp-has-submenu:hover .wp-menu-toggle,#adminmenu .wp-menu-open .wp-menu-toggle{background-color:transparent;background-repeat:no-repeat;background-position:-2px 6px}#adminmenu a.menu-top,.folded #adminmenu li.menu-top,#adminmenu .wp-submenu .wp-submenu-head{border-top-color:#eefcf1;border-bottom-color:#dfdfdf}#adminmenu li.wp-menu-open{border-color:#dfdfdf}#adminmenu li.menu-top:hover>a,#adminmenu li.menu-top.focused>a,#adminmenu li.menu-top>a:focus{background-color:#eefcf1;text-shadow:0 1px 0 rgba(255,255,255,0.4)}#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,#adminmenu li.current a.menu-top,.folded #adminmenu li.wp-has-current-submenu,.folded #adminmenu li.current.menu-top,#adminmenu .wp-menu-arrow,#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head{background-color:#777;background-image:-ms-linear-gradient(bottom,#060,#6eb469);background-image:-moz-linear-gradient(bottom,#060,#6eb469);background-image:-o-linear-gradient(bottom,#060,#6eb469);background-image:-webkit-gradient(linear,left bottom,left top,from(#060),to(#6eb469));background-image:-webkit-linear-gradient(bottom,#060,#6eb469);background-image:linear-gradient(bottom,#060,#6eb469)}#adminmenu .wp-menu-arrow div{background-color:#777;background-image:-ms-linear-gradient(right bottom,#060,#6eb469);background-image:-moz-linear-gradient(right bottom,#060,#6eb469);background-image:-o-linear-gradient(right bottom,#060,#6eb469);background-image:-webkit-gradient(linear,right bottom,left top,from(#060),to(#6eb469));background-image:-webkit-linear-gradient(right bottom,#060,#6eb469);background-image:linear-gradient(right bottom,#060,#6eb469)}#adminmenu li.wp-not-current-submenu .wp-menu-arrow{border-top-color:#eefcf1;border-bottom-color:#dfdfdf;background:#eefcf1}#adminmenu li.wp-not-current-submenu .wp-menu-arrow div{background:#eefcf1;border-color:#ccc}.folded #adminmenu li.menu-top li:hover a{background-image:none}#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,#adminmenu li.current a.menu-top,#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head{text-shadow:0 -1px 0 #333;color:#fff;border-top-color:#6eb469;border-bottom-color:#060}.folded #adminmenu li.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{border-top-color:#6eb469;border-bottom-color:#060}#adminmenu .wp-submenu a:hover,#adminmenu .wp-submenu a:focus{background-color:#eefcf1;color:#333}#adminmenu .wp-submenu li.current,#adminmenu .wp-submenu li.current a,#adminmenu .wp-submenu li.current a:hover{color:#333}#adminmenu .wp-submenu ul{background-color:#fff}#adminmenu .wp-submenu-wrap,#adminmenu .wp-submenu ul{border-color:#dfdfdf}#adminmenu .wp-submenu-wrap,.folded #adminmenu .wp-has-current-submenu .wp-submenu-wrap{-moz-box-shadow:2px 2px 5px rgba(0,0,0,0.4);-webkit-box-shadow:2px 2px 5px rgba(0,0,0,0.4);box-shadow:2px 2px 5px rgba(0,0,0,0.4)}#adminmenu .wp-submenu .wp-submenu-head{border-right-color:#dfdfdf;background-color:#deece1}#adminmenu div.wp-submenu{background-color:transparent}#collapse-menu{color:#aaa}#collapse-menu:hover{color:#999}#collapse-button{border-color:#ccc;background-color:#f4f4f4;background-image:-ms-linear-gradient(bottom,#dfdfdf,#fff);background-image:-moz-linear-gradient(bottom,#dfdfdf,#fff);background-image:-o-linear-gradient(bottom,#dfdfdf,#fff);background-image:-webkit-gradient(linear,left bottom,left top,from(#dfdfdf),to(#fff));background-image:-webkit-linear-gradient(bottom,#dfdfdf,#fff);background-image:linear-gradient(bottom,#dfdfdf,#fff)}#collapse-menu:hover #collapse-button{border-color:#aaa}#collapse-button div{background-color:transparent;background-repeat:no-repeat;background-position:0 -72px}.folded #collapse-button div{background-position:0 -108px}.icon16.icon-dashboard,#adminmenu .menu-icon-dashboard div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-60px -33px}#adminmenu .menu-icon-dashboard:hover div.wp-menu-image,#adminmenu .menu-icon-dashboard.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-dashboard.current div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-60px -1px}.icon16.icon-post,#adminmenu .menu-icon-post div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-271px -33px}#adminmenu .menu-icon-post:hover div.wp-menu-image,#adminmenu .menu-icon-post.wp-has-current-submenu div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-271px -31px}.icon16.icon-media,#adminmenu .menu-icon-media div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-120px -33px}#adminmenu .menu-icon-media:hover div.wp-menu-image,#adminmenu .menu-icon-media.wp-has-current-submenu div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-120px -1px}.icon16.icon-links,#adminmenu .menu-icon-links div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-90px -33px}#adminmenu .menu-icon-links:hover div.wp-menu-image,#adminmenu .menu-icon-links.wp-has-current-submenu div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-90px -1px}.icon16.icon-page,#adminmenu .menu-icon-page div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-150px -33px}#adminmenu .menu-icon-page:hover div.wp-menu-image,#adminmenu .menu-icon-page.wp-has-current-submenu div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-150px -1px}.icon16.icon-comments,#adminmenu .menu-icon-comments div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-30px -33px}#adminmenu .menu-icon-comments:hover div.wp-menu-image,#adminmenu .menu-icon-comments.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-comments.current div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-30px -1px}.icon16.icon-appearance,#adminmenu .menu-icon-appearance div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:0 -33px}#adminmenu .menu-icon-appearance:hover div.wp-menu-image,#adminmenu .menu-icon-appearance.wp-has-current-submenu div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:0 -1px}.icon16.icon-plugins,#adminmenu .menu-icon-plugins div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-180px -33px}#adminmenu .menu-icon-plugins:hover div.wp-menu-image,#adminmenu .menu-icon-plugins.wp-has-current-submenu div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-180px -1px}.icon16.icon-users,#adminmenu .menu-icon-users div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-300px -33px}#adminmenu .menu-icon-users:hover div.wp-menu-image,#adminmenu .menu-icon-users.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-users.current div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-300px -1px}.icon16.icon-tools,#adminmenu .menu-icon-tools div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-210px -33px}#adminmenu .menu-icon-tools:hover div.wp-menu-image,#adminmenu .menu-icon-tools.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-tools.current div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-210px -1px}.icon16.icon-settings,#adminmenu .menu-icon-settings div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-240px -33px}#adminmenu .menu-icon-settings:hover div.wp-menu-image,#adminmenu .menu-icon-settings.wp-has-current-submenu div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-240px -1px}.icon16.icon-site,#adminmenu .menu-icon-site div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-360px -33px}#adminmenu .menu-icon-site:hover div.wp-menu-image,#adminmenu .menu-icon-site.wp-has-current-submenu div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-360px -1px}.icon32.icon-post,#icon-edit,#icon-post{background-color:transparent;background-repeat:no-repeat;background-position:-552px -5px}.icon32.icon-dashboard,#icon-index{background-color:transparent;background-repeat:no-repeat;background-position:-137px -5px}.icon32.icon-media,#icon-upload{background-color:transparent;background-repeat:no-repeat;background-position:-251px -5px}.icon32.icon-links,#icon-link-manager,#icon-link,#icon-link-category{background-color:transparent;background-repeat:no-repeat;background-position:-190px -5px}.icon32.icon-page,#icon-edit-pages,#icon-page{background-color:transparent;background-repeat:no-repeat;background-position:-312px -5px}.icon32.icon-comments,#icon-edit-comments{background-color:transparent;background-repeat:no-repeat;background-position:-72px -5px}.icon32.icon-appearance,#icon-themes{background-color:transparent;background-repeat:no-repeat;background-position:-11px -5px}.icon32.icon-plugins,#icon-plugins{background-color:transparent;background-repeat:no-repeat;background-position:-370px -5px}.icon32.icon-users,#icon-users,#icon-profile,#icon-user-edit{background-color:transparent;background-repeat:no-repeat;background-position:-600px -5px}.icon32.icon-tools,#icon-tools,#icon-admin{background-color:transparent;background-repeat:no-repeat;background-position:-432px -5px}.icon32.icon-settings,#icon-options-general{background-color:transparent;background-repeat:no-repeat;background-position:-492px -5px}.icon32.icon-site,#icon-ms-admin{background-color:transparent;background-repeat:no-repeat;background-position:-659px -5px}table.diff .diff-deletedline{background-color:#fdd}table.diff .diff-deletedline del{background-color:#f99}table.diff .diff-addedline{background-color:#dfd}table.diff .diff-addedline ins{background-color:#9f9}#att-info{background-color:#e4f2fd}#sidemenu a{background-color:#eefcf1;border-color:#eefcf1;border-bottom-color:#dfdfdf}#sidemenu a.current{background-color:#fff;border-color:#dfdfdf #dfdfdf #fff;color:#d54e21}#replyerror{border-color:#ddd;background-color:#eefcf1}.vim-current,.vim-current th,.vim-current td{background-color:#e4f2fd!important}.star-average,.star.star-rating{background-color:#fc0}div.star.select:hover{background-color:#d00}div.star img{border-left:1px solid #fff;border-right:1px solid #fff}.widefat div.star img{border-left:1px solid #eefcf1;border-right:1px solid #eefcf1}#plugin-information .fyi ul{background-color:#eaf3fa}#plugin-information .fyi h2.mainheader{background-color:#cee1ef}#plugin-information pre,#plugin-information code{background-color:#ededff}#plugin-information pre{border:1px solid #ccc}.inline-edit-row fieldset input[type="text"],.inline-edit-row fieldset textarea,#bulk-titles{border-color:#ddd}.inline-editor div.title{background-color:#eaf3fa}.inline-editor ul.cat-checklist{background-color:#fff;border-color:#ddd}.inline-editor .categories .catshow,.inline-editor .categories .cathide{color:#070}.inline-editor .quick-edit-save{background-color:#f1f1f1}fieldset.inline-edit-col-right .inline-edit-col{border-color:#dfdfdf}.attention{color:#d54e21}.meta-box-sortables .postbox:hover .handlediv{background-color:transparent;background-repeat:no-repeat;background-position:6px 7px}.tablenav .tablenav-pages{color:#555}.tablenav .tablenav-pages a{border-color:#e3e3e3;background-color:#eee;background-repeat:repeat-x;background-attachment:scroll;background-position:left -379px}.tablenav .tablenav-pages a:hover,.tablenav .tablenav-pages a:focus{color:#d54e21}.tablenav .tablenav-pages a.disabled,.tablenav .tablenav-pages a.disabled:hover,.tablenav .tablenav-pages a.disabled:focus{color:#aaa}.tablenav .tablenav-pages .current{background:#dfdfdf;border-color:#d3d3d3}#availablethemes,#availablethemes td{border-color:#ddd}#current-theme img{border-color:#999}#TB_window #TB_title a.tb-theme-preview-link,#TB_window #TB_title a.tb-theme-preview-link:visited{color:#999}#TB_window #TB_title a.tb-theme-preview-link:hover,#TB_window #TB_title a.tb-theme-preview-link:focus{color:#ccc}.misc-pub-section{border-top-color:#fff;border-bottom-color:#dfdfdf}#minor-publishing{border-bottom-color:#dfdfdf}#post-body .misc-pub-section{border-right-color:#eee}.post-com-count span{background-color:#bbb}.form-table .color-palette td{border-color:#fff}.sortable-placeholder{border-color:#bbb;background-color:#eefcf1}#post-body ul.category-tabs li.tabs a,#post-body ul.add-menu-item-tabs li.tabs a,body.press-this ul.category-tabs li.tabs a{color:#333}.view-switch #view-switch-list{background-color:transparent;background-repeat:no-repeat;background-position:0 0}.view-switch .current #view-switch-list{background-color:transparent;background-repeat:no-repeat;background-position:-40px 0}.view-switch #view-switch-excerpt{background-color:transparent;background-repeat:no-repeat;background-position:-20px 0}.view-switch .current #view-switch-excerpt{background-color:transparent;background-repeat:no-repeat;background-position:-60px 0}#header-logo{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:center center}.popular-tags,.feature-filter{background-color:#fff;border-color:#dfdfdf}#theme-information .action-button{border-top-color:#dfdfdf}.theme-listing br.line{border-bottom-color:#ccc}div.widgets-sortables,#widgets-left .inactive{background-color:#fcfcfc;border-color:#dfdfdf}#available-widgets .widget-holder{background-color:#fcfcfc;border-color:#dfdfdf}#available-widgets .widget-description{color:#555}.sidebar-name{color:#464646;text-shadow:#fff 0 1px 0;border-color:#dfdfdf;-moz-box-shadow:inset 0 1px 0 #fff;-webkit-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff}.sidebar-name:hover,#removing-widget{color:#d54e21}#removing-widget span{color:black}.sidebar-name-arrow{background-color:transparent;background-repeat:no-repeat;background-position:5px 9px}.sidebar-name:hover .sidebar-name-arrow{background-color:transparent;background-repeat:no-repeat;background-position:5px 9px}.in-widget-title{color:#606060}.deleting .widget-title *{color:#aaa}.imgedit-menu div{border-color:#d5d5d5;background-color:#f1f1f1}.imgedit-menu div:hover{border-color:#c1c1c1;background-color:#eaeaea}.imgedit-menu div.disabled{border-color:#ccc;background-color:#ddd;filter:alpha(opacity=50);opacity:.5}#dashboard_recent_comments div.undo{border-top-color:#dfdfdf}.comment-ays,.comment-ays th{border-color:#ddd}.comment-ays th{background-color:#f1f1f1}#menu-management .menu-edit{border-color:#dfdfdf}#post-body{background:#fff;border-top-color:#fff;border-bottom-color:#dfdfdf}#nav-menu-header{border-bottom-color:#dfdfdf}#nav-menu-footer{border-top-color:#fff}#menu-management .nav-tabs-arrow a{color:#c1c1c1}#menu-management .nav-tabs-arrow a:hover{color:#d54e21}#menu-management .nav-tabs-arrow a:active{color:#464646}#menu-management .nav-tab-active{border-color:#dfdfdf}#menu-management .nav-tab{background:#fbfbfb;border-color:#dfdfdf}.js .input-with-default-title{color:#aaa}#cancel-save{color:#f00}#cancel-save:hover{background-color:#f00;color:#fff}.list-container{border-color:#dfdfdf}.menu-item-handle{border-color:#dfdfdf}.menu li.deleting .menu-item-handle{background-color:#f66;text-shadow:#ccc}.item-type{color:#999}.item-controls .menu-item-delete:hover{color:#f00}.item-edit{background-color:transparent;background-repeat:no-repeat;background-position:8px 10px;border-bottom-color:#eee}.item-edit:hover{background-color:transparent;background-repeat:no-repeat;background-position:8px 10px}.menu-item-settings{border-color:#dfdfdf}.link-to-original{color:#777;border-color:#dfdfdf}#cancel-save:hover{color:#fff!important}#update-menu-item{color:#fff!important}#update-menu-item:hover,#update-menu-item:active,#update-menu-item:focus{color:#eaf2fa!important;border-color:#13455b!important}.submitbox .submitcancel{color:#070;border-bottom-color:#070}.submitbox .submitcancel:hover{background:#070;color:#fff}#menu-management .nav-tab-active,.menu-item-handle,.menu-item-settings{-moz-box-shadow:inset 0 1px 0 #fff;-webkit-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff}#menu-management .nav-tab-active{background:#eefcf1;border-bottom-color:#eefcf1}#upload-form label{color:#777}.fullscreen-overlay{background:#fff}.wp-fullscreen-focus #wp-fullscreen-title,.wp-fullscreen-focus #wp-fullscreen-container{border-color:#ccc}#fullscreen-topbar{border-bottom-color:#dfdfdf}.about-wrap h1{color:#333;text-shadow:1px 1px 1px white}.about-text{color:#777}.wp-badge{color:#fff;text-shadow:0 -1px 0 #0c3d57;border-color:#2b5173;-moz-box-shadow:inset 0 0 0 1px #5f8ca8;-webkit-box-shadow:inset 0 0 0 1px #5f8ca8;box-shadow:inset 0 0 0 1px #5f8ca8;background-color:#378aac}.about-wrap h2 .nav-tab{color:#070}.about-wrap h2 .nav-tab:hover{color:#d54e21}.about-wrap h2 .nav-tab-active,.about-wrap h2 .nav-tab-active:hover{color:#333}.about-wrap h2 .nav-tab-active{text-shadow:1px 1px 1px white;color:#464646}.about-wrap h3{color:#333;text-shadow:1px 1px 1px white}.about-wrap .feature-section h4{color:#464646}.about-wrap .feature-section img{background:#eefcf1;border-color:#dfdfdf;-moz-box-shadow:0 0 6px rgba(0,0,0,0.3);-webkit-box-shadow:0 0 6px rgba(0,0,0,0.3);box-shadow:0 0 6px rgba(0,0,0,0.3)}.about-wrap h4.wp-people-group{text-shadow:1px 1px 1px white}.about-wrap li.wp-person img.gravatar{-moz-box-shadow:0 0 4px rgba(0,0,0,0.4);-webkit-box-shadow:0 0 4px rgba(0,0,0,0.4);box-shadow:0 0 4px rgba(0,0,0,0.4)}.about-wrap li.wp-person .title{color:#464646;text-shadow:1px 1px 1px white}.freedoms-php .about-wrap ol li{color:#999}.freedoms-php .about-wrap ol p{color:#464646}.rtl .bar{border-right-color:none;border-left-color:#99d}.rtl #screen-meta-links a.show-settings{background-position:left 3px}.rtl #screen-meta-links a.show-settings.screen-meta-active{background-position:left -33px}.rtl #adminmenushadow,.rtl #adminmenuback{background-position:top left}.rtl #adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,.rtl #adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle{background-color:transparent;background-repeat:no-repeat;background-position:8px 6px}.rtl #adminmenu .wp-has-submenu:hover .wp-menu-toggle,.rtl #adminmenu .wp-menu-open .wp-menu-toggle{background-color:transparent;background-repeat:no-repeat;background-position:8px 6px}.rtl #adminmenu .wp-submenu .wp-submenu-head{border-right-color:none;border-left-color:#dfdfdf}.rtl .folded #adminmenu .wp-submenu-wrap{-moz-box-shadow:-2px 2px 5px rgba(0,0,0,0.4);-webkit-box-shadow:-2px 2px 5px rgba(0,0,0,0.4);box-shadow:-2px 2px 5px rgba(0,0,0,0.4)}.rtl #collapse-button div{background-position:0 -108px}.rtl .folded #collapse-button div{background-position:0 -72px}.rtl .meta-box-sortables .postbox:hover .handlediv{background-color:transparent;background-repeat:no-repeat;background-position:6px 7px}.rtl .tablenav .tablenav-pages a{border-color:#e3e3e3;background-color:#eee;background-repeat:repeat-x;background-attachment:scroll;background-position:right -379px}.rtl #post-body .misc-pub-section{border-right-color:none;border-left-color:#eee}.rtl .sidebar-name-arrow{background-color:transparent;background-repeat:no-repeat;background-position:5px 9px}.rtl .sidebar-name:hover .sidebar-name-arrow{background-color:transparent;background-repeat:no-repeat;background-position:5px 9px}
|
bbp-admin/styles/admin.dev.css
CHANGED
@@ -322,7 +322,6 @@ td.help {
|
|
322 |
}
|
323 |
|
324 |
.post-com-count {
|
325 |
-
background-image: url(../../../../../wp-admin/images/bubble_bg.gif);
|
326 |
color: #fff;
|
327 |
}
|
328 |
|
@@ -369,14 +368,20 @@ input[type=submit]:hover {
|
|
369 |
.button,
|
370 |
.submit input,
|
371 |
.button-secondary {
|
372 |
-
background: #f2f2f2
|
|
|
|
|
|
|
373 |
text-shadow: rgba(255,255,255,1) 0 1px 0;
|
374 |
}
|
375 |
|
376 |
.button:active,
|
377 |
.submit input:active,
|
378 |
.button-secondary:active {
|
379 |
-
background: #eee
|
|
|
|
|
|
|
380 |
}
|
381 |
|
382 |
input.button-primary,
|
@@ -385,14 +390,22 @@ a.button-primary {
|
|
385 |
border-color: #298cba;
|
386 |
font-weight: bold;
|
387 |
color: #fff;
|
388 |
-
background:
|
|
|
|
|
|
|
|
|
389 |
text-shadow: rgba(0,0,0,0.3) 0 -1px 0;
|
390 |
}
|
391 |
|
392 |
input.button-primary:active,
|
393 |
button.button-primary:active,
|
394 |
a.button-primary:active {
|
395 |
-
background:
|
|
|
|
|
|
|
|
|
396 |
color: #eaf2fa;
|
397 |
}
|
398 |
|
@@ -760,10 +773,6 @@ table.widefat span.spam a,
|
|
760 |
color: #000;
|
761 |
}
|
762 |
|
763 |
-
.curtime #timestamp {
|
764 |
-
background-image: url(../../../../../wp-admin/images/date-button.gif);
|
765 |
-
}
|
766 |
-
|
767 |
#quicktags #ed_link {
|
768 |
color: #00f;
|
769 |
}
|
@@ -778,12 +787,14 @@ table.widefat span.spam a,
|
|
778 |
|
779 |
.tagchecklist span a,
|
780 |
#bulk-titles div a {
|
781 |
-
|
|
|
782 |
}
|
783 |
|
784 |
.tagchecklist span a:hover,
|
785 |
#bulk-titles div a:hover {
|
786 |
-
background:
|
|
|
787 |
}
|
788 |
|
789 |
#update-nag, .update-nag {
|
@@ -844,11 +855,15 @@ table.widefat span.spam a,
|
|
844 |
}
|
845 |
|
846 |
#screen-meta-links a.show-settings {
|
847 |
-
background: transparent
|
|
|
|
|
848 |
}
|
849 |
|
850 |
#screen-meta-links a.show-settings.screen-meta-active {
|
851 |
-
background: transparent
|
|
|
|
|
852 |
}
|
853 |
|
854 |
/* end screen options and help tabs */
|
@@ -949,7 +964,6 @@ table.widefat .spam a:hover,
|
|
949 |
|
950 |
#adminmenushadow,
|
951 |
#adminmenuback {
|
952 |
-
background-image: url(../../../../../wp-admin/images/menu-shadow.png);
|
953 |
background-position: top right;
|
954 |
background-repeat: repeat-y;
|
955 |
}
|
@@ -965,12 +979,16 @@ table.widefat .spam a:hover,
|
|
965 |
|
966 |
#adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,
|
967 |
#adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle {
|
968 |
-
background: transparent
|
|
|
|
|
969 |
}
|
970 |
|
971 |
#adminmenu .wp-has-submenu:hover .wp-menu-toggle,
|
972 |
#adminmenu .wp-menu-open .wp-menu-toggle {
|
973 |
-
background: transparent
|
|
|
|
|
974 |
}
|
975 |
|
976 |
#adminmenu a.menu-top,
|
@@ -1106,7 +1124,9 @@ table.widefat .spam a:hover,
|
|
1106 |
border-color: #aaa;
|
1107 |
}
|
1108 |
#collapse-button div {
|
1109 |
-
background: transparent
|
|
|
|
|
1110 |
}
|
1111 |
.folded #collapse-button div {
|
1112 |
background-position: 0 -108px;
|
@@ -1115,126 +1135,198 @@ table.widefat .spam a:hover,
|
|
1115 |
/* menu and screen icons */
|
1116 |
.icon16.icon-dashboard,
|
1117 |
#adminmenu .menu-icon-dashboard div.wp-menu-image {
|
1118 |
-
background: transparent
|
|
|
|
|
|
|
1119 |
}
|
1120 |
|
1121 |
#adminmenu .menu-icon-dashboard:hover div.wp-menu-image,
|
1122 |
#adminmenu .menu-icon-dashboard.wp-has-current-submenu div.wp-menu-image,
|
1123 |
#adminmenu .menu-icon-dashboard.current div.wp-menu-image {
|
1124 |
-
background: transparent
|
|
|
|
|
|
|
1125 |
}
|
1126 |
|
1127 |
.icon16.icon-post,
|
1128 |
#adminmenu .menu-icon-post div.wp-menu-image {
|
1129 |
-
background: transparent
|
|
|
|
|
|
|
1130 |
}
|
1131 |
|
1132 |
#adminmenu .menu-icon-post:hover div.wp-menu-image,
|
1133 |
#adminmenu .menu-icon-post.wp-has-current-submenu div.wp-menu-image {
|
1134 |
-
background: transparent
|
|
|
|
|
|
|
1135 |
}
|
1136 |
|
1137 |
.icon16.icon-media,
|
1138 |
#adminmenu .menu-icon-media div.wp-menu-image {
|
1139 |
-
background: transparent
|
|
|
|
|
|
|
1140 |
}
|
1141 |
|
1142 |
#adminmenu .menu-icon-media:hover div.wp-menu-image,
|
1143 |
#adminmenu .menu-icon-media.wp-has-current-submenu div.wp-menu-image {
|
1144 |
-
background: transparent
|
|
|
|
|
|
|
1145 |
}
|
1146 |
|
1147 |
.icon16.icon-links,
|
1148 |
#adminmenu .menu-icon-links div.wp-menu-image {
|
1149 |
-
background: transparent
|
|
|
|
|
|
|
1150 |
}
|
1151 |
|
1152 |
#adminmenu .menu-icon-links:hover div.wp-menu-image,
|
1153 |
#adminmenu .menu-icon-links.wp-has-current-submenu div.wp-menu-image {
|
1154 |
-
background: transparent
|
|
|
|
|
|
|
1155 |
}
|
1156 |
|
1157 |
.icon16.icon-page,
|
1158 |
#adminmenu .menu-icon-page div.wp-menu-image {
|
1159 |
-
background: transparent
|
|
|
|
|
|
|
1160 |
}
|
1161 |
|
1162 |
#adminmenu .menu-icon-page:hover div.wp-menu-image,
|
1163 |
#adminmenu .menu-icon-page.wp-has-current-submenu div.wp-menu-image {
|
1164 |
-
background: transparent
|
|
|
|
|
|
|
1165 |
}
|
1166 |
|
1167 |
.icon16.icon-comments,
|
1168 |
#adminmenu .menu-icon-comments div.wp-menu-image {
|
1169 |
-
background: transparent
|
|
|
|
|
|
|
1170 |
}
|
1171 |
|
1172 |
#adminmenu .menu-icon-comments:hover div.wp-menu-image,
|
1173 |
#adminmenu .menu-icon-comments.wp-has-current-submenu div.wp-menu-image,
|
1174 |
#adminmenu .menu-icon-comments.current div.wp-menu-image {
|
1175 |
-
background: transparent
|
|
|
|
|
|
|
1176 |
}
|
1177 |
|
1178 |
.icon16.icon-appearance,
|
1179 |
#adminmenu .menu-icon-appearance div.wp-menu-image {
|
1180 |
-
background: transparent
|
|
|
|
|
|
|
1181 |
}
|
1182 |
|
1183 |
#adminmenu .menu-icon-appearance:hover div.wp-menu-image,
|
1184 |
#adminmenu .menu-icon-appearance.wp-has-current-submenu div.wp-menu-image {
|
1185 |
-
background: transparent
|
|
|
|
|
|
|
1186 |
}
|
1187 |
|
1188 |
.icon16.icon-plugins,
|
1189 |
#adminmenu .menu-icon-plugins div.wp-menu-image {
|
1190 |
-
background: transparent
|
|
|
|
|
|
|
1191 |
}
|
1192 |
|
1193 |
#adminmenu .menu-icon-plugins:hover div.wp-menu-image,
|
1194 |
#adminmenu .menu-icon-plugins.wp-has-current-submenu div.wp-menu-image {
|
1195 |
-
background: transparent
|
|
|
|
|
|
|
1196 |
}
|
1197 |
|
1198 |
.icon16.icon-users,
|
1199 |
#adminmenu .menu-icon-users div.wp-menu-image {
|
1200 |
-
background: transparent
|
|
|
|
|
|
|
1201 |
}
|
1202 |
|
1203 |
#adminmenu .menu-icon-users:hover div.wp-menu-image,
|
1204 |
#adminmenu .menu-icon-users.wp-has-current-submenu div.wp-menu-image,
|
1205 |
#adminmenu .menu-icon-users.current div.wp-menu-image {
|
1206 |
-
background: transparent
|
|
|
|
|
|
|
1207 |
}
|
1208 |
|
1209 |
.icon16.icon-tools,
|
1210 |
#adminmenu .menu-icon-tools div.wp-menu-image {
|
1211 |
-
background: transparent
|
|
|
|
|
|
|
1212 |
}
|
1213 |
|
1214 |
#adminmenu .menu-icon-tools:hover div.wp-menu-image,
|
1215 |
#adminmenu .menu-icon-tools.wp-has-current-submenu div.wp-menu-image,
|
1216 |
#adminmenu .menu-icon-tools.current div.wp-menu-image {
|
1217 |
-
background: transparent
|
|
|
|
|
|
|
1218 |
}
|
1219 |
|
1220 |
.icon16.icon-settings,
|
1221 |
#adminmenu .menu-icon-settings div.wp-menu-image {
|
1222 |
-
background: transparent
|
|
|
|
|
|
|
1223 |
}
|
1224 |
|
1225 |
#adminmenu .menu-icon-settings:hover div.wp-menu-image,
|
1226 |
#adminmenu .menu-icon-settings.wp-has-current-submenu div.wp-menu-image {
|
1227 |
-
background: transparent
|
|
|
|
|
|
|
1228 |
}
|
1229 |
|
1230 |
.icon16.icon-site,
|
1231 |
#adminmenu .menu-icon-site div.wp-menu-image {
|
1232 |
-
background: transparent
|
|
|
|
|
|
|
1233 |
}
|
1234 |
|
1235 |
#adminmenu .menu-icon-site:hover div.wp-menu-image,
|
1236 |
#adminmenu .menu-icon-site.wp-has-current-submenu div.wp-menu-image {
|
1237 |
-
background: transparent
|
|
|
|
|
|
|
1238 |
}
|
1239 |
/* end menu and screen icons */
|
1240 |
|
@@ -1242,68 +1334,92 @@ table.widefat .spam a:hover,
|
|
1242 |
.icon32.icon-post,
|
1243 |
#icon-edit,
|
1244 |
#icon-post {
|
1245 |
-
background: transparent
|
|
|
|
|
1246 |
}
|
1247 |
|
1248 |
.icon32.icon-dashboard,
|
1249 |
#icon-index {
|
1250 |
-
background: transparent
|
|
|
|
|
1251 |
}
|
1252 |
|
1253 |
.icon32.icon-media,
|
1254 |
#icon-upload {
|
1255 |
-
background: transparent
|
|
|
|
|
1256 |
}
|
1257 |
|
1258 |
.icon32.icon-links,
|
1259 |
#icon-link-manager,
|
1260 |
#icon-link,
|
1261 |
#icon-link-category {
|
1262 |
-
background: transparent
|
|
|
|
|
1263 |
}
|
1264 |
|
1265 |
.icon32.icon-page,
|
1266 |
#icon-edit-pages,
|
1267 |
#icon-page {
|
1268 |
-
background: transparent
|
|
|
|
|
1269 |
}
|
1270 |
|
1271 |
.icon32.icon-comments,
|
1272 |
#icon-edit-comments {
|
1273 |
-
background: transparent
|
|
|
|
|
1274 |
}
|
1275 |
|
1276 |
.icon32.icon-appearance,
|
1277 |
#icon-themes {
|
1278 |
-
background: transparent
|
|
|
|
|
1279 |
}
|
1280 |
|
1281 |
.icon32.icon-plugins,
|
1282 |
#icon-plugins {
|
1283 |
-
background: transparent
|
|
|
|
|
1284 |
}
|
1285 |
|
1286 |
.icon32.icon-users,
|
1287 |
#icon-users,
|
1288 |
#icon-profile,
|
1289 |
#icon-user-edit {
|
1290 |
-
background: transparent
|
|
|
|
|
1291 |
}
|
1292 |
|
1293 |
.icon32.icon-tools,
|
1294 |
#icon-tools,
|
1295 |
#icon-admin {
|
1296 |
-
background: transparent
|
|
|
|
|
1297 |
}
|
1298 |
|
1299 |
.icon32.icon-settings,
|
1300 |
#icon-options-general {
|
1301 |
-
background: transparent
|
|
|
|
|
1302 |
}
|
1303 |
|
1304 |
.icon32.icon-site,
|
1305 |
#icon-ms-admin {
|
1306 |
-
background: transparent
|
|
|
|
|
1307 |
}
|
1308 |
/* end screen icons */
|
1309 |
|
@@ -1425,7 +1541,9 @@ fieldset.inline-edit-col-right .inline-edit-col {
|
|
1425 |
}
|
1426 |
|
1427 |
.meta-box-sortables .postbox:hover .handlediv {
|
1428 |
-
background: transparent
|
|
|
|
|
1429 |
}
|
1430 |
|
1431 |
.tablenav .tablenav-pages {
|
@@ -1434,7 +1552,10 @@ fieldset.inline-edit-col-right .inline-edit-col {
|
|
1434 |
|
1435 |
.tablenav .tablenav-pages a {
|
1436 |
border-color: #e3e3e3;
|
1437 |
-
background: #eee
|
|
|
|
|
|
|
1438 |
}
|
1439 |
|
1440 |
.tablenav .tablenav-pages a:hover,
|
@@ -1505,23 +1626,34 @@ body.press-this ul.category-tabs li.tabs a {
|
|
1505 |
}
|
1506 |
|
1507 |
.view-switch #view-switch-list {
|
1508 |
-
background: transparent
|
|
|
|
|
1509 |
}
|
1510 |
|
1511 |
.view-switch .current #view-switch-list {
|
1512 |
-
background: transparent
|
|
|
|
|
1513 |
}
|
1514 |
|
1515 |
.view-switch #view-switch-excerpt {
|
1516 |
-
background: transparent
|
|
|
|
|
1517 |
}
|
1518 |
|
1519 |
.view-switch .current #view-switch-excerpt {
|
1520 |
-
background: transparent
|
|
|
|
|
1521 |
}
|
1522 |
|
1523 |
#header-logo {
|
1524 |
-
background: transparent
|
|
|
|
|
|
|
1525 |
}
|
1526 |
|
1527 |
.popular-tags,
|
@@ -1572,11 +1704,15 @@ div.widgets-sortables,
|
|
1572 |
}
|
1573 |
|
1574 |
.sidebar-name-arrow {
|
1575 |
-
background: transparent
|
|
|
|
|
1576 |
}
|
1577 |
|
1578 |
.sidebar-name:hover .sidebar-name-arrow {
|
1579 |
-
background: transparent
|
|
|
|
|
1580 |
}
|
1581 |
|
1582 |
.in-widget-title {
|
@@ -1692,12 +1828,16 @@ div.widgets-sortables,
|
|
1692 |
}
|
1693 |
|
1694 |
.item-edit {
|
1695 |
-
background: transparent
|
|
|
|
|
1696 |
border-bottom-color: #eee;
|
1697 |
}
|
1698 |
|
1699 |
.item-edit:hover {
|
1700 |
-
background: transparent
|
|
|
|
|
1701 |
}
|
1702 |
|
1703 |
.menu-item-settings { /* Menu editing */
|
@@ -1789,13 +1929,6 @@ div.widgets-sortables,
|
|
1789 |
box-shadow: inset 0 0 0 1px #5F8CA8;
|
1790 |
|
1791 |
background-color: #378aac;
|
1792 |
-
background-image: url(../../../../../wp-admin/images/wp-badge.png);
|
1793 |
-
background-image: url(../../../../../wp-admin/images/wp-badge.png), -ms-linear-gradient(top, #378aac, #165d84); /* IE10 */
|
1794 |
-
background-image: url(../../../../../wp-admin/images/wp-badge.png), -moz-linear-gradient(top, #378aac, #165d84); /* Firefox */
|
1795 |
-
background-image: url(../../../../../wp-admin/images/wp-badge.png), -o-linear-gradient(top, #378aac, #165d84); /* Opera */
|
1796 |
-
background-image: url(../../../../../wp-admin/images/wp-badge.png), -webkit-gradient(linear, left top, left bottom, from(#378aac), to(#165d84)); /* old Webkit */
|
1797 |
-
background-image: url(../../../../../wp-admin/images/wp-badge.png), -webkit-linear-gradient(top, #378aac, #165d84); /* new Webkit */
|
1798 |
-
background-image: url(../../../../../wp-admin/images/wp-badge.png), linear-gradient(top, #378aac, #165d84); /* proposed W3C Markup */
|
1799 |
}
|
1800 |
|
1801 |
.about-wrap h2 .nav-tab {
|
@@ -1860,14 +1993,10 @@ div.widgets-sortables,
|
|
1860 |
------------------------------------------------------------------------------*/
|
1861 |
|
1862 |
.rtl .bar {
|
1863 |
-
border-right-color:
|
1864 |
border-left-color: #99d;
|
1865 |
}
|
1866 |
|
1867 |
-
.rtl .post-com-count {
|
1868 |
-
background-image: url(../../../../../wp-admin/images/bubble_bg-rtl.gif);
|
1869 |
-
}
|
1870 |
-
|
1871 |
.rtl #screen-meta-links a.show-settings {
|
1872 |
background-position: left 3px;
|
1873 |
}
|
@@ -1879,22 +2008,25 @@ div.widgets-sortables,
|
|
1879 |
/* Menu */
|
1880 |
.rtl #adminmenushadow,
|
1881 |
.rtl #adminmenuback {
|
1882 |
-
background-image: url(../../../../../wp-admin/images/menu-shadow-rtl.png);
|
1883 |
background-position: top left;
|
1884 |
}
|
1885 |
|
1886 |
.rtl #adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,
|
1887 |
.rtl #adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle {
|
1888 |
-
background: transparent
|
|
|
|
|
1889 |
}
|
1890 |
|
1891 |
.rtl #adminmenu .wp-has-submenu:hover .wp-menu-toggle,
|
1892 |
.rtl #adminmenu .wp-menu-open .wp-menu-toggle {
|
1893 |
-
background: transparent
|
|
|
|
|
1894 |
}
|
1895 |
|
1896 |
.rtl #adminmenu .wp-submenu .wp-submenu-head {
|
1897 |
-
border-right-color:
|
1898 |
border-left-color: #dfdfdf;
|
1899 |
}
|
1900 |
|
@@ -1915,23 +2047,32 @@ div.widgets-sortables,
|
|
1915 |
|
1916 |
/* Edit Image */
|
1917 |
.rtl .meta-box-sortables .postbox:hover .handlediv {
|
1918 |
-
background: transparent
|
|
|
|
|
1919 |
}
|
1920 |
|
1921 |
.rtl .tablenav .tablenav-pages a {
|
1922 |
border-color: #e3e3e3;
|
1923 |
-
background: #eee
|
|
|
|
|
|
|
1924 |
}
|
1925 |
|
1926 |
.rtl #post-body .misc-pub-section {
|
1927 |
-
border-right-color:
|
1928 |
border-left-color: #eee;
|
1929 |
}
|
1930 |
|
1931 |
.rtl .sidebar-name-arrow {
|
1932 |
-
background: transparent
|
|
|
|
|
1933 |
}
|
1934 |
|
1935 |
.rtl .sidebar-name:hover .sidebar-name-arrow {
|
1936 |
-
background: transparent
|
1937 |
-
|
|
|
|
322 |
}
|
323 |
|
324 |
.post-com-count {
|
|
|
325 |
color: #fff;
|
326 |
}
|
327 |
|
368 |
.button,
|
369 |
.submit input,
|
370 |
.button-secondary {
|
371 |
+
background-color: #f2f2f2;
|
372 |
+
background-repeat: repeat-x;
|
373 |
+
background-attachment: scroll;
|
374 |
+
background-position: left top;
|
375 |
text-shadow: rgba(255,255,255,1) 0 1px 0;
|
376 |
}
|
377 |
|
378 |
.button:active,
|
379 |
.submit input:active,
|
380 |
.button-secondary:active {
|
381 |
+
background-color: #eee;
|
382 |
+
background-repeat: repeat-x;
|
383 |
+
background-attachment: scroll;
|
384 |
+
background-position: left top;
|
385 |
}
|
386 |
|
387 |
input.button-primary,
|
390 |
border-color: #298cba;
|
391 |
font-weight: bold;
|
392 |
color: #fff;
|
393 |
+
background-image: url('../images/button-grad.png');
|
394 |
+
background-color: #007700;
|
395 |
+
background-repeat: repeat-x;
|
396 |
+
background-attachment: scroll;
|
397 |
+
background-position: left top;
|
398 |
text-shadow: rgba(0,0,0,0.3) 0 -1px 0;
|
399 |
}
|
400 |
|
401 |
input.button-primary:active,
|
402 |
button.button-primary:active,
|
403 |
a.button-primary:active {
|
404 |
+
background-image: url('../images/button-grad-active.png');
|
405 |
+
background-color: #007700;
|
406 |
+
background-repeat: repeat-x;
|
407 |
+
background-attachment: scroll;
|
408 |
+
background-position: left top;
|
409 |
color: #eaf2fa;
|
410 |
}
|
411 |
|
773 |
color: #000;
|
774 |
}
|
775 |
|
|
|
|
|
|
|
|
|
776 |
#quicktags #ed_link {
|
777 |
color: #00f;
|
778 |
}
|
787 |
|
788 |
.tagchecklist span a,
|
789 |
#bulk-titles div a {
|
790 |
+
|
791 |
+
background-repeat: no-repeat;
|
792 |
}
|
793 |
|
794 |
.tagchecklist span a:hover,
|
795 |
#bulk-titles div a:hover {
|
796 |
+
background-repeat: no-repeat;
|
797 |
+
background-position: -10px 0;
|
798 |
}
|
799 |
|
800 |
#update-nag, .update-nag {
|
855 |
}
|
856 |
|
857 |
#screen-meta-links a.show-settings {
|
858 |
+
background-color: transparent;
|
859 |
+
background-repeat: no-repeat;
|
860 |
+
background-position: right 3px;
|
861 |
}
|
862 |
|
863 |
#screen-meta-links a.show-settings.screen-meta-active {
|
864 |
+
background-color: transparent;
|
865 |
+
background-repeat: no-repeat;
|
866 |
+
background-position: right -33px;
|
867 |
}
|
868 |
|
869 |
/* end screen options and help tabs */
|
964 |
|
965 |
#adminmenushadow,
|
966 |
#adminmenuback {
|
|
|
967 |
background-position: top right;
|
968 |
background-repeat: repeat-y;
|
969 |
}
|
979 |
|
980 |
#adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,
|
981 |
#adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle {
|
982 |
+
background-color: transparent;
|
983 |
+
background-repeat: no-repeat;
|
984 |
+
background-position: -1px 6px;
|
985 |
}
|
986 |
|
987 |
#adminmenu .wp-has-submenu:hover .wp-menu-toggle,
|
988 |
#adminmenu .wp-menu-open .wp-menu-toggle {
|
989 |
+
background-color: transparent;
|
990 |
+
background-repeat: no-repeat;
|
991 |
+
background-position: -2px 6px;
|
992 |
}
|
993 |
|
994 |
#adminmenu a.menu-top,
|
1124 |
border-color: #aaa;
|
1125 |
}
|
1126 |
#collapse-button div {
|
1127 |
+
background-color: transparent;
|
1128 |
+
background-repeat: no-repeat;
|
1129 |
+
background-position: 0 -72px;
|
1130 |
}
|
1131 |
.folded #collapse-button div {
|
1132 |
background-position: 0 -108px;
|
1135 |
/* menu and screen icons */
|
1136 |
.icon16.icon-dashboard,
|
1137 |
#adminmenu .menu-icon-dashboard div.wp-menu-image {
|
1138 |
+
background-color: transparent;
|
1139 |
+
background-repeat: no-repeat;
|
1140 |
+
background-attachment: scroll;
|
1141 |
+
background-position: -60px -33px;
|
1142 |
}
|
1143 |
|
1144 |
#adminmenu .menu-icon-dashboard:hover div.wp-menu-image,
|
1145 |
#adminmenu .menu-icon-dashboard.wp-has-current-submenu div.wp-menu-image,
|
1146 |
#adminmenu .menu-icon-dashboard.current div.wp-menu-image {
|
1147 |
+
background-color: transparent;
|
1148 |
+
background-repeat: no-repeat;
|
1149 |
+
background-attachment: scroll;
|
1150 |
+
background-position: -60px -1px;
|
1151 |
}
|
1152 |
|
1153 |
.icon16.icon-post,
|
1154 |
#adminmenu .menu-icon-post div.wp-menu-image {
|
1155 |
+
background-color: transparent;
|
1156 |
+
background-repeat: no-repeat;
|
1157 |
+
background-attachment: scroll;
|
1158 |
+
background-position: -271px -33px;
|
1159 |
}
|
1160 |
|
1161 |
#adminmenu .menu-icon-post:hover div.wp-menu-image,
|
1162 |
#adminmenu .menu-icon-post.wp-has-current-submenu div.wp-menu-image {
|
1163 |
+
background-color: transparent;
|
1164 |
+
background-repeat: no-repeat;
|
1165 |
+
background-attachment: scroll;
|
1166 |
+
background-position: -271px -31px;
|
1167 |
}
|
1168 |
|
1169 |
.icon16.icon-media,
|
1170 |
#adminmenu .menu-icon-media div.wp-menu-image {
|
1171 |
+
background-color: transparent;
|
1172 |
+
background-repeat: no-repeat;
|
1173 |
+
background-attachment: scroll;
|
1174 |
+
background-position: -120px -33px;
|
1175 |
}
|
1176 |
|
1177 |
#adminmenu .menu-icon-media:hover div.wp-menu-image,
|
1178 |
#adminmenu .menu-icon-media.wp-has-current-submenu div.wp-menu-image {
|
1179 |
+
background-color: transparent;
|
1180 |
+
background-repeat: no-repeat;
|
1181 |
+
background-attachment: scroll;
|
1182 |
+
background-position: -120px -1px;
|
1183 |
}
|
1184 |
|
1185 |
.icon16.icon-links,
|
1186 |
#adminmenu .menu-icon-links div.wp-menu-image {
|
1187 |
+
background-color: transparent;
|
1188 |
+
background-repeat: no-repeat;
|
1189 |
+
background-attachment: scroll;
|
1190 |
+
background-position: -90px -33px;
|
1191 |
}
|
1192 |
|
1193 |
#adminmenu .menu-icon-links:hover div.wp-menu-image,
|
1194 |
#adminmenu .menu-icon-links.wp-has-current-submenu div.wp-menu-image {
|
1195 |
+
background-color: transparent;
|
1196 |
+
background-repeat: no-repeat;
|
1197 |
+
background-attachment: scroll;
|
1198 |
+
background-position: -90px -1px;
|
1199 |
}
|
1200 |
|
1201 |
.icon16.icon-page,
|
1202 |
#adminmenu .menu-icon-page div.wp-menu-image {
|
1203 |
+
background-color: transparent;
|
1204 |
+
background-repeat: no-repeat;
|
1205 |
+
background-attachment: scroll;
|
1206 |
+
background-position: -150px -33px;
|
1207 |
}
|
1208 |
|
1209 |
#adminmenu .menu-icon-page:hover div.wp-menu-image,
|
1210 |
#adminmenu .menu-icon-page.wp-has-current-submenu div.wp-menu-image {
|
1211 |
+
background-color: transparent;
|
1212 |
+
background-repeat: no-repeat;
|
1213 |
+
background-attachment: scroll;
|
1214 |
+
background-position: -150px -1px;
|
1215 |
}
|
1216 |
|
1217 |
.icon16.icon-comments,
|
1218 |
#adminmenu .menu-icon-comments div.wp-menu-image {
|
1219 |
+
background-color: transparent;
|
1220 |
+
background-repeat: no-repeat;
|
1221 |
+
background-attachment: scroll;
|
1222 |
+
background-position: -30px -33px;
|
1223 |
}
|
1224 |
|
1225 |
#adminmenu .menu-icon-comments:hover div.wp-menu-image,
|
1226 |
#adminmenu .menu-icon-comments.wp-has-current-submenu div.wp-menu-image,
|
1227 |
#adminmenu .menu-icon-comments.current div.wp-menu-image {
|
1228 |
+
background-color: transparent;
|
1229 |
+
background-repeat: no-repeat;
|
1230 |
+
background-attachment: scroll;
|
1231 |
+
background-position: -30px -1px;
|
1232 |
}
|
1233 |
|
1234 |
.icon16.icon-appearance,
|
1235 |
#adminmenu .menu-icon-appearance div.wp-menu-image {
|
1236 |
+
background-color: transparent;
|
1237 |
+
background-repeat: no-repeat;
|
1238 |
+
background-attachment: scroll;
|
1239 |
+
background-position: 0 -33px;
|
1240 |
}
|
1241 |
|
1242 |
#adminmenu .menu-icon-appearance:hover div.wp-menu-image,
|
1243 |
#adminmenu .menu-icon-appearance.wp-has-current-submenu div.wp-menu-image {
|
1244 |
+
background-color: transparent;
|
1245 |
+
background-repeat: no-repeat;
|
1246 |
+
background-attachment: scroll;
|
1247 |
+
background-position: 0 -1px;
|
1248 |
}
|
1249 |
|
1250 |
.icon16.icon-plugins,
|
1251 |
#adminmenu .menu-icon-plugins div.wp-menu-image {
|
1252 |
+
background-color: transparent;
|
1253 |
+
background-repeat: no-repeat;
|
1254 |
+
background-attachment: scroll;
|
1255 |
+
background-position: -180px -33px;
|
1256 |
}
|
1257 |
|
1258 |
#adminmenu .menu-icon-plugins:hover div.wp-menu-image,
|
1259 |
#adminmenu .menu-icon-plugins.wp-has-current-submenu div.wp-menu-image {
|
1260 |
+
background-color: transparent;
|
1261 |
+
background-repeat: no-repeat;
|
1262 |
+
background-attachment: scroll;
|
1263 |
+
background-position: -180px -1px;
|
1264 |
}
|
1265 |
|
1266 |
.icon16.icon-users,
|
1267 |
#adminmenu .menu-icon-users div.wp-menu-image {
|
1268 |
+
background-color: transparent;
|
1269 |
+
background-repeat: no-repeat;
|
1270 |
+
background-attachment: scroll;
|
1271 |
+
background-position: -300px -33px;
|
1272 |
}
|
1273 |
|
1274 |
#adminmenu .menu-icon-users:hover div.wp-menu-image,
|
1275 |
#adminmenu .menu-icon-users.wp-has-current-submenu div.wp-menu-image,
|
1276 |
#adminmenu .menu-icon-users.current div.wp-menu-image {
|
1277 |
+
background-color: transparent;
|
1278 |
+
background-repeat: no-repeat;
|
1279 |
+
background-attachment: scroll;
|
1280 |
+
background-position: -300px -1px;
|
1281 |
}
|
1282 |
|
1283 |
.icon16.icon-tools,
|
1284 |
#adminmenu .menu-icon-tools div.wp-menu-image {
|
1285 |
+
background-color: transparent;
|
1286 |
+
background-repeat: no-repeat;
|
1287 |
+
background-attachment: scroll;
|
1288 |
+
background-position: -210px -33px;
|
1289 |
}
|
1290 |
|
1291 |
#adminmenu .menu-icon-tools:hover div.wp-menu-image,
|
1292 |
#adminmenu .menu-icon-tools.wp-has-current-submenu div.wp-menu-image,
|
1293 |
#adminmenu .menu-icon-tools.current div.wp-menu-image {
|
1294 |
+
background-color: transparent;
|
1295 |
+
background-repeat: no-repeat;
|
1296 |
+
background-attachment: scroll;
|
1297 |
+
background-position: -210px -1px;
|
1298 |
}
|
1299 |
|
1300 |
.icon16.icon-settings,
|
1301 |
#adminmenu .menu-icon-settings div.wp-menu-image {
|
1302 |
+
background-color: transparent;
|
1303 |
+
background-repeat: no-repeat;
|
1304 |
+
background-attachment: scroll;
|
1305 |
+
background-position: -240px -33px;
|
1306 |
}
|
1307 |
|
1308 |
#adminmenu .menu-icon-settings:hover div.wp-menu-image,
|
1309 |
#adminmenu .menu-icon-settings.wp-has-current-submenu div.wp-menu-image {
|
1310 |
+
background-color: transparent;
|
1311 |
+
background-repeat: no-repeat;
|
1312 |
+
background-attachment: scroll;
|
1313 |
+
background-position: -240px -1px;
|
1314 |
}
|
1315 |
|
1316 |
.icon16.icon-site,
|
1317 |
#adminmenu .menu-icon-site div.wp-menu-image {
|
1318 |
+
background-color: transparent;
|
1319 |
+
background-repeat: no-repeat;
|
1320 |
+
background-attachment: scroll;
|
1321 |
+
background-position: -360px -33px;
|
1322 |
}
|
1323 |
|
1324 |
#adminmenu .menu-icon-site:hover div.wp-menu-image,
|
1325 |
#adminmenu .menu-icon-site.wp-has-current-submenu div.wp-menu-image {
|
1326 |
+
background-color: transparent;
|
1327 |
+
background-repeat: no-repeat;
|
1328 |
+
background-attachment: scroll;
|
1329 |
+
background-position: -360px -1px;
|
1330 |
}
|
1331 |
/* end menu and screen icons */
|
1332 |
|
1334 |
.icon32.icon-post,
|
1335 |
#icon-edit,
|
1336 |
#icon-post {
|
1337 |
+
background-color: transparent;
|
1338 |
+
background-repeat: no-repeat;
|
1339 |
+
background-position: -552px -5px;
|
1340 |
}
|
1341 |
|
1342 |
.icon32.icon-dashboard,
|
1343 |
#icon-index {
|
1344 |
+
background-color: transparent;
|
1345 |
+
background-repeat: no-repeat;
|
1346 |
+
background-position: -137px -5px;
|
1347 |
}
|
1348 |
|
1349 |
.icon32.icon-media,
|
1350 |
#icon-upload {
|
1351 |
+
background-color: transparent;
|
1352 |
+
background-repeat: no-repeat;
|
1353 |
+
background-position: -251px -5px;
|
1354 |
}
|
1355 |
|
1356 |
.icon32.icon-links,
|
1357 |
#icon-link-manager,
|
1358 |
#icon-link,
|
1359 |
#icon-link-category {
|
1360 |
+
background-color: transparent;
|
1361 |
+
background-repeat: no-repeat;
|
1362 |
+
background-position: -190px -5px;
|
1363 |
}
|
1364 |
|
1365 |
.icon32.icon-page,
|
1366 |
#icon-edit-pages,
|
1367 |
#icon-page {
|
1368 |
+
background-color: transparent;
|
1369 |
+
background-repeat: no-repeat;
|
1370 |
+
background-position: -312px -5px;
|
1371 |
}
|
1372 |
|
1373 |
.icon32.icon-comments,
|
1374 |
#icon-edit-comments {
|
1375 |
+
background-color: transparent;
|
1376 |
+
background-repeat: no-repeat;
|
1377 |
+
background-position: -72px -5px;
|
1378 |
}
|
1379 |
|
1380 |
.icon32.icon-appearance,
|
1381 |
#icon-themes {
|
1382 |
+
background-color: transparent;
|
1383 |
+
background-repeat: no-repeat;
|
1384 |
+
background-position: -11px -5px;
|
1385 |
}
|
1386 |
|
1387 |
.icon32.icon-plugins,
|
1388 |
#icon-plugins {
|
1389 |
+
background-color: transparent;
|
1390 |
+
background-repeat: no-repeat;
|
1391 |
+
background-position: -370px -5px;
|
1392 |
}
|
1393 |
|
1394 |
.icon32.icon-users,
|
1395 |
#icon-users,
|
1396 |
#icon-profile,
|
1397 |
#icon-user-edit {
|
1398 |
+
background-color: transparent;
|
1399 |
+
background-repeat: no-repeat;
|
1400 |
+
background-position: -600px -5px;
|
1401 |
}
|
1402 |
|
1403 |
.icon32.icon-tools,
|
1404 |
#icon-tools,
|
1405 |
#icon-admin {
|
1406 |
+
background-color: transparent;
|
1407 |
+
background-repeat: no-repeat;
|
1408 |
+
background-position: -432px -5px;
|
1409 |
}
|
1410 |
|
1411 |
.icon32.icon-settings,
|
1412 |
#icon-options-general {
|
1413 |
+
background-color: transparent;
|
1414 |
+
background-repeat: no-repeat;
|
1415 |
+
background-position: -492px -5px;
|
1416 |
}
|
1417 |
|
1418 |
.icon32.icon-site,
|
1419 |
#icon-ms-admin {
|
1420 |
+
background-color: transparent;
|
1421 |
+
background-repeat: no-repeat;
|
1422 |
+
background-position: -659px -5px;
|
1423 |
}
|
1424 |
/* end screen icons */
|
1425 |
|
1541 |
}
|
1542 |
|
1543 |
.meta-box-sortables .postbox:hover .handlediv {
|
1544 |
+
background-color: transparent;
|
1545 |
+
background-repeat: no-repeat;
|
1546 |
+
background-position: 6px 7px;
|
1547 |
}
|
1548 |
|
1549 |
.tablenav .tablenav-pages {
|
1552 |
|
1553 |
.tablenav .tablenav-pages a {
|
1554 |
border-color: #e3e3e3;
|
1555 |
+
background-color: #eee;
|
1556 |
+
background-repeat: repeat-x;
|
1557 |
+
background-attachment: scroll;
|
1558 |
+
background-position: left -379px;
|
1559 |
}
|
1560 |
|
1561 |
.tablenav .tablenav-pages a:hover,
|
1626 |
}
|
1627 |
|
1628 |
.view-switch #view-switch-list {
|
1629 |
+
background-color: transparent;
|
1630 |
+
background-repeat: no-repeat;
|
1631 |
+
background-position: 0 0;
|
1632 |
}
|
1633 |
|
1634 |
.view-switch .current #view-switch-list {
|
1635 |
+
background-color: transparent;
|
1636 |
+
background-repeat: no-repeat;
|
1637 |
+
background-position: -40px 0;
|
1638 |
}
|
1639 |
|
1640 |
.view-switch #view-switch-excerpt {
|
1641 |
+
background-color: transparent;
|
1642 |
+
background-repeat: no-repeat;
|
1643 |
+
background-position: -20px 0;
|
1644 |
}
|
1645 |
|
1646 |
.view-switch .current #view-switch-excerpt {
|
1647 |
+
background-color: transparent;
|
1648 |
+
background-repeat: no-repeat;
|
1649 |
+
background-position: -60px 0;
|
1650 |
}
|
1651 |
|
1652 |
#header-logo {
|
1653 |
+
background-color: transparent;
|
1654 |
+
background-repeat: no-repeat;
|
1655 |
+
background-attachment: scroll;
|
1656 |
+
background-position: center center;
|
1657 |
}
|
1658 |
|
1659 |
.popular-tags,
|
1704 |
}
|
1705 |
|
1706 |
.sidebar-name-arrow {
|
1707 |
+
background-color: transparent;
|
1708 |
+
background-repeat: no-repeat;
|
1709 |
+
background-position: 5px 9px;
|
1710 |
}
|
1711 |
|
1712 |
.sidebar-name:hover .sidebar-name-arrow {
|
1713 |
+
background-color: transparent;
|
1714 |
+
background-repeat: no-repeat;
|
1715 |
+
background-position: 5px 9px;
|
1716 |
}
|
1717 |
|
1718 |
.in-widget-title {
|
1828 |
}
|
1829 |
|
1830 |
.item-edit {
|
1831 |
+
background-color: transparent;
|
1832 |
+
background-repeat: no-repeat;
|
1833 |
+
background-position: 8px 10px;
|
1834 |
border-bottom-color: #eee;
|
1835 |
}
|
1836 |
|
1837 |
.item-edit:hover {
|
1838 |
+
background-color: transparent;
|
1839 |
+
background-repeat: no-repeat;
|
1840 |
+
background-position: 8px 10px;
|
1841 |
}
|
1842 |
|
1843 |
.menu-item-settings { /* Menu editing */
|
1929 |
box-shadow: inset 0 0 0 1px #5F8CA8;
|
1930 |
|
1931 |
background-color: #378aac;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1932 |
}
|
1933 |
|
1934 |
.about-wrap h2 .nav-tab {
|
1993 |
------------------------------------------------------------------------------*/
|
1994 |
|
1995 |
.rtl .bar {
|
1996 |
+
border-right-color: transparent;
|
1997 |
border-left-color: #99d;
|
1998 |
}
|
1999 |
|
|
|
|
|
|
|
|
|
2000 |
.rtl #screen-meta-links a.show-settings {
|
2001 |
background-position: left 3px;
|
2002 |
}
|
2008 |
/* Menu */
|
2009 |
.rtl #adminmenushadow,
|
2010 |
.rtl #adminmenuback {
|
|
|
2011 |
background-position: top left;
|
2012 |
}
|
2013 |
|
2014 |
.rtl #adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,
|
2015 |
.rtl #adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle {
|
2016 |
+
background-color: transparent;
|
2017 |
+
background-repeat: no-repeat;
|
2018 |
+
background-position: 8px 6px;
|
2019 |
}
|
2020 |
|
2021 |
.rtl #adminmenu .wp-has-submenu:hover .wp-menu-toggle,
|
2022 |
.rtl #adminmenu .wp-menu-open .wp-menu-toggle {
|
2023 |
+
background-color: transparent;
|
2024 |
+
background-repeat: no-repeat;
|
2025 |
+
background-position: 8px 6px;
|
2026 |
}
|
2027 |
|
2028 |
.rtl #adminmenu .wp-submenu .wp-submenu-head {
|
2029 |
+
border-right-color: transparent;
|
2030 |
border-left-color: #dfdfdf;
|
2031 |
}
|
2032 |
|
2047 |
|
2048 |
/* Edit Image */
|
2049 |
.rtl .meta-box-sortables .postbox:hover .handlediv {
|
2050 |
+
background-color: transparent;
|
2051 |
+
background-repeat: no-repeat;
|
2052 |
+
background-position: 6px 7px;
|
2053 |
}
|
2054 |
|
2055 |
.rtl .tablenav .tablenav-pages a {
|
2056 |
border-color: #e3e3e3;
|
2057 |
+
background-color: #eee;
|
2058 |
+
background-repeat: repeat-x;
|
2059 |
+
background-attachment: scroll;
|
2060 |
+
background-position: right -379px;
|
2061 |
}
|
2062 |
|
2063 |
.rtl #post-body .misc-pub-section {
|
2064 |
+
border-right-color: transparent;
|
2065 |
border-left-color: #eee;
|
2066 |
}
|
2067 |
|
2068 |
.rtl .sidebar-name-arrow {
|
2069 |
+
background-color: transparent;
|
2070 |
+
background-repeat: no-repeat;
|
2071 |
+
background-position: 5px 9px;
|
2072 |
}
|
2073 |
|
2074 |
.rtl .sidebar-name:hover .sidebar-name-arrow {
|
2075 |
+
background-color: transparent;
|
2076 |
+
background-repeat: no-repeat;
|
2077 |
+
background-position: 5px 9px;
|
2078 |
+
}
|
bbp-includes/bbp-core-widgets.php
CHANGED
@@ -404,7 +404,10 @@ class BBP_Forums_Widget extends WP_Widget {
|
|
404 |
|
405 |
</ul>
|
406 |
|
407 |
-
|
|
|
|
|
|
|
408 |
|
409 |
endif;
|
410 |
}
|
@@ -614,6 +617,9 @@ class BBP_Topics_Widget extends WP_Widget {
|
|
614 |
|
615 |
<?php echo $after_widget;
|
616 |
|
|
|
|
|
|
|
617 |
endif;
|
618 |
}
|
619 |
|
@@ -776,6 +782,9 @@ class BBP_Replies_Widget extends WP_Widget {
|
|
776 |
|
777 |
<?php echo $after_widget;
|
778 |
|
|
|
|
|
|
|
779 |
endif;
|
780 |
}
|
781 |
|
404 |
|
405 |
</ul>
|
406 |
|
407 |
+
<?php echo $after_widget;
|
408 |
+
|
409 |
+
// Reset the $post global
|
410 |
+
wp_reset_postdata();
|
411 |
|
412 |
endif;
|
413 |
}
|
617 |
|
618 |
<?php echo $after_widget;
|
619 |
|
620 |
+
// Reset the $post global
|
621 |
+
wp_reset_postdata();
|
622 |
+
|
623 |
endif;
|
624 |
}
|
625 |
|
782 |
|
783 |
<?php echo $after_widget;
|
784 |
|
785 |
+
// Reset the $post global
|
786 |
+
wp_reset_postdata();
|
787 |
+
|
788 |
endif;
|
789 |
}
|
790 |
|
bbp-includes/bbp-forum-functions.php
CHANGED
@@ -1644,7 +1644,6 @@ function bbp_exclude_forum_ids( $type = 'string' ) {
|
|
1644 |
* @uses bbp_exclude_forum_ids()
|
1645 |
* @uses bbp_get_topic_post_type()
|
1646 |
* @uses bbp_get_reply_post_type()
|
1647 |
-
|
1648 |
* @return WP_Query
|
1649 |
*/
|
1650 |
function bbp_pre_get_posts_exclude_forums( $posts_query ) {
|
@@ -1976,6 +1975,9 @@ function bbp_delete_forum_topics( $forum_id = 0 ) {
|
|
1976 |
foreach ( $topics->posts as $topic ) {
|
1977 |
wp_delete_post( $topic->ID, true );
|
1978 |
}
|
|
|
|
|
|
|
1979 |
}
|
1980 |
}
|
1981 |
|
@@ -2033,6 +2035,9 @@ function bbp_trash_forum_topics( $forum_id = 0 ) {
|
|
2033 |
// This is so we can possibly untrash them, without untrashing topics
|
2034 |
// that were purposefully trashed before.
|
2035 |
update_post_meta( $forum_id, '_bbp_pre_trashed_topics', $pre_trashed_topics );
|
|
|
|
|
|
|
2036 |
}
|
2037 |
}
|
2038 |
|
1644 |
* @uses bbp_exclude_forum_ids()
|
1645 |
* @uses bbp_get_topic_post_type()
|
1646 |
* @uses bbp_get_reply_post_type()
|
|
|
1647 |
* @return WP_Query
|
1648 |
*/
|
1649 |
function bbp_pre_get_posts_exclude_forums( $posts_query ) {
|
1975 |
foreach ( $topics->posts as $topic ) {
|
1976 |
wp_delete_post( $topic->ID, true );
|
1977 |
}
|
1978 |
+
|
1979 |
+
// Reset the $post global
|
1980 |
+
wp_reset_postdata();
|
1981 |
}
|
1982 |
}
|
1983 |
|
2035 |
// This is so we can possibly untrash them, without untrashing topics
|
2036 |
// that were purposefully trashed before.
|
2037 |
update_post_meta( $forum_id, '_bbp_pre_trashed_topics', $pre_trashed_topics );
|
2038 |
+
|
2039 |
+
// Reset the $post global
|
2040 |
+
wp_reset_postdata();
|
2041 |
}
|
2042 |
}
|
2043 |
|
bbp-includes/bbp-reply-functions.php
CHANGED
@@ -1388,6 +1388,10 @@ function _bbp_has_replies_where( $where, $query ) {
|
|
1388 |
if ( array( bbp_get_topic_post_type(), bbp_get_reply_post_type() ) != $query->get( 'post_type' ) )
|
1389 |
return $where;
|
1390 |
|
|
|
|
|
|
|
|
|
1391 |
global $wpdb;
|
1392 |
|
1393 |
// Table name for posts
|
1388 |
if ( array( bbp_get_topic_post_type(), bbp_get_reply_post_type() ) != $query->get( 'post_type' ) )
|
1389 |
return $where;
|
1390 |
|
1391 |
+
// Bail if meta query
|
1392 |
+
if ( $query->get( 'meta_key' ) || $query->get( 'meta_query' ) )
|
1393 |
+
return $where;
|
1394 |
+
|
1395 |
global $wpdb;
|
1396 |
|
1397 |
// Table name for posts
|
bbp-includes/bbp-theme-compatibility.php
CHANGED
@@ -304,6 +304,7 @@ function bbp_theme_compat_reset_post( $args = array() ) {
|
|
304 |
'post_author' => 0,
|
305 |
'post_date' => 0,
|
306 |
'post_content' => '',
|
|
|
307 |
'post_type' => 'page',
|
308 |
'post_status' => bbp_get_public_status_id(),
|
309 |
'post_name' => '',
|
@@ -323,6 +324,7 @@ function bbp_theme_compat_reset_post( $args = array() ) {
|
|
323 |
'post_author' => get_the_author_meta('ID'),
|
324 |
'post_date' => get_the_date(),
|
325 |
'post_content' => get_the_content(),
|
|
|
326 |
'post_type' => get_post_type(),
|
327 |
'post_status' => get_post_status(),
|
328 |
'post_name' => !empty( $wp_query->post->post_name ) ? $wp_query->post->post_name : '',
|
@@ -348,6 +350,7 @@ function bbp_theme_compat_reset_post( $args = array() ) {
|
|
348 |
$wp_query->post->post_author = $dummy['post_author'];
|
349 |
$wp_query->post->post_date = $dummy['post_date'];
|
350 |
$wp_query->post->post_content = $dummy['post_content'];
|
|
|
351 |
$wp_query->post->post_type = $dummy['post_type'];
|
352 |
$wp_query->post->post_status = $dummy['post_status'];
|
353 |
$wp_query->post->post_name = $dummy['post_name'];
|
@@ -406,32 +409,23 @@ function bbp_template_include_theme_compat( $template = '' ) {
|
|
406 |
|
407 |
/** Users *************************************************************/
|
408 |
|
409 |
-
if (
|
410 |
|
411 |
// Reset post
|
412 |
bbp_theme_compat_reset_post( array(
|
|
|
|
|
|
|
|
|
|
|
413 |
'post_title' => esc_attr( bbp_get_displayed_user_field( 'display_name' ) ),
|
|
|
|
|
414 |
'comment_status' => 'closed'
|
415 |
) );
|
416 |
|
417 |
/** Forums ************************************************************/
|
418 |
|
419 |
-
// Single forum edit
|
420 |
-
} elseif ( bbp_is_forum_edit() ) {
|
421 |
-
|
422 |
-
// Reset post
|
423 |
-
bbp_theme_compat_reset_post( array(
|
424 |
-
'ID' => bbp_get_forum_id(),
|
425 |
-
'post_title' => bbp_get_forum_title(),
|
426 |
-
'post_author' => bbp_get_forum_author_id(),
|
427 |
-
'post_date' => 0,
|
428 |
-
'post_content' => get_post_field( 'post_content', bbp_get_forum_id() ),
|
429 |
-
'post_type' => bbp_get_forum_post_type(),
|
430 |
-
'post_status' => bbp_get_forum_visibility(),
|
431 |
-
'is_single' => true,
|
432 |
-
'comment_status' => 'closed'
|
433 |
-
) );
|
434 |
-
|
435 |
// Forum archive
|
436 |
} elseif ( bbp_is_forum_archive() ) {
|
437 |
|
@@ -448,6 +442,22 @@ function bbp_template_include_theme_compat( $template = '' ) {
|
|
448 |
'comment_status' => 'closed'
|
449 |
) );
|
450 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
451 |
/** Topics ************************************************************/
|
452 |
|
453 |
// Topic archive
|
@@ -466,8 +476,8 @@ function bbp_template_include_theme_compat( $template = '' ) {
|
|
466 |
'comment_status' => 'closed'
|
467 |
) );
|
468 |
|
469 |
-
// Single
|
470 |
-
} elseif ( bbp_is_topic_edit() || bbp_is_topic_split() || bbp_is_topic_merge() ) {
|
471 |
|
472 |
// Reset post
|
473 |
bbp_theme_compat_reset_post( array(
|
@@ -499,8 +509,8 @@ function bbp_template_include_theme_compat( $template = '' ) {
|
|
499 |
'comment_status' => 'closed'
|
500 |
) );
|
501 |
|
502 |
-
// Single
|
503 |
-
} elseif ( bbp_is_reply_edit() ) {
|
504 |
|
505 |
// Reset post
|
506 |
bbp_theme_compat_reset_post( array(
|
@@ -530,9 +540,9 @@ function bbp_template_include_theme_compat( $template = '' ) {
|
|
530 |
'comment_status' => 'closed'
|
531 |
) );
|
532 |
|
533 |
-
|
534 |
/** Topic Tags ********************************************************/
|
535 |
|
|
|
536 |
} elseif ( bbp_is_topic_tag_edit() ) {
|
537 |
|
538 |
// Stash the current term in a new var
|
@@ -540,9 +550,17 @@ function bbp_template_include_theme_compat( $template = '' ) {
|
|
540 |
|
541 |
// Reset the post with our new title
|
542 |
bbp_theme_compat_reset_post( array(
|
543 |
-
'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
544 |
) );
|
545 |
|
|
|
546 |
} elseif ( bbp_is_topic_tag() ) {
|
547 |
|
548 |
// Stash the current term in a new var
|
@@ -550,13 +568,15 @@ function bbp_template_include_theme_compat( $template = '' ) {
|
|
550 |
|
551 |
// Reset the post with our new title
|
552 |
bbp_theme_compat_reset_post( array(
|
553 |
-
'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
554 |
) );
|
555 |
-
|
556 |
-
/** Single Forums/Topics/Replies **************************************/
|
557 |
-
|
558 |
-
} elseif ( bbp_is_custom_post_type() ) {
|
559 |
-
bbp_set_theme_compat_active();
|
560 |
}
|
561 |
|
562 |
/**
|
@@ -637,10 +657,6 @@ function bbp_replace_the_content( $content = '' ) {
|
|
637 |
|
638 |
/** Forums ************************************************************/
|
639 |
|
640 |
-
// Reply Edit
|
641 |
-
} elseif ( bbp_is_forum_edit() ) {
|
642 |
-
$new_content = $bbp->shortcodes->display_forum_form();
|
643 |
-
|
644 |
// Forum archive
|
645 |
} elseif ( bbp_is_forum_archive() ) {
|
646 |
|
@@ -671,6 +687,14 @@ function bbp_replace_the_content( $content = '' ) {
|
|
671 |
$new_content = $bbp->shortcodes->display_forum_index();
|
672 |
}
|
673 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
674 |
/** Topics ************************************************************/
|
675 |
|
676 |
// Topic archive
|
@@ -703,7 +727,7 @@ function bbp_replace_the_content( $content = '' ) {
|
|
703 |
$new_content = $bbp->shortcodes->display_topic_index();
|
704 |
}
|
705 |
|
706 |
-
//
|
707 |
} elseif ( bbp_is_topic_edit() ) {
|
708 |
|
709 |
// Split
|
@@ -731,6 +755,10 @@ function bbp_replace_the_content( $content = '' ) {
|
|
731 |
$new_content = $bbp->shortcodes->display_topic_form();
|
732 |
}
|
733 |
|
|
|
|
|
|
|
|
|
734 |
/** Replies ***********************************************************/
|
735 |
|
736 |
// Reply archive
|
@@ -741,6 +769,10 @@ function bbp_replace_the_content( $content = '' ) {
|
|
741 |
} elseif ( bbp_is_reply_edit() ) {
|
742 |
$new_content = $bbp->shortcodes->display_reply_form();
|
743 |
|
|
|
|
|
|
|
|
|
744 |
/** Views *************************************************************/
|
745 |
|
746 |
} elseif ( bbp_is_single_view() ) {
|
@@ -758,29 +790,6 @@ function bbp_replace_the_content( $content = '' ) {
|
|
758 |
} else {
|
759 |
$new_content = $bbp->shortcodes->display_topics_of_tag( array( 'id' => bbp_get_topic_tag_id() ) );
|
760 |
}
|
761 |
-
|
762 |
-
/** Forums/Topics/Replies *********************************************/
|
763 |
-
|
764 |
-
} else {
|
765 |
-
|
766 |
-
// Check the post_type
|
767 |
-
switch ( get_post_type() ) {
|
768 |
-
|
769 |
-
// Single Forum
|
770 |
-
case bbp_get_forum_post_type() :
|
771 |
-
$new_content = $bbp->shortcodes->display_forum( array( 'id' => get_the_ID() ) );
|
772 |
-
break;
|
773 |
-
|
774 |
-
// Single Topic
|
775 |
-
case bbp_get_topic_post_type() :
|
776 |
-
$new_content = $bbp->shortcodes->display_topic( array( 'id' => get_the_ID() ) );
|
777 |
-
break;
|
778 |
-
|
779 |
-
// Single Reply
|
780 |
-
case bbp_get_reply_post_type() :
|
781 |
-
$new_content = $bbp->shortcodes->display_reply( array( 'id' => get_the_ID() ) );
|
782 |
-
break;
|
783 |
-
}
|
784 |
}
|
785 |
|
786 |
// Juggle the content around and try to prevent unsightly comments
|
@@ -792,61 +801,14 @@ function bbp_replace_the_content( $content = '' ) {
|
|
792 |
// Clean up after ourselves
|
793 |
unset( $new_content );
|
794 |
|
795 |
-
|
796 |
-
|
797 |
-
*
|
798 |
-
* @see comments_template() For why we're doing this :)
|
799 |
-
*
|
800 |
-
* Note: If a theme uses custom code to output comments, it's
|
801 |
-
* possible all of this dancing around is for not.
|
802 |
-
*
|
803 |
-
* Note: If you need to keep these globals around for any special
|
804 |
-
* reason, we've provided a failsafe hook to bypass this you
|
805 |
-
* can put in your plugin or theme below ---v
|
806 |
-
*
|
807 |
-
* apply_filters( 'bbp_spill_the_beans', '__return_true' );
|
808 |
-
*/
|
809 |
-
if ( !apply_filters( 'bbp_spill_the_beans', false ) ) {
|
810 |
-
|
811 |
-
// Empty globals that aren't being used in this loop anymore
|
812 |
-
$GLOBALS['withcomments'] = false;
|
813 |
-
$GLOBALS['post'] = false;
|
814 |
-
|
815 |
-
// Reset the post data when the next sidebar is fired
|
816 |
-
add_action( 'get_sidebar', 'bbp_theme_compat_reset_post_data' );
|
817 |
-
add_action( 'get_footer', 'bbp_theme_compat_reset_post_data' );
|
818 |
-
}
|
819 |
}
|
820 |
|
821 |
// Return possibly hi-jacked content
|
822 |
return $content;
|
823 |
}
|
824 |
|
825 |
-
/**
|
826 |
-
* Resets the post data after the content has displayed
|
827 |
-
*
|
828 |
-
* @since bbPress (r3724)
|
829 |
-
* @uses wp_reset_postdata() To reset the post data
|
830 |
-
* @uses remove_action() To unhook itself so it does not fire more than once
|
831 |
-
*/
|
832 |
-
function bbp_theme_compat_reset_post_data() {
|
833 |
-
static $ran = false;
|
834 |
-
|
835 |
-
// Bail if this already ran
|
836 |
-
if ( true === $ran )
|
837 |
-
return;
|
838 |
-
|
839 |
-
// Reset the post data to whatever our global post is
|
840 |
-
wp_reset_postdata();
|
841 |
-
|
842 |
-
// Prevent this from firing again
|
843 |
-
remove_action( 'get_sidebar', 'bbp_theme_compat_reset_post_data' );
|
844 |
-
remove_action( 'get_footer', 'bbp_theme_compat_reset_post_data' );
|
845 |
-
|
846 |
-
// Set this to true so it does not run again
|
847 |
-
$ran = true;
|
848 |
-
}
|
849 |
-
|
850 |
/** Helpers *******************************************************************/
|
851 |
|
852 |
/**
|
304 |
'post_author' => 0,
|
305 |
'post_date' => 0,
|
306 |
'post_content' => '',
|
307 |
+
'post_excerpt' => '',
|
308 |
'post_type' => 'page',
|
309 |
'post_status' => bbp_get_public_status_id(),
|
310 |
'post_name' => '',
|
324 |
'post_author' => get_the_author_meta('ID'),
|
325 |
'post_date' => get_the_date(),
|
326 |
'post_content' => get_the_content(),
|
327 |
+
'post_excerpt' => get_the_excerpt(),
|
328 |
'post_type' => get_post_type(),
|
329 |
'post_status' => get_post_status(),
|
330 |
'post_name' => !empty( $wp_query->post->post_name ) ? $wp_query->post->post_name : '',
|
350 |
$wp_query->post->post_author = $dummy['post_author'];
|
351 |
$wp_query->post->post_date = $dummy['post_date'];
|
352 |
$wp_query->post->post_content = $dummy['post_content'];
|
353 |
+
$wp_query->post->post_excerpt = $dummy['post_excerpt'];
|
354 |
$wp_query->post->post_type = $dummy['post_type'];
|
355 |
$wp_query->post->post_status = $dummy['post_status'];
|
356 |
$wp_query->post->post_name = $dummy['post_name'];
|
409 |
|
410 |
/** Users *************************************************************/
|
411 |
|
412 |
+
if ( bbp_is_single_user_edit() || bbp_is_single_user() ) {
|
413 |
|
414 |
// Reset post
|
415 |
bbp_theme_compat_reset_post( array(
|
416 |
+
'ID' => 0,
|
417 |
+
'post_author' => 0,
|
418 |
+
'post_date' => 0,
|
419 |
+
'post_content' => '',
|
420 |
+
'post_type' => '',
|
421 |
'post_title' => esc_attr( bbp_get_displayed_user_field( 'display_name' ) ),
|
422 |
+
'post_status' => bbp_get_public_status_id(),
|
423 |
+
'is_archive' => false,
|
424 |
'comment_status' => 'closed'
|
425 |
) );
|
426 |
|
427 |
/** Forums ************************************************************/
|
428 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
429 |
// Forum archive
|
430 |
} elseif ( bbp_is_forum_archive() ) {
|
431 |
|
442 |
'comment_status' => 'closed'
|
443 |
) );
|
444 |
|
445 |
+
// Single Forum
|
446 |
+
} elseif ( bbp_is_forum_edit() || bbp_is_single_forum() ) {
|
447 |
+
|
448 |
+
// Reset post
|
449 |
+
bbp_theme_compat_reset_post( array(
|
450 |
+
'ID' => bbp_get_forum_id(),
|
451 |
+
'post_title' => bbp_get_forum_title(),
|
452 |
+
'post_author' => bbp_get_forum_author_id(),
|
453 |
+
'post_date' => 0,
|
454 |
+
'post_content' => get_post_field( 'post_content', bbp_get_forum_id() ),
|
455 |
+
'post_type' => bbp_get_forum_post_type(),
|
456 |
+
'post_status' => bbp_get_forum_visibility(),
|
457 |
+
'is_single' => true,
|
458 |
+
'comment_status' => 'closed'
|
459 |
+
) );
|
460 |
+
|
461 |
/** Topics ************************************************************/
|
462 |
|
463 |
// Topic archive
|
476 |
'comment_status' => 'closed'
|
477 |
) );
|
478 |
|
479 |
+
// Single Topic
|
480 |
+
} elseif ( bbp_is_topic_edit() || bbp_is_topic_split() || bbp_is_topic_merge() || bbp_is_single_topic() ) {
|
481 |
|
482 |
// Reset post
|
483 |
bbp_theme_compat_reset_post( array(
|
509 |
'comment_status' => 'closed'
|
510 |
) );
|
511 |
|
512 |
+
// Single Reply
|
513 |
+
} elseif ( bbp_is_reply_edit() || bbp_is_single_reply() ) {
|
514 |
|
515 |
// Reset post
|
516 |
bbp_theme_compat_reset_post( array(
|
540 |
'comment_status' => 'closed'
|
541 |
) );
|
542 |
|
|
|
543 |
/** Topic Tags ********************************************************/
|
544 |
|
545 |
+
// Topic Tag Edit
|
546 |
} elseif ( bbp_is_topic_tag_edit() ) {
|
547 |
|
548 |
// Stash the current term in a new var
|
550 |
|
551 |
// Reset the post with our new title
|
552 |
bbp_theme_compat_reset_post( array(
|
553 |
+
'ID' => 0,
|
554 |
+
'post_author' => 0,
|
555 |
+
'post_date' => 0,
|
556 |
+
'post_content' => '',
|
557 |
+
'post_type' => '',
|
558 |
+
'post_title' => sprintf( __( 'Topic Tag: %s', 'bbpress' ), '<span>' . bbp_get_topic_tag_name() . '</span>' ),
|
559 |
+
'post_status' => bbp_get_public_status_id(),
|
560 |
+
'comment_status' => 'closed'
|
561 |
) );
|
562 |
|
563 |
+
// Topc Tag
|
564 |
} elseif ( bbp_is_topic_tag() ) {
|
565 |
|
566 |
// Stash the current term in a new var
|
568 |
|
569 |
// Reset the post with our new title
|
570 |
bbp_theme_compat_reset_post( array(
|
571 |
+
'ID' => 0,
|
572 |
+
'post_author' => 0,
|
573 |
+
'post_date' => 0,
|
574 |
+
'post_content' => '',
|
575 |
+
'post_type' => '',
|
576 |
+
'post_title' => sprintf( __( 'Topic Tag: %s', 'bbpress' ), '<span>' . bbp_get_topic_tag_name() . '</span>' ),
|
577 |
+
'post_status' => bbp_get_public_status_id(),
|
578 |
+
'comment_status' => 'closed'
|
579 |
) );
|
|
|
|
|
|
|
|
|
|
|
580 |
}
|
581 |
|
582 |
/**
|
657 |
|
658 |
/** Forums ************************************************************/
|
659 |
|
|
|
|
|
|
|
|
|
660 |
// Forum archive
|
661 |
} elseif ( bbp_is_forum_archive() ) {
|
662 |
|
687 |
$new_content = $bbp->shortcodes->display_forum_index();
|
688 |
}
|
689 |
|
690 |
+
// Forum Edit
|
691 |
+
} elseif ( bbp_is_forum_edit() ) {
|
692 |
+
$new_content = $bbp->shortcodes->display_forum_form();
|
693 |
+
|
694 |
+
// Single Forum
|
695 |
+
} elseif ( bbp_is_single_forum() ) {
|
696 |
+
$new_content = $bbp->shortcodes->display_forum( array( 'id' => get_the_ID() ) );
|
697 |
+
|
698 |
/** Topics ************************************************************/
|
699 |
|
700 |
// Topic archive
|
727 |
$new_content = $bbp->shortcodes->display_topic_index();
|
728 |
}
|
729 |
|
730 |
+
// Topic Edit
|
731 |
} elseif ( bbp_is_topic_edit() ) {
|
732 |
|
733 |
// Split
|
755 |
$new_content = $bbp->shortcodes->display_topic_form();
|
756 |
}
|
757 |
|
758 |
+
// Single Topic
|
759 |
+
} elseif ( bbp_is_single_topic() ) {
|
760 |
+
$new_content = $bbp->shortcodes->display_topic( array( 'id' => get_the_ID() ) );
|
761 |
+
|
762 |
/** Replies ***********************************************************/
|
763 |
|
764 |
// Reply archive
|
769 |
} elseif ( bbp_is_reply_edit() ) {
|
770 |
$new_content = $bbp->shortcodes->display_reply_form();
|
771 |
|
772 |
+
// Single Reply
|
773 |
+
} elseif ( bbp_is_single_reply() ) {
|
774 |
+
$new_content = $bbp->shortcodes->display_reply( array( 'id' => get_the_ID() ) );
|
775 |
+
|
776 |
/** Views *************************************************************/
|
777 |
|
778 |
} elseif ( bbp_is_single_view() ) {
|
790 |
} else {
|
791 |
$new_content = $bbp->shortcodes->display_topics_of_tag( array( 'id' => bbp_get_topic_tag_id() ) );
|
792 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
793 |
}
|
794 |
|
795 |
// Juggle the content around and try to prevent unsightly comments
|
801 |
// Clean up after ourselves
|
802 |
unset( $new_content );
|
803 |
|
804 |
+
// Reset the $post global
|
805 |
+
wp_reset_postdata();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
806 |
}
|
807 |
|
808 |
// Return possibly hi-jacked content
|
809 |
return $content;
|
810 |
}
|
811 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
812 |
/** Helpers *******************************************************************/
|
813 |
|
814 |
/**
|
bbp-includes/bbp-topic-functions.php
CHANGED
@@ -2873,6 +2873,9 @@ function bbp_delete_topic( $topic_id = 0 ) {
|
|
2873 |
foreach ( $replies->posts as $reply ) {
|
2874 |
wp_delete_post( $reply->ID, true );
|
2875 |
}
|
|
|
|
|
|
|
2876 |
}
|
2877 |
}
|
2878 |
|
@@ -2923,6 +2926,9 @@ function bbp_trash_topic( $topic_id = 0 ) {
|
|
2923 |
// This is so we can possibly untrash them, without untrashing replies
|
2924 |
// that were purposefully trashed before.
|
2925 |
update_post_meta( $topic_id, '_bbp_pre_trashed_replies', $pre_trashed_replies );
|
|
|
|
|
|
|
2926 |
}
|
2927 |
}
|
2928 |
|
2873 |
foreach ( $replies->posts as $reply ) {
|
2874 |
wp_delete_post( $reply->ID, true );
|
2875 |
}
|
2876 |
+
|
2877 |
+
// Reset the $post global
|
2878 |
+
wp_reset_postdata();
|
2879 |
}
|
2880 |
}
|
2881 |
|
2926 |
// This is so we can possibly untrash them, without untrashing replies
|
2927 |
// that were purposefully trashed before.
|
2928 |
update_post_meta( $topic_id, '_bbp_pre_trashed_replies', $pre_trashed_replies );
|
2929 |
+
|
2930 |
+
// Reset the $post global
|
2931 |
+
wp_reset_postdata();
|
2932 |
}
|
2933 |
}
|
2934 |
|
bbp-theme-compat/css/bbpress-rtl.css
CHANGED
@@ -8,8 +8,7 @@
|
|
8 |
/* =bbPress Style
|
9 |
-------------------------------------------------------------- */
|
10 |
|
11 |
-
#
|
12 |
-
#container hr {
|
13 |
margin: 0 0 24px 0;
|
14 |
}
|
15 |
|
@@ -18,6 +17,7 @@
|
|
18 |
clear: both;
|
19 |
margin-bottom: 20px;
|
20 |
overflow: hidden;
|
|
|
21 |
}
|
22 |
|
23 |
#bbpress-forums div.even,
|
@@ -59,6 +59,11 @@
|
|
59 |
padding: 0;
|
60 |
}
|
61 |
|
|
|
|
|
|
|
|
|
|
|
62 |
#bbpress-forums ul.bbp-lead-topic,
|
63 |
#bbpress-forums ul.bbp-topics,
|
64 |
#bbpress-forums ul.bbp-forums,
|
@@ -93,9 +98,20 @@
|
|
93 |
overflow: hidden;
|
94 |
}
|
95 |
|
96 |
-
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
97 |
#bbpress-forums li.bbp-footer p {
|
98 |
-
margin
|
|
|
99 |
}
|
100 |
|
101 |
#bbpress-forums .bbp-topic-content img,
|
@@ -109,8 +125,8 @@
|
|
109 |
padding-right: 15px;
|
110 |
}
|
111 |
|
112 |
-
.bbp-forum-
|
113 |
-
|
114 |
font-style: italic;
|
115 |
}
|
116 |
|
8 |
/* =bbPress Style
|
9 |
-------------------------------------------------------------- */
|
10 |
|
11 |
+
#bbpress-forums hr {
|
|
|
12 |
margin: 0 0 24px 0;
|
13 |
}
|
14 |
|
17 |
clear: both;
|
18 |
margin-bottom: 20px;
|
19 |
overflow: hidden;
|
20 |
+
font-size: 12px;
|
21 |
}
|
22 |
|
23 |
#bbpress-forums div.even,
|
59 |
padding: 0;
|
60 |
}
|
61 |
|
62 |
+
#bbpress-forums li {
|
63 |
+
margin: 0;
|
64 |
+
list-style: none;
|
65 |
+
}
|
66 |
+
|
67 |
#bbpress-forums ul.bbp-lead-topic,
|
68 |
#bbpress-forums ul.bbp-topics,
|
69 |
#bbpress-forums ul.bbp-forums,
|
98 |
overflow: hidden;
|
99 |
}
|
100 |
|
101 |
+
#bbpress-forums .bbp-forums-list {
|
102 |
+
margin: 0 5px 0 0;
|
103 |
+
padding-right: 15px;
|
104 |
+
border-right: 1px solid #ddd;
|
105 |
+
}
|
106 |
+
|
107 |
+
#bbpress-forums .bbp-forums-list li {
|
108 |
+
display: inline;
|
109 |
+
font-size: 11px;
|
110 |
+
}
|
111 |
+
|
112 |
#bbpress-forums li.bbp-footer p {
|
113 |
+
margin: 0;
|
114 |
+
line-height: 1em;
|
115 |
}
|
116 |
|
117 |
#bbpress-forums .bbp-topic-content img,
|
125 |
padding-right: 15px;
|
126 |
}
|
127 |
|
128 |
+
#bbpress-forums .bbp-forum-content p {
|
129 |
+
margin: 5px 0 0;
|
130 |
font-style: italic;
|
131 |
}
|
132 |
|
bbp-theme-compat/css/bbpress.css
CHANGED
@@ -60,6 +60,7 @@
|
|
60 |
}
|
61 |
|
62 |
#bbpress-forums li {
|
|
|
63 |
list-style: none;
|
64 |
}
|
65 |
|
@@ -120,12 +121,8 @@
|
|
120 |
|
121 |
#bbpress-forums .bbp-topic-content ul,
|
122 |
#bbpress-forums .bbp-reply-content ul {
|
123 |
-
padding-left: 15px;
|
124 |
-
}
|
125 |
-
|
126 |
-
#bbpress-forums .bbp-topic-content ul li,
|
127 |
-
#bbpress-forums .bbp-reply-content ul li {
|
128 |
list-style: square;
|
|
|
129 |
}
|
130 |
|
131 |
#bbpress-forums .bbp-forum-content p {
|
60 |
}
|
61 |
|
62 |
#bbpress-forums li {
|
63 |
+
margin: 0;
|
64 |
list-style: none;
|
65 |
}
|
66 |
|
121 |
|
122 |
#bbpress-forums .bbp-topic-content ul,
|
123 |
#bbpress-forums .bbp-reply-content ul {
|
|
|
|
|
|
|
|
|
|
|
124 |
list-style: square;
|
125 |
+
padding-left: 15px;
|
126 |
}
|
127 |
|
128 |
#bbpress-forums .bbp-forum-content p {
|
bbpress.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
*
|
6 |
* bbPress is forum software with a twist from the creators of WordPress.
|
7 |
*
|
8 |
-
* $Id: bbpress.php
|
9 |
*
|
10 |
* @package bbPress
|
11 |
* @subpackage Main
|
@@ -17,7 +17,7 @@
|
|
17 |
* Description: bbPress is forum software with a twist from the creators of WordPress.
|
18 |
* Author: The bbPress Community
|
19 |
* Author URI: http://bbpress.org
|
20 |
-
* Version: 2.1.
|
21 |
* Text Domain: bbpress
|
22 |
* Domain Path: /bbp-languages/
|
23 |
*/
|
@@ -173,7 +173,7 @@ final class bbPress {
|
|
173 |
|
174 |
/** Versions **********************************************************/
|
175 |
|
176 |
-
$this->version = '2.1.
|
177 |
$this->db_version = '212'; // bbPress DB version
|
178 |
|
179 |
/** Paths *************************************************************/
|
5 |
*
|
6 |
* bbPress is forum software with a twist from the creators of WordPress.
|
7 |
*
|
8 |
+
* $Id: bbpress.php 4378 2012-11-09 16:28:15Z johnjamesjacoby $
|
9 |
*
|
10 |
* @package bbPress
|
11 |
* @subpackage Main
|
17 |
* Description: bbPress is forum software with a twist from the creators of WordPress.
|
18 |
* Author: The bbPress Community
|
19 |
* Author URI: http://bbpress.org
|
20 |
+
* Version: 2.1.3
|
21 |
* Text Domain: bbpress
|
22 |
* Domain Path: /bbp-languages/
|
23 |
*/
|
173 |
|
174 |
/** Versions **********************************************************/
|
175 |
|
176 |
+
$this->version = '2.1.3'; // bbPress version
|
177 |
$this->db_version = '212'; // bbPress DB version
|
178 |
|
179 |
/** Paths *************************************************************/
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: matt, johnjamesjacoby
|
|
3 |
Tags: forums, discussion, support, theme, akismet, multisite
|
4 |
Requires at least: 3.4
|
5 |
Tested up to: 3.4
|
6 |
-
Stable tag: 2.1.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -26,6 +26,12 @@ We're keeping things as small and light as possible while still allowing for gre
|
|
26 |
|
27 |
== Changelog ==
|
28 |
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
= 2.1.2 =
|
30 |
* Fixed admin-side help verbiage
|
31 |
* Fixed reply height CSS
|
3 |
Tags: forums, discussion, support, theme, akismet, multisite
|
4 |
Requires at least: 3.4
|
5 |
Tested up to: 3.4
|
6 |
+
Stable tag: 2.1.3
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
26 |
|
27 |
== Changelog ==
|
28 |
|
29 |
+
= 2.1.3 =
|
30 |
+
* Fixed post_excerpt conflict with Jetpack 2.0
|
31 |
+
* Fixed theme compat CSS issues
|
32 |
+
* Fixed non-latin chars in slugs on import
|
33 |
+
* Fixes index on topics query
|
34 |
+
|
35 |
= 2.1.2 =
|
36 |
* Fixed admin-side help verbiage
|
37 |
* Fixed reply height CSS
|
screenshot-1.png
DELETED
Binary file
|
screenshot-2.png
DELETED
Binary file
|
screenshot-3.png
DELETED
Binary file
|
screenshot-4.png
DELETED
Binary file
|
screenshot-5.png
DELETED
Binary file
|
screenshot-6.png
DELETED
Binary file
|
screenshot-7.png
DELETED
Binary file
|