.' ), __( 'https://wordpress.org/' ) );
/**
* Filter the "Thank you" text displayed in the admin footer.
*
* @since 2.8.0
- * @param string The content that will be printed.
+ *
+ * @param string $text The content that will be printed.
*/
- echo apply_filters( 'admin_footer_text', '' );
+ echo apply_filters( 'admin_footer_text', '' );
?>
' . __( 'For more information:' ) . '
' .
'
' . __( 'Documentation on Comments' ) . '
' .
- '
' . __( 'Support Forums' ) . '
'
+ '
' . __( 'Support Forums' ) . '
'
);
wp_enqueue_script('comment');
@@ -115,7 +115,6 @@ case 'spam' :
-
comment_approved != '0' ) { // if not unapproved
- |
+ |
comment_content; ?> |
diff --git a/sources/wp-admin/credits.php b/sources/wp-admin/credits.php
index 06fe44b..87ebc86 100644
--- a/sources/wp-admin/credits.php
+++ b/sources/wp-admin/credits.php
@@ -18,7 +18,7 @@ $title = __( 'Credits' );
*
* @since 3.2.0
*
- * @return array A list of all of the contributors.
+ * @return array|bool A list of all of the contributors, or false on error.
*/
function wp_credits() {
global $wp_version;
@@ -27,6 +27,7 @@ function wp_credits() {
$results = get_site_transient( 'wordpress_credits_' . $locale );
if ( ! is_array( $results )
+ || false !== strpos( $wp_version, '-' )
|| ( isset( $results['data']['version'] ) && strpos( $wp_version, $results['data']['version'] ) !== 0 )
) {
$response = wp_remote_get( "http://api.wordpress.org/core/credits/1.1/?version=$wp_version&locale=$locale" );
@@ -52,7 +53,7 @@ function wp_credits() {
* @since 3.2.0
*
* @param string &$display_name The contributor's display name, passed by reference.
- * @param string $user_name The contributor's username.
+ * @param string $username The contributor's username.
* @param string $profiles URL to the contributor's WordPress.org profile page.
* @return string A contributor's display name, hyperlinked to a WordPress.org profile page.
*/
@@ -81,7 +82,7 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
-
+
@@ -101,7 +102,7 @@ $credits = wp_credits();
if ( ! $credits ) {
echo '
' . sprintf( __( 'WordPress is created by a worldwide team of passionate individuals. Get involved in WordPress.' ),
- 'http://wordpress.org/about/',
+ 'https://wordpress.org/about/',
/* translators: Url to the codex documentation on contributing to WordPress used on the credits page */
__( 'http://codex.wordpress.org/Contributing_to_WordPress' ) ) . '
';
include( ABSPATH . 'wp-admin/admin-footer.php' );
@@ -159,8 +160,8 @@ foreach ( $credits['groups'] as $group_slug => $group_data ) {
?>
Get involved in WordPress.' ),
- /* translators: Url to the codex documentation on contributing to WordPress used on the credits page */
- __( 'http://codex.wordpress.org/Contributing_to_WordPress' ) ); ?>
+ /* translators: URL to the Make WordPress 'Get Involved' landing page used on the credits page */
+ __( 'https://make.wordpress.org/' ) ); ?>
div {
+ position: relative;
+ width: 47.5%;
+ margin-left: 4.999999999%;
+ float: right;
+}
+
+.about-wrap .feature-section.three-col > div {
+ position: relative;
+ width: 29.95%;
+ margin-left: 4.999999999%;
+ float: right;
+}
+
+.about-wrap .feature-section.col .last-feature {
+ margin-left: 0;
+}
+
+.about-wrap .under-the-hood .feature-section {
+ margin-top: 0;
+}
+
+.about-wrap .changelog .feature-section {
+ overflow: hidden;
+}
+
+.about-wrap .feature-section.two-col div p {
+ margin-left: 3%;
+}
+
+.about-wrap .feature-section div p img {
+ float: left;
+ margin-right: 10px;
+ max-width: 20%;
+}
+
+.about-wrap .changelog li {
+ list-style-type: disc;
+ margin-right: 3em;
+}
+
+/* Return to Dashboard Home link */
+
+.about-wrap .return-to-dashboard {
+ margin: 30px -5px 0 0;
+ font-size: 14px;
+ font-weight: bold;
+}
+
+.about-wrap .return-to-dashboard a {
+ text-decoration: none;
+ padding: 0 5px;
+}
+
+/* Credits */
+
+.about-wrap h4.wp-people-group {
+ margin-top: 2.6em;
+ font-size: 16px;
+}
+
+.about-wrap ul.wp-people-group {
+ overflow: hidden;
+ padding: 0 5px;
+ margin: 0 -5px 0 -15px;
+}
+
+.about-wrap ul.compact {
+ margin-bottom: 0
+}
+
+.about-wrap li.wp-person {
+ float: right;
+ margin-left: 10px;
+}
+
+.about-wrap li.wp-person img.gravatar {
+ float: right;
+ margin: 0 0 10px 10px;
+ padding: 2px;
+ width: 60px;
+ height: 60px;
+}
+
+.about-wrap ul.compact li.wp-person img.gravatar {
+ width: 30px;
+ height: 30px;
+}
+
+/* @todo: combine this */
+.about-wrap li.wp-person {
+ height: 70px;
+ width: 280px;
+ padding-bottom: 15px;
+}
+
+.about-wrap ul.compact li.wp-person {
+ height: auto;
+ width: 180px;
+ padding-bottom: 0;
+ margin-bottom: 0;
+}
+
+.about-wrap #wp-people-group-validators + p.wp-credits-list {
+ margin-top: 0;
+}
+
+.about-wrap li.wp-person a.web {
+ display: block;
+ margin: 6px 0 2px;
+ font-size: 16px;
+ text-decoration: none;
+}
+
+.about-wrap p.wp-credits-list a {
+ white-space: nowrap;
+}
+
+/* Freedoms */
+
+.freedoms-php .about-wrap ol {
+ margin: 40px 60px;
+}
+
+.freedoms-php .about-wrap ol li {
+ list-style-type: decimal;
+ font-weight: bold;
+}
+
+.freedoms-php .about-wrap ol p {
+ font-weight: normal;
+ margin: 0.6em 0;
+}
+
+/* =Media Queries
+-------------------------------------------------------------- */
+
+@media screen and ( max-width: 782px ) {
+ .about-wrap .feature-section.one-col > div,
+ .about-wrap .feature-section.two-col > div,
+ .about-wrap .feature-section.three-col > div {
+ width: 100%;
+ margin: 0 0 40px;
+ padding: 0 0 40px;
+ float: none;
+ border-bottom: 1px solid rgba(0, 0, 0, 0.1);
+ }
+
+ .about-wrap .under-the-hood .feature-section > div,
+ .about-wrap .feature-section.col > div.last-feature {
+ margin: 0;
+ padding: 0;
+ border-bottom: none;
+ }
+
+}
+
+@media only screen and (max-width: 500px) {
+ .about-wrap {
+ margin-left: 20px;
+ margin-right: 10px;
+ }
+
+ .about-wrap h1,
+ .about-text {
+ margin-left: 0;
+ }
+
+ .about-text {
+ margin-bottom: 0.25em;
+ }
+
+ .about-wrap .wp-badge {
+ position: relative;
+ margin-bottom: 1.5em;
+ width: 100%;
+ }
+
+ .about-wrap .feature-section.three-col div {
+ width: 100%;
+ float: none;
+ }
+
+ .about-wrap .three-col.about-updates .col-1 {
+ padding: 0;
+ float: none;
+ }
+
+ .about-wrap .three-col.about-updates .col-2 {
+ margin: 0 0 20px;
+ width: 100%;
+ float: none;
+ }
+}
\ No newline at end of file
diff --git a/sources/wp-admin/css/about.css b/sources/wp-admin/css/about.css
new file mode 100644
index 0000000..44c85c8
--- /dev/null
+++ b/sources/wp-admin/css/about.css
@@ -0,0 +1,388 @@
+/*------------------------------------------------------------------------------
+ 22.0 - About Pages
+------------------------------------------------------------------------------*/
+
+.about-wrap {
+ position: relative;
+ margin: 25px 40px 0 20px;
+ max-width: 1050px; /* readability */
+
+ font-size: 15px;
+}
+
+.about-wrap div.updated,
+.about-wrap div.error {
+ display: none !important;
+}
+
+.about-wrap hr {
+ border: 0;
+ height: 0;
+ margin: 0;
+ border-top: 1px solid rgba(0, 0, 0, 0.1);
+}
+
+.about-wrap img {
+ margin: 0;
+ max-width: 100%;
+ vertical-align: middle;
+}
+
+/* Typography */
+
+.about-wrap p {
+ line-height: 1.6em;
+ font-size: 14px;
+}
+
+.about-wrap h1 {
+ margin: 0.2em 200px 0 0;
+ color: #333;
+ line-height: 1.2em;
+ font-size: 2.8em;
+ font-weight: 400;
+}
+
+.about-wrap h4 {
+ color: #222;
+}
+
+.about-wrap .about-text,
+.about-wrap p.about-description,
+.about-wrap li.wp-person a.web {
+ font-weight: normal;
+ line-height: 1.6em;
+ font-size: 19px;
+}
+
+.about-description {
+ margin-top: 1.4em;
+}
+
+.about-text {
+ margin: 1em 200px 1em 0;
+ min-height: 60px;
+ color: #777;
+ font-size: 24px;
+}
+
+.about-wrap .changelog h2.about-headline-callout {
+ margin: 1.1em 0 0.2em;
+ font-size: 2.4em;
+ font-weight: 300;
+ line-height: 1.3;
+ text-align: center;
+}
+
+.about-wrap h3 {
+ margin: 1em 0 .6em;
+ font-size: 1.5em;
+ line-height: 1.5em;
+}
+
+.customize h3 {
+ margin-top: 1.75em;
+ text-align: center;
+}
+
+.about-wrap .feature-section h4 {
+ margin: 1.4em 0 0.6em 0;
+ font-size: 1.2em;
+}
+
+.about-wrap .feature-section p {
+ margin-top: 0.6em;
+}
+
+.about-wrap code,
+.about-wrap ol li p {
+ font-size: 14px;
+}
+
+.about-wrap .button.button-large {
+ padding: 8px 20px 10px !important;
+ height: 46px !important;
+ font-size: 14px;
+ line-height: 28px !important;
+}
+
+/* 3.8 Images */
+
+.about-wrap .about-overview-img {
+ margin: 0;
+}
+
+/* Point Releases */
+
+.about-wrap .point-releases {
+ margin-top: 5px;
+ border-bottom: 1px solid #dfdfdf;
+}
+
+.about-wrap .changelog.point-releases h3 {
+ padding-top: 35px;
+}
+
+.about-wrap .changelog.point-releases h3:first-child {
+ padding-top: 7px;
+}
+
+/* WordPress Version Badge */
+
+.wp-badge {
+ background: #0074a2 url(../images/w-logo-white.png?ver=20131202) no-repeat;
+ background: #0074a2, url(../images/wordpress-logo-white.svg?ver=20131110) no-repeat; /* multiple backgrounds are ignored by browsers that don't support SVGs */
+ background-position: center 24px;
+ -webkit-background-size: 85px 85px;
+ background-size: 85px 85px;
+ color: #78c8e6;
+ font-size: 14px;
+ text-align: center;
+ font-weight: 600;
+ margin: 5px 0 0;
+ padding-top: 120px;
+ height: 40px;
+ display: inline-block;
+ width: 150px;
+ text-rendering: optimizeLegibility;
+ -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.2);
+ box-shadow: 0 1px 3px rgba(0,0,0,0.2);
+}
+
+
+.about-wrap .wp-badge {
+ position: absolute;
+ top: 0;
+ right: 0;
+}
+
+/* Tabs */
+
+.about-wrap h2.nav-tab-wrapper {
+ padding-left: 6px;
+}
+
+.about-wrap h2 .nav-tab {
+ padding: 4px 15px 6px;
+ margin: 0 3px -1px 0;
+ font-size: 18px;
+ vertical-align: top;
+ border-width: 1px;
+}
+
+/* Changelog / Update screen */
+
+.about-overview {
+ margin-top: 40px;
+ text-align: center;
+}
+
+.about-overview .wp-video {
+ margin: 0 auto;
+}
+
+.changelog .wp-playlist .wp-playlist-current-item img {
+ height: 64px;
+ width: auto;
+ max-width: 100%;
+}
+
+.about-wrap .feature-section {
+ margin-top: 40px;
+ padding-bottom: 20px;
+}
+
+.about-wrap .feature-section.two-col > div {
+ position: relative;
+ width: 47.5%;
+ margin-right: 4.999999999%;
+ float: left;
+}
+
+.about-wrap .feature-section.three-col > div {
+ position: relative;
+ width: 29.95%;
+ margin-right: 4.999999999%;
+ float: left;
+}
+
+.about-wrap .feature-section.col .last-feature {
+ margin-right: 0;
+}
+
+.about-wrap .under-the-hood .feature-section {
+ margin-top: 0;
+}
+
+.about-wrap .changelog .feature-section {
+ overflow: hidden;
+}
+
+.about-wrap .feature-section.two-col div p {
+ margin-right: 3%;
+}
+
+.about-wrap .feature-section div p img {
+ float: right;
+ margin-left: 10px;
+ max-width: 20%;
+}
+
+.about-wrap .changelog li {
+ list-style-type: disc;
+ margin-left: 3em;
+}
+
+/* Return to Dashboard Home link */
+
+.about-wrap .return-to-dashboard {
+ margin: 30px 0 0 -5px;
+ font-size: 14px;
+ font-weight: bold;
+}
+
+.about-wrap .return-to-dashboard a {
+ text-decoration: none;
+ padding: 0 5px;
+}
+
+/* Credits */
+
+.about-wrap h4.wp-people-group {
+ margin-top: 2.6em;
+ font-size: 16px;
+}
+
+.about-wrap ul.wp-people-group {
+ overflow: hidden;
+ padding: 0 5px;
+ margin: 0 -15px 0 -5px;
+}
+
+.about-wrap ul.compact {
+ margin-bottom: 0
+}
+
+.about-wrap li.wp-person {
+ float: left;
+ margin-right: 10px;
+}
+
+.about-wrap li.wp-person img.gravatar {
+ float: left;
+ margin: 0 10px 10px 0;
+ padding: 2px;
+ width: 60px;
+ height: 60px;
+}
+
+.about-wrap ul.compact li.wp-person img.gravatar {
+ width: 30px;
+ height: 30px;
+}
+
+/* @todo: combine this */
+.about-wrap li.wp-person {
+ height: 70px;
+ width: 280px;
+ padding-bottom: 15px;
+}
+
+.about-wrap ul.compact li.wp-person {
+ height: auto;
+ width: 180px;
+ padding-bottom: 0;
+ margin-bottom: 0;
+}
+
+.about-wrap #wp-people-group-validators + p.wp-credits-list {
+ margin-top: 0;
+}
+
+.about-wrap li.wp-person a.web {
+ display: block;
+ margin: 6px 0 2px;
+ font-size: 16px;
+ text-decoration: none;
+}
+
+.about-wrap p.wp-credits-list a {
+ white-space: nowrap;
+}
+
+/* Freedoms */
+
+.freedoms-php .about-wrap ol {
+ margin: 40px 60px;
+}
+
+.freedoms-php .about-wrap ol li {
+ list-style-type: decimal;
+ font-weight: bold;
+}
+
+.freedoms-php .about-wrap ol p {
+ font-weight: normal;
+ margin: 0.6em 0;
+}
+
+/* =Media Queries
+-------------------------------------------------------------- */
+
+@media screen and ( max-width: 782px ) {
+ .about-wrap .feature-section.one-col > div,
+ .about-wrap .feature-section.two-col > div,
+ .about-wrap .feature-section.three-col > div {
+ width: 100%;
+ margin: 0 0 40px;
+ padding: 0 0 40px;
+ float: none;
+ border-bottom: 1px solid rgba(0, 0, 0, 0.1);
+ }
+
+ .about-wrap .under-the-hood .feature-section > div,
+ .about-wrap .feature-section.col > div.last-feature {
+ margin: 0;
+ padding: 0;
+ border-bottom: none;
+ }
+
+}
+
+@media only screen and (max-width: 500px) {
+ .about-wrap {
+ margin-right: 20px;
+ margin-left: 10px;
+ }
+
+ .about-wrap h1,
+ .about-text {
+ margin-right: 0;
+ }
+
+ .about-text {
+ margin-bottom: 0.25em;
+ }
+
+ .about-wrap .wp-badge {
+ position: relative;
+ margin-bottom: 1.5em;
+ width: 100%;
+ }
+
+ .about-wrap .feature-section.three-col div {
+ width: 100%;
+ float: none;
+ }
+
+ .about-wrap .three-col.about-updates .col-1 {
+ padding: 0;
+ float: none;
+ }
+
+ .about-wrap .three-col.about-updates .col-2 {
+ margin: 0 0 20px;
+ width: 100%;
+ float: none;
+ }
+}
\ No newline at end of file
diff --git a/sources/wp-admin/css/admin-menu-rtl.css b/sources/wp-admin/css/admin-menu-rtl.css
new file mode 100644
index 0000000..9b10663
--- /dev/null
+++ b/sources/wp-admin/css/admin-menu-rtl.css
@@ -0,0 +1,917 @@
+#adminmenuback,
+#adminmenuwrap,
+#adminmenu,
+#adminmenu .wp-submenu {
+ width: 160px;
+ background-color: #222;
+}
+
+#adminmenuback {
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ z-index: -1;
+}
+
+#adminmenu {
+ clear: right;
+ margin: 12px 0 0;
+ padding: 0;
+ list-style: none;
+}
+
+.folded #adminmenuback,
+.folded #adminmenuwrap,
+.folded #adminmenu,
+.folded #adminmenu li.menu-top {
+ width: 36px;
+}
+
+.icon16 {
+ height: 18px;
+ width: 18px;
+ padding: 6px 6px;
+ margin: -6px -8px 0 0;
+ float: right;
+}
+
+/* New Menu icons */
+
+.icon16:before {
+ color: #999;
+ font: normal 20px/1 'dashicons';
+ speak: none;
+ padding: 6px 0;
+ height: 34px;
+ width: 20px;
+ display: inline-block;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ -webkit-transition: all .1s ease-in-out;
+ transition: all .1s ease-in-out;
+}
+
+.icon16.icon-dashboard:before {
+ content: '\f226';
+}
+
+.icon16.icon-post:before {
+ content: '\f109';
+}
+
+.icon16.icon-media:before {
+ content: '\f104';
+}
+
+.icon16.icon-links:before {
+ content: '\f103';
+}
+
+.icon16.icon-page:before {
+ content: '\f105';
+}
+
+.icon16.icon-comments:before {
+ content: '\f101';
+ margin-top: 1px;
+}
+
+.icon16.icon-appearance:before {
+ content: '\f100';
+}
+
+.icon16.icon-plugins:before {
+ content: '\f106';
+}
+
+.icon16.icon-users:before {
+ content: '\f110';
+}
+
+.icon16.icon-tools:before {
+ content: '\f107';
+}
+
+.icon16.icon-settings:before {
+ content: '\f108';
+}
+
+.icon16.icon-site:before {
+ content: '\f112'
+}
+
+.icon16.icon-generic:before {
+ content: '\f111';
+}
+
+/* hide background-image for icons above */
+.icon16.icon-dashboard,
+.menu-icon-dashboard div.wp-menu-image,
+.icon16.icon-post,
+.menu-icon-post div.wp-menu-image,
+.icon16.icon-media,
+.menu-icon-media div.wp-menu-image,
+.icon16.icon-links,
+.menu-icon-links div.wp-menu-image,
+.icon16.icon-page,
+.menu-icon-page div.wp-menu-image,
+.icon16.icon-comments,
+.menu-icon-comments div.wp-menu-image,
+.icon16.icon-appearance,
+.menu-icon-appearance div.wp-menu-image,
+.icon16.icon-plugins,
+.menu-icon-plugins div.wp-menu-image,
+.icon16.icon-users,
+.menu-icon-users div.wp-menu-image,
+.icon16.icon-tools,
+.menu-icon-tools div.wp-menu-image,
+.icon16.icon-settings,
+.menu-icon-settings div.wp-menu-image,
+.icon16.icon-site,
+.menu-icon-site div.wp-menu-image,
+.icon16.icon-generic,
+.menu-icon-generic div.wp-menu-image {
+ background-image: none !important;
+}
+
+/*------------------------------------------------------------------------------
+ 7.0 - Main Navigation (Left Menu)
+------------------------------------------------------------------------------*/
+
+#adminmenuwrap {
+ position: relative;
+ float: right;
+}
+
+/* side admin menu */
+#adminmenu * {
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
+
+#adminmenu li {
+ margin: 0;
+ padding: 0;
+ cursor: pointer;
+}
+
+#adminmenu a {
+ display: block;
+ line-height: 18px;
+ padding: 2px 5px;
+ color: #eee;
+}
+
+#adminmenu .wp-submenu a {
+ color: #bbb;
+}
+
+#adminmenu .wp-submenu a:hover,
+#adminmenu .wp-submenu a:focus {
+ background: none;
+}
+
+#adminmenu a:hover,
+#adminmenu li.menu-top > a:focus,
+#adminmenu .wp-submenu a:hover,
+#adminmenu .wp-submenu a:focus {
+ color: #2ea2cc;
+}
+
+#adminmenu li.menu-top {
+ border: none;
+ min-height: 34px;
+ position: relative;
+}
+
+#adminmenu .wp-submenu {
+ list-style: none;
+ position: absolute;
+ top: -1000em;
+ right: 160px;
+ overflow: visible;
+ word-wrap: break-word;
+}
+
+#adminmenu .wp-submenu,
+.folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
+.folded #adminmenu .wp-has-current-submenu .wp-submenu {
+ padding: 7px 0 8px;
+ z-index: 9999;
+ background-color: #333;
+ -webkit-box-shadow: 0 3px 5px rgba(0,0,0,0.2);
+ box-shadow: 0 3px 5px rgba(0,0,0,0.2);
+}
+
+.js #adminmenu .sub-open,
+.js #adminmenu .opensub .wp-submenu,
+#adminmenu a.menu-top:focus + .wp-submenu,
+.no-js li.wp-has-submenu:hover .wp-submenu {
+ top: -1px;
+}
+
+#adminmenu .wp-has-current-submenu .wp-submenu,
+.no-js li.wp-has-current-submenu:hover .wp-submenu,
+#adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
+#adminmenu .wp-has-current-submenu .wp-submenu.sub-open,
+#adminmenu .wp-has-current-submenu.opensub .wp-submenu {
+ position: relative;
+ z-index: 3;
+ top: auto;
+ right: auto;
+ left: auto;
+ bottom: auto;
+ border: 0 none;
+ margin-top: 0;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ background-color: #333;
+}
+
+/* ensure that wp-submenu's box shadow doesn't appear on top of the focused menu item's background. */
+#adminmenu li.menu-top:hover,
+#adminmenu li.opensub > a.menu-top,
+#adminmenu li > a.menu-top:focus {
+ position: relative;
+ background-color: #111;
+}
+
+.folded #adminmenu li.menu-top:hover,
+.folded #adminmenu li.opensub > a.menu-top,
+.folded #adminmenu li > a.menu-top:focus {
+ z-index: 10000;
+}
+
+#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,
+#adminmenu .wp-menu-arrow div {
+ background: #0074a2;
+ color: #fff;
+}
+
+.folded #adminmenu .wp-submenu.sub-open,
+.folded #adminmenu .opensub .wp-submenu,
+.folded #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,
+.folded #adminmenu .wp-has-current-submenu.opensub .wp-submenu,
+.folded #adminmenu a.menu-top:focus + .wp-submenu,
+.folded #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu,
+.no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu {
+ top: 0;
+ right: 36px;
+}
+
+.folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
+.folded #adminmenu .wp-has-current-submenu .wp-submenu {
+ position: absolute;
+ top: -1000em;
+}
+
+#adminmenu .wp-not-current-submenu .wp-submenu,
+.folded #adminmenu .wp-has-current-submenu .wp-submenu {
+ min-width: 160px;
+ width: auto;
+}
+
+#adminmenu .wp-submenu a {
+ font-size: 13px;
+ line-height: 1.2;
+ margin: 0;
+ padding: 6px 0;
+}
+
+#adminmenu .wp-submenu li.current,
+#adminmenu .wp-submenu li.current a,
+#adminmenu .opensub .wp-submenu li.current a,
+#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a,
+#adminmenu .wp-submenu li.current a:hover,
+#adminmenu .wp-submenu li.current a:focus {
+ color: #fff;
+}
+
+#adminmenu .wp-not-current-submenu li > a,
+.folded #adminmenu .wp-has-current-submenu li > a {
+ padding-left: 16px;
+ padding-right: 14px;
+ -webkit-transition: all .1s ease-in-out;
+ transition: all .1s ease-in-out;
+}
+
+#adminmenu .wp-has-current-submenu ul > li > a,
+.folded #adminmenu li.menu-top .wp-submenu > li > a {
+ padding: 6px 12px;
+}
+
+#adminmenu a.menu-top,
+#adminmenu .wp-submenu-head {
+ font-size: 14px;
+ font-weight: 400;
+ line-height: 18px;
+ padding: 0;
+}
+
+#adminmenu .wp-submenu-head,
+.folded #adminmenu .wp-menu-name {
+ display: none;
+}
+
+.folded #adminmenu .wp-submenu-head {
+ display: block;
+}
+
+#adminmenu .wp-submenu li {
+ padding: 0;
+ margin: 0;
+ overflow: hidden;
+}
+
+#adminmenu .wp-menu-image img {
+ padding: 9px 0 0 0;
+ opacity: 0.6;
+ filter: alpha(opacity=60);
+}
+
+#adminmenu div.wp-menu-name {
+ padding: 8px 0;
+}
+
+#adminmenu div.wp-menu-image {
+ float: right;
+ width: 36px;
+ height: 34px;
+ margin: 0;
+ text-align: center;
+}
+
+#adminmenu div.wp-menu-image.svg {
+ background-repeat: no-repeat;
+ background-position: center;
+ -webkit-background-size: 20px auto;
+ background-size: 20px auto;
+}
+
+div.wp-menu-image:before {
+ color: #999;
+ padding: 7px 0;
+ -webkit-transition: all .1s ease-in-out;
+ transition: all .1s ease-in-out;
+}
+
+#adminmenu div.wp-menu-image:before {
+ color: #999;
+}
+
+#adminmenu li.wp-has-current-submenu:hover div.wp-menu-image:before,
+#adminmenu .wp-has-current-submenu div.wp-menu-image:before,
+#adminmenu .current div.wp-menu-image:before,
+#adminmenu a.wp-has-current-submenu:hover div.wp-menu-image:before,
+#adminmenu a.current:hover div.wp-menu-image:before {
+ color: #fff;
+}
+
+#adminmenu li:hover div.wp-menu-image:before {
+ color: #2ea2cc;
+}
+
+.folded #adminmenu div.wp-menu-image {
+ width: 35px;
+ height: 30px;
+ position: absolute;
+ z-index: 25;
+}
+
+.folded #adminmenu a.menu-top {
+ height: 34px;
+}
+
+/* No @font-face support */
+.no-font-face #adminmenu .wp-menu-image {
+ display: none;
+}
+
+.no-font-face #adminmenu div.wp-menu-name {
+ padding: 8px 12px;
+}
+
+.no-font-face.auto-fold #adminmenu .wp-menu-name {
+ margin-right: 0;
+}
+/* End no @font-face support */
+
+/* Sticky admin menu */
+.sticky-menu #adminmenuwrap {
+ position: fixed;
+ z-index: 9999; /* Match the z-index of .wp-submenu to ensure flyout menus don't appear underneath main column elements */
+}
+
+/* A new arrow */
+
+.wp-menu-arrow {
+ display: none !important;
+}
+
+ul#adminmenu a.wp-has-current-submenu {
+ position: relative;
+}
+
+ul#adminmenu a.wp-has-current-submenu:after,
+ul#adminmenu > li.current > a.current:after {
+ left: 0;
+ border: solid 8px transparent;
+ content: " ";
+ height: 0;
+ width: 0;
+ position: absolute;
+ pointer-events: none;
+ border-left-color: #f1f1f1;
+ top: 50%;
+ margin-top: -8px;
+}
+
+.folded ul#adminmenu li:hover a.wp-has-current-submenu:after {
+ display: none;
+}
+
+.folded ul#adminmenu a.wp-has-current-submenu:after,
+.folded ul#adminmenu > li a.current:after {
+ border-width: 4px;
+ margin-top: -4px;
+}
+
+/* flyout menu arrow */
+#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after {
+ left: 0;
+ border: solid transparent;
+ content: " ";
+ height: 0;
+ width: 0;
+ position: absolute;
+ pointer-events: none;
+ border-width: 8px;
+ top: 10px;
+ z-index: 10000;
+}
+
+.folded ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after {
+ border-width: 4px;
+ margin-top: -4px;
+ top: 18px;
+}
+
+#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
+ border-left-color: #333;
+}
+
+#adminmenu li.menu-top:hover .wp-menu-image img,
+#adminmenu li.wp-has-current-submenu .wp-menu-image img {
+ opacity: 1;
+ filter: alpha(opacity=100);
+}
+
+#adminmenu li.wp-menu-separator {
+ height: 5px;
+ padding: 0;
+ margin: 0 0 6px 0;
+ cursor: inherit;
+}
+
+/* @todo: is this even needed given that it's nested beneath the above li.wp-menu-separator? */
+#adminmenu div.separator {
+ height: 2px;
+ padding: 0;
+}
+
+#adminmenu .wp-submenu .wp-submenu-head {
+ color: #fff;
+ font-weight: 400;
+ font-size: 14px;
+ padding: 8px 11px 8px 4px;
+ margin: -7px 0px 4px;
+}
+
+#adminmenu li.current,
+.folded #adminmenu li.wp-menu-open {
+ border: 0 none;
+}
+
+#adminmenu .awaiting-mod,
+#adminmenu .update-plugins,
+#sidemenu li a span.update-plugins {
+ display: inline-block;
+ background-color: #d54e21;
+ color: #fff;
+ font-size: 9px;
+ line-height: 17px;
+ font-weight: 600;
+ margin: 1px 2px 0 0;
+ vertical-align: top;
+ -webkit-border-radius: 10px;
+ border-radius: 10px;
+ z-index: 26;
+}
+
+#adminmenu li .awaiting-mod span,
+#adminmenu li span.update-plugins span,
+#sidemenu li a span.update-plugins span {
+ display: block;
+ padding: 0 6px;
+}
+
+#adminmenu li.current a .awaiting-mod,
+#adminmenu li a.wp-has-current-submenu .update-plugins {
+ background-color: #2ea2cc;
+ color: #fff;
+}
+
+#adminmenu li span.count-0,
+#sidemenu li a .count-0 {
+ display: none;
+}
+
+#collapse-menu {
+ font-size: 13px;
+ line-height: 34px;
+ margin-top: 10px;
+ color: #aaa;
+ -webkit-transition: all .1s ease-in-out;
+ transition: all .1s ease-in-out;
+}
+
+#collapse-menu:hover,
+#collapse-menu:hover #collapse-button div:after {
+ color: #2ea2cc;
+}
+
+.folded #collapse-menu span {
+ display: none;
+}
+
+#collapse-button,
+#collapse-button div {
+ width: 15px;
+ height: 15px;
+}
+
+#collapse-button {
+ float: right;
+ height: 15px;
+ margin: 10px 11px 10px 8px;
+ width: 15px;
+ -webkit-border-radius: 10px;
+ border-radius: 10px;
+}
+
+#wpwrap #collapse-button div {
+ padding: 0;
+}
+
+#collapse-button div:after {
+ content: '\f148';
+ display: block;
+ line-height: 15px;
+ right: -3px;
+ top: -3px;
+ color: #aaa;
+ font: normal 20px/1 'dashicons' !important;
+ speak: none;
+ margin: 0 auto;
+ padding: 0 !important;
+ position: relative;
+ text-align: center;
+ width: 20px;
+ -webkit-transition: all .1s ease-in-out;
+ transition: all .1s ease-in-out;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+.folded #collapse-button div:after,
+.rtl #collapse-button div:after {
+ -webkit-transform: rotate(180deg);
+ -ms-transform: rotate(180deg);
+ transform: rotate(180deg);
+}
+
+.rtl.folded #collapse-button div:after {
+ -webkit-transform: none;
+ -ms-transform: none;
+ transform: none;
+}
+
+/**
+ * Toolbar menu toggle
+ */
+li#wp-admin-bar-menu-toggle {
+ display: none;
+}
+
+
+/* Auto-folding of the admin menu */
+@media only screen and (max-width: 900px) {
+ .auto-fold #wpcontent,
+ .auto-fold #wpfooter {
+ margin-right: 56px;
+ }
+
+ .auto-fold #adminmenuback,
+ .auto-fold #adminmenuwrap,
+ .auto-fold #adminmenu,
+ .auto-fold #adminmenu li.menu-top {
+ width: 36px;
+ }
+
+ .auto-fold #adminmenu .wp-submenu.sub-open,
+ .auto-fold #adminmenu .opensub .wp-submenu,
+ .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,
+ .auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu,
+ .auto-fold #adminmenu a.menu-top:focus + .wp-submenu,
+ .auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu {
+ top: 0px;
+ right: 36px;
+ }
+
+ .auto-fold #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
+ .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu {
+ position: absolute;
+ top: -1000em;
+ margin-left: -1px;
+ padding: 7px 0 8px;
+ z-index: 9999;
+ }
+
+ .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu {
+ min-width: 150px;
+ width: auto;
+ }
+
+ .auto-fold #adminmenu .wp-has-current-submenu li > a {
+ padding-left: 16px;
+ padding-right: 14px;
+ }
+
+
+ .auto-fold #adminmenu li.menu-top .wp-submenu > li > a {
+ padding-right: 12px;
+ }
+
+ .auto-fold #adminmenu .wp-menu-name {
+ display: none;
+ }
+
+ .auto-fold #adminmenu .wp-submenu-head {
+ display: block;
+ }
+
+ .auto-fold #adminmenu div.wp-menu-image {
+ height: 30px;
+ width: 34px;
+ position: absolute;
+ z-index: 25;
+ }
+
+ .auto-fold #adminmenu a.menu-top {
+ height: 34px;
+ }
+
+ .auto-fold #adminmenu li.wp-menu-open {
+ border: 0 none;
+ }
+
+ .auto-fold #adminmenu .wp-has-current-submenu.menu-top-last {
+ margin-bottom: 0;
+ }
+
+ .auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after {
+ display: none;
+ }
+
+ .auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after {
+ border-width: 4px;
+ margin-top: -4px;
+ top: 16px;
+ }
+
+ .auto-fold ul#adminmenu a.wp-has-current-submenu:after,
+ .auto-fold ul#adminmenu > li a.current:after {
+ border-width: 4px;
+ margin-top: -4px;
+ }
+
+ .auto-fold #adminmenu li.menu-top:hover,
+ .auto-fold #adminmenu li.opensub > a.menu-top,
+ .auto-fold #adminmenu li > a.menu-top:focus {
+ z-index: 10000;
+ }
+
+ .auto-fold #collapse-menu span {
+ display: none;
+ }
+
+ .auto-fold #collapse-button div {
+ background: none;
+ }
+
+ .auto-fold #collapse-button div:after {
+ -webkit-transform: rotate(180deg);
+ -ms-transform: rotate(180deg);
+ transform: rotate(180deg);
+ }
+
+ .rtl.auto-fold #collapse-button div:after {
+ -webkit-transform: none;
+ -ms-transform: none;
+ transform: none;
+ }
+
+}
+
+@media screen and ( max-width: 782px ) {
+ .auto-fold #wpcontent {
+ position: relative;
+ margin-right: 0;
+ padding-right: 10px;
+ }
+
+ .sticky-menu #adminmenuwrap {
+ position: relative;
+ z-index: auto;
+ top: 0;
+ }
+
+ /* Sidebar Adjustments */
+ .auto-fold #adminmenu,
+ .auto-fold #adminmenuback,
+ .auto-fold #adminmenuwrap {
+ position: absolute;
+ width: 190px;
+ z-index: 100;
+ }
+
+ .auto-fold #adminmenuback,
+ .auto-fold #adminmenuwrap {
+ display: none;
+ }
+
+ .auto-fold .wp-responsive-open #adminmenuback,
+ .auto-fold .wp-responsive-open #adminmenuwrap {
+ display: block;
+ }
+
+ .auto-fold #adminmenu li.menu-top {
+ width: 100%;
+ }
+
+ /* Resize the admin menu items to a comfortable touch size */
+ .auto-fold #adminmenu li a {
+ font-size: 16px;
+ padding: 5px;
+ }
+
+ .auto-fold #adminmenu li.menu-top .wp-submenu > li > a {
+ padding: 10px 20px 10px 10px;
+ }
+
+ /* Restore the menu names */
+ .auto-fold #adminmenu .wp-menu-name {
+ display: block;
+ margin-right: 35px;
+ }
+
+ /* Switch the arrow side */
+ .auto-fold ul#adminmenu a.wp-has-current-submenu:after,
+ .auto-fold ul#adminmenu > li.current > a.current:after {
+ border-width: 8px;
+ margin-top: -8px;
+ }
+
+ .auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after {
+ display: none;
+ }
+
+ /* Make the submenus appear correctly when tapped. */
+ #adminmenu .wp-submenu {
+ position: relative;
+ display: none;
+ }
+
+ .auto-fold #adminmenu .selected .wp-submenu,
+ .auto-fold #adminmenu .wp-menu-open .wp-submenu {
+ position: relative;
+ display: block;
+ top: 0;
+ right: -1px;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ }
+
+ .auto-fold #adminmenu .selected .wp-submenu:after,
+ .auto-fold #adminmenu .wp-menu-open .wp-submenu:after {
+ display: none;
+ }
+
+ .auto-fold #adminmenu .opensub .wp-submenu {
+ display: none;
+ }
+
+ .auto-fold #adminmenu .selected .wp-submenu {
+ display: block;
+ }
+
+ .auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after {
+ display: block;
+ }
+
+ .auto-fold #adminmenu a.menu-top:focus + .wp-submenu,
+ .auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu {
+ position: relative;
+ right: -1px;
+ left: 0;
+ top: 0;
+ }
+
+ /* Remove submenu headers and adjust sub meu*/
+ #adminmenu .wp-submenu .wp-submenu-head {
+ display: none;
+ }
+
+ /* Toolbar menu toggle */
+ #wp-responsive-toggle {
+ position: fixed;
+ top: 5px;
+ right: 4px;
+ padding-left: 10px;
+ z-index: 99999;
+ border: none;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ }
+
+ #wpadminbar #wp-admin-bar-menu-toggle a {
+ display: block;
+ padding: 0;
+ overflow: hidden;
+ outline: none;
+ text-decoration: none;
+ border: 1px solid transparent;
+ background: none;
+ height: 44px;
+ margin-right: -1px;
+ }
+
+ .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
+ background: #333;
+ }
+
+ li#wp-admin-bar-menu-toggle {
+ display: block;
+ }
+
+ #wpadminbar #wp-admin-bar-menu-toggle a:hover {
+ border: 1px solid transparent;
+ }
+
+ #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
+ content: '\f228';
+ display: inline-block;
+ float: right;
+ font: normal 40px/45px 'Dashicons';
+ vertical-align: middle;
+ outline: none;
+ margin: 0;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ height: 44px;
+ width: 50px;
+ padding: 0;
+ border: none;
+ text-align: center;
+ text-decoration: none;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ }
+}
+
+/* Smartphone */
+@media screen and (max-width: 600px) {
+ #adminmenuwrap,
+ #adminmenuback {
+ display: none;
+ }
+
+ .wp-responsive-open #adminmenuwrap,
+ .wp-responsive-open #adminmenuback {
+ display: block;
+ }
+
+ .auto-fold #adminmenu {
+ top: 46px;
+ }
+}
+
diff --git a/sources/wp-admin/css/admin-menu.css b/sources/wp-admin/css/admin-menu.css
new file mode 100644
index 0000000..a0a9f21
--- /dev/null
+++ b/sources/wp-admin/css/admin-menu.css
@@ -0,0 +1,917 @@
+#adminmenuback,
+#adminmenuwrap,
+#adminmenu,
+#adminmenu .wp-submenu {
+ width: 160px;
+ background-color: #222;
+}
+
+#adminmenuback {
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ z-index: -1;
+}
+
+#adminmenu {
+ clear: left;
+ margin: 12px 0 0;
+ padding: 0;
+ list-style: none;
+}
+
+.folded #adminmenuback,
+.folded #adminmenuwrap,
+.folded #adminmenu,
+.folded #adminmenu li.menu-top {
+ width: 36px;
+}
+
+.icon16 {
+ height: 18px;
+ width: 18px;
+ padding: 6px 6px;
+ margin: -6px 0 0 -8px;
+ float: left;
+}
+
+/* New Menu icons */
+
+.icon16:before {
+ color: #999;
+ font: normal 20px/1 'dashicons';
+ speak: none;
+ padding: 6px 0;
+ height: 34px;
+ width: 20px;
+ display: inline-block;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ -webkit-transition: all .1s ease-in-out;
+ transition: all .1s ease-in-out;
+}
+
+.icon16.icon-dashboard:before {
+ content: '\f226';
+}
+
+.icon16.icon-post:before {
+ content: '\f109';
+}
+
+.icon16.icon-media:before {
+ content: '\f104';
+}
+
+.icon16.icon-links:before {
+ content: '\f103';
+}
+
+.icon16.icon-page:before {
+ content: '\f105';
+}
+
+.icon16.icon-comments:before {
+ content: '\f101';
+ margin-top: 1px;
+}
+
+.icon16.icon-appearance:before {
+ content: '\f100';
+}
+
+.icon16.icon-plugins:before {
+ content: '\f106';
+}
+
+.icon16.icon-users:before {
+ content: '\f110';
+}
+
+.icon16.icon-tools:before {
+ content: '\f107';
+}
+
+.icon16.icon-settings:before {
+ content: '\f108';
+}
+
+.icon16.icon-site:before {
+ content: '\f112'
+}
+
+.icon16.icon-generic:before {
+ content: '\f111';
+}
+
+/* hide background-image for icons above */
+.icon16.icon-dashboard,
+.menu-icon-dashboard div.wp-menu-image,
+.icon16.icon-post,
+.menu-icon-post div.wp-menu-image,
+.icon16.icon-media,
+.menu-icon-media div.wp-menu-image,
+.icon16.icon-links,
+.menu-icon-links div.wp-menu-image,
+.icon16.icon-page,
+.menu-icon-page div.wp-menu-image,
+.icon16.icon-comments,
+.menu-icon-comments div.wp-menu-image,
+.icon16.icon-appearance,
+.menu-icon-appearance div.wp-menu-image,
+.icon16.icon-plugins,
+.menu-icon-plugins div.wp-menu-image,
+.icon16.icon-users,
+.menu-icon-users div.wp-menu-image,
+.icon16.icon-tools,
+.menu-icon-tools div.wp-menu-image,
+.icon16.icon-settings,
+.menu-icon-settings div.wp-menu-image,
+.icon16.icon-site,
+.menu-icon-site div.wp-menu-image,
+.icon16.icon-generic,
+.menu-icon-generic div.wp-menu-image {
+ background-image: none !important;
+}
+
+/*------------------------------------------------------------------------------
+ 7.0 - Main Navigation (Left Menu)
+------------------------------------------------------------------------------*/
+
+#adminmenuwrap {
+ position: relative;
+ float: left;
+}
+
+/* side admin menu */
+#adminmenu * {
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
+
+#adminmenu li {
+ margin: 0;
+ padding: 0;
+ cursor: pointer;
+}
+
+#adminmenu a {
+ display: block;
+ line-height: 18px;
+ padding: 2px 5px;
+ color: #eee;
+}
+
+#adminmenu .wp-submenu a {
+ color: #bbb;
+}
+
+#adminmenu .wp-submenu a:hover,
+#adminmenu .wp-submenu a:focus {
+ background: none;
+}
+
+#adminmenu a:hover,
+#adminmenu li.menu-top > a:focus,
+#adminmenu .wp-submenu a:hover,
+#adminmenu .wp-submenu a:focus {
+ color: #2ea2cc;
+}
+
+#adminmenu li.menu-top {
+ border: none;
+ min-height: 34px;
+ position: relative;
+}
+
+#adminmenu .wp-submenu {
+ list-style: none;
+ position: absolute;
+ top: -1000em;
+ left: 160px;
+ overflow: visible;
+ word-wrap: break-word;
+}
+
+#adminmenu .wp-submenu,
+.folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
+.folded #adminmenu .wp-has-current-submenu .wp-submenu {
+ padding: 7px 0 8px;
+ z-index: 9999;
+ background-color: #333;
+ -webkit-box-shadow: 0 3px 5px rgba(0,0,0,0.2);
+ box-shadow: 0 3px 5px rgba(0,0,0,0.2);
+}
+
+.js #adminmenu .sub-open,
+.js #adminmenu .opensub .wp-submenu,
+#adminmenu a.menu-top:focus + .wp-submenu,
+.no-js li.wp-has-submenu:hover .wp-submenu {
+ top: -1px;
+}
+
+#adminmenu .wp-has-current-submenu .wp-submenu,
+.no-js li.wp-has-current-submenu:hover .wp-submenu,
+#adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
+#adminmenu .wp-has-current-submenu .wp-submenu.sub-open,
+#adminmenu .wp-has-current-submenu.opensub .wp-submenu {
+ position: relative;
+ z-index: 3;
+ top: auto;
+ left: auto;
+ right: auto;
+ bottom: auto;
+ border: 0 none;
+ margin-top: 0;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ background-color: #333;
+}
+
+/* ensure that wp-submenu's box shadow doesn't appear on top of the focused menu item's background. */
+#adminmenu li.menu-top:hover,
+#adminmenu li.opensub > a.menu-top,
+#adminmenu li > a.menu-top:focus {
+ position: relative;
+ background-color: #111;
+}
+
+.folded #adminmenu li.menu-top:hover,
+.folded #adminmenu li.opensub > a.menu-top,
+.folded #adminmenu li > a.menu-top:focus {
+ z-index: 10000;
+}
+
+#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,
+#adminmenu .wp-menu-arrow div {
+ background: #0074a2;
+ color: #fff;
+}
+
+.folded #adminmenu .wp-submenu.sub-open,
+.folded #adminmenu .opensub .wp-submenu,
+.folded #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,
+.folded #adminmenu .wp-has-current-submenu.opensub .wp-submenu,
+.folded #adminmenu a.menu-top:focus + .wp-submenu,
+.folded #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu,
+.no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu {
+ top: 0;
+ left: 36px;
+}
+
+.folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
+.folded #adminmenu .wp-has-current-submenu .wp-submenu {
+ position: absolute;
+ top: -1000em;
+}
+
+#adminmenu .wp-not-current-submenu .wp-submenu,
+.folded #adminmenu .wp-has-current-submenu .wp-submenu {
+ min-width: 160px;
+ width: auto;
+}
+
+#adminmenu .wp-submenu a {
+ font-size: 13px;
+ line-height: 1.2;
+ margin: 0;
+ padding: 6px 0;
+}
+
+#adminmenu .wp-submenu li.current,
+#adminmenu .wp-submenu li.current a,
+#adminmenu .opensub .wp-submenu li.current a,
+#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a,
+#adminmenu .wp-submenu li.current a:hover,
+#adminmenu .wp-submenu li.current a:focus {
+ color: #fff;
+}
+
+#adminmenu .wp-not-current-submenu li > a,
+.folded #adminmenu .wp-has-current-submenu li > a {
+ padding-right: 16px;
+ padding-left: 14px;
+ -webkit-transition: all .1s ease-in-out;
+ transition: all .1s ease-in-out;
+}
+
+#adminmenu .wp-has-current-submenu ul > li > a,
+.folded #adminmenu li.menu-top .wp-submenu > li > a {
+ padding: 6px 12px;
+}
+
+#adminmenu a.menu-top,
+#adminmenu .wp-submenu-head {
+ font-size: 14px;
+ font-weight: 400;
+ line-height: 18px;
+ padding: 0;
+}
+
+#adminmenu .wp-submenu-head,
+.folded #adminmenu .wp-menu-name {
+ display: none;
+}
+
+.folded #adminmenu .wp-submenu-head {
+ display: block;
+}
+
+#adminmenu .wp-submenu li {
+ padding: 0;
+ margin: 0;
+ overflow: hidden;
+}
+
+#adminmenu .wp-menu-image img {
+ padding: 9px 0 0 0;
+ opacity: 0.6;
+ filter: alpha(opacity=60);
+}
+
+#adminmenu div.wp-menu-name {
+ padding: 8px 0;
+}
+
+#adminmenu div.wp-menu-image {
+ float: left;
+ width: 36px;
+ height: 34px;
+ margin: 0;
+ text-align: center;
+}
+
+#adminmenu div.wp-menu-image.svg {
+ background-repeat: no-repeat;
+ background-position: center;
+ -webkit-background-size: 20px auto;
+ background-size: 20px auto;
+}
+
+div.wp-menu-image:before {
+ color: #999;
+ padding: 7px 0;
+ -webkit-transition: all .1s ease-in-out;
+ transition: all .1s ease-in-out;
+}
+
+#adminmenu div.wp-menu-image:before {
+ color: #999;
+}
+
+#adminmenu li.wp-has-current-submenu:hover div.wp-menu-image:before,
+#adminmenu .wp-has-current-submenu div.wp-menu-image:before,
+#adminmenu .current div.wp-menu-image:before,
+#adminmenu a.wp-has-current-submenu:hover div.wp-menu-image:before,
+#adminmenu a.current:hover div.wp-menu-image:before {
+ color: #fff;
+}
+
+#adminmenu li:hover div.wp-menu-image:before {
+ color: #2ea2cc;
+}
+
+.folded #adminmenu div.wp-menu-image {
+ width: 35px;
+ height: 30px;
+ position: absolute;
+ z-index: 25;
+}
+
+.folded #adminmenu a.menu-top {
+ height: 34px;
+}
+
+/* No @font-face support */
+.no-font-face #adminmenu .wp-menu-image {
+ display: none;
+}
+
+.no-font-face #adminmenu div.wp-menu-name {
+ padding: 8px 12px;
+}
+
+.no-font-face.auto-fold #adminmenu .wp-menu-name {
+ margin-left: 0;
+}
+/* End no @font-face support */
+
+/* Sticky admin menu */
+.sticky-menu #adminmenuwrap {
+ position: fixed;
+ z-index: 9999; /* Match the z-index of .wp-submenu to ensure flyout menus don't appear underneath main column elements */
+}
+
+/* A new arrow */
+
+.wp-menu-arrow {
+ display: none !important;
+}
+
+ul#adminmenu a.wp-has-current-submenu {
+ position: relative;
+}
+
+ul#adminmenu a.wp-has-current-submenu:after,
+ul#adminmenu > li.current > a.current:after {
+ right: 0;
+ border: solid 8px transparent;
+ content: " ";
+ height: 0;
+ width: 0;
+ position: absolute;
+ pointer-events: none;
+ border-right-color: #f1f1f1;
+ top: 50%;
+ margin-top: -8px;
+}
+
+.folded ul#adminmenu li:hover a.wp-has-current-submenu:after {
+ display: none;
+}
+
+.folded ul#adminmenu a.wp-has-current-submenu:after,
+.folded ul#adminmenu > li a.current:after {
+ border-width: 4px;
+ margin-top: -4px;
+}
+
+/* flyout menu arrow */
+#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after {
+ right: 0;
+ border: solid transparent;
+ content: " ";
+ height: 0;
+ width: 0;
+ position: absolute;
+ pointer-events: none;
+ border-width: 8px;
+ top: 10px;
+ z-index: 10000;
+}
+
+.folded ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after {
+ border-width: 4px;
+ margin-top: -4px;
+ top: 18px;
+}
+
+#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
+ border-right-color: #333;
+}
+
+#adminmenu li.menu-top:hover .wp-menu-image img,
+#adminmenu li.wp-has-current-submenu .wp-menu-image img {
+ opacity: 1;
+ filter: alpha(opacity=100);
+}
+
+#adminmenu li.wp-menu-separator {
+ height: 5px;
+ padding: 0;
+ margin: 0 0 6px 0;
+ cursor: inherit;
+}
+
+/* @todo: is this even needed given that it's nested beneath the above li.wp-menu-separator? */
+#adminmenu div.separator {
+ height: 2px;
+ padding: 0;
+}
+
+#adminmenu .wp-submenu .wp-submenu-head {
+ color: #fff;
+ font-weight: 400;
+ font-size: 14px;
+ padding: 8px 4px 8px 11px;
+ margin: -7px 0px 4px;
+}
+
+#adminmenu li.current,
+.folded #adminmenu li.wp-menu-open {
+ border: 0 none;
+}
+
+#adminmenu .awaiting-mod,
+#adminmenu .update-plugins,
+#sidemenu li a span.update-plugins {
+ display: inline-block;
+ background-color: #d54e21;
+ color: #fff;
+ font-size: 9px;
+ line-height: 17px;
+ font-weight: 600;
+ margin: 1px 0 0 2px;
+ vertical-align: top;
+ -webkit-border-radius: 10px;
+ border-radius: 10px;
+ z-index: 26;
+}
+
+#adminmenu li .awaiting-mod span,
+#adminmenu li span.update-plugins span,
+#sidemenu li a span.update-plugins span {
+ display: block;
+ padding: 0 6px;
+}
+
+#adminmenu li.current a .awaiting-mod,
+#adminmenu li a.wp-has-current-submenu .update-plugins {
+ background-color: #2ea2cc;
+ color: #fff;
+}
+
+#adminmenu li span.count-0,
+#sidemenu li a .count-0 {
+ display: none;
+}
+
+#collapse-menu {
+ font-size: 13px;
+ line-height: 34px;
+ margin-top: 10px;
+ color: #aaa;
+ -webkit-transition: all .1s ease-in-out;
+ transition: all .1s ease-in-out;
+}
+
+#collapse-menu:hover,
+#collapse-menu:hover #collapse-button div:after {
+ color: #2ea2cc;
+}
+
+.folded #collapse-menu span {
+ display: none;
+}
+
+#collapse-button,
+#collapse-button div {
+ width: 15px;
+ height: 15px;
+}
+
+#collapse-button {
+ float: left;
+ height: 15px;
+ margin: 10px 8px 10px 11px;
+ width: 15px;
+ -webkit-border-radius: 10px;
+ border-radius: 10px;
+}
+
+#wpwrap #collapse-button div {
+ padding: 0;
+}
+
+#collapse-button div:after {
+ content: '\f148';
+ display: block;
+ line-height: 15px;
+ left: -3px;
+ top: -3px;
+ color: #aaa;
+ font: normal 20px/1 'dashicons' !important;
+ speak: none;
+ margin: 0 auto;
+ padding: 0 !important;
+ position: relative;
+ text-align: center;
+ width: 20px;
+ -webkit-transition: all .1s ease-in-out;
+ transition: all .1s ease-in-out;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+.folded #collapse-button div:after,
+.rtl #collapse-button div:after {
+ -webkit-transform: rotate(180deg);
+ -ms-transform: rotate(180deg);
+ transform: rotate(180deg);
+}
+
+.rtl.folded #collapse-button div:after {
+ -webkit-transform: none;
+ -ms-transform: none;
+ transform: none;
+}
+
+/**
+ * Toolbar menu toggle
+ */
+li#wp-admin-bar-menu-toggle {
+ display: none;
+}
+
+
+/* Auto-folding of the admin menu */
+@media only screen and (max-width: 900px) {
+ .auto-fold #wpcontent,
+ .auto-fold #wpfooter {
+ margin-left: 56px;
+ }
+
+ .auto-fold #adminmenuback,
+ .auto-fold #adminmenuwrap,
+ .auto-fold #adminmenu,
+ .auto-fold #adminmenu li.menu-top {
+ width: 36px;
+ }
+
+ .auto-fold #adminmenu .wp-submenu.sub-open,
+ .auto-fold #adminmenu .opensub .wp-submenu,
+ .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,
+ .auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu,
+ .auto-fold #adminmenu a.menu-top:focus + .wp-submenu,
+ .auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu {
+ top: 0px;
+ left: 36px;
+ }
+
+ .auto-fold #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
+ .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu {
+ position: absolute;
+ top: -1000em;
+ margin-right: -1px;
+ padding: 7px 0 8px;
+ z-index: 9999;
+ }
+
+ .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu {
+ min-width: 150px;
+ width: auto;
+ }
+
+ .auto-fold #adminmenu .wp-has-current-submenu li > a {
+ padding-right: 16px;
+ padding-left: 14px;
+ }
+
+
+ .auto-fold #adminmenu li.menu-top .wp-submenu > li > a {
+ padding-left: 12px;
+ }
+
+ .auto-fold #adminmenu .wp-menu-name {
+ display: none;
+ }
+
+ .auto-fold #adminmenu .wp-submenu-head {
+ display: block;
+ }
+
+ .auto-fold #adminmenu div.wp-menu-image {
+ height: 30px;
+ width: 34px;
+ position: absolute;
+ z-index: 25;
+ }
+
+ .auto-fold #adminmenu a.menu-top {
+ height: 34px;
+ }
+
+ .auto-fold #adminmenu li.wp-menu-open {
+ border: 0 none;
+ }
+
+ .auto-fold #adminmenu .wp-has-current-submenu.menu-top-last {
+ margin-bottom: 0;
+ }
+
+ .auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after {
+ display: none;
+ }
+
+ .auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after {
+ border-width: 4px;
+ margin-top: -4px;
+ top: 16px;
+ }
+
+ .auto-fold ul#adminmenu a.wp-has-current-submenu:after,
+ .auto-fold ul#adminmenu > li a.current:after {
+ border-width: 4px;
+ margin-top: -4px;
+ }
+
+ .auto-fold #adminmenu li.menu-top:hover,
+ .auto-fold #adminmenu li.opensub > a.menu-top,
+ .auto-fold #adminmenu li > a.menu-top:focus {
+ z-index: 10000;
+ }
+
+ .auto-fold #collapse-menu span {
+ display: none;
+ }
+
+ .auto-fold #collapse-button div {
+ background: none;
+ }
+
+ .auto-fold #collapse-button div:after {
+ -webkit-transform: rotate(180deg);
+ -ms-transform: rotate(180deg);
+ transform: rotate(180deg);
+ }
+
+ .rtl.auto-fold #collapse-button div:after {
+ -webkit-transform: none;
+ -ms-transform: none;
+ transform: none;
+ }
+
+}
+
+@media screen and ( max-width: 782px ) {
+ .auto-fold #wpcontent {
+ position: relative;
+ margin-left: 0;
+ padding-left: 10px;
+ }
+
+ .sticky-menu #adminmenuwrap {
+ position: relative;
+ z-index: auto;
+ top: 0;
+ }
+
+ /* Sidebar Adjustments */
+ .auto-fold #adminmenu,
+ .auto-fold #adminmenuback,
+ .auto-fold #adminmenuwrap {
+ position: absolute;
+ width: 190px;
+ z-index: 100;
+ }
+
+ .auto-fold #adminmenuback,
+ .auto-fold #adminmenuwrap {
+ display: none;
+ }
+
+ .auto-fold .wp-responsive-open #adminmenuback,
+ .auto-fold .wp-responsive-open #adminmenuwrap {
+ display: block;
+ }
+
+ .auto-fold #adminmenu li.menu-top {
+ width: 100%;
+ }
+
+ /* Resize the admin menu items to a comfortable touch size */
+ .auto-fold #adminmenu li a {
+ font-size: 16px;
+ padding: 5px;
+ }
+
+ .auto-fold #adminmenu li.menu-top .wp-submenu > li > a {
+ padding: 10px 10px 10px 20px;
+ }
+
+ /* Restore the menu names */
+ .auto-fold #adminmenu .wp-menu-name {
+ display: block;
+ margin-left: 35px;
+ }
+
+ /* Switch the arrow side */
+ .auto-fold ul#adminmenu a.wp-has-current-submenu:after,
+ .auto-fold ul#adminmenu > li.current > a.current:after {
+ border-width: 8px;
+ margin-top: -8px;
+ }
+
+ .auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after {
+ display: none;
+ }
+
+ /* Make the submenus appear correctly when tapped. */
+ #adminmenu .wp-submenu {
+ position: relative;
+ display: none;
+ }
+
+ .auto-fold #adminmenu .selected .wp-submenu,
+ .auto-fold #adminmenu .wp-menu-open .wp-submenu {
+ position: relative;
+ display: block;
+ top: 0;
+ left: -1px;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ }
+
+ .auto-fold #adminmenu .selected .wp-submenu:after,
+ .auto-fold #adminmenu .wp-menu-open .wp-submenu:after {
+ display: none;
+ }
+
+ .auto-fold #adminmenu .opensub .wp-submenu {
+ display: none;
+ }
+
+ .auto-fold #adminmenu .selected .wp-submenu {
+ display: block;
+ }
+
+ .auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after {
+ display: block;
+ }
+
+ .auto-fold #adminmenu a.menu-top:focus + .wp-submenu,
+ .auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu {
+ position: relative;
+ left: -1px;
+ right: 0;
+ top: 0;
+ }
+
+ /* Remove submenu headers and adjust sub meu*/
+ #adminmenu .wp-submenu .wp-submenu-head {
+ display: none;
+ }
+
+ /* Toolbar menu toggle */
+ #wp-responsive-toggle {
+ position: fixed;
+ top: 5px;
+ left: 4px;
+ padding-right: 10px;
+ z-index: 99999;
+ border: none;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ }
+
+ #wpadminbar #wp-admin-bar-menu-toggle a {
+ display: block;
+ padding: 0;
+ overflow: hidden;
+ outline: none;
+ text-decoration: none;
+ border: 1px solid transparent;
+ background: none;
+ height: 44px;
+ margin-left: -1px;
+ }
+
+ .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
+ background: #333;
+ }
+
+ li#wp-admin-bar-menu-toggle {
+ display: block;
+ }
+
+ #wpadminbar #wp-admin-bar-menu-toggle a:hover {
+ border: 1px solid transparent;
+ }
+
+ #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
+ content: '\f228';
+ display: inline-block;
+ float: left;
+ font: normal 40px/45px 'Dashicons';
+ vertical-align: middle;
+ outline: none;
+ margin: 0;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ height: 44px;
+ width: 50px;
+ padding: 0;
+ border: none;
+ text-align: center;
+ text-decoration: none;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ }
+}
+
+/* Smartphone */
+@media screen and (max-width: 600px) {
+ #adminmenuwrap,
+ #adminmenuback {
+ display: none;
+ }
+
+ .wp-responsive-open #adminmenuwrap,
+ .wp-responsive-open #adminmenuback {
+ display: block;
+ }
+
+ .auto-fold #adminmenu {
+ top: 46px;
+ }
+}
+
diff --git a/sources/wp-admin/css/color-picker-rtl.css b/sources/wp-admin/css/color-picker-rtl.css
index 8c8869d..f95cbc6 100644
--- a/sources/wp-admin/css/color-picker-rtl.css
+++ b/sources/wp-admin/css/color-picker-rtl.css
@@ -1,27 +1,126 @@
+.wp-color-picker {
+ width: 80px;
+}
+
+.wp-picker-container .hidden {
+ display: none;
+}
+
.wp-color-result {
- margin: 0 0 6px 6px;
- padding-left: 0;
+ background-color: #f7f7f7;
+ border: 1px solid #ccc;
+ -webkit-border-radius: 3px;
+ border-radius: 3px;
+ cursor: pointer;
+ display: inline-block;
+ height: 22px;
+ margin: 0 0px 6px 6px;
+ position: relative;
+ top: 1px;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ vertical-align: bottom;
+ display: inline-block;
padding-right: 30px;
+ -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.08);
+ box-shadow: 0 1px 0 rgba(0,0,0,.08);
}
.wp-color-result:after {
- border-radius: 0 0 1px 1px;
- border-left: 0;
- border-right: 1px solid #bbb;
- left: auto;
- right: 0;
+ background: #f7f7f7;
+ -webkit-border-radius: 2px 0 0 2px;
+ border-radius: 2px 0 0 2px;
+ border-right: 1px solid #ccc;
+ color: #555;
+ content: attr( title );
+ display: block;
+ font-size: 11px;
+ line-height: 22px;
+ padding: 0 6px;
+ position: relative;
+ left: 0;
+ text-align: center;
+ top: 0;
+ -webkit-box-shadow: inset 0 1px 0 #fff;
+ box-shadow: inset 0 1px 0 #fff;
}
.wp-color-result:hover {
- border-color: #aaa;
+ background: #fafafa;
+ border-color: #999;
+ color: #222;
}
.wp-color-result:hover:after {
- border-left: 0;
+ color: #222;
+ border-color: #aaa;
border-right: 1px solid #999;
}
+.wp-color-result {
+ top: 0;
+}
+
+.wp-color-result.wp-picker-open:after {
+ content: attr( data-current );
+}
+
+.wp-picker-container, .wp-picker-container:active {
+ display: inline-block;
+ outline: 0;
+}
+
+.wp-color-result:focus {
+ border-color: #888;
+ -webkit-box-shadow: 0 1px 2px rgba( 0, 0, 0, 0.2 );
+ box-shadow: 0 1px 2px rgba( 0, 0, 0, 0.2 );
+}
+
+.wp-color-result:focus:after {
+ border-color: #888;
+}
+
+.wp-picker-open + .wp-picker-input-wrap {
+ display: inline-block;
+ vertical-align: top;
+}
+
.wp-picker-container .button {
- margin-left: 0;
margin-right: 6px;
}
+
+.wp-picker-container .iris-square-slider .ui-slider-handle:focus {
+ background-color: #555
+}
+
+.wp-picker-container .iris-picker {
+ -webkit-border-radius: 0;
+ border-radius: 0;
+ border-color: #dfdfdf;
+ margin-top: 6px;
+}
+
+.wp-picker-container input[type="text"].wp-color-picker {
+ width: 65px;
+ font-size: 12px;
+ font-family: monospace;
+ text-align: center;
+ line-height: 16px;
+ margin: 0;
+}
+
+.wp-picker-container input[type="text"].wp-color-picker:focus::-webkit-input-placeholder {
+ color: transparent;
+}
+
+.wp-picker-container input[type="text"].wp-color-picker:-moz-placeholder {
+ color: #999;
+}
+
+.wp-picker-container input[type="text"].iris-error {
+ background-color: #ffebe8;
+ border-color: #c00;
+ color: #000;
+}
diff --git a/sources/wp-admin/css/color-picker-rtl.min.css b/sources/wp-admin/css/color-picker-rtl.min.css
index 7b17312..023eccb 100644
--- a/sources/wp-admin/css/color-picker-rtl.min.css
+++ b/sources/wp-admin/css/color-picker-rtl.min.css
@@ -1 +1 @@
-.wp-color-result{margin:0 0 6px 6px;padding-left:0;padding-right:30px}.wp-color-result:after{border-radius:0 0 1px 1px;border-left:0;border-right:1px solid #bbb;left:auto;right:0}.wp-color-result:hover{border-color:#aaa}.wp-color-result:hover:after{border-left:0;border-right:1px solid #999}.wp-picker-container .button{margin-left:0;margin-right:6px}
\ No newline at end of file
+.wp-color-picker{width:80px}.wp-picker-container .hidden{display:none}.wp-color-result{background-color:#f7f7f7;border:1px solid #ccc;-webkit-border-radius:3px;border-radius:3px;cursor:pointer;height:22px;margin:0 0 6px 6px;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:bottom;display:inline-block;padding-right:30px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,.08);box-shadow:0 1px 0 rgba(0,0,0,.08)}.wp-color-result:after{background:#f7f7f7;-webkit-border-radius:2px 0 0 2px;border-radius:2px 0 0 2px;border-right:1px solid #ccc;color:#555;content:attr(title);display:block;font-size:11px;line-height:22px;padding:0 6px;position:relative;left:0;text-align:center;top:0;-webkit-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff}.wp-color-result:hover{background:#fafafa;border-color:#999;color:#222}.wp-color-result:hover:after{color:#222;border-color:#aaa;border-right:1px solid #999}.wp-color-result{top:0}.wp-color-result.wp-picker-open:after{content:attr(data-current)}.wp-picker-container,.wp-picker-container:active{display:inline-block;outline:0}.wp-color-result:focus{border-color:#888;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.2);box-shadow:0 1px 2px rgba(0,0,0,.2)}.wp-color-result:focus:after{border-color:#888}.wp-picker-open+.wp-picker-input-wrap{display:inline-block;vertical-align:top}.wp-picker-container .button{margin-right:6px}.wp-picker-container .iris-square-slider .ui-slider-handle:focus{background-color:#555}.wp-picker-container .iris-picker{-webkit-border-radius:0;border-radius:0;border-color:#dfdfdf;margin-top:6px}.wp-picker-container input[type=text].wp-color-picker{width:65px;font-size:12px;font-family:monospace;text-align:center;line-height:16px;margin:0}.wp-picker-container input[type=text].wp-color-picker:focus::-webkit-input-placeholder{color:transparent}.wp-picker-container input[type=text].wp-color-picker:-moz-placeholder{color:#999}.wp-picker-container input[type=text].iris-error{background-color:#ffebe8;border-color:#c00;color:#000}
\ No newline at end of file
diff --git a/sources/wp-admin/css/color-picker.css b/sources/wp-admin/css/color-picker.css
index 925d890..1d00d96 100644
--- a/sources/wp-admin/css/color-picker.css
+++ b/sources/wp-admin/css/color-picker.css
@@ -7,35 +7,33 @@
}
.wp-color-result {
- background-color: #f9f9f9;
- border: 1px solid #bbb;
- border-radius: 2px;
+ background-color: #f7f7f7;
+ border: 1px solid #ccc;
+ -webkit-border-radius: 3px;
+ border-radius: 3px;
cursor: pointer;
display: inline-block;
height: 22px;
margin: 0 6px 6px 0px;
position: relative;
top: 1px;
- user-select: none;
+ -webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
- -webkit-user-select: none;
+ user-select: none;
vertical-align: bottom;
display: inline-block;
padding-left: 30px;
+ -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.08);
+ box-shadow: 0 1px 0 rgba(0,0,0,.08);
}
.wp-color-result:after {
- background: #f3f3f3;
- background-image: -webkit-gradient(linear, left top, left bottom, from(#fefefe), to(#f4f4f4));
- background-image: -webkit-linear-gradient(top, #fefefe, #f4f4f4);
- background-image: -moz-linear-gradient(top, #fefefe, #f4f4f4);
- background-image: -o-linear-gradient(top, #fefefe, #f4f4f4);
- background-image: linear-gradient(to bottom, #fefefe, #f4f4f4);
- color: #333;
- text-shadow: 0 1px 0 #fff;
- border-radius: 0 1px 1px 0;
- border-left: 1px solid #bbb;
+ background: #f7f7f7;
+ -webkit-border-radius: 0 2px 2px 0;
+ border-radius: 0 2px 2px 0;
+ border-left: 1px solid #ccc;
+ color: #555;
content: attr( title );
display: block;
font-size: 11px;
@@ -45,12 +43,14 @@
right: 0;
text-align: center;
top: 0;
+ -webkit-box-shadow: inset 0 1px 0 #fff;
+ box-shadow: inset 0 1px 0 #fff;
}
.wp-color-result:hover {
- border-color: #aaa;
- -webkit-box-shadow: 0 1px 2px rgba( 0, 0, 0, 0.2 );
- box-shadow: 0 1px 1px rgba( 0, 0, 0, 0.1 );
+ background: #fafafa;
+ border-color: #999;
+ color: #222;
}
.wp-color-result:hover:after {
@@ -59,7 +59,7 @@
border-left: 1px solid #999;
}
-.wp-color-result.wp-picker-open {
+.wp-color-result {
top: 0;
}
@@ -96,11 +96,30 @@
}
.wp-picker-container .iris-picker {
+ -webkit-border-radius: 0;
+ border-radius: 0;
border-color: #dfdfdf;
margin-top: 6px;
}
-input[type="text"].iris-error {
+.wp-picker-container input[type="text"].wp-color-picker {
+ width: 65px;
+ font-size: 12px;
+ font-family: monospace;
+ text-align: center;
+ line-height: 16px;
+ margin: 0;
+}
+
+.wp-picker-container input[type="text"].wp-color-picker:focus::-webkit-input-placeholder {
+ color: transparent;
+}
+
+.wp-picker-container input[type="text"].wp-color-picker:-moz-placeholder {
+ color: #999;
+}
+
+.wp-picker-container input[type="text"].iris-error {
background-color: #ffebe8;
border-color: #c00;
color: #000;
diff --git a/sources/wp-admin/css/color-picker.min.css b/sources/wp-admin/css/color-picker.min.css
index fcf7853..8c225dd 100644
--- a/sources/wp-admin/css/color-picker.min.css
+++ b/sources/wp-admin/css/color-picker.min.css
@@ -1 +1 @@
-.wp-color-picker{width:80px}.wp-picker-container .hidden{display:none}.wp-color-result{background-color:#f9f9f9;border:1px solid #bbb;border-radius:2px;cursor:pointer;display:inline-block;height:22px;margin:0 6px 6px 0;position:relative;top:1px;user-select:none;-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;vertical-align:bottom;display:inline-block;padding-left:30px}.wp-color-result:after{background:#f3f3f3;background-image:-webkit-gradient(linear,left top,left bottom,from(#fefefe),to(#f4f4f4));background-image:-webkit-linear-gradient(top,#fefefe,#f4f4f4);background-image:-moz-linear-gradient(top,#fefefe,#f4f4f4);background-image:-o-linear-gradient(top,#fefefe,#f4f4f4);background-image:linear-gradient(to bottom,#fefefe,#f4f4f4);color:#333;text-shadow:0 1px 0 #fff;border-radius:0 1px 1px 0;border-left:1px solid #bbb;content:attr(title);display:block;font-size:11px;line-height:22px;padding:0 6px;position:relative;right:0;text-align:center;top:0}.wp-color-result:hover{border-color:#aaa;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.2);box-shadow:0 1px 1px rgba(0,0,0,.1)}.wp-color-result:hover:after{color:#222;border-color:#aaa;border-left:1px solid #999}.wp-color-result.wp-picker-open{top:0}.wp-color-result.wp-picker-open:after{content:attr(data-current)}.wp-picker-container,.wp-picker-container:active{display:inline-block;outline:0}.wp-color-result:focus{border-color:#888;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.2);box-shadow:0 1px 2px rgba(0,0,0,.2)}.wp-color-result:focus:after{border-color:#888}.wp-picker-open+.wp-picker-input-wrap{display:inline-block;vertical-align:top}.wp-picker-container .button{margin-left:6px}.wp-picker-container .iris-square-slider .ui-slider-handle:focus{background-color:#555}.wp-picker-container .iris-picker{border-color:#dfdfdf;margin-top:6px}input[type=text].iris-error{background-color:#ffebe8;border-color:#c00;color:#000}
\ No newline at end of file
+.wp-color-picker{width:80px}.wp-picker-container .hidden{display:none}.wp-color-result{background-color:#f7f7f7;border:1px solid #ccc;-webkit-border-radius:3px;border-radius:3px;cursor:pointer;height:22px;margin:0 6px 6px 0;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:bottom;display:inline-block;padding-left:30px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,.08);box-shadow:0 1px 0 rgba(0,0,0,.08)}.wp-color-result:after{background:#f7f7f7;-webkit-border-radius:0 2px 2px 0;border-radius:0 2px 2px 0;border-left:1px solid #ccc;color:#555;content:attr(title);display:block;font-size:11px;line-height:22px;padding:0 6px;position:relative;right:0;text-align:center;top:0;-webkit-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff}.wp-color-result:hover{background:#fafafa;border-color:#999;color:#222}.wp-color-result:hover:after{color:#222;border-color:#aaa;border-left:1px solid #999}.wp-color-result{top:0}.wp-color-result.wp-picker-open:after{content:attr(data-current)}.wp-picker-container,.wp-picker-container:active{display:inline-block;outline:0}.wp-color-result:focus{border-color:#888;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.2);box-shadow:0 1px 2px rgba(0,0,0,.2)}.wp-color-result:focus:after{border-color:#888}.wp-picker-open+.wp-picker-input-wrap{display:inline-block;vertical-align:top}.wp-picker-container .button{margin-left:6px}.wp-picker-container .iris-square-slider .ui-slider-handle:focus{background-color:#555}.wp-picker-container .iris-picker{-webkit-border-radius:0;border-radius:0;border-color:#dfdfdf;margin-top:6px}.wp-picker-container input[type=text].wp-color-picker{width:65px;font-size:12px;font-family:monospace;text-align:center;line-height:16px;margin:0}.wp-picker-container input[type=text].wp-color-picker:focus::-webkit-input-placeholder{color:transparent}.wp-picker-container input[type=text].wp-color-picker:-moz-placeholder{color:#999}.wp-picker-container input[type=text].iris-error{background-color:#ffebe8;border-color:#c00;color:#000}
\ No newline at end of file
diff --git a/sources/wp-admin/css/colors-classic.css b/sources/wp-admin/css/colors-classic.css
deleted file mode 100644
index 32bc6f4..0000000
--- a/sources/wp-admin/css/colors-classic.css
+++ /dev/null
@@ -1,2252 +0,0 @@
-/*------------------------------------------------------------------------------
-
-
-Howdy! This is the CSS file that controls the
-Blue (classic) color style on the WordPress Dashboard.
-
-This file contains both LTR and RTL styles.
-
-
-TABLE OF CONTENTS:
-------------------
- 1.0 - Left to Right Styles
- 2.0 - Right to Left Styles
-
-
-------------------------------------------------------------------------------*/
-
-
-/*------------------------------------------------------------------------------
- 1.0 - Left to Right Styles
-------------------------------------------------------------------------------*/
-
-.find-box-search,
-.find-box-buttons {
- background-color: #eff8ff;
- border-top: 1px solid #dce6f8;
-}
-
-.find-box {
- background-color: #5589aa;
-}
-
-.find-box-head {
- color: #fff;
-}
-
-.find-box-inside {
- background-color: #fff;
-}
-
-a.page-numbers:hover {
- border-color: #999;
-}
-
-body,
-#wpbody,
-.form-table .pre,
-.ui-autocomplete li a {
- 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: #d1e5ee;
-}
-
-#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;
-}
-
-table.widefat {
- border-color: #d1e5ee;
- 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;
-}
-
-ul.category-tabs li {
- border-color: transparent;
-}
-
-div.tabs-panel,
-.wp-tab-panel,
-ul.add-menu-item-tabs li.tabs,
-.wp-tab-active {
- border-color: #d1e5ee;
- background-color: #fff;
-}
-
-ul.category-tabs li.tabs {
- border-color: #d1e5ee #d1e5ee #fff;
-}
-
-ul.category-tabs li.tabs,
-ul.add-menu-item-tabs li.tabs,
-.wp-tab-active {
- background-color: #fff;
-}
-
-kbd,
-code {
- background: #eff8ff;
-}
-
-textarea,
-input[type="text"],
-input[type="password"],
-input[type="file"],
-input[type="email"],
-input[type="number"],
-input[type="search"],
-input[type="tel"],
-input[type="url"],
-select {
- border-color: #d1e5ee;
-}
-
-textarea:focus,
-input[type="text"]:focus,
-input[type="password"]:focus,
-input[type="file"]: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: #b0c8d7;
-}
-
-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;
-}
-
-.revisions-meta,
-.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,
-.sidebar-name,
-#nav-menu-header,
-#nav-menu-footer,
-.menu-item-handle,
-#fullscreen-topbar {
- background: #f5fafd;
- background-image: -webkit-gradient(linear, left bottom, left top, from(#eff8ff), to(#f7fcfe));
- background-image: -webkit-linear-gradient(bottom, #eff8ff, #f7fcfe);
- background-image: -moz-linear-gradient(bottom, #eff8ff, #f7fcfe);
- background-image: -o-linear-gradient(bottom, #eff8ff, #f7fcfe);
- background-image: linear-gradient(to top, #eff8ff, #f7fcfe);
-}
-
-.widget .widget-top,
-.postbox h3,
-.stuffbox h3 {
- border-bottom-color: #d1e5ee;
- text-shadow: #fff 0 1px 0;
- -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: #21759b;
-}
-
-.sorthelper {
- background-color: #ccf3fa;
-}
-
-.ac_match,
-.subsubsub a.current {
- color: #000;
-}
-
-.wrap h2 {
- color: #174f69;
-}
-
-.wrap .add-new-h2,
-.wrap .add-new-h2:active {
- background: #f1f1f1;
-}
-
-.subtitle {
- color: #777;
-}
-
-.ac_over {
- background-color: #f0f0b8;
-}
-
-.ac_results {
- background-color: #fff;
- border-color: #b0c8d7;
-}
-
-.ac_results li {
- color: #101010;
-}
-
-.alternate,
-.alt {
- background-color: #f7fcfe;
-}
-
-.available-theme a.screenshot {
- background-color: #eff8ff;
- border-color: #acd;
-}
-
-#current-theme {
- border-bottom-color: #d1e5ee;
-}
-
-.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,
-#commentsdiv #add-new-comment {
- border-color: #dfdfdf;
-}
-
-.highlight {
- background-color: #e4f2fd;
- color: #000;
-}
-
-.howto,
-.nonessential,
-#edit-slug-box,
-.form-input-tip,
-.subsubsub {
- color: #666;
-}
-
-.media-upload-form label.form-help,
-td.help {
- color: #9a9a9a;
-}
-
-.ui-autocomplete {
- border-color: #b0c8d7;
- background-color: #eff8ff;
-}
-
-.ui-autocomplete li a.ui-state-focus {
- background-color: #def1ff;
-}
-
-.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;
-}
-
-a:hover,
-a:active {
- color: #d54e21;
-}
-
-a:focus {
- color: #124964;
-}
-
-#adminmenu a:hover,
-#adminmenu li.menu-top > a:focus,
-#adminmenu .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;
-}
-
-#dashboard_right_now .table_content,
-#dashboard_right_now .table_discussion {
- border-top-color: #d1e5ee;
-}
-
-#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,
-#media-items a.delete-permanently: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: #21759b;
-}
-
-.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: #d0dfe9;
-}
-
-.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 {
- color: #333;
-}
-
-th.sortable a:hover,
-th.sortable a:active,
-th.sortable a:focus {
- color: #333;
-}
-
-th.sortable a:focus {
- background: #e1e1e1;
- background-image: -webkit-gradient(linear, left bottom, left top, from(#dcdcdc), to(#e9e9e9));
- background-image: -webkit-linear-gradient(bottom, #dcdcdc, #e9e9e9);
- background-image: -moz-linear-gradient(bottom, #dcdcdc, #e9e9e9);
- background-image: -o-linear-gradient(bottom, #dcdcdc, #e9e9e9);
- background-image: linear-gradient(to top, #dcdcdc, #e9e9e9);
-}
-
-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,
-#media-items a.delete-permanently,
-.plugins a.delete,
-.ui-tabs-nav a {
- color: #21759b;
-}
-
-#adminmenu .awaiting-mod,
-#adminmenu .update-plugins,
-#sidemenu a .update-plugins,
-#rightnow .reallynow {
- background-color: #464646;
- color: #fff;
- -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;
- -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: #f9f9f9;
- border-bottom-color: #dfdfdf;
-}
-
-#currenttheme img {
- border-color: #666;
-}
-
-#dashboard_secondary div.dashboard-widget-content ul li a {
- background-color: #f9f9f9;
-}
-
-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: #21759b !important;
-}
-
-.login #nav a:hover,
-.login #backtoblog a:hover {
- color: #d54e21 !important;
-}
-
-#wpfooter {
- color: #777;
- border-color: #b0c8d7;
-}
-
-.imgedit-group,
-#media-items .media-item,
-.media-item .describe {
- 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: #f7fcfe;
-}
-
-.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 {
- background: #f5fafd;
- background-image: -webkit-gradient(linear, left bottom, left top, from(#eff8ff), to(#f7fcfe));
- background-image: -webkit-linear-gradient(bottom, #eff8ff, #f7fcfe);
- background-image: -moz-linear-gradient(bottom, #eff8ff, #f7fcfe);
- background-image: -o-linear-gradient(bottom, #eff8ff, #f7fcfe);
- background-image: linear-gradient(to top, #eff8ff, #f7fcfe);
- border-color: #d1e5ee;
-}
-.welcome-panel p {
- color: #777;
-}
-.welcome-panel-column p {
- color: #464646;
-}
-.welcome-panel h3 {
- text-shadow: 1px 1px 1px #fff;
-}
-
-.widget,
-#widget-list .widget-top,
-.postbox,
-#titlediv,
-#poststuff .postarea,
-.stuffbox {
- border-color: #d1e5ee;
- -webkit-box-shadow: inset 0 1px 0 #fff;
- box-shadow: inset 0 1px 0 #fff;
- -webkit-border-radius: 3px;
- border-radius: 3px;
-}
-
-.widget,
-#widget-list .widget-top,
-.postbox,
-.menu-item-settings {
- background: #f5fafd;
- background-image: -webkit-gradient(linear, left bottom, left top, from(#eff8ff), to(#f7fcfe));
- background-image: -webkit-linear-gradient(bottom, #eff8ff, #f7fcfe);
- background-image: -moz-linear-gradient(bottom, #eff8ff, #f7fcfe);
- background-image: -o-linear-gradient(bottom, #eff8ff, #f7fcfe);
- background-image: linear-gradient(to top, #eff8ff, #f7fcfe);
-}
-
-.postbox h3 {
- color: #174f69;
-}
-
-.widget .widget-top {
- color: #174f69;
-}
-
-.js .sidebar-name:hover h3,
-.js .postbox h3:hover {
- color: #000;
-}
-
-.curtime #timestamp {
- background-image: url(../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(../images/xit.gif) no-repeat;
-}
-
-.tagchecklist span a:hover,
-#bulk-titles div a:hover {
- background: url(../images/xit.gif) no-repeat -10px 0;
-}
-
-#update-nag, .update-nag {
- background-color: #fffbcc;
- border-color: #e6db55;
- color: #555;
-}
-
-#screen-meta {
- background-color: #eff8ff;
- border-color: #d1e5ee;
- -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-back {
- background: #fff;
-}
-
-.contextual-help-tabs a:hover {
- background-color: #ceeaff;
- color: #333;
-}
-
-#contextual-help-back,
-.contextual-help-tabs .active {
- border-color: #d1e5ee;
-}
-
-.contextual-help-tabs .active,
-.contextual-help-tabs .active a,
-.contextual-help-tabs .active a:hover {
- background: #fff;
- color: #000;
-}
-
-/* screen options and help tabs */
-#screen-options-link-wrap,
-#contextual-help-link-wrap {
- border-right: 1px solid #d1e5ee;
- border-left: 1px solid #d1e5ee;
- border-bottom: 1px solid #d1e5ee;
- background: #eff8ff;
- background-image: -webkit-gradient(linear, left bottom, left top, from(#def1ff), to(#eff8ff));
- background-image: -webkit-linear-gradient(bottom, #def1ff, #eff8ff);
- background-image: -moz-linear-gradient(bottom, #def1ff, #eff8ff);
- background-image: -o-linear-gradient(bottom, #def1ff, #eff8ff);
- background-image: linear-gradient(to top, #def1ff, #eff8ff);
-}
-
-#screen-meta-links a {
- color: #606060;
- background: transparent url(../images/arrows.png) no-repeat right 4px;
-}
-
-#screen-meta-links a:hover,
-#screen-meta-links a:active {
- color: #000;
- background-color: transparent;
-}
-
-#screen-meta-links a.screen-meta-active {
- background-position: right -31px;
-}
-
-/* end screen options and help tabs */
-
-.login #backtoblog a {
- color: #464646;
-}
-
-#wphead {
- border-bottom: 1px solid #d0dfe9;
-}
-
-#wphead h1 a {
- color: #174f69;
-}
-
-#wpfooter a:link,
-#wpfooter a:visited {
- text-decoration: none;
-}
-
-#wpfooter 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;
-}
-
-/* editors */
-#poststuff .wp-editor-wrap .wp_themeSkin .mceStatusbar {
- border-color: #d0dfe9;
- background-color: #eff8ff;
-}
-
-#poststuff .wp-editor-wrap .wp_themeSkin .mceStatusbar * {
- color: #555;
-}
-
-#poststuff #editor-toolbar .active {
- border-color: #d0dfe9 #d0dfe9 #eff8ff;
- background-color: #eff8ff;
- color: #333;
-}
-
-.wp-editor-wrap .wp-editor-container,
-.wp-editor-wrap .wp_themeSkin table.mceLayout {
- border-color: #d1e5ee #d1e5ee #d0dfe9;
-}
-
-#editorcontainer {
- border-color: #d1e5ee #d1e5ee #d0dfe9;
-}
-
-#post-status-info {
- border-color: #d0dfe9 #d1e5ee #d1e5ee;
-}
-
-/* TinyMCE */
-
-.wp-admin .wp-editor-wrap .wp-switch-editor {
- background-color: #d3e9f2;
- border-color: #d1e5ee #d1e5ee #d3e9f2;
- color: #174F69;
-}
-
-.wp-admin .wp-editor-wrap .wp-switch-editor:active {
- background-color: #f5fafd;
-}
-
-.wp-admin .wp-editor-wrap.tmce-active .switch-tmce,
-.wp-admin .wp-editor-wrap.html-active .switch-html {
- background: #f7fcfe;
- border-color: #d1e5ee #d1e5ee #f7fcfe;
-}
-
-.wp-admin .wp-editor-wrap .quicktags-toolbar,
-.wp-admin .wp-editor-wrap .wp_themeSkin tr.mceFirst td.mceToolbar {
- border-color: #d0dfe9;
- background-color: #f5fafd;
- background-image: -webkit-gradient(linear, left bottom, left top, from(#eff8ff), to(#f7fcfe));
- background-image: -webkit-linear-gradient(bottom, #eff8ff, #f7fcfe);
- background-image: -moz-linear-gradient(bottom, #eff8ff, #f7fcfe);
- background-image: -o-linear-gradient(bottom, #eff8ff, #f7fcfe);
- background-image: linear-gradient(to top, #eff8ff, #f7fcfe);
-}
-
-.wp-admin .wp_themeSkin table.mceListBox {
- border-color: #d1e5ee;
-}
-
-.wp-admin .wp_themeSkin table.mceListBoxEnabled:hover,
-.wp-admin .wp_themeSkin table.mceListBoxEnabled:active,
-.wp-admin .wp_themeSkin table.mceListBoxHover,
-.wp-admin .wp_themeSkin table.mceListBoxHover:active,
-.wp-admin .wp_themeSkin table.mceListBoxSelected {
- border-color: #b8cfdf;
-}
-
-.wp-admin .wp_themeSkin a.mceButtonEnabled:hover,
-.wp-admin .wp_themeSkin table.mceSplitButton:hover {
- border-color: #c3d2dc;
- background: #f4f9fc;
- background-image: -webkit-gradient(linear, left bottom, left top, from(#f4f9fc), to(#fff));
- background-image: -webkit-linear-gradient(bottom, #f4f9fc, #fff);
- background-image: -moz-linear-gradient(bottom, #f4f9fc, #fff);
- background-image: -o-linear-gradient(bottom, #f4f9fc, #fff);
- background-image: linear-gradient(to top, #f4f9fc, #fff);
-}
-
-.wp-admin .wp_themeSkin a.mceButton:active,
-.wp-admin .wp_themeSkin a.mceButtonEnabled:active,
-.wp-admin .wp_themeSkin a.mceButtonSelected:active,
-.wp-admin .wp_themeSkin a.mceButtonActive,
-.wp-admin .wp_themeSkin a.mceButtonActive:active,
-.wp-admin .wp_themeSkin a.mceButtonActive:hover,
-.wp-admin .wp_themeSkin .mceSplitButtonSelected table,
-.wp-admin .wp_themeSkin .mceSplitButtonSelected table:hover {
- border-color: #8f9da9 #c3d2dc #c3d2dc #8f9da9;
- background: #f4f9fc;
- background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#f4f9fc));
- background-image: -webkit-linear-gradient(bottom, #fff, #f4f9fc);
- background-image: -moz-linear-gradient(bottom, #fff, #f4f9fc);
- background-image: -o-linear-gradient(bottom, #fff, #f4f9fc);
- background-image: linear-gradient(to top, #fff, #f4f9fc);
-}
-
-.wp-admin .wp_themeSkin .mceSplitButtonSelected table a.mceOpen,
-.wp-admin .wp_themeSkin .mceSplitButtonSelected table a.mceAction {
- border-color: #8f9da9 #c3d2dc #c3d2dc #8f9da9;
-}
-
-.wp-admin .wp_themeSkin .mceSplitButton:hover a {
- border-color: #c3d2dc;
-}
-/* end TinyMCE */
-
-.editwidget .widget-inside {
- border-color: #d0dfe9;
-}
-
-#titlediv #title {
- background-color: #fff;
-}
-
-#tTips p#tTips_inside {
- background-color: #ddd;
- color: #333;
-}
-
-#poststuff .inside .the-tagcloud {
- border-color: #ddd;
-}
-
-/* menu */
-#adminmenuback,
-#adminmenuwrap {
- background-color: #eff8ff;
- border-color: #d1e5ee;
-}
-
-#adminmenushadow,
-#adminmenuback {
- background-image: url(../images/menu-shadow.png);
- background-position: top right;
- background-repeat: repeat-y;
-}
-
-#adminmenu li.wp-menu-separator {
- background: #d1e5ee;
- border-color: #bed1dd;
-}
-
-#adminmenu div.separator {
- border-color: #d1e5ee;
-}
-
-#adminmenu a.menu-top,
-#adminmenu .wp-submenu .wp-submenu-head {
- border-top-color: #fff;
- border-bottom-color: #cae6ff;
-}
-
-#adminmenu li.wp-menu-open {
- border-color: #d1e5ee;
-}
-
-#adminmenu li.menu-top:hover,
-#adminmenu li.opensub > a.menu-top,
-#adminmenu li > a.menu-top:focus {
- background-color: #e0f1ff;
- color: #d54e21;
- text-shadow: 0 1px 0 rgba( 255, 255, 255, 0.4 );
-}
-
-/* So it doesn't get applied to the number spans (comments, updates, etc) */
-#adminmenu li.menu-top:hover > a span,
-#adminmenu li.menu-top > a:focus span {
- text-shadow: none;
-}
-
-#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: #5589aa;
- background-image: -webkit-gradient(linear, left bottom, left top, from(#5589aa), to(#619bbb));
- background-image: -webkit-linear-gradient(bottom, #5589aa, #619bbb);
- background-image: -moz-linear-gradient(bottom, #5589aa, #619bbb);
- background-image: -o-linear-gradient(bottom, #5589aa, #619bbb);
- background-image: linear-gradient(to top, #5589aa, #619bbb);
-}
-
-#adminmenu .wp-menu-arrow div {
- background: #5589aa;
- background-image: -webkit-gradient(linear, right bottom, left top, from(#5589aa), to(#619bbb));
- background-image: -webkit-linear-gradient(bottom right, #5589aa, #619bbb);
- background-image: -moz-linear-gradient(bottom right, #5589aa, #619bbb);
- background-image: -o-linear-gradient(bottom right, #5589aa, #619bbb);
- background-image: linear-gradient(to top left, #5589aa, #619bbb);
-}
-
-#adminmenu li.wp-not-current-submenu .wp-menu-arrow {
- border-top-color: #fff;
- border-bottom-color: #cae6ff;
- background: #e0f1ff;
-}
-
-#adminmenu li.wp-not-current-submenu .wp-menu-arrow div {
- background: #e0f1ff;
- border-color: #cae6ff;
-}
-
-.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: #5a8fad;
- border-bottom-color: #5589aa;
-}
-
-.folded #adminmenu li.wp-has-current-submenu,
-.folded #adminmenu li.current.menu-top {
- border-top-color: #5a8fad;
- border-bottom-color: #5589aa;
-}
-
-#adminmenu .wp-submenu a:hover,
-#adminmenu .wp-submenu a:focus {
- background-color: #eff8ff;
- 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,
-.folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
-.folded #adminmenu .wp-has-current-submenu .wp-submenu {
- background-color: #fff;
- border-color: #d0dfe9;
- -webkit-box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.4);
- box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.4);
-}
-
-#adminmenu .wp-submenu .wp-submenu-head {
- background-color: #e0f1ff;
- color: #333;
-}
-
-/* collapse menu button */
-#collapse-menu {
- color: #a0c3d5;
- border-top-color: #f9f9f9;
-}
-
-#collapse-menu:hover {
- color: #5a8fad;
-}
-
-#collapse-button {
- border-color: #d0dfe9;
- background: #eff8ff;
- background-image: -webkit-gradient(linear, left bottom, left top, from(#eff8ff), to(#fff));
- background-image: -webkit-linear-gradient(bottom, #eff8ff, #fff);
- background-image: -moz-linear-gradient(bottom, #eff8ff, #fff);
- background-image: -o-linear-gradient(bottom, #eff8ff, #fff);
- background-image: linear-gradient(to top, #eff8ff, #fff);
-}
-
-#collapse-menu:hover #collapse-button {
- border-color: #a0c3d5;
-}
-
-#collapse-button div {
- background: transparent url(../images/arrows-vs.png) no-repeat 0 -72px;
-}
-
-.folded #collapse-button div {
- background-position: 0 -108px;
-}
-
-/* Auto-folding of the admin menu */
-@media only screen and (max-width: 900px) {
- .auto-fold #adminmenu li.wp-has-current-submenu,
- .auto-fold #adminmenu li.current.menu-top {
- background-color: #5589aa;
- background-image: -webkit-gradient(linear, left bottom, left top, from(#5589aa), to(#619bbb));
- background-image: -webkit-linear-gradient(bottom, #5589aa, #619bbb);
- background-image: -moz-linear-gradient(bottom, #5589aa, #619bbb);
- background-image: -o-linear-gradient(bottom, #5589aa, #619bbb);
- background-image: linear-gradient(bottom, #5589aa, #619bbb);
- }
-
- .auto-fold #adminmenu li.wp-has-current-submenu,
- .auto-fold #adminmenu li.current.menu-top {
- border-top-color: #5a8fad;
- border-bottom-color: #5589aa;
- }
-
- .auto-fold #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
- .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu {
- background-color: #fff;
- border-color: #d0dfe9;
- -webkit-box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.4);
- box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.4);
- }
-
- .auto-fold #collapse-button div {
- background-position: 0 -108px;
- }
-}
-
-/* menu and screen icons */
-.icon16,
-.icon32,
-div.wp-menu-image {
- background-color: transparent;
- background-repeat: no-repeat;
-}
-
-.icon16.icon-dashboard,
-.menu-icon-dashboard div.wp-menu-image,
-.icon16.icon-post,
-.menu-icon-post div.wp-menu-image,
-.icon16.icon-media,
-.menu-icon-media div.wp-menu-image,
-.icon16.icon-links,
-.menu-icon-links div.wp-menu-image,
-.icon16.icon-page,
-.menu-icon-page div.wp-menu-image,
-.icon16.icon-comments,
-.menu-icon-comments div.wp-menu-image,
-.icon16.icon-appearance,
-.menu-icon-appearance div.wp-menu-image,
-.icon16.icon-plugins,
-.menu-icon-plugins div.wp-menu-image,
-.icon16.icon-users,
-.menu-icon-users div.wp-menu-image,
-.icon16.icon-tools,
-.menu-icon-tools div.wp-menu-image,
-.icon16.icon-settings,
-.menu-icon-settings div.wp-menu-image,
-.icon16.icon-site,
-.menu-icon-site div.wp-menu-image,
-.icon16.icon-generic,
-.menu-icon-generic div.wp-menu-image {
- background-image: url(../images/menu-vs.png?ver=20121105);
-}
-
-.icon16.icon-dashboard,
-#adminmenu .menu-icon-dashboard div.wp-menu-image {
- background-position: -59px -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-position: -59px -1px;
-}
-
-.icon16.icon-post,
-#adminmenu .menu-icon-post div.wp-menu-image {
- background-position: -269px -33px;
-}
-
-#adminmenu .menu-icon-post:hover div.wp-menu-image,
-#adminmenu .menu-icon-post.wp-has-current-submenu div.wp-menu-image,
-#adminmenu .menu-icon-post.current div.wp-menu-image {
- background-position: -269px -1px;
-}
-
-.icon16.icon-media,
-#adminmenu .menu-icon-media div.wp-menu-image {
- background-position: -119px -33px;
-}
-
-#adminmenu .menu-icon-media:hover div.wp-menu-image,
-#adminmenu .menu-icon-media.wp-has-current-submenu div.wp-menu-image,
-#adminmenu .menu-icon-media.current div.wp-menu-image {
- background-position: -119px -1px;
-}
-
-.icon16.icon-links,
-#adminmenu .menu-icon-links div.wp-menu-image {
- background-position: -89px -33px;
-}
-
-#adminmenu .menu-icon-links:hover div.wp-menu-image,
-#adminmenu .menu-icon-links.wp-has-current-submenu div.wp-menu-image,
-#adminmenu .menu-icon-links.current div.wp-menu-image {
- background-position: -89px -1px;
-}
-
-.icon16.icon-page,
-#adminmenu .menu-icon-page div.wp-menu-image {
- background-position: -149px -33px;
-}
-
-#adminmenu .menu-icon-page:hover div.wp-menu-image,
-#adminmenu .menu-icon-page.wp-has-current-submenu div.wp-menu-image,
-#adminmenu .menu-icon-page.current div.wp-menu-image {
- background-position: -149px -1px;
-}
-
-.icon16.icon-comments,
-#adminmenu .menu-icon-comments div.wp-menu-image {
- background-position: -29px -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-position: -29px -1px;
-}
-
-.icon16.icon-appearance,
-#adminmenu .menu-icon-appearance div.wp-menu-image {
- background-position: 1px -33px;
-}
-
-#adminmenu .menu-icon-appearance:hover div.wp-menu-image,
-#adminmenu .menu-icon-appearance.wp-has-current-submenu div.wp-menu-image,
-#adminmenu .menu-icon-appearance.current div.wp-menu-image {
- background-position: 1px -1px;
-}
-
-.icon16.icon-plugins,
-#adminmenu .menu-icon-plugins div.wp-menu-image {
- background-position: -179px -33px;
-}
-
-#adminmenu .menu-icon-plugins:hover div.wp-menu-image,
-#adminmenu .menu-icon-plugins.wp-has-current-submenu div.wp-menu-image,
-#adminmenu .menu-icon-plugins.current div.wp-menu-image {
- background-position: -179px -1px;
-}
-
-.icon16.icon-users,
-#adminmenu .menu-icon-users div.wp-menu-image {
- 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-position: -300px -1px;
-}
-
-.icon16.icon-tools,
-#adminmenu .menu-icon-tools div.wp-menu-image {
- background-position: -209px -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-position: -209px -1px;
-}
-
-.icon16.icon-settings,
-#adminmenu .menu-icon-settings div.wp-menu-image {
- background-position: -239px -33px;
-}
-
-#adminmenu .menu-icon-settings:hover div.wp-menu-image,
-#adminmenu .menu-icon-settings.wp-has-current-submenu div.wp-menu-image,
-#adminmenu .menu-icon-settings.current div.wp-menu-image {
- background-position: -239px -1px;
-}
-
-.icon16.icon-site,
-#adminmenu .menu-icon-site div.wp-menu-image {
- background-position: -359px -33px;
-}
-
-#adminmenu .menu-icon-site:hover div.wp-menu-image,
-#adminmenu .menu-icon-site.wp-has-current-submenu div.wp-menu-image,
-#adminmenu .menu-icon-site.current div.wp-menu-image {
- background-position: -359px -1px;
-}
-
-.icon16.icon-generic,
-#adminmenu .menu-icon-generic div.wp-menu-image {
- background-position: -330px -33px;
-}
-
-#adminmenu .menu-icon-generic:hover div.wp-menu-image,
-#adminmenu .menu-icon-generic.wp-has-current-submenu div.wp-menu-image,
-#adminmenu .menu-icon-generic.current div.wp-menu-image {
- background-position: -330px -1px;
-}
-/* end menu and screen icons */
-
-/* Screen Icons */
-.icon32.icon-post,
-#icon-edit,
-#icon-post,
-.icon32.icon-dashboard,
-#icon-index,
-.icon32.icon-media,
-#icon-upload,
-.icon32.icon-links,
-#icon-link-manager,
-#icon-link,
-#icon-link-category,
-.icon32.icon-page,
-#icon-edit-pages,
-#icon-page,
-.icon32.icon-comments,
-#icon-edit-comments,
-.icon32.icon-appearance,
-#icon-themes,
-.icon32.icon-plugins,
-#icon-plugins,
-.icon32.icon-users,
-#icon-users,
-#icon-profile,
-#icon-user-edit,
-.icon32.icon-tools,
-#icon-tools,
-#icon-admin,
-.icon32.icon-settings,
-#icon-options-general,
-.icon32.icon-site,
-#icon-ms-admin,
-.icon32.icon-generic,
-#icon-generic {
- background-image: url(../images/icons32-vs.png?ver=20121105);
-}
-
-.icon32.icon-post,
-#icon-edit,
-#icon-post {
- background-position: -552px -5px;
-}
-
-.icon32.icon-dashboard,
-#icon-index {
- background-position: -137px -5px;
-}
-
-.icon32.icon-media,
-#icon-upload {
- background-position: -251px -5px;
-}
-
-.icon32.icon-links,
-#icon-link-manager,
-#icon-link,
-#icon-link-category {
- background-position: -190px -5px;
-}
-
-.icon32.icon-page,
-#icon-edit-pages,
-#icon-page {
- background-position: -312px -5px;
-}
-
-.icon32.icon-comments,
-#icon-edit-comments {
- background-position: -72px -5px;
-}
-
-.icon32.icon-appearance,
-#icon-themes {
- background-position: -11px -5px;
-}
-
-.icon32.icon-plugins,
-#icon-plugins {
- background-position: -370px -5px;
-}
-
-.icon32.icon-users,
-#icon-users,
-#icon-profile,
-#icon-user-edit {
- background-position: -600px -5px;
-}
-
-.icon32.icon-tools,
-#icon-tools,
-#icon-admin {
- background-position: -432px -5px;
-}
-
-.icon32.icon-settings,
-#icon-options-general {
- background-position: -492px -5px;
-}
-
-.icon32.icon-site,
-#icon-ms-admin {
- background-position: -659px -5px;
-}
-
-.icon32.icon-generic,
-#icon-generic {
- background-position: -708px -5px;
-}
-
-/* end screen icons */
-
-/* Post format icons */
-
-.post-format-icon {
- background: url(../images/post-formats-vs.png) no-repeat;
-}
-
-/* Diff */
-table.diff .diff-deletedline {
- background-color: #ffe9e9;
-}
-
-table.diff .diff-deletedline del {
- background-color: #faa;
-}
-
-table.diff .diff-addedline {
- background-color: #e9ffe9;
-}
-
-table.diff .diff-addedline ins {
- background-color: #afa;
-}
-
-.revisions-meta {
- border: 1px solid #d1e5ee;
-}
-
-.revisions-controls {
- background: #fff;
- background: -webkit-gradient(linear, left bottom, left top, color-stop(0%,rgba(255,255,255,1)), color-stop(30px,rgba(255,255,255,1)), color-stop(100%,rgba(255,255,255,1)));
- background: -webkit-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 30px, rgba(255,255,255,1) 100%);
- background: -moz-linear-gradient(bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 30px, rgba(255,255,255,1) 100%);
- background: -o-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 30px, rgba(255,255,255,1) 100%);
- background: linear-gradient(to top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 30px, rgba(255,255,255,1) 100%);
-}
-
-.revisions-tooltip,
-.revisions-tooltip-arrow span {
- border-color: #d1e5ee;
- background-color: #fff;
-}
-
-.revisions-tickmarks > div {
- border-color: #d1e5ee;
-}
-
-/* jQuery UI Slider */
-.wp-slider.ui-slider {
- border-color: #d1e5ee;
-}
-
-.wp-slider .ui-slider-handle {
- color: #333;
- border-color: none;
-}
-
-.wp-slider .ui-slider-handle {
- border-color: #d0dfe9;
- background: #eff8ff;
- background-image: -webkit-gradient(linear, left bottom, left top, from(#eff8ff), to(#fff));
- background-image: -webkit-linear-gradient(bottom, #eff8ff, #fff);
- background-image: -moz-linear-gradient(bottom, #eff8ff, #fff);
- background-image: -o-linear-gradient(bottom, #eff8ff, #fff);
- background-image: linear-gradient(to top, #eff8ff, #fff);
-}
-
-.wp-slider .ui-slider-handle:hover,
-.wp-slider .ui-slider-handle:focus {
- border-color: #a0c3d5;
-}
-
-.wp-slider .ui-slider-handle.ui-state-hover,
-.wp-slider .ui-slider-handle.ui-state-focus {
- border-color: #a0c3d5;
- outline: none;
-}
-
-/* edit image */
-#sidemenu a {
- background-color: #f9f9f9;
- border-color: #f9f9f9;
- border-bottom-color: #dfdfdf;
-}
-
-#sidemenu a.current {
- background-color: #fff;
- border-color: #dfdfdf #dfdfdf #fff;
- color: #d54e21;
-}
-
-#replyerror {
- border-color: #ddd;
- background-color: #f9f9f9;
-}
-
-/* table vim shortcuts */
-.vim-current,
-.vim-current th,
-.vim-current td {
- background-color: #e4f2fd !important;
-}
-
-/* Install Plugins */
-#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 editor */
-#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 .quick-edit-save {
- background-color: #f1f1f1;
-}
-
-fieldset.inline-edit-col-right .inline-edit-col {
- border-color: #dfdfdf;
-}
-
-.attention {
- color: #d54e21;
-}
-
-.js .meta-box-sortables .postbox:hover .handlediv {
- background: transparent url(../images/arrows-vs.png) no-repeat 6px 7px;
-}
-
-.tablenav .tablenav-pages {
- color: #555;
-}
-
-.tablenav .tablenav-pages a {
- border-color: #d1e5ee;
- background: #eee;
- -moz-box-shadow: inset 0 1px 0 #fff;
- -webkit-box-shadow: inset 0 1px 0 #fff;
- box-shadow: inset 0 1px 0 #fff;
-}
-
-.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: #acd;
-}
-
-#current-theme img {
- border-color: #b0c8d7;
-}
-
-#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: #d1e5ee;
-}
-
-#minor-publishing {
- border-bottom-color: #cae6ff;
-}
-
-#post-body .misc-pub-section {
- border-left-color: #eee;
-}
-
-.post-com-count span {
- background-color: #bbb;
-}
-
-.form-table .color-palette td {
- border-color: #fff;
-}
-
-.sortable-placeholder {
- border-color: #bbb;
- background-color: #f5f5f5;
-}
-
-#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,
-.view-switch #view-switch-excerpt {
- background-color: transparent;
- background-image: url('../images/list.png');
- background-repeat: no-repeat;
-}
-
-.view-switch #view-switch-list {
- background-position: 0 0;
-}
-
-.view-switch .current #view-switch-list {
- background-position: -40px 0;
-}
-
-.view-switch #view-switch-excerpt {
- background-position: -20px 0;
-}
-
-.view-switch .current #view-switch-excerpt {
- background-position: -60px 0;
-}
-
-#header-logo {
- background: transparent url(../images/wp-logo-vs.png?ver=20101102) no-repeat scroll center center;
-}
-
-.popular-tags,
-.feature-filter {
- background-color: #fff;
- border-color: #d1e5ee;
-}
-
-div.widgets-sortables,
-#widgets-left .inactive,
-#available-widgets .widget-holder {
- background-color: #f7fcfe;
- border-color: #d0dfe9;
-}
-
-#available-widgets .widget-description {
- color: #555;
-}
-
-.sidebar-name {
- color: #464646;
- text-shadow: #fff 0 1px 0;
- border-color: #d0dfe9;
- -webkit-box-shadow: inset 0 1px 0 #fff;
- box-shadow: inset 0 1px 0 #fff;
-}
-
-.js .sidebar-name:hover,
-.js #removing-widget {
- color: #d54e21;
-}
-
-#removing-widget span {
- color: black;
-}
-
-.js .sidebar-name-arrow {
- background: transparent url(../images/arrows-vs.png) no-repeat 5px 9px;
-}
-
-.js .sidebar-name:hover .sidebar-name-arrow {
- background: transparent url(../images/arrows-dark-vs.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: 0.5;
-}
-
-#dashboard_recent_comments div.undo {
- border-top-color: #dfdfdf;
-}
-
-.comment-ays,
-.comment-ays th {
- border-color: #ddd;
-}
-
-.comment-ays th {
- background-color: #f1f1f1;
-}
-
-/* added from nav-menu.css */
-#menu-management .menu-edit {
- border-color: #d0dfe9;
-}
-
-#post-body {
- background: #fff;
- border-top-color: #fff;
- border-bottom-color: #d0dfe9;
-}
-
-#nav-menu-header {
- border-bottom-color: #d0dfe9;
-}
-
-#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: #f7fcfe;
- border-color: #d0dfe9;
-}
-
-.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: #d0dfe9;
-}
-
-.menu li.deleting .menu-item-handle {
- background-color: #f66;
- text-shadow: #ccc;
-}
-
-.item-type { /* Menu item controls */
- color: #999;
-}
-
-.item-controls .menu-item-delete:hover {
- color: #f00;
-}
-
-.nav-menus-php .item-edit {
- background: transparent url(../images/arrows-vs.png) no-repeat 8px 10px;
- border-bottom-color: #eff8ff;
-}
-
-.nav-menus-php .item-edit:hover {
- background: transparent url(../images/arrows-dark-vs.png) no-repeat 8px 10px;
-}
-
-.menu-item-settings { /* Menu editing */
- border-color: #d0dfe9;
-}
-
-.link-to-original {
- color: #777;
- border-color: #d0dfe9;
-}
-
-#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: #21759b;
- border-bottom-color: #21759b;
-}
-
-.submitbox .submitcancel:hover {
- background: #21759b;
- color: #fff;
-}
-/* end added from nav-menu.css */
-
-.nav-tab {
- border-color: #d1e5ee #d1e5ee #fff;
-}
-
-.nav-tab:hover,
-.nav-tab-active {
- border-color: #acd #acd #fff;
-}
-
-h2.nav-tab-wrapper, h3.nav-tab-wrapper {
- border-bottom-color: #acd;
-}
-
-#menu-management .nav-tab-active,
-.menu-item-handle,
-.menu-item-settings {
- -webkit-box-shadow: inset 0 1px 0 #fff;
- box-shadow: inset 0 1px 0 #fff;
-}
-
-#menu-management .nav-tab-active {
- background: #f7fcfe;
- border-bottom-color: #f7fcfe;
-}
-
-#upload-form label {
- color: #777;
-}
-
-/* custom header & background pages */
-
-/* full screen */
-.fullscreen-overlay {
- background: #fff;
-}
-
-.wp-fullscreen-focus #wp-fullscreen-title,
-.wp-fullscreen-focus #wp-fullscreen-container {
- border-color: #bed1dd;
-}
-
-#fullscreen-topbar {
- border-bottom-color: #d1e5ee;
-}
-
-/* Begin About Pages */
-
-.about-wrap h1 {
- color: #333;
- text-shadow: 1px 1px 1px #fff;
-}
-
-.about-text {
- color: #777;
-}
-
-.wp-badge {
- color: #fff;
- text-shadow: 0 -1px 0 rgba(22, 57, 81, 0.3);
-}
-
-.about-wrap h2 .nav-tab {
- color: #21759b;
-}
-
-.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 #fff;
- color: #464646;
-}
-
-.about-wrap h3 {
- color: #333;
- text-shadow: 1px 1px 1px #fff;
-}
-
-.about-wrap .feature-section h4 {
- color: #464646;
-}
-
-.about-wrap h4.wp-people-group {
- text-shadow: 1px 1px 1px #fff;
-}
-
-.about-wrap .point-releases {
- border-bottom: 1px solid #dfdfdf;
-}
-
-.about-wrap .point-releases h3 {
- border-top: 1px solid #dfdfdf;
-}
-
-.about-wrap .point-releases h3:first-child {
- border: 0;
-}
-
-.about-wrap li.wp-person img.gravatar {
- -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 #fff;
-}
-
-.freedoms-php .about-wrap ol li {
- color: #999;
-}
-
-.freedoms-php .about-wrap ol p {
- color: #464646;
-}
-
-/* End About Pages */
-
-
-/*------------------------------------------------------------------------------
- 2.0 - Right to Left Styles
-------------------------------------------------------------------------------*/
-
-.rtl .bar {
- border-right-color: transparent;
- 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;
-}
-
-/* Menu */
-.rtl #adminmenushadow,
-.rtl #adminmenuback {
- background-image: url(../images/menu-shadow-rtl.png);
- background-position: top left;
-}
-
-.rtl #adminmenu .wp-submenu .wp-submenu-head {
- border-right-color: transparent;
- border-left-color: #d1e5ee;
-}
-
-.rtl #adminmenu .wp-submenu,
-.rtl.folded #adminmenu .wp-has-current-submenu .wp-submenu {
- -webkit-box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 );
- box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 );
-}
-
-.rtl #adminmenu .wp-has-current-submenu .wp-submenu {
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-/* Collapse Menu Button */
-.rtl #collapse-button div {
- background-position: 0 -108px;
-}
-
-.rtl.folded #collapse-button div {
- background-position: 0 -72px;
-}
-
-/* Auto-folding of the admin menu for RTL */
-@media only screen and (max-width: 900px) {
- .rtl.auto-fold #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
- .rtl.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu {
- -webkit-box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 );
- box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 );
- }
-
- .rtl.auto-fold #collapse-button div {
- background-position: 0 -72px;
- }
-}
-
-/* edit image */
-.js.rtl .meta-box-sortables .postbox:hover .handlediv {
- background: transparent url(../images/arrows-vs.png) no-repeat 6px 7px;
-}
-
-.rtl #post-body .misc-pub-section {
- border-right-color: transparent;
- border-left-color: #d1e5ee;
-}
-
-.js.rtl .sidebar-name-arrow {
- background: transparent url(../images/arrows-vs.png) no-repeat 5px 9px;
-}
-
-.js.rtl .sidebar-name:hover .sidebar-name-arrow {
- background: transparent url(../images/arrows-dark-vs.png) no-repeat 5px 9px;
-}
-
-/**
- * HiDPI Displays
- */
-@media print,
- (-o-min-device-pixel-ratio: 5/4),
- (-webkit-min-device-pixel-ratio: 1.25),
- (min-resolution: 120dpi) {
-
- .curtime #timestamp {
- background-image: url("../images/date-button-2x.gif?ver=20120916");
- background-size: 16px auto;
- }
-
- .tagchecklist span a,
- #bulk-titles div a,
- .tagchecklist span a:hover,
- #bulk-titles div a:hover {
- background-image: url("../images/xit-2x.gif?ver=20120916");
- background-size: 20px auto;
- }
-
- #screen-meta-links a.show-settings,
- #screen-meta-links a.show-settings.screen-meta-active,
- #adminmenu .wp-has-submenu:hover .wp-menu-toggle,
- #adminmenu .wp-menu-open .wp-menu-toggle,
- #collapse-button div,
- .nav-menus-php .item-edit,
- .js .meta-box-sortables .postbox:hover .handlediv,
- .sidebar-name-arrow,
- .rtl #adminmenu .wp-has-submenu:hover .wp-menu-toggle,
- .rtl #adminmenu .wp-menu-open .wp-menu-toggle,
- .js.rtl .meta-box-sortables .postbox:hover .handlediv,
- .rtl .sidebar-name-arrow {
- background-image: url("../images/arrows-vs-2x.png?ver=20120916");
- background-size: 15px 123px;
- }
-
- #adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,
- #adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle,
- .nav-menus-php .item-edit:hover,
- .sidebar-name:hover .sidebar-name-arrow,
- .rtl #adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,
- .rtl #adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle,
- .rtl .sidebar-name:hover .sidebar-name-arrow {
- background-image: url("../images/arrows-dark-vs-2x.png?ver=20120916");
- background-size: 15px 123px;
- }
-
- .view-switch #view-switch-list,
- .view-switch #view-switch-excerpt {
- background-image: url("../images/list-2x.png?ver=20120916");
- background-size: 80px 20px;
- }
-
- .icon32.icon-post,
- #icon-edit,
- #icon-post,
- .icon32.icon-dashboard,
- #icon-index,
- .icon32.icon-media,
- #icon-upload,
- .icon32.icon-links,
- #icon-link-manager,
- #icon-link,
- #icon-link-category,
- .icon32.icon-page,
- #icon-edit-pages,
- #icon-page,
- .icon32.icon-comments,
- #icon-edit-comments,
- .icon32.icon-appearance,
- #icon-themes,
- .icon32.icon-plugins,
- #icon-plugins,
- .icon32.icon-users,
- #icon-users,
- #icon-profile,
- #icon-user-edit,
- .icon32.icon-tools,
- #icon-tools,
- #icon-admin,
- .icon32.icon-settings,
- #icon-options-general,
- .icon32.icon-site,
- #icon-ms-admin,
- .icon32.icon-generic,
- #icon-generic {
- background-image: url(../images/icons32-vs-2x.png?ver=20121105);
- background-size: 756px 45px;
- }
-
- .icon16.icon-dashboard,
- .menu-icon-dashboard div.wp-menu-image,
- .icon16.icon-post,
- .menu-icon-post div.wp-menu-image,
- .icon16.icon-media,
- .menu-icon-media div.wp-menu-image,
- .icon16.icon-links,
- .menu-icon-links div.wp-menu-image,
- .icon16.icon-page,
- .menu-icon-page div.wp-menu-image,
- .icon16.icon-comments,
- .menu-icon-comments div.wp-menu-image,
- .icon16.icon-appearance,
- .menu-icon-appearance div.wp-menu-image,
- .icon16.icon-plugins,
- .menu-icon-plugins div.wp-menu-image,
- .icon16.icon-users,
- .menu-icon-users div.wp-menu-image,
- .icon16.icon-tools,
- .menu-icon-tools div.wp-menu-image,
- .icon16.icon-settings,
- .menu-icon-settings div.wp-menu-image,
- .icon16.icon-site,
- .menu-icon-site div.wp-menu-image,
- .icon16.icon-generic,
- .menu-icon-generic div.wp-menu-image {
- background-image: url('../images/menu-vs-2x.png?ver=20121105');
- background-size: 390px 64px;
- }
-
- #header-logo {
- background-image: url('../images/wp-logo-vs-2x.png?ver=20120916');
- background-size: 16px auto;
- }
-
- /* 16px post formats */
- .post-format-icon {
- background-image: url(../images/post-formats32-vs.png);
- background-size: 16px 304px;
- }
-
-}
diff --git a/sources/wp-admin/css/colors-classic.min.css b/sources/wp-admin/css/colors-classic.min.css
deleted file mode 100644
index 4f3c0ff..0000000
--- a/sources/wp-admin/css/colors-classic.min.css
+++ /dev/null
@@ -1 +0,0 @@
-.find-box-search,.find-box-buttons{background-color:#eff8ff;border-top:1px solid #dce6f8}.find-box{background-color:#5589aa}.find-box-head{color:#fff}.find-box-inside{background-color:#fff}a.page-numbers:hover{border-color:#999}body,#wpbody,.form-table .pre,.ui-autocomplete li a{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:#d1e5ee}#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}table.widefat{border-color:#d1e5ee;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}ul.category-tabs li{border-color:transparent}div.tabs-panel,.wp-tab-panel,ul.add-menu-item-tabs li.tabs,.wp-tab-active{border-color:#d1e5ee;background-color:#fff}ul.category-tabs li.tabs{border-color:#d1e5ee #d1e5ee #fff}ul.category-tabs li.tabs,ul.add-menu-item-tabs li.tabs,.wp-tab-active{background-color:#fff}kbd,code{background:#eff8ff}textarea,input[type=text],input[type=password],input[type=file],input[type=email],input[type=number],input[type=search],input[type=tel],input[type=url],select{border-color:#d1e5ee}textarea:focus,input[type=text]:focus,input[type=password]:focus,input[type=file]: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:#b0c8d7}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}.revisions-meta,.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,.sidebar-name,#nav-menu-header,#nav-menu-footer,.menu-item-handle,#fullscreen-topbar{background:#f5fafd;background-image:-webkit-gradient(linear,left bottom,left top,from(#eff8ff),to(#f7fcfe));background-image:-webkit-linear-gradient(bottom,#eff8ff,#f7fcfe);background-image:-moz-linear-gradient(bottom,#eff8ff,#f7fcfe);background-image:-o-linear-gradient(bottom,#eff8ff,#f7fcfe);background-image:linear-gradient(to top,#eff8ff,#f7fcfe)}.widget .widget-top,.postbox h3,.stuffbox h3{border-bottom-color:#d1e5ee;text-shadow:#fff 0 1px 0;-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:#21759b}.sorthelper{background-color:#ccf3fa}.ac_match,.subsubsub a.current{color:#000}.wrap h2{color:#174f69}.wrap .add-new-h2,.wrap .add-new-h2:active{background:#f1f1f1}.subtitle{color:#777}.ac_over{background-color:#f0f0b8}.ac_results{background-color:#fff;border-color:#b0c8d7}.ac_results li{color:#101010}.alternate,.alt{background-color:#f7fcfe}.available-theme a.screenshot{background-color:#eff8ff;border-color:#acd}#current-theme{border-bottom-color:#d1e5ee}.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,#commentsdiv #add-new-comment{border-color:#dfdfdf}.highlight{background-color:#e4f2fd;color:#000}.howto,.nonessential,#edit-slug-box,.form-input-tip,.subsubsub{color:#666}.media-upload-form label.form-help,td.help{color:#9a9a9a}.ui-autocomplete{border-color:#b0c8d7;background-color:#eff8ff}.ui-autocomplete li a.ui-state-focus{background-color:#def1ff}.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}a:hover,a:active{color:#d54e21}a:focus{color:#124964}#adminmenu a:hover,#adminmenu li.menu-top>a:focus,#adminmenu .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}#dashboard_right_now .table_content,#dashboard_right_now .table_discussion{border-top-color:#d1e5ee}#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:red;border-bottom-color:red}.submitbox .submitdelete:hover,#media-items a.delete:hover,#media-items a.delete-permanently:hover{color:#fff;background-color:red;border-bottom-color:red}#normal-sortables .submitbox .submitdelete:hover{color:#000;background-color:red;border-bottom-color:red}.tablenav .dots{border-color:transparent}.tablenav .next,.tablenav .prev{border-color:transparent;color:#21759b}.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:#d0dfe9}.widefat th{text-shadow:rgba(255,255,255,.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{color:#333}th.sortable a:hover,th.sortable a:active,th.sortable a:focus{color:#333}th.sortable a:focus{background:#e1e1e1;background-image:-webkit-gradient(linear,left bottom,left top,from(#dcdcdc),to(#e9e9e9));background-image:-webkit-linear-gradient(bottom,#dcdcdc,#e9e9e9);background-image:-moz-linear-gradient(bottom,#dcdcdc,#e9e9e9);background-image:-o-linear-gradient(bottom,#dcdcdc,#e9e9e9);background-image:linear-gradient(to top,#dcdcdc,#e9e9e9)}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,#media-items a.delete-permanently,.plugins a.delete,.ui-tabs-nav a{color:#21759b}#adminmenu .awaiting-mod,#adminmenu .update-plugins,#sidemenu a .update-plugins,#rightnow .reallynow{background-color:#464646;color:#fff;-webkit-box-shadow:rgba(255,255,255,.5) 0 1px 0;box-shadow:rgba(255,255,255,.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;-webkit-box-shadow:rgba(255,255,255,.5) 0 1px 0;box-shadow:rgba(255,255,255,.5) 0 1px 0}div#media-upload-header,div#plugin-information-header{background-color:#f9f9f9;border-bottom-color:#dfdfdf}#currenttheme img{border-color:#666}#dashboard_secondary div.dashboard-widget-content ul li a{background-color:#f9f9f9}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:#21759b!important}.login #nav a:hover,.login #backtoblog a:hover{color:#d54e21!important}#wpfooter{color:#777;border-color:#b0c8d7}.imgedit-group,#media-items .media-item,.media-item .describe{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:#f7fcfe}.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{background:#f5fafd;background-image:-webkit-gradient(linear,left bottom,left top,from(#eff8ff),to(#f7fcfe));background-image:-webkit-linear-gradient(bottom,#eff8ff,#f7fcfe);background-image:-moz-linear-gradient(bottom,#eff8ff,#f7fcfe);background-image:-o-linear-gradient(bottom,#eff8ff,#f7fcfe);background-image:linear-gradient(to top,#eff8ff,#f7fcfe);border-color:#d1e5ee}.welcome-panel p{color:#777}.welcome-panel-column p{color:#464646}.welcome-panel h3{text-shadow:1px 1px 1px #fff}.widget,#widget-list .widget-top,.postbox,#titlediv,#poststuff .postarea,.stuffbox{border-color:#d1e5ee;-webkit-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff;-webkit-border-radius:3px;border-radius:3px}.widget,#widget-list .widget-top,.postbox,.menu-item-settings{background:#f5fafd;background-image:-webkit-gradient(linear,left bottom,left top,from(#eff8ff),to(#f7fcfe));background-image:-webkit-linear-gradient(bottom,#eff8ff,#f7fcfe);background-image:-moz-linear-gradient(bottom,#eff8ff,#f7fcfe);background-image:-o-linear-gradient(bottom,#eff8ff,#f7fcfe);background-image:linear-gradient(to top,#eff8ff,#f7fcfe)}.postbox h3{color:#174f69}.widget .widget-top{color:#174f69}.js .sidebar-name:hover h3,.js .postbox h3:hover{color:#000}.curtime #timestamp{background-image:url(../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(../images/xit.gif) no-repeat}.tagchecklist span a:hover,#bulk-titles div a:hover{background:url(../images/xit.gif) no-repeat -10px 0}#update-nag,.update-nag{background-color:#fffbcc;border-color:#e6db55;color:#555}#screen-meta{background-color:#eff8ff;border-color:#d1e5ee;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.05);box-shadow:0 1px 3px rgba(0,0,0,.05)}#contextual-help-back{background:#fff}.contextual-help-tabs a:hover{background-color:#ceeaff;color:#333}#contextual-help-back,.contextual-help-tabs .active{border-color:#d1e5ee}.contextual-help-tabs .active,.contextual-help-tabs .active a,.contextual-help-tabs .active a:hover{background:#fff;color:#000}#screen-options-link-wrap,#contextual-help-link-wrap{border-right:1px solid #d1e5ee;border-left:1px solid #d1e5ee;border-bottom:1px solid #d1e5ee;background:#eff8ff;background-image:-webkit-gradient(linear,left bottom,left top,from(#def1ff),to(#eff8ff));background-image:-webkit-linear-gradient(bottom,#def1ff,#eff8ff);background-image:-moz-linear-gradient(bottom,#def1ff,#eff8ff);background-image:-o-linear-gradient(bottom,#def1ff,#eff8ff);background-image:linear-gradient(to top,#def1ff,#eff8ff)}#screen-meta-links a{color:#606060;background:transparent url(../images/arrows.png) no-repeat right 4px}#screen-meta-links a:hover,#screen-meta-links a:active{color:#000;background-color:transparent}#screen-meta-links a.screen-meta-active{background-position:right -31px}.login #backtoblog a{color:#464646}#wphead{border-bottom:1px solid #d0dfe9}#wphead h1 a{color:#174f69}#wpfooter a:link,#wpfooter a:visited{text-decoration:none}#wpfooter 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:red}#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}#poststuff .wp-editor-wrap .wp_themeSkin .mceStatusbar{border-color:#d0dfe9;background-color:#eff8ff}#poststuff .wp-editor-wrap .wp_themeSkin .mceStatusbar *{color:#555}#poststuff #editor-toolbar .active{border-color:#d0dfe9 #d0dfe9 #eff8ff;background-color:#eff8ff;color:#333}.wp-editor-wrap .wp-editor-container,.wp-editor-wrap .wp_themeSkin table.mceLayout{border-color:#d1e5ee #d1e5ee #d0dfe9}#editorcontainer{border-color:#d1e5ee #d1e5ee #d0dfe9}#post-status-info{border-color:#d0dfe9 #d1e5ee #d1e5ee}.wp-admin .wp-editor-wrap .wp-switch-editor{background-color:#d3e9f2;border-color:#d1e5ee #d1e5ee #d3e9f2;color:#174F69}.wp-admin .wp-editor-wrap .wp-switch-editor:active{background-color:#f5fafd}.wp-admin .wp-editor-wrap.tmce-active .switch-tmce,.wp-admin .wp-editor-wrap.html-active .switch-html{background:#f7fcfe;border-color:#d1e5ee #d1e5ee #f7fcfe}.wp-admin .wp-editor-wrap .quicktags-toolbar,.wp-admin .wp-editor-wrap .wp_themeSkin tr.mceFirst td.mceToolbar{border-color:#d0dfe9;background-color:#f5fafd;background-image:-webkit-gradient(linear,left bottom,left top,from(#eff8ff),to(#f7fcfe));background-image:-webkit-linear-gradient(bottom,#eff8ff,#f7fcfe);background-image:-moz-linear-gradient(bottom,#eff8ff,#f7fcfe);background-image:-o-linear-gradient(bottom,#eff8ff,#f7fcfe);background-image:linear-gradient(to top,#eff8ff,#f7fcfe)}.wp-admin .wp_themeSkin table.mceListBox{border-color:#d1e5ee}.wp-admin .wp_themeSkin table.mceListBoxEnabled:hover,.wp-admin .wp_themeSkin table.mceListBoxEnabled:active,.wp-admin .wp_themeSkin table.mceListBoxHover,.wp-admin .wp_themeSkin table.mceListBoxHover:active,.wp-admin .wp_themeSkin table.mceListBoxSelected{border-color:#b8cfdf}.wp-admin .wp_themeSkin a.mceButtonEnabled:hover,.wp-admin .wp_themeSkin table.mceSplitButton:hover{border-color:#c3d2dc;background:#f4f9fc;background-image:-webkit-gradient(linear,left bottom,left top,from(#f4f9fc),to(#fff));background-image:-webkit-linear-gradient(bottom,#f4f9fc,#fff);background-image:-moz-linear-gradient(bottom,#f4f9fc,#fff);background-image:-o-linear-gradient(bottom,#f4f9fc,#fff);background-image:linear-gradient(to top,#f4f9fc,#fff)}.wp-admin .wp_themeSkin a.mceButton:active,.wp-admin .wp_themeSkin a.mceButtonEnabled:active,.wp-admin .wp_themeSkin a.mceButtonSelected:active,.wp-admin .wp_themeSkin a.mceButtonActive,.wp-admin .wp_themeSkin a.mceButtonActive:active,.wp-admin .wp_themeSkin a.mceButtonActive:hover,.wp-admin .wp_themeSkin .mceSplitButtonSelected table,.wp-admin .wp_themeSkin .mceSplitButtonSelected table:hover{border-color:#8f9da9 #c3d2dc #c3d2dc #8f9da9;background:#f4f9fc;background-image:-webkit-gradient(linear,left bottom,left top,from(#fff),to(#f4f9fc));background-image:-webkit-linear-gradient(bottom,#fff,#f4f9fc);background-image:-moz-linear-gradient(bottom,#fff,#f4f9fc);background-image:-o-linear-gradient(bottom,#fff,#f4f9fc);background-image:linear-gradient(to top,#fff,#f4f9fc)}.wp-admin .wp_themeSkin .mceSplitButtonSelected table a.mceOpen,.wp-admin .wp_themeSkin .mceSplitButtonSelected table a.mceAction{border-color:#8f9da9 #c3d2dc #c3d2dc #8f9da9}.wp-admin .wp_themeSkin .mceSplitButton:hover a{border-color:#c3d2dc}.editwidget .widget-inside{border-color:#d0dfe9}#titlediv #title{background-color:#fff}#tTips p#tTips_inside{background-color:#ddd;color:#333}#poststuff .inside .the-tagcloud{border-color:#ddd}#adminmenuback,#adminmenuwrap{background-color:#eff8ff;border-color:#d1e5ee}#adminmenushadow,#adminmenuback{background-image:url(../images/menu-shadow.png);background-position:top right;background-repeat:repeat-y}#adminmenu li.wp-menu-separator{background:#d1e5ee;border-color:#bed1dd}#adminmenu div.separator{border-color:#d1e5ee}#adminmenu a.menu-top,#adminmenu .wp-submenu .wp-submenu-head{border-top-color:#fff;border-bottom-color:#cae6ff}#adminmenu li.wp-menu-open{border-color:#d1e5ee}#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{background-color:#e0f1ff;color:#d54e21;text-shadow:0 1px 0 rgba(255,255,255,.4)}#adminmenu li.menu-top:hover>a span,#adminmenu li.menu-top>a:focus span{text-shadow:none}#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:#5589aa;background-image:-webkit-gradient(linear,left bottom,left top,from(#5589aa),to(#619bbb));background-image:-webkit-linear-gradient(bottom,#5589aa,#619bbb);background-image:-moz-linear-gradient(bottom,#5589aa,#619bbb);background-image:-o-linear-gradient(bottom,#5589aa,#619bbb);background-image:linear-gradient(to top,#5589aa,#619bbb)}#adminmenu .wp-menu-arrow div{background:#5589aa;background-image:-webkit-gradient(linear,right bottom,left top,from(#5589aa),to(#619bbb));background-image:-webkit-linear-gradient(bottom right,#5589aa,#619bbb);background-image:-moz-linear-gradient(bottom right,#5589aa,#619bbb);background-image:-o-linear-gradient(bottom right,#5589aa,#619bbb);background-image:linear-gradient(to top left,#5589aa,#619bbb)}#adminmenu li.wp-not-current-submenu .wp-menu-arrow{border-top-color:#fff;border-bottom-color:#cae6ff;background:#e0f1ff}#adminmenu li.wp-not-current-submenu .wp-menu-arrow div{background:#e0f1ff;border-color:#cae6ff}.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:#5a8fad;border-bottom-color:#5589aa}.folded #adminmenu li.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{border-top-color:#5a8fad;border-bottom-color:#5589aa}#adminmenu .wp-submenu a:hover,#adminmenu .wp-submenu a:focus{background-color:#eff8ff;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,.folded #adminmenu a.wp-has-current-submenu:focus+.wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu{background-color:#fff;border-color:#d0dfe9;-webkit-box-shadow:2px 3px 6px rgba(0,0,0,.4);box-shadow:2px 3px 6px rgba(0,0,0,.4)}#adminmenu .wp-submenu .wp-submenu-head{background-color:#e0f1ff;color:#333}#collapse-menu{color:#a0c3d5;border-top-color:#f9f9f9}#collapse-menu:hover{color:#5a8fad}#collapse-button{border-color:#d0dfe9;background:#eff8ff;background-image:-webkit-gradient(linear,left bottom,left top,from(#eff8ff),to(#fff));background-image:-webkit-linear-gradient(bottom,#eff8ff,#fff);background-image:-moz-linear-gradient(bottom,#eff8ff,#fff);background-image:-o-linear-gradient(bottom,#eff8ff,#fff);background-image:linear-gradient(to top,#eff8ff,#fff)}#collapse-menu:hover #collapse-button{border-color:#a0c3d5}#collapse-button div{background:transparent url(../images/arrows-vs.png) no-repeat 0 -72px}.folded #collapse-button div{background-position:0 -108px}@media only screen and (max-width:900px){.auto-fold #adminmenu li.wp-has-current-submenu,.auto-fold #adminmenu li.current.menu-top{background-color:#5589aa;background-image:-webkit-gradient(linear,left bottom,left top,from(#5589aa),to(#619bbb));background-image:-webkit-linear-gradient(bottom,#5589aa,#619bbb);background-image:-moz-linear-gradient(bottom,#5589aa,#619bbb);background-image:-o-linear-gradient(bottom,#5589aa,#619bbb);background-image:linear-gradient(bottom,#5589aa,#619bbb)}.auto-fold #adminmenu li.wp-has-current-submenu,.auto-fold #adminmenu li.current.menu-top{border-top-color:#5a8fad;border-bottom-color:#5589aa}.auto-fold #adminmenu a.wp-has-current-submenu:focus+.wp-submenu,.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu{background-color:#fff;border-color:#d0dfe9;-webkit-box-shadow:2px 3px 6px rgba(0,0,0,.4);box-shadow:2px 3px 6px rgba(0,0,0,.4)}.auto-fold #collapse-button div{background-position:0 -108px}}.icon16,.icon32,div.wp-menu-image{background-color:transparent;background-repeat:no-repeat}.icon16.icon-dashboard,.menu-icon-dashboard div.wp-menu-image,.icon16.icon-post,.menu-icon-post div.wp-menu-image,.icon16.icon-media,.menu-icon-media div.wp-menu-image,.icon16.icon-links,.menu-icon-links div.wp-menu-image,.icon16.icon-page,.menu-icon-page div.wp-menu-image,.icon16.icon-comments,.menu-icon-comments div.wp-menu-image,.icon16.icon-appearance,.menu-icon-appearance div.wp-menu-image,.icon16.icon-plugins,.menu-icon-plugins div.wp-menu-image,.icon16.icon-users,.menu-icon-users div.wp-menu-image,.icon16.icon-tools,.menu-icon-tools div.wp-menu-image,.icon16.icon-settings,.menu-icon-settings div.wp-menu-image,.icon16.icon-site,.menu-icon-site div.wp-menu-image,.icon16.icon-generic,.menu-icon-generic div.wp-menu-image{background-image:url(../images/menu-vs.png?ver=20121105)}.icon16.icon-dashboard,#adminmenu .menu-icon-dashboard div.wp-menu-image{background-position:-59px -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-position:-59px -1px}.icon16.icon-post,#adminmenu .menu-icon-post div.wp-menu-image{background-position:-269px -33px}#adminmenu .menu-icon-post:hover div.wp-menu-image,#adminmenu .menu-icon-post.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-post.current div.wp-menu-image{background-position:-269px -1px}.icon16.icon-media,#adminmenu .menu-icon-media div.wp-menu-image{background-position:-119px -33px}#adminmenu .menu-icon-media:hover div.wp-menu-image,#adminmenu .menu-icon-media.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-media.current div.wp-menu-image{background-position:-119px -1px}.icon16.icon-links,#adminmenu .menu-icon-links div.wp-menu-image{background-position:-89px -33px}#adminmenu .menu-icon-links:hover div.wp-menu-image,#adminmenu .menu-icon-links.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-links.current div.wp-menu-image{background-position:-89px -1px}.icon16.icon-page,#adminmenu .menu-icon-page div.wp-menu-image{background-position:-149px -33px}#adminmenu .menu-icon-page:hover div.wp-menu-image,#adminmenu .menu-icon-page.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-page.current div.wp-menu-image{background-position:-149px -1px}.icon16.icon-comments,#adminmenu .menu-icon-comments div.wp-menu-image{background-position:-29px -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-position:-29px -1px}.icon16.icon-appearance,#adminmenu .menu-icon-appearance div.wp-menu-image{background-position:1px -33px}#adminmenu .menu-icon-appearance:hover div.wp-menu-image,#adminmenu .menu-icon-appearance.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-appearance.current div.wp-menu-image{background-position:1px -1px}.icon16.icon-plugins,#adminmenu .menu-icon-plugins div.wp-menu-image{background-position:-179px -33px}#adminmenu .menu-icon-plugins:hover div.wp-menu-image,#adminmenu .menu-icon-plugins.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-plugins.current div.wp-menu-image{background-position:-179px -1px}.icon16.icon-users,#adminmenu .menu-icon-users div.wp-menu-image{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-position:-300px -1px}.icon16.icon-tools,#adminmenu .menu-icon-tools div.wp-menu-image{background-position:-209px -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-position:-209px -1px}.icon16.icon-settings,#adminmenu .menu-icon-settings div.wp-menu-image{background-position:-239px -33px}#adminmenu .menu-icon-settings:hover div.wp-menu-image,#adminmenu .menu-icon-settings.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-settings.current div.wp-menu-image{background-position:-239px -1px}.icon16.icon-site,#adminmenu .menu-icon-site div.wp-menu-image{background-position:-359px -33px}#adminmenu .menu-icon-site:hover div.wp-menu-image,#adminmenu .menu-icon-site.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-site.current div.wp-menu-image{background-position:-359px -1px}.icon16.icon-generic,#adminmenu .menu-icon-generic div.wp-menu-image{background-position:-330px -33px}#adminmenu .menu-icon-generic:hover div.wp-menu-image,#adminmenu .menu-icon-generic.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-generic.current div.wp-menu-image{background-position:-330px -1px}.icon32.icon-post,#icon-edit,#icon-post,.icon32.icon-dashboard,#icon-index,.icon32.icon-media,#icon-upload,.icon32.icon-links,#icon-link-manager,#icon-link,#icon-link-category,.icon32.icon-page,#icon-edit-pages,#icon-page,.icon32.icon-comments,#icon-edit-comments,.icon32.icon-appearance,#icon-themes,.icon32.icon-plugins,#icon-plugins,.icon32.icon-users,#icon-users,#icon-profile,#icon-user-edit,.icon32.icon-tools,#icon-tools,#icon-admin,.icon32.icon-settings,#icon-options-general,.icon32.icon-site,#icon-ms-admin,.icon32.icon-generic,#icon-generic{background-image:url(../images/icons32-vs.png?ver=20121105)}.icon32.icon-post,#icon-edit,#icon-post{background-position:-552px -5px}.icon32.icon-dashboard,#icon-index{background-position:-137px -5px}.icon32.icon-media,#icon-upload{background-position:-251px -5px}.icon32.icon-links,#icon-link-manager,#icon-link,#icon-link-category{background-position:-190px -5px}.icon32.icon-page,#icon-edit-pages,#icon-page{background-position:-312px -5px}.icon32.icon-comments,#icon-edit-comments{background-position:-72px -5px}.icon32.icon-appearance,#icon-themes{background-position:-11px -5px}.icon32.icon-plugins,#icon-plugins{background-position:-370px -5px}.icon32.icon-users,#icon-users,#icon-profile,#icon-user-edit{background-position:-600px -5px}.icon32.icon-tools,#icon-tools,#icon-admin{background-position:-432px -5px}.icon32.icon-settings,#icon-options-general{background-position:-492px -5px}.icon32.icon-site,#icon-ms-admin{background-position:-659px -5px}.icon32.icon-generic,#icon-generic{background-position:-708px -5px}.post-format-icon{background:url(../images/post-formats-vs.png) no-repeat}table.diff .diff-deletedline{background-color:#ffe9e9}table.diff .diff-deletedline del{background-color:#faa}table.diff .diff-addedline{background-color:#e9ffe9}table.diff .diff-addedline ins{background-color:#afa}.revisions-meta{border:1px solid #d1e5ee}.revisions-controls{background:#fff;background:-webkit-gradient(linear,left bottom,left top,color-stop(0%,rgba(255,255,255,1)),color-stop(30px,rgba(255,255,255,1)),color-stop(100%,rgba(255,255,255,1)));background:-webkit-linear-gradient(bottom,rgba(255,255,255,0) 0,rgba(255,255,255,1) 30px,rgba(255,255,255,1) 100%);background:-moz-linear-gradient(bottom,rgba(255,255,255,0) 0,rgba(255,255,255,1) 30px,rgba(255,255,255,1) 100%);background:-o-linear-gradient(bottom,rgba(255,255,255,0) 0,rgba(255,255,255,1) 30px,rgba(255,255,255,1) 100%);background:linear-gradient(to top,rgba(255,255,255,0) 0,rgba(255,255,255,1) 30px,rgba(255,255,255,1) 100%)}.revisions-tooltip,.revisions-tooltip-arrow span{border-color:#d1e5ee;background-color:#fff}.revisions-tickmarks>div{border-color:#d1e5ee}.wp-slider.ui-slider{border-color:#d1e5ee}.wp-slider .ui-slider-handle{color:#333;border-color:none}.wp-slider .ui-slider-handle{border-color:#d0dfe9;background:#eff8ff;background-image:-webkit-gradient(linear,left bottom,left top,from(#eff8ff),to(#fff));background-image:-webkit-linear-gradient(bottom,#eff8ff,#fff);background-image:-moz-linear-gradient(bottom,#eff8ff,#fff);background-image:-o-linear-gradient(bottom,#eff8ff,#fff);background-image:linear-gradient(to top,#eff8ff,#fff)}.wp-slider .ui-slider-handle:hover,.wp-slider .ui-slider-handle:focus{border-color:#a0c3d5}.wp-slider .ui-slider-handle.ui-state-hover,.wp-slider .ui-slider-handle.ui-state-focus{border-color:#a0c3d5;outline:0}#sidemenu a{background-color:#f9f9f9;border-color:#f9f9f9;border-bottom-color:#dfdfdf}#sidemenu a.current{background-color:#fff;border-color:#dfdfdf #dfdfdf #fff;color:#d54e21}#replyerror{border-color:#ddd;background-color:#f9f9f9}.vim-current,.vim-current th,.vim-current td{background-color:#e4f2fd!important}#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}#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 .quick-edit-save{background-color:#f1f1f1}fieldset.inline-edit-col-right .inline-edit-col{border-color:#dfdfdf}.attention{color:#d54e21}.js .meta-box-sortables .postbox:hover .handlediv{background:transparent url(../images/arrows-vs.png) no-repeat 6px 7px}.tablenav .tablenav-pages{color:#555}.tablenav .tablenav-pages a{border-color:#d1e5ee;background:#eee;-moz-box-shadow:inset 0 1px 0 #fff;-webkit-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff}.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:#acd}#current-theme img{border-color:#b0c8d7}#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:#d1e5ee}#minor-publishing{border-bottom-color:#cae6ff}#post-body .misc-pub-section{border-left-color:#eee}.post-com-count span{background-color:#bbb}.form-table .color-palette td{border-color:#fff}.sortable-placeholder{border-color:#bbb;background-color:#f5f5f5}#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,.view-switch #view-switch-excerpt{background-color:transparent;background-image:url(../images/list.png);background-repeat:no-repeat}.view-switch #view-switch-list{background-position:0 0}.view-switch .current #view-switch-list{background-position:-40px 0}.view-switch #view-switch-excerpt{background-position:-20px 0}.view-switch .current #view-switch-excerpt{background-position:-60px 0}#header-logo{background:transparent url(../images/wp-logo-vs.png?ver=20101102) no-repeat scroll center center}.popular-tags,.feature-filter{background-color:#fff;border-color:#d1e5ee}div.widgets-sortables,#widgets-left .inactive,#available-widgets .widget-holder{background-color:#f7fcfe;border-color:#d0dfe9}#available-widgets .widget-description{color:#555}.sidebar-name{color:#464646;text-shadow:#fff 0 1px 0;border-color:#d0dfe9;-webkit-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff}.js .sidebar-name:hover,.js #removing-widget{color:#d54e21}#removing-widget span{color:#000}.js .sidebar-name-arrow{background:transparent url(../images/arrows-vs.png) no-repeat 5px 9px}.js .sidebar-name:hover .sidebar-name-arrow{background:transparent url(../images/arrows-dark-vs.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:#d0dfe9}#post-body{background:#fff;border-top-color:#fff;border-bottom-color:#d0dfe9}#nav-menu-header{border-bottom-color:#d0dfe9}#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:#f7fcfe;border-color:#d0dfe9}.js .input-with-default-title{color:#aaa}#cancel-save{color:red}#cancel-save:hover{background-color:red;color:#fff}.list-container{border-color:#dfdfdf}.menu-item-handle{border-color:#d0dfe9}.menu li.deleting .menu-item-handle{background-color:#f66;text-shadow:#ccc}.item-type{color:#999}.item-controls .menu-item-delete:hover{color:red}.nav-menus-php .item-edit{background:transparent url(../images/arrows-vs.png) no-repeat 8px 10px;border-bottom-color:#eff8ff}.nav-menus-php .item-edit:hover{background:transparent url(../images/arrows-dark-vs.png) no-repeat 8px 10px}.menu-item-settings{border-color:#d0dfe9}.link-to-original{color:#777;border-color:#d0dfe9}#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:#21759b;border-bottom-color:#21759b}.submitbox .submitcancel:hover{background:#21759b;color:#fff}.nav-tab{border-color:#d1e5ee #d1e5ee #fff}.nav-tab:hover,.nav-tab-active{border-color:#acd #acd #fff}h2.nav-tab-wrapper,h3.nav-tab-wrapper{border-bottom-color:#acd}#menu-management .nav-tab-active,.menu-item-handle,.menu-item-settings{-webkit-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff}#menu-management .nav-tab-active{background:#f7fcfe;border-bottom-color:#f7fcfe}#upload-form label{color:#777}.fullscreen-overlay{background:#fff}.wp-fullscreen-focus #wp-fullscreen-title,.wp-fullscreen-focus #wp-fullscreen-container{border-color:#bed1dd}#fullscreen-topbar{border-bottom-color:#d1e5ee}.about-wrap h1{color:#333;text-shadow:1px 1px 1px #fff}.about-text{color:#777}.wp-badge{color:#fff;text-shadow:0 -1px 0 rgba(22,57,81,.3)}.about-wrap h2 .nav-tab{color:#21759b}.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 #fff;color:#464646}.about-wrap h3{color:#333;text-shadow:1px 1px 1px #fff}.about-wrap .feature-section h4{color:#464646}.about-wrap h4.wp-people-group{text-shadow:1px 1px 1px #fff}.about-wrap .point-releases{border-bottom:1px solid #dfdfdf}.about-wrap .point-releases h3{border-top:1px solid #dfdfdf}.about-wrap .point-releases h3:first-child{border:0}.about-wrap li.wp-person img.gravatar{-webkit-box-shadow:0 0 4px rgba(0,0,0,.4);box-shadow:0 0 4px rgba(0,0,0,.4)}.about-wrap li.wp-person .title{color:#464646;text-shadow:1px 1px 1px #fff}.freedoms-php .about-wrap ol li{color:#999}.freedoms-php .about-wrap ol p{color:#464646}.rtl .bar{border-right-color:transparent;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-image:url(../images/menu-shadow-rtl.png);background-position:top left}.rtl #adminmenu .wp-submenu .wp-submenu-head{border-right-color:transparent;border-left-color:#d1e5ee}.rtl #adminmenu .wp-submenu,.rtl.folded #adminmenu .wp-has-current-submenu .wp-submenu{-webkit-box-shadow:-2px 2px 5px rgba(0,0,0,.4);box-shadow:-2px 2px 5px rgba(0,0,0,.4)}.rtl #adminmenu .wp-has-current-submenu .wp-submenu{-webkit-box-shadow:none;box-shadow:none}.rtl #collapse-button div{background-position:0 -108px}.rtl.folded #collapse-button div{background-position:0 -72px}@media only screen and (max-width:900px){.rtl.auto-fold #adminmenu a.wp-has-current-submenu:focus+.wp-submenu,.rtl.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu{-webkit-box-shadow:-2px 2px 5px rgba(0,0,0,.4);box-shadow:-2px 2px 5px rgba(0,0,0,.4)}.rtl.auto-fold #collapse-button div{background-position:0 -72px}}.js.rtl .meta-box-sortables .postbox:hover .handlediv{background:transparent url(../images/arrows-vs.png) no-repeat 6px 7px}.rtl #post-body .misc-pub-section{border-right-color:transparent;border-left-color:#d1e5ee}.js.rtl .sidebar-name-arrow{background:transparent url(../images/arrows-vs.png) no-repeat 5px 9px}.js.rtl .sidebar-name:hover .sidebar-name-arrow{background:transparent url(../images/arrows-dark-vs.png) no-repeat 5px 9px}@media print,(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.curtime #timestamp{background-image:url(../images/date-button-2x.gif?ver=20120916);background-size:16px auto}.tagchecklist span a,#bulk-titles div a,.tagchecklist span a:hover,#bulk-titles div a:hover{background-image:url(../images/xit-2x.gif?ver=20120916);background-size:20px auto}#screen-meta-links a.show-settings,#screen-meta-links a.show-settings.screen-meta-active,#adminmenu .wp-has-submenu:hover .wp-menu-toggle,#adminmenu .wp-menu-open .wp-menu-toggle,#collapse-button div,.nav-menus-php .item-edit,.js .meta-box-sortables .postbox:hover .handlediv,.sidebar-name-arrow,.rtl #adminmenu .wp-has-submenu:hover .wp-menu-toggle,.rtl #adminmenu .wp-menu-open .wp-menu-toggle,.js.rtl .meta-box-sortables .postbox:hover .handlediv,.rtl .sidebar-name-arrow{background-image:url(../images/arrows-vs-2x.png?ver=20120916);background-size:15px 123px}#adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,#adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle,.nav-menus-php .item-edit:hover,.sidebar-name:hover .sidebar-name-arrow,.rtl #adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,.rtl #adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle,.rtl .sidebar-name:hover .sidebar-name-arrow{background-image:url(../images/arrows-dark-vs-2x.png?ver=20120916);background-size:15px 123px}.view-switch #view-switch-list,.view-switch #view-switch-excerpt{background-image:url(../images/list-2x.png?ver=20120916);background-size:80px 20px}.icon32.icon-post,#icon-edit,#icon-post,.icon32.icon-dashboard,#icon-index,.icon32.icon-media,#icon-upload,.icon32.icon-links,#icon-link-manager,#icon-link,#icon-link-category,.icon32.icon-page,#icon-edit-pages,#icon-page,.icon32.icon-comments,#icon-edit-comments,.icon32.icon-appearance,#icon-themes,.icon32.icon-plugins,#icon-plugins,.icon32.icon-users,#icon-users,#icon-profile,#icon-user-edit,.icon32.icon-tools,#icon-tools,#icon-admin,.icon32.icon-settings,#icon-options-general,.icon32.icon-site,#icon-ms-admin,.icon32.icon-generic,#icon-generic{background-image:url(../images/icons32-vs-2x.png?ver=20121105);background-size:756px 45px}.icon16.icon-dashboard,.menu-icon-dashboard div.wp-menu-image,.icon16.icon-post,.menu-icon-post div.wp-menu-image,.icon16.icon-media,.menu-icon-media div.wp-menu-image,.icon16.icon-links,.menu-icon-links div.wp-menu-image,.icon16.icon-page,.menu-icon-page div.wp-menu-image,.icon16.icon-comments,.menu-icon-comments div.wp-menu-image,.icon16.icon-appearance,.menu-icon-appearance div.wp-menu-image,.icon16.icon-plugins,.menu-icon-plugins div.wp-menu-image,.icon16.icon-users,.menu-icon-users div.wp-menu-image,.icon16.icon-tools,.menu-icon-tools div.wp-menu-image,.icon16.icon-settings,.menu-icon-settings div.wp-menu-image,.icon16.icon-site,.menu-icon-site div.wp-menu-image,.icon16.icon-generic,.menu-icon-generic div.wp-menu-image{background-image:url(../images/menu-vs-2x.png?ver=20121105);background-size:390px 64px}#header-logo{background-image:url(../images/wp-logo-vs-2x.png?ver=20120916);background-size:16px auto}.post-format-icon{background-image:url(../images/post-formats32-vs.png);background-size:16px 304px}}
\ No newline at end of file
diff --git a/sources/wp-admin/css/colors-fresh.css b/sources/wp-admin/css/colors-fresh.css
deleted file mode 100644
index 547d6f4..0000000
--- a/sources/wp-admin/css/colors-fresh.css
+++ /dev/null
@@ -1,2141 +0,0 @@
-/*------------------------------------------------------------------------------
-
-
-Howdy! This is the CSS file that controls the
-Gray (fresh) color style on the WordPress Dashboard.
-
-This file contains both LTR and RTL styles.
-
-
-TABLE OF CONTENTS:
-------------------
- 1.0 - Left to Right Styles
- 2.0 - Right to Left Styles
-
-
-------------------------------------------------------------------------------*/
-
-
-/*------------------------------------------------------------------------------
- 1.0 - Left to Right Styles
-------------------------------------------------------------------------------*/
-
-.find-box-search,
-.find-box-buttons {
- background-color: #f7f7f7;
- border-top: 1px solid #ddd;
-}
-
-.find-box {
- background-color: #444;
-}
-
-.find-box-head {
- color: #eee;
-}
-
-.find-box-inside {
- background-color: #fff;
-}
-
-a.page-numbers:hover {
- border-color: #999;
-}
-
-body,
-#wpbody,
-.form-table .pre,
-.ui-autocomplete li a {
- 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;
-}
-
-table.widefat {
- border-color: #dfdfdf;
- background-color: #f9f9f9;
-}
-
-div.dashboard-widget-error {
- background-color: #c43;
-}
-
-div.dashboard-widget-notice {
- background-color: #cfe1ef;
-}
-
-div.dashboard-widget-submit {
- border-top-color: #ccc;
-}
-
-ul.category-tabs li {
- border-color: transparent;
-}
-
-div.tabs-panel,
-.wp-tab-panel,
-ul.add-menu-item-tabs li.tabs,
-.wp-tab-active {
- border-color: #dfdfdf;
- background-color: #fff;
-}
-
-ul.category-tabs li.tabs {
- border-color: #dfdfdf #dfdfdf #fff;
-}
-
-ul.category-tabs li.tabs,
-ul.add-menu-item-tabs li.tabs,
-.wp-tab-active {
- background-color: #fff;
-}
-
-kbd,
-code {
- background: #eaeaea;
-}
-
-textarea,
-input[type="text"],
-input[type="password"],
-input[type="file"],
-input[type="email"],
-input[type="number"],
-input[type="search"],
-input[type="tel"],
-input[type="url"],
-select {
- border-color: #dfdfdf;
-}
-
-textarea:focus,
-input[type="text"]:focus,
-input[type="password"]:focus,
-input[type="file"]: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: #aaa;
-}
-
-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;
-}
-
-.revisions-meta,
-.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,
-.sidebar-name,
-#nav-menu-header,
-#nav-menu-footer,
-.menu-item-handle {
- background: #f1f1f1;
- background-image: -webkit-gradient(linear, left bottom, left top, from(#ececec), to(#f9f9f9));
- background-image: -webkit-linear-gradient(bottom, #ececec, #f9f9f9);
- background-image: -moz-linear-gradient(bottom, #ececec, #f9f9f9);
- background-image: -o-linear-gradient(bottom, #ececec, #f9f9f9);
- background-image: linear-gradient(to top, #ececec, #f9f9f9);
-}
-
-
-
-.widget .widget-top,
-.postbox h3,
-.stuffbox h3 {
- border-bottom-color: #dfdfdf;
- text-shadow: #fff 0 1px 0;
- -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: #21759b;
-}
-
-.sorthelper {
- background-color: #ccf3fa;
-}
-
-.ac_match,
-.subsubsub a.current {
- color: #000;
-}
-
-.wrap h2 {
- color: #464646;
-}
-
-.wrap .add-new-h2,
-.wrap .add-new-h2:active {
- background: #f1f1f1;
-}
-
-.subtitle {
- color: #777;
-}
-
-.ac_over {
- background-color: #f0f0b8;
-}
-
-.ac_results {
- background-color: #fff;
- border-color: #808080;
-}
-
-.ac_results li {
- color: #101010;
-}
-
-.alternate,
-.alt {
- background-color: #fcfcfc;
-}
-
-.available-theme a.screenshot {
- background-color: #f1f1f1;
- border-color: #ddd;
-}
-
-#current-theme {
- border-bottom-color: #dfdfdf;
-}
-
-.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,
-#commentsdiv #add-new-comment {
- border-color: #dfdfdf;
-}
-
-.highlight {
- background-color: #e4f2fd;
- color: #000;
-}
-
-.howto,
-.nonessential,
-#edit-slug-box,
-.form-input-tip,
-.subsubsub {
- color: #666;
-}
-
-.media-upload-form label.form-help,
-td.help {
- color: #9a9a9a;
-}
-
-.ui-autocomplete {
- border-color: #aaa;
- background-color: #efefef;
-}
-
-.ui-autocomplete li a.ui-state-focus {
- background-color: #ddd;
-}
-
-.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;
-}
-
-a:hover,
-a:active {
- color: #d54e21;
-}
-
-a:focus {
- color: #124964;
-}
-
-#adminmenu a:hover,
-#adminmenu li.menu-top > a:focus,
-#adminmenu .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;
-}
-
-#dashboard_right_now .table_content,
-#dashboard_right_now .table_discussion {
- border-top-color: #ececec;
-}
-
-.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,
-#media-items a.delete-permanently:hover,
-#nav-menu-footer .menu-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: #21759b;
-}
-
-.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 {
- color: #333;
-}
-
-th.sortable a:hover,
-th.sortable a:active,
-th.sortable a:focus {
- color: #333;
-}
-
-th.sortable a:focus {
- background: #e1e1e1;
- background-image: -webkit-gradient(linear, left bottom, left top, from(#dcdcdc), to(#e9e9e9));
- background-image: -webkit-linear-gradient(bottom, #dcdcdc, #e9e9e9);
- background-image: -moz-linear-gradient(bottom, #dcdcdc, #e9e9e9);
- background-image: -o-linear-gradient(bottom, #dcdcdc, #e9e9e9);
- background-image: linear-gradient(to top, #dcdcdc, #e9e9e9);
-}
-
-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,
-#media-items a.delete-permanently,
-.plugins a.delete,
-.ui-tabs-nav a {
- color: #21759b;
-}
-
-#adminmenu .awaiting-mod,
-#adminmenu .update-plugins,
-#sidemenu a .update-plugins,
-#rightnow .reallynow {
- background-color: #464646;
- color: #fff;
- -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;
- -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: #f9f9f9;
- border-bottom-color: #dfdfdf;
-}
-
-#currenttheme img {
- border-color: #666;
-}
-
-#dashboard_secondary div.dashboard-widget-content ul li a {
- background-color: #f9f9f9;
-}
-
-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: #21759b !important;
-}
-
-.login #nav a:hover,
-.login #backtoblog a:hover {
- color: #d54e21 !important;
-}
-
-#wpfooter {
- color: #777;
- border-color: #dfdfdf;
-}
-
-.imgedit-group,
-#media-items .media-item,
-.media-item .describe {
- 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 {
- background: #f5f5f5;
- background-image: -webkit-gradient(linear, left bottom, left top, from(#f5f5f5), to(#fafafa));
- background-image: -webkit-linear-gradient(bottom, #f5f5f5, #fafafa);
- background-image: -moz-linear-gradient(bottom, #f5f5f5, #fafafa);
- background-image: -o-linear-gradient(bottom, #f5f5f5, #fafafa);
- background-image: linear-gradient(to top, #f5f5f5, #fafafa);
- border-color: #dfdfdf;
-}
-.welcome-panel p {
- color: #777;
-}
-.welcome-panel-column p {
- color: #464646;
-}
-.welcome-panel h3 {
- text-shadow: 1px 1px 1px #fff;
-}
-
-.widget,
-#widget-list .widget-top,
-.postbox,
-#titlediv,
-#poststuff .postarea,
-.stuffbox {
- border-color: #dfdfdf;
- -webkit-box-shadow: inset 0 1px 0 #fff;
- box-shadow: inset 0 1px 0 #fff;
- -webkit-border-radius: 3px;
- border-radius: 3px;
-}
-
-.widget,
-#widget-list .widget-top,
-.postbox,
-.menu-item-settings {
- background: #f5f5f5;
- background-image: -webkit-gradient(linear, left bottom, left top, from(#f5f5f5), to(#f9f9f9));
- background-image: -webkit-linear-gradient(bottom, #f5f5f5, #f9f9f9);
- background-image: -moz-linear-gradient(bottom, #f5f5f5, #f9f9f9);
- background-image: -o-linear-gradient(bottom, #f5f5f5, #f9f9f9);
- background-image: linear-gradient(to top, #f5f5f5, #f9f9f9);
-}
-
-.postbox h3 {
- color: #464646;
-}
-
-.widget .widget-top {
- color: #222;
-}
-
-.js .sidebar-name:hover h3,
-.js .postbox h3:hover {
- color: #000;
-}
-
-.curtime #timestamp {
- background-image: url(../images/date-button.gif);
-}
-
-#rightnow .youhave {
- background-color: #f0f6fb;
-}
-
-#rightnow a {
- color: #448abd;
-}
-
-.tagchecklist span a,
-#bulk-titles div a {
- background: url(../images/xit.gif) no-repeat;
-}
-
-.tagchecklist span a:hover,
-#bulk-titles div a:hover {
- background: url(../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-back {
- background: #fff;
-}
-
-.contextual-help-tabs a:hover {
- color: #333;
-}
-
-#contextual-help-back,
-.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: #333;
-}
-
-/* screen options and help tabs */
-#screen-options-link-wrap,
-#contextual-help-link-wrap {
- border-right: 1px solid #ccc;
- border-left: 1px solid #ccc;
- border-bottom: 1px solid #ccc;
- background: #e3e3e3;
- background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#f1f1f1));
- background-image: -webkit-linear-gradient(bottom, #dfdfdf, #f1f1f1);
- background-image: -moz-linear-gradient(bottom, #dfdfdf, #f1f1f1);
- background-image: -o-linear-gradient(bottom, #dfdfdf, #f1f1f1);
- background-image: linear-gradient(to top, #dfdfdf, #f1f1f1);
-}
-
-#screen-meta-links a {
- color: #777;
- background: transparent url(../images/arrows.png) no-repeat right 4px;
-}
-
-#screen-meta-links a:hover,
-#screen-meta-links a:active {
- color: #333;
- background-color: transparent;
-}
-
-#screen-meta-links a.screen-meta-active {
- background-position: right -31px;
-}
-
-/* end screen options and help tabs */
-
-.login #backtoblog a {
- color: #464646;
-}
-
-#wphead {
- border-bottom: #dfdfdf 1px solid;
-}
-
-#wphead h1 a {
- color: #464646;
-}
-
-#wpfooter a:link,
-#wpfooter a:visited {
- text-decoration: none;
-}
-
-#wpfooter a:hover {
- 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;
-}
-
-#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;
-}
-
-#poststuff .inside .the-tagcloud {
- border-color: #ddd;
-}
-
-/* menu */
-#adminmenuback,
-#adminmenuwrap {
- background-color: #ececec;
- border-color: #ccc;
-}
-
-#adminmenushadow,
-#adminmenuback {
- background-image: url(../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 a.menu-top,
-#adminmenu .wp-submenu .wp-submenu-head {
- border-top-color: #f9f9f9;
- border-bottom-color: #dfdfdf;
-}
-
-#adminmenu li.wp-menu-open {
- border-color: #dfdfdf;
-}
-
-#adminmenu li.menu-top:hover,
-#adminmenu li.opensub > a.menu-top,
-#adminmenu li > a.menu-top:focus {
- background-color: #e4e4e4;
- color: #d54e21;
- text-shadow: 0 1px 0 rgba( 255, 255, 255, 0.4 );
-}
-
-/* So it doesn't get applied to the number spans (comments, updates, etc) */
-#adminmenu li.menu-top:hover > a span,
-#adminmenu li.menu-top > a:focus span {
- text-shadow: none;
-}
-
-#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: #777;
- background-image: -webkit-gradient(linear, left bottom, left top, from(#6d6d6d), to(#808080));
- background-image: -webkit-linear-gradient(bottom, #6d6d6d, #808080);
- background-image: -moz-linear-gradient(bottom, #6d6d6d, #808080);
- background-image: -o-linear-gradient(bottom, #6d6d6d, #808080);
- background-image: linear-gradient(to top, #6d6d6d, #808080);
-}
-
-#adminmenu .wp-menu-arrow div {
- background: #777;
- background-image: -webkit-gradient(linear, right bottom, left top, from(#6d6d6d), to(#808080));
- background-image: -webkit-linear-gradient(bottom right, #6d6d6d, #808080);
- background-image: -moz-linear-gradient(bottom right, #6d6d6d, #808080);
- background-image: -o-linear-gradient(bottom right, #6d6d6d, #808080);
- background-image: linear-gradient(to top left, #6d6d6d, #808080);
-}
-
-#adminmenu li.wp-not-current-submenu .wp-menu-arrow {
- border-top-color: #f9f9f9;
- border-bottom-color: #dfdfdf;
- background: #e4e4e4;
-}
-
-#adminmenu li.wp-not-current-submenu .wp-menu-arrow div {
- background: #e4e4e4;
- 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: #808080;
- border-bottom-color: #6d6d6d;
-}
-
-.folded #adminmenu li.wp-has-current-submenu,
-.folded #adminmenu li.current.menu-top {
- border-top-color: #808080;
- border-bottom-color: #6d6d6d;
-}
-
-#adminmenu .wp-submenu a:hover,
-#adminmenu .wp-submenu a:focus {
- background-color: #eaf2fa;
- 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,
-.folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
-.folded #adminmenu .wp-has-current-submenu .wp-submenu {
- background-color: #fff;
- border-color: #dfdfdf;
- -webkit-box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.4);
- box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.4);
-}
-
-#adminmenu .wp-submenu .wp-submenu-head {
- background-color: #e4e4e4;
- color: #333;
-}
-
-/* collapse menu button */
-#collapse-menu {
- color: #aaa;
- border-top-color: #f9f9f9;
-}
-
-#collapse-menu:hover {
- color: #999;
-}
-
-#collapse-button {
- border-color: #ccc;
- background: #f4f4f4;
- background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#fff));
- background-image: -webkit-linear-gradient(bottom, #dfdfdf, #fff);
- background-image: -moz-linear-gradient(bottom, #dfdfdf, #fff);
- background-image: -o-linear-gradient(bottom, #dfdfdf, #fff);
- background-image: linear-gradient(to top, #dfdfdf, #fff);
-}
-
-#collapse-menu:hover #collapse-button {
- border-color: #aaa;
-}
-
-#collapse-button div {
- background: transparent url(../images/arrows.png) no-repeat 0 -72px;
-}
-
-.folded #collapse-button div {
- background-position: 0 -108px;
-}
-
-/* Auto-folding of the admin menu */
-@media only screen and (max-width: 900px) {
- .auto-fold #adminmenu li.wp-has-current-submenu,
- .auto-fold #adminmenu li.current.menu-top {
- background-color: #777;
- background-image: -webkit-gradient(linear, left bottom, left top, from(#6d6d6d), to(#808080));
- background-image: -webkit-linear-gradient(bottom, #6d6d6d, #808080);
- background-image: -moz-linear-gradient(bottom, #6d6d6d, #808080);
- background-image: -o-linear-gradient(bottom, #6d6d6d, #808080);
- background-image: linear-gradient(bottom, #6d6d6d, #808080);
- }
-
- .auto-fold #adminmenu li.wp-has-current-submenu,
- .auto-fold #adminmenu li.current.menu-top {
- border-top-color: #808080;
- border-bottom-color: #6d6d6d;
- }
-
- .auto-fold #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
- .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu {
- background-color: #fff;
- border-color: #dfdfdf;
- -webkit-box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.4);
- box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.4);
- }
-
- .auto-fold #collapse-button div {
- background-position: 0 -108px;
- }
-}
-
-/* menu and screen icons */
-.icon16,
-.icon32,
-div.wp-menu-image {
- background-color: transparent;
- background-repeat: no-repeat;
-}
-
-.icon16.icon-dashboard,
-.menu-icon-dashboard div.wp-menu-image,
-.icon16.icon-post,
-.menu-icon-post div.wp-menu-image,
-.icon16.icon-media,
-.menu-icon-media div.wp-menu-image,
-.icon16.icon-links,
-.menu-icon-links div.wp-menu-image,
-.icon16.icon-page,
-.menu-icon-page div.wp-menu-image,
-.icon16.icon-comments,
-.menu-icon-comments div.wp-menu-image,
-.icon16.icon-appearance,
-.menu-icon-appearance div.wp-menu-image,
-.icon16.icon-plugins,
-.menu-icon-plugins div.wp-menu-image,
-.icon16.icon-users,
-.menu-icon-users div.wp-menu-image,
-.icon16.icon-tools,
-.menu-icon-tools div.wp-menu-image,
-.icon16.icon-settings,
-.menu-icon-settings div.wp-menu-image,
-.icon16.icon-site,
-.menu-icon-site div.wp-menu-image,
-.icon16.icon-generic,
-.menu-icon-generic div.wp-menu-image {
- background-image: url(../images/menu.png?ver=20121105);
-}
-
-.icon16.icon-dashboard,
-#adminmenu .menu-icon-dashboard div.wp-menu-image {
- background-position: -59px -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-position: -59px -1px;
-}
-
-.icon16.icon-post,
-#adminmenu .menu-icon-post div.wp-menu-image {
- background-position: -269px -33px;
-}
-
-#adminmenu .menu-icon-post:hover div.wp-menu-image,
-#adminmenu .menu-icon-post.wp-has-current-submenu div.wp-menu-image,
-#adminmenu .menu-icon-post.current div.wp-menu-image {
- background-position: -269px -1px;
-}
-
-.icon16.icon-media,
-#adminmenu .menu-icon-media div.wp-menu-image {
- background-position: -119px -33px;
-}
-
-#adminmenu .menu-icon-media:hover div.wp-menu-image,
-#adminmenu .menu-icon-media.wp-has-current-submenu div.wp-menu-image,
-#adminmenu .menu-icon-media.current div.wp-menu-image {
- background-position: -119px -1px;
-}
-
-.icon16.icon-links,
-#adminmenu .menu-icon-links div.wp-menu-image {
- background-position: -89px -33px;
-}
-
-#adminmenu .menu-icon-links:hover div.wp-menu-image,
-#adminmenu .menu-icon-links.wp-has-current-submenu div.wp-menu-image,
-#adminmenu .menu-icon-links.current div.wp-menu-image {
- background-position: -89px -1px;
-}
-
-.icon16.icon-page,
-#adminmenu .menu-icon-page div.wp-menu-image {
- background-position: -149px -33px;
-}
-
-#adminmenu .menu-icon-page:hover div.wp-menu-image,
-#adminmenu .menu-icon-page.wp-has-current-submenu div.wp-menu-image,
-#adminmenu .menu-icon-page.current div.wp-menu-image {
- background-position: -149px -1px;
-}
-
-.icon16.icon-comments,
-#adminmenu .menu-icon-comments div.wp-menu-image {
- background-position: -29px -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-position: -29px -1px;
-}
-
-.icon16.icon-appearance,
-#adminmenu .menu-icon-appearance div.wp-menu-image {
- background-position: 1px -33px;
-}
-
-#adminmenu .menu-icon-appearance:hover div.wp-menu-image,
-#adminmenu .menu-icon-appearance.wp-has-current-submenu div.wp-menu-image,
-#adminmenu .menu-icon-appearance.current div.wp-menu-image {
- background-position: 1px -1px;
-}
-
-.icon16.icon-plugins,
-#adminmenu .menu-icon-plugins div.wp-menu-image {
- background-position: -179px -33px;
-}
-
-#adminmenu .menu-icon-plugins:hover div.wp-menu-image,
-#adminmenu .menu-icon-plugins.wp-has-current-submenu div.wp-menu-image,
-#adminmenu .menu-icon-plugins.current div.wp-menu-image {
- background-position: -179px -1px;
-}
-
-.icon16.icon-users,
-#adminmenu .menu-icon-users div.wp-menu-image {
- 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-position: -300px -1px;
-}
-
-.icon16.icon-tools,
-#adminmenu .menu-icon-tools div.wp-menu-image {
- background-position: -209px -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-position: -209px -1px;
-}
-
-.icon16.icon-settings,
-#adminmenu .menu-icon-settings div.wp-menu-image {
- background-position: -239px -33px;
-}
-
-#adminmenu .menu-icon-settings:hover div.wp-menu-image,
-#adminmenu .menu-icon-settings.wp-has-current-submenu div.wp-menu-image,
-#adminmenu .menu-icon-settings.current div.wp-menu-image {
- background-position: -239px -1px;
-}
-
-.icon16.icon-site,
-#adminmenu .menu-icon-site div.wp-menu-image {
- background-position: -359px -33px;
-}
-
-#adminmenu .menu-icon-site:hover div.wp-menu-image,
-#adminmenu .menu-icon-site.wp-has-current-submenu div.wp-menu-image,
-#adminmenu .menu-icon-site.current div.wp-menu-image {
- background-position: -359px -1px;
-}
-
-.icon16.icon-generic,
-#adminmenu .menu-icon-generic div.wp-menu-image {
- background-position: -330px -33px;
-}
-
-#adminmenu .menu-icon-generic:hover div.wp-menu-image,
-#adminmenu .menu-icon-generic.wp-has-current-submenu div.wp-menu-image,
-#adminmenu .menu-icon-generic.current div.wp-menu-image {
- background-position: -330px -1px;
-}
-
-/* end menu and screen icons */
-
-/* Screen Icons */
-.icon32.icon-post,
-#icon-edit,
-#icon-post,
-.icon32.icon-dashboard,
-#icon-index,
-.icon32.icon-media,
-#icon-upload,
-.icon32.icon-links,
-#icon-link-manager,
-#icon-link,
-#icon-link-category,
-.icon32.icon-page,
-#icon-edit-pages,
-#icon-page,
-.icon32.icon-comments,
-#icon-edit-comments,
-.icon32.icon-appearance,
-#icon-themes,
-.icon32.icon-plugins,
-#icon-plugins,
-.icon32.icon-users,
-#icon-users,
-#icon-profile,
-#icon-user-edit,
-.icon32.icon-tools,
-#icon-tools,
-#icon-admin,
-.icon32.icon-settings,
-#icon-options-general,
-.icon32.icon-site,
-#icon-ms-admin,
-.icon32.icon-generic,
-#icon-generic {
- background-image: url(../images/icons32.png?ver=20121105);
-}
-
-.icon32.icon-post,
-#icon-edit,
-#icon-post {
- background-position: -552px -5px;
-}
-
-.icon32.icon-dashboard,
-#icon-index {
- background-position: -137px -5px;
-}
-
-.icon32.icon-media,
-#icon-upload {
- background-position: -251px -5px;
-}
-
-.icon32.icon-links,
-#icon-link-manager,
-#icon-link,
-#icon-link-category {
- background-position: -190px -5px;
-}
-
-.icon32.icon-page,
-#icon-edit-pages,
-#icon-page {
- background-position: -312px -5px;
-}
-
-.icon32.icon-comments,
-#icon-edit-comments {
- background-position: -72px -5px;
-}
-
-.icon32.icon-appearance,
-#icon-themes {
- background-position: -11px -5px;
-}
-
-.icon32.icon-plugins,
-#icon-plugins {
- background-position: -370px -5px;
-}
-
-.icon32.icon-users,
-#icon-users,
-#icon-profile,
-#icon-user-edit {
- background-position: -600px -5px;
-}
-
-.icon32.icon-tools,
-#icon-tools,
-#icon-admin {
- background-position: -432px -5px;
-}
-
-.icon32.icon-settings,
-#icon-options-general {
- background-position: -492px -5px;
-}
-
-.icon32.icon-site,
-#icon-ms-admin {
- background-position: -659px -5px;
-}
-
-.icon32.icon-generic,
-#icon-generic {
- background-position: -708px -5px;
-}
-
-/* end screen icons */
-
-/* Post format icons */
-
-.post-format-icon {
- background: url(../images/post-formats.png) no-repeat;
-}
-
-/* Diff */
-table.diff .diff-deletedline {
- background-color: #ffe9e9;
-}
-
-table.diff .diff-deletedline del {
- background-color: #faa;
-}
-
-table.diff .diff-addedline {
- background-color: #e9ffe9;
-}
-
-table.diff .diff-addedline ins {
- background-color: #afa;
-}
-
-.revisions-meta {
- border: 1px solid #dfdfdf;
-}
-
-.revisions-controls {
- background: #fff;
- background: -webkit-gradient(linear, left bottom, left top, color-stop(0%,rgba(255,255,255,1)), color-stop(30px,rgba(255,255,255,1)), color-stop(100%,rgba(255,255,255,1)));
- background: -webkit-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 30px, rgba(255,255,255,1) 100%);
- background: -moz-linear-gradient(bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 30px, rgba(255,255,255,1) 100%);
- background: -o-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 30px, rgba(255,255,255,1) 100%);
- background: linear-gradient(to top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 30px, rgba(255,255,255,1) 100%);
-}
-
-.revisions-tooltip,
-.revisions-tooltip-arrow span {
- border-color: #d7d7d7;
- background-color: #fff;
-}
-
-.revisions-tickmarks > div {
- border-color: #aaa;
-}
-
-/* jQuery UI Slider */
-.wp-slider.ui-slider {
- border-color: #d7d7d7;
-}
-
-.wp-slider .ui-slider-handle {
- border-color: #ccc;
- border-radius: 50%;
- background: #f4f4f4;
- background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#fff));
- background-image: -webkit-linear-gradient(bottom, #dfdfdf, #fff);
- background-image: -moz-linear-gradient(bottom, #dfdfdf, #fff);
- background-image: -o-linear-gradient(bottom, #dfdfdf, #fff);
- background-image: linear-gradient(to top, #dfdfdf, #fff);
- color: #333;
-}
-
-.wp-slider .ui-slider-handle:hover,
-.wp-slider .ui-slider-handle:focus {
- border-color: #aaa;
-}
-
-.wp-slider .ui-slider-handle.ui-state-hover,
-.wp-slider .ui-slider-handle.ui-state-focus {
- border-color: #aaa;
- outline: none;
-}
-
-/* edit image */
-#sidemenu a {
- background-color: #f9f9f9;
- border-color: #f9f9f9;
- border-bottom-color: #dfdfdf;
-}
-
-#sidemenu a.current {
- background-color: #fff;
- border-color: #dfdfdf #dfdfdf #fff;
- color: #d54e21;
-}
-
-#replyerror {
- border-color: #ddd;
- background-color: #f9f9f9;
-}
-
-/* table vim shortcuts */
-.vim-current,
-.vim-current th,
-.vim-current td {
- background-color: #E4F2FD !important;
-}
-
-/* Install Plugins */
-#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 editor */
-#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 .quick-edit-save {
- background-color: #f1f1f1;
-}
-
-fieldset.inline-edit-col-right .inline-edit-col {
- border-color: #dfdfdf;
-}
-
-.attention {
- color: #d54e21;
-}
-
-.js .meta-box-sortables .postbox:hover .handlediv {
- background: transparent url(../images/arrows.png) no-repeat 6px 7px;
-}
-
-.tablenav .tablenav-pages {
- color: #555;
-}
-
-.tablenav .tablenav-pages a {
- border-color: #e3e3e3;
- background: #eee;
- -moz-box-shadow: inset 0 1px 0 #fff;
- -webkit-box-shadow: inset 0 1px 0 #fff;
- box-shadow: inset 0 1px 0 #fff;
-}
-
-.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-left-color: #eee;
-}
-
-.post-com-count span {
- background-color: #bbb;
-}
-
-.form-table .color-palette td {
- border-color: #fff;
-}
-
-.sortable-placeholder {
- border-color: #bbb;
- background-color: #f5f5f5;
-}
-
-#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,
-.view-switch #view-switch-excerpt {
- background-color: transparent;
- background-image: url('../images/list.png');
- background-repeat: no-repeat;
-}
-
-.view-switch #view-switch-list {
- background-position: 0 0;
-}
-
-.view-switch .current #view-switch-list {
- background-position: -40px 0;
-}
-
-.view-switch #view-switch-excerpt {
- background-position: -20px 0;
-}
-
-.view-switch .current #view-switch-excerpt {
- background-position: -60px 0;
-}
-
-#header-logo {
- background: transparent url(../images/wp-logo.png?ver=20110504) no-repeat scroll center center;
-}
-
-.popular-tags,
-.feature-filter {
- background-color: #fff;
- border-color: #dfdfdf;
-}
-
-div.widgets-sortables,
-#widgets-left .inactive,
-#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;
- -webkit-box-shadow: inset 0 1px 0 #fff;
- box-shadow: inset 0 1px 0 #fff;
-}
-
-.js .sidebar-name:hover,
-.js #removing-widget {
- color: #d54e21;
-}
-
-#removing-widget span {
- color: black;
-}
-
-.js .sidebar-name-arrow {
- background: transparent url(../images/arrows.png) no-repeat 5px 9px;
-}
-
-.js .sidebar-name:hover .sidebar-name-arrow {
- background: transparent url(../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: 0.5;
-}
-
-#dashboard_recent_comments div.undo {
- border-top-color: #dfdfdf;
-}
-
-.comment-ays,
-.comment-ays th {
- border-color: #ddd;
-}
-
-.comment-ays th {
- background-color: #f1f1f1;
-}
-
-/* added from nav-menu.css */
-#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,
-.menu-item-handle {
- border-color: #dfdfdf;
-}
-
-.menu li.deleting .menu-item-handle {
- background-color: #f66;
- text-shadow: #ccc;
-}
-
-.item-type { /* Menu item controls */
- color: #999;
-}
-
-.item-controls .menu-item-delete:hover {
- color: #f00;
-}
-
-.nav-menus-php .item-edit {
- background: transparent url(../images/arrows.png) no-repeat 8px 10px;
- border-bottom-color: #eee;
-}
-
-.nav-menus-php .item-edit:hover {
- background: transparent url(../images/arrows-dark.png) no-repeat 8px 10px;
-}
-
-.menu-item-settings { /* Menu editing */
- 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: #21759b;
- border-bottom-color: #21759b;
-}
-
-.submitbox .submitcancel:hover {
- background: #21759b;
- color: #fff;
-}
-
-.manage-menus {
- border: 1px solid #eeeeee;
- background: #fbfbfb;
-}
-
-.theme-location-set {
- color: #999999;
-}
-
-.nav-menus-php .delete-action a {
- color: #bc0b0b;
-}
-
-.is-submenu {
- color: #999999;
-}
-/* end added from nav-menu.css */
-
-.nav-tab {
- border-color: #dfdfdf #dfdfdf #fff;
-}
-
-.nav-tab:hover,
-.nav-tab-active {
- border-color: #ccc #ccc #fff;
-}
-
-h2.nav-tab-wrapper, h3.nav-tab-wrapper {
- border-bottom-color: #ccc;
-}
-
-#menu-management .nav-tab-active,
-.menu-item-handle,
-.menu-item-settings {
- -webkit-box-shadow: inset 0 1px 0 #fff;
- box-shadow: inset 0 1px 0 #fff;
-}
-
-#menu-management .nav-tab-active {
- background: #f9f9f9;
- border-bottom-color: #f9f9f9;
-}
-
-#upload-form label {
- color: #777;
-}
-
-/* Begin About Pages */
-
-.about-wrap h1 {
- color: #333;
- text-shadow: 1px 1px 1px #fff;
-}
-
-.about-text {
- color: #777;
-}
-
-.wp-badge {
- color: #fff;
- text-shadow: 0 -1px 0 rgba(22, 57, 81, 0.3);
-}
-
-.about-wrap h2 .nav-tab {
- color: #21759b;
-}
-
-.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 #fff;
- color: #464646;
-}
-
-.about-wrap h3 {
- color: #333;
- text-shadow: 1px 1px 1px #fff;
-}
-
-.about-wrap .feature-section h4 {
- color: #464646;
-}
-
-.about-wrap h4.wp-people-group {
- text-shadow: 1px 1px 1px #fff;
-}
-
-.about-wrap .point-releases {
- border-bottom: 1px solid #dfdfdf;
-}
-
-.about-wrap .point-releases h3 {
- border-top: 1px solid #dfdfdf;
-}
-
-.about-wrap .point-releases h3:first-child {
- border: 0;
-}
-
-.about-wrap li.wp-person img.gravatar {
- -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 #fff;
-}
-
-.freedoms-php .about-wrap ol li {
- color: #999;
-}
-
-.freedoms-php .about-wrap ol p {
- color: #464646;
-}
-
-/* End About Pages */
-
-
-/*------------------------------------------------------------------------------
- 2.0 - Right to Left Styles
-------------------------------------------------------------------------------*/
-
-.rtl .bar {
- border-right-color: transparent;
- 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;
-}
-
-/* Menu */
-.rtl #adminmenushadow,
-.rtl #adminmenuback {
- background-image: url(../images/menu-shadow-rtl.png);
- background-position: top left;
-}
-
-.rtl #adminmenu .wp-submenu .wp-submenu-head {
- border-right-color: transparent;
- border-left-color: #dfdfdf;
-}
-
-.rtl #adminmenu .wp-submenu,
-.rtl.folded #adminmenu .wp-has-current-submenu .wp-submenu {
- -webkit-box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 );
- box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 );
-}
-
-.rtl #adminmenu .wp-has-current-submenu .wp-submenu {
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-/* Collapse Menu Button */
-.rtl #collapse-button div {
- background-position: 0 -108px;
-}
-
-.rtl.folded #collapse-button div {
- background-position: 0 -72px;
-}
-
-/* Auto-folding of the admin menu for RTL */
-@media only screen and (max-width: 900px) {
- .rtl.auto-fold #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
- .rtl.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu {
- -webkit-box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 );
- box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 );
- }
-
- .rtl.auto-fold #collapse-button div {
- background-position: 0 -72px;
- }
-}
-
-/* Edit Image */
-.js.rtl .meta-box-sortables .postbox:hover .handlediv {
- background: transparent url(../images/arrows.png) no-repeat 6px 7px;
-}
-
-.rtl #post-body .misc-pub-section {
- border-right-color: transparent;
- border-left-color: #eee;
-}
-
-.js.rtl .sidebar-name-arrow {
- background: transparent url(../images/arrows.png) no-repeat 5px 9px;
-}
-
-.js.rtl .sidebar-name:hover .sidebar-name-arrow {
- background: transparent url(../images/arrows-dark.png) no-repeat 5px 9px;
-}
-
-/**
- * HiDPI Displays
- */
-@media print,
- (-o-min-device-pixel-ratio: 5/4),
- (-webkit-min-device-pixel-ratio: 1.25),
- (min-resolution: 120dpi) {
-
- .curtime #timestamp {
- background-image: url("../images/date-button-2x.gif?ver=20120916");
- background-size: 16px auto;
- }
-
- .tagchecklist span a,
- #bulk-titles div a,
- .tagchecklist span a:hover,
- #bulk-titles div a:hover {
- background-image: url("../images/xit-2x.gif?ver=20120916");
- background-size: 20px auto;
- }
-
- #screen-meta-links a.show-settings,
- #screen-meta-links a.show-settings.screen-meta-active,
- #adminmenu .wp-has-submenu:hover .wp-menu-toggle,
- #adminmenu .wp-menu-open .wp-menu-toggle,
- #collapse-button div,
- .nav-menus-php .item-edit,
- .js .meta-box-sortables .postbox:hover .handlediv,
- .sidebar-name-arrow,
- .rtl #adminmenu .wp-has-submenu:hover .wp-menu-toggle,
- .rtl #adminmenu .wp-menu-open .wp-menu-toggle,
- .js.rtl .meta-box-sortables .postbox:hover .handlediv,
- .rtl .sidebar-name-arrow {
- background-image: url("../images/arrows-2x.png?ver=20120916");
- background-size: 15px 123px;
- }
-
- #adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,
- #adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle,
- .sidebar-name:hover .sidebar-name-arrow,
- .nav-menus-php .item-edit:hover,
- .rtl #adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,
- .rtl #adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle,
- .rtl .sidebar-name:hover .sidebar-name-arrow {
- background-image: url("../images/arrows-dark-2x.png?ver=20120916");
- background-size: 15px 123px;
- }
-
- .view-switch #view-switch-list,
- .view-switch #view-switch-excerpt {
- background-image: url("../images/list-2x.png?ver=20120916");
- background-size: 80px 20px;
- }
-
- .icon32.icon-post,
- #icon-edit,
- #icon-post,
- .icon32.icon-dashboard,
- #icon-index,
- .icon32.icon-media,
- #icon-upload,
- .icon32.icon-links,
- #icon-link-manager,
- #icon-link,
- #icon-link-category,
- .icon32.icon-page,
- #icon-edit-pages,
- #icon-page,
- .icon32.icon-comments,
- #icon-edit-comments,
- .icon32.icon-appearance,
- #icon-themes,
- .icon32.icon-plugins,
- #icon-plugins,
- .icon32.icon-users,
- #icon-users,
- #icon-profile,
- #icon-user-edit,
- .icon32.icon-tools,
- #icon-tools,
- #icon-admin,
- .icon32.icon-settings,
- #icon-options-general,
- .icon32.icon-site,
- #icon-ms-admin,
- .icon32.icon-generic,
- #icon-generic {
- background-image: url(../images/icons32-2x.png?ver=20121105);
- background-size: 756px 45px;
- }
-
- .icon16.icon-dashboard,
- .menu-icon-dashboard div.wp-menu-image,
- .icon16.icon-post,
- .menu-icon-post div.wp-menu-image,
- .icon16.icon-media,
- .menu-icon-media div.wp-menu-image,
- .icon16.icon-links,
- .menu-icon-links div.wp-menu-image,
- .icon16.icon-page,
- .menu-icon-page div.wp-menu-image,
- .icon16.icon-comments,
- .menu-icon-comments div.wp-menu-image,
- .icon16.icon-appearance,
- .menu-icon-appearance div.wp-menu-image,
- .icon16.icon-plugins,
- .menu-icon-plugins div.wp-menu-image,
- .icon16.icon-users,
- .menu-icon-users div.wp-menu-image,
- .icon16.icon-tools,
- .menu-icon-tools div.wp-menu-image,
- .icon16.icon-settings,
- .menu-icon-settings div.wp-menu-image,
- .icon16.icon-site,
- .menu-icon-site div.wp-menu-image,
- .icon16.icon-generic,
- .menu-icon-generic div.wp-menu-image {
- background-image: url('../images/menu-2x.png?ver=20121105');
- background-size: 390px 64px;
- }
-
- #header-logo {
- background-image: url('../images/wp-logo-2x.png?ver=20120916');
- background-size: 16px auto;
- }
-
- /* 16px post formats */
- .post-format-icon {
- background-image: url(../images/post-formats32.png);
- background-size: 16px 304px;
- }
-
-}
diff --git a/sources/wp-admin/css/colors-fresh.min.css b/sources/wp-admin/css/colors-fresh.min.css
deleted file mode 100644
index b51baf0..0000000
--- a/sources/wp-admin/css/colors-fresh.min.css
+++ /dev/null
@@ -1 +0,0 @@
-.find-box-search,.find-box-buttons{background-color:#f7f7f7;border-top:1px solid #ddd}.find-box{background-color:#444}.find-box-head{color:#eee}.find-box-inside{background-color:#fff}a.page-numbers:hover{border-color:#999}body,#wpbody,.form-table .pre,.ui-autocomplete li a{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}table.widefat{border-color:#dfdfdf;background-color:#f9f9f9}div.dashboard-widget-error{background-color:#c43}div.dashboard-widget-notice{background-color:#cfe1ef}div.dashboard-widget-submit{border-top-color:#ccc}ul.category-tabs li{border-color:transparent}div.tabs-panel,.wp-tab-panel,ul.add-menu-item-tabs li.tabs,.wp-tab-active{border-color:#dfdfdf;background-color:#fff}ul.category-tabs li.tabs{border-color:#dfdfdf #dfdfdf #fff}ul.category-tabs li.tabs,ul.add-menu-item-tabs li.tabs,.wp-tab-active{background-color:#fff}kbd,code{background:#eaeaea}textarea,input[type=text],input[type=password],input[type=file],input[type=email],input[type=number],input[type=search],input[type=tel],input[type=url],select{border-color:#dfdfdf}textarea:focus,input[type=text]:focus,input[type=password]:focus,input[type=file]: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:#aaa}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}.revisions-meta,.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,.sidebar-name,#nav-menu-header,#nav-menu-footer,.menu-item-handle{background:#f1f1f1;background-image:-webkit-gradient(linear,left bottom,left top,from(#ececec),to(#f9f9f9));background-image:-webkit-linear-gradient(bottom,#ececec,#f9f9f9);background-image:-moz-linear-gradient(bottom,#ececec,#f9f9f9);background-image:-o-linear-gradient(bottom,#ececec,#f9f9f9);background-image:linear-gradient(to top,#ececec,#f9f9f9)}.widget .widget-top,.postbox h3,.stuffbox h3{border-bottom-color:#dfdfdf;text-shadow:#fff 0 1px 0;-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:#21759b}.sorthelper{background-color:#ccf3fa}.ac_match,.subsubsub a.current{color:#000}.wrap h2{color:#464646}.wrap .add-new-h2,.wrap .add-new-h2:active{background:#f1f1f1}.subtitle{color:#777}.ac_over{background-color:#f0f0b8}.ac_results{background-color:#fff;border-color:gray}.ac_results li{color:#101010}.alternate,.alt{background-color:#fcfcfc}.available-theme a.screenshot{background-color:#f1f1f1;border-color:#ddd}#current-theme{border-bottom-color:#dfdfdf}.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,#commentsdiv #add-new-comment{border-color:#dfdfdf}.highlight{background-color:#e4f2fd;color:#000}.howto,.nonessential,#edit-slug-box,.form-input-tip,.subsubsub{color:#666}.media-upload-form label.form-help,td.help{color:#9a9a9a}.ui-autocomplete{border-color:#aaa;background-color:#efefef}.ui-autocomplete li a.ui-state-focus{background-color:#ddd}.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}a:hover,a:active{color:#d54e21}a:focus{color:#124964}#adminmenu a:hover,#adminmenu li.menu-top>a:focus,#adminmenu .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}#dashboard_right_now .table_content,#dashboard_right_now .table_discussion{border-top-color:#ececec}.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:red;border-bottom-color:red}.submitbox .submitdelete:hover,#media-items a.delete:hover,#media-items a.delete-permanently:hover,#nav-menu-footer .menu-delete:hover{color:#fff;background-color:red;border-bottom-color:red}#normal-sortables .submitbox .submitdelete:hover{color:#000;background-color:red;border-bottom-color:red}.tablenav .dots{border-color:transparent}.tablenav .next,.tablenav .prev{border-color:transparent;color:#21759b}.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,.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{color:#333}th.sortable a:hover,th.sortable a:active,th.sortable a:focus{color:#333}th.sortable a:focus{background:#e1e1e1;background-image:-webkit-gradient(linear,left bottom,left top,from(#dcdcdc),to(#e9e9e9));background-image:-webkit-linear-gradient(bottom,#dcdcdc,#e9e9e9);background-image:-moz-linear-gradient(bottom,#dcdcdc,#e9e9e9);background-image:-o-linear-gradient(bottom,#dcdcdc,#e9e9e9);background-image:linear-gradient(to top,#dcdcdc,#e9e9e9)}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,#media-items a.delete-permanently,.plugins a.delete,.ui-tabs-nav a{color:#21759b}#adminmenu .awaiting-mod,#adminmenu .update-plugins,#sidemenu a .update-plugins,#rightnow .reallynow{background-color:#464646;color:#fff;-webkit-box-shadow:rgba(255,255,255,.5) 0 1px 0;box-shadow:rgba(255,255,255,.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;-webkit-box-shadow:rgba(255,255,255,.5) 0 1px 0;box-shadow:rgba(255,255,255,.5) 0 1px 0}div#media-upload-header,div#plugin-information-header{background-color:#f9f9f9;border-bottom-color:#dfdfdf}#currenttheme img{border-color:#666}#dashboard_secondary div.dashboard-widget-content ul li a{background-color:#f9f9f9}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:#21759b!important}.login #nav a:hover,.login #backtoblog a:hover{color:#d54e21!important}#wpfooter{color:#777;border-color:#dfdfdf}.imgedit-group,#media-items .media-item,.media-item .describe{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{background:#f5f5f5;background-image:-webkit-gradient(linear,left bottom,left top,from(#f5f5f5),to(#fafafa));background-image:-webkit-linear-gradient(bottom,#f5f5f5,#fafafa);background-image:-moz-linear-gradient(bottom,#f5f5f5,#fafafa);background-image:-o-linear-gradient(bottom,#f5f5f5,#fafafa);background-image:linear-gradient(to top,#f5f5f5,#fafafa);border-color:#dfdfdf}.welcome-panel p{color:#777}.welcome-panel-column p{color:#464646}.welcome-panel h3{text-shadow:1px 1px 1px #fff}.widget,#widget-list .widget-top,.postbox,#titlediv,#poststuff .postarea,.stuffbox{border-color:#dfdfdf;-webkit-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff;-webkit-border-radius:3px;border-radius:3px}.widget,#widget-list .widget-top,.postbox,.menu-item-settings{background:#f5f5f5;background-image:-webkit-gradient(linear,left bottom,left top,from(#f5f5f5),to(#f9f9f9));background-image:-webkit-linear-gradient(bottom,#f5f5f5,#f9f9f9);background-image:-moz-linear-gradient(bottom,#f5f5f5,#f9f9f9);background-image:-o-linear-gradient(bottom,#f5f5f5,#f9f9f9);background-image:linear-gradient(to top,#f5f5f5,#f9f9f9)}.postbox h3{color:#464646}.widget .widget-top{color:#222}.js .sidebar-name:hover h3,.js .postbox h3:hover{color:#000}.curtime #timestamp{background-image:url(../images/date-button.gif)}#rightnow .youhave{background-color:#f0f6fb}#rightnow a{color:#448abd}.tagchecklist span a,#bulk-titles div a{background:url(../images/xit.gif) no-repeat}.tagchecklist span a:hover,#bulk-titles div a:hover{background:url(../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,.05);box-shadow:0 1px 3px rgba(0,0,0,.05)}#contextual-help-back{background:#fff}.contextual-help-tabs a:hover{color:#333}#contextual-help-back,.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:#333}#screen-options-link-wrap,#contextual-help-link-wrap{border-right:1px solid #ccc;border-left:1px solid #ccc;border-bottom:1px solid #ccc;background:#e3e3e3;background-image:-webkit-gradient(linear,left bottom,left top,from(#dfdfdf),to(#f1f1f1));background-image:-webkit-linear-gradient(bottom,#dfdfdf,#f1f1f1);background-image:-moz-linear-gradient(bottom,#dfdfdf,#f1f1f1);background-image:-o-linear-gradient(bottom,#dfdfdf,#f1f1f1);background-image:linear-gradient(to top,#dfdfdf,#f1f1f1)}#screen-meta-links a{color:#777;background:transparent url(../images/arrows.png) no-repeat right 4px}#screen-meta-links a:hover,#screen-meta-links a:active{color:#333;background-color:transparent}#screen-meta-links a.screen-meta-active{background-position:right -31px}.login #backtoblog a{color:#464646}#wphead{border-bottom:#dfdfdf 1px solid}#wphead h1 a{color:#464646}#wpfooter a:link,#wpfooter a:visited{text-decoration:none}#wpfooter a:hover{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:red}#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}#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}#poststuff .inside .the-tagcloud{border-color:#ddd}#adminmenuback,#adminmenuwrap{background-color:#ececec;border-color:#ccc}#adminmenushadow,#adminmenuback{background-image:url(../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 a.menu-top,#adminmenu .wp-submenu .wp-submenu-head{border-top-color:#f9f9f9;border-bottom-color:#dfdfdf}#adminmenu li.wp-menu-open{border-color:#dfdfdf}#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{background-color:#e4e4e4;color:#d54e21;text-shadow:0 1px 0 rgba(255,255,255,.4)}#adminmenu li.menu-top:hover>a span,#adminmenu li.menu-top>a:focus span{text-shadow:none}#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:#777;background-image:-webkit-gradient(linear,left bottom,left top,from(#6d6d6d),to(gray));background-image:-webkit-linear-gradient(bottom,#6d6d6d,gray);background-image:-moz-linear-gradient(bottom,#6d6d6d,gray);background-image:-o-linear-gradient(bottom,#6d6d6d,gray);background-image:linear-gradient(to top,#6d6d6d,gray)}#adminmenu .wp-menu-arrow div{background:#777;background-image:-webkit-gradient(linear,right bottom,left top,from(#6d6d6d),to(gray));background-image:-webkit-linear-gradient(bottom right,#6d6d6d,gray);background-image:-moz-linear-gradient(bottom right,#6d6d6d,gray);background-image:-o-linear-gradient(bottom right,#6d6d6d,gray);background-image:linear-gradient(to top left,#6d6d6d,gray)}#adminmenu li.wp-not-current-submenu .wp-menu-arrow{border-top-color:#f9f9f9;border-bottom-color:#dfdfdf;background:#e4e4e4}#adminmenu li.wp-not-current-submenu .wp-menu-arrow div{background:#e4e4e4;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:gray;border-bottom-color:#6d6d6d}.folded #adminmenu li.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{border-top-color:gray;border-bottom-color:#6d6d6d}#adminmenu .wp-submenu a:hover,#adminmenu .wp-submenu a:focus{background-color:#eaf2fa;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,.folded #adminmenu a.wp-has-current-submenu:focus+.wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu{background-color:#fff;border-color:#dfdfdf;-webkit-box-shadow:2px 3px 6px rgba(0,0,0,.4);box-shadow:2px 3px 6px rgba(0,0,0,.4)}#adminmenu .wp-submenu .wp-submenu-head{background-color:#e4e4e4;color:#333}#collapse-menu{color:#aaa;border-top-color:#f9f9f9}#collapse-menu:hover{color:#999}#collapse-button{border-color:#ccc;background:#f4f4f4;background-image:-webkit-gradient(linear,left bottom,left top,from(#dfdfdf),to(#fff));background-image:-webkit-linear-gradient(bottom,#dfdfdf,#fff);background-image:-moz-linear-gradient(bottom,#dfdfdf,#fff);background-image:-o-linear-gradient(bottom,#dfdfdf,#fff);background-image:linear-gradient(to top,#dfdfdf,#fff)}#collapse-menu:hover #collapse-button{border-color:#aaa}#collapse-button div{background:transparent url(../images/arrows.png) no-repeat 0 -72px}.folded #collapse-button div{background-position:0 -108px}@media only screen and (max-width:900px){.auto-fold #adminmenu li.wp-has-current-submenu,.auto-fold #adminmenu li.current.menu-top{background-color:#777;background-image:-webkit-gradient(linear,left bottom,left top,from(#6d6d6d),to(gray));background-image:-webkit-linear-gradient(bottom,#6d6d6d,gray);background-image:-moz-linear-gradient(bottom,#6d6d6d,gray);background-image:-o-linear-gradient(bottom,#6d6d6d,gray);background-image:linear-gradient(bottom,#6d6d6d,gray)}.auto-fold #adminmenu li.wp-has-current-submenu,.auto-fold #adminmenu li.current.menu-top{border-top-color:gray;border-bottom-color:#6d6d6d}.auto-fold #adminmenu a.wp-has-current-submenu:focus+.wp-submenu,.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu{background-color:#fff;border-color:#dfdfdf;-webkit-box-shadow:2px 3px 6px rgba(0,0,0,.4);box-shadow:2px 3px 6px rgba(0,0,0,.4)}.auto-fold #collapse-button div{background-position:0 -108px}}.icon16,.icon32,div.wp-menu-image{background-color:transparent;background-repeat:no-repeat}.icon16.icon-dashboard,.menu-icon-dashboard div.wp-menu-image,.icon16.icon-post,.menu-icon-post div.wp-menu-image,.icon16.icon-media,.menu-icon-media div.wp-menu-image,.icon16.icon-links,.menu-icon-links div.wp-menu-image,.icon16.icon-page,.menu-icon-page div.wp-menu-image,.icon16.icon-comments,.menu-icon-comments div.wp-menu-image,.icon16.icon-appearance,.menu-icon-appearance div.wp-menu-image,.icon16.icon-plugins,.menu-icon-plugins div.wp-menu-image,.icon16.icon-users,.menu-icon-users div.wp-menu-image,.icon16.icon-tools,.menu-icon-tools div.wp-menu-image,.icon16.icon-settings,.menu-icon-settings div.wp-menu-image,.icon16.icon-site,.menu-icon-site div.wp-menu-image,.icon16.icon-generic,.menu-icon-generic div.wp-menu-image{background-image:url(../images/menu.png?ver=20121105)}.icon16.icon-dashboard,#adminmenu .menu-icon-dashboard div.wp-menu-image{background-position:-59px -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-position:-59px -1px}.icon16.icon-post,#adminmenu .menu-icon-post div.wp-menu-image{background-position:-269px -33px}#adminmenu .menu-icon-post:hover div.wp-menu-image,#adminmenu .menu-icon-post.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-post.current div.wp-menu-image{background-position:-269px -1px}.icon16.icon-media,#adminmenu .menu-icon-media div.wp-menu-image{background-position:-119px -33px}#adminmenu .menu-icon-media:hover div.wp-menu-image,#adminmenu .menu-icon-media.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-media.current div.wp-menu-image{background-position:-119px -1px}.icon16.icon-links,#adminmenu .menu-icon-links div.wp-menu-image{background-position:-89px -33px}#adminmenu .menu-icon-links:hover div.wp-menu-image,#adminmenu .menu-icon-links.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-links.current div.wp-menu-image{background-position:-89px -1px}.icon16.icon-page,#adminmenu .menu-icon-page div.wp-menu-image{background-position:-149px -33px}#adminmenu .menu-icon-page:hover div.wp-menu-image,#adminmenu .menu-icon-page.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-page.current div.wp-menu-image{background-position:-149px -1px}.icon16.icon-comments,#adminmenu .menu-icon-comments div.wp-menu-image{background-position:-29px -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-position:-29px -1px}.icon16.icon-appearance,#adminmenu .menu-icon-appearance div.wp-menu-image{background-position:1px -33px}#adminmenu .menu-icon-appearance:hover div.wp-menu-image,#adminmenu .menu-icon-appearance.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-appearance.current div.wp-menu-image{background-position:1px -1px}.icon16.icon-plugins,#adminmenu .menu-icon-plugins div.wp-menu-image{background-position:-179px -33px}#adminmenu .menu-icon-plugins:hover div.wp-menu-image,#adminmenu .menu-icon-plugins.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-plugins.current div.wp-menu-image{background-position:-179px -1px}.icon16.icon-users,#adminmenu .menu-icon-users div.wp-menu-image{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-position:-300px -1px}.icon16.icon-tools,#adminmenu .menu-icon-tools div.wp-menu-image{background-position:-209px -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-position:-209px -1px}.icon16.icon-settings,#adminmenu .menu-icon-settings div.wp-menu-image{background-position:-239px -33px}#adminmenu .menu-icon-settings:hover div.wp-menu-image,#adminmenu .menu-icon-settings.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-settings.current div.wp-menu-image{background-position:-239px -1px}.icon16.icon-site,#adminmenu .menu-icon-site div.wp-menu-image{background-position:-359px -33px}#adminmenu .menu-icon-site:hover div.wp-menu-image,#adminmenu .menu-icon-site.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-site.current div.wp-menu-image{background-position:-359px -1px}.icon16.icon-generic,#adminmenu .menu-icon-generic div.wp-menu-image{background-position:-330px -33px}#adminmenu .menu-icon-generic:hover div.wp-menu-image,#adminmenu .menu-icon-generic.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-generic.current div.wp-menu-image{background-position:-330px -1px}.icon32.icon-post,#icon-edit,#icon-post,.icon32.icon-dashboard,#icon-index,.icon32.icon-media,#icon-upload,.icon32.icon-links,#icon-link-manager,#icon-link,#icon-link-category,.icon32.icon-page,#icon-edit-pages,#icon-page,.icon32.icon-comments,#icon-edit-comments,.icon32.icon-appearance,#icon-themes,.icon32.icon-plugins,#icon-plugins,.icon32.icon-users,#icon-users,#icon-profile,#icon-user-edit,.icon32.icon-tools,#icon-tools,#icon-admin,.icon32.icon-settings,#icon-options-general,.icon32.icon-site,#icon-ms-admin,.icon32.icon-generic,#icon-generic{background-image:url(../images/icons32.png?ver=20121105)}.icon32.icon-post,#icon-edit,#icon-post{background-position:-552px -5px}.icon32.icon-dashboard,#icon-index{background-position:-137px -5px}.icon32.icon-media,#icon-upload{background-position:-251px -5px}.icon32.icon-links,#icon-link-manager,#icon-link,#icon-link-category{background-position:-190px -5px}.icon32.icon-page,#icon-edit-pages,#icon-page{background-position:-312px -5px}.icon32.icon-comments,#icon-edit-comments{background-position:-72px -5px}.icon32.icon-appearance,#icon-themes{background-position:-11px -5px}.icon32.icon-plugins,#icon-plugins{background-position:-370px -5px}.icon32.icon-users,#icon-users,#icon-profile,#icon-user-edit{background-position:-600px -5px}.icon32.icon-tools,#icon-tools,#icon-admin{background-position:-432px -5px}.icon32.icon-settings,#icon-options-general{background-position:-492px -5px}.icon32.icon-site,#icon-ms-admin{background-position:-659px -5px}.icon32.icon-generic,#icon-generic{background-position:-708px -5px}.post-format-icon{background:url(../images/post-formats.png) no-repeat}table.diff .diff-deletedline{background-color:#ffe9e9}table.diff .diff-deletedline del{background-color:#faa}table.diff .diff-addedline{background-color:#e9ffe9}table.diff .diff-addedline ins{background-color:#afa}.revisions-meta{border:1px solid #dfdfdf}.revisions-controls{background:#fff;background:-webkit-gradient(linear,left bottom,left top,color-stop(0%,rgba(255,255,255,1)),color-stop(30px,rgba(255,255,255,1)),color-stop(100%,rgba(255,255,255,1)));background:-webkit-linear-gradient(bottom,rgba(255,255,255,0) 0,rgba(255,255,255,1) 30px,rgba(255,255,255,1) 100%);background:-moz-linear-gradient(bottom,rgba(255,255,255,0) 0,rgba(255,255,255,1) 30px,rgba(255,255,255,1) 100%);background:-o-linear-gradient(bottom,rgba(255,255,255,0) 0,rgba(255,255,255,1) 30px,rgba(255,255,255,1) 100%);background:linear-gradient(to top,rgba(255,255,255,0) 0,rgba(255,255,255,1) 30px,rgba(255,255,255,1) 100%)}.revisions-tooltip,.revisions-tooltip-arrow span{border-color:#d7d7d7;background-color:#fff}.revisions-tickmarks>div{border-color:#aaa}.wp-slider.ui-slider{border-color:#d7d7d7}.wp-slider .ui-slider-handle{border-color:#ccc;border-radius:50%;background:#f4f4f4;background-image:-webkit-gradient(linear,left bottom,left top,from(#dfdfdf),to(#fff));background-image:-webkit-linear-gradient(bottom,#dfdfdf,#fff);background-image:-moz-linear-gradient(bottom,#dfdfdf,#fff);background-image:-o-linear-gradient(bottom,#dfdfdf,#fff);background-image:linear-gradient(to top,#dfdfdf,#fff);color:#333}.wp-slider .ui-slider-handle:hover,.wp-slider .ui-slider-handle:focus{border-color:#aaa}.wp-slider .ui-slider-handle.ui-state-hover,.wp-slider .ui-slider-handle.ui-state-focus{border-color:#aaa;outline:0}#sidemenu a{background-color:#f9f9f9;border-color:#f9f9f9;border-bottom-color:#dfdfdf}#sidemenu a.current{background-color:#fff;border-color:#dfdfdf #dfdfdf #fff;color:#d54e21}#replyerror{border-color:#ddd;background-color:#f9f9f9}.vim-current,.vim-current th,.vim-current td{background-color:#E4F2FD!important}#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}#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 .quick-edit-save{background-color:#f1f1f1}fieldset.inline-edit-col-right .inline-edit-col{border-color:#dfdfdf}.attention{color:#d54e21}.js .meta-box-sortables .postbox:hover .handlediv{background:transparent url(../images/arrows.png) no-repeat 6px 7px}.tablenav .tablenav-pages{color:#555}.tablenav .tablenav-pages a{border-color:#e3e3e3;background:#eee;-moz-box-shadow:inset 0 1px 0 #fff;-webkit-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff}.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-left-color:#eee}.post-com-count span{background-color:#bbb}.form-table .color-palette td{border-color:#fff}.sortable-placeholder{border-color:#bbb;background-color:#f5f5f5}#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,.view-switch #view-switch-excerpt{background-color:transparent;background-image:url(../images/list.png);background-repeat:no-repeat}.view-switch #view-switch-list{background-position:0 0}.view-switch .current #view-switch-list{background-position:-40px 0}.view-switch #view-switch-excerpt{background-position:-20px 0}.view-switch .current #view-switch-excerpt{background-position:-60px 0}#header-logo{background:transparent url(../images/wp-logo.png?ver=20110504) no-repeat scroll center center}.popular-tags,.feature-filter{background-color:#fff;border-color:#dfdfdf}div.widgets-sortables,#widgets-left .inactive,#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;-webkit-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff}.js .sidebar-name:hover,.js #removing-widget{color:#d54e21}#removing-widget span{color:#000}.js .sidebar-name-arrow{background:transparent url(../images/arrows.png) no-repeat 5px 9px}.js .sidebar-name:hover .sidebar-name-arrow{background:transparent url(../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:red}#cancel-save:hover{background-color:red;color:#fff}.list-container,.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:red}.nav-menus-php .item-edit{background:transparent url(../images/arrows.png) no-repeat 8px 10px;border-bottom-color:#eee}.nav-menus-php .item-edit:hover{background:transparent url(../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:#21759b;border-bottom-color:#21759b}.submitbox .submitcancel:hover{background:#21759b;color:#fff}.manage-menus{border:1px solid #eee;background:#fbfbfb}.theme-location-set{color:#999}.nav-menus-php .delete-action a{color:#bc0b0b}.is-submenu{color:#999}.nav-tab{border-color:#dfdfdf #dfdfdf #fff}.nav-tab:hover,.nav-tab-active{border-color:#ccc #ccc #fff}h2.nav-tab-wrapper,h3.nav-tab-wrapper{border-bottom-color:#ccc}#menu-management .nav-tab-active,.menu-item-handle,.menu-item-settings{-webkit-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff}#menu-management .nav-tab-active{background:#f9f9f9;border-bottom-color:#f9f9f9}#upload-form label{color:#777}.about-wrap h1{color:#333;text-shadow:1px 1px 1px #fff}.about-text{color:#777}.wp-badge{color:#fff;text-shadow:0 -1px 0 rgba(22,57,81,.3)}.about-wrap h2 .nav-tab{color:#21759b}.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 #fff;color:#464646}.about-wrap h3{color:#333;text-shadow:1px 1px 1px #fff}.about-wrap .feature-section h4{color:#464646}.about-wrap h4.wp-people-group{text-shadow:1px 1px 1px #fff}.about-wrap .point-releases{border-bottom:1px solid #dfdfdf}.about-wrap .point-releases h3{border-top:1px solid #dfdfdf}.about-wrap .point-releases h3:first-child{border:0}.about-wrap li.wp-person img.gravatar{-webkit-box-shadow:0 0 4px rgba(0,0,0,.4);box-shadow:0 0 4px rgba(0,0,0,.4)}.about-wrap li.wp-person .title{color:#464646;text-shadow:1px 1px 1px #fff}.freedoms-php .about-wrap ol li{color:#999}.freedoms-php .about-wrap ol p{color:#464646}.rtl .bar{border-right-color:transparent;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-image:url(../images/menu-shadow-rtl.png);background-position:top left}.rtl #adminmenu .wp-submenu .wp-submenu-head{border-right-color:transparent;border-left-color:#dfdfdf}.rtl #adminmenu .wp-submenu,.rtl.folded #adminmenu .wp-has-current-submenu .wp-submenu{-webkit-box-shadow:-2px 2px 5px rgba(0,0,0,.4);box-shadow:-2px 2px 5px rgba(0,0,0,.4)}.rtl #adminmenu .wp-has-current-submenu .wp-submenu{-webkit-box-shadow:none;box-shadow:none}.rtl #collapse-button div{background-position:0 -108px}.rtl.folded #collapse-button div{background-position:0 -72px}@media only screen and (max-width:900px){.rtl.auto-fold #adminmenu a.wp-has-current-submenu:focus+.wp-submenu,.rtl.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu{-webkit-box-shadow:-2px 2px 5px rgba(0,0,0,.4);box-shadow:-2px 2px 5px rgba(0,0,0,.4)}.rtl.auto-fold #collapse-button div{background-position:0 -72px}}.js.rtl .meta-box-sortables .postbox:hover .handlediv{background:transparent url(../images/arrows.png) no-repeat 6px 7px}.rtl #post-body .misc-pub-section{border-right-color:transparent;border-left-color:#eee}.js.rtl .sidebar-name-arrow{background:transparent url(../images/arrows.png) no-repeat 5px 9px}.js.rtl .sidebar-name:hover .sidebar-name-arrow{background:transparent url(../images/arrows-dark.png) no-repeat 5px 9px}@media print,(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.curtime #timestamp{background-image:url(../images/date-button-2x.gif?ver=20120916);background-size:16px auto}.tagchecklist span a,#bulk-titles div a,.tagchecklist span a:hover,#bulk-titles div a:hover{background-image:url(../images/xit-2x.gif?ver=20120916);background-size:20px auto}#screen-meta-links a.show-settings,#screen-meta-links a.show-settings.screen-meta-active,#adminmenu .wp-has-submenu:hover .wp-menu-toggle,#adminmenu .wp-menu-open .wp-menu-toggle,#collapse-button div,.nav-menus-php .item-edit,.js .meta-box-sortables .postbox:hover .handlediv,.sidebar-name-arrow,.rtl #adminmenu .wp-has-submenu:hover .wp-menu-toggle,.rtl #adminmenu .wp-menu-open .wp-menu-toggle,.js.rtl .meta-box-sortables .postbox:hover .handlediv,.rtl .sidebar-name-arrow{background-image:url(../images/arrows-2x.png?ver=20120916);background-size:15px 123px}#adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,#adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle,.sidebar-name:hover .sidebar-name-arrow,.nav-menus-php .item-edit:hover,.rtl #adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,.rtl #adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle,.rtl .sidebar-name:hover .sidebar-name-arrow{background-image:url(../images/arrows-dark-2x.png?ver=20120916);background-size:15px 123px}.view-switch #view-switch-list,.view-switch #view-switch-excerpt{background-image:url(../images/list-2x.png?ver=20120916);background-size:80px 20px}.icon32.icon-post,#icon-edit,#icon-post,.icon32.icon-dashboard,#icon-index,.icon32.icon-media,#icon-upload,.icon32.icon-links,#icon-link-manager,#icon-link,#icon-link-category,.icon32.icon-page,#icon-edit-pages,#icon-page,.icon32.icon-comments,#icon-edit-comments,.icon32.icon-appearance,#icon-themes,.icon32.icon-plugins,#icon-plugins,.icon32.icon-users,#icon-users,#icon-profile,#icon-user-edit,.icon32.icon-tools,#icon-tools,#icon-admin,.icon32.icon-settings,#icon-options-general,.icon32.icon-site,#icon-ms-admin,.icon32.icon-generic,#icon-generic{background-image:url(../images/icons32-2x.png?ver=20121105);background-size:756px 45px}.icon16.icon-dashboard,.menu-icon-dashboard div.wp-menu-image,.icon16.icon-post,.menu-icon-post div.wp-menu-image,.icon16.icon-media,.menu-icon-media div.wp-menu-image,.icon16.icon-links,.menu-icon-links div.wp-menu-image,.icon16.icon-page,.menu-icon-page div.wp-menu-image,.icon16.icon-comments,.menu-icon-comments div.wp-menu-image,.icon16.icon-appearance,.menu-icon-appearance div.wp-menu-image,.icon16.icon-plugins,.menu-icon-plugins div.wp-menu-image,.icon16.icon-users,.menu-icon-users div.wp-menu-image,.icon16.icon-tools,.menu-icon-tools div.wp-menu-image,.icon16.icon-settings,.menu-icon-settings div.wp-menu-image,.icon16.icon-site,.menu-icon-site div.wp-menu-image,.icon16.icon-generic,.menu-icon-generic div.wp-menu-image{background-image:url(../images/menu-2x.png?ver=20121105);background-size:390px 64px}#header-logo{background-image:url(../images/wp-logo-2x.png?ver=20120916);background-size:16px auto}.post-format-icon{background-image:url(../images/post-formats32.png);background-size:16px 304px}}
\ No newline at end of file
diff --git a/sources/wp-admin/css/colors/_admin.scss b/sources/wp-admin/css/colors/_admin.scss
new file mode 100644
index 0000000..2ce8004
--- /dev/null
+++ b/sources/wp-admin/css/colors/_admin.scss
@@ -0,0 +1,515 @@
+
+@import 'variables';
+@import 'mixins';
+
+
+html {
+ background: $body-background;
+}
+
+
+/* Links */
+
+a {
+ color: $link;
+
+ &:hover,
+ &:active,
+ &:focus {
+ color: $link-focus;
+ }
+}
+
+#media-upload a.del-link:hover,
+div.dashboard-widget-submit input:hover,
+.subsubsub a:hover,
+.subsubsub a.current:hover {
+ color: $link-focus;
+}
+
+
+/* Forms */
+
+input[type=checkbox]:checked:before {
+ color: $form-checked;
+}
+
+input[type=radio]:checked:before {
+ background: $form-checked;
+}
+
+.wp-core-ui input[type="reset"]:hover,
+.wp-core-ui input[type="reset"]:active {
+ color: $link-focus;
+}
+
+
+/* Core UI */
+
+.wp-core-ui {
+ .button-primary {
+ @include button( $button-color );
+ }
+
+ .wp-ui-primary {
+ color: $text-color;
+ background-color: $base-color;
+ }
+ .wp-ui-text-primary {
+ color: $base-color;
+ }
+
+ .wp-ui-highlight {
+ color: $menu-highlight-text;
+ background-color: $menu-highlight-background;
+ }
+ .wp-ui-text-highlight {
+ color: $menu-highlight-background;
+ }
+
+ .wp-ui-notification {
+ color: $menu-bubble-text;
+ background-color: $menu-bubble-background;
+ }
+ .wp-ui-text-notification {
+ color: $menu-bubble-background;
+ }
+
+ .wp-ui-text-icon {
+ color: $menu-icon;
+ }
+}
+
+
+/* List tables */
+
+.wrap .add-new-h2:hover,
+#add-new-comment a:hover,
+.tablenav .tablenav-pages a:hover,
+.tablenav .tablenav-pages a:focus {
+ color: $menu-text;
+ background-color: $menu-background;
+}
+
+.view-switch a.current:before {
+ color: $menu-background;
+}
+
+.view-switch a:hover:before {
+ color: $menu-bubble-background;
+}
+
+.post-com-count:hover:after {
+ border-top-color: $menu-background;
+}
+.post-com-count:hover span {
+ color: $menu-text;
+ background-color: $menu-background;
+}
+
+strong .post-com-count:after {
+ border-top-color: $menu-bubble-background;
+}
+strong .post-com-count span {
+ background-color: $menu-bubble-background;
+}
+
+
+/* Admin Menu */
+
+#adminmenuback,
+#adminmenuwrap,
+#adminmenu {
+ background: $menu-background;
+}
+
+#adminmenu a {
+ color: $menu-text;
+}
+
+#adminmenu div.wp-menu-image:before {
+ color: $menu-icon;
+}
+
+#adminmenu a:hover,
+#adminmenu li.menu-top:hover,
+#adminmenu li.opensub > a.menu-top,
+#adminmenu li > a.menu-top:focus {
+ color: $menu-highlight-text;
+ background-color: $menu-highlight-background;
+}
+
+#adminmenu li.menu-top:hover div.wp-menu-image:before,
+#adminmenu li.opensub > a.menu-top div.wp-menu-image:before {
+ color: $menu-highlight-icon;
+}
+
+
+/* Active tabs use a bottom border color that matches the page background color. */
+
+.about-wrap h2 .nav-tab-active,
+.nav-tab-active,
+.nav-tab-active:hover {
+ background-color: $body-background;
+ border-bottom-color: $body-background;
+}
+
+
+/* Admin Menu: submenu */
+
+#adminmenu .wp-submenu,
+#adminmenu .wp-has-current-submenu .wp-submenu,
+#adminmenu .wp-has-current-submenu.opensub .wp-submenu,
+.folded #adminmenu .wp-has-current-submenu .wp-submenu,
+#adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
+ background: $menu-submenu-background;
+}
+
+#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
+ border-right-color: $menu-submenu-background;
+}
+
+#adminmenu .wp-submenu .wp-submenu-head {
+ color: $menu-submenu-text;
+}
+
+#adminmenu .wp-submenu a,
+#adminmenu .wp-has-current-submenu .wp-submenu a,
+.folded #adminmenu .wp-has-current-submenu .wp-submenu a,
+#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
+#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
+ color: $menu-submenu-text;
+
+ &:focus, &:hover {
+ color: $menu-submenu-focus-text;
+ }
+}
+
+
+/* Admin Menu: current */
+
+#adminmenu .wp-submenu li.current a,
+#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a,
+#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a {
+ color: $menu-submenu-current-text;
+
+ &:hover, &:focus {
+ color: $menu-submenu-focus-text;
+ }
+}
+
+ul#adminmenu a.wp-has-current-submenu:after,
+ul#adminmenu > li.current > a.current:after {
+ border-right-color: $body-background;
+}
+
+#adminmenu li.current a.menu-top,
+#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
+#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,
+.folded #adminmenu li.current.menu-top {
+ color: $menu-current-text;
+ background: $menu-current-background;
+}
+
+#adminmenu li.wp-has-current-submenu div.wp-menu-image:before {
+ color: $menu-current-icon;
+}
+
+
+/* Admin Menu: bubble */
+
+#adminmenu .awaiting-mod,
+#adminmenu .update-plugins {
+ color: $menu-bubble-text;
+ background: $menu-bubble-background;
+}
+
+#adminmenu li.current a .awaiting-mod,
+#adminmenu li a.wp-has-current-submenu .update-plugins,
+#adminmenu li:hover a .awaiting-mod,
+#adminmenu li.menu-top:hover > a .update-plugins {
+ color: $menu-bubble-current-text;
+ background: $menu-bubble-current-background;
+}
+
+
+/* Admin Menu: collapse button */
+
+#collapse-menu {
+ color: $menu-collapse-text;
+}
+
+#collapse-menu:hover {
+ color: $menu-collapse-focus-text;
+}
+
+#collapse-button div:after {
+ color: $menu-collapse-icon;
+}
+
+#collapse-menu:hover #collapse-button div:after {
+ color: $menu-collapse-focus-icon;
+}
+
+
+/* Admin Bar */
+
+#wpadminbar {
+ color: $menu-text;
+ background: $menu-background;
+}
+
+#wpadminbar .ab-item,
+#wpadminbar a.ab-item,
+#wpadminbar > #wp-toolbar span.ab-label,
+#wpadminbar > #wp-toolbar span.noticon {
+ color: $menu-text;
+}
+
+#wpadminbar .ab-icon,
+#wpadminbar .ab-icon:before,
+#wpadminbar .ab-item:before,
+#wpadminbar .ab-item:after {
+ color: $menu-icon;
+}
+
+#wpadminbar .ab-top-menu > li:hover > .ab-item,
+#wpadminbar .ab-top-menu > li.hover > .ab-item,
+#wpadminbar .ab-top-menu > li > .ab-item:focus,
+#wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus,
+#wpadminbar-nojs .ab-top-menu > li.menupop:hover > .ab-item,
+#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
+ color: $menu-submenu-focus-text;
+ background: $menu-submenu-background;
+}
+
+#wpadminbar > #wp-toolbar li:hover span.ab-label,
+#wpadminbar > #wp-toolbar li.hover span.ab-label,
+#wpadminbar > #wp-toolbar a:focus span.ab-label {
+ color: $menu-submenu-focus-text;
+}
+
+#wpadminbar li:hover .ab-icon:before,
+#wpadminbar li:hover .ab-item:before,
+#wpadminbar li:hover .ab-item:after,
+#wpadminbar li:hover #adminbarsearch:before {
+ color: $menu-highlight-icon;
+}
+
+
+/* Admin Bar: submenu */
+
+#wpadminbar .menupop .ab-sub-wrapper {
+ background: $menu-submenu-background;
+}
+
+#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,
+#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
+ background: $menu-submenu-background-alt;
+}
+
+#wpadminbar .ab-submenu .ab-item,
+#wpadminbar .quicklinks .menupop ul li a,
+#wpadminbar .quicklinks .menupop.hover ul li a,
+#wpadminbar-nojs .quicklinks .menupop:hover ul li a {
+ color: $menu-submenu-text;
+}
+
+#wpadminbar .quicklinks li .blavatar,
+#wpadminbar .menupop .menupop > .ab-item:before {
+ color: $menu-icon;
+}
+
+#wpadminbar .quicklinks .menupop ul li a:hover,
+#wpadminbar .quicklinks .menupop ul li a:focus,
+#wpadminbar .quicklinks .menupop ul li a:hover strong,
+#wpadminbar .quicklinks .menupop ul li a:focus strong,
+#wpadminbar .quicklinks .menupop.hover ul li a:hover,
+#wpadminbar .quicklinks .menupop.hover ul li a:focus,
+#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover,
+#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,
+#wpadminbar li:hover .ab-icon:before,
+#wpadminbar li:hover .ab-item:before,
+#wpadminbar li a:focus .ab-icon:before,
+#wpadminbar li .ab-item:focus:before,
+#wpadminbar li.hover .ab-icon:before,
+#wpadminbar li.hover .ab-item:before,
+#wpadminbar li:hover .ab-item:after,
+#wpadminbar li.hover .ab-item:after,
+#wpadminbar li:hover #adminbarsearch:before {
+ color: $menu-submenu-focus-text;
+}
+
+#wpadminbar .quicklinks li a:hover .blavatar,
+#wpadminbar .menupop .menupop > .ab-item:hover:before {
+ color: $menu-submenu-focus-text;
+}
+
+
+/* Admin Bar: search */
+
+#wpadminbar #adminbarsearch:before {
+ color: $menu-icon;
+}
+
+#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
+ color: $menu-text;
+ background: $adminbar-input-background;
+}
+
+#wpadminbar #adminbarsearch .adminbar-input::-webkit-input-placeholder { color: $menu-text; opacity: .7; }
+#wpadminbar #adminbarsearch .adminbar-input:-moz-placeholder { color: $menu-text; opacity: .7; }
+#wpadminbar #adminbarsearch .adminbar-input::-moz-placeholder { color: $menu-text; opacity: .7; }
+#wpadminbar #adminbarsearch .adminbar-input:-ms-input-placeholder { color: $menu-text; opacity: .7; }
+
+
+/* Admin Bar: my account */
+
+#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
+ border-color: $adminbar-avatar-frame;
+ background-color: $adminbar-avatar-frame;
+}
+
+#wpadminbar #wp-admin-bar-user-info .display-name {
+ color: $menu-text;
+}
+
+#wpadminbar #wp-admin-bar-user-info a:hover .display-name {
+ color: $menu-submenu-focus-text;
+}
+
+#wpadminbar #wp-admin-bar-user-info .username {
+ color: $menu-submenu-text;
+}
+
+
+/* Pointers */
+
+.wp-pointer .wp-pointer-content h3 {
+ background-color: $highlight-color;
+ border-color: darken( $highlight-color, 5% );
+}
+
+.wp-pointer .wp-pointer-content h3:before {
+ color: $highlight-color;
+}
+
+.wp-pointer.wp-pointer-top .wp-pointer-arrow,
+.wp-pointer.wp-pointer-undefined .wp-pointer-arrow {
+ border-bottom-color: $highlight-color;
+}
+
+
+/* Media Uploader */
+
+.media-item .bar,
+.media-progress-bar div {
+ background-color: $highlight-color;
+}
+
+.details.attachment {
+ box-shadow: 0 0 0 1px #fff, 0 0 0 5px $highlight-color;
+}
+
+.attachment.details .check {
+ background-color: $highlight-color;
+ box-shadow: 0 0 0 1px #fff, 0 0 0 2px $highlight-color;
+}
+
+
+/* Themes */
+
+.theme-browser .theme.active .theme-name,
+.theme-browser .theme.add-new-theme:hover:after {
+ background: $highlight-color;
+}
+
+.theme-browser .theme.add-new-theme:hover span:after {
+ color: $highlight-color;
+}
+
+.theme-overlay .theme-header .close:hover,
+.theme-overlay .theme-header .right:hover,
+.theme-overlay .theme-header .left:hover {
+ background: $highlight-color;
+}
+
+.theme-section.current,
+.theme-filter.current {
+ border-bottom-color: $menu-background;
+}
+
+body.more-filters-opened .more-filters,
+body.more-filters-opened .more-filters:before {
+ color: $menu-text;
+ background-color: $menu-background;
+}
+
+body.more-filters-opened .more-filters:hover,
+body.more-filters-opened .more-filters:focus,
+body.more-filters-opened .more-filters:hover:before,
+body.more-filters-opened .more-filters:focus:before {
+ background-color: $menu-highlight-background;
+ color: $menu-highlight-text;
+}
+
+/* Widgets */
+
+.widgets-chooser li.widgets-chooser-selected {
+ background-color: $menu-highlight-background;
+ color: $menu-highlight-text;
+}
+
+.widgets-chooser li.widgets-chooser-selected:before,
+.widgets-chooser li.widgets-chooser-selected:focus:before {
+ color: $menu-highlight-text;
+}
+
+/* Customize */
+
+#customize-theme-controls .widget-area-select .selected {
+ background-color: $menu-highlight-background;
+ color: $menu-highlight-text;
+}
+
+
+/* jQuery UI Slider */
+
+.wp-slider .ui-slider-handle,
+.wp-slider .ui-slider-handle.ui-state-hover,
+.wp-slider .ui-slider-handle.focus {
+ background: $button-color;
+ border-color: darken( $button-color, 10% );
+ box-shadow: inset 0 1px 0 lighten( $button-color, 15% ), 0 1px 0 rgba(0,0,0,.15);
+}
+
+/* Thickbox: Plugin information */
+
+#sidemenu a.current {
+ background: $body-background;
+ border-bottom-color: $body-background;
+}
+
+#plugin-information .action-button {
+ background: $button-color;
+}
+
+/* Responsive Component */
+
+div#wp-responsive-toggle a:before {
+ color: $menu-icon;
+}
+
+.wp-responsive-open div#wp-responsive-toggle a {
+ // ToDo: make inset border
+ border-color: transparent;
+ background: $menu-highlight-background;
+}
+
+.star-rating .star {
+ color: $highlight-color;
+}
+
+.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
+ background: $menu-submenu-background;
+}
diff --git a/sources/wp-admin/css/colors/_mixins.scss b/sources/wp-admin/css/colors/_mixins.scss
new file mode 100644
index 0000000..14db8a5
--- /dev/null
+++ b/sources/wp-admin/css/colors/_mixins.scss
@@ -0,0 +1,35 @@
+/*
+ * Button mixin- creates 3d-ish button effect with correct
+ * highlights/shadows, based on a base color.
+ */
+@mixin button( $button-color, $text-color: white ) {
+ background: $button-color;
+ border-color: darken( $button-color, 10% );
+ color: $text-color;
+ box-shadow: inset 0 1px 0 lighten( $button-color, 15% ), 0 1px 0 rgba(0,0,0,.15);
+
+ &:hover,
+ &:focus {
+ background: darken( $button-color, 5% );
+ border-color: darken( $button-color, 15% );
+ color: $text-color;
+ box-shadow: inset 0 1px 0 lighten( $button-color, 10% ), 0 1px 0 rgba(0,0,0,.15);
+ }
+
+ &:active {
+ background: darken( $button-color, 10% );
+ border-color: darken( $button-color, 15% );
+ color: $text-color;
+ box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
+ }
+
+ &[disabled],
+ &:disabled,
+ &.button-primary-disabled,
+ &.disabled {
+ color: hsl( hue( $button-color ), 10%, 80% ) !important;
+ background: darken( $button-color, 8% ) !important;
+ border-color: darken( $button-color, 15% ) !important;
+ text-shadow: none !important;
+ }
+}
diff --git a/sources/wp-admin/css/colors/_variables.scss b/sources/wp-admin/css/colors/_variables.scss
new file mode 100644
index 0000000..05e46ba
--- /dev/null
+++ b/sources/wp-admin/css/colors/_variables.scss
@@ -0,0 +1,58 @@
+// assign default value to all undefined variables
+
+
+// core variables
+
+$text-color: #fff !default;
+$base-color: #222 !default;
+$icon-color: hsl( hue( $base-color ), 7%, 95% ) !default;
+$highlight-color: #0074a2 !default;
+$notification-color: #d54e21 !default;
+
+
+// global
+
+$body-background: #f1f1f1 !default;
+
+$link: #0074a2 !default;
+$link-focus: lighten( $link, 10% ) !default;
+
+$button-color: $highlight-color !default;
+$form-checked: $highlight-color !default;
+
+
+// admin menu & admin-bar
+
+$menu-text: $text-color !default;
+$menu-icon: $icon-color !default;
+$menu-background: $base-color !default;
+
+$menu-highlight-text: $text-color !default;
+$menu-highlight-icon: $text-color !default;
+$menu-highlight-background: $highlight-color !default;
+
+$menu-current-text: $menu-highlight-text !default;
+$menu-current-icon: $menu-highlight-icon !default;
+$menu-current-background: $menu-highlight-background !default;
+
+$menu-submenu-text: mix( $base-color, $text-color, 30% ) !default;
+$menu-submenu-background: darken( $base-color, 7% ) !default;
+$menu-submenu-background-alt: desaturate( lighten( $menu-background, 7% ), 7% ) !default;
+
+$menu-submenu-focus-text: $highlight-color !default;
+$menu-submenu-current-text: $text-color !default;
+
+$menu-bubble-text: $text-color !default;
+$menu-bubble-background: $notification-color !default;
+$menu-bubble-current-text: $text-color !default;
+$menu-bubble-current-background: $menu-submenu-background !default;
+
+$menu-collapse-text: $menu-icon !default;
+$menu-collapse-icon: $menu-icon !default;
+$menu-collapse-focus-text: $text-color !default;
+$menu-collapse-focus-icon: $menu-highlight-icon !default;
+
+$adminbar-avatar-frame: lighten( $menu-background, 7% ) !default;
+$adminbar-input-background: lighten( $menu-background, 7% ) !default;
+
+$menu-customizer-text: mix( $base-color, $text-color, 40% ) !default;
diff --git a/sources/wp-admin/css/colors/blue/colors-rtl.css b/sources/wp-admin/css/colors/blue/colors-rtl.css
new file mode 100644
index 0000000..515f2b1
--- /dev/null
+++ b/sources/wp-admin/css/colors/blue/colors-rtl.css
@@ -0,0 +1,331 @@
+/*
+ * Button mixin- creates 3d-ish button effect with correct
+ * highlights/shadows, based on a base color.
+ */
+html {
+ background: #f1f1f1; }
+
+/* Links */
+a {
+ color: #0074a2; }
+ a:hover, a:active, a:focus {
+ color: #0099d5; }
+
+#media-upload a.del-link:hover, div.dashboard-widget-submit input:hover, .subsubsub a:hover, .subsubsub a.current:hover {
+ color: #0099d5; }
+
+/* Forms */
+input[type=checkbox]:checked:before {
+ color: #096484; }
+
+input[type=radio]:checked:before {
+ background: #096484; }
+
+.wp-core-ui input[type="reset"]:hover, .wp-core-ui input[type="reset"]:active {
+ color: #0099d5; }
+
+/* Core UI */
+.wp-core-ui .button-primary {
+ background: #e1a948;
+ border-color: #d39323;
+ color: white;
+ -webkit-box-shadow: inset 0 1px 0 #ecc88a, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #ecc88a, 0 1px 0 rgba(0, 0, 0, 0.15); }
+ .wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
+ background: #dd9f32;
+ border-color: #bd831f;
+ color: white;
+ -webkit-box-shadow: inset 0 1px 0 #e8be74, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #e8be74, 0 1px 0 rgba(0, 0, 0, 0.15); }
+ .wp-core-ui .button-primary:active {
+ background: #d39323;
+ border-color: #bd831f;
+ color: white;
+ -webkit-box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
+ box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5); }
+ .wp-core-ui .button-primary[disabled], .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary.button-primary-disabled, .wp-core-ui .button-primary.disabled {
+ color: #d1cdc7 !important;
+ background: #db9825 !important;
+ border-color: #bd831f !important;
+ text-shadow: none !important; }
+.wp-core-ui .wp-ui-primary {
+ color: #fff;
+ background-color: #52accc; }
+.wp-core-ui .wp-ui-text-primary {
+ color: #52accc; }
+.wp-core-ui .wp-ui-highlight {
+ color: #fff;
+ background-color: #096484; }
+.wp-core-ui .wp-ui-text-highlight {
+ color: #096484; }
+.wp-core-ui .wp-ui-notification {
+ color: #fff;
+ background-color: #e1a948; }
+.wp-core-ui .wp-ui-text-notification {
+ color: #e1a948; }
+.wp-core-ui .wp-ui-text-icon {
+ color: #e5f8ff; }
+
+/* List tables */
+.wrap .add-new-h2:hover, #add-new-comment a:hover, .tablenav .tablenav-pages a:hover, .tablenav .tablenav-pages a:focus {
+ color: #fff;
+ background-color: #52accc; }
+
+.view-switch a.current:before {
+ color: #52accc; }
+
+.view-switch a:hover:before {
+ color: #e1a948; }
+
+.post-com-count:hover:after {
+ border-top-color: #52accc; }
+
+.post-com-count:hover span {
+ color: #fff;
+ background-color: #52accc; }
+
+strong .post-com-count:after {
+ border-top-color: #e1a948; }
+
+strong .post-com-count span {
+ background-color: #e1a948; }
+
+/* Admin Menu */
+#adminmenuback, #adminmenuwrap, #adminmenu {
+ background: #52accc; }
+
+#adminmenu a {
+ color: #fff; }
+
+#adminmenu div.wp-menu-image:before {
+ color: #e5f8ff; }
+
+#adminmenu a:hover, #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus {
+ color: #fff;
+ background-color: #096484; }
+
+#adminmenu li.menu-top:hover div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top div.wp-menu-image:before {
+ color: #fff; }
+
+/* Active tabs use a bottom border color that matches the page background color. */
+.about-wrap h2 .nav-tab-active, .nav-tab-active, .nav-tab-active:hover {
+ background-color: #f1f1f1;
+ border-bottom-color: #f1f1f1; }
+
+/* Admin Menu: submenu */
+#adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, .folded #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
+ background: #4796b3; }
+
+#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
+ border-left-color: #4796b3; }
+
+#adminmenu .wp-submenu .wp-submenu-head {
+ color: #e2ecf1; }
+
+#adminmenu .wp-submenu a, #adminmenu .wp-has-current-submenu .wp-submenu a, .folded #adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
+ color: #e2ecf1; }
+ #adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-has-current-submenu .wp-submenu a:focus, #adminmenu .wp-has-current-submenu .wp-submenu a:hover, .folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus, .folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover {
+ color: #fff; }
+
+/* Admin Menu: current */
+#adminmenu .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a {
+ color: #fff; }
+ #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus {
+ color: #fff; }
+
+ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after {
+ border-left-color: #f1f1f1; }
+
+#adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu li.current.menu-top {
+ color: #fff;
+ background: #096484; }
+
+#adminmenu li.wp-has-current-submenu div.wp-menu-image:before {
+ color: #fff; }
+
+/* Admin Menu: bubble */
+#adminmenu .awaiting-mod, #adminmenu .update-plugins {
+ color: #fff;
+ background: #e1a948; }
+
+#adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins, #adminmenu li:hover a .awaiting-mod, #adminmenu li.menu-top:hover > a .update-plugins {
+ color: #fff;
+ background: #4796b3; }
+
+/* Admin Menu: collapse button */
+#collapse-menu {
+ color: #e5f8ff; }
+
+#collapse-menu:hover {
+ color: #fff; }
+
+#collapse-button div:after {
+ color: #e5f8ff; }
+
+#collapse-menu:hover #collapse-button div:after {
+ color: #fff; }
+
+/* Admin Bar */
+#wpadminbar {
+ color: #fff;
+ background: #52accc; }
+
+#wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon {
+ color: #fff; }
+
+#wpadminbar .ab-icon, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar .ab-item:after {
+ color: #e5f8ff; }
+
+#wpadminbar .ab-top-menu > li:hover > .ab-item, #wpadminbar .ab-top-menu > li.hover > .ab-item, #wpadminbar .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar-nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
+ color: #fff;
+ background: #4796b3; }
+
+#wpadminbar > #wp-toolbar li:hover span.ab-label, #wpadminbar > #wp-toolbar li.hover span.ab-label, #wpadminbar > #wp-toolbar a:focus span.ab-label {
+ color: #fff; }
+
+#wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li:hover .ab-item:after, #wpadminbar li:hover #adminbarsearch:before {
+ color: #fff; }
+
+/* Admin Bar: submenu */
+#wpadminbar .menupop .ab-sub-wrapper {
+ background: #4796b3; }
+
+#wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
+ background: #74b7ce; }
+
+#wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar-nojs .quicklinks .menupop:hover ul li a {
+ color: #e2ecf1; }
+
+#wpadminbar .quicklinks li .blavatar, #wpadminbar .menupop .menupop > .ab-item:before {
+ color: #e5f8ff; }
+
+#wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li .ab-item:focus:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover .ab-item:after, #wpadminbar li.hover .ab-item:after, #wpadminbar li:hover #adminbarsearch:before {
+ color: #fff; }
+
+#wpadminbar .quicklinks li a:hover .blavatar, #wpadminbar .menupop .menupop > .ab-item:hover:before {
+ color: #fff; }
+
+/* Admin Bar: search */
+#wpadminbar #adminbarsearch:before {
+ color: #e5f8ff; }
+
+#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
+ color: #fff;
+ background: #6ebad4; }
+
+#wpadminbar #adminbarsearch .adminbar-input::-webkit-input-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input:-moz-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input::-moz-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input:-ms-input-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+/* Admin Bar: my account */
+#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
+ border-color: #6ebad4;
+ background-color: #6ebad4; }
+
+#wpadminbar #wp-admin-bar-user-info .display-name {
+ color: #fff; }
+
+#wpadminbar #wp-admin-bar-user-info a:hover .display-name {
+ color: #fff; }
+
+#wpadminbar #wp-admin-bar-user-info .username {
+ color: #e2ecf1; }
+
+/* Pointers */
+.wp-pointer .wp-pointer-content h3 {
+ background-color: #096484;
+ border-color: #07536c; }
+
+.wp-pointer .wp-pointer-content h3:before {
+ color: #096484; }
+
+.wp-pointer.wp-pointer-top .wp-pointer-arrow, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow {
+ border-bottom-color: #096484; }
+
+/* Media Uploader */
+.media-item .bar, .media-progress-bar div {
+ background-color: #096484; }
+
+.details.attachment {
+ -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 5px #096484;
+ box-shadow: 0 0 0 1px #fff, 0 0 0 5px #096484; }
+
+.attachment.details .check {
+ background-color: #096484;
+ -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 2px #096484;
+ box-shadow: 0 0 0 1px #fff, 0 0 0 2px #096484; }
+
+/* Themes */
+.theme-browser .theme.active .theme-name, .theme-browser .theme.add-new-theme:hover:after {
+ background: #096484; }
+
+.theme-browser .theme.add-new-theme:hover span:after {
+ color: #096484; }
+
+.theme-overlay .theme-header .close:hover, .theme-overlay .theme-header .right:hover, .theme-overlay .theme-header .left:hover {
+ background: #096484; }
+
+.theme-section.current, .theme-filter.current {
+ border-bottom-color: #52accc; }
+
+body.more-filters-opened .more-filters, body.more-filters-opened .more-filters:before {
+ color: #fff;
+ background-color: #52accc; }
+
+body.more-filters-opened .more-filters:hover, body.more-filters-opened .more-filters:focus, body.more-filters-opened .more-filters:hover:before, body.more-filters-opened .more-filters:focus:before {
+ background-color: #096484;
+ color: #fff; }
+
+/* Widgets */
+.widgets-chooser li.widgets-chooser-selected {
+ background-color: #096484;
+ color: #fff; }
+
+.widgets-chooser li.widgets-chooser-selected:before, .widgets-chooser li.widgets-chooser-selected:focus:before {
+ color: #fff; }
+
+/* Customize */
+#customize-theme-controls .widget-area-select .selected {
+ background-color: #096484;
+ color: #fff; }
+
+/* jQuery UI Slider */
+.wp-slider .ui-slider-handle, .wp-slider .ui-slider-handle.ui-state-hover, .wp-slider .ui-slider-handle.focus {
+ background: #e1a948;
+ border-color: #d39323;
+ -webkit-box-shadow: inset 0 1px 0 #ecc88a, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #ecc88a, 0 1px 0 rgba(0, 0, 0, 0.15); }
+
+/* Thickbox: Plugin information */
+#sidemenu a.current {
+ background: #f1f1f1;
+ border-bottom-color: #f1f1f1; }
+
+#plugin-information .action-button {
+ background: #e1a948; }
+
+/* Responsive Component */
+div#wp-responsive-toggle a:before {
+ color: #e5f8ff; }
+
+.wp-responsive-open div#wp-responsive-toggle a {
+ border-color: transparent;
+ background: #096484; }
+
+.star-rating .star {
+ color: #096484; }
+
+.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
+ background: #4796b3; }
diff --git a/sources/wp-admin/css/colors/blue/colors-rtl.min.css b/sources/wp-admin/css/colors/blue/colors-rtl.min.css
new file mode 100644
index 0000000..ca69e71
--- /dev/null
+++ b/sources/wp-admin/css/colors/blue/colors-rtl.min.css
@@ -0,0 +1 @@
+html{background:#f1f1f1}a{color:#0074a2}#media-upload a.del-link:hover,.subsubsub a.current:hover,.subsubsub a:hover,a:active,a:focus,a:hover,div.dashboard-widget-submit input:hover{color:#0099d5}input[type=checkbox]:checked:before{color:#096484}input[type=radio]:checked:before{background:#096484}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:#0099d5}.wp-core-ui .button-primary{background:#e1a948;border-color:#d39323;color:#fff;-webkit-box-shadow:inset 0 1px 0 #ecc88a,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #ecc88a,0 1px 0 rgba(0,0,0,.15)}.wp-core-ui .button-primary:focus,.wp-core-ui .button-primary:hover{background:#dd9f32;border-color:#bd831f;color:#fff;-webkit-box-shadow:inset 0 1px 0 #e8be74,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #e8be74,0 1px 0 rgba(0,0,0,.15)}.wp-core-ui .button-primary:active{background:#d39323;border-color:#bd831f;color:#fff;-webkit-box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5);box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5)}.wp-core-ui .button-primary.button-primary-disabled,.wp-core-ui .button-primary.disabled,.wp-core-ui .button-primary:disabled,.wp-core-ui .button-primary[disabled]{color:#d1cdc7!important;background:#db9825!important;border-color:#bd831f!important;text-shadow:none!important}.wp-core-ui .wp-ui-primary{color:#fff;background-color:#52accc}.wp-core-ui .wp-ui-text-primary{color:#52accc}.wp-core-ui .wp-ui-highlight{color:#fff;background-color:#096484}.wp-core-ui .wp-ui-text-highlight{color:#096484}.wp-core-ui .wp-ui-notification{color:#fff;background-color:#e1a948}.wp-core-ui .wp-ui-text-notification{color:#e1a948}.wp-core-ui .wp-ui-text-icon{color:#e5f8ff}#add-new-comment a:hover,.tablenav .tablenav-pages a:focus,.tablenav .tablenav-pages a:hover,.wrap .add-new-h2:hover{color:#fff;background-color:#52accc}.view-switch a.current:before{color:#52accc}.view-switch a:hover:before{color:#e1a948}.post-com-count:hover:after{border-top-color:#52accc}.post-com-count:hover span{color:#fff;background-color:#52accc}strong .post-com-count:after{border-top-color:#e1a948}strong .post-com-count span{background-color:#e1a948}#adminmenu,#adminmenuback,#adminmenuwrap{background:#52accc}#adminmenu a{color:#fff}#adminmenu div.wp-menu-image:before{color:#e5f8ff}#adminmenu a:hover,#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{color:#fff;background-color:#096484}#adminmenu li.menu-top:hover div.wp-menu-image:before,#adminmenu li.opensub>a.menu-top div.wp-menu-image:before{color:#fff}.about-wrap h2 .nav-tab-active,.nav-tab-active,.nav-tab-active:hover{background-color:#f1f1f1;border-bottom-color:#f1f1f1}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,#adminmenu .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu{background:#4796b3}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after{border-left-color:#4796b3}#adminmenu .wp-has-current-submenu .wp-submenu a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a,#adminmenu .wp-submenu .wp-submenu-head,#adminmenu .wp-submenu a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a,.folded #adminmenu .wp-has-current-submenu .wp-submenu a{color:#e2ecf1}#adminmenu .wp-has-current-submenu .wp-submenu a:focus,#adminmenu .wp-has-current-submenu .wp-submenu a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu .wp-submenu li.current a,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:hover,.folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus,.folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover{color:#fff}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{border-left-color:#f1f1f1}#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{color:#fff;background:#096484}#adminmenu li.wp-has-current-submenu div.wp-menu-image:before{color:#fff}#adminmenu .awaiting-mod,#adminmenu .update-plugins{color:#fff;background:#e1a948}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod,#adminmenu li.menu-top:hover>a .update-plugins,#adminmenu li:hover a .awaiting-mod{color:#fff;background:#4796b3}#collapse-menu{color:#e5f8ff}#collapse-menu:hover{color:#fff}#collapse-button div:after{color:#e5f8ff}#collapse-menu:hover #collapse-button div:after{color:#fff}#wpadminbar{color:#fff;background:#52accc}#wpadminbar .ab-item,#wpadminbar a.ab-item,#wpadminbar>#wp-toolbar span.ab-label,#wpadminbar>#wp-toolbar span.noticon{color:#fff}#wpadminbar .ab-icon,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:after,#wpadminbar .ab-item:before{color:#e5f8ff}#wpadminbar .ab-top-menu>li.hover>.ab-item,#wpadminbar .ab-top-menu>li.menupop.hover>.ab-item,#wpadminbar .ab-top-menu>li:hover>.ab-item,#wpadminbar .ab-top-menu>li>.ab-item:focus,#wpadminbar-nojs .ab-top-menu>li.menupop:hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus{color:#fff;background:#4796b3}#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:after,#wpadminbar li:hover .ab-item:before,#wpadminbar>#wp-toolbar a:focus span.ab-label,#wpadminbar>#wp-toolbar li.hover span.ab-label,#wpadminbar>#wp-toolbar li:hover span.ab-label{color:#fff}#wpadminbar .menupop .ab-sub-wrapper{background:#4796b3}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu{background:#74b7ce}#wpadminbar .ab-submenu .ab-item,#wpadminbar .quicklinks .menupop ul li a,#wpadminbar .quicklinks .menupop.hover ul li a,#wpadminbar-nojs .quicklinks .menupop:hover ul li a{color:#e2ecf1}#wpadminbar .menupop .menupop>.ab-item:before,#wpadminbar .quicklinks li .blavatar{color:#e5f8ff}#wpadminbar .menupop .menupop>.ab-item:hover:before,#wpadminbar .quicklinks .menupop ul li a:focus,#wpadminbar .quicklinks .menupop ul li a:focus strong,#wpadminbar .quicklinks .menupop ul li a:hover,#wpadminbar .quicklinks .menupop ul li a:hover strong,#wpadminbar .quicklinks .menupop.hover ul li a:focus,#wpadminbar .quicklinks .menupop.hover ul li a:hover,#wpadminbar .quicklinks li a:hover .blavatar,#wpadminbar li .ab-item:focus:before,#wpadminbar li a:focus .ab-icon:before,#wpadminbar li.hover .ab-icon:before,#wpadminbar li.hover .ab-item:after,#wpadminbar li.hover .ab-item:before,#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:after,#wpadminbar li:hover .ab-item:before,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover{color:#fff}#wpadminbar #adminbarsearch:before{color:#e5f8ff}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input:focus{color:#fff;background:#6ebad4}#wpadminbar #adminbarsearch .adminbar-input::-webkit-input-placeholder{color:#fff;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input:-moz-placeholder{color:#fff;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input::-moz-placeholder{color:#fff;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input:-ms-input-placeholder{color:#fff;opacity:.7}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{border-color:#6ebad4;background-color:#6ebad4}#wpadminbar #wp-admin-bar-user-info .display-name,#wpadminbar #wp-admin-bar-user-info a:hover .display-name{color:#fff}#wpadminbar #wp-admin-bar-user-info .username{color:#e2ecf1}.wp-pointer .wp-pointer-content h3{background-color:#096484;border-color:#07536c}.wp-pointer .wp-pointer-content h3:before{color:#096484}.wp-pointer.wp-pointer-top .wp-pointer-arrow,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow{border-bottom-color:#096484}.media-item .bar,.media-progress-bar div{background-color:#096484}.details.attachment{-webkit-box-shadow:0 0 0 1px #fff,0 0 0 5px #096484;box-shadow:0 0 0 1px #fff,0 0 0 5px #096484}.attachment.details .check{background-color:#096484;-webkit-box-shadow:0 0 0 1px #fff,0 0 0 2px #096484;box-shadow:0 0 0 1px #fff,0 0 0 2px #096484}.theme-browser .theme.active .theme-name,.theme-browser .theme.add-new-theme:hover:after{background:#096484}.theme-browser .theme.add-new-theme:hover span:after{color:#096484}.theme-overlay .theme-header .close:hover,.theme-overlay .theme-header .left:hover,.theme-overlay .theme-header .right:hover{background:#096484}.theme-filter.current,.theme-section.current{border-bottom-color:#52accc}body.more-filters-opened .more-filters,body.more-filters-opened .more-filters:before{color:#fff;background-color:#52accc}.widgets-chooser li.widgets-chooser-selected,body.more-filters-opened .more-filters:focus,body.more-filters-opened .more-filters:focus:before,body.more-filters-opened .more-filters:hover,body.more-filters-opened .more-filters:hover:before{background-color:#096484;color:#fff}.widgets-chooser li.widgets-chooser-selected:before,.widgets-chooser li.widgets-chooser-selected:focus:before{color:#fff}#customize-theme-controls .widget-area-select .selected{background-color:#096484;color:#fff}.wp-slider .ui-slider-handle,.wp-slider .ui-slider-handle.focus,.wp-slider .ui-slider-handle.ui-state-hover{background:#e1a948;border-color:#d39323;-webkit-box-shadow:inset 0 1px 0 #ecc88a,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #ecc88a,0 1px 0 rgba(0,0,0,.15)}#sidemenu a.current{background:#f1f1f1;border-bottom-color:#f1f1f1}#plugin-information .action-button{background:#e1a948}div#wp-responsive-toggle a:before{color:#e5f8ff}.wp-responsive-open div#wp-responsive-toggle a{border-color:transparent;background:#096484}.star-rating .star{color:#096484}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:#4796b3}
\ No newline at end of file
diff --git a/sources/wp-admin/css/colors/blue/colors.css b/sources/wp-admin/css/colors/blue/colors.css
new file mode 100644
index 0000000..df2877c
--- /dev/null
+++ b/sources/wp-admin/css/colors/blue/colors.css
@@ -0,0 +1,331 @@
+/*
+ * Button mixin- creates 3d-ish button effect with correct
+ * highlights/shadows, based on a base color.
+ */
+html {
+ background: #f1f1f1; }
+
+/* Links */
+a {
+ color: #0074a2; }
+ a:hover, a:active, a:focus {
+ color: #0099d5; }
+
+#media-upload a.del-link:hover, div.dashboard-widget-submit input:hover, .subsubsub a:hover, .subsubsub a.current:hover {
+ color: #0099d5; }
+
+/* Forms */
+input[type=checkbox]:checked:before {
+ color: #096484; }
+
+input[type=radio]:checked:before {
+ background: #096484; }
+
+.wp-core-ui input[type="reset"]:hover, .wp-core-ui input[type="reset"]:active {
+ color: #0099d5; }
+
+/* Core UI */
+.wp-core-ui .button-primary {
+ background: #e1a948;
+ border-color: #d39323;
+ color: white;
+ -webkit-box-shadow: inset 0 1px 0 #ecc88a, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #ecc88a, 0 1px 0 rgba(0, 0, 0, 0.15); }
+ .wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
+ background: #dd9f32;
+ border-color: #bd831f;
+ color: white;
+ -webkit-box-shadow: inset 0 1px 0 #e8be74, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #e8be74, 0 1px 0 rgba(0, 0, 0, 0.15); }
+ .wp-core-ui .button-primary:active {
+ background: #d39323;
+ border-color: #bd831f;
+ color: white;
+ -webkit-box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
+ box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5); }
+ .wp-core-ui .button-primary[disabled], .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary.button-primary-disabled, .wp-core-ui .button-primary.disabled {
+ color: #d1cdc7 !important;
+ background: #db9825 !important;
+ border-color: #bd831f !important;
+ text-shadow: none !important; }
+.wp-core-ui .wp-ui-primary {
+ color: #fff;
+ background-color: #52accc; }
+.wp-core-ui .wp-ui-text-primary {
+ color: #52accc; }
+.wp-core-ui .wp-ui-highlight {
+ color: #fff;
+ background-color: #096484; }
+.wp-core-ui .wp-ui-text-highlight {
+ color: #096484; }
+.wp-core-ui .wp-ui-notification {
+ color: #fff;
+ background-color: #e1a948; }
+.wp-core-ui .wp-ui-text-notification {
+ color: #e1a948; }
+.wp-core-ui .wp-ui-text-icon {
+ color: #e5f8ff; }
+
+/* List tables */
+.wrap .add-new-h2:hover, #add-new-comment a:hover, .tablenav .tablenav-pages a:hover, .tablenav .tablenav-pages a:focus {
+ color: #fff;
+ background-color: #52accc; }
+
+.view-switch a.current:before {
+ color: #52accc; }
+
+.view-switch a:hover:before {
+ color: #e1a948; }
+
+.post-com-count:hover:after {
+ border-top-color: #52accc; }
+
+.post-com-count:hover span {
+ color: #fff;
+ background-color: #52accc; }
+
+strong .post-com-count:after {
+ border-top-color: #e1a948; }
+
+strong .post-com-count span {
+ background-color: #e1a948; }
+
+/* Admin Menu */
+#adminmenuback, #adminmenuwrap, #adminmenu {
+ background: #52accc; }
+
+#adminmenu a {
+ color: #fff; }
+
+#adminmenu div.wp-menu-image:before {
+ color: #e5f8ff; }
+
+#adminmenu a:hover, #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus {
+ color: #fff;
+ background-color: #096484; }
+
+#adminmenu li.menu-top:hover div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top div.wp-menu-image:before {
+ color: #fff; }
+
+/* Active tabs use a bottom border color that matches the page background color. */
+.about-wrap h2 .nav-tab-active, .nav-tab-active, .nav-tab-active:hover {
+ background-color: #f1f1f1;
+ border-bottom-color: #f1f1f1; }
+
+/* Admin Menu: submenu */
+#adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, .folded #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
+ background: #4796b3; }
+
+#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
+ border-right-color: #4796b3; }
+
+#adminmenu .wp-submenu .wp-submenu-head {
+ color: #e2ecf1; }
+
+#adminmenu .wp-submenu a, #adminmenu .wp-has-current-submenu .wp-submenu a, .folded #adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
+ color: #e2ecf1; }
+ #adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-has-current-submenu .wp-submenu a:focus, #adminmenu .wp-has-current-submenu .wp-submenu a:hover, .folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus, .folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover {
+ color: #fff; }
+
+/* Admin Menu: current */
+#adminmenu .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a {
+ color: #fff; }
+ #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus {
+ color: #fff; }
+
+ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after {
+ border-right-color: #f1f1f1; }
+
+#adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu li.current.menu-top {
+ color: #fff;
+ background: #096484; }
+
+#adminmenu li.wp-has-current-submenu div.wp-menu-image:before {
+ color: #fff; }
+
+/* Admin Menu: bubble */
+#adminmenu .awaiting-mod, #adminmenu .update-plugins {
+ color: #fff;
+ background: #e1a948; }
+
+#adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins, #adminmenu li:hover a .awaiting-mod, #adminmenu li.menu-top:hover > a .update-plugins {
+ color: #fff;
+ background: #4796b3; }
+
+/* Admin Menu: collapse button */
+#collapse-menu {
+ color: #e5f8ff; }
+
+#collapse-menu:hover {
+ color: #fff; }
+
+#collapse-button div:after {
+ color: #e5f8ff; }
+
+#collapse-menu:hover #collapse-button div:after {
+ color: #fff; }
+
+/* Admin Bar */
+#wpadminbar {
+ color: #fff;
+ background: #52accc; }
+
+#wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon {
+ color: #fff; }
+
+#wpadminbar .ab-icon, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar .ab-item:after {
+ color: #e5f8ff; }
+
+#wpadminbar .ab-top-menu > li:hover > .ab-item, #wpadminbar .ab-top-menu > li.hover > .ab-item, #wpadminbar .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar-nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
+ color: #fff;
+ background: #4796b3; }
+
+#wpadminbar > #wp-toolbar li:hover span.ab-label, #wpadminbar > #wp-toolbar li.hover span.ab-label, #wpadminbar > #wp-toolbar a:focus span.ab-label {
+ color: #fff; }
+
+#wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li:hover .ab-item:after, #wpadminbar li:hover #adminbarsearch:before {
+ color: #fff; }
+
+/* Admin Bar: submenu */
+#wpadminbar .menupop .ab-sub-wrapper {
+ background: #4796b3; }
+
+#wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
+ background: #74b7ce; }
+
+#wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar-nojs .quicklinks .menupop:hover ul li a {
+ color: #e2ecf1; }
+
+#wpadminbar .quicklinks li .blavatar, #wpadminbar .menupop .menupop > .ab-item:before {
+ color: #e5f8ff; }
+
+#wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li .ab-item:focus:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover .ab-item:after, #wpadminbar li.hover .ab-item:after, #wpadminbar li:hover #adminbarsearch:before {
+ color: #fff; }
+
+#wpadminbar .quicklinks li a:hover .blavatar, #wpadminbar .menupop .menupop > .ab-item:hover:before {
+ color: #fff; }
+
+/* Admin Bar: search */
+#wpadminbar #adminbarsearch:before {
+ color: #e5f8ff; }
+
+#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
+ color: #fff;
+ background: #6ebad4; }
+
+#wpadminbar #adminbarsearch .adminbar-input::-webkit-input-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input:-moz-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input::-moz-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input:-ms-input-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+/* Admin Bar: my account */
+#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
+ border-color: #6ebad4;
+ background-color: #6ebad4; }
+
+#wpadminbar #wp-admin-bar-user-info .display-name {
+ color: #fff; }
+
+#wpadminbar #wp-admin-bar-user-info a:hover .display-name {
+ color: #fff; }
+
+#wpadminbar #wp-admin-bar-user-info .username {
+ color: #e2ecf1; }
+
+/* Pointers */
+.wp-pointer .wp-pointer-content h3 {
+ background-color: #096484;
+ border-color: #07536c; }
+
+.wp-pointer .wp-pointer-content h3:before {
+ color: #096484; }
+
+.wp-pointer.wp-pointer-top .wp-pointer-arrow, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow {
+ border-bottom-color: #096484; }
+
+/* Media Uploader */
+.media-item .bar, .media-progress-bar div {
+ background-color: #096484; }
+
+.details.attachment {
+ -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 5px #096484;
+ box-shadow: 0 0 0 1px #fff, 0 0 0 5px #096484; }
+
+.attachment.details .check {
+ background-color: #096484;
+ -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 2px #096484;
+ box-shadow: 0 0 0 1px #fff, 0 0 0 2px #096484; }
+
+/* Themes */
+.theme-browser .theme.active .theme-name, .theme-browser .theme.add-new-theme:hover:after {
+ background: #096484; }
+
+.theme-browser .theme.add-new-theme:hover span:after {
+ color: #096484; }
+
+.theme-overlay .theme-header .close:hover, .theme-overlay .theme-header .right:hover, .theme-overlay .theme-header .left:hover {
+ background: #096484; }
+
+.theme-section.current, .theme-filter.current {
+ border-bottom-color: #52accc; }
+
+body.more-filters-opened .more-filters, body.more-filters-opened .more-filters:before {
+ color: #fff;
+ background-color: #52accc; }
+
+body.more-filters-opened .more-filters:hover, body.more-filters-opened .more-filters:focus, body.more-filters-opened .more-filters:hover:before, body.more-filters-opened .more-filters:focus:before {
+ background-color: #096484;
+ color: #fff; }
+
+/* Widgets */
+.widgets-chooser li.widgets-chooser-selected {
+ background-color: #096484;
+ color: #fff; }
+
+.widgets-chooser li.widgets-chooser-selected:before, .widgets-chooser li.widgets-chooser-selected:focus:before {
+ color: #fff; }
+
+/* Customize */
+#customize-theme-controls .widget-area-select .selected {
+ background-color: #096484;
+ color: #fff; }
+
+/* jQuery UI Slider */
+.wp-slider .ui-slider-handle, .wp-slider .ui-slider-handle.ui-state-hover, .wp-slider .ui-slider-handle.focus {
+ background: #e1a948;
+ border-color: #d39323;
+ -webkit-box-shadow: inset 0 1px 0 #ecc88a, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #ecc88a, 0 1px 0 rgba(0, 0, 0, 0.15); }
+
+/* Thickbox: Plugin information */
+#sidemenu a.current {
+ background: #f1f1f1;
+ border-bottom-color: #f1f1f1; }
+
+#plugin-information .action-button {
+ background: #e1a948; }
+
+/* Responsive Component */
+div#wp-responsive-toggle a:before {
+ color: #e5f8ff; }
+
+.wp-responsive-open div#wp-responsive-toggle a {
+ border-color: transparent;
+ background: #096484; }
+
+.star-rating .star {
+ color: #096484; }
+
+.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
+ background: #4796b3; }
diff --git a/sources/wp-admin/css/colors/blue/colors.min.css b/sources/wp-admin/css/colors/blue/colors.min.css
new file mode 100644
index 0000000..6907e37
--- /dev/null
+++ b/sources/wp-admin/css/colors/blue/colors.min.css
@@ -0,0 +1 @@
+html{background:#f1f1f1}a{color:#0074a2}#media-upload a.del-link:hover,.subsubsub a.current:hover,.subsubsub a:hover,a:active,a:focus,a:hover,div.dashboard-widget-submit input:hover{color:#0099d5}input[type=checkbox]:checked:before{color:#096484}input[type=radio]:checked:before{background:#096484}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:#0099d5}.wp-core-ui .button-primary{background:#e1a948;border-color:#d39323;color:#fff;-webkit-box-shadow:inset 0 1px 0 #ecc88a,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #ecc88a,0 1px 0 rgba(0,0,0,.15)}.wp-core-ui .button-primary:focus,.wp-core-ui .button-primary:hover{background:#dd9f32;border-color:#bd831f;color:#fff;-webkit-box-shadow:inset 0 1px 0 #e8be74,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #e8be74,0 1px 0 rgba(0,0,0,.15)}.wp-core-ui .button-primary:active{background:#d39323;border-color:#bd831f;color:#fff;-webkit-box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5);box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5)}.wp-core-ui .button-primary.button-primary-disabled,.wp-core-ui .button-primary.disabled,.wp-core-ui .button-primary:disabled,.wp-core-ui .button-primary[disabled]{color:#d1cdc7!important;background:#db9825!important;border-color:#bd831f!important;text-shadow:none!important}.wp-core-ui .wp-ui-primary{color:#fff;background-color:#52accc}.wp-core-ui .wp-ui-text-primary{color:#52accc}.wp-core-ui .wp-ui-highlight{color:#fff;background-color:#096484}.wp-core-ui .wp-ui-text-highlight{color:#096484}.wp-core-ui .wp-ui-notification{color:#fff;background-color:#e1a948}.wp-core-ui .wp-ui-text-notification{color:#e1a948}.wp-core-ui .wp-ui-text-icon{color:#e5f8ff}#add-new-comment a:hover,.tablenav .tablenav-pages a:focus,.tablenav .tablenav-pages a:hover,.wrap .add-new-h2:hover{color:#fff;background-color:#52accc}.view-switch a.current:before{color:#52accc}.view-switch a:hover:before{color:#e1a948}.post-com-count:hover:after{border-top-color:#52accc}.post-com-count:hover span{color:#fff;background-color:#52accc}strong .post-com-count:after{border-top-color:#e1a948}strong .post-com-count span{background-color:#e1a948}#adminmenu,#adminmenuback,#adminmenuwrap{background:#52accc}#adminmenu a{color:#fff}#adminmenu div.wp-menu-image:before{color:#e5f8ff}#adminmenu a:hover,#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{color:#fff;background-color:#096484}#adminmenu li.menu-top:hover div.wp-menu-image:before,#adminmenu li.opensub>a.menu-top div.wp-menu-image:before{color:#fff}.about-wrap h2 .nav-tab-active,.nav-tab-active,.nav-tab-active:hover{background-color:#f1f1f1;border-bottom-color:#f1f1f1}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,#adminmenu .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu{background:#4796b3}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after{border-right-color:#4796b3}#adminmenu .wp-has-current-submenu .wp-submenu a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a,#adminmenu .wp-submenu .wp-submenu-head,#adminmenu .wp-submenu a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a,.folded #adminmenu .wp-has-current-submenu .wp-submenu a{color:#e2ecf1}#adminmenu .wp-has-current-submenu .wp-submenu a:focus,#adminmenu .wp-has-current-submenu .wp-submenu a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu .wp-submenu li.current a,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:hover,.folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus,.folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover{color:#fff}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{border-right-color:#f1f1f1}#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{color:#fff;background:#096484}#adminmenu li.wp-has-current-submenu div.wp-menu-image:before{color:#fff}#adminmenu .awaiting-mod,#adminmenu .update-plugins{color:#fff;background:#e1a948}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod,#adminmenu li.menu-top:hover>a .update-plugins,#adminmenu li:hover a .awaiting-mod{color:#fff;background:#4796b3}#collapse-menu{color:#e5f8ff}#collapse-menu:hover{color:#fff}#collapse-button div:after{color:#e5f8ff}#collapse-menu:hover #collapse-button div:after{color:#fff}#wpadminbar{color:#fff;background:#52accc}#wpadminbar .ab-item,#wpadminbar a.ab-item,#wpadminbar>#wp-toolbar span.ab-label,#wpadminbar>#wp-toolbar span.noticon{color:#fff}#wpadminbar .ab-icon,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:after,#wpadminbar .ab-item:before{color:#e5f8ff}#wpadminbar .ab-top-menu>li.hover>.ab-item,#wpadminbar .ab-top-menu>li.menupop.hover>.ab-item,#wpadminbar .ab-top-menu>li:hover>.ab-item,#wpadminbar .ab-top-menu>li>.ab-item:focus,#wpadminbar-nojs .ab-top-menu>li.menupop:hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus{color:#fff;background:#4796b3}#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:after,#wpadminbar li:hover .ab-item:before,#wpadminbar>#wp-toolbar a:focus span.ab-label,#wpadminbar>#wp-toolbar li.hover span.ab-label,#wpadminbar>#wp-toolbar li:hover span.ab-label{color:#fff}#wpadminbar .menupop .ab-sub-wrapper{background:#4796b3}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu{background:#74b7ce}#wpadminbar .ab-submenu .ab-item,#wpadminbar .quicklinks .menupop ul li a,#wpadminbar .quicklinks .menupop.hover ul li a,#wpadminbar-nojs .quicklinks .menupop:hover ul li a{color:#e2ecf1}#wpadminbar .menupop .menupop>.ab-item:before,#wpadminbar .quicklinks li .blavatar{color:#e5f8ff}#wpadminbar .menupop .menupop>.ab-item:hover:before,#wpadminbar .quicklinks .menupop ul li a:focus,#wpadminbar .quicklinks .menupop ul li a:focus strong,#wpadminbar .quicklinks .menupop ul li a:hover,#wpadminbar .quicklinks .menupop ul li a:hover strong,#wpadminbar .quicklinks .menupop.hover ul li a:focus,#wpadminbar .quicklinks .menupop.hover ul li a:hover,#wpadminbar .quicklinks li a:hover .blavatar,#wpadminbar li .ab-item:focus:before,#wpadminbar li a:focus .ab-icon:before,#wpadminbar li.hover .ab-icon:before,#wpadminbar li.hover .ab-item:after,#wpadminbar li.hover .ab-item:before,#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:after,#wpadminbar li:hover .ab-item:before,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover{color:#fff}#wpadminbar #adminbarsearch:before{color:#e5f8ff}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input:focus{color:#fff;background:#6ebad4}#wpadminbar #adminbarsearch .adminbar-input::-webkit-input-placeholder{color:#fff;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input:-moz-placeholder{color:#fff;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input::-moz-placeholder{color:#fff;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input:-ms-input-placeholder{color:#fff;opacity:.7}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{border-color:#6ebad4;background-color:#6ebad4}#wpadminbar #wp-admin-bar-user-info .display-name,#wpadminbar #wp-admin-bar-user-info a:hover .display-name{color:#fff}#wpadminbar #wp-admin-bar-user-info .username{color:#e2ecf1}.wp-pointer .wp-pointer-content h3{background-color:#096484;border-color:#07536c}.wp-pointer .wp-pointer-content h3:before{color:#096484}.wp-pointer.wp-pointer-top .wp-pointer-arrow,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow{border-bottom-color:#096484}.media-item .bar,.media-progress-bar div{background-color:#096484}.details.attachment{-webkit-box-shadow:0 0 0 1px #fff,0 0 0 5px #096484;box-shadow:0 0 0 1px #fff,0 0 0 5px #096484}.attachment.details .check{background-color:#096484;-webkit-box-shadow:0 0 0 1px #fff,0 0 0 2px #096484;box-shadow:0 0 0 1px #fff,0 0 0 2px #096484}.theme-browser .theme.active .theme-name,.theme-browser .theme.add-new-theme:hover:after{background:#096484}.theme-browser .theme.add-new-theme:hover span:after{color:#096484}.theme-overlay .theme-header .close:hover,.theme-overlay .theme-header .left:hover,.theme-overlay .theme-header .right:hover{background:#096484}.theme-filter.current,.theme-section.current{border-bottom-color:#52accc}body.more-filters-opened .more-filters,body.more-filters-opened .more-filters:before{color:#fff;background-color:#52accc}.widgets-chooser li.widgets-chooser-selected,body.more-filters-opened .more-filters:focus,body.more-filters-opened .more-filters:focus:before,body.more-filters-opened .more-filters:hover,body.more-filters-opened .more-filters:hover:before{background-color:#096484;color:#fff}.widgets-chooser li.widgets-chooser-selected:before,.widgets-chooser li.widgets-chooser-selected:focus:before{color:#fff}#customize-theme-controls .widget-area-select .selected{background-color:#096484;color:#fff}.wp-slider .ui-slider-handle,.wp-slider .ui-slider-handle.focus,.wp-slider .ui-slider-handle.ui-state-hover{background:#e1a948;border-color:#d39323;-webkit-box-shadow:inset 0 1px 0 #ecc88a,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #ecc88a,0 1px 0 rgba(0,0,0,.15)}#sidemenu a.current{background:#f1f1f1;border-bottom-color:#f1f1f1}#plugin-information .action-button{background:#e1a948}div#wp-responsive-toggle a:before{color:#e5f8ff}.wp-responsive-open div#wp-responsive-toggle a{border-color:transparent;background:#096484}.star-rating .star{color:#096484}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:#4796b3}
\ No newline at end of file
diff --git a/sources/wp-admin/css/colors/blue/colors.scss b/sources/wp-admin/css/colors/blue/colors.scss
new file mode 100644
index 0000000..b254d73
--- /dev/null
+++ b/sources/wp-admin/css/colors/blue/colors.scss
@@ -0,0 +1,11 @@
+$base-color: #52accc;
+$icon-color: #e5f8ff;
+$highlight-color: #096484;
+$notification-color: #e1a948;
+$button-color: #e1a948;
+
+$menu-submenu-text: #e2ecf1;
+$menu-submenu-focus-text: #fff;
+$menu-submenu-background: #4796b3;
+
+@import "../_admin.scss";
diff --git a/sources/wp-admin/css/colors/coffee/colors-rtl.css b/sources/wp-admin/css/colors/coffee/colors-rtl.css
new file mode 100644
index 0000000..a54579d
--- /dev/null
+++ b/sources/wp-admin/css/colors/coffee/colors-rtl.css
@@ -0,0 +1,331 @@
+/*
+ * Button mixin- creates 3d-ish button effect with correct
+ * highlights/shadows, based on a base color.
+ */
+html {
+ background: #f1f1f1; }
+
+/* Links */
+a {
+ color: #0074a2; }
+ a:hover, a:active, a:focus {
+ color: #0099d5; }
+
+#media-upload a.del-link:hover, div.dashboard-widget-submit input:hover, .subsubsub a:hover, .subsubsub a.current:hover {
+ color: #0099d5; }
+
+/* Forms */
+input[type=checkbox]:checked:before {
+ color: #59524c; }
+
+input[type=radio]:checked:before {
+ background: #59524c; }
+
+.wp-core-ui input[type="reset"]:hover, .wp-core-ui input[type="reset"]:active {
+ color: #0099d5; }
+
+/* Core UI */
+.wp-core-ui .button-primary {
+ background: #c7a589;
+ border-color: #b78a66;
+ color: white;
+ -webkit-box-shadow: inset 0 1px 0 #e0cdbd, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #e0cdbd, 0 1px 0 rgba(0, 0, 0, 0.15); }
+ .wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
+ background: #bf9878;
+ border-color: #ae7d55;
+ color: white;
+ -webkit-box-shadow: inset 0 1px 0 #d7bfac, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #d7bfac, 0 1px 0 rgba(0, 0, 0, 0.15); }
+ .wp-core-ui .button-primary:active {
+ background: #b78a66;
+ border-color: #ae7d55;
+ color: white;
+ -webkit-box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
+ box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5); }
+ .wp-core-ui .button-primary[disabled], .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary.button-primary-disabled, .wp-core-ui .button-primary.disabled {
+ color: #d1cbc7 !important;
+ background: #ba906d !important;
+ border-color: #ae7d55 !important;
+ text-shadow: none !important; }
+.wp-core-ui .wp-ui-primary {
+ color: #fff;
+ background-color: #59524c; }
+.wp-core-ui .wp-ui-text-primary {
+ color: #59524c; }
+.wp-core-ui .wp-ui-highlight {
+ color: #fff;
+ background-color: #c7a589; }
+.wp-core-ui .wp-ui-text-highlight {
+ color: #c7a589; }
+.wp-core-ui .wp-ui-notification {
+ color: #fff;
+ background-color: #9ea476; }
+.wp-core-ui .wp-ui-text-notification {
+ color: #9ea476; }
+.wp-core-ui .wp-ui-text-icon {
+ color: #f3f2f1; }
+
+/* List tables */
+.wrap .add-new-h2:hover, #add-new-comment a:hover, .tablenav .tablenav-pages a:hover, .tablenav .tablenav-pages a:focus {
+ color: #fff;
+ background-color: #59524c; }
+
+.view-switch a.current:before {
+ color: #59524c; }
+
+.view-switch a:hover:before {
+ color: #9ea476; }
+
+.post-com-count:hover:after {
+ border-top-color: #59524c; }
+
+.post-com-count:hover span {
+ color: #fff;
+ background-color: #59524c; }
+
+strong .post-com-count:after {
+ border-top-color: #9ea476; }
+
+strong .post-com-count span {
+ background-color: #9ea476; }
+
+/* Admin Menu */
+#adminmenuback, #adminmenuwrap, #adminmenu {
+ background: #59524c; }
+
+#adminmenu a {
+ color: #fff; }
+
+#adminmenu div.wp-menu-image:before {
+ color: #f3f2f1; }
+
+#adminmenu a:hover, #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus {
+ color: #fff;
+ background-color: #c7a589; }
+
+#adminmenu li.menu-top:hover div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top div.wp-menu-image:before {
+ color: #fff; }
+
+/* Active tabs use a bottom border color that matches the page background color. */
+.about-wrap h2 .nav-tab-active, .nav-tab-active, .nav-tab-active:hover {
+ background-color: #f1f1f1;
+ border-bottom-color: #f1f1f1; }
+
+/* Admin Menu: submenu */
+#adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, .folded #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
+ background: #46403c; }
+
+#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
+ border-left-color: #46403c; }
+
+#adminmenu .wp-submenu .wp-submenu-head {
+ color: #cdcbc9; }
+
+#adminmenu .wp-submenu a, #adminmenu .wp-has-current-submenu .wp-submenu a, .folded #adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
+ color: #cdcbc9; }
+ #adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-has-current-submenu .wp-submenu a:focus, #adminmenu .wp-has-current-submenu .wp-submenu a:hover, .folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus, .folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover {
+ color: #c7a589; }
+
+/* Admin Menu: current */
+#adminmenu .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a {
+ color: #fff; }
+ #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus {
+ color: #c7a589; }
+
+ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after {
+ border-left-color: #f1f1f1; }
+
+#adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu li.current.menu-top {
+ color: #fff;
+ background: #c7a589; }
+
+#adminmenu li.wp-has-current-submenu div.wp-menu-image:before {
+ color: #fff; }
+
+/* Admin Menu: bubble */
+#adminmenu .awaiting-mod, #adminmenu .update-plugins {
+ color: #fff;
+ background: #9ea476; }
+
+#adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins, #adminmenu li:hover a .awaiting-mod, #adminmenu li.menu-top:hover > a .update-plugins {
+ color: #fff;
+ background: #46403c; }
+
+/* Admin Menu: collapse button */
+#collapse-menu {
+ color: #f3f2f1; }
+
+#collapse-menu:hover {
+ color: #fff; }
+
+#collapse-button div:after {
+ color: #f3f2f1; }
+
+#collapse-menu:hover #collapse-button div:after {
+ color: #fff; }
+
+/* Admin Bar */
+#wpadminbar {
+ color: #fff;
+ background: #59524c; }
+
+#wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon {
+ color: #fff; }
+
+#wpadminbar .ab-icon, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar .ab-item:after {
+ color: #f3f2f1; }
+
+#wpadminbar .ab-top-menu > li:hover > .ab-item, #wpadminbar .ab-top-menu > li.hover > .ab-item, #wpadminbar .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar-nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
+ color: #c7a589;
+ background: #46403c; }
+
+#wpadminbar > #wp-toolbar li:hover span.ab-label, #wpadminbar > #wp-toolbar li.hover span.ab-label, #wpadminbar > #wp-toolbar a:focus span.ab-label {
+ color: #c7a589; }
+
+#wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li:hover .ab-item:after, #wpadminbar li:hover #adminbarsearch:before {
+ color: #fff; }
+
+/* Admin Bar: submenu */
+#wpadminbar .menupop .ab-sub-wrapper {
+ background: #46403c; }
+
+#wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
+ background: #656463; }
+
+#wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar-nojs .quicklinks .menupop:hover ul li a {
+ color: #cdcbc9; }
+
+#wpadminbar .quicklinks li .blavatar, #wpadminbar .menupop .menupop > .ab-item:before {
+ color: #f3f2f1; }
+
+#wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li .ab-item:focus:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover .ab-item:after, #wpadminbar li.hover .ab-item:after, #wpadminbar li:hover #adminbarsearch:before {
+ color: #c7a589; }
+
+#wpadminbar .quicklinks li a:hover .blavatar, #wpadminbar .menupop .menupop > .ab-item:hover:before {
+ color: #c7a589; }
+
+/* Admin Bar: search */
+#wpadminbar #adminbarsearch:before {
+ color: #f3f2f1; }
+
+#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
+ color: #fff;
+ background: #6c645c; }
+
+#wpadminbar #adminbarsearch .adminbar-input::-webkit-input-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input:-moz-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input::-moz-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input:-ms-input-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+/* Admin Bar: my account */
+#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
+ border-color: #6c645c;
+ background-color: #6c645c; }
+
+#wpadminbar #wp-admin-bar-user-info .display-name {
+ color: #fff; }
+
+#wpadminbar #wp-admin-bar-user-info a:hover .display-name {
+ color: #c7a589; }
+
+#wpadminbar #wp-admin-bar-user-info .username {
+ color: #cdcbc9; }
+
+/* Pointers */
+.wp-pointer .wp-pointer-content h3 {
+ background-color: #c7a589;
+ border-color: #bf9878; }
+
+.wp-pointer .wp-pointer-content h3:before {
+ color: #c7a589; }
+
+.wp-pointer.wp-pointer-top .wp-pointer-arrow, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow {
+ border-bottom-color: #c7a589; }
+
+/* Media Uploader */
+.media-item .bar, .media-progress-bar div {
+ background-color: #c7a589; }
+
+.details.attachment {
+ -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 5px #c7a589;
+ box-shadow: 0 0 0 1px #fff, 0 0 0 5px #c7a589; }
+
+.attachment.details .check {
+ background-color: #c7a589;
+ -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 2px #c7a589;
+ box-shadow: 0 0 0 1px #fff, 0 0 0 2px #c7a589; }
+
+/* Themes */
+.theme-browser .theme.active .theme-name, .theme-browser .theme.add-new-theme:hover:after {
+ background: #c7a589; }
+
+.theme-browser .theme.add-new-theme:hover span:after {
+ color: #c7a589; }
+
+.theme-overlay .theme-header .close:hover, .theme-overlay .theme-header .right:hover, .theme-overlay .theme-header .left:hover {
+ background: #c7a589; }
+
+.theme-section.current, .theme-filter.current {
+ border-bottom-color: #59524c; }
+
+body.more-filters-opened .more-filters, body.more-filters-opened .more-filters:before {
+ color: #fff;
+ background-color: #59524c; }
+
+body.more-filters-opened .more-filters:hover, body.more-filters-opened .more-filters:focus, body.more-filters-opened .more-filters:hover:before, body.more-filters-opened .more-filters:focus:before {
+ background-color: #c7a589;
+ color: #fff; }
+
+/* Widgets */
+.widgets-chooser li.widgets-chooser-selected {
+ background-color: #c7a589;
+ color: #fff; }
+
+.widgets-chooser li.widgets-chooser-selected:before, .widgets-chooser li.widgets-chooser-selected:focus:before {
+ color: #fff; }
+
+/* Customize */
+#customize-theme-controls .widget-area-select .selected {
+ background-color: #c7a589;
+ color: #fff; }
+
+/* jQuery UI Slider */
+.wp-slider .ui-slider-handle, .wp-slider .ui-slider-handle.ui-state-hover, .wp-slider .ui-slider-handle.focus {
+ background: #c7a589;
+ border-color: #b78a66;
+ -webkit-box-shadow: inset 0 1px 0 #e0cdbd, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #e0cdbd, 0 1px 0 rgba(0, 0, 0, 0.15); }
+
+/* Thickbox: Plugin information */
+#sidemenu a.current {
+ background: #f1f1f1;
+ border-bottom-color: #f1f1f1; }
+
+#plugin-information .action-button {
+ background: #c7a589; }
+
+/* Responsive Component */
+div#wp-responsive-toggle a:before {
+ color: #f3f2f1; }
+
+.wp-responsive-open div#wp-responsive-toggle a {
+ border-color: transparent;
+ background: #c7a589; }
+
+.star-rating .star {
+ color: #c7a589; }
+
+.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
+ background: #46403c; }
diff --git a/sources/wp-admin/css/colors/coffee/colors-rtl.min.css b/sources/wp-admin/css/colors/coffee/colors-rtl.min.css
new file mode 100644
index 0000000..ed81cb7
--- /dev/null
+++ b/sources/wp-admin/css/colors/coffee/colors-rtl.min.css
@@ -0,0 +1 @@
+html{background:#f1f1f1}a{color:#0074a2}#media-upload a.del-link:hover,.subsubsub a.current:hover,.subsubsub a:hover,a:active,a:focus,a:hover,div.dashboard-widget-submit input:hover{color:#0099d5}input[type=checkbox]:checked:before{color:#59524c}input[type=radio]:checked:before{background:#59524c}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:#0099d5}.wp-core-ui .button-primary{background:#c7a589;border-color:#b78a66;color:#fff;-webkit-box-shadow:inset 0 1px 0 #e0cdbd,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #e0cdbd,0 1px 0 rgba(0,0,0,.15)}.wp-core-ui .button-primary:focus,.wp-core-ui .button-primary:hover{background:#bf9878;border-color:#ae7d55;color:#fff;-webkit-box-shadow:inset 0 1px 0 #d7bfac,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #d7bfac,0 1px 0 rgba(0,0,0,.15)}.wp-core-ui .button-primary:active{background:#b78a66;border-color:#ae7d55;color:#fff;-webkit-box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5);box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5)}.wp-core-ui .button-primary.button-primary-disabled,.wp-core-ui .button-primary.disabled,.wp-core-ui .button-primary:disabled,.wp-core-ui .button-primary[disabled]{color:#d1cbc7!important;background:#ba906d!important;border-color:#ae7d55!important;text-shadow:none!important}.wp-core-ui .wp-ui-primary{color:#fff;background-color:#59524c}.wp-core-ui .wp-ui-text-primary{color:#59524c}.wp-core-ui .wp-ui-highlight{color:#fff;background-color:#c7a589}.wp-core-ui .wp-ui-text-highlight{color:#c7a589}.wp-core-ui .wp-ui-notification{color:#fff;background-color:#9ea476}.wp-core-ui .wp-ui-text-notification{color:#9ea476}.wp-core-ui .wp-ui-text-icon{color:#f3f2f1}#add-new-comment a:hover,.tablenav .tablenav-pages a:focus,.tablenav .tablenav-pages a:hover,.wrap .add-new-h2:hover{color:#fff;background-color:#59524c}.view-switch a.current:before{color:#59524c}.view-switch a:hover:before{color:#9ea476}.post-com-count:hover:after{border-top-color:#59524c}.post-com-count:hover span{color:#fff;background-color:#59524c}strong .post-com-count:after{border-top-color:#9ea476}strong .post-com-count span{background-color:#9ea476}#adminmenu,#adminmenuback,#adminmenuwrap{background:#59524c}#adminmenu a{color:#fff}#adminmenu div.wp-menu-image:before{color:#f3f2f1}#adminmenu a:hover,#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{color:#fff;background-color:#c7a589}#adminmenu li.menu-top:hover div.wp-menu-image:before,#adminmenu li.opensub>a.menu-top div.wp-menu-image:before{color:#fff}.about-wrap h2 .nav-tab-active,.nav-tab-active,.nav-tab-active:hover{background-color:#f1f1f1;border-bottom-color:#f1f1f1}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,#adminmenu .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu{background:#46403c}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after{border-left-color:#46403c}#adminmenu .wp-has-current-submenu .wp-submenu a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a,#adminmenu .wp-submenu .wp-submenu-head,#adminmenu .wp-submenu a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a,.folded #adminmenu .wp-has-current-submenu .wp-submenu a{color:#cdcbc9}#adminmenu .wp-has-current-submenu .wp-submenu a:focus,#adminmenu .wp-has-current-submenu .wp-submenu a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover,#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:hover,.folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus,.folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover{color:#c7a589}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a,#adminmenu .wp-submenu li.current a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a{color:#fff}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:hover{color:#c7a589}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{border-left-color:#f1f1f1}#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{color:#fff;background:#c7a589}#adminmenu li.wp-has-current-submenu div.wp-menu-image:before{color:#fff}#adminmenu .awaiting-mod,#adminmenu .update-plugins{color:#fff;background:#9ea476}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod,#adminmenu li.menu-top:hover>a .update-plugins,#adminmenu li:hover a .awaiting-mod{color:#fff;background:#46403c}#collapse-menu{color:#f3f2f1}#collapse-menu:hover{color:#fff}#collapse-button div:after{color:#f3f2f1}#collapse-menu:hover #collapse-button div:after{color:#fff}#wpadminbar{color:#fff;background:#59524c}#wpadminbar .ab-item,#wpadminbar a.ab-item,#wpadminbar>#wp-toolbar span.ab-label,#wpadminbar>#wp-toolbar span.noticon{color:#fff}#wpadminbar .ab-icon,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:after,#wpadminbar .ab-item:before{color:#f3f2f1}#wpadminbar .ab-top-menu>li.hover>.ab-item,#wpadminbar .ab-top-menu>li.menupop.hover>.ab-item,#wpadminbar .ab-top-menu>li:hover>.ab-item,#wpadminbar .ab-top-menu>li>.ab-item:focus,#wpadminbar-nojs .ab-top-menu>li.menupop:hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus{color:#c7a589;background:#46403c}#wpadminbar>#wp-toolbar a:focus span.ab-label,#wpadminbar>#wp-toolbar li.hover span.ab-label,#wpadminbar>#wp-toolbar li:hover span.ab-label{color:#c7a589}#wpadminbar .menupop .ab-sub-wrapper{background:#46403c}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu{background:#656463}#wpadminbar .ab-submenu .ab-item,#wpadminbar .quicklinks .menupop ul li a,#wpadminbar .quicklinks .menupop.hover ul li a,#wpadminbar-nojs .quicklinks .menupop:hover ul li a{color:#cdcbc9}#wpadminbar .menupop .menupop>.ab-item:before,#wpadminbar .quicklinks li .blavatar{color:#f3f2f1}#wpadminbar .menupop .menupop>.ab-item:hover:before,#wpadminbar .quicklinks .menupop ul li a:focus,#wpadminbar .quicklinks .menupop ul li a:focus strong,#wpadminbar .quicklinks .menupop ul li a:hover,#wpadminbar .quicklinks .menupop ul li a:hover strong,#wpadminbar .quicklinks .menupop.hover ul li a:focus,#wpadminbar .quicklinks .menupop.hover ul li a:hover,#wpadminbar .quicklinks li a:hover .blavatar,#wpadminbar li .ab-item:focus:before,#wpadminbar li a:focus .ab-icon:before,#wpadminbar li.hover .ab-icon:before,#wpadminbar li.hover .ab-item:after,#wpadminbar li.hover .ab-item:before,#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:after,#wpadminbar li:hover .ab-item:before,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover{color:#c7a589}#wpadminbar #adminbarsearch:before{color:#f3f2f1}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input:focus{color:#fff;background:#6c645c}#wpadminbar #adminbarsearch .adminbar-input::-webkit-input-placeholder{color:#fff;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input:-moz-placeholder{color:#fff;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input::-moz-placeholder{color:#fff;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input:-ms-input-placeholder{color:#fff;opacity:.7}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{border-color:#6c645c;background-color:#6c645c}#wpadminbar #wp-admin-bar-user-info .display-name{color:#fff}#wpadminbar #wp-admin-bar-user-info a:hover .display-name{color:#c7a589}#wpadminbar #wp-admin-bar-user-info .username{color:#cdcbc9}.wp-pointer .wp-pointer-content h3{background-color:#c7a589;border-color:#bf9878}.wp-pointer .wp-pointer-content h3:before{color:#c7a589}.wp-pointer.wp-pointer-top .wp-pointer-arrow,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow{border-bottom-color:#c7a589}.media-item .bar,.media-progress-bar div{background-color:#c7a589}.details.attachment{-webkit-box-shadow:0 0 0 1px #fff,0 0 0 5px #c7a589;box-shadow:0 0 0 1px #fff,0 0 0 5px #c7a589}.attachment.details .check{background-color:#c7a589;-webkit-box-shadow:0 0 0 1px #fff,0 0 0 2px #c7a589;box-shadow:0 0 0 1px #fff,0 0 0 2px #c7a589}.theme-browser .theme.active .theme-name,.theme-browser .theme.add-new-theme:hover:after{background:#c7a589}.theme-browser .theme.add-new-theme:hover span:after{color:#c7a589}.theme-overlay .theme-header .close:hover,.theme-overlay .theme-header .left:hover,.theme-overlay .theme-header .right:hover{background:#c7a589}.theme-filter.current,.theme-section.current{border-bottom-color:#59524c}body.more-filters-opened .more-filters,body.more-filters-opened .more-filters:before{color:#fff;background-color:#59524c}.widgets-chooser li.widgets-chooser-selected,body.more-filters-opened .more-filters:focus,body.more-filters-opened .more-filters:focus:before,body.more-filters-opened .more-filters:hover,body.more-filters-opened .more-filters:hover:before{background-color:#c7a589;color:#fff}.widgets-chooser li.widgets-chooser-selected:before,.widgets-chooser li.widgets-chooser-selected:focus:before{color:#fff}#customize-theme-controls .widget-area-select .selected{background-color:#c7a589;color:#fff}.wp-slider .ui-slider-handle,.wp-slider .ui-slider-handle.focus,.wp-slider .ui-slider-handle.ui-state-hover{background:#c7a589;border-color:#b78a66;-webkit-box-shadow:inset 0 1px 0 #e0cdbd,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #e0cdbd,0 1px 0 rgba(0,0,0,.15)}#sidemenu a.current{background:#f1f1f1;border-bottom-color:#f1f1f1}#plugin-information .action-button{background:#c7a589}div#wp-responsive-toggle a:before{color:#f3f2f1}.wp-responsive-open div#wp-responsive-toggle a{border-color:transparent;background:#c7a589}.star-rating .star{color:#c7a589}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:#46403c}
\ No newline at end of file
diff --git a/sources/wp-admin/css/colors/coffee/colors.css b/sources/wp-admin/css/colors/coffee/colors.css
new file mode 100644
index 0000000..281a17e
--- /dev/null
+++ b/sources/wp-admin/css/colors/coffee/colors.css
@@ -0,0 +1,331 @@
+/*
+ * Button mixin- creates 3d-ish button effect with correct
+ * highlights/shadows, based on a base color.
+ */
+html {
+ background: #f1f1f1; }
+
+/* Links */
+a {
+ color: #0074a2; }
+ a:hover, a:active, a:focus {
+ color: #0099d5; }
+
+#media-upload a.del-link:hover, div.dashboard-widget-submit input:hover, .subsubsub a:hover, .subsubsub a.current:hover {
+ color: #0099d5; }
+
+/* Forms */
+input[type=checkbox]:checked:before {
+ color: #59524c; }
+
+input[type=radio]:checked:before {
+ background: #59524c; }
+
+.wp-core-ui input[type="reset"]:hover, .wp-core-ui input[type="reset"]:active {
+ color: #0099d5; }
+
+/* Core UI */
+.wp-core-ui .button-primary {
+ background: #c7a589;
+ border-color: #b78a66;
+ color: white;
+ -webkit-box-shadow: inset 0 1px 0 #e0cdbd, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #e0cdbd, 0 1px 0 rgba(0, 0, 0, 0.15); }
+ .wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
+ background: #bf9878;
+ border-color: #ae7d55;
+ color: white;
+ -webkit-box-shadow: inset 0 1px 0 #d7bfac, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #d7bfac, 0 1px 0 rgba(0, 0, 0, 0.15); }
+ .wp-core-ui .button-primary:active {
+ background: #b78a66;
+ border-color: #ae7d55;
+ color: white;
+ -webkit-box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
+ box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5); }
+ .wp-core-ui .button-primary[disabled], .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary.button-primary-disabled, .wp-core-ui .button-primary.disabled {
+ color: #d1cbc7 !important;
+ background: #ba906d !important;
+ border-color: #ae7d55 !important;
+ text-shadow: none !important; }
+.wp-core-ui .wp-ui-primary {
+ color: #fff;
+ background-color: #59524c; }
+.wp-core-ui .wp-ui-text-primary {
+ color: #59524c; }
+.wp-core-ui .wp-ui-highlight {
+ color: #fff;
+ background-color: #c7a589; }
+.wp-core-ui .wp-ui-text-highlight {
+ color: #c7a589; }
+.wp-core-ui .wp-ui-notification {
+ color: #fff;
+ background-color: #9ea476; }
+.wp-core-ui .wp-ui-text-notification {
+ color: #9ea476; }
+.wp-core-ui .wp-ui-text-icon {
+ color: #f3f2f1; }
+
+/* List tables */
+.wrap .add-new-h2:hover, #add-new-comment a:hover, .tablenav .tablenav-pages a:hover, .tablenav .tablenav-pages a:focus {
+ color: #fff;
+ background-color: #59524c; }
+
+.view-switch a.current:before {
+ color: #59524c; }
+
+.view-switch a:hover:before {
+ color: #9ea476; }
+
+.post-com-count:hover:after {
+ border-top-color: #59524c; }
+
+.post-com-count:hover span {
+ color: #fff;
+ background-color: #59524c; }
+
+strong .post-com-count:after {
+ border-top-color: #9ea476; }
+
+strong .post-com-count span {
+ background-color: #9ea476; }
+
+/* Admin Menu */
+#adminmenuback, #adminmenuwrap, #adminmenu {
+ background: #59524c; }
+
+#adminmenu a {
+ color: #fff; }
+
+#adminmenu div.wp-menu-image:before {
+ color: #f3f2f1; }
+
+#adminmenu a:hover, #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus {
+ color: #fff;
+ background-color: #c7a589; }
+
+#adminmenu li.menu-top:hover div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top div.wp-menu-image:before {
+ color: #fff; }
+
+/* Active tabs use a bottom border color that matches the page background color. */
+.about-wrap h2 .nav-tab-active, .nav-tab-active, .nav-tab-active:hover {
+ background-color: #f1f1f1;
+ border-bottom-color: #f1f1f1; }
+
+/* Admin Menu: submenu */
+#adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, .folded #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
+ background: #46403c; }
+
+#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
+ border-right-color: #46403c; }
+
+#adminmenu .wp-submenu .wp-submenu-head {
+ color: #cdcbc9; }
+
+#adminmenu .wp-submenu a, #adminmenu .wp-has-current-submenu .wp-submenu a, .folded #adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
+ color: #cdcbc9; }
+ #adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-has-current-submenu .wp-submenu a:focus, #adminmenu .wp-has-current-submenu .wp-submenu a:hover, .folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus, .folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover {
+ color: #c7a589; }
+
+/* Admin Menu: current */
+#adminmenu .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a {
+ color: #fff; }
+ #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus {
+ color: #c7a589; }
+
+ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after {
+ border-right-color: #f1f1f1; }
+
+#adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu li.current.menu-top {
+ color: #fff;
+ background: #c7a589; }
+
+#adminmenu li.wp-has-current-submenu div.wp-menu-image:before {
+ color: #fff; }
+
+/* Admin Menu: bubble */
+#adminmenu .awaiting-mod, #adminmenu .update-plugins {
+ color: #fff;
+ background: #9ea476; }
+
+#adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins, #adminmenu li:hover a .awaiting-mod, #adminmenu li.menu-top:hover > a .update-plugins {
+ color: #fff;
+ background: #46403c; }
+
+/* Admin Menu: collapse button */
+#collapse-menu {
+ color: #f3f2f1; }
+
+#collapse-menu:hover {
+ color: #fff; }
+
+#collapse-button div:after {
+ color: #f3f2f1; }
+
+#collapse-menu:hover #collapse-button div:after {
+ color: #fff; }
+
+/* Admin Bar */
+#wpadminbar {
+ color: #fff;
+ background: #59524c; }
+
+#wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon {
+ color: #fff; }
+
+#wpadminbar .ab-icon, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar .ab-item:after {
+ color: #f3f2f1; }
+
+#wpadminbar .ab-top-menu > li:hover > .ab-item, #wpadminbar .ab-top-menu > li.hover > .ab-item, #wpadminbar .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar-nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
+ color: #c7a589;
+ background: #46403c; }
+
+#wpadminbar > #wp-toolbar li:hover span.ab-label, #wpadminbar > #wp-toolbar li.hover span.ab-label, #wpadminbar > #wp-toolbar a:focus span.ab-label {
+ color: #c7a589; }
+
+#wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li:hover .ab-item:after, #wpadminbar li:hover #adminbarsearch:before {
+ color: #fff; }
+
+/* Admin Bar: submenu */
+#wpadminbar .menupop .ab-sub-wrapper {
+ background: #46403c; }
+
+#wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
+ background: #656463; }
+
+#wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar-nojs .quicklinks .menupop:hover ul li a {
+ color: #cdcbc9; }
+
+#wpadminbar .quicklinks li .blavatar, #wpadminbar .menupop .menupop > .ab-item:before {
+ color: #f3f2f1; }
+
+#wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li .ab-item:focus:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover .ab-item:after, #wpadminbar li.hover .ab-item:after, #wpadminbar li:hover #adminbarsearch:before {
+ color: #c7a589; }
+
+#wpadminbar .quicklinks li a:hover .blavatar, #wpadminbar .menupop .menupop > .ab-item:hover:before {
+ color: #c7a589; }
+
+/* Admin Bar: search */
+#wpadminbar #adminbarsearch:before {
+ color: #f3f2f1; }
+
+#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
+ color: #fff;
+ background: #6c645c; }
+
+#wpadminbar #adminbarsearch .adminbar-input::-webkit-input-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input:-moz-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input::-moz-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input:-ms-input-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+/* Admin Bar: my account */
+#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
+ border-color: #6c645c;
+ background-color: #6c645c; }
+
+#wpadminbar #wp-admin-bar-user-info .display-name {
+ color: #fff; }
+
+#wpadminbar #wp-admin-bar-user-info a:hover .display-name {
+ color: #c7a589; }
+
+#wpadminbar #wp-admin-bar-user-info .username {
+ color: #cdcbc9; }
+
+/* Pointers */
+.wp-pointer .wp-pointer-content h3 {
+ background-color: #c7a589;
+ border-color: #bf9878; }
+
+.wp-pointer .wp-pointer-content h3:before {
+ color: #c7a589; }
+
+.wp-pointer.wp-pointer-top .wp-pointer-arrow, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow {
+ border-bottom-color: #c7a589; }
+
+/* Media Uploader */
+.media-item .bar, .media-progress-bar div {
+ background-color: #c7a589; }
+
+.details.attachment {
+ -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 5px #c7a589;
+ box-shadow: 0 0 0 1px #fff, 0 0 0 5px #c7a589; }
+
+.attachment.details .check {
+ background-color: #c7a589;
+ -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 2px #c7a589;
+ box-shadow: 0 0 0 1px #fff, 0 0 0 2px #c7a589; }
+
+/* Themes */
+.theme-browser .theme.active .theme-name, .theme-browser .theme.add-new-theme:hover:after {
+ background: #c7a589; }
+
+.theme-browser .theme.add-new-theme:hover span:after {
+ color: #c7a589; }
+
+.theme-overlay .theme-header .close:hover, .theme-overlay .theme-header .right:hover, .theme-overlay .theme-header .left:hover {
+ background: #c7a589; }
+
+.theme-section.current, .theme-filter.current {
+ border-bottom-color: #59524c; }
+
+body.more-filters-opened .more-filters, body.more-filters-opened .more-filters:before {
+ color: #fff;
+ background-color: #59524c; }
+
+body.more-filters-opened .more-filters:hover, body.more-filters-opened .more-filters:focus, body.more-filters-opened .more-filters:hover:before, body.more-filters-opened .more-filters:focus:before {
+ background-color: #c7a589;
+ color: #fff; }
+
+/* Widgets */
+.widgets-chooser li.widgets-chooser-selected {
+ background-color: #c7a589;
+ color: #fff; }
+
+.widgets-chooser li.widgets-chooser-selected:before, .widgets-chooser li.widgets-chooser-selected:focus:before {
+ color: #fff; }
+
+/* Customize */
+#customize-theme-controls .widget-area-select .selected {
+ background-color: #c7a589;
+ color: #fff; }
+
+/* jQuery UI Slider */
+.wp-slider .ui-slider-handle, .wp-slider .ui-slider-handle.ui-state-hover, .wp-slider .ui-slider-handle.focus {
+ background: #c7a589;
+ border-color: #b78a66;
+ -webkit-box-shadow: inset 0 1px 0 #e0cdbd, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #e0cdbd, 0 1px 0 rgba(0, 0, 0, 0.15); }
+
+/* Thickbox: Plugin information */
+#sidemenu a.current {
+ background: #f1f1f1;
+ border-bottom-color: #f1f1f1; }
+
+#plugin-information .action-button {
+ background: #c7a589; }
+
+/* Responsive Component */
+div#wp-responsive-toggle a:before {
+ color: #f3f2f1; }
+
+.wp-responsive-open div#wp-responsive-toggle a {
+ border-color: transparent;
+ background: #c7a589; }
+
+.star-rating .star {
+ color: #c7a589; }
+
+.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
+ background: #46403c; }
diff --git a/sources/wp-admin/css/colors/coffee/colors.min.css b/sources/wp-admin/css/colors/coffee/colors.min.css
new file mode 100644
index 0000000..bd3ef54
--- /dev/null
+++ b/sources/wp-admin/css/colors/coffee/colors.min.css
@@ -0,0 +1 @@
+html{background:#f1f1f1}a{color:#0074a2}#media-upload a.del-link:hover,.subsubsub a.current:hover,.subsubsub a:hover,a:active,a:focus,a:hover,div.dashboard-widget-submit input:hover{color:#0099d5}input[type=checkbox]:checked:before{color:#59524c}input[type=radio]:checked:before{background:#59524c}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:#0099d5}.wp-core-ui .button-primary{background:#c7a589;border-color:#b78a66;color:#fff;-webkit-box-shadow:inset 0 1px 0 #e0cdbd,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #e0cdbd,0 1px 0 rgba(0,0,0,.15)}.wp-core-ui .button-primary:focus,.wp-core-ui .button-primary:hover{background:#bf9878;border-color:#ae7d55;color:#fff;-webkit-box-shadow:inset 0 1px 0 #d7bfac,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #d7bfac,0 1px 0 rgba(0,0,0,.15)}.wp-core-ui .button-primary:active{background:#b78a66;border-color:#ae7d55;color:#fff;-webkit-box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5);box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5)}.wp-core-ui .button-primary.button-primary-disabled,.wp-core-ui .button-primary.disabled,.wp-core-ui .button-primary:disabled,.wp-core-ui .button-primary[disabled]{color:#d1cbc7!important;background:#ba906d!important;border-color:#ae7d55!important;text-shadow:none!important}.wp-core-ui .wp-ui-primary{color:#fff;background-color:#59524c}.wp-core-ui .wp-ui-text-primary{color:#59524c}.wp-core-ui .wp-ui-highlight{color:#fff;background-color:#c7a589}.wp-core-ui .wp-ui-text-highlight{color:#c7a589}.wp-core-ui .wp-ui-notification{color:#fff;background-color:#9ea476}.wp-core-ui .wp-ui-text-notification{color:#9ea476}.wp-core-ui .wp-ui-text-icon{color:#f3f2f1}#add-new-comment a:hover,.tablenav .tablenav-pages a:focus,.tablenav .tablenav-pages a:hover,.wrap .add-new-h2:hover{color:#fff;background-color:#59524c}.view-switch a.current:before{color:#59524c}.view-switch a:hover:before{color:#9ea476}.post-com-count:hover:after{border-top-color:#59524c}.post-com-count:hover span{color:#fff;background-color:#59524c}strong .post-com-count:after{border-top-color:#9ea476}strong .post-com-count span{background-color:#9ea476}#adminmenu,#adminmenuback,#adminmenuwrap{background:#59524c}#adminmenu a{color:#fff}#adminmenu div.wp-menu-image:before{color:#f3f2f1}#adminmenu a:hover,#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{color:#fff;background-color:#c7a589}#adminmenu li.menu-top:hover div.wp-menu-image:before,#adminmenu li.opensub>a.menu-top div.wp-menu-image:before{color:#fff}.about-wrap h2 .nav-tab-active,.nav-tab-active,.nav-tab-active:hover{background-color:#f1f1f1;border-bottom-color:#f1f1f1}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,#adminmenu .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu{background:#46403c}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after{border-right-color:#46403c}#adminmenu .wp-has-current-submenu .wp-submenu a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a,#adminmenu .wp-submenu .wp-submenu-head,#adminmenu .wp-submenu a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a,.folded #adminmenu .wp-has-current-submenu .wp-submenu a{color:#cdcbc9}#adminmenu .wp-has-current-submenu .wp-submenu a:focus,#adminmenu .wp-has-current-submenu .wp-submenu a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover,#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:hover,.folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus,.folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover{color:#c7a589}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a,#adminmenu .wp-submenu li.current a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a{color:#fff}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:hover{color:#c7a589}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{border-right-color:#f1f1f1}#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{color:#fff;background:#c7a589}#adminmenu li.wp-has-current-submenu div.wp-menu-image:before{color:#fff}#adminmenu .awaiting-mod,#adminmenu .update-plugins{color:#fff;background:#9ea476}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod,#adminmenu li.menu-top:hover>a .update-plugins,#adminmenu li:hover a .awaiting-mod{color:#fff;background:#46403c}#collapse-menu{color:#f3f2f1}#collapse-menu:hover{color:#fff}#collapse-button div:after{color:#f3f2f1}#collapse-menu:hover #collapse-button div:after{color:#fff}#wpadminbar{color:#fff;background:#59524c}#wpadminbar .ab-item,#wpadminbar a.ab-item,#wpadminbar>#wp-toolbar span.ab-label,#wpadminbar>#wp-toolbar span.noticon{color:#fff}#wpadminbar .ab-icon,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:after,#wpadminbar .ab-item:before{color:#f3f2f1}#wpadminbar .ab-top-menu>li.hover>.ab-item,#wpadminbar .ab-top-menu>li.menupop.hover>.ab-item,#wpadminbar .ab-top-menu>li:hover>.ab-item,#wpadminbar .ab-top-menu>li>.ab-item:focus,#wpadminbar-nojs .ab-top-menu>li.menupop:hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus{color:#c7a589;background:#46403c}#wpadminbar>#wp-toolbar a:focus span.ab-label,#wpadminbar>#wp-toolbar li.hover span.ab-label,#wpadminbar>#wp-toolbar li:hover span.ab-label{color:#c7a589}#wpadminbar .menupop .ab-sub-wrapper{background:#46403c}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu{background:#656463}#wpadminbar .ab-submenu .ab-item,#wpadminbar .quicklinks .menupop ul li a,#wpadminbar .quicklinks .menupop.hover ul li a,#wpadminbar-nojs .quicklinks .menupop:hover ul li a{color:#cdcbc9}#wpadminbar .menupop .menupop>.ab-item:before,#wpadminbar .quicklinks li .blavatar{color:#f3f2f1}#wpadminbar .menupop .menupop>.ab-item:hover:before,#wpadminbar .quicklinks .menupop ul li a:focus,#wpadminbar .quicklinks .menupop ul li a:focus strong,#wpadminbar .quicklinks .menupop ul li a:hover,#wpadminbar .quicklinks .menupop ul li a:hover strong,#wpadminbar .quicklinks .menupop.hover ul li a:focus,#wpadminbar .quicklinks .menupop.hover ul li a:hover,#wpadminbar .quicklinks li a:hover .blavatar,#wpadminbar li .ab-item:focus:before,#wpadminbar li a:focus .ab-icon:before,#wpadminbar li.hover .ab-icon:before,#wpadminbar li.hover .ab-item:after,#wpadminbar li.hover .ab-item:before,#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:after,#wpadminbar li:hover .ab-item:before,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover{color:#c7a589}#wpadminbar #adminbarsearch:before{color:#f3f2f1}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input:focus{color:#fff;background:#6c645c}#wpadminbar #adminbarsearch .adminbar-input::-webkit-input-placeholder{color:#fff;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input:-moz-placeholder{color:#fff;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input::-moz-placeholder{color:#fff;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input:-ms-input-placeholder{color:#fff;opacity:.7}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{border-color:#6c645c;background-color:#6c645c}#wpadminbar #wp-admin-bar-user-info .display-name{color:#fff}#wpadminbar #wp-admin-bar-user-info a:hover .display-name{color:#c7a589}#wpadminbar #wp-admin-bar-user-info .username{color:#cdcbc9}.wp-pointer .wp-pointer-content h3{background-color:#c7a589;border-color:#bf9878}.wp-pointer .wp-pointer-content h3:before{color:#c7a589}.wp-pointer.wp-pointer-top .wp-pointer-arrow,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow{border-bottom-color:#c7a589}.media-item .bar,.media-progress-bar div{background-color:#c7a589}.details.attachment{-webkit-box-shadow:0 0 0 1px #fff,0 0 0 5px #c7a589;box-shadow:0 0 0 1px #fff,0 0 0 5px #c7a589}.attachment.details .check{background-color:#c7a589;-webkit-box-shadow:0 0 0 1px #fff,0 0 0 2px #c7a589;box-shadow:0 0 0 1px #fff,0 0 0 2px #c7a589}.theme-browser .theme.active .theme-name,.theme-browser .theme.add-new-theme:hover:after{background:#c7a589}.theme-browser .theme.add-new-theme:hover span:after{color:#c7a589}.theme-overlay .theme-header .close:hover,.theme-overlay .theme-header .left:hover,.theme-overlay .theme-header .right:hover{background:#c7a589}.theme-filter.current,.theme-section.current{border-bottom-color:#59524c}body.more-filters-opened .more-filters,body.more-filters-opened .more-filters:before{color:#fff;background-color:#59524c}.widgets-chooser li.widgets-chooser-selected,body.more-filters-opened .more-filters:focus,body.more-filters-opened .more-filters:focus:before,body.more-filters-opened .more-filters:hover,body.more-filters-opened .more-filters:hover:before{background-color:#c7a589;color:#fff}.widgets-chooser li.widgets-chooser-selected:before,.widgets-chooser li.widgets-chooser-selected:focus:before{color:#fff}#customize-theme-controls .widget-area-select .selected{background-color:#c7a589;color:#fff}.wp-slider .ui-slider-handle,.wp-slider .ui-slider-handle.focus,.wp-slider .ui-slider-handle.ui-state-hover{background:#c7a589;border-color:#b78a66;-webkit-box-shadow:inset 0 1px 0 #e0cdbd,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #e0cdbd,0 1px 0 rgba(0,0,0,.15)}#sidemenu a.current{background:#f1f1f1;border-bottom-color:#f1f1f1}#plugin-information .action-button{background:#c7a589}div#wp-responsive-toggle a:before{color:#f3f2f1}.wp-responsive-open div#wp-responsive-toggle a{border-color:transparent;background:#c7a589}.star-rating .star{color:#c7a589}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:#46403c}
\ No newline at end of file
diff --git a/sources/wp-admin/css/colors/coffee/colors.scss b/sources/wp-admin/css/colors/coffee/colors.scss
new file mode 100644
index 0000000..49bee9b
--- /dev/null
+++ b/sources/wp-admin/css/colors/coffee/colors.scss
@@ -0,0 +1,7 @@
+$base-color: #59524c;
+$highlight-color: #c7a589;
+$notification-color: #9ea476;
+
+$form-checked: $base-color;
+
+@import "../_admin.scss";
diff --git a/sources/wp-admin/css/colors/ectoplasm/colors-rtl.css b/sources/wp-admin/css/colors/ectoplasm/colors-rtl.css
new file mode 100644
index 0000000..73eb510
--- /dev/null
+++ b/sources/wp-admin/css/colors/ectoplasm/colors-rtl.css
@@ -0,0 +1,331 @@
+/*
+ * Button mixin- creates 3d-ish button effect with correct
+ * highlights/shadows, based on a base color.
+ */
+html {
+ background: #f1f1f1; }
+
+/* Links */
+a {
+ color: #0074a2; }
+ a:hover, a:active, a:focus {
+ color: #0099d5; }
+
+#media-upload a.del-link:hover, div.dashboard-widget-submit input:hover, .subsubsub a:hover, .subsubsub a.current:hover {
+ color: #0099d5; }
+
+/* Forms */
+input[type=checkbox]:checked:before {
+ color: #523f6d; }
+
+input[type=radio]:checked:before {
+ background: #523f6d; }
+
+.wp-core-ui input[type="reset"]:hover, .wp-core-ui input[type="reset"]:active {
+ color: #0099d5; }
+
+/* Core UI */
+.wp-core-ui .button-primary {
+ background: #a3b745;
+ border-color: #839237;
+ color: white;
+ -webkit-box-shadow: inset 0 1px 0 #c0cd7b, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #c0cd7b, 0 1px 0 rgba(0, 0, 0, 0.15); }
+ .wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
+ background: #93a43e;
+ border-color: #727f30;
+ color: white;
+ -webkit-box-shadow: inset 0 1px 0 #b7c669, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #b7c669, 0 1px 0 rgba(0, 0, 0, 0.15); }
+ .wp-core-ui .button-primary:active {
+ background: #839237;
+ border-color: #727f30;
+ color: white;
+ -webkit-box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
+ box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5); }
+ .wp-core-ui .button-primary[disabled], .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary.button-primary-disabled, .wp-core-ui .button-primary.disabled {
+ color: #cfd1c7 !important;
+ background: #89993a !important;
+ border-color: #727f30 !important;
+ text-shadow: none !important; }
+.wp-core-ui .wp-ui-primary {
+ color: #fff;
+ background-color: #523f6d; }
+.wp-core-ui .wp-ui-text-primary {
+ color: #523f6d; }
+.wp-core-ui .wp-ui-highlight {
+ color: #fff;
+ background-color: #a3b745; }
+.wp-core-ui .wp-ui-text-highlight {
+ color: #a3b745; }
+.wp-core-ui .wp-ui-notification {
+ color: #fff;
+ background-color: #d46f15; }
+.wp-core-ui .wp-ui-text-notification {
+ color: #d46f15; }
+.wp-core-ui .wp-ui-text-icon {
+ color: #ece6f6; }
+
+/* List tables */
+.wrap .add-new-h2:hover, #add-new-comment a:hover, .tablenav .tablenav-pages a:hover, .tablenav .tablenav-pages a:focus {
+ color: #fff;
+ background-color: #523f6d; }
+
+.view-switch a.current:before {
+ color: #523f6d; }
+
+.view-switch a:hover:before {
+ color: #d46f15; }
+
+.post-com-count:hover:after {
+ border-top-color: #523f6d; }
+
+.post-com-count:hover span {
+ color: #fff;
+ background-color: #523f6d; }
+
+strong .post-com-count:after {
+ border-top-color: #d46f15; }
+
+strong .post-com-count span {
+ background-color: #d46f15; }
+
+/* Admin Menu */
+#adminmenuback, #adminmenuwrap, #adminmenu {
+ background: #523f6d; }
+
+#adminmenu a {
+ color: #fff; }
+
+#adminmenu div.wp-menu-image:before {
+ color: #ece6f6; }
+
+#adminmenu a:hover, #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus {
+ color: #fff;
+ background-color: #a3b745; }
+
+#adminmenu li.menu-top:hover div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top div.wp-menu-image:before {
+ color: #fff; }
+
+/* Active tabs use a bottom border color that matches the page background color. */
+.about-wrap h2 .nav-tab-active, .nav-tab-active, .nav-tab-active:hover {
+ background-color: #f1f1f1;
+ border-bottom-color: #f1f1f1; }
+
+/* Admin Menu: submenu */
+#adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, .folded #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
+ background: #413256; }
+
+#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
+ border-left-color: #413256; }
+
+#adminmenu .wp-submenu .wp-submenu-head {
+ color: #cbc5d3; }
+
+#adminmenu .wp-submenu a, #adminmenu .wp-has-current-submenu .wp-submenu a, .folded #adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
+ color: #cbc5d3; }
+ #adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-has-current-submenu .wp-submenu a:focus, #adminmenu .wp-has-current-submenu .wp-submenu a:hover, .folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus, .folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover {
+ color: #a3b745; }
+
+/* Admin Menu: current */
+#adminmenu .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a {
+ color: #fff; }
+ #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus {
+ color: #a3b745; }
+
+ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after {
+ border-left-color: #f1f1f1; }
+
+#adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu li.current.menu-top {
+ color: #fff;
+ background: #a3b745; }
+
+#adminmenu li.wp-has-current-submenu div.wp-menu-image:before {
+ color: #fff; }
+
+/* Admin Menu: bubble */
+#adminmenu .awaiting-mod, #adminmenu .update-plugins {
+ color: #fff;
+ background: #d46f15; }
+
+#adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins, #adminmenu li:hover a .awaiting-mod, #adminmenu li.menu-top:hover > a .update-plugins {
+ color: #fff;
+ background: #413256; }
+
+/* Admin Menu: collapse button */
+#collapse-menu {
+ color: #ece6f6; }
+
+#collapse-menu:hover {
+ color: #fff; }
+
+#collapse-button div:after {
+ color: #ece6f6; }
+
+#collapse-menu:hover #collapse-button div:after {
+ color: #fff; }
+
+/* Admin Bar */
+#wpadminbar {
+ color: #fff;
+ background: #523f6d; }
+
+#wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon {
+ color: #fff; }
+
+#wpadminbar .ab-icon, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar .ab-item:after {
+ color: #ece6f6; }
+
+#wpadminbar .ab-top-menu > li:hover > .ab-item, #wpadminbar .ab-top-menu > li.hover > .ab-item, #wpadminbar .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar-nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
+ color: #a3b745;
+ background: #413256; }
+
+#wpadminbar > #wp-toolbar li:hover span.ab-label, #wpadminbar > #wp-toolbar li.hover span.ab-label, #wpadminbar > #wp-toolbar a:focus span.ab-label {
+ color: #a3b745; }
+
+#wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li:hover .ab-item:after, #wpadminbar li:hover #adminbarsearch:before {
+ color: #fff; }
+
+/* Admin Bar: submenu */
+#wpadminbar .menupop .ab-sub-wrapper {
+ background: #413256; }
+
+#wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
+ background: #64537c; }
+
+#wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar-nojs .quicklinks .menupop:hover ul li a {
+ color: #cbc5d3; }
+
+#wpadminbar .quicklinks li .blavatar, #wpadminbar .menupop .menupop > .ab-item:before {
+ color: #ece6f6; }
+
+#wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li .ab-item:focus:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover .ab-item:after, #wpadminbar li.hover .ab-item:after, #wpadminbar li:hover #adminbarsearch:before {
+ color: #a3b745; }
+
+#wpadminbar .quicklinks li a:hover .blavatar, #wpadminbar .menupop .menupop > .ab-item:hover:before {
+ color: #a3b745; }
+
+/* Admin Bar: search */
+#wpadminbar #adminbarsearch:before {
+ color: #ece6f6; }
+
+#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
+ color: #fff;
+ background: #624c84; }
+
+#wpadminbar #adminbarsearch .adminbar-input::-webkit-input-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input:-moz-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input::-moz-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input:-ms-input-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+/* Admin Bar: my account */
+#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
+ border-color: #624c84;
+ background-color: #624c84; }
+
+#wpadminbar #wp-admin-bar-user-info .display-name {
+ color: #fff; }
+
+#wpadminbar #wp-admin-bar-user-info a:hover .display-name {
+ color: #a3b745; }
+
+#wpadminbar #wp-admin-bar-user-info .username {
+ color: #cbc5d3; }
+
+/* Pointers */
+.wp-pointer .wp-pointer-content h3 {
+ background-color: #a3b745;
+ border-color: #93a43e; }
+
+.wp-pointer .wp-pointer-content h3:before {
+ color: #a3b745; }
+
+.wp-pointer.wp-pointer-top .wp-pointer-arrow, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow {
+ border-bottom-color: #a3b745; }
+
+/* Media Uploader */
+.media-item .bar, .media-progress-bar div {
+ background-color: #a3b745; }
+
+.details.attachment {
+ -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 5px #a3b745;
+ box-shadow: 0 0 0 1px #fff, 0 0 0 5px #a3b745; }
+
+.attachment.details .check {
+ background-color: #a3b745;
+ -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 2px #a3b745;
+ box-shadow: 0 0 0 1px #fff, 0 0 0 2px #a3b745; }
+
+/* Themes */
+.theme-browser .theme.active .theme-name, .theme-browser .theme.add-new-theme:hover:after {
+ background: #a3b745; }
+
+.theme-browser .theme.add-new-theme:hover span:after {
+ color: #a3b745; }
+
+.theme-overlay .theme-header .close:hover, .theme-overlay .theme-header .right:hover, .theme-overlay .theme-header .left:hover {
+ background: #a3b745; }
+
+.theme-section.current, .theme-filter.current {
+ border-bottom-color: #523f6d; }
+
+body.more-filters-opened .more-filters, body.more-filters-opened .more-filters:before {
+ color: #fff;
+ background-color: #523f6d; }
+
+body.more-filters-opened .more-filters:hover, body.more-filters-opened .more-filters:focus, body.more-filters-opened .more-filters:hover:before, body.more-filters-opened .more-filters:focus:before {
+ background-color: #a3b745;
+ color: #fff; }
+
+/* Widgets */
+.widgets-chooser li.widgets-chooser-selected {
+ background-color: #a3b745;
+ color: #fff; }
+
+.widgets-chooser li.widgets-chooser-selected:before, .widgets-chooser li.widgets-chooser-selected:focus:before {
+ color: #fff; }
+
+/* Customize */
+#customize-theme-controls .widget-area-select .selected {
+ background-color: #a3b745;
+ color: #fff; }
+
+/* jQuery UI Slider */
+.wp-slider .ui-slider-handle, .wp-slider .ui-slider-handle.ui-state-hover, .wp-slider .ui-slider-handle.focus {
+ background: #a3b745;
+ border-color: #839237;
+ -webkit-box-shadow: inset 0 1px 0 #c0cd7b, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #c0cd7b, 0 1px 0 rgba(0, 0, 0, 0.15); }
+
+/* Thickbox: Plugin information */
+#sidemenu a.current {
+ background: #f1f1f1;
+ border-bottom-color: #f1f1f1; }
+
+#plugin-information .action-button {
+ background: #a3b745; }
+
+/* Responsive Component */
+div#wp-responsive-toggle a:before {
+ color: #ece6f6; }
+
+.wp-responsive-open div#wp-responsive-toggle a {
+ border-color: transparent;
+ background: #a3b745; }
+
+.star-rating .star {
+ color: #a3b745; }
+
+.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
+ background: #413256; }
diff --git a/sources/wp-admin/css/colors/ectoplasm/colors-rtl.min.css b/sources/wp-admin/css/colors/ectoplasm/colors-rtl.min.css
new file mode 100644
index 0000000..2f6433e
--- /dev/null
+++ b/sources/wp-admin/css/colors/ectoplasm/colors-rtl.min.css
@@ -0,0 +1 @@
+html{background:#f1f1f1}a{color:#0074a2}#media-upload a.del-link:hover,.subsubsub a.current:hover,.subsubsub a:hover,a:active,a:focus,a:hover,div.dashboard-widget-submit input:hover{color:#0099d5}input[type=checkbox]:checked:before{color:#523f6d}input[type=radio]:checked:before{background:#523f6d}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:#0099d5}.wp-core-ui .button-primary{background:#a3b745;border-color:#839237;color:#fff;-webkit-box-shadow:inset 0 1px 0 #c0cd7b,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #c0cd7b,0 1px 0 rgba(0,0,0,.15)}.wp-core-ui .button-primary:focus,.wp-core-ui .button-primary:hover{background:#93a43e;border-color:#727f30;color:#fff;-webkit-box-shadow:inset 0 1px 0 #b7c669,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #b7c669,0 1px 0 rgba(0,0,0,.15)}.wp-core-ui .button-primary:active{background:#839237;border-color:#727f30;color:#fff;-webkit-box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5);box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5)}.wp-core-ui .button-primary.button-primary-disabled,.wp-core-ui .button-primary.disabled,.wp-core-ui .button-primary:disabled,.wp-core-ui .button-primary[disabled]{color:#cfd1c7!important;background:#89993a!important;border-color:#727f30!important;text-shadow:none!important}.wp-core-ui .wp-ui-primary{color:#fff;background-color:#523f6d}.wp-core-ui .wp-ui-text-primary{color:#523f6d}.wp-core-ui .wp-ui-highlight{color:#fff;background-color:#a3b745}.wp-core-ui .wp-ui-text-highlight{color:#a3b745}.wp-core-ui .wp-ui-notification{color:#fff;background-color:#d46f15}.wp-core-ui .wp-ui-text-notification{color:#d46f15}.wp-core-ui .wp-ui-text-icon{color:#ece6f6}#add-new-comment a:hover,.tablenav .tablenav-pages a:focus,.tablenav .tablenav-pages a:hover,.wrap .add-new-h2:hover{color:#fff;background-color:#523f6d}.view-switch a.current:before{color:#523f6d}.view-switch a:hover:before{color:#d46f15}.post-com-count:hover:after{border-top-color:#523f6d}.post-com-count:hover span{color:#fff;background-color:#523f6d}strong .post-com-count:after{border-top-color:#d46f15}strong .post-com-count span{background-color:#d46f15}#adminmenu,#adminmenuback,#adminmenuwrap{background:#523f6d}#adminmenu a{color:#fff}#adminmenu div.wp-menu-image:before{color:#ece6f6}#adminmenu a:hover,#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{color:#fff;background-color:#a3b745}#adminmenu li.menu-top:hover div.wp-menu-image:before,#adminmenu li.opensub>a.menu-top div.wp-menu-image:before{color:#fff}.about-wrap h2 .nav-tab-active,.nav-tab-active,.nav-tab-active:hover{background-color:#f1f1f1;border-bottom-color:#f1f1f1}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,#adminmenu .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu{background:#413256}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after{border-left-color:#413256}#adminmenu .wp-has-current-submenu .wp-submenu a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a,#adminmenu .wp-submenu .wp-submenu-head,#adminmenu .wp-submenu a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a,.folded #adminmenu .wp-has-current-submenu .wp-submenu a{color:#cbc5d3}#adminmenu .wp-has-current-submenu .wp-submenu a:focus,#adminmenu .wp-has-current-submenu .wp-submenu a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover,#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:hover,.folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus,.folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover{color:#a3b745}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a,#adminmenu .wp-submenu li.current a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a{color:#fff}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:hover{color:#a3b745}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{border-left-color:#f1f1f1}#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{color:#fff;background:#a3b745}#adminmenu li.wp-has-current-submenu div.wp-menu-image:before{color:#fff}#adminmenu .awaiting-mod,#adminmenu .update-plugins{color:#fff;background:#d46f15}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod,#adminmenu li.menu-top:hover>a .update-plugins,#adminmenu li:hover a .awaiting-mod{color:#fff;background:#413256}#collapse-menu{color:#ece6f6}#collapse-menu:hover{color:#fff}#collapse-button div:after{color:#ece6f6}#collapse-menu:hover #collapse-button div:after{color:#fff}#wpadminbar{color:#fff;background:#523f6d}#wpadminbar .ab-item,#wpadminbar a.ab-item,#wpadminbar>#wp-toolbar span.ab-label,#wpadminbar>#wp-toolbar span.noticon{color:#fff}#wpadminbar .ab-icon,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:after,#wpadminbar .ab-item:before{color:#ece6f6}#wpadminbar .ab-top-menu>li.hover>.ab-item,#wpadminbar .ab-top-menu>li.menupop.hover>.ab-item,#wpadminbar .ab-top-menu>li:hover>.ab-item,#wpadminbar .ab-top-menu>li>.ab-item:focus,#wpadminbar-nojs .ab-top-menu>li.menupop:hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus{color:#a3b745;background:#413256}#wpadminbar>#wp-toolbar a:focus span.ab-label,#wpadminbar>#wp-toolbar li.hover span.ab-label,#wpadminbar>#wp-toolbar li:hover span.ab-label{color:#a3b745}#wpadminbar .menupop .ab-sub-wrapper{background:#413256}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu{background:#64537c}#wpadminbar .ab-submenu .ab-item,#wpadminbar .quicklinks .menupop ul li a,#wpadminbar .quicklinks .menupop.hover ul li a,#wpadminbar-nojs .quicklinks .menupop:hover ul li a{color:#cbc5d3}#wpadminbar .menupop .menupop>.ab-item:before,#wpadminbar .quicklinks li .blavatar{color:#ece6f6}#wpadminbar .menupop .menupop>.ab-item:hover:before,#wpadminbar .quicklinks .menupop ul li a:focus,#wpadminbar .quicklinks .menupop ul li a:focus strong,#wpadminbar .quicklinks .menupop ul li a:hover,#wpadminbar .quicklinks .menupop ul li a:hover strong,#wpadminbar .quicklinks .menupop.hover ul li a:focus,#wpadminbar .quicklinks .menupop.hover ul li a:hover,#wpadminbar .quicklinks li a:hover .blavatar,#wpadminbar li .ab-item:focus:before,#wpadminbar li a:focus .ab-icon:before,#wpadminbar li.hover .ab-icon:before,#wpadminbar li.hover .ab-item:after,#wpadminbar li.hover .ab-item:before,#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:after,#wpadminbar li:hover .ab-item:before,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover{color:#a3b745}#wpadminbar #adminbarsearch:before{color:#ece6f6}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input:focus{color:#fff;background:#624c84}#wpadminbar #adminbarsearch .adminbar-input::-webkit-input-placeholder{color:#fff;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input:-moz-placeholder{color:#fff;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input::-moz-placeholder{color:#fff;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input:-ms-input-placeholder{color:#fff;opacity:.7}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{border-color:#624c84;background-color:#624c84}#wpadminbar #wp-admin-bar-user-info .display-name{color:#fff}#wpadminbar #wp-admin-bar-user-info a:hover .display-name{color:#a3b745}#wpadminbar #wp-admin-bar-user-info .username{color:#cbc5d3}.wp-pointer .wp-pointer-content h3{background-color:#a3b745;border-color:#93a43e}.wp-pointer .wp-pointer-content h3:before{color:#a3b745}.wp-pointer.wp-pointer-top .wp-pointer-arrow,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow{border-bottom-color:#a3b745}.media-item .bar,.media-progress-bar div{background-color:#a3b745}.details.attachment{-webkit-box-shadow:0 0 0 1px #fff,0 0 0 5px #a3b745;box-shadow:0 0 0 1px #fff,0 0 0 5px #a3b745}.attachment.details .check{background-color:#a3b745;-webkit-box-shadow:0 0 0 1px #fff,0 0 0 2px #a3b745;box-shadow:0 0 0 1px #fff,0 0 0 2px #a3b745}.theme-browser .theme.active .theme-name,.theme-browser .theme.add-new-theme:hover:after{background:#a3b745}.theme-browser .theme.add-new-theme:hover span:after{color:#a3b745}.theme-overlay .theme-header .close:hover,.theme-overlay .theme-header .left:hover,.theme-overlay .theme-header .right:hover{background:#a3b745}.theme-filter.current,.theme-section.current{border-bottom-color:#523f6d}body.more-filters-opened .more-filters,body.more-filters-opened .more-filters:before{color:#fff;background-color:#523f6d}.widgets-chooser li.widgets-chooser-selected,body.more-filters-opened .more-filters:focus,body.more-filters-opened .more-filters:focus:before,body.more-filters-opened .more-filters:hover,body.more-filters-opened .more-filters:hover:before{background-color:#a3b745;color:#fff}.widgets-chooser li.widgets-chooser-selected:before,.widgets-chooser li.widgets-chooser-selected:focus:before{color:#fff}#customize-theme-controls .widget-area-select .selected{background-color:#a3b745;color:#fff}.wp-slider .ui-slider-handle,.wp-slider .ui-slider-handle.focus,.wp-slider .ui-slider-handle.ui-state-hover{background:#a3b745;border-color:#839237;-webkit-box-shadow:inset 0 1px 0 #c0cd7b,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #c0cd7b,0 1px 0 rgba(0,0,0,.15)}#sidemenu a.current{background:#f1f1f1;border-bottom-color:#f1f1f1}#plugin-information .action-button{background:#a3b745}div#wp-responsive-toggle a:before{color:#ece6f6}.wp-responsive-open div#wp-responsive-toggle a{border-color:transparent;background:#a3b745}.star-rating .star{color:#a3b745}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:#413256}
\ No newline at end of file
diff --git a/sources/wp-admin/css/colors/ectoplasm/colors.css b/sources/wp-admin/css/colors/ectoplasm/colors.css
new file mode 100644
index 0000000..cc319a8
--- /dev/null
+++ b/sources/wp-admin/css/colors/ectoplasm/colors.css
@@ -0,0 +1,331 @@
+/*
+ * Button mixin- creates 3d-ish button effect with correct
+ * highlights/shadows, based on a base color.
+ */
+html {
+ background: #f1f1f1; }
+
+/* Links */
+a {
+ color: #0074a2; }
+ a:hover, a:active, a:focus {
+ color: #0099d5; }
+
+#media-upload a.del-link:hover, div.dashboard-widget-submit input:hover, .subsubsub a:hover, .subsubsub a.current:hover {
+ color: #0099d5; }
+
+/* Forms */
+input[type=checkbox]:checked:before {
+ color: #523f6d; }
+
+input[type=radio]:checked:before {
+ background: #523f6d; }
+
+.wp-core-ui input[type="reset"]:hover, .wp-core-ui input[type="reset"]:active {
+ color: #0099d5; }
+
+/* Core UI */
+.wp-core-ui .button-primary {
+ background: #a3b745;
+ border-color: #839237;
+ color: white;
+ -webkit-box-shadow: inset 0 1px 0 #c0cd7b, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #c0cd7b, 0 1px 0 rgba(0, 0, 0, 0.15); }
+ .wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
+ background: #93a43e;
+ border-color: #727f30;
+ color: white;
+ -webkit-box-shadow: inset 0 1px 0 #b7c669, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #b7c669, 0 1px 0 rgba(0, 0, 0, 0.15); }
+ .wp-core-ui .button-primary:active {
+ background: #839237;
+ border-color: #727f30;
+ color: white;
+ -webkit-box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
+ box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5); }
+ .wp-core-ui .button-primary[disabled], .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary.button-primary-disabled, .wp-core-ui .button-primary.disabled {
+ color: #cfd1c7 !important;
+ background: #89993a !important;
+ border-color: #727f30 !important;
+ text-shadow: none !important; }
+.wp-core-ui .wp-ui-primary {
+ color: #fff;
+ background-color: #523f6d; }
+.wp-core-ui .wp-ui-text-primary {
+ color: #523f6d; }
+.wp-core-ui .wp-ui-highlight {
+ color: #fff;
+ background-color: #a3b745; }
+.wp-core-ui .wp-ui-text-highlight {
+ color: #a3b745; }
+.wp-core-ui .wp-ui-notification {
+ color: #fff;
+ background-color: #d46f15; }
+.wp-core-ui .wp-ui-text-notification {
+ color: #d46f15; }
+.wp-core-ui .wp-ui-text-icon {
+ color: #ece6f6; }
+
+/* List tables */
+.wrap .add-new-h2:hover, #add-new-comment a:hover, .tablenav .tablenav-pages a:hover, .tablenav .tablenav-pages a:focus {
+ color: #fff;
+ background-color: #523f6d; }
+
+.view-switch a.current:before {
+ color: #523f6d; }
+
+.view-switch a:hover:before {
+ color: #d46f15; }
+
+.post-com-count:hover:after {
+ border-top-color: #523f6d; }
+
+.post-com-count:hover span {
+ color: #fff;
+ background-color: #523f6d; }
+
+strong .post-com-count:after {
+ border-top-color: #d46f15; }
+
+strong .post-com-count span {
+ background-color: #d46f15; }
+
+/* Admin Menu */
+#adminmenuback, #adminmenuwrap, #adminmenu {
+ background: #523f6d; }
+
+#adminmenu a {
+ color: #fff; }
+
+#adminmenu div.wp-menu-image:before {
+ color: #ece6f6; }
+
+#adminmenu a:hover, #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus {
+ color: #fff;
+ background-color: #a3b745; }
+
+#adminmenu li.menu-top:hover div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top div.wp-menu-image:before {
+ color: #fff; }
+
+/* Active tabs use a bottom border color that matches the page background color. */
+.about-wrap h2 .nav-tab-active, .nav-tab-active, .nav-tab-active:hover {
+ background-color: #f1f1f1;
+ border-bottom-color: #f1f1f1; }
+
+/* Admin Menu: submenu */
+#adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, .folded #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
+ background: #413256; }
+
+#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
+ border-right-color: #413256; }
+
+#adminmenu .wp-submenu .wp-submenu-head {
+ color: #cbc5d3; }
+
+#adminmenu .wp-submenu a, #adminmenu .wp-has-current-submenu .wp-submenu a, .folded #adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
+ color: #cbc5d3; }
+ #adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-has-current-submenu .wp-submenu a:focus, #adminmenu .wp-has-current-submenu .wp-submenu a:hover, .folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus, .folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover {
+ color: #a3b745; }
+
+/* Admin Menu: current */
+#adminmenu .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a {
+ color: #fff; }
+ #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus {
+ color: #a3b745; }
+
+ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after {
+ border-right-color: #f1f1f1; }
+
+#adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu li.current.menu-top {
+ color: #fff;
+ background: #a3b745; }
+
+#adminmenu li.wp-has-current-submenu div.wp-menu-image:before {
+ color: #fff; }
+
+/* Admin Menu: bubble */
+#adminmenu .awaiting-mod, #adminmenu .update-plugins {
+ color: #fff;
+ background: #d46f15; }
+
+#adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins, #adminmenu li:hover a .awaiting-mod, #adminmenu li.menu-top:hover > a .update-plugins {
+ color: #fff;
+ background: #413256; }
+
+/* Admin Menu: collapse button */
+#collapse-menu {
+ color: #ece6f6; }
+
+#collapse-menu:hover {
+ color: #fff; }
+
+#collapse-button div:after {
+ color: #ece6f6; }
+
+#collapse-menu:hover #collapse-button div:after {
+ color: #fff; }
+
+/* Admin Bar */
+#wpadminbar {
+ color: #fff;
+ background: #523f6d; }
+
+#wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon {
+ color: #fff; }
+
+#wpadminbar .ab-icon, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar .ab-item:after {
+ color: #ece6f6; }
+
+#wpadminbar .ab-top-menu > li:hover > .ab-item, #wpadminbar .ab-top-menu > li.hover > .ab-item, #wpadminbar .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar-nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
+ color: #a3b745;
+ background: #413256; }
+
+#wpadminbar > #wp-toolbar li:hover span.ab-label, #wpadminbar > #wp-toolbar li.hover span.ab-label, #wpadminbar > #wp-toolbar a:focus span.ab-label {
+ color: #a3b745; }
+
+#wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li:hover .ab-item:after, #wpadminbar li:hover #adminbarsearch:before {
+ color: #fff; }
+
+/* Admin Bar: submenu */
+#wpadminbar .menupop .ab-sub-wrapper {
+ background: #413256; }
+
+#wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
+ background: #64537c; }
+
+#wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar-nojs .quicklinks .menupop:hover ul li a {
+ color: #cbc5d3; }
+
+#wpadminbar .quicklinks li .blavatar, #wpadminbar .menupop .menupop > .ab-item:before {
+ color: #ece6f6; }
+
+#wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li .ab-item:focus:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover .ab-item:after, #wpadminbar li.hover .ab-item:after, #wpadminbar li:hover #adminbarsearch:before {
+ color: #a3b745; }
+
+#wpadminbar .quicklinks li a:hover .blavatar, #wpadminbar .menupop .menupop > .ab-item:hover:before {
+ color: #a3b745; }
+
+/* Admin Bar: search */
+#wpadminbar #adminbarsearch:before {
+ color: #ece6f6; }
+
+#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
+ color: #fff;
+ background: #624c84; }
+
+#wpadminbar #adminbarsearch .adminbar-input::-webkit-input-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input:-moz-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input::-moz-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input:-ms-input-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+/* Admin Bar: my account */
+#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
+ border-color: #624c84;
+ background-color: #624c84; }
+
+#wpadminbar #wp-admin-bar-user-info .display-name {
+ color: #fff; }
+
+#wpadminbar #wp-admin-bar-user-info a:hover .display-name {
+ color: #a3b745; }
+
+#wpadminbar #wp-admin-bar-user-info .username {
+ color: #cbc5d3; }
+
+/* Pointers */
+.wp-pointer .wp-pointer-content h3 {
+ background-color: #a3b745;
+ border-color: #93a43e; }
+
+.wp-pointer .wp-pointer-content h3:before {
+ color: #a3b745; }
+
+.wp-pointer.wp-pointer-top .wp-pointer-arrow, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow {
+ border-bottom-color: #a3b745; }
+
+/* Media Uploader */
+.media-item .bar, .media-progress-bar div {
+ background-color: #a3b745; }
+
+.details.attachment {
+ -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 5px #a3b745;
+ box-shadow: 0 0 0 1px #fff, 0 0 0 5px #a3b745; }
+
+.attachment.details .check {
+ background-color: #a3b745;
+ -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 2px #a3b745;
+ box-shadow: 0 0 0 1px #fff, 0 0 0 2px #a3b745; }
+
+/* Themes */
+.theme-browser .theme.active .theme-name, .theme-browser .theme.add-new-theme:hover:after {
+ background: #a3b745; }
+
+.theme-browser .theme.add-new-theme:hover span:after {
+ color: #a3b745; }
+
+.theme-overlay .theme-header .close:hover, .theme-overlay .theme-header .right:hover, .theme-overlay .theme-header .left:hover {
+ background: #a3b745; }
+
+.theme-section.current, .theme-filter.current {
+ border-bottom-color: #523f6d; }
+
+body.more-filters-opened .more-filters, body.more-filters-opened .more-filters:before {
+ color: #fff;
+ background-color: #523f6d; }
+
+body.more-filters-opened .more-filters:hover, body.more-filters-opened .more-filters:focus, body.more-filters-opened .more-filters:hover:before, body.more-filters-opened .more-filters:focus:before {
+ background-color: #a3b745;
+ color: #fff; }
+
+/* Widgets */
+.widgets-chooser li.widgets-chooser-selected {
+ background-color: #a3b745;
+ color: #fff; }
+
+.widgets-chooser li.widgets-chooser-selected:before, .widgets-chooser li.widgets-chooser-selected:focus:before {
+ color: #fff; }
+
+/* Customize */
+#customize-theme-controls .widget-area-select .selected {
+ background-color: #a3b745;
+ color: #fff; }
+
+/* jQuery UI Slider */
+.wp-slider .ui-slider-handle, .wp-slider .ui-slider-handle.ui-state-hover, .wp-slider .ui-slider-handle.focus {
+ background: #a3b745;
+ border-color: #839237;
+ -webkit-box-shadow: inset 0 1px 0 #c0cd7b, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #c0cd7b, 0 1px 0 rgba(0, 0, 0, 0.15); }
+
+/* Thickbox: Plugin information */
+#sidemenu a.current {
+ background: #f1f1f1;
+ border-bottom-color: #f1f1f1; }
+
+#plugin-information .action-button {
+ background: #a3b745; }
+
+/* Responsive Component */
+div#wp-responsive-toggle a:before {
+ color: #ece6f6; }
+
+.wp-responsive-open div#wp-responsive-toggle a {
+ border-color: transparent;
+ background: #a3b745; }
+
+.star-rating .star {
+ color: #a3b745; }
+
+.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
+ background: #413256; }
diff --git a/sources/wp-admin/css/colors/ectoplasm/colors.min.css b/sources/wp-admin/css/colors/ectoplasm/colors.min.css
new file mode 100644
index 0000000..f99f871
--- /dev/null
+++ b/sources/wp-admin/css/colors/ectoplasm/colors.min.css
@@ -0,0 +1 @@
+html{background:#f1f1f1}a{color:#0074a2}#media-upload a.del-link:hover,.subsubsub a.current:hover,.subsubsub a:hover,a:active,a:focus,a:hover,div.dashboard-widget-submit input:hover{color:#0099d5}input[type=checkbox]:checked:before{color:#523f6d}input[type=radio]:checked:before{background:#523f6d}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:#0099d5}.wp-core-ui .button-primary{background:#a3b745;border-color:#839237;color:#fff;-webkit-box-shadow:inset 0 1px 0 #c0cd7b,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #c0cd7b,0 1px 0 rgba(0,0,0,.15)}.wp-core-ui .button-primary:focus,.wp-core-ui .button-primary:hover{background:#93a43e;border-color:#727f30;color:#fff;-webkit-box-shadow:inset 0 1px 0 #b7c669,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #b7c669,0 1px 0 rgba(0,0,0,.15)}.wp-core-ui .button-primary:active{background:#839237;border-color:#727f30;color:#fff;-webkit-box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5);box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5)}.wp-core-ui .button-primary.button-primary-disabled,.wp-core-ui .button-primary.disabled,.wp-core-ui .button-primary:disabled,.wp-core-ui .button-primary[disabled]{color:#cfd1c7!important;background:#89993a!important;border-color:#727f30!important;text-shadow:none!important}.wp-core-ui .wp-ui-primary{color:#fff;background-color:#523f6d}.wp-core-ui .wp-ui-text-primary{color:#523f6d}.wp-core-ui .wp-ui-highlight{color:#fff;background-color:#a3b745}.wp-core-ui .wp-ui-text-highlight{color:#a3b745}.wp-core-ui .wp-ui-notification{color:#fff;background-color:#d46f15}.wp-core-ui .wp-ui-text-notification{color:#d46f15}.wp-core-ui .wp-ui-text-icon{color:#ece6f6}#add-new-comment a:hover,.tablenav .tablenav-pages a:focus,.tablenav .tablenav-pages a:hover,.wrap .add-new-h2:hover{color:#fff;background-color:#523f6d}.view-switch a.current:before{color:#523f6d}.view-switch a:hover:before{color:#d46f15}.post-com-count:hover:after{border-top-color:#523f6d}.post-com-count:hover span{color:#fff;background-color:#523f6d}strong .post-com-count:after{border-top-color:#d46f15}strong .post-com-count span{background-color:#d46f15}#adminmenu,#adminmenuback,#adminmenuwrap{background:#523f6d}#adminmenu a{color:#fff}#adminmenu div.wp-menu-image:before{color:#ece6f6}#adminmenu a:hover,#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{color:#fff;background-color:#a3b745}#adminmenu li.menu-top:hover div.wp-menu-image:before,#adminmenu li.opensub>a.menu-top div.wp-menu-image:before{color:#fff}.about-wrap h2 .nav-tab-active,.nav-tab-active,.nav-tab-active:hover{background-color:#f1f1f1;border-bottom-color:#f1f1f1}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,#adminmenu .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu{background:#413256}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after{border-right-color:#413256}#adminmenu .wp-has-current-submenu .wp-submenu a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a,#adminmenu .wp-submenu .wp-submenu-head,#adminmenu .wp-submenu a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a,.folded #adminmenu .wp-has-current-submenu .wp-submenu a{color:#cbc5d3}#adminmenu .wp-has-current-submenu .wp-submenu a:focus,#adminmenu .wp-has-current-submenu .wp-submenu a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover,#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:hover,.folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus,.folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover{color:#a3b745}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a,#adminmenu .wp-submenu li.current a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a{color:#fff}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:hover{color:#a3b745}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{border-right-color:#f1f1f1}#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{color:#fff;background:#a3b745}#adminmenu li.wp-has-current-submenu div.wp-menu-image:before{color:#fff}#adminmenu .awaiting-mod,#adminmenu .update-plugins{color:#fff;background:#d46f15}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod,#adminmenu li.menu-top:hover>a .update-plugins,#adminmenu li:hover a .awaiting-mod{color:#fff;background:#413256}#collapse-menu{color:#ece6f6}#collapse-menu:hover{color:#fff}#collapse-button div:after{color:#ece6f6}#collapse-menu:hover #collapse-button div:after{color:#fff}#wpadminbar{color:#fff;background:#523f6d}#wpadminbar .ab-item,#wpadminbar a.ab-item,#wpadminbar>#wp-toolbar span.ab-label,#wpadminbar>#wp-toolbar span.noticon{color:#fff}#wpadminbar .ab-icon,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:after,#wpadminbar .ab-item:before{color:#ece6f6}#wpadminbar .ab-top-menu>li.hover>.ab-item,#wpadminbar .ab-top-menu>li.menupop.hover>.ab-item,#wpadminbar .ab-top-menu>li:hover>.ab-item,#wpadminbar .ab-top-menu>li>.ab-item:focus,#wpadminbar-nojs .ab-top-menu>li.menupop:hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus{color:#a3b745;background:#413256}#wpadminbar>#wp-toolbar a:focus span.ab-label,#wpadminbar>#wp-toolbar li.hover span.ab-label,#wpadminbar>#wp-toolbar li:hover span.ab-label{color:#a3b745}#wpadminbar .menupop .ab-sub-wrapper{background:#413256}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu{background:#64537c}#wpadminbar .ab-submenu .ab-item,#wpadminbar .quicklinks .menupop ul li a,#wpadminbar .quicklinks .menupop.hover ul li a,#wpadminbar-nojs .quicklinks .menupop:hover ul li a{color:#cbc5d3}#wpadminbar .menupop .menupop>.ab-item:before,#wpadminbar .quicklinks li .blavatar{color:#ece6f6}#wpadminbar .menupop .menupop>.ab-item:hover:before,#wpadminbar .quicklinks .menupop ul li a:focus,#wpadminbar .quicklinks .menupop ul li a:focus strong,#wpadminbar .quicklinks .menupop ul li a:hover,#wpadminbar .quicklinks .menupop ul li a:hover strong,#wpadminbar .quicklinks .menupop.hover ul li a:focus,#wpadminbar .quicklinks .menupop.hover ul li a:hover,#wpadminbar .quicklinks li a:hover .blavatar,#wpadminbar li .ab-item:focus:before,#wpadminbar li a:focus .ab-icon:before,#wpadminbar li.hover .ab-icon:before,#wpadminbar li.hover .ab-item:after,#wpadminbar li.hover .ab-item:before,#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:after,#wpadminbar li:hover .ab-item:before,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover{color:#a3b745}#wpadminbar #adminbarsearch:before{color:#ece6f6}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input:focus{color:#fff;background:#624c84}#wpadminbar #adminbarsearch .adminbar-input::-webkit-input-placeholder{color:#fff;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input:-moz-placeholder{color:#fff;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input::-moz-placeholder{color:#fff;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input:-ms-input-placeholder{color:#fff;opacity:.7}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{border-color:#624c84;background-color:#624c84}#wpadminbar #wp-admin-bar-user-info .display-name{color:#fff}#wpadminbar #wp-admin-bar-user-info a:hover .display-name{color:#a3b745}#wpadminbar #wp-admin-bar-user-info .username{color:#cbc5d3}.wp-pointer .wp-pointer-content h3{background-color:#a3b745;border-color:#93a43e}.wp-pointer .wp-pointer-content h3:before{color:#a3b745}.wp-pointer.wp-pointer-top .wp-pointer-arrow,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow{border-bottom-color:#a3b745}.media-item .bar,.media-progress-bar div{background-color:#a3b745}.details.attachment{-webkit-box-shadow:0 0 0 1px #fff,0 0 0 5px #a3b745;box-shadow:0 0 0 1px #fff,0 0 0 5px #a3b745}.attachment.details .check{background-color:#a3b745;-webkit-box-shadow:0 0 0 1px #fff,0 0 0 2px #a3b745;box-shadow:0 0 0 1px #fff,0 0 0 2px #a3b745}.theme-browser .theme.active .theme-name,.theme-browser .theme.add-new-theme:hover:after{background:#a3b745}.theme-browser .theme.add-new-theme:hover span:after{color:#a3b745}.theme-overlay .theme-header .close:hover,.theme-overlay .theme-header .left:hover,.theme-overlay .theme-header .right:hover{background:#a3b745}.theme-filter.current,.theme-section.current{border-bottom-color:#523f6d}body.more-filters-opened .more-filters,body.more-filters-opened .more-filters:before{color:#fff;background-color:#523f6d}.widgets-chooser li.widgets-chooser-selected,body.more-filters-opened .more-filters:focus,body.more-filters-opened .more-filters:focus:before,body.more-filters-opened .more-filters:hover,body.more-filters-opened .more-filters:hover:before{background-color:#a3b745;color:#fff}.widgets-chooser li.widgets-chooser-selected:before,.widgets-chooser li.widgets-chooser-selected:focus:before{color:#fff}#customize-theme-controls .widget-area-select .selected{background-color:#a3b745;color:#fff}.wp-slider .ui-slider-handle,.wp-slider .ui-slider-handle.focus,.wp-slider .ui-slider-handle.ui-state-hover{background:#a3b745;border-color:#839237;-webkit-box-shadow:inset 0 1px 0 #c0cd7b,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #c0cd7b,0 1px 0 rgba(0,0,0,.15)}#sidemenu a.current{background:#f1f1f1;border-bottom-color:#f1f1f1}#plugin-information .action-button{background:#a3b745}div#wp-responsive-toggle a:before{color:#ece6f6}.wp-responsive-open div#wp-responsive-toggle a{border-color:transparent;background:#a3b745}.star-rating .star{color:#a3b745}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:#413256}
\ No newline at end of file
diff --git a/sources/wp-admin/css/colors/ectoplasm/colors.scss b/sources/wp-admin/css/colors/ectoplasm/colors.scss
new file mode 100644
index 0000000..8d14570
--- /dev/null
+++ b/sources/wp-admin/css/colors/ectoplasm/colors.scss
@@ -0,0 +1,8 @@
+$base-color: #523f6d;
+$icon-color: #ece6f6;
+$highlight-color: #a3b745;
+$notification-color: #d46f15;
+
+$form-checked: $base-color;
+
+@import "../_admin.scss";
diff --git a/sources/wp-admin/css/colors/light/colors-rtl.css b/sources/wp-admin/css/colors/light/colors-rtl.css
new file mode 100644
index 0000000..bdb778d
--- /dev/null
+++ b/sources/wp-admin/css/colors/light/colors-rtl.css
@@ -0,0 +1,339 @@
+/*
+ * Button mixin- creates 3d-ish button effect with correct
+ * highlights/shadows, based on a base color.
+ */
+html {
+ background: #f5f5f5; }
+
+/* Links */
+a {
+ color: #0074a2; }
+ a:hover, a:active, a:focus {
+ color: #0099d5; }
+
+#media-upload a.del-link:hover, div.dashboard-widget-submit input:hover, .subsubsub a:hover, .subsubsub a.current:hover {
+ color: #0099d5; }
+
+/* Forms */
+input[type=checkbox]:checked:before {
+ color: #04a4cc; }
+
+input[type=radio]:checked:before {
+ background: #04a4cc; }
+
+.wp-core-ui input[type="reset"]:hover, .wp-core-ui input[type="reset"]:active {
+ color: #0099d5; }
+
+/* Core UI */
+.wp-core-ui .button-primary {
+ background: #04a4cc;
+ border-color: #037c9a;
+ color: white;
+ -webkit-box-shadow: inset 0 1px 0 #22cffb, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #22cffb, 0 1px 0 rgba(0, 0, 0, 0.15); }
+ .wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
+ background: #0490b3;
+ border-color: #036881;
+ color: white;
+ -webkit-box-shadow: inset 0 1px 0 #09cafa, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #09cafa, 0 1px 0 rgba(0, 0, 0, 0.15); }
+ .wp-core-ui .button-primary:active {
+ background: #037c9a;
+ border-color: #036881;
+ color: white;
+ -webkit-box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
+ box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5); }
+ .wp-core-ui .button-primary[disabled], .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary.button-primary-disabled, .wp-core-ui .button-primary.disabled {
+ color: #c7cfd1 !important;
+ background: #0384a4 !important;
+ border-color: #036881 !important;
+ text-shadow: none !important; }
+.wp-core-ui .wp-ui-primary {
+ color: #333;
+ background-color: #e5e5e5; }
+.wp-core-ui .wp-ui-text-primary {
+ color: #e5e5e5; }
+.wp-core-ui .wp-ui-highlight {
+ color: #fff;
+ background-color: #888; }
+.wp-core-ui .wp-ui-text-highlight {
+ color: #888; }
+.wp-core-ui .wp-ui-notification {
+ color: #fff;
+ background-color: #d64e07; }
+.wp-core-ui .wp-ui-text-notification {
+ color: #d64e07; }
+.wp-core-ui .wp-ui-text-icon {
+ color: #999; }
+
+/* List tables */
+.wrap .add-new-h2:hover, #add-new-comment a:hover, .tablenav .tablenav-pages a:hover, .tablenav .tablenav-pages a:focus {
+ color: #333;
+ background-color: #e5e5e5; }
+
+.view-switch a.current:before {
+ color: #e5e5e5; }
+
+.view-switch a:hover:before {
+ color: #d64e07; }
+
+.post-com-count:hover:after {
+ border-top-color: #e5e5e5; }
+
+.post-com-count:hover span {
+ color: #333;
+ background-color: #e5e5e5; }
+
+strong .post-com-count:after {
+ border-top-color: #d64e07; }
+
+strong .post-com-count span {
+ background-color: #d64e07; }
+
+/* Admin Menu */
+#adminmenuback, #adminmenuwrap, #adminmenu {
+ background: #e5e5e5; }
+
+#adminmenu a {
+ color: #333; }
+
+#adminmenu div.wp-menu-image:before {
+ color: #999; }
+
+#adminmenu a:hover, #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus {
+ color: #fff;
+ background-color: #888; }
+
+#adminmenu li.menu-top:hover div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top div.wp-menu-image:before {
+ color: #ccc; }
+
+/* Active tabs use a bottom border color that matches the page background color. */
+.about-wrap h2 .nav-tab-active, .nav-tab-active, .nav-tab-active:hover {
+ background-color: #f5f5f5;
+ border-bottom-color: #f5f5f5; }
+
+/* Admin Menu: submenu */
+#adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, .folded #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
+ background: #fff; }
+
+#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
+ border-left-color: #fff; }
+
+#adminmenu .wp-submenu .wp-submenu-head {
+ color: #686868; }
+
+#adminmenu .wp-submenu a, #adminmenu .wp-has-current-submenu .wp-submenu a, .folded #adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
+ color: #686868; }
+ #adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-has-current-submenu .wp-submenu a:focus, #adminmenu .wp-has-current-submenu .wp-submenu a:hover, .folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus, .folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover {
+ color: #04a4cc; }
+
+/* Admin Menu: current */
+#adminmenu .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a {
+ color: #333; }
+ #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus {
+ color: #04a4cc; }
+
+ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after {
+ border-left-color: #f5f5f5; }
+
+#adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu li.current.menu-top {
+ color: #fff;
+ background: #888; }
+
+#adminmenu li.wp-has-current-submenu div.wp-menu-image:before {
+ color: #ccc; }
+
+/* Admin Menu: bubble */
+#adminmenu .awaiting-mod, #adminmenu .update-plugins {
+ color: #fff;
+ background: #d64e07; }
+
+#adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins, #adminmenu li:hover a .awaiting-mod, #adminmenu li.menu-top:hover > a .update-plugins {
+ color: #333;
+ background: #fff; }
+
+/* Admin Menu: collapse button */
+#collapse-menu {
+ color: #777; }
+
+#collapse-menu:hover {
+ color: #333; }
+
+#collapse-button div:after {
+ color: #999; }
+
+#collapse-menu:hover #collapse-button div:after {
+ color: #555; }
+
+/* Admin Bar */
+#wpadminbar {
+ color: #333;
+ background: #e5e5e5; }
+
+#wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon {
+ color: #333; }
+
+#wpadminbar .ab-icon, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar .ab-item:after {
+ color: #999; }
+
+#wpadminbar .ab-top-menu > li:hover > .ab-item, #wpadminbar .ab-top-menu > li.hover > .ab-item, #wpadminbar .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar-nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
+ color: #04a4cc;
+ background: #fff; }
+
+#wpadminbar > #wp-toolbar li:hover span.ab-label, #wpadminbar > #wp-toolbar li.hover span.ab-label, #wpadminbar > #wp-toolbar a:focus span.ab-label {
+ color: #04a4cc; }
+
+#wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li:hover .ab-item:after, #wpadminbar li:hover #adminbarsearch:before {
+ color: #ccc; }
+
+/* Admin Bar: submenu */
+#wpadminbar .menupop .ab-sub-wrapper {
+ background: #fff; }
+
+#wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
+ background: #f6f7f7; }
+
+#wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar-nojs .quicklinks .menupop:hover ul li a {
+ color: #686868; }
+
+#wpadminbar .quicklinks li .blavatar, #wpadminbar .menupop .menupop > .ab-item:before {
+ color: #999; }
+
+#wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li .ab-item:focus:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover .ab-item:after, #wpadminbar li.hover .ab-item:after, #wpadminbar li:hover #adminbarsearch:before {
+ color: #04a4cc; }
+
+#wpadminbar .quicklinks li a:hover .blavatar, #wpadminbar .menupop .menupop > .ab-item:hover:before {
+ color: #04a4cc; }
+
+/* Admin Bar: search */
+#wpadminbar #adminbarsearch:before {
+ color: #999; }
+
+#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
+ color: #333;
+ background: #f7f7f7; }
+
+#wpadminbar #adminbarsearch .adminbar-input::-webkit-input-placeholder {
+ color: #333;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input:-moz-placeholder {
+ color: #333;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input::-moz-placeholder {
+ color: #333;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input:-ms-input-placeholder {
+ color: #333;
+ opacity: 0.7; }
+
+/* Admin Bar: my account */
+#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
+ border-color: #f7f7f7;
+ background-color: #f7f7f7; }
+
+#wpadminbar #wp-admin-bar-user-info .display-name {
+ color: #333; }
+
+#wpadminbar #wp-admin-bar-user-info a:hover .display-name {
+ color: #04a4cc; }
+
+#wpadminbar #wp-admin-bar-user-info .username {
+ color: #686868; }
+
+/* Pointers */
+.wp-pointer .wp-pointer-content h3 {
+ background-color: #04a4cc;
+ border-color: #0490b3; }
+
+.wp-pointer .wp-pointer-content h3:before {
+ color: #04a4cc; }
+
+.wp-pointer.wp-pointer-top .wp-pointer-arrow, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow {
+ border-bottom-color: #04a4cc; }
+
+/* Media Uploader */
+.media-item .bar, .media-progress-bar div {
+ background-color: #04a4cc; }
+
+.details.attachment {
+ -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 5px #04a4cc;
+ box-shadow: 0 0 0 1px #fff, 0 0 0 5px #04a4cc; }
+
+.attachment.details .check {
+ background-color: #04a4cc;
+ -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 2px #04a4cc;
+ box-shadow: 0 0 0 1px #fff, 0 0 0 2px #04a4cc; }
+
+/* Themes */
+.theme-browser .theme.active .theme-name, .theme-browser .theme.add-new-theme:hover:after {
+ background: #04a4cc; }
+
+.theme-browser .theme.add-new-theme:hover span:after {
+ color: #04a4cc; }
+
+.theme-overlay .theme-header .close:hover, .theme-overlay .theme-header .right:hover, .theme-overlay .theme-header .left:hover {
+ background: #04a4cc; }
+
+.theme-section.current, .theme-filter.current {
+ border-bottom-color: #e5e5e5; }
+
+body.more-filters-opened .more-filters, body.more-filters-opened .more-filters:before {
+ color: #333;
+ background-color: #e5e5e5; }
+
+body.more-filters-opened .more-filters:hover, body.more-filters-opened .more-filters:focus, body.more-filters-opened .more-filters:hover:before, body.more-filters-opened .more-filters:focus:before {
+ background-color: #888;
+ color: #fff; }
+
+/* Widgets */
+.widgets-chooser li.widgets-chooser-selected {
+ background-color: #888;
+ color: #fff; }
+
+.widgets-chooser li.widgets-chooser-selected:before, .widgets-chooser li.widgets-chooser-selected:focus:before {
+ color: #fff; }
+
+/* Customize */
+#customize-theme-controls .widget-area-select .selected {
+ background-color: #888;
+ color: #fff; }
+
+/* jQuery UI Slider */
+.wp-slider .ui-slider-handle, .wp-slider .ui-slider-handle.ui-state-hover, .wp-slider .ui-slider-handle.focus {
+ background: #04a4cc;
+ border-color: #037c9a;
+ -webkit-box-shadow: inset 0 1px 0 #22cffb, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #22cffb, 0 1px 0 rgba(0, 0, 0, 0.15); }
+
+/* Thickbox: Plugin information */
+#sidemenu a.current {
+ background: #f5f5f5;
+ border-bottom-color: #f5f5f5; }
+
+#plugin-information .action-button {
+ background: #04a4cc; }
+
+/* Responsive Component */
+div#wp-responsive-toggle a:before {
+ color: #999; }
+
+.wp-responsive-open div#wp-responsive-toggle a {
+ border-color: transparent;
+ background: #888; }
+
+.star-rating .star {
+ color: #04a4cc; }
+
+.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
+ background: #fff; }
+
+/* temporary fix for admin-bar hover color */
+#wpadminbar .ab-top-menu > li:hover > .ab-item, #wpadminbar .ab-top-menu > li.hover > .ab-item, #wpadminbar > #wp-toolbar > #wp-admin-bar-root-default li:hover span.ab-label, #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary li.hover span.ab-label, #wpadminbar .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar-nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
+ color: #333; }
+
+/* Override the theme filter highlight color for this scheme */
+.theme-section.current, .theme-filter.current {
+ border-bottom-color: #04a4cc; }
diff --git a/sources/wp-admin/css/colors/light/colors-rtl.min.css b/sources/wp-admin/css/colors/light/colors-rtl.min.css
new file mode 100644
index 0000000..b0519d1
--- /dev/null
+++ b/sources/wp-admin/css/colors/light/colors-rtl.min.css
@@ -0,0 +1 @@
+html{background:#f5f5f5}a{color:#0074a2}#media-upload a.del-link:hover,.subsubsub a.current:hover,.subsubsub a:hover,a:active,a:focus,a:hover,div.dashboard-widget-submit input:hover{color:#0099d5}input[type=checkbox]:checked:before{color:#04a4cc}input[type=radio]:checked:before{background:#04a4cc}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:#0099d5}.wp-core-ui .button-primary{background:#04a4cc;border-color:#037c9a;color:#fff;-webkit-box-shadow:inset 0 1px 0 #22cffb,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #22cffb,0 1px 0 rgba(0,0,0,.15)}.wp-core-ui .button-primary:focus,.wp-core-ui .button-primary:hover{background:#0490b3;border-color:#036881;color:#fff;-webkit-box-shadow:inset 0 1px 0 #09cafa,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #09cafa,0 1px 0 rgba(0,0,0,.15)}.wp-core-ui .button-primary:active{background:#037c9a;border-color:#036881;color:#fff;-webkit-box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5);box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5)}.wp-core-ui .button-primary.button-primary-disabled,.wp-core-ui .button-primary.disabled,.wp-core-ui .button-primary:disabled,.wp-core-ui .button-primary[disabled]{color:#c7cfd1!important;background:#0384a4!important;border-color:#036881!important;text-shadow:none!important}.wp-core-ui .wp-ui-primary{color:#333;background-color:#e5e5e5}.wp-core-ui .wp-ui-text-primary{color:#e5e5e5}.wp-core-ui .wp-ui-highlight{color:#fff;background-color:#888}.wp-core-ui .wp-ui-text-highlight{color:#888}.wp-core-ui .wp-ui-notification{color:#fff;background-color:#d64e07}.wp-core-ui .wp-ui-text-notification{color:#d64e07}.wp-core-ui .wp-ui-text-icon{color:#999}#add-new-comment a:hover,.tablenav .tablenav-pages a:focus,.tablenav .tablenav-pages a:hover,.wrap .add-new-h2:hover{color:#333;background-color:#e5e5e5}.view-switch a.current:before{color:#e5e5e5}.view-switch a:hover:before{color:#d64e07}.post-com-count:hover:after{border-top-color:#e5e5e5}.post-com-count:hover span{color:#333;background-color:#e5e5e5}strong .post-com-count:after{border-top-color:#d64e07}strong .post-com-count span{background-color:#d64e07}#adminmenu,#adminmenuback,#adminmenuwrap{background:#e5e5e5}#adminmenu a{color:#333}#adminmenu div.wp-menu-image:before{color:#999}#adminmenu a:hover,#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{color:#fff;background-color:#888}#adminmenu li.menu-top:hover div.wp-menu-image:before,#adminmenu li.opensub>a.menu-top div.wp-menu-image:before{color:#ccc}.about-wrap h2 .nav-tab-active,.nav-tab-active,.nav-tab-active:hover{background-color:#f5f5f5;border-bottom-color:#f5f5f5}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,#adminmenu .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu{background:#fff}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after{border-left-color:#fff}#adminmenu .wp-has-current-submenu .wp-submenu a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a,#adminmenu .wp-submenu .wp-submenu-head,#adminmenu .wp-submenu a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a,.folded #adminmenu .wp-has-current-submenu .wp-submenu a{color:#686868}#adminmenu .wp-has-current-submenu .wp-submenu a:focus,#adminmenu .wp-has-current-submenu .wp-submenu a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover,#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:hover,.folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus,.folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover{color:#04a4cc}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a,#adminmenu .wp-submenu li.current a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a{color:#333}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:hover{color:#04a4cc}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{border-left-color:#f5f5f5}#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{color:#fff;background:#888}#adminmenu li.wp-has-current-submenu div.wp-menu-image:before{color:#ccc}#adminmenu .awaiting-mod,#adminmenu .update-plugins{color:#fff;background:#d64e07}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod,#adminmenu li.menu-top:hover>a .update-plugins,#adminmenu li:hover a .awaiting-mod{color:#333;background:#fff}#collapse-menu{color:#777}#collapse-menu:hover{color:#333}#collapse-button div:after{color:#999}#collapse-menu:hover #collapse-button div:after{color:#555}#wpadminbar{color:#333;background:#e5e5e5}#wpadminbar .ab-item,#wpadminbar a.ab-item,#wpadminbar>#wp-toolbar span.ab-label,#wpadminbar>#wp-toolbar span.noticon{color:#333}#wpadminbar .ab-icon,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:after,#wpadminbar .ab-item:before{color:#999}#wpadminbar .ab-top-menu>li.hover>.ab-item,#wpadminbar .ab-top-menu>li.menupop.hover>.ab-item,#wpadminbar .ab-top-menu>li:hover>.ab-item,#wpadminbar .ab-top-menu>li>.ab-item:focus,#wpadminbar-nojs .ab-top-menu>li.menupop:hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus{background:#fff}#wpadminbar>#wp-toolbar a:focus span.ab-label,#wpadminbar>#wp-toolbar li.hover span.ab-label,#wpadminbar>#wp-toolbar li:hover span.ab-label{color:#04a4cc}#wpadminbar .menupop .ab-sub-wrapper{background:#fff}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu{background:#f6f7f7}#wpadminbar .ab-submenu .ab-item,#wpadminbar .quicklinks .menupop ul li a,#wpadminbar .quicklinks .menupop.hover ul li a,#wpadminbar-nojs .quicklinks .menupop:hover ul li a{color:#686868}#wpadminbar .menupop .menupop>.ab-item:before,#wpadminbar .quicklinks li .blavatar{color:#999}#wpadminbar .menupop .menupop>.ab-item:hover:before,#wpadminbar .quicklinks .menupop ul li a:focus,#wpadminbar .quicklinks .menupop ul li a:focus strong,#wpadminbar .quicklinks .menupop ul li a:hover,#wpadminbar .quicklinks .menupop ul li a:hover strong,#wpadminbar .quicklinks .menupop.hover ul li a:focus,#wpadminbar .quicklinks .menupop.hover ul li a:hover,#wpadminbar .quicklinks li a:hover .blavatar,#wpadminbar li .ab-item:focus:before,#wpadminbar li a:focus .ab-icon:before,#wpadminbar li.hover .ab-icon:before,#wpadminbar li.hover .ab-item:after,#wpadminbar li.hover .ab-item:before,#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:after,#wpadminbar li:hover .ab-item:before,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover{color:#04a4cc}#wpadminbar #adminbarsearch:before{color:#999}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input:focus{color:#333;background:#f7f7f7}#wpadminbar #adminbarsearch .adminbar-input::-webkit-input-placeholder{color:#333;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input:-moz-placeholder{color:#333;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input::-moz-placeholder{color:#333;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input:-ms-input-placeholder{color:#333;opacity:.7}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{border-color:#f7f7f7;background-color:#f7f7f7}#wpadminbar #wp-admin-bar-user-info .display-name{color:#333}#wpadminbar #wp-admin-bar-user-info a:hover .display-name{color:#04a4cc}#wpadminbar #wp-admin-bar-user-info .username{color:#686868}.wp-pointer .wp-pointer-content h3{background-color:#04a4cc;border-color:#0490b3}.wp-pointer .wp-pointer-content h3:before{color:#04a4cc}.wp-pointer.wp-pointer-top .wp-pointer-arrow,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow{border-bottom-color:#04a4cc}.media-item .bar,.media-progress-bar div{background-color:#04a4cc}.details.attachment{-webkit-box-shadow:0 0 0 1px #fff,0 0 0 5px #04a4cc;box-shadow:0 0 0 1px #fff,0 0 0 5px #04a4cc}.attachment.details .check{background-color:#04a4cc;-webkit-box-shadow:0 0 0 1px #fff,0 0 0 2px #04a4cc;box-shadow:0 0 0 1px #fff,0 0 0 2px #04a4cc}.theme-browser .theme.active .theme-name,.theme-browser .theme.add-new-theme:hover:after{background:#04a4cc}.theme-browser .theme.add-new-theme:hover span:after{color:#04a4cc}.theme-overlay .theme-header .close:hover,.theme-overlay .theme-header .left:hover,.theme-overlay .theme-header .right:hover{background:#04a4cc}body.more-filters-opened .more-filters,body.more-filters-opened .more-filters:before{color:#333;background-color:#e5e5e5}.widgets-chooser li.widgets-chooser-selected,body.more-filters-opened .more-filters:focus,body.more-filters-opened .more-filters:focus:before,body.more-filters-opened .more-filters:hover,body.more-filters-opened .more-filters:hover:before{background-color:#888;color:#fff}.widgets-chooser li.widgets-chooser-selected:before,.widgets-chooser li.widgets-chooser-selected:focus:before{color:#fff}#customize-theme-controls .widget-area-select .selected{background-color:#888;color:#fff}.wp-slider .ui-slider-handle,.wp-slider .ui-slider-handle.focus,.wp-slider .ui-slider-handle.ui-state-hover{background:#04a4cc;border-color:#037c9a;-webkit-box-shadow:inset 0 1px 0 #22cffb,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #22cffb,0 1px 0 rgba(0,0,0,.15)}#sidemenu a.current{background:#f5f5f5;border-bottom-color:#f5f5f5}#plugin-information .action-button{background:#04a4cc}div#wp-responsive-toggle a:before{color:#999}.wp-responsive-open div#wp-responsive-toggle a{border-color:transparent;background:#888}.star-rating .star{color:#04a4cc}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:#fff}#wpadminbar .ab-top-menu>li.hover>.ab-item,#wpadminbar .ab-top-menu>li.menupop.hover>.ab-item,#wpadminbar .ab-top-menu>li:hover>.ab-item,#wpadminbar .ab-top-menu>li>.ab-item:focus,#wpadminbar-nojs .ab-top-menu>li.menupop:hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus,#wpadminbar>#wp-toolbar>#wp-admin-bar-root-default li:hover span.ab-label,#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary li.hover span.ab-label{color:#333}.theme-filter.current,.theme-section.current{border-bottom-color:#04a4cc}
\ No newline at end of file
diff --git a/sources/wp-admin/css/colors/light/colors.css b/sources/wp-admin/css/colors/light/colors.css
new file mode 100644
index 0000000..ca83d94
--- /dev/null
+++ b/sources/wp-admin/css/colors/light/colors.css
@@ -0,0 +1,339 @@
+/*
+ * Button mixin- creates 3d-ish button effect with correct
+ * highlights/shadows, based on a base color.
+ */
+html {
+ background: #f5f5f5; }
+
+/* Links */
+a {
+ color: #0074a2; }
+ a:hover, a:active, a:focus {
+ color: #0099d5; }
+
+#media-upload a.del-link:hover, div.dashboard-widget-submit input:hover, .subsubsub a:hover, .subsubsub a.current:hover {
+ color: #0099d5; }
+
+/* Forms */
+input[type=checkbox]:checked:before {
+ color: #04a4cc; }
+
+input[type=radio]:checked:before {
+ background: #04a4cc; }
+
+.wp-core-ui input[type="reset"]:hover, .wp-core-ui input[type="reset"]:active {
+ color: #0099d5; }
+
+/* Core UI */
+.wp-core-ui .button-primary {
+ background: #04a4cc;
+ border-color: #037c9a;
+ color: white;
+ -webkit-box-shadow: inset 0 1px 0 #22cffb, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #22cffb, 0 1px 0 rgba(0, 0, 0, 0.15); }
+ .wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
+ background: #0490b3;
+ border-color: #036881;
+ color: white;
+ -webkit-box-shadow: inset 0 1px 0 #09cafa, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #09cafa, 0 1px 0 rgba(0, 0, 0, 0.15); }
+ .wp-core-ui .button-primary:active {
+ background: #037c9a;
+ border-color: #036881;
+ color: white;
+ -webkit-box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
+ box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5); }
+ .wp-core-ui .button-primary[disabled], .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary.button-primary-disabled, .wp-core-ui .button-primary.disabled {
+ color: #c7cfd1 !important;
+ background: #0384a4 !important;
+ border-color: #036881 !important;
+ text-shadow: none !important; }
+.wp-core-ui .wp-ui-primary {
+ color: #333;
+ background-color: #e5e5e5; }
+.wp-core-ui .wp-ui-text-primary {
+ color: #e5e5e5; }
+.wp-core-ui .wp-ui-highlight {
+ color: #fff;
+ background-color: #888; }
+.wp-core-ui .wp-ui-text-highlight {
+ color: #888; }
+.wp-core-ui .wp-ui-notification {
+ color: #fff;
+ background-color: #d64e07; }
+.wp-core-ui .wp-ui-text-notification {
+ color: #d64e07; }
+.wp-core-ui .wp-ui-text-icon {
+ color: #999; }
+
+/* List tables */
+.wrap .add-new-h2:hover, #add-new-comment a:hover, .tablenav .tablenav-pages a:hover, .tablenav .tablenav-pages a:focus {
+ color: #333;
+ background-color: #e5e5e5; }
+
+.view-switch a.current:before {
+ color: #e5e5e5; }
+
+.view-switch a:hover:before {
+ color: #d64e07; }
+
+.post-com-count:hover:after {
+ border-top-color: #e5e5e5; }
+
+.post-com-count:hover span {
+ color: #333;
+ background-color: #e5e5e5; }
+
+strong .post-com-count:after {
+ border-top-color: #d64e07; }
+
+strong .post-com-count span {
+ background-color: #d64e07; }
+
+/* Admin Menu */
+#adminmenuback, #adminmenuwrap, #adminmenu {
+ background: #e5e5e5; }
+
+#adminmenu a {
+ color: #333; }
+
+#adminmenu div.wp-menu-image:before {
+ color: #999; }
+
+#adminmenu a:hover, #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus {
+ color: #fff;
+ background-color: #888; }
+
+#adminmenu li.menu-top:hover div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top div.wp-menu-image:before {
+ color: #ccc; }
+
+/* Active tabs use a bottom border color that matches the page background color. */
+.about-wrap h2 .nav-tab-active, .nav-tab-active, .nav-tab-active:hover {
+ background-color: #f5f5f5;
+ border-bottom-color: #f5f5f5; }
+
+/* Admin Menu: submenu */
+#adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, .folded #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
+ background: #fff; }
+
+#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
+ border-right-color: #fff; }
+
+#adminmenu .wp-submenu .wp-submenu-head {
+ color: #686868; }
+
+#adminmenu .wp-submenu a, #adminmenu .wp-has-current-submenu .wp-submenu a, .folded #adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
+ color: #686868; }
+ #adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-has-current-submenu .wp-submenu a:focus, #adminmenu .wp-has-current-submenu .wp-submenu a:hover, .folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus, .folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover {
+ color: #04a4cc; }
+
+/* Admin Menu: current */
+#adminmenu .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a {
+ color: #333; }
+ #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus {
+ color: #04a4cc; }
+
+ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after {
+ border-right-color: #f5f5f5; }
+
+#adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu li.current.menu-top {
+ color: #fff;
+ background: #888; }
+
+#adminmenu li.wp-has-current-submenu div.wp-menu-image:before {
+ color: #ccc; }
+
+/* Admin Menu: bubble */
+#adminmenu .awaiting-mod, #adminmenu .update-plugins {
+ color: #fff;
+ background: #d64e07; }
+
+#adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins, #adminmenu li:hover a .awaiting-mod, #adminmenu li.menu-top:hover > a .update-plugins {
+ color: #333;
+ background: #fff; }
+
+/* Admin Menu: collapse button */
+#collapse-menu {
+ color: #777; }
+
+#collapse-menu:hover {
+ color: #333; }
+
+#collapse-button div:after {
+ color: #999; }
+
+#collapse-menu:hover #collapse-button div:after {
+ color: #555; }
+
+/* Admin Bar */
+#wpadminbar {
+ color: #333;
+ background: #e5e5e5; }
+
+#wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon {
+ color: #333; }
+
+#wpadminbar .ab-icon, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar .ab-item:after {
+ color: #999; }
+
+#wpadminbar .ab-top-menu > li:hover > .ab-item, #wpadminbar .ab-top-menu > li.hover > .ab-item, #wpadminbar .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar-nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
+ color: #04a4cc;
+ background: #fff; }
+
+#wpadminbar > #wp-toolbar li:hover span.ab-label, #wpadminbar > #wp-toolbar li.hover span.ab-label, #wpadminbar > #wp-toolbar a:focus span.ab-label {
+ color: #04a4cc; }
+
+#wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li:hover .ab-item:after, #wpadminbar li:hover #adminbarsearch:before {
+ color: #ccc; }
+
+/* Admin Bar: submenu */
+#wpadminbar .menupop .ab-sub-wrapper {
+ background: #fff; }
+
+#wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
+ background: #f6f7f7; }
+
+#wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar-nojs .quicklinks .menupop:hover ul li a {
+ color: #686868; }
+
+#wpadminbar .quicklinks li .blavatar, #wpadminbar .menupop .menupop > .ab-item:before {
+ color: #999; }
+
+#wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li .ab-item:focus:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover .ab-item:after, #wpadminbar li.hover .ab-item:after, #wpadminbar li:hover #adminbarsearch:before {
+ color: #04a4cc; }
+
+#wpadminbar .quicklinks li a:hover .blavatar, #wpadminbar .menupop .menupop > .ab-item:hover:before {
+ color: #04a4cc; }
+
+/* Admin Bar: search */
+#wpadminbar #adminbarsearch:before {
+ color: #999; }
+
+#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
+ color: #333;
+ background: #f7f7f7; }
+
+#wpadminbar #adminbarsearch .adminbar-input::-webkit-input-placeholder {
+ color: #333;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input:-moz-placeholder {
+ color: #333;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input::-moz-placeholder {
+ color: #333;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input:-ms-input-placeholder {
+ color: #333;
+ opacity: 0.7; }
+
+/* Admin Bar: my account */
+#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
+ border-color: #f7f7f7;
+ background-color: #f7f7f7; }
+
+#wpadminbar #wp-admin-bar-user-info .display-name {
+ color: #333; }
+
+#wpadminbar #wp-admin-bar-user-info a:hover .display-name {
+ color: #04a4cc; }
+
+#wpadminbar #wp-admin-bar-user-info .username {
+ color: #686868; }
+
+/* Pointers */
+.wp-pointer .wp-pointer-content h3 {
+ background-color: #04a4cc;
+ border-color: #0490b3; }
+
+.wp-pointer .wp-pointer-content h3:before {
+ color: #04a4cc; }
+
+.wp-pointer.wp-pointer-top .wp-pointer-arrow, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow {
+ border-bottom-color: #04a4cc; }
+
+/* Media Uploader */
+.media-item .bar, .media-progress-bar div {
+ background-color: #04a4cc; }
+
+.details.attachment {
+ -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 5px #04a4cc;
+ box-shadow: 0 0 0 1px #fff, 0 0 0 5px #04a4cc; }
+
+.attachment.details .check {
+ background-color: #04a4cc;
+ -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 2px #04a4cc;
+ box-shadow: 0 0 0 1px #fff, 0 0 0 2px #04a4cc; }
+
+/* Themes */
+.theme-browser .theme.active .theme-name, .theme-browser .theme.add-new-theme:hover:after {
+ background: #04a4cc; }
+
+.theme-browser .theme.add-new-theme:hover span:after {
+ color: #04a4cc; }
+
+.theme-overlay .theme-header .close:hover, .theme-overlay .theme-header .right:hover, .theme-overlay .theme-header .left:hover {
+ background: #04a4cc; }
+
+.theme-section.current, .theme-filter.current {
+ border-bottom-color: #e5e5e5; }
+
+body.more-filters-opened .more-filters, body.more-filters-opened .more-filters:before {
+ color: #333;
+ background-color: #e5e5e5; }
+
+body.more-filters-opened .more-filters:hover, body.more-filters-opened .more-filters:focus, body.more-filters-opened .more-filters:hover:before, body.more-filters-opened .more-filters:focus:before {
+ background-color: #888;
+ color: #fff; }
+
+/* Widgets */
+.widgets-chooser li.widgets-chooser-selected {
+ background-color: #888;
+ color: #fff; }
+
+.widgets-chooser li.widgets-chooser-selected:before, .widgets-chooser li.widgets-chooser-selected:focus:before {
+ color: #fff; }
+
+/* Customize */
+#customize-theme-controls .widget-area-select .selected {
+ background-color: #888;
+ color: #fff; }
+
+/* jQuery UI Slider */
+.wp-slider .ui-slider-handle, .wp-slider .ui-slider-handle.ui-state-hover, .wp-slider .ui-slider-handle.focus {
+ background: #04a4cc;
+ border-color: #037c9a;
+ -webkit-box-shadow: inset 0 1px 0 #22cffb, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #22cffb, 0 1px 0 rgba(0, 0, 0, 0.15); }
+
+/* Thickbox: Plugin information */
+#sidemenu a.current {
+ background: #f5f5f5;
+ border-bottom-color: #f5f5f5; }
+
+#plugin-information .action-button {
+ background: #04a4cc; }
+
+/* Responsive Component */
+div#wp-responsive-toggle a:before {
+ color: #999; }
+
+.wp-responsive-open div#wp-responsive-toggle a {
+ border-color: transparent;
+ background: #888; }
+
+.star-rating .star {
+ color: #04a4cc; }
+
+.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
+ background: #fff; }
+
+/* temporary fix for admin-bar hover color */
+#wpadminbar .ab-top-menu > li:hover > .ab-item, #wpadminbar .ab-top-menu > li.hover > .ab-item, #wpadminbar > #wp-toolbar > #wp-admin-bar-root-default li:hover span.ab-label, #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary li.hover span.ab-label, #wpadminbar .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar-nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
+ color: #333; }
+
+/* Override the theme filter highlight color for this scheme */
+.theme-section.current, .theme-filter.current {
+ border-bottom-color: #04a4cc; }
diff --git a/sources/wp-admin/css/colors/light/colors.min.css b/sources/wp-admin/css/colors/light/colors.min.css
new file mode 100644
index 0000000..daaa6ea
--- /dev/null
+++ b/sources/wp-admin/css/colors/light/colors.min.css
@@ -0,0 +1 @@
+html{background:#f5f5f5}a{color:#0074a2}#media-upload a.del-link:hover,.subsubsub a.current:hover,.subsubsub a:hover,a:active,a:focus,a:hover,div.dashboard-widget-submit input:hover{color:#0099d5}input[type=checkbox]:checked:before{color:#04a4cc}input[type=radio]:checked:before{background:#04a4cc}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:#0099d5}.wp-core-ui .button-primary{background:#04a4cc;border-color:#037c9a;color:#fff;-webkit-box-shadow:inset 0 1px 0 #22cffb,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #22cffb,0 1px 0 rgba(0,0,0,.15)}.wp-core-ui .button-primary:focus,.wp-core-ui .button-primary:hover{background:#0490b3;border-color:#036881;color:#fff;-webkit-box-shadow:inset 0 1px 0 #09cafa,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #09cafa,0 1px 0 rgba(0,0,0,.15)}.wp-core-ui .button-primary:active{background:#037c9a;border-color:#036881;color:#fff;-webkit-box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5);box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5)}.wp-core-ui .button-primary.button-primary-disabled,.wp-core-ui .button-primary.disabled,.wp-core-ui .button-primary:disabled,.wp-core-ui .button-primary[disabled]{color:#c7cfd1!important;background:#0384a4!important;border-color:#036881!important;text-shadow:none!important}.wp-core-ui .wp-ui-primary{color:#333;background-color:#e5e5e5}.wp-core-ui .wp-ui-text-primary{color:#e5e5e5}.wp-core-ui .wp-ui-highlight{color:#fff;background-color:#888}.wp-core-ui .wp-ui-text-highlight{color:#888}.wp-core-ui .wp-ui-notification{color:#fff;background-color:#d64e07}.wp-core-ui .wp-ui-text-notification{color:#d64e07}.wp-core-ui .wp-ui-text-icon{color:#999}#add-new-comment a:hover,.tablenav .tablenav-pages a:focus,.tablenav .tablenav-pages a:hover,.wrap .add-new-h2:hover{color:#333;background-color:#e5e5e5}.view-switch a.current:before{color:#e5e5e5}.view-switch a:hover:before{color:#d64e07}.post-com-count:hover:after{border-top-color:#e5e5e5}.post-com-count:hover span{color:#333;background-color:#e5e5e5}strong .post-com-count:after{border-top-color:#d64e07}strong .post-com-count span{background-color:#d64e07}#adminmenu,#adminmenuback,#adminmenuwrap{background:#e5e5e5}#adminmenu a{color:#333}#adminmenu div.wp-menu-image:before{color:#999}#adminmenu a:hover,#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{color:#fff;background-color:#888}#adminmenu li.menu-top:hover div.wp-menu-image:before,#adminmenu li.opensub>a.menu-top div.wp-menu-image:before{color:#ccc}.about-wrap h2 .nav-tab-active,.nav-tab-active,.nav-tab-active:hover{background-color:#f5f5f5;border-bottom-color:#f5f5f5}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,#adminmenu .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu{background:#fff}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after{border-right-color:#fff}#adminmenu .wp-has-current-submenu .wp-submenu a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a,#adminmenu .wp-submenu .wp-submenu-head,#adminmenu .wp-submenu a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a,.folded #adminmenu .wp-has-current-submenu .wp-submenu a{color:#686868}#adminmenu .wp-has-current-submenu .wp-submenu a:focus,#adminmenu .wp-has-current-submenu .wp-submenu a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover,#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:hover,.folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus,.folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover{color:#04a4cc}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a,#adminmenu .wp-submenu li.current a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a{color:#333}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:hover{color:#04a4cc}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{border-right-color:#f5f5f5}#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{color:#fff;background:#888}#adminmenu li.wp-has-current-submenu div.wp-menu-image:before{color:#ccc}#adminmenu .awaiting-mod,#adminmenu .update-plugins{color:#fff;background:#d64e07}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod,#adminmenu li.menu-top:hover>a .update-plugins,#adminmenu li:hover a .awaiting-mod{color:#333;background:#fff}#collapse-menu{color:#777}#collapse-menu:hover{color:#333}#collapse-button div:after{color:#999}#collapse-menu:hover #collapse-button div:after{color:#555}#wpadminbar{color:#333;background:#e5e5e5}#wpadminbar .ab-item,#wpadminbar a.ab-item,#wpadminbar>#wp-toolbar span.ab-label,#wpadminbar>#wp-toolbar span.noticon{color:#333}#wpadminbar .ab-icon,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:after,#wpadminbar .ab-item:before{color:#999}#wpadminbar .ab-top-menu>li.hover>.ab-item,#wpadminbar .ab-top-menu>li.menupop.hover>.ab-item,#wpadminbar .ab-top-menu>li:hover>.ab-item,#wpadminbar .ab-top-menu>li>.ab-item:focus,#wpadminbar-nojs .ab-top-menu>li.menupop:hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus{background:#fff}#wpadminbar>#wp-toolbar a:focus span.ab-label,#wpadminbar>#wp-toolbar li.hover span.ab-label,#wpadminbar>#wp-toolbar li:hover span.ab-label{color:#04a4cc}#wpadminbar .menupop .ab-sub-wrapper{background:#fff}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu{background:#f6f7f7}#wpadminbar .ab-submenu .ab-item,#wpadminbar .quicklinks .menupop ul li a,#wpadminbar .quicklinks .menupop.hover ul li a,#wpadminbar-nojs .quicklinks .menupop:hover ul li a{color:#686868}#wpadminbar .menupop .menupop>.ab-item:before,#wpadminbar .quicklinks li .blavatar{color:#999}#wpadminbar .menupop .menupop>.ab-item:hover:before,#wpadminbar .quicklinks .menupop ul li a:focus,#wpadminbar .quicklinks .menupop ul li a:focus strong,#wpadminbar .quicklinks .menupop ul li a:hover,#wpadminbar .quicklinks .menupop ul li a:hover strong,#wpadminbar .quicklinks .menupop.hover ul li a:focus,#wpadminbar .quicklinks .menupop.hover ul li a:hover,#wpadminbar .quicklinks li a:hover .blavatar,#wpadminbar li .ab-item:focus:before,#wpadminbar li a:focus .ab-icon:before,#wpadminbar li.hover .ab-icon:before,#wpadminbar li.hover .ab-item:after,#wpadminbar li.hover .ab-item:before,#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:after,#wpadminbar li:hover .ab-item:before,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover{color:#04a4cc}#wpadminbar #adminbarsearch:before{color:#999}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input:focus{color:#333;background:#f7f7f7}#wpadminbar #adminbarsearch .adminbar-input::-webkit-input-placeholder{color:#333;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input:-moz-placeholder{color:#333;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input::-moz-placeholder{color:#333;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input:-ms-input-placeholder{color:#333;opacity:.7}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{border-color:#f7f7f7;background-color:#f7f7f7}#wpadminbar #wp-admin-bar-user-info .display-name{color:#333}#wpadminbar #wp-admin-bar-user-info a:hover .display-name{color:#04a4cc}#wpadminbar #wp-admin-bar-user-info .username{color:#686868}.wp-pointer .wp-pointer-content h3{background-color:#04a4cc;border-color:#0490b3}.wp-pointer .wp-pointer-content h3:before{color:#04a4cc}.wp-pointer.wp-pointer-top .wp-pointer-arrow,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow{border-bottom-color:#04a4cc}.media-item .bar,.media-progress-bar div{background-color:#04a4cc}.details.attachment{-webkit-box-shadow:0 0 0 1px #fff,0 0 0 5px #04a4cc;box-shadow:0 0 0 1px #fff,0 0 0 5px #04a4cc}.attachment.details .check{background-color:#04a4cc;-webkit-box-shadow:0 0 0 1px #fff,0 0 0 2px #04a4cc;box-shadow:0 0 0 1px #fff,0 0 0 2px #04a4cc}.theme-browser .theme.active .theme-name,.theme-browser .theme.add-new-theme:hover:after{background:#04a4cc}.theme-browser .theme.add-new-theme:hover span:after{color:#04a4cc}.theme-overlay .theme-header .close:hover,.theme-overlay .theme-header .left:hover,.theme-overlay .theme-header .right:hover{background:#04a4cc}body.more-filters-opened .more-filters,body.more-filters-opened .more-filters:before{color:#333;background-color:#e5e5e5}.widgets-chooser li.widgets-chooser-selected,body.more-filters-opened .more-filters:focus,body.more-filters-opened .more-filters:focus:before,body.more-filters-opened .more-filters:hover,body.more-filters-opened .more-filters:hover:before{background-color:#888;color:#fff}.widgets-chooser li.widgets-chooser-selected:before,.widgets-chooser li.widgets-chooser-selected:focus:before{color:#fff}#customize-theme-controls .widget-area-select .selected{background-color:#888;color:#fff}.wp-slider .ui-slider-handle,.wp-slider .ui-slider-handle.focus,.wp-slider .ui-slider-handle.ui-state-hover{background:#04a4cc;border-color:#037c9a;-webkit-box-shadow:inset 0 1px 0 #22cffb,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #22cffb,0 1px 0 rgba(0,0,0,.15)}#sidemenu a.current{background:#f5f5f5;border-bottom-color:#f5f5f5}#plugin-information .action-button{background:#04a4cc}div#wp-responsive-toggle a:before{color:#999}.wp-responsive-open div#wp-responsive-toggle a{border-color:transparent;background:#888}.star-rating .star{color:#04a4cc}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:#fff}#wpadminbar .ab-top-menu>li.hover>.ab-item,#wpadminbar .ab-top-menu>li.menupop.hover>.ab-item,#wpadminbar .ab-top-menu>li:hover>.ab-item,#wpadminbar .ab-top-menu>li>.ab-item:focus,#wpadminbar-nojs .ab-top-menu>li.menupop:hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus,#wpadminbar>#wp-toolbar>#wp-admin-bar-root-default li:hover span.ab-label,#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary li.hover span.ab-label{color:#333}.theme-filter.current,.theme-section.current{border-bottom-color:#04a4cc}
\ No newline at end of file
diff --git a/sources/wp-admin/css/colors/light/colors.scss b/sources/wp-admin/css/colors/light/colors.scss
new file mode 100644
index 0000000..b12774c
--- /dev/null
+++ b/sources/wp-admin/css/colors/light/colors.scss
@@ -0,0 +1,38 @@
+$base-color: #e5e5e5;
+$icon-color: #999;
+$text-color: #333;
+$highlight-color: #04a4cc;
+$notification-color: #d64e07;
+
+$body-background: #f5f5f5;
+
+$menu-highlight-text: #fff;
+$menu-highlight-icon: #ccc;
+$menu-highlight-background: #888;
+
+$menu-bubble-text: #fff;
+$menu-avatar-frame: #aaa;
+$menu-submenu-background: #fff;
+
+$menu-collapse-text: #777;
+$menu-collapse-focus-icon: #555;
+
+@import "../_admin.scss";
+
+/* temporary fix for admin-bar hover color */
+#wpadminbar .ab-top-menu > li:hover > .ab-item,
+#wpadminbar .ab-top-menu > li.hover > .ab-item,
+#wpadminbar > #wp-toolbar > #wp-admin-bar-root-default li:hover span.ab-label,
+#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary li.hover span.ab-label,
+#wpadminbar .ab-top-menu > li > .ab-item:focus,
+#wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus,
+#wpadminbar-nojs .ab-top-menu > li.menupop:hover > .ab-item,
+#wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
+ color: $text-color;
+}
+
+/* Override the theme filter highlight color for this scheme */
+.theme-section.current,
+.theme-filter.current {
+ border-bottom-color: $highlight-color;
+}
diff --git a/sources/wp-admin/css/colors/midnight/colors-rtl.css b/sources/wp-admin/css/colors/midnight/colors-rtl.css
new file mode 100644
index 0000000..2dc30e5
--- /dev/null
+++ b/sources/wp-admin/css/colors/midnight/colors-rtl.css
@@ -0,0 +1,331 @@
+/*
+ * Button mixin- creates 3d-ish button effect with correct
+ * highlights/shadows, based on a base color.
+ */
+html {
+ background: #f1f1f1; }
+
+/* Links */
+a {
+ color: #0074a2; }
+ a:hover, a:active, a:focus {
+ color: #0099d5; }
+
+#media-upload a.del-link:hover, div.dashboard-widget-submit input:hover, .subsubsub a:hover, .subsubsub a.current:hover {
+ color: #0099d5; }
+
+/* Forms */
+input[type=checkbox]:checked:before {
+ color: #e14d43; }
+
+input[type=radio]:checked:before {
+ background: #e14d43; }
+
+.wp-core-ui input[type="reset"]:hover, .wp-core-ui input[type="reset"]:active {
+ color: #0099d5; }
+
+/* Core UI */
+.wp-core-ui .button-primary {
+ background: #e14d43;
+ border-color: #d02a21;
+ color: white;
+ -webkit-box-shadow: inset 0 1px 0 #ec8a85, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #ec8a85, 0 1px 0 rgba(0, 0, 0, 0.15); }
+ .wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
+ background: #dd362d;
+ border-color: #ba251e;
+ color: white;
+ -webkit-box-shadow: inset 0 1px 0 #e8756f, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #e8756f, 0 1px 0 rgba(0, 0, 0, 0.15); }
+ .wp-core-ui .button-primary:active {
+ background: #d02a21;
+ border-color: #ba251e;
+ color: white;
+ -webkit-box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
+ box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5); }
+ .wp-core-ui .button-primary[disabled], .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary.button-primary-disabled, .wp-core-ui .button-primary.disabled {
+ color: #d1c7c7 !important;
+ background: #d92c23 !important;
+ border-color: #ba251e !important;
+ text-shadow: none !important; }
+.wp-core-ui .wp-ui-primary {
+ color: #fff;
+ background-color: #363b3f; }
+.wp-core-ui .wp-ui-text-primary {
+ color: #363b3f; }
+.wp-core-ui .wp-ui-highlight {
+ color: #fff;
+ background-color: #e14d43; }
+.wp-core-ui .wp-ui-text-highlight {
+ color: #e14d43; }
+.wp-core-ui .wp-ui-notification {
+ color: #fff;
+ background-color: #69a8bb; }
+.wp-core-ui .wp-ui-text-notification {
+ color: #69a8bb; }
+.wp-core-ui .wp-ui-text-icon {
+ color: #f1f2f3; }
+
+/* List tables */
+.wrap .add-new-h2:hover, #add-new-comment a:hover, .tablenav .tablenav-pages a:hover, .tablenav .tablenav-pages a:focus {
+ color: #fff;
+ background-color: #363b3f; }
+
+.view-switch a.current:before {
+ color: #363b3f; }
+
+.view-switch a:hover:before {
+ color: #69a8bb; }
+
+.post-com-count:hover:after {
+ border-top-color: #363b3f; }
+
+.post-com-count:hover span {
+ color: #fff;
+ background-color: #363b3f; }
+
+strong .post-com-count:after {
+ border-top-color: #69a8bb; }
+
+strong .post-com-count span {
+ background-color: #69a8bb; }
+
+/* Admin Menu */
+#adminmenuback, #adminmenuwrap, #adminmenu {
+ background: #363b3f; }
+
+#adminmenu a {
+ color: #fff; }
+
+#adminmenu div.wp-menu-image:before {
+ color: #f1f2f3; }
+
+#adminmenu a:hover, #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus {
+ color: #fff;
+ background-color: #e14d43; }
+
+#adminmenu li.menu-top:hover div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top div.wp-menu-image:before {
+ color: #fff; }
+
+/* Active tabs use a bottom border color that matches the page background color. */
+.about-wrap h2 .nav-tab-active, .nav-tab-active, .nav-tab-active:hover {
+ background-color: #f1f1f1;
+ border-bottom-color: #f1f1f1; }
+
+/* Admin Menu: submenu */
+#adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, .folded #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
+ background: #26292c; }
+
+#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
+ border-left-color: #26292c; }
+
+#adminmenu .wp-submenu .wp-submenu-head {
+ color: #c2c4c5; }
+
+#adminmenu .wp-submenu a, #adminmenu .wp-has-current-submenu .wp-submenu a, .folded #adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
+ color: #c2c4c5; }
+ #adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-has-current-submenu .wp-submenu a:focus, #adminmenu .wp-has-current-submenu .wp-submenu a:hover, .folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus, .folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover {
+ color: #e14d43; }
+
+/* Admin Menu: current */
+#adminmenu .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a {
+ color: #fff; }
+ #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus {
+ color: #e14d43; }
+
+ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after {
+ border-left-color: #f1f1f1; }
+
+#adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu li.current.menu-top {
+ color: #fff;
+ background: #e14d43; }
+
+#adminmenu li.wp-has-current-submenu div.wp-menu-image:before {
+ color: #fff; }
+
+/* Admin Menu: bubble */
+#adminmenu .awaiting-mod, #adminmenu .update-plugins {
+ color: #fff;
+ background: #69a8bb; }
+
+#adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins, #adminmenu li:hover a .awaiting-mod, #adminmenu li.menu-top:hover > a .update-plugins {
+ color: #fff;
+ background: #26292c; }
+
+/* Admin Menu: collapse button */
+#collapse-menu {
+ color: #f1f2f3; }
+
+#collapse-menu:hover {
+ color: #fff; }
+
+#collapse-button div:after {
+ color: #f1f2f3; }
+
+#collapse-menu:hover #collapse-button div:after {
+ color: #fff; }
+
+/* Admin Bar */
+#wpadminbar {
+ color: #fff;
+ background: #363b3f; }
+
+#wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon {
+ color: #fff; }
+
+#wpadminbar .ab-icon, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar .ab-item:after {
+ color: #f1f2f3; }
+
+#wpadminbar .ab-top-menu > li:hover > .ab-item, #wpadminbar .ab-top-menu > li.hover > .ab-item, #wpadminbar .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar-nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
+ color: #e14d43;
+ background: #26292c; }
+
+#wpadminbar > #wp-toolbar li:hover span.ab-label, #wpadminbar > #wp-toolbar li.hover span.ab-label, #wpadminbar > #wp-toolbar a:focus span.ab-label {
+ color: #e14d43; }
+
+#wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li:hover .ab-item:after, #wpadminbar li:hover #adminbarsearch:before {
+ color: #fff; }
+
+/* Admin Bar: submenu */
+#wpadminbar .menupop .ab-sub-wrapper {
+ background: #26292c; }
+
+#wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
+ background: #4c4c4d; }
+
+#wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar-nojs .quicklinks .menupop:hover ul li a {
+ color: #c2c4c5; }
+
+#wpadminbar .quicklinks li .blavatar, #wpadminbar .menupop .menupop > .ab-item:before {
+ color: #f1f2f3; }
+
+#wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li .ab-item:focus:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover .ab-item:after, #wpadminbar li.hover .ab-item:after, #wpadminbar li:hover #adminbarsearch:before {
+ color: #e14d43; }
+
+#wpadminbar .quicklinks li a:hover .blavatar, #wpadminbar .menupop .menupop > .ab-item:hover:before {
+ color: #e14d43; }
+
+/* Admin Bar: search */
+#wpadminbar #adminbarsearch:before {
+ color: #f1f2f3; }
+
+#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
+ color: #fff;
+ background: #464d52; }
+
+#wpadminbar #adminbarsearch .adminbar-input::-webkit-input-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input:-moz-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input::-moz-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input:-ms-input-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+/* Admin Bar: my account */
+#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
+ border-color: #464d52;
+ background-color: #464d52; }
+
+#wpadminbar #wp-admin-bar-user-info .display-name {
+ color: #fff; }
+
+#wpadminbar #wp-admin-bar-user-info a:hover .display-name {
+ color: #e14d43; }
+
+#wpadminbar #wp-admin-bar-user-info .username {
+ color: #c2c4c5; }
+
+/* Pointers */
+.wp-pointer .wp-pointer-content h3 {
+ background-color: #e14d43;
+ border-color: #dd362d; }
+
+.wp-pointer .wp-pointer-content h3:before {
+ color: #e14d43; }
+
+.wp-pointer.wp-pointer-top .wp-pointer-arrow, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow {
+ border-bottom-color: #e14d43; }
+
+/* Media Uploader */
+.media-item .bar, .media-progress-bar div {
+ background-color: #e14d43; }
+
+.details.attachment {
+ -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 5px #e14d43;
+ box-shadow: 0 0 0 1px #fff, 0 0 0 5px #e14d43; }
+
+.attachment.details .check {
+ background-color: #e14d43;
+ -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 2px #e14d43;
+ box-shadow: 0 0 0 1px #fff, 0 0 0 2px #e14d43; }
+
+/* Themes */
+.theme-browser .theme.active .theme-name, .theme-browser .theme.add-new-theme:hover:after {
+ background: #e14d43; }
+
+.theme-browser .theme.add-new-theme:hover span:after {
+ color: #e14d43; }
+
+.theme-overlay .theme-header .close:hover, .theme-overlay .theme-header .right:hover, .theme-overlay .theme-header .left:hover {
+ background: #e14d43; }
+
+.theme-section.current, .theme-filter.current {
+ border-bottom-color: #363b3f; }
+
+body.more-filters-opened .more-filters, body.more-filters-opened .more-filters:before {
+ color: #fff;
+ background-color: #363b3f; }
+
+body.more-filters-opened .more-filters:hover, body.more-filters-opened .more-filters:focus, body.more-filters-opened .more-filters:hover:before, body.more-filters-opened .more-filters:focus:before {
+ background-color: #e14d43;
+ color: #fff; }
+
+/* Widgets */
+.widgets-chooser li.widgets-chooser-selected {
+ background-color: #e14d43;
+ color: #fff; }
+
+.widgets-chooser li.widgets-chooser-selected:before, .widgets-chooser li.widgets-chooser-selected:focus:before {
+ color: #fff; }
+
+/* Customize */
+#customize-theme-controls .widget-area-select .selected {
+ background-color: #e14d43;
+ color: #fff; }
+
+/* jQuery UI Slider */
+.wp-slider .ui-slider-handle, .wp-slider .ui-slider-handle.ui-state-hover, .wp-slider .ui-slider-handle.focus {
+ background: #e14d43;
+ border-color: #d02a21;
+ -webkit-box-shadow: inset 0 1px 0 #ec8a85, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #ec8a85, 0 1px 0 rgba(0, 0, 0, 0.15); }
+
+/* Thickbox: Plugin information */
+#sidemenu a.current {
+ background: #f1f1f1;
+ border-bottom-color: #f1f1f1; }
+
+#plugin-information .action-button {
+ background: #e14d43; }
+
+/* Responsive Component */
+div#wp-responsive-toggle a:before {
+ color: #f1f2f3; }
+
+.wp-responsive-open div#wp-responsive-toggle a {
+ border-color: transparent;
+ background: #e14d43; }
+
+.star-rating .star {
+ color: #e14d43; }
+
+.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
+ background: #26292c; }
diff --git a/sources/wp-admin/css/colors/midnight/colors-rtl.min.css b/sources/wp-admin/css/colors/midnight/colors-rtl.min.css
new file mode 100644
index 0000000..930461b
--- /dev/null
+++ b/sources/wp-admin/css/colors/midnight/colors-rtl.min.css
@@ -0,0 +1 @@
+html{background:#f1f1f1}a{color:#0074a2}#media-upload a.del-link:hover,.subsubsub a.current:hover,.subsubsub a:hover,a:active,a:focus,a:hover,div.dashboard-widget-submit input:hover{color:#0099d5}input[type=checkbox]:checked:before{color:#e14d43}input[type=radio]:checked:before{background:#e14d43}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:#0099d5}.wp-core-ui .button-primary{background:#e14d43;border-color:#d02a21;color:#fff;-webkit-box-shadow:inset 0 1px 0 #ec8a85,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #ec8a85,0 1px 0 rgba(0,0,0,.15)}.wp-core-ui .button-primary:focus,.wp-core-ui .button-primary:hover{background:#dd362d;border-color:#ba251e;color:#fff;-webkit-box-shadow:inset 0 1px 0 #e8756f,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #e8756f,0 1px 0 rgba(0,0,0,.15)}.wp-core-ui .button-primary:active{background:#d02a21;border-color:#ba251e;color:#fff;-webkit-box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5);box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5)}.wp-core-ui .button-primary.button-primary-disabled,.wp-core-ui .button-primary.disabled,.wp-core-ui .button-primary:disabled,.wp-core-ui .button-primary[disabled]{color:#d1c7c7!important;background:#d92c23!important;border-color:#ba251e!important;text-shadow:none!important}.wp-core-ui .wp-ui-primary{color:#fff;background-color:#363b3f}.wp-core-ui .wp-ui-text-primary{color:#363b3f}.wp-core-ui .wp-ui-highlight{color:#fff;background-color:#e14d43}.wp-core-ui .wp-ui-text-highlight{color:#e14d43}.wp-core-ui .wp-ui-notification{color:#fff;background-color:#69a8bb}.wp-core-ui .wp-ui-text-notification{color:#69a8bb}.wp-core-ui .wp-ui-text-icon{color:#f1f2f3}#add-new-comment a:hover,.tablenav .tablenav-pages a:focus,.tablenav .tablenav-pages a:hover,.wrap .add-new-h2:hover{color:#fff;background-color:#363b3f}.view-switch a.current:before{color:#363b3f}.view-switch a:hover:before{color:#69a8bb}.post-com-count:hover:after{border-top-color:#363b3f}.post-com-count:hover span{color:#fff;background-color:#363b3f}strong .post-com-count:after{border-top-color:#69a8bb}strong .post-com-count span{background-color:#69a8bb}#adminmenu,#adminmenuback,#adminmenuwrap{background:#363b3f}#adminmenu a{color:#fff}#adminmenu div.wp-menu-image:before{color:#f1f2f3}#adminmenu a:hover,#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{color:#fff;background-color:#e14d43}#adminmenu li.menu-top:hover div.wp-menu-image:before,#adminmenu li.opensub>a.menu-top div.wp-menu-image:before{color:#fff}.about-wrap h2 .nav-tab-active,.nav-tab-active,.nav-tab-active:hover{background-color:#f1f1f1;border-bottom-color:#f1f1f1}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,#adminmenu .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu{background:#26292c}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after{border-left-color:#26292c}#adminmenu .wp-has-current-submenu .wp-submenu a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a,#adminmenu .wp-submenu .wp-submenu-head,#adminmenu .wp-submenu a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a,.folded #adminmenu .wp-has-current-submenu .wp-submenu a{color:#c2c4c5}#adminmenu .wp-has-current-submenu .wp-submenu a:focus,#adminmenu .wp-has-current-submenu .wp-submenu a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover,#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:hover,.folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus,.folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover{color:#e14d43}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a,#adminmenu .wp-submenu li.current a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a{color:#fff}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:hover{color:#e14d43}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{border-left-color:#f1f1f1}#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{color:#fff;background:#e14d43}#adminmenu li.wp-has-current-submenu div.wp-menu-image:before{color:#fff}#adminmenu .awaiting-mod,#adminmenu .update-plugins{color:#fff;background:#69a8bb}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod,#adminmenu li.menu-top:hover>a .update-plugins,#adminmenu li:hover a .awaiting-mod{color:#fff;background:#26292c}#collapse-menu{color:#f1f2f3}#collapse-menu:hover{color:#fff}#collapse-button div:after{color:#f1f2f3}#collapse-menu:hover #collapse-button div:after{color:#fff}#wpadminbar{color:#fff;background:#363b3f}#wpadminbar .ab-item,#wpadminbar a.ab-item,#wpadminbar>#wp-toolbar span.ab-label,#wpadminbar>#wp-toolbar span.noticon{color:#fff}#wpadminbar .ab-icon,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:after,#wpadminbar .ab-item:before{color:#f1f2f3}#wpadminbar .ab-top-menu>li.hover>.ab-item,#wpadminbar .ab-top-menu>li.menupop.hover>.ab-item,#wpadminbar .ab-top-menu>li:hover>.ab-item,#wpadminbar .ab-top-menu>li>.ab-item:focus,#wpadminbar-nojs .ab-top-menu>li.menupop:hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus{color:#e14d43;background:#26292c}#wpadminbar>#wp-toolbar a:focus span.ab-label,#wpadminbar>#wp-toolbar li.hover span.ab-label,#wpadminbar>#wp-toolbar li:hover span.ab-label{color:#e14d43}#wpadminbar .menupop .ab-sub-wrapper{background:#26292c}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu{background:#4c4c4d}#wpadminbar .ab-submenu .ab-item,#wpadminbar .quicklinks .menupop ul li a,#wpadminbar .quicklinks .menupop.hover ul li a,#wpadminbar-nojs .quicklinks .menupop:hover ul li a{color:#c2c4c5}#wpadminbar .menupop .menupop>.ab-item:before,#wpadminbar .quicklinks li .blavatar{color:#f1f2f3}#wpadminbar .menupop .menupop>.ab-item:hover:before,#wpadminbar .quicklinks .menupop ul li a:focus,#wpadminbar .quicklinks .menupop ul li a:focus strong,#wpadminbar .quicklinks .menupop ul li a:hover,#wpadminbar .quicklinks .menupop ul li a:hover strong,#wpadminbar .quicklinks .menupop.hover ul li a:focus,#wpadminbar .quicklinks .menupop.hover ul li a:hover,#wpadminbar .quicklinks li a:hover .blavatar,#wpadminbar li .ab-item:focus:before,#wpadminbar li a:focus .ab-icon:before,#wpadminbar li.hover .ab-icon:before,#wpadminbar li.hover .ab-item:after,#wpadminbar li.hover .ab-item:before,#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:after,#wpadminbar li:hover .ab-item:before,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover{color:#e14d43}#wpadminbar #adminbarsearch:before{color:#f1f2f3}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input:focus{color:#fff;background:#464d52}#wpadminbar #adminbarsearch .adminbar-input::-webkit-input-placeholder{color:#fff;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input:-moz-placeholder{color:#fff;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input::-moz-placeholder{color:#fff;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input:-ms-input-placeholder{color:#fff;opacity:.7}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{border-color:#464d52;background-color:#464d52}#wpadminbar #wp-admin-bar-user-info .display-name{color:#fff}#wpadminbar #wp-admin-bar-user-info a:hover .display-name{color:#e14d43}#wpadminbar #wp-admin-bar-user-info .username{color:#c2c4c5}.wp-pointer .wp-pointer-content h3{background-color:#e14d43;border-color:#dd362d}.wp-pointer .wp-pointer-content h3:before{color:#e14d43}.wp-pointer.wp-pointer-top .wp-pointer-arrow,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow{border-bottom-color:#e14d43}.media-item .bar,.media-progress-bar div{background-color:#e14d43}.details.attachment{-webkit-box-shadow:0 0 0 1px #fff,0 0 0 5px #e14d43;box-shadow:0 0 0 1px #fff,0 0 0 5px #e14d43}.attachment.details .check{background-color:#e14d43;-webkit-box-shadow:0 0 0 1px #fff,0 0 0 2px #e14d43;box-shadow:0 0 0 1px #fff,0 0 0 2px #e14d43}.theme-browser .theme.active .theme-name,.theme-browser .theme.add-new-theme:hover:after{background:#e14d43}.theme-browser .theme.add-new-theme:hover span:after{color:#e14d43}.theme-overlay .theme-header .close:hover,.theme-overlay .theme-header .left:hover,.theme-overlay .theme-header .right:hover{background:#e14d43}.theme-filter.current,.theme-section.current{border-bottom-color:#363b3f}body.more-filters-opened .more-filters,body.more-filters-opened .more-filters:before{color:#fff;background-color:#363b3f}.widgets-chooser li.widgets-chooser-selected,body.more-filters-opened .more-filters:focus,body.more-filters-opened .more-filters:focus:before,body.more-filters-opened .more-filters:hover,body.more-filters-opened .more-filters:hover:before{background-color:#e14d43;color:#fff}.widgets-chooser li.widgets-chooser-selected:before,.widgets-chooser li.widgets-chooser-selected:focus:before{color:#fff}#customize-theme-controls .widget-area-select .selected{background-color:#e14d43;color:#fff}.wp-slider .ui-slider-handle,.wp-slider .ui-slider-handle.focus,.wp-slider .ui-slider-handle.ui-state-hover{background:#e14d43;border-color:#d02a21;-webkit-box-shadow:inset 0 1px 0 #ec8a85,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #ec8a85,0 1px 0 rgba(0,0,0,.15)}#sidemenu a.current{background:#f1f1f1;border-bottom-color:#f1f1f1}#plugin-information .action-button{background:#e14d43}div#wp-responsive-toggle a:before{color:#f1f2f3}.wp-responsive-open div#wp-responsive-toggle a{border-color:transparent;background:#e14d43}.star-rating .star{color:#e14d43}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:#26292c}
\ No newline at end of file
diff --git a/sources/wp-admin/css/colors/midnight/colors.css b/sources/wp-admin/css/colors/midnight/colors.css
new file mode 100644
index 0000000..b1a11fe
--- /dev/null
+++ b/sources/wp-admin/css/colors/midnight/colors.css
@@ -0,0 +1,331 @@
+/*
+ * Button mixin- creates 3d-ish button effect with correct
+ * highlights/shadows, based on a base color.
+ */
+html {
+ background: #f1f1f1; }
+
+/* Links */
+a {
+ color: #0074a2; }
+ a:hover, a:active, a:focus {
+ color: #0099d5; }
+
+#media-upload a.del-link:hover, div.dashboard-widget-submit input:hover, .subsubsub a:hover, .subsubsub a.current:hover {
+ color: #0099d5; }
+
+/* Forms */
+input[type=checkbox]:checked:before {
+ color: #e14d43; }
+
+input[type=radio]:checked:before {
+ background: #e14d43; }
+
+.wp-core-ui input[type="reset"]:hover, .wp-core-ui input[type="reset"]:active {
+ color: #0099d5; }
+
+/* Core UI */
+.wp-core-ui .button-primary {
+ background: #e14d43;
+ border-color: #d02a21;
+ color: white;
+ -webkit-box-shadow: inset 0 1px 0 #ec8a85, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #ec8a85, 0 1px 0 rgba(0, 0, 0, 0.15); }
+ .wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
+ background: #dd362d;
+ border-color: #ba251e;
+ color: white;
+ -webkit-box-shadow: inset 0 1px 0 #e8756f, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #e8756f, 0 1px 0 rgba(0, 0, 0, 0.15); }
+ .wp-core-ui .button-primary:active {
+ background: #d02a21;
+ border-color: #ba251e;
+ color: white;
+ -webkit-box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
+ box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5); }
+ .wp-core-ui .button-primary[disabled], .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary.button-primary-disabled, .wp-core-ui .button-primary.disabled {
+ color: #d1c7c7 !important;
+ background: #d92c23 !important;
+ border-color: #ba251e !important;
+ text-shadow: none !important; }
+.wp-core-ui .wp-ui-primary {
+ color: #fff;
+ background-color: #363b3f; }
+.wp-core-ui .wp-ui-text-primary {
+ color: #363b3f; }
+.wp-core-ui .wp-ui-highlight {
+ color: #fff;
+ background-color: #e14d43; }
+.wp-core-ui .wp-ui-text-highlight {
+ color: #e14d43; }
+.wp-core-ui .wp-ui-notification {
+ color: #fff;
+ background-color: #69a8bb; }
+.wp-core-ui .wp-ui-text-notification {
+ color: #69a8bb; }
+.wp-core-ui .wp-ui-text-icon {
+ color: #f1f2f3; }
+
+/* List tables */
+.wrap .add-new-h2:hover, #add-new-comment a:hover, .tablenav .tablenav-pages a:hover, .tablenav .tablenav-pages a:focus {
+ color: #fff;
+ background-color: #363b3f; }
+
+.view-switch a.current:before {
+ color: #363b3f; }
+
+.view-switch a:hover:before {
+ color: #69a8bb; }
+
+.post-com-count:hover:after {
+ border-top-color: #363b3f; }
+
+.post-com-count:hover span {
+ color: #fff;
+ background-color: #363b3f; }
+
+strong .post-com-count:after {
+ border-top-color: #69a8bb; }
+
+strong .post-com-count span {
+ background-color: #69a8bb; }
+
+/* Admin Menu */
+#adminmenuback, #adminmenuwrap, #adminmenu {
+ background: #363b3f; }
+
+#adminmenu a {
+ color: #fff; }
+
+#adminmenu div.wp-menu-image:before {
+ color: #f1f2f3; }
+
+#adminmenu a:hover, #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus {
+ color: #fff;
+ background-color: #e14d43; }
+
+#adminmenu li.menu-top:hover div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top div.wp-menu-image:before {
+ color: #fff; }
+
+/* Active tabs use a bottom border color that matches the page background color. */
+.about-wrap h2 .nav-tab-active, .nav-tab-active, .nav-tab-active:hover {
+ background-color: #f1f1f1;
+ border-bottom-color: #f1f1f1; }
+
+/* Admin Menu: submenu */
+#adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, .folded #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
+ background: #26292c; }
+
+#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
+ border-right-color: #26292c; }
+
+#adminmenu .wp-submenu .wp-submenu-head {
+ color: #c2c4c5; }
+
+#adminmenu .wp-submenu a, #adminmenu .wp-has-current-submenu .wp-submenu a, .folded #adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
+ color: #c2c4c5; }
+ #adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-has-current-submenu .wp-submenu a:focus, #adminmenu .wp-has-current-submenu .wp-submenu a:hover, .folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus, .folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover {
+ color: #e14d43; }
+
+/* Admin Menu: current */
+#adminmenu .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a {
+ color: #fff; }
+ #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus {
+ color: #e14d43; }
+
+ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after {
+ border-right-color: #f1f1f1; }
+
+#adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu li.current.menu-top {
+ color: #fff;
+ background: #e14d43; }
+
+#adminmenu li.wp-has-current-submenu div.wp-menu-image:before {
+ color: #fff; }
+
+/* Admin Menu: bubble */
+#adminmenu .awaiting-mod, #adminmenu .update-plugins {
+ color: #fff;
+ background: #69a8bb; }
+
+#adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins, #adminmenu li:hover a .awaiting-mod, #adminmenu li.menu-top:hover > a .update-plugins {
+ color: #fff;
+ background: #26292c; }
+
+/* Admin Menu: collapse button */
+#collapse-menu {
+ color: #f1f2f3; }
+
+#collapse-menu:hover {
+ color: #fff; }
+
+#collapse-button div:after {
+ color: #f1f2f3; }
+
+#collapse-menu:hover #collapse-button div:after {
+ color: #fff; }
+
+/* Admin Bar */
+#wpadminbar {
+ color: #fff;
+ background: #363b3f; }
+
+#wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon {
+ color: #fff; }
+
+#wpadminbar .ab-icon, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar .ab-item:after {
+ color: #f1f2f3; }
+
+#wpadminbar .ab-top-menu > li:hover > .ab-item, #wpadminbar .ab-top-menu > li.hover > .ab-item, #wpadminbar .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar-nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
+ color: #e14d43;
+ background: #26292c; }
+
+#wpadminbar > #wp-toolbar li:hover span.ab-label, #wpadminbar > #wp-toolbar li.hover span.ab-label, #wpadminbar > #wp-toolbar a:focus span.ab-label {
+ color: #e14d43; }
+
+#wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li:hover .ab-item:after, #wpadminbar li:hover #adminbarsearch:before {
+ color: #fff; }
+
+/* Admin Bar: submenu */
+#wpadminbar .menupop .ab-sub-wrapper {
+ background: #26292c; }
+
+#wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
+ background: #4c4c4d; }
+
+#wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar-nojs .quicklinks .menupop:hover ul li a {
+ color: #c2c4c5; }
+
+#wpadminbar .quicklinks li .blavatar, #wpadminbar .menupop .menupop > .ab-item:before {
+ color: #f1f2f3; }
+
+#wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li .ab-item:focus:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover .ab-item:after, #wpadminbar li.hover .ab-item:after, #wpadminbar li:hover #adminbarsearch:before {
+ color: #e14d43; }
+
+#wpadminbar .quicklinks li a:hover .blavatar, #wpadminbar .menupop .menupop > .ab-item:hover:before {
+ color: #e14d43; }
+
+/* Admin Bar: search */
+#wpadminbar #adminbarsearch:before {
+ color: #f1f2f3; }
+
+#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
+ color: #fff;
+ background: #464d52; }
+
+#wpadminbar #adminbarsearch .adminbar-input::-webkit-input-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input:-moz-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input::-moz-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input:-ms-input-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+/* Admin Bar: my account */
+#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
+ border-color: #464d52;
+ background-color: #464d52; }
+
+#wpadminbar #wp-admin-bar-user-info .display-name {
+ color: #fff; }
+
+#wpadminbar #wp-admin-bar-user-info a:hover .display-name {
+ color: #e14d43; }
+
+#wpadminbar #wp-admin-bar-user-info .username {
+ color: #c2c4c5; }
+
+/* Pointers */
+.wp-pointer .wp-pointer-content h3 {
+ background-color: #e14d43;
+ border-color: #dd362d; }
+
+.wp-pointer .wp-pointer-content h3:before {
+ color: #e14d43; }
+
+.wp-pointer.wp-pointer-top .wp-pointer-arrow, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow {
+ border-bottom-color: #e14d43; }
+
+/* Media Uploader */
+.media-item .bar, .media-progress-bar div {
+ background-color: #e14d43; }
+
+.details.attachment {
+ -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 5px #e14d43;
+ box-shadow: 0 0 0 1px #fff, 0 0 0 5px #e14d43; }
+
+.attachment.details .check {
+ background-color: #e14d43;
+ -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 2px #e14d43;
+ box-shadow: 0 0 0 1px #fff, 0 0 0 2px #e14d43; }
+
+/* Themes */
+.theme-browser .theme.active .theme-name, .theme-browser .theme.add-new-theme:hover:after {
+ background: #e14d43; }
+
+.theme-browser .theme.add-new-theme:hover span:after {
+ color: #e14d43; }
+
+.theme-overlay .theme-header .close:hover, .theme-overlay .theme-header .right:hover, .theme-overlay .theme-header .left:hover {
+ background: #e14d43; }
+
+.theme-section.current, .theme-filter.current {
+ border-bottom-color: #363b3f; }
+
+body.more-filters-opened .more-filters, body.more-filters-opened .more-filters:before {
+ color: #fff;
+ background-color: #363b3f; }
+
+body.more-filters-opened .more-filters:hover, body.more-filters-opened .more-filters:focus, body.more-filters-opened .more-filters:hover:before, body.more-filters-opened .more-filters:focus:before {
+ background-color: #e14d43;
+ color: #fff; }
+
+/* Widgets */
+.widgets-chooser li.widgets-chooser-selected {
+ background-color: #e14d43;
+ color: #fff; }
+
+.widgets-chooser li.widgets-chooser-selected:before, .widgets-chooser li.widgets-chooser-selected:focus:before {
+ color: #fff; }
+
+/* Customize */
+#customize-theme-controls .widget-area-select .selected {
+ background-color: #e14d43;
+ color: #fff; }
+
+/* jQuery UI Slider */
+.wp-slider .ui-slider-handle, .wp-slider .ui-slider-handle.ui-state-hover, .wp-slider .ui-slider-handle.focus {
+ background: #e14d43;
+ border-color: #d02a21;
+ -webkit-box-shadow: inset 0 1px 0 #ec8a85, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #ec8a85, 0 1px 0 rgba(0, 0, 0, 0.15); }
+
+/* Thickbox: Plugin information */
+#sidemenu a.current {
+ background: #f1f1f1;
+ border-bottom-color: #f1f1f1; }
+
+#plugin-information .action-button {
+ background: #e14d43; }
+
+/* Responsive Component */
+div#wp-responsive-toggle a:before {
+ color: #f1f2f3; }
+
+.wp-responsive-open div#wp-responsive-toggle a {
+ border-color: transparent;
+ background: #e14d43; }
+
+.star-rating .star {
+ color: #e14d43; }
+
+.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
+ background: #26292c; }
diff --git a/sources/wp-admin/css/colors/midnight/colors.min.css b/sources/wp-admin/css/colors/midnight/colors.min.css
new file mode 100644
index 0000000..e4f464f
--- /dev/null
+++ b/sources/wp-admin/css/colors/midnight/colors.min.css
@@ -0,0 +1 @@
+html{background:#f1f1f1}a{color:#0074a2}#media-upload a.del-link:hover,.subsubsub a.current:hover,.subsubsub a:hover,a:active,a:focus,a:hover,div.dashboard-widget-submit input:hover{color:#0099d5}input[type=checkbox]:checked:before{color:#e14d43}input[type=radio]:checked:before{background:#e14d43}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:#0099d5}.wp-core-ui .button-primary{background:#e14d43;border-color:#d02a21;color:#fff;-webkit-box-shadow:inset 0 1px 0 #ec8a85,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #ec8a85,0 1px 0 rgba(0,0,0,.15)}.wp-core-ui .button-primary:focus,.wp-core-ui .button-primary:hover{background:#dd362d;border-color:#ba251e;color:#fff;-webkit-box-shadow:inset 0 1px 0 #e8756f,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #e8756f,0 1px 0 rgba(0,0,0,.15)}.wp-core-ui .button-primary:active{background:#d02a21;border-color:#ba251e;color:#fff;-webkit-box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5);box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5)}.wp-core-ui .button-primary.button-primary-disabled,.wp-core-ui .button-primary.disabled,.wp-core-ui .button-primary:disabled,.wp-core-ui .button-primary[disabled]{color:#d1c7c7!important;background:#d92c23!important;border-color:#ba251e!important;text-shadow:none!important}.wp-core-ui .wp-ui-primary{color:#fff;background-color:#363b3f}.wp-core-ui .wp-ui-text-primary{color:#363b3f}.wp-core-ui .wp-ui-highlight{color:#fff;background-color:#e14d43}.wp-core-ui .wp-ui-text-highlight{color:#e14d43}.wp-core-ui .wp-ui-notification{color:#fff;background-color:#69a8bb}.wp-core-ui .wp-ui-text-notification{color:#69a8bb}.wp-core-ui .wp-ui-text-icon{color:#f1f2f3}#add-new-comment a:hover,.tablenav .tablenav-pages a:focus,.tablenav .tablenav-pages a:hover,.wrap .add-new-h2:hover{color:#fff;background-color:#363b3f}.view-switch a.current:before{color:#363b3f}.view-switch a:hover:before{color:#69a8bb}.post-com-count:hover:after{border-top-color:#363b3f}.post-com-count:hover span{color:#fff;background-color:#363b3f}strong .post-com-count:after{border-top-color:#69a8bb}strong .post-com-count span{background-color:#69a8bb}#adminmenu,#adminmenuback,#adminmenuwrap{background:#363b3f}#adminmenu a{color:#fff}#adminmenu div.wp-menu-image:before{color:#f1f2f3}#adminmenu a:hover,#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{color:#fff;background-color:#e14d43}#adminmenu li.menu-top:hover div.wp-menu-image:before,#adminmenu li.opensub>a.menu-top div.wp-menu-image:before{color:#fff}.about-wrap h2 .nav-tab-active,.nav-tab-active,.nav-tab-active:hover{background-color:#f1f1f1;border-bottom-color:#f1f1f1}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,#adminmenu .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu{background:#26292c}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after{border-right-color:#26292c}#adminmenu .wp-has-current-submenu .wp-submenu a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a,#adminmenu .wp-submenu .wp-submenu-head,#adminmenu .wp-submenu a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a,.folded #adminmenu .wp-has-current-submenu .wp-submenu a{color:#c2c4c5}#adminmenu .wp-has-current-submenu .wp-submenu a:focus,#adminmenu .wp-has-current-submenu .wp-submenu a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover,#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:hover,.folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus,.folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover{color:#e14d43}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a,#adminmenu .wp-submenu li.current a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a{color:#fff}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:hover{color:#e14d43}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{border-right-color:#f1f1f1}#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{color:#fff;background:#e14d43}#adminmenu li.wp-has-current-submenu div.wp-menu-image:before{color:#fff}#adminmenu .awaiting-mod,#adminmenu .update-plugins{color:#fff;background:#69a8bb}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod,#adminmenu li.menu-top:hover>a .update-plugins,#adminmenu li:hover a .awaiting-mod{color:#fff;background:#26292c}#collapse-menu{color:#f1f2f3}#collapse-menu:hover{color:#fff}#collapse-button div:after{color:#f1f2f3}#collapse-menu:hover #collapse-button div:after{color:#fff}#wpadminbar{color:#fff;background:#363b3f}#wpadminbar .ab-item,#wpadminbar a.ab-item,#wpadminbar>#wp-toolbar span.ab-label,#wpadminbar>#wp-toolbar span.noticon{color:#fff}#wpadminbar .ab-icon,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:after,#wpadminbar .ab-item:before{color:#f1f2f3}#wpadminbar .ab-top-menu>li.hover>.ab-item,#wpadminbar .ab-top-menu>li.menupop.hover>.ab-item,#wpadminbar .ab-top-menu>li:hover>.ab-item,#wpadminbar .ab-top-menu>li>.ab-item:focus,#wpadminbar-nojs .ab-top-menu>li.menupop:hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus{color:#e14d43;background:#26292c}#wpadminbar>#wp-toolbar a:focus span.ab-label,#wpadminbar>#wp-toolbar li.hover span.ab-label,#wpadminbar>#wp-toolbar li:hover span.ab-label{color:#e14d43}#wpadminbar .menupop .ab-sub-wrapper{background:#26292c}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu{background:#4c4c4d}#wpadminbar .ab-submenu .ab-item,#wpadminbar .quicklinks .menupop ul li a,#wpadminbar .quicklinks .menupop.hover ul li a,#wpadminbar-nojs .quicklinks .menupop:hover ul li a{color:#c2c4c5}#wpadminbar .menupop .menupop>.ab-item:before,#wpadminbar .quicklinks li .blavatar{color:#f1f2f3}#wpadminbar .menupop .menupop>.ab-item:hover:before,#wpadminbar .quicklinks .menupop ul li a:focus,#wpadminbar .quicklinks .menupop ul li a:focus strong,#wpadminbar .quicklinks .menupop ul li a:hover,#wpadminbar .quicklinks .menupop ul li a:hover strong,#wpadminbar .quicklinks .menupop.hover ul li a:focus,#wpadminbar .quicklinks .menupop.hover ul li a:hover,#wpadminbar .quicklinks li a:hover .blavatar,#wpadminbar li .ab-item:focus:before,#wpadminbar li a:focus .ab-icon:before,#wpadminbar li.hover .ab-icon:before,#wpadminbar li.hover .ab-item:after,#wpadminbar li.hover .ab-item:before,#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:after,#wpadminbar li:hover .ab-item:before,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover{color:#e14d43}#wpadminbar #adminbarsearch:before{color:#f1f2f3}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input:focus{color:#fff;background:#464d52}#wpadminbar #adminbarsearch .adminbar-input::-webkit-input-placeholder{color:#fff;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input:-moz-placeholder{color:#fff;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input::-moz-placeholder{color:#fff;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input:-ms-input-placeholder{color:#fff;opacity:.7}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{border-color:#464d52;background-color:#464d52}#wpadminbar #wp-admin-bar-user-info .display-name{color:#fff}#wpadminbar #wp-admin-bar-user-info a:hover .display-name{color:#e14d43}#wpadminbar #wp-admin-bar-user-info .username{color:#c2c4c5}.wp-pointer .wp-pointer-content h3{background-color:#e14d43;border-color:#dd362d}.wp-pointer .wp-pointer-content h3:before{color:#e14d43}.wp-pointer.wp-pointer-top .wp-pointer-arrow,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow{border-bottom-color:#e14d43}.media-item .bar,.media-progress-bar div{background-color:#e14d43}.details.attachment{-webkit-box-shadow:0 0 0 1px #fff,0 0 0 5px #e14d43;box-shadow:0 0 0 1px #fff,0 0 0 5px #e14d43}.attachment.details .check{background-color:#e14d43;-webkit-box-shadow:0 0 0 1px #fff,0 0 0 2px #e14d43;box-shadow:0 0 0 1px #fff,0 0 0 2px #e14d43}.theme-browser .theme.active .theme-name,.theme-browser .theme.add-new-theme:hover:after{background:#e14d43}.theme-browser .theme.add-new-theme:hover span:after{color:#e14d43}.theme-overlay .theme-header .close:hover,.theme-overlay .theme-header .left:hover,.theme-overlay .theme-header .right:hover{background:#e14d43}.theme-filter.current,.theme-section.current{border-bottom-color:#363b3f}body.more-filters-opened .more-filters,body.more-filters-opened .more-filters:before{color:#fff;background-color:#363b3f}.widgets-chooser li.widgets-chooser-selected,body.more-filters-opened .more-filters:focus,body.more-filters-opened .more-filters:focus:before,body.more-filters-opened .more-filters:hover,body.more-filters-opened .more-filters:hover:before{background-color:#e14d43;color:#fff}.widgets-chooser li.widgets-chooser-selected:before,.widgets-chooser li.widgets-chooser-selected:focus:before{color:#fff}#customize-theme-controls .widget-area-select .selected{background-color:#e14d43;color:#fff}.wp-slider .ui-slider-handle,.wp-slider .ui-slider-handle.focus,.wp-slider .ui-slider-handle.ui-state-hover{background:#e14d43;border-color:#d02a21;-webkit-box-shadow:inset 0 1px 0 #ec8a85,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #ec8a85,0 1px 0 rgba(0,0,0,.15)}#sidemenu a.current{background:#f1f1f1;border-bottom-color:#f1f1f1}#plugin-information .action-button{background:#e14d43}div#wp-responsive-toggle a:before{color:#f1f2f3}.wp-responsive-open div#wp-responsive-toggle a{border-color:transparent;background:#e14d43}.star-rating .star{color:#e14d43}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:#26292c}
\ No newline at end of file
diff --git a/sources/wp-admin/css/colors/midnight/colors.scss b/sources/wp-admin/css/colors/midnight/colors.scss
new file mode 100644
index 0000000..591232b
--- /dev/null
+++ b/sources/wp-admin/css/colors/midnight/colors.scss
@@ -0,0 +1,5 @@
+$base-color: #363b3f;
+$highlight-color: #e14d43;
+$notification-color: #69a8bb;
+
+@import "../_admin.scss";
diff --git a/sources/wp-admin/css/colors/ocean/colors-rtl.css b/sources/wp-admin/css/colors/ocean/colors-rtl.css
new file mode 100644
index 0000000..665efad
--- /dev/null
+++ b/sources/wp-admin/css/colors/ocean/colors-rtl.css
@@ -0,0 +1,331 @@
+/*
+ * Button mixin- creates 3d-ish button effect with correct
+ * highlights/shadows, based on a base color.
+ */
+html {
+ background: #f1f1f1; }
+
+/* Links */
+a {
+ color: #0074a2; }
+ a:hover, a:active, a:focus {
+ color: #0099d5; }
+
+#media-upload a.del-link:hover, div.dashboard-widget-submit input:hover, .subsubsub a:hover, .subsubsub a.current:hover {
+ color: #0099d5; }
+
+/* Forms */
+input[type=checkbox]:checked:before {
+ color: #738e96; }
+
+input[type=radio]:checked:before {
+ background: #738e96; }
+
+.wp-core-ui input[type="reset"]:hover, .wp-core-ui input[type="reset"]:active {
+ color: #0099d5; }
+
+/* Core UI */
+.wp-core-ui .button-primary {
+ background: #9ebaa0;
+ border-color: #80a583;
+ color: white;
+ -webkit-box-shadow: inset 0 1px 0 #cbdacc, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #cbdacc, 0 1px 0 rgba(0, 0, 0, 0.15); }
+ .wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
+ background: #8faf91;
+ border-color: #719a74;
+ color: white;
+ -webkit-box-shadow: inset 0 1px 0 #bccfbd, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #bccfbd, 0 1px 0 rgba(0, 0, 0, 0.15); }
+ .wp-core-ui .button-primary:active {
+ background: #80a583;
+ border-color: #719a74;
+ color: white;
+ -webkit-box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
+ box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5); }
+ .wp-core-ui .button-primary[disabled], .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary.button-primary-disabled, .wp-core-ui .button-primary.disabled {
+ color: #c7d1c8 !important;
+ background: #86a988 !important;
+ border-color: #719a74 !important;
+ text-shadow: none !important; }
+.wp-core-ui .wp-ui-primary {
+ color: #fff;
+ background-color: #738e96; }
+.wp-core-ui .wp-ui-text-primary {
+ color: #738e96; }
+.wp-core-ui .wp-ui-highlight {
+ color: #fff;
+ background-color: #9ebaa0; }
+.wp-core-ui .wp-ui-text-highlight {
+ color: #9ebaa0; }
+.wp-core-ui .wp-ui-notification {
+ color: #fff;
+ background-color: #aa9d88; }
+.wp-core-ui .wp-ui-text-notification {
+ color: #aa9d88; }
+.wp-core-ui .wp-ui-text-icon {
+ color: #f2fcff; }
+
+/* List tables */
+.wrap .add-new-h2:hover, #add-new-comment a:hover, .tablenav .tablenav-pages a:hover, .tablenav .tablenav-pages a:focus {
+ color: #fff;
+ background-color: #738e96; }
+
+.view-switch a.current:before {
+ color: #738e96; }
+
+.view-switch a:hover:before {
+ color: #aa9d88; }
+
+.post-com-count:hover:after {
+ border-top-color: #738e96; }
+
+.post-com-count:hover span {
+ color: #fff;
+ background-color: #738e96; }
+
+strong .post-com-count:after {
+ border-top-color: #aa9d88; }
+
+strong .post-com-count span {
+ background-color: #aa9d88; }
+
+/* Admin Menu */
+#adminmenuback, #adminmenuwrap, #adminmenu {
+ background: #738e96; }
+
+#adminmenu a {
+ color: #fff; }
+
+#adminmenu div.wp-menu-image:before {
+ color: #f2fcff; }
+
+#adminmenu a:hover, #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus {
+ color: #fff;
+ background-color: #9ebaa0; }
+
+#adminmenu li.menu-top:hover div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top div.wp-menu-image:before {
+ color: #fff; }
+
+/* Active tabs use a bottom border color that matches the page background color. */
+.about-wrap h2 .nav-tab-active, .nav-tab-active, .nav-tab-active:hover {
+ background-color: #f1f1f1;
+ border-bottom-color: #f1f1f1; }
+
+/* Admin Menu: submenu */
+#adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, .folded #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
+ background: #627c83; }
+
+#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
+ border-left-color: #627c83; }
+
+#adminmenu .wp-submenu .wp-submenu-head {
+ color: #d5dddf; }
+
+#adminmenu .wp-submenu a, #adminmenu .wp-has-current-submenu .wp-submenu a, .folded #adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
+ color: #d5dddf; }
+ #adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-has-current-submenu .wp-submenu a:focus, #adminmenu .wp-has-current-submenu .wp-submenu a:hover, .folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus, .folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover {
+ color: #9ebaa0; }
+
+/* Admin Menu: current */
+#adminmenu .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a {
+ color: #fff; }
+ #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus {
+ color: #9ebaa0; }
+
+ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after {
+ border-left-color: #f1f1f1; }
+
+#adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu li.current.menu-top {
+ color: #fff;
+ background: #9ebaa0; }
+
+#adminmenu li.wp-has-current-submenu div.wp-menu-image:before {
+ color: #fff; }
+
+/* Admin Menu: bubble */
+#adminmenu .awaiting-mod, #adminmenu .update-plugins {
+ color: #fff;
+ background: #aa9d88; }
+
+#adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins, #adminmenu li:hover a .awaiting-mod, #adminmenu li.menu-top:hover > a .update-plugins {
+ color: #fff;
+ background: #627c83; }
+
+/* Admin Menu: collapse button */
+#collapse-menu {
+ color: #f2fcff; }
+
+#collapse-menu:hover {
+ color: #fff; }
+
+#collapse-button div:after {
+ color: #f2fcff; }
+
+#collapse-menu:hover #collapse-button div:after {
+ color: #fff; }
+
+/* Admin Bar */
+#wpadminbar {
+ color: #fff;
+ background: #738e96; }
+
+#wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon {
+ color: #fff; }
+
+#wpadminbar .ab-icon, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar .ab-item:after {
+ color: #f2fcff; }
+
+#wpadminbar .ab-top-menu > li:hover > .ab-item, #wpadminbar .ab-top-menu > li.hover > .ab-item, #wpadminbar .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar-nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
+ color: #9ebaa0;
+ background: #627c83; }
+
+#wpadminbar > #wp-toolbar li:hover span.ab-label, #wpadminbar > #wp-toolbar li.hover span.ab-label, #wpadminbar > #wp-toolbar a:focus span.ab-label {
+ color: #9ebaa0; }
+
+#wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li:hover .ab-item:after, #wpadminbar li:hover #adminbarsearch:before {
+ color: #fff; }
+
+/* Admin Bar: submenu */
+#wpadminbar .menupop .ab-sub-wrapper {
+ background: #627c83; }
+
+#wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
+ background: #8f9b9e; }
+
+#wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar-nojs .quicklinks .menupop:hover ul li a {
+ color: #d5dddf; }
+
+#wpadminbar .quicklinks li .blavatar, #wpadminbar .menupop .menupop > .ab-item:before {
+ color: #f2fcff; }
+
+#wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li .ab-item:focus:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover .ab-item:after, #wpadminbar li.hover .ab-item:after, #wpadminbar li:hover #adminbarsearch:before {
+ color: #9ebaa0; }
+
+#wpadminbar .quicklinks li a:hover .blavatar, #wpadminbar .menupop .menupop > .ab-item:hover:before {
+ color: #9ebaa0; }
+
+/* Admin Bar: search */
+#wpadminbar #adminbarsearch:before {
+ color: #f2fcff; }
+
+#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
+ color: #fff;
+ background: #879fa5; }
+
+#wpadminbar #adminbarsearch .adminbar-input::-webkit-input-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input:-moz-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input::-moz-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input:-ms-input-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+/* Admin Bar: my account */
+#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
+ border-color: #879fa5;
+ background-color: #879fa5; }
+
+#wpadminbar #wp-admin-bar-user-info .display-name {
+ color: #fff; }
+
+#wpadminbar #wp-admin-bar-user-info a:hover .display-name {
+ color: #9ebaa0; }
+
+#wpadminbar #wp-admin-bar-user-info .username {
+ color: #d5dddf; }
+
+/* Pointers */
+.wp-pointer .wp-pointer-content h3 {
+ background-color: #9ebaa0;
+ border-color: #8faf91; }
+
+.wp-pointer .wp-pointer-content h3:before {
+ color: #9ebaa0; }
+
+.wp-pointer.wp-pointer-top .wp-pointer-arrow, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow {
+ border-bottom-color: #9ebaa0; }
+
+/* Media Uploader */
+.media-item .bar, .media-progress-bar div {
+ background-color: #9ebaa0; }
+
+.details.attachment {
+ -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 5px #9ebaa0;
+ box-shadow: 0 0 0 1px #fff, 0 0 0 5px #9ebaa0; }
+
+.attachment.details .check {
+ background-color: #9ebaa0;
+ -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 2px #9ebaa0;
+ box-shadow: 0 0 0 1px #fff, 0 0 0 2px #9ebaa0; }
+
+/* Themes */
+.theme-browser .theme.active .theme-name, .theme-browser .theme.add-new-theme:hover:after {
+ background: #9ebaa0; }
+
+.theme-browser .theme.add-new-theme:hover span:after {
+ color: #9ebaa0; }
+
+.theme-overlay .theme-header .close:hover, .theme-overlay .theme-header .right:hover, .theme-overlay .theme-header .left:hover {
+ background: #9ebaa0; }
+
+.theme-section.current, .theme-filter.current {
+ border-bottom-color: #738e96; }
+
+body.more-filters-opened .more-filters, body.more-filters-opened .more-filters:before {
+ color: #fff;
+ background-color: #738e96; }
+
+body.more-filters-opened .more-filters:hover, body.more-filters-opened .more-filters:focus, body.more-filters-opened .more-filters:hover:before, body.more-filters-opened .more-filters:focus:before {
+ background-color: #9ebaa0;
+ color: #fff; }
+
+/* Widgets */
+.widgets-chooser li.widgets-chooser-selected {
+ background-color: #9ebaa0;
+ color: #fff; }
+
+.widgets-chooser li.widgets-chooser-selected:before, .widgets-chooser li.widgets-chooser-selected:focus:before {
+ color: #fff; }
+
+/* Customize */
+#customize-theme-controls .widget-area-select .selected {
+ background-color: #9ebaa0;
+ color: #fff; }
+
+/* jQuery UI Slider */
+.wp-slider .ui-slider-handle, .wp-slider .ui-slider-handle.ui-state-hover, .wp-slider .ui-slider-handle.focus {
+ background: #9ebaa0;
+ border-color: #80a583;
+ -webkit-box-shadow: inset 0 1px 0 #cbdacc, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #cbdacc, 0 1px 0 rgba(0, 0, 0, 0.15); }
+
+/* Thickbox: Plugin information */
+#sidemenu a.current {
+ background: #f1f1f1;
+ border-bottom-color: #f1f1f1; }
+
+#plugin-information .action-button {
+ background: #9ebaa0; }
+
+/* Responsive Component */
+div#wp-responsive-toggle a:before {
+ color: #f2fcff; }
+
+.wp-responsive-open div#wp-responsive-toggle a {
+ border-color: transparent;
+ background: #9ebaa0; }
+
+.star-rating .star {
+ color: #9ebaa0; }
+
+.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
+ background: #627c83; }
diff --git a/sources/wp-admin/css/colors/ocean/colors-rtl.min.css b/sources/wp-admin/css/colors/ocean/colors-rtl.min.css
new file mode 100644
index 0000000..45143c6
--- /dev/null
+++ b/sources/wp-admin/css/colors/ocean/colors-rtl.min.css
@@ -0,0 +1 @@
+html{background:#f1f1f1}a{color:#0074a2}#media-upload a.del-link:hover,.subsubsub a.current:hover,.subsubsub a:hover,a:active,a:focus,a:hover,div.dashboard-widget-submit input:hover{color:#0099d5}input[type=checkbox]:checked:before{color:#738e96}input[type=radio]:checked:before{background:#738e96}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:#0099d5}.wp-core-ui .button-primary{background:#9ebaa0;border-color:#80a583;color:#fff;-webkit-box-shadow:inset 0 1px 0 #cbdacc,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #cbdacc,0 1px 0 rgba(0,0,0,.15)}.wp-core-ui .button-primary:focus,.wp-core-ui .button-primary:hover{background:#8faf91;border-color:#719a74;color:#fff;-webkit-box-shadow:inset 0 1px 0 #bccfbd,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #bccfbd,0 1px 0 rgba(0,0,0,.15)}.wp-core-ui .button-primary:active{background:#80a583;border-color:#719a74;color:#fff;-webkit-box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5);box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5)}.wp-core-ui .button-primary.button-primary-disabled,.wp-core-ui .button-primary.disabled,.wp-core-ui .button-primary:disabled,.wp-core-ui .button-primary[disabled]{color:#c7d1c8!important;background:#86a988!important;border-color:#719a74!important;text-shadow:none!important}.wp-core-ui .wp-ui-primary{color:#fff;background-color:#738e96}.wp-core-ui .wp-ui-text-primary{color:#738e96}.wp-core-ui .wp-ui-highlight{color:#fff;background-color:#9ebaa0}.wp-core-ui .wp-ui-text-highlight{color:#9ebaa0}.wp-core-ui .wp-ui-notification{color:#fff;background-color:#aa9d88}.wp-core-ui .wp-ui-text-notification{color:#aa9d88}.wp-core-ui .wp-ui-text-icon{color:#f2fcff}#add-new-comment a:hover,.tablenav .tablenav-pages a:focus,.tablenav .tablenav-pages a:hover,.wrap .add-new-h2:hover{color:#fff;background-color:#738e96}.view-switch a.current:before{color:#738e96}.view-switch a:hover:before{color:#aa9d88}.post-com-count:hover:after{border-top-color:#738e96}.post-com-count:hover span{color:#fff;background-color:#738e96}strong .post-com-count:after{border-top-color:#aa9d88}strong .post-com-count span{background-color:#aa9d88}#adminmenu,#adminmenuback,#adminmenuwrap{background:#738e96}#adminmenu a{color:#fff}#adminmenu div.wp-menu-image:before{color:#f2fcff}#adminmenu a:hover,#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{color:#fff;background-color:#9ebaa0}#adminmenu li.menu-top:hover div.wp-menu-image:before,#adminmenu li.opensub>a.menu-top div.wp-menu-image:before{color:#fff}.about-wrap h2 .nav-tab-active,.nav-tab-active,.nav-tab-active:hover{background-color:#f1f1f1;border-bottom-color:#f1f1f1}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,#adminmenu .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu{background:#627c83}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after{border-left-color:#627c83}#adminmenu .wp-has-current-submenu .wp-submenu a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a,#adminmenu .wp-submenu .wp-submenu-head,#adminmenu .wp-submenu a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a,.folded #adminmenu .wp-has-current-submenu .wp-submenu a{color:#d5dddf}#adminmenu .wp-has-current-submenu .wp-submenu a:focus,#adminmenu .wp-has-current-submenu .wp-submenu a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover,#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:hover,.folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus,.folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover{color:#9ebaa0}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a,#adminmenu .wp-submenu li.current a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a{color:#fff}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:hover{color:#9ebaa0}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{border-left-color:#f1f1f1}#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{color:#fff;background:#9ebaa0}#adminmenu li.wp-has-current-submenu div.wp-menu-image:before{color:#fff}#adminmenu .awaiting-mod,#adminmenu .update-plugins{color:#fff;background:#aa9d88}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod,#adminmenu li.menu-top:hover>a .update-plugins,#adminmenu li:hover a .awaiting-mod{color:#fff;background:#627c83}#collapse-menu{color:#f2fcff}#collapse-menu:hover{color:#fff}#collapse-button div:after{color:#f2fcff}#collapse-menu:hover #collapse-button div:after{color:#fff}#wpadminbar{color:#fff;background:#738e96}#wpadminbar .ab-item,#wpadminbar a.ab-item,#wpadminbar>#wp-toolbar span.ab-label,#wpadminbar>#wp-toolbar span.noticon{color:#fff}#wpadminbar .ab-icon,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:after,#wpadminbar .ab-item:before{color:#f2fcff}#wpadminbar .ab-top-menu>li.hover>.ab-item,#wpadminbar .ab-top-menu>li.menupop.hover>.ab-item,#wpadminbar .ab-top-menu>li:hover>.ab-item,#wpadminbar .ab-top-menu>li>.ab-item:focus,#wpadminbar-nojs .ab-top-menu>li.menupop:hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus{color:#9ebaa0;background:#627c83}#wpadminbar>#wp-toolbar a:focus span.ab-label,#wpadminbar>#wp-toolbar li.hover span.ab-label,#wpadminbar>#wp-toolbar li:hover span.ab-label{color:#9ebaa0}#wpadminbar .menupop .ab-sub-wrapper{background:#627c83}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu{background:#8f9b9e}#wpadminbar .ab-submenu .ab-item,#wpadminbar .quicklinks .menupop ul li a,#wpadminbar .quicklinks .menupop.hover ul li a,#wpadminbar-nojs .quicklinks .menupop:hover ul li a{color:#d5dddf}#wpadminbar .menupop .menupop>.ab-item:before,#wpadminbar .quicklinks li .blavatar{color:#f2fcff}#wpadminbar .menupop .menupop>.ab-item:hover:before,#wpadminbar .quicklinks .menupop ul li a:focus,#wpadminbar .quicklinks .menupop ul li a:focus strong,#wpadminbar .quicklinks .menupop ul li a:hover,#wpadminbar .quicklinks .menupop ul li a:hover strong,#wpadminbar .quicklinks .menupop.hover ul li a:focus,#wpadminbar .quicklinks .menupop.hover ul li a:hover,#wpadminbar .quicklinks li a:hover .blavatar,#wpadminbar li .ab-item:focus:before,#wpadminbar li a:focus .ab-icon:before,#wpadminbar li.hover .ab-icon:before,#wpadminbar li.hover .ab-item:after,#wpadminbar li.hover .ab-item:before,#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:after,#wpadminbar li:hover .ab-item:before,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover{color:#9ebaa0}#wpadminbar #adminbarsearch:before{color:#f2fcff}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input:focus{color:#fff;background:#879fa5}#wpadminbar #adminbarsearch .adminbar-input::-webkit-input-placeholder{color:#fff;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input:-moz-placeholder{color:#fff;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input::-moz-placeholder{color:#fff;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input:-ms-input-placeholder{color:#fff;opacity:.7}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{border-color:#879fa5;background-color:#879fa5}#wpadminbar #wp-admin-bar-user-info .display-name{color:#fff}#wpadminbar #wp-admin-bar-user-info a:hover .display-name{color:#9ebaa0}#wpadminbar #wp-admin-bar-user-info .username{color:#d5dddf}.wp-pointer .wp-pointer-content h3{background-color:#9ebaa0;border-color:#8faf91}.wp-pointer .wp-pointer-content h3:before{color:#9ebaa0}.wp-pointer.wp-pointer-top .wp-pointer-arrow,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow{border-bottom-color:#9ebaa0}.media-item .bar,.media-progress-bar div{background-color:#9ebaa0}.details.attachment{-webkit-box-shadow:0 0 0 1px #fff,0 0 0 5px #9ebaa0;box-shadow:0 0 0 1px #fff,0 0 0 5px #9ebaa0}.attachment.details .check{background-color:#9ebaa0;-webkit-box-shadow:0 0 0 1px #fff,0 0 0 2px #9ebaa0;box-shadow:0 0 0 1px #fff,0 0 0 2px #9ebaa0}.theme-browser .theme.active .theme-name,.theme-browser .theme.add-new-theme:hover:after{background:#9ebaa0}.theme-browser .theme.add-new-theme:hover span:after{color:#9ebaa0}.theme-overlay .theme-header .close:hover,.theme-overlay .theme-header .left:hover,.theme-overlay .theme-header .right:hover{background:#9ebaa0}.theme-filter.current,.theme-section.current{border-bottom-color:#738e96}body.more-filters-opened .more-filters,body.more-filters-opened .more-filters:before{color:#fff;background-color:#738e96}.widgets-chooser li.widgets-chooser-selected,body.more-filters-opened .more-filters:focus,body.more-filters-opened .more-filters:focus:before,body.more-filters-opened .more-filters:hover,body.more-filters-opened .more-filters:hover:before{background-color:#9ebaa0;color:#fff}.widgets-chooser li.widgets-chooser-selected:before,.widgets-chooser li.widgets-chooser-selected:focus:before{color:#fff}#customize-theme-controls .widget-area-select .selected{background-color:#9ebaa0;color:#fff}.wp-slider .ui-slider-handle,.wp-slider .ui-slider-handle.focus,.wp-slider .ui-slider-handle.ui-state-hover{background:#9ebaa0;border-color:#80a583;-webkit-box-shadow:inset 0 1px 0 #cbdacc,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #cbdacc,0 1px 0 rgba(0,0,0,.15)}#sidemenu a.current{background:#f1f1f1;border-bottom-color:#f1f1f1}#plugin-information .action-button{background:#9ebaa0}div#wp-responsive-toggle a:before{color:#f2fcff}.wp-responsive-open div#wp-responsive-toggle a{border-color:transparent;background:#9ebaa0}.star-rating .star{color:#9ebaa0}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:#627c83}
\ No newline at end of file
diff --git a/sources/wp-admin/css/colors/ocean/colors.css b/sources/wp-admin/css/colors/ocean/colors.css
new file mode 100644
index 0000000..0ee3295
--- /dev/null
+++ b/sources/wp-admin/css/colors/ocean/colors.css
@@ -0,0 +1,331 @@
+/*
+ * Button mixin- creates 3d-ish button effect with correct
+ * highlights/shadows, based on a base color.
+ */
+html {
+ background: #f1f1f1; }
+
+/* Links */
+a {
+ color: #0074a2; }
+ a:hover, a:active, a:focus {
+ color: #0099d5; }
+
+#media-upload a.del-link:hover, div.dashboard-widget-submit input:hover, .subsubsub a:hover, .subsubsub a.current:hover {
+ color: #0099d5; }
+
+/* Forms */
+input[type=checkbox]:checked:before {
+ color: #738e96; }
+
+input[type=radio]:checked:before {
+ background: #738e96; }
+
+.wp-core-ui input[type="reset"]:hover, .wp-core-ui input[type="reset"]:active {
+ color: #0099d5; }
+
+/* Core UI */
+.wp-core-ui .button-primary {
+ background: #9ebaa0;
+ border-color: #80a583;
+ color: white;
+ -webkit-box-shadow: inset 0 1px 0 #cbdacc, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #cbdacc, 0 1px 0 rgba(0, 0, 0, 0.15); }
+ .wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
+ background: #8faf91;
+ border-color: #719a74;
+ color: white;
+ -webkit-box-shadow: inset 0 1px 0 #bccfbd, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #bccfbd, 0 1px 0 rgba(0, 0, 0, 0.15); }
+ .wp-core-ui .button-primary:active {
+ background: #80a583;
+ border-color: #719a74;
+ color: white;
+ -webkit-box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
+ box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5); }
+ .wp-core-ui .button-primary[disabled], .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary.button-primary-disabled, .wp-core-ui .button-primary.disabled {
+ color: #c7d1c8 !important;
+ background: #86a988 !important;
+ border-color: #719a74 !important;
+ text-shadow: none !important; }
+.wp-core-ui .wp-ui-primary {
+ color: #fff;
+ background-color: #738e96; }
+.wp-core-ui .wp-ui-text-primary {
+ color: #738e96; }
+.wp-core-ui .wp-ui-highlight {
+ color: #fff;
+ background-color: #9ebaa0; }
+.wp-core-ui .wp-ui-text-highlight {
+ color: #9ebaa0; }
+.wp-core-ui .wp-ui-notification {
+ color: #fff;
+ background-color: #aa9d88; }
+.wp-core-ui .wp-ui-text-notification {
+ color: #aa9d88; }
+.wp-core-ui .wp-ui-text-icon {
+ color: #f2fcff; }
+
+/* List tables */
+.wrap .add-new-h2:hover, #add-new-comment a:hover, .tablenav .tablenav-pages a:hover, .tablenav .tablenav-pages a:focus {
+ color: #fff;
+ background-color: #738e96; }
+
+.view-switch a.current:before {
+ color: #738e96; }
+
+.view-switch a:hover:before {
+ color: #aa9d88; }
+
+.post-com-count:hover:after {
+ border-top-color: #738e96; }
+
+.post-com-count:hover span {
+ color: #fff;
+ background-color: #738e96; }
+
+strong .post-com-count:after {
+ border-top-color: #aa9d88; }
+
+strong .post-com-count span {
+ background-color: #aa9d88; }
+
+/* Admin Menu */
+#adminmenuback, #adminmenuwrap, #adminmenu {
+ background: #738e96; }
+
+#adminmenu a {
+ color: #fff; }
+
+#adminmenu div.wp-menu-image:before {
+ color: #f2fcff; }
+
+#adminmenu a:hover, #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus {
+ color: #fff;
+ background-color: #9ebaa0; }
+
+#adminmenu li.menu-top:hover div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top div.wp-menu-image:before {
+ color: #fff; }
+
+/* Active tabs use a bottom border color that matches the page background color. */
+.about-wrap h2 .nav-tab-active, .nav-tab-active, .nav-tab-active:hover {
+ background-color: #f1f1f1;
+ border-bottom-color: #f1f1f1; }
+
+/* Admin Menu: submenu */
+#adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, .folded #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
+ background: #627c83; }
+
+#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
+ border-right-color: #627c83; }
+
+#adminmenu .wp-submenu .wp-submenu-head {
+ color: #d5dddf; }
+
+#adminmenu .wp-submenu a, #adminmenu .wp-has-current-submenu .wp-submenu a, .folded #adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
+ color: #d5dddf; }
+ #adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-has-current-submenu .wp-submenu a:focus, #adminmenu .wp-has-current-submenu .wp-submenu a:hover, .folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus, .folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover {
+ color: #9ebaa0; }
+
+/* Admin Menu: current */
+#adminmenu .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a {
+ color: #fff; }
+ #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus {
+ color: #9ebaa0; }
+
+ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after {
+ border-right-color: #f1f1f1; }
+
+#adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu li.current.menu-top {
+ color: #fff;
+ background: #9ebaa0; }
+
+#adminmenu li.wp-has-current-submenu div.wp-menu-image:before {
+ color: #fff; }
+
+/* Admin Menu: bubble */
+#adminmenu .awaiting-mod, #adminmenu .update-plugins {
+ color: #fff;
+ background: #aa9d88; }
+
+#adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins, #adminmenu li:hover a .awaiting-mod, #adminmenu li.menu-top:hover > a .update-plugins {
+ color: #fff;
+ background: #627c83; }
+
+/* Admin Menu: collapse button */
+#collapse-menu {
+ color: #f2fcff; }
+
+#collapse-menu:hover {
+ color: #fff; }
+
+#collapse-button div:after {
+ color: #f2fcff; }
+
+#collapse-menu:hover #collapse-button div:after {
+ color: #fff; }
+
+/* Admin Bar */
+#wpadminbar {
+ color: #fff;
+ background: #738e96; }
+
+#wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon {
+ color: #fff; }
+
+#wpadminbar .ab-icon, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar .ab-item:after {
+ color: #f2fcff; }
+
+#wpadminbar .ab-top-menu > li:hover > .ab-item, #wpadminbar .ab-top-menu > li.hover > .ab-item, #wpadminbar .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar-nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
+ color: #9ebaa0;
+ background: #627c83; }
+
+#wpadminbar > #wp-toolbar li:hover span.ab-label, #wpadminbar > #wp-toolbar li.hover span.ab-label, #wpadminbar > #wp-toolbar a:focus span.ab-label {
+ color: #9ebaa0; }
+
+#wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li:hover .ab-item:after, #wpadminbar li:hover #adminbarsearch:before {
+ color: #fff; }
+
+/* Admin Bar: submenu */
+#wpadminbar .menupop .ab-sub-wrapper {
+ background: #627c83; }
+
+#wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
+ background: #8f9b9e; }
+
+#wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar-nojs .quicklinks .menupop:hover ul li a {
+ color: #d5dddf; }
+
+#wpadminbar .quicklinks li .blavatar, #wpadminbar .menupop .menupop > .ab-item:before {
+ color: #f2fcff; }
+
+#wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li .ab-item:focus:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover .ab-item:after, #wpadminbar li.hover .ab-item:after, #wpadminbar li:hover #adminbarsearch:before {
+ color: #9ebaa0; }
+
+#wpadminbar .quicklinks li a:hover .blavatar, #wpadminbar .menupop .menupop > .ab-item:hover:before {
+ color: #9ebaa0; }
+
+/* Admin Bar: search */
+#wpadminbar #adminbarsearch:before {
+ color: #f2fcff; }
+
+#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
+ color: #fff;
+ background: #879fa5; }
+
+#wpadminbar #adminbarsearch .adminbar-input::-webkit-input-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input:-moz-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input::-moz-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input:-ms-input-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+/* Admin Bar: my account */
+#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
+ border-color: #879fa5;
+ background-color: #879fa5; }
+
+#wpadminbar #wp-admin-bar-user-info .display-name {
+ color: #fff; }
+
+#wpadminbar #wp-admin-bar-user-info a:hover .display-name {
+ color: #9ebaa0; }
+
+#wpadminbar #wp-admin-bar-user-info .username {
+ color: #d5dddf; }
+
+/* Pointers */
+.wp-pointer .wp-pointer-content h3 {
+ background-color: #9ebaa0;
+ border-color: #8faf91; }
+
+.wp-pointer .wp-pointer-content h3:before {
+ color: #9ebaa0; }
+
+.wp-pointer.wp-pointer-top .wp-pointer-arrow, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow {
+ border-bottom-color: #9ebaa0; }
+
+/* Media Uploader */
+.media-item .bar, .media-progress-bar div {
+ background-color: #9ebaa0; }
+
+.details.attachment {
+ -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 5px #9ebaa0;
+ box-shadow: 0 0 0 1px #fff, 0 0 0 5px #9ebaa0; }
+
+.attachment.details .check {
+ background-color: #9ebaa0;
+ -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 2px #9ebaa0;
+ box-shadow: 0 0 0 1px #fff, 0 0 0 2px #9ebaa0; }
+
+/* Themes */
+.theme-browser .theme.active .theme-name, .theme-browser .theme.add-new-theme:hover:after {
+ background: #9ebaa0; }
+
+.theme-browser .theme.add-new-theme:hover span:after {
+ color: #9ebaa0; }
+
+.theme-overlay .theme-header .close:hover, .theme-overlay .theme-header .right:hover, .theme-overlay .theme-header .left:hover {
+ background: #9ebaa0; }
+
+.theme-section.current, .theme-filter.current {
+ border-bottom-color: #738e96; }
+
+body.more-filters-opened .more-filters, body.more-filters-opened .more-filters:before {
+ color: #fff;
+ background-color: #738e96; }
+
+body.more-filters-opened .more-filters:hover, body.more-filters-opened .more-filters:focus, body.more-filters-opened .more-filters:hover:before, body.more-filters-opened .more-filters:focus:before {
+ background-color: #9ebaa0;
+ color: #fff; }
+
+/* Widgets */
+.widgets-chooser li.widgets-chooser-selected {
+ background-color: #9ebaa0;
+ color: #fff; }
+
+.widgets-chooser li.widgets-chooser-selected:before, .widgets-chooser li.widgets-chooser-selected:focus:before {
+ color: #fff; }
+
+/* Customize */
+#customize-theme-controls .widget-area-select .selected {
+ background-color: #9ebaa0;
+ color: #fff; }
+
+/* jQuery UI Slider */
+.wp-slider .ui-slider-handle, .wp-slider .ui-slider-handle.ui-state-hover, .wp-slider .ui-slider-handle.focus {
+ background: #9ebaa0;
+ border-color: #80a583;
+ -webkit-box-shadow: inset 0 1px 0 #cbdacc, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #cbdacc, 0 1px 0 rgba(0, 0, 0, 0.15); }
+
+/* Thickbox: Plugin information */
+#sidemenu a.current {
+ background: #f1f1f1;
+ border-bottom-color: #f1f1f1; }
+
+#plugin-information .action-button {
+ background: #9ebaa0; }
+
+/* Responsive Component */
+div#wp-responsive-toggle a:before {
+ color: #f2fcff; }
+
+.wp-responsive-open div#wp-responsive-toggle a {
+ border-color: transparent;
+ background: #9ebaa0; }
+
+.star-rating .star {
+ color: #9ebaa0; }
+
+.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
+ background: #627c83; }
diff --git a/sources/wp-admin/css/colors/ocean/colors.min.css b/sources/wp-admin/css/colors/ocean/colors.min.css
new file mode 100644
index 0000000..e10635d
--- /dev/null
+++ b/sources/wp-admin/css/colors/ocean/colors.min.css
@@ -0,0 +1 @@
+html{background:#f1f1f1}a{color:#0074a2}#media-upload a.del-link:hover,.subsubsub a.current:hover,.subsubsub a:hover,a:active,a:focus,a:hover,div.dashboard-widget-submit input:hover{color:#0099d5}input[type=checkbox]:checked:before{color:#738e96}input[type=radio]:checked:before{background:#738e96}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:#0099d5}.wp-core-ui .button-primary{background:#9ebaa0;border-color:#80a583;color:#fff;-webkit-box-shadow:inset 0 1px 0 #cbdacc,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #cbdacc,0 1px 0 rgba(0,0,0,.15)}.wp-core-ui .button-primary:focus,.wp-core-ui .button-primary:hover{background:#8faf91;border-color:#719a74;color:#fff;-webkit-box-shadow:inset 0 1px 0 #bccfbd,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #bccfbd,0 1px 0 rgba(0,0,0,.15)}.wp-core-ui .button-primary:active{background:#80a583;border-color:#719a74;color:#fff;-webkit-box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5);box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5)}.wp-core-ui .button-primary.button-primary-disabled,.wp-core-ui .button-primary.disabled,.wp-core-ui .button-primary:disabled,.wp-core-ui .button-primary[disabled]{color:#c7d1c8!important;background:#86a988!important;border-color:#719a74!important;text-shadow:none!important}.wp-core-ui .wp-ui-primary{color:#fff;background-color:#738e96}.wp-core-ui .wp-ui-text-primary{color:#738e96}.wp-core-ui .wp-ui-highlight{color:#fff;background-color:#9ebaa0}.wp-core-ui .wp-ui-text-highlight{color:#9ebaa0}.wp-core-ui .wp-ui-notification{color:#fff;background-color:#aa9d88}.wp-core-ui .wp-ui-text-notification{color:#aa9d88}.wp-core-ui .wp-ui-text-icon{color:#f2fcff}#add-new-comment a:hover,.tablenav .tablenav-pages a:focus,.tablenav .tablenav-pages a:hover,.wrap .add-new-h2:hover{color:#fff;background-color:#738e96}.view-switch a.current:before{color:#738e96}.view-switch a:hover:before{color:#aa9d88}.post-com-count:hover:after{border-top-color:#738e96}.post-com-count:hover span{color:#fff;background-color:#738e96}strong .post-com-count:after{border-top-color:#aa9d88}strong .post-com-count span{background-color:#aa9d88}#adminmenu,#adminmenuback,#adminmenuwrap{background:#738e96}#adminmenu a{color:#fff}#adminmenu div.wp-menu-image:before{color:#f2fcff}#adminmenu a:hover,#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{color:#fff;background-color:#9ebaa0}#adminmenu li.menu-top:hover div.wp-menu-image:before,#adminmenu li.opensub>a.menu-top div.wp-menu-image:before{color:#fff}.about-wrap h2 .nav-tab-active,.nav-tab-active,.nav-tab-active:hover{background-color:#f1f1f1;border-bottom-color:#f1f1f1}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,#adminmenu .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu{background:#627c83}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after{border-right-color:#627c83}#adminmenu .wp-has-current-submenu .wp-submenu a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a,#adminmenu .wp-submenu .wp-submenu-head,#adminmenu .wp-submenu a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a,.folded #adminmenu .wp-has-current-submenu .wp-submenu a{color:#d5dddf}#adminmenu .wp-has-current-submenu .wp-submenu a:focus,#adminmenu .wp-has-current-submenu .wp-submenu a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover,#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:hover,.folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus,.folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover{color:#9ebaa0}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a,#adminmenu .wp-submenu li.current a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a{color:#fff}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:hover{color:#9ebaa0}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{border-right-color:#f1f1f1}#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{color:#fff;background:#9ebaa0}#adminmenu li.wp-has-current-submenu div.wp-menu-image:before{color:#fff}#adminmenu .awaiting-mod,#adminmenu .update-plugins{color:#fff;background:#aa9d88}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod,#adminmenu li.menu-top:hover>a .update-plugins,#adminmenu li:hover a .awaiting-mod{color:#fff;background:#627c83}#collapse-menu{color:#f2fcff}#collapse-menu:hover{color:#fff}#collapse-button div:after{color:#f2fcff}#collapse-menu:hover #collapse-button div:after{color:#fff}#wpadminbar{color:#fff;background:#738e96}#wpadminbar .ab-item,#wpadminbar a.ab-item,#wpadminbar>#wp-toolbar span.ab-label,#wpadminbar>#wp-toolbar span.noticon{color:#fff}#wpadminbar .ab-icon,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:after,#wpadminbar .ab-item:before{color:#f2fcff}#wpadminbar .ab-top-menu>li.hover>.ab-item,#wpadminbar .ab-top-menu>li.menupop.hover>.ab-item,#wpadminbar .ab-top-menu>li:hover>.ab-item,#wpadminbar .ab-top-menu>li>.ab-item:focus,#wpadminbar-nojs .ab-top-menu>li.menupop:hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus{color:#9ebaa0;background:#627c83}#wpadminbar>#wp-toolbar a:focus span.ab-label,#wpadminbar>#wp-toolbar li.hover span.ab-label,#wpadminbar>#wp-toolbar li:hover span.ab-label{color:#9ebaa0}#wpadminbar .menupop .ab-sub-wrapper{background:#627c83}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu{background:#8f9b9e}#wpadminbar .ab-submenu .ab-item,#wpadminbar .quicklinks .menupop ul li a,#wpadminbar .quicklinks .menupop.hover ul li a,#wpadminbar-nojs .quicklinks .menupop:hover ul li a{color:#d5dddf}#wpadminbar .menupop .menupop>.ab-item:before,#wpadminbar .quicklinks li .blavatar{color:#f2fcff}#wpadminbar .menupop .menupop>.ab-item:hover:before,#wpadminbar .quicklinks .menupop ul li a:focus,#wpadminbar .quicklinks .menupop ul li a:focus strong,#wpadminbar .quicklinks .menupop ul li a:hover,#wpadminbar .quicklinks .menupop ul li a:hover strong,#wpadminbar .quicklinks .menupop.hover ul li a:focus,#wpadminbar .quicklinks .menupop.hover ul li a:hover,#wpadminbar .quicklinks li a:hover .blavatar,#wpadminbar li .ab-item:focus:before,#wpadminbar li a:focus .ab-icon:before,#wpadminbar li.hover .ab-icon:before,#wpadminbar li.hover .ab-item:after,#wpadminbar li.hover .ab-item:before,#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:after,#wpadminbar li:hover .ab-item:before,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover{color:#9ebaa0}#wpadminbar #adminbarsearch:before{color:#f2fcff}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input:focus{color:#fff;background:#879fa5}#wpadminbar #adminbarsearch .adminbar-input::-webkit-input-placeholder{color:#fff;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input:-moz-placeholder{color:#fff;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input::-moz-placeholder{color:#fff;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input:-ms-input-placeholder{color:#fff;opacity:.7}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{border-color:#879fa5;background-color:#879fa5}#wpadminbar #wp-admin-bar-user-info .display-name{color:#fff}#wpadminbar #wp-admin-bar-user-info a:hover .display-name{color:#9ebaa0}#wpadminbar #wp-admin-bar-user-info .username{color:#d5dddf}.wp-pointer .wp-pointer-content h3{background-color:#9ebaa0;border-color:#8faf91}.wp-pointer .wp-pointer-content h3:before{color:#9ebaa0}.wp-pointer.wp-pointer-top .wp-pointer-arrow,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow{border-bottom-color:#9ebaa0}.media-item .bar,.media-progress-bar div{background-color:#9ebaa0}.details.attachment{-webkit-box-shadow:0 0 0 1px #fff,0 0 0 5px #9ebaa0;box-shadow:0 0 0 1px #fff,0 0 0 5px #9ebaa0}.attachment.details .check{background-color:#9ebaa0;-webkit-box-shadow:0 0 0 1px #fff,0 0 0 2px #9ebaa0;box-shadow:0 0 0 1px #fff,0 0 0 2px #9ebaa0}.theme-browser .theme.active .theme-name,.theme-browser .theme.add-new-theme:hover:after{background:#9ebaa0}.theme-browser .theme.add-new-theme:hover span:after{color:#9ebaa0}.theme-overlay .theme-header .close:hover,.theme-overlay .theme-header .left:hover,.theme-overlay .theme-header .right:hover{background:#9ebaa0}.theme-filter.current,.theme-section.current{border-bottom-color:#738e96}body.more-filters-opened .more-filters,body.more-filters-opened .more-filters:before{color:#fff;background-color:#738e96}.widgets-chooser li.widgets-chooser-selected,body.more-filters-opened .more-filters:focus,body.more-filters-opened .more-filters:focus:before,body.more-filters-opened .more-filters:hover,body.more-filters-opened .more-filters:hover:before{background-color:#9ebaa0;color:#fff}.widgets-chooser li.widgets-chooser-selected:before,.widgets-chooser li.widgets-chooser-selected:focus:before{color:#fff}#customize-theme-controls .widget-area-select .selected{background-color:#9ebaa0;color:#fff}.wp-slider .ui-slider-handle,.wp-slider .ui-slider-handle.focus,.wp-slider .ui-slider-handle.ui-state-hover{background:#9ebaa0;border-color:#80a583;-webkit-box-shadow:inset 0 1px 0 #cbdacc,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #cbdacc,0 1px 0 rgba(0,0,0,.15)}#sidemenu a.current{background:#f1f1f1;border-bottom-color:#f1f1f1}#plugin-information .action-button{background:#9ebaa0}div#wp-responsive-toggle a:before{color:#f2fcff}.wp-responsive-open div#wp-responsive-toggle a{border-color:transparent;background:#9ebaa0}.star-rating .star{color:#9ebaa0}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:#627c83}
\ No newline at end of file
diff --git a/sources/wp-admin/css/colors/ocean/colors.scss b/sources/wp-admin/css/colors/ocean/colors.scss
new file mode 100644
index 0000000..d52339c
--- /dev/null
+++ b/sources/wp-admin/css/colors/ocean/colors.scss
@@ -0,0 +1,8 @@
+$base-color: #738e96;
+$icon-color: #f2fcff;
+$highlight-color: #9ebaa0;
+$notification-color: #aa9d88;
+
+$form-checked: $base-color;
+
+@import "../_admin.scss";
diff --git a/sources/wp-admin/css/colors/sunrise/colors-rtl.css b/sources/wp-admin/css/colors/sunrise/colors-rtl.css
new file mode 100644
index 0000000..e80f79a
--- /dev/null
+++ b/sources/wp-admin/css/colors/sunrise/colors-rtl.css
@@ -0,0 +1,331 @@
+/*
+ * Button mixin- creates 3d-ish button effect with correct
+ * highlights/shadows, based on a base color.
+ */
+html {
+ background: #f1f1f1; }
+
+/* Links */
+a {
+ color: #0074a2; }
+ a:hover, a:active, a:focus {
+ color: #0099d5; }
+
+#media-upload a.del-link:hover, div.dashboard-widget-submit input:hover, .subsubsub a:hover, .subsubsub a.current:hover {
+ color: #0099d5; }
+
+/* Forms */
+input[type=checkbox]:checked:before {
+ color: #dd823b; }
+
+input[type=radio]:checked:before {
+ background: #dd823b; }
+
+.wp-core-ui input[type="reset"]:hover, .wp-core-ui input[type="reset"]:active {
+ color: #0099d5; }
+
+/* Core UI */
+.wp-core-ui .button-primary {
+ background: #dd823b;
+ border-color: #c36822;
+ color: white;
+ -webkit-box-shadow: inset 0 1px 0 #e8ab7c, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #e8ab7c, 0 1px 0 rgba(0, 0, 0, 0.15); }
+ .wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
+ background: #d97326;
+ border-color: #ad5c1e;
+ color: white;
+ -webkit-box-shadow: inset 0 1px 0 #e59d66, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #e59d66, 0 1px 0 rgba(0, 0, 0, 0.15); }
+ .wp-core-ui .button-primary:active {
+ background: #c36822;
+ border-color: #ad5c1e;
+ color: white;
+ -webkit-box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
+ box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5); }
+ .wp-core-ui .button-primary[disabled], .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary.button-primary-disabled, .wp-core-ui .button-primary.disabled {
+ color: #d1cbc7 !important;
+ background: #cc6c23 !important;
+ border-color: #ad5c1e !important;
+ text-shadow: none !important; }
+.wp-core-ui .wp-ui-primary {
+ color: #fff;
+ background-color: #cf4944; }
+.wp-core-ui .wp-ui-text-primary {
+ color: #cf4944; }
+.wp-core-ui .wp-ui-highlight {
+ color: #fff;
+ background-color: #dd823b; }
+.wp-core-ui .wp-ui-text-highlight {
+ color: #dd823b; }
+.wp-core-ui .wp-ui-notification {
+ color: #fff;
+ background-color: #ccaf0b; }
+.wp-core-ui .wp-ui-text-notification {
+ color: #ccaf0b; }
+.wp-core-ui .wp-ui-text-icon {
+ color: #f3f1f1; }
+
+/* List tables */
+.wrap .add-new-h2:hover, #add-new-comment a:hover, .tablenav .tablenav-pages a:hover, .tablenav .tablenav-pages a:focus {
+ color: #fff;
+ background-color: #cf4944; }
+
+.view-switch a.current:before {
+ color: #cf4944; }
+
+.view-switch a:hover:before {
+ color: #ccaf0b; }
+
+.post-com-count:hover:after {
+ border-top-color: #cf4944; }
+
+.post-com-count:hover span {
+ color: #fff;
+ background-color: #cf4944; }
+
+strong .post-com-count:after {
+ border-top-color: #ccaf0b; }
+
+strong .post-com-count span {
+ background-color: #ccaf0b; }
+
+/* Admin Menu */
+#adminmenuback, #adminmenuwrap, #adminmenu {
+ background: #cf4944; }
+
+#adminmenu a {
+ color: #fff; }
+
+#adminmenu div.wp-menu-image:before {
+ color: #f3f1f1; }
+
+#adminmenu a:hover, #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus {
+ color: #fff;
+ background-color: #dd823b; }
+
+#adminmenu li.menu-top:hover div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top div.wp-menu-image:before {
+ color: #fff; }
+
+/* Active tabs use a bottom border color that matches the page background color. */
+.about-wrap h2 .nav-tab-active, .nav-tab-active, .nav-tab-active:hover {
+ background-color: #f1f1f1;
+ border-bottom-color: #f1f1f1; }
+
+/* Admin Menu: submenu */
+#adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, .folded #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
+ background: #be3631; }
+
+#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
+ border-left-color: #be3631; }
+
+#adminmenu .wp-submenu .wp-submenu-head {
+ color: #f0c8c6; }
+
+#adminmenu .wp-submenu a, #adminmenu .wp-has-current-submenu .wp-submenu a, .folded #adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
+ color: #f0c8c6; }
+ #adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-has-current-submenu .wp-submenu a:focus, #adminmenu .wp-has-current-submenu .wp-submenu a:hover, .folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus, .folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover {
+ color: #f7e3d3; }
+
+/* Admin Menu: current */
+#adminmenu .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a {
+ color: #fff; }
+ #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus {
+ color: #f7e3d3; }
+
+ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after {
+ border-left-color: #f1f1f1; }
+
+#adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu li.current.menu-top {
+ color: #fff;
+ background: #dd823b; }
+
+#adminmenu li.wp-has-current-submenu div.wp-menu-image:before {
+ color: #fff; }
+
+/* Admin Menu: bubble */
+#adminmenu .awaiting-mod, #adminmenu .update-plugins {
+ color: #fff;
+ background: #ccaf0b; }
+
+#adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins, #adminmenu li:hover a .awaiting-mod, #adminmenu li.menu-top:hover > a .update-plugins {
+ color: #fff;
+ background: #be3631; }
+
+/* Admin Menu: collapse button */
+#collapse-menu {
+ color: #f3f1f1; }
+
+#collapse-menu:hover {
+ color: #fff; }
+
+#collapse-button div:after {
+ color: #f3f1f1; }
+
+#collapse-menu:hover #collapse-button div:after {
+ color: #fff; }
+
+/* Admin Bar */
+#wpadminbar {
+ color: #fff;
+ background: #cf4944; }
+
+#wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon {
+ color: #fff; }
+
+#wpadminbar .ab-icon, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar .ab-item:after {
+ color: #f3f1f1; }
+
+#wpadminbar .ab-top-menu > li:hover > .ab-item, #wpadminbar .ab-top-menu > li.hover > .ab-item, #wpadminbar .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar-nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
+ color: #f7e3d3;
+ background: #be3631; }
+
+#wpadminbar > #wp-toolbar li:hover span.ab-label, #wpadminbar > #wp-toolbar li.hover span.ab-label, #wpadminbar > #wp-toolbar a:focus span.ab-label {
+ color: #f7e3d3; }
+
+#wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li:hover .ab-item:after, #wpadminbar li:hover #adminbarsearch:before {
+ color: #fff; }
+
+/* Admin Bar: submenu */
+#wpadminbar .menupop .ab-sub-wrapper {
+ background: #be3631; }
+
+#wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
+ background: #cf6b67; }
+
+#wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar-nojs .quicklinks .menupop:hover ul li a {
+ color: #f0c8c6; }
+
+#wpadminbar .quicklinks li .blavatar, #wpadminbar .menupop .menupop > .ab-item:before {
+ color: #f3f1f1; }
+
+#wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li .ab-item:focus:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover .ab-item:after, #wpadminbar li.hover .ab-item:after, #wpadminbar li:hover #adminbarsearch:before {
+ color: #f7e3d3; }
+
+#wpadminbar .quicklinks li a:hover .blavatar, #wpadminbar .menupop .menupop > .ab-item:hover:before {
+ color: #f7e3d3; }
+
+/* Admin Bar: search */
+#wpadminbar #adminbarsearch:before {
+ color: #f3f1f1; }
+
+#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
+ color: #fff;
+ background: #d66460; }
+
+#wpadminbar #adminbarsearch .adminbar-input::-webkit-input-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input:-moz-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input::-moz-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input:-ms-input-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+/* Admin Bar: my account */
+#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
+ border-color: #d66460;
+ background-color: #d66460; }
+
+#wpadminbar #wp-admin-bar-user-info .display-name {
+ color: #fff; }
+
+#wpadminbar #wp-admin-bar-user-info a:hover .display-name {
+ color: #f7e3d3; }
+
+#wpadminbar #wp-admin-bar-user-info .username {
+ color: #f0c8c6; }
+
+/* Pointers */
+.wp-pointer .wp-pointer-content h3 {
+ background-color: #dd823b;
+ border-color: #d97326; }
+
+.wp-pointer .wp-pointer-content h3:before {
+ color: #dd823b; }
+
+.wp-pointer.wp-pointer-top .wp-pointer-arrow, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow {
+ border-bottom-color: #dd823b; }
+
+/* Media Uploader */
+.media-item .bar, .media-progress-bar div {
+ background-color: #dd823b; }
+
+.details.attachment {
+ -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 5px #dd823b;
+ box-shadow: 0 0 0 1px #fff, 0 0 0 5px #dd823b; }
+
+.attachment.details .check {
+ background-color: #dd823b;
+ -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 2px #dd823b;
+ box-shadow: 0 0 0 1px #fff, 0 0 0 2px #dd823b; }
+
+/* Themes */
+.theme-browser .theme.active .theme-name, .theme-browser .theme.add-new-theme:hover:after {
+ background: #dd823b; }
+
+.theme-browser .theme.add-new-theme:hover span:after {
+ color: #dd823b; }
+
+.theme-overlay .theme-header .close:hover, .theme-overlay .theme-header .right:hover, .theme-overlay .theme-header .left:hover {
+ background: #dd823b; }
+
+.theme-section.current, .theme-filter.current {
+ border-bottom-color: #cf4944; }
+
+body.more-filters-opened .more-filters, body.more-filters-opened .more-filters:before {
+ color: #fff;
+ background-color: #cf4944; }
+
+body.more-filters-opened .more-filters:hover, body.more-filters-opened .more-filters:focus, body.more-filters-opened .more-filters:hover:before, body.more-filters-opened .more-filters:focus:before {
+ background-color: #dd823b;
+ color: #fff; }
+
+/* Widgets */
+.widgets-chooser li.widgets-chooser-selected {
+ background-color: #dd823b;
+ color: #fff; }
+
+.widgets-chooser li.widgets-chooser-selected:before, .widgets-chooser li.widgets-chooser-selected:focus:before {
+ color: #fff; }
+
+/* Customize */
+#customize-theme-controls .widget-area-select .selected {
+ background-color: #dd823b;
+ color: #fff; }
+
+/* jQuery UI Slider */
+.wp-slider .ui-slider-handle, .wp-slider .ui-slider-handle.ui-state-hover, .wp-slider .ui-slider-handle.focus {
+ background: #dd823b;
+ border-color: #c36822;
+ -webkit-box-shadow: inset 0 1px 0 #e8ab7c, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #e8ab7c, 0 1px 0 rgba(0, 0, 0, 0.15); }
+
+/* Thickbox: Plugin information */
+#sidemenu a.current {
+ background: #f1f1f1;
+ border-bottom-color: #f1f1f1; }
+
+#plugin-information .action-button {
+ background: #dd823b; }
+
+/* Responsive Component */
+div#wp-responsive-toggle a:before {
+ color: #f3f1f1; }
+
+.wp-responsive-open div#wp-responsive-toggle a {
+ border-color: transparent;
+ background: #dd823b; }
+
+.star-rating .star {
+ color: #dd823b; }
+
+.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
+ background: #be3631; }
diff --git a/sources/wp-admin/css/colors/sunrise/colors-rtl.min.css b/sources/wp-admin/css/colors/sunrise/colors-rtl.min.css
new file mode 100644
index 0000000..2fbbff8
--- /dev/null
+++ b/sources/wp-admin/css/colors/sunrise/colors-rtl.min.css
@@ -0,0 +1 @@
+html{background:#f1f1f1}a{color:#0074a2}#media-upload a.del-link:hover,.subsubsub a.current:hover,.subsubsub a:hover,a:active,a:focus,a:hover,div.dashboard-widget-submit input:hover{color:#0099d5}input[type=checkbox]:checked:before{color:#dd823b}input[type=radio]:checked:before{background:#dd823b}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:#0099d5}.wp-core-ui .button-primary{background:#dd823b;border-color:#c36822;color:#fff;-webkit-box-shadow:inset 0 1px 0 #e8ab7c,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #e8ab7c,0 1px 0 rgba(0,0,0,.15)}.wp-core-ui .button-primary:focus,.wp-core-ui .button-primary:hover{background:#d97326;border-color:#ad5c1e;color:#fff;-webkit-box-shadow:inset 0 1px 0 #e59d66,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #e59d66,0 1px 0 rgba(0,0,0,.15)}.wp-core-ui .button-primary:active{background:#c36822;border-color:#ad5c1e;color:#fff;-webkit-box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5);box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5)}.wp-core-ui .button-primary.button-primary-disabled,.wp-core-ui .button-primary.disabled,.wp-core-ui .button-primary:disabled,.wp-core-ui .button-primary[disabled]{color:#d1cbc7!important;background:#cc6c23!important;border-color:#ad5c1e!important;text-shadow:none!important}.wp-core-ui .wp-ui-primary{color:#fff;background-color:#cf4944}.wp-core-ui .wp-ui-text-primary{color:#cf4944}.wp-core-ui .wp-ui-highlight{color:#fff;background-color:#dd823b}.wp-core-ui .wp-ui-text-highlight{color:#dd823b}.wp-core-ui .wp-ui-notification{color:#fff;background-color:#ccaf0b}.wp-core-ui .wp-ui-text-notification{color:#ccaf0b}.wp-core-ui .wp-ui-text-icon{color:#f3f1f1}#add-new-comment a:hover,.tablenav .tablenav-pages a:focus,.tablenav .tablenav-pages a:hover,.wrap .add-new-h2:hover{color:#fff;background-color:#cf4944}.view-switch a.current:before{color:#cf4944}.view-switch a:hover:before{color:#ccaf0b}.post-com-count:hover:after{border-top-color:#cf4944}.post-com-count:hover span{color:#fff;background-color:#cf4944}strong .post-com-count:after{border-top-color:#ccaf0b}strong .post-com-count span{background-color:#ccaf0b}#adminmenu,#adminmenuback,#adminmenuwrap{background:#cf4944}#adminmenu a{color:#fff}#adminmenu div.wp-menu-image:before{color:#f3f1f1}#adminmenu a:hover,#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{color:#fff;background-color:#dd823b}#adminmenu li.menu-top:hover div.wp-menu-image:before,#adminmenu li.opensub>a.menu-top div.wp-menu-image:before{color:#fff}.about-wrap h2 .nav-tab-active,.nav-tab-active,.nav-tab-active:hover{background-color:#f1f1f1;border-bottom-color:#f1f1f1}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,#adminmenu .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu{background:#be3631}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after{border-left-color:#be3631}#adminmenu .wp-has-current-submenu .wp-submenu a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a,#adminmenu .wp-submenu .wp-submenu-head,#adminmenu .wp-submenu a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a,.folded #adminmenu .wp-has-current-submenu .wp-submenu a{color:#f0c8c6}#adminmenu .wp-has-current-submenu .wp-submenu a:focus,#adminmenu .wp-has-current-submenu .wp-submenu a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover,#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:hover,.folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus,.folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover{color:#f7e3d3}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a,#adminmenu .wp-submenu li.current a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a{color:#fff}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:hover{color:#f7e3d3}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{border-left-color:#f1f1f1}#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{color:#fff;background:#dd823b}#adminmenu li.wp-has-current-submenu div.wp-menu-image:before{color:#fff}#adminmenu .awaiting-mod,#adminmenu .update-plugins{color:#fff;background:#ccaf0b}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod,#adminmenu li.menu-top:hover>a .update-plugins,#adminmenu li:hover a .awaiting-mod{color:#fff;background:#be3631}#collapse-menu{color:#f3f1f1}#collapse-menu:hover{color:#fff}#collapse-button div:after{color:#f3f1f1}#collapse-menu:hover #collapse-button div:after{color:#fff}#wpadminbar{color:#fff;background:#cf4944}#wpadminbar .ab-item,#wpadminbar a.ab-item,#wpadminbar>#wp-toolbar span.ab-label,#wpadminbar>#wp-toolbar span.noticon{color:#fff}#wpadminbar .ab-icon,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:after,#wpadminbar .ab-item:before{color:#f3f1f1}#wpadminbar .ab-top-menu>li.hover>.ab-item,#wpadminbar .ab-top-menu>li.menupop.hover>.ab-item,#wpadminbar .ab-top-menu>li:hover>.ab-item,#wpadminbar .ab-top-menu>li>.ab-item:focus,#wpadminbar-nojs .ab-top-menu>li.menupop:hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus{color:#f7e3d3;background:#be3631}#wpadminbar>#wp-toolbar a:focus span.ab-label,#wpadminbar>#wp-toolbar li.hover span.ab-label,#wpadminbar>#wp-toolbar li:hover span.ab-label{color:#f7e3d3}#wpadminbar .menupop .ab-sub-wrapper{background:#be3631}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu{background:#cf6b67}#wpadminbar .ab-submenu .ab-item,#wpadminbar .quicklinks .menupop ul li a,#wpadminbar .quicklinks .menupop.hover ul li a,#wpadminbar-nojs .quicklinks .menupop:hover ul li a{color:#f0c8c6}#wpadminbar .menupop .menupop>.ab-item:before,#wpadminbar .quicklinks li .blavatar{color:#f3f1f1}#wpadminbar .menupop .menupop>.ab-item:hover:before,#wpadminbar .quicklinks .menupop ul li a:focus,#wpadminbar .quicklinks .menupop ul li a:focus strong,#wpadminbar .quicklinks .menupop ul li a:hover,#wpadminbar .quicklinks .menupop ul li a:hover strong,#wpadminbar .quicklinks .menupop.hover ul li a:focus,#wpadminbar .quicklinks .menupop.hover ul li a:hover,#wpadminbar .quicklinks li a:hover .blavatar,#wpadminbar li .ab-item:focus:before,#wpadminbar li a:focus .ab-icon:before,#wpadminbar li.hover .ab-icon:before,#wpadminbar li.hover .ab-item:after,#wpadminbar li.hover .ab-item:before,#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:after,#wpadminbar li:hover .ab-item:before,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover{color:#f7e3d3}#wpadminbar #adminbarsearch:before{color:#f3f1f1}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input:focus{color:#fff;background:#d66460}#wpadminbar #adminbarsearch .adminbar-input::-webkit-input-placeholder{color:#fff;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input:-moz-placeholder{color:#fff;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input::-moz-placeholder{color:#fff;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input:-ms-input-placeholder{color:#fff;opacity:.7}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{border-color:#d66460;background-color:#d66460}#wpadminbar #wp-admin-bar-user-info .display-name{color:#fff}#wpadminbar #wp-admin-bar-user-info a:hover .display-name{color:#f7e3d3}#wpadminbar #wp-admin-bar-user-info .username{color:#f0c8c6}.wp-pointer .wp-pointer-content h3{background-color:#dd823b;border-color:#d97326}.wp-pointer .wp-pointer-content h3:before{color:#dd823b}.wp-pointer.wp-pointer-top .wp-pointer-arrow,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow{border-bottom-color:#dd823b}.media-item .bar,.media-progress-bar div{background-color:#dd823b}.details.attachment{-webkit-box-shadow:0 0 0 1px #fff,0 0 0 5px #dd823b;box-shadow:0 0 0 1px #fff,0 0 0 5px #dd823b}.attachment.details .check{background-color:#dd823b;-webkit-box-shadow:0 0 0 1px #fff,0 0 0 2px #dd823b;box-shadow:0 0 0 1px #fff,0 0 0 2px #dd823b}.theme-browser .theme.active .theme-name,.theme-browser .theme.add-new-theme:hover:after{background:#dd823b}.theme-browser .theme.add-new-theme:hover span:after{color:#dd823b}.theme-overlay .theme-header .close:hover,.theme-overlay .theme-header .left:hover,.theme-overlay .theme-header .right:hover{background:#dd823b}.theme-filter.current,.theme-section.current{border-bottom-color:#cf4944}body.more-filters-opened .more-filters,body.more-filters-opened .more-filters:before{color:#fff;background-color:#cf4944}.widgets-chooser li.widgets-chooser-selected,body.more-filters-opened .more-filters:focus,body.more-filters-opened .more-filters:focus:before,body.more-filters-opened .more-filters:hover,body.more-filters-opened .more-filters:hover:before{background-color:#dd823b;color:#fff}.widgets-chooser li.widgets-chooser-selected:before,.widgets-chooser li.widgets-chooser-selected:focus:before{color:#fff}#customize-theme-controls .widget-area-select .selected{background-color:#dd823b;color:#fff}.wp-slider .ui-slider-handle,.wp-slider .ui-slider-handle.focus,.wp-slider .ui-slider-handle.ui-state-hover{background:#dd823b;border-color:#c36822;-webkit-box-shadow:inset 0 1px 0 #e8ab7c,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #e8ab7c,0 1px 0 rgba(0,0,0,.15)}#sidemenu a.current{background:#f1f1f1;border-bottom-color:#f1f1f1}#plugin-information .action-button{background:#dd823b}div#wp-responsive-toggle a:before{color:#f3f1f1}.wp-responsive-open div#wp-responsive-toggle a{border-color:transparent;background:#dd823b}.star-rating .star{color:#dd823b}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:#be3631}
\ No newline at end of file
diff --git a/sources/wp-admin/css/colors/sunrise/colors.css b/sources/wp-admin/css/colors/sunrise/colors.css
new file mode 100644
index 0000000..2a872ed
--- /dev/null
+++ b/sources/wp-admin/css/colors/sunrise/colors.css
@@ -0,0 +1,331 @@
+/*
+ * Button mixin- creates 3d-ish button effect with correct
+ * highlights/shadows, based on a base color.
+ */
+html {
+ background: #f1f1f1; }
+
+/* Links */
+a {
+ color: #0074a2; }
+ a:hover, a:active, a:focus {
+ color: #0099d5; }
+
+#media-upload a.del-link:hover, div.dashboard-widget-submit input:hover, .subsubsub a:hover, .subsubsub a.current:hover {
+ color: #0099d5; }
+
+/* Forms */
+input[type=checkbox]:checked:before {
+ color: #dd823b; }
+
+input[type=radio]:checked:before {
+ background: #dd823b; }
+
+.wp-core-ui input[type="reset"]:hover, .wp-core-ui input[type="reset"]:active {
+ color: #0099d5; }
+
+/* Core UI */
+.wp-core-ui .button-primary {
+ background: #dd823b;
+ border-color: #c36822;
+ color: white;
+ -webkit-box-shadow: inset 0 1px 0 #e8ab7c, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #e8ab7c, 0 1px 0 rgba(0, 0, 0, 0.15); }
+ .wp-core-ui .button-primary:hover, .wp-core-ui .button-primary:focus {
+ background: #d97326;
+ border-color: #ad5c1e;
+ color: white;
+ -webkit-box-shadow: inset 0 1px 0 #e59d66, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #e59d66, 0 1px 0 rgba(0, 0, 0, 0.15); }
+ .wp-core-ui .button-primary:active {
+ background: #c36822;
+ border-color: #ad5c1e;
+ color: white;
+ -webkit-box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
+ box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5); }
+ .wp-core-ui .button-primary[disabled], .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary.button-primary-disabled, .wp-core-ui .button-primary.disabled {
+ color: #d1cbc7 !important;
+ background: #cc6c23 !important;
+ border-color: #ad5c1e !important;
+ text-shadow: none !important; }
+.wp-core-ui .wp-ui-primary {
+ color: #fff;
+ background-color: #cf4944; }
+.wp-core-ui .wp-ui-text-primary {
+ color: #cf4944; }
+.wp-core-ui .wp-ui-highlight {
+ color: #fff;
+ background-color: #dd823b; }
+.wp-core-ui .wp-ui-text-highlight {
+ color: #dd823b; }
+.wp-core-ui .wp-ui-notification {
+ color: #fff;
+ background-color: #ccaf0b; }
+.wp-core-ui .wp-ui-text-notification {
+ color: #ccaf0b; }
+.wp-core-ui .wp-ui-text-icon {
+ color: #f3f1f1; }
+
+/* List tables */
+.wrap .add-new-h2:hover, #add-new-comment a:hover, .tablenav .tablenav-pages a:hover, .tablenav .tablenav-pages a:focus {
+ color: #fff;
+ background-color: #cf4944; }
+
+.view-switch a.current:before {
+ color: #cf4944; }
+
+.view-switch a:hover:before {
+ color: #ccaf0b; }
+
+.post-com-count:hover:after {
+ border-top-color: #cf4944; }
+
+.post-com-count:hover span {
+ color: #fff;
+ background-color: #cf4944; }
+
+strong .post-com-count:after {
+ border-top-color: #ccaf0b; }
+
+strong .post-com-count span {
+ background-color: #ccaf0b; }
+
+/* Admin Menu */
+#adminmenuback, #adminmenuwrap, #adminmenu {
+ background: #cf4944; }
+
+#adminmenu a {
+ color: #fff; }
+
+#adminmenu div.wp-menu-image:before {
+ color: #f3f1f1; }
+
+#adminmenu a:hover, #adminmenu li.menu-top:hover, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus {
+ color: #fff;
+ background-color: #dd823b; }
+
+#adminmenu li.menu-top:hover div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top div.wp-menu-image:before {
+ color: #fff; }
+
+/* Active tabs use a bottom border color that matches the page background color. */
+.about-wrap h2 .nav-tab-active, .nav-tab-active, .nav-tab-active:hover {
+ background-color: #f1f1f1;
+ border-bottom-color: #f1f1f1; }
+
+/* Admin Menu: submenu */
+#adminmenu .wp-submenu, #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu .wp-has-current-submenu.opensub .wp-submenu, .folded #adminmenu .wp-has-current-submenu .wp-submenu, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu {
+ background: #be3631; }
+
+#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
+ border-right-color: #be3631; }
+
+#adminmenu .wp-submenu .wp-submenu-head {
+ color: #f0c8c6; }
+
+#adminmenu .wp-submenu a, #adminmenu .wp-has-current-submenu .wp-submenu a, .folded #adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
+ color: #f0c8c6; }
+ #adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover, #adminmenu .wp-has-current-submenu .wp-submenu a:focus, #adminmenu .wp-has-current-submenu .wp-submenu a:hover, .folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus, .folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover {
+ color: #f7e3d3; }
+
+/* Admin Menu: current */
+#adminmenu .wp-submenu li.current a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a {
+ color: #fff; }
+ #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus {
+ color: #f7e3d3; }
+
+ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after {
+ border-right-color: #f1f1f1; }
+
+#adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu li.current.menu-top {
+ color: #fff;
+ background: #dd823b; }
+
+#adminmenu li.wp-has-current-submenu div.wp-menu-image:before {
+ color: #fff; }
+
+/* Admin Menu: bubble */
+#adminmenu .awaiting-mod, #adminmenu .update-plugins {
+ color: #fff;
+ background: #ccaf0b; }
+
+#adminmenu li.current a .awaiting-mod, #adminmenu li a.wp-has-current-submenu .update-plugins, #adminmenu li:hover a .awaiting-mod, #adminmenu li.menu-top:hover > a .update-plugins {
+ color: #fff;
+ background: #be3631; }
+
+/* Admin Menu: collapse button */
+#collapse-menu {
+ color: #f3f1f1; }
+
+#collapse-menu:hover {
+ color: #fff; }
+
+#collapse-button div:after {
+ color: #f3f1f1; }
+
+#collapse-menu:hover #collapse-button div:after {
+ color: #fff; }
+
+/* Admin Bar */
+#wpadminbar {
+ color: #fff;
+ background: #cf4944; }
+
+#wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon {
+ color: #fff; }
+
+#wpadminbar .ab-icon, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar .ab-item:after {
+ color: #f3f1f1; }
+
+#wpadminbar .ab-top-menu > li:hover > .ab-item, #wpadminbar .ab-top-menu > li.hover > .ab-item, #wpadminbar .ab-top-menu > li > .ab-item:focus, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar-nojs .ab-top-menu > li.menupop:hover > .ab-item, #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item {
+ color: #f7e3d3;
+ background: #be3631; }
+
+#wpadminbar > #wp-toolbar li:hover span.ab-label, #wpadminbar > #wp-toolbar li.hover span.ab-label, #wpadminbar > #wp-toolbar a:focus span.ab-label {
+ color: #f7e3d3; }
+
+#wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li:hover .ab-item:after, #wpadminbar li:hover #adminbarsearch:before {
+ color: #fff; }
+
+/* Admin Bar: submenu */
+#wpadminbar .menupop .ab-sub-wrapper {
+ background: #be3631; }
+
+#wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu {
+ background: #cf6b67; }
+
+#wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar-nojs .quicklinks .menupop:hover ul li a {
+ color: #f0c8c6; }
+
+#wpadminbar .quicklinks li .blavatar, #wpadminbar .menupop .menupop > .ab-item:before {
+ color: #f3f1f1; }
+
+#wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li .ab-item:focus:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover .ab-item:after, #wpadminbar li.hover .ab-item:after, #wpadminbar li:hover #adminbarsearch:before {
+ color: #f7e3d3; }
+
+#wpadminbar .quicklinks li a:hover .blavatar, #wpadminbar .menupop .menupop > .ab-item:hover:before {
+ color: #f7e3d3; }
+
+/* Admin Bar: search */
+#wpadminbar #adminbarsearch:before {
+ color: #f3f1f1; }
+
+#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
+ color: #fff;
+ background: #d66460; }
+
+#wpadminbar #adminbarsearch .adminbar-input::-webkit-input-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input:-moz-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input::-moz-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+#wpadminbar #adminbarsearch .adminbar-input:-ms-input-placeholder {
+ color: #fff;
+ opacity: 0.7; }
+
+/* Admin Bar: my account */
+#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
+ border-color: #d66460;
+ background-color: #d66460; }
+
+#wpadminbar #wp-admin-bar-user-info .display-name {
+ color: #fff; }
+
+#wpadminbar #wp-admin-bar-user-info a:hover .display-name {
+ color: #f7e3d3; }
+
+#wpadminbar #wp-admin-bar-user-info .username {
+ color: #f0c8c6; }
+
+/* Pointers */
+.wp-pointer .wp-pointer-content h3 {
+ background-color: #dd823b;
+ border-color: #d97326; }
+
+.wp-pointer .wp-pointer-content h3:before {
+ color: #dd823b; }
+
+.wp-pointer.wp-pointer-top .wp-pointer-arrow, .wp-pointer.wp-pointer-undefined .wp-pointer-arrow {
+ border-bottom-color: #dd823b; }
+
+/* Media Uploader */
+.media-item .bar, .media-progress-bar div {
+ background-color: #dd823b; }
+
+.details.attachment {
+ -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 5px #dd823b;
+ box-shadow: 0 0 0 1px #fff, 0 0 0 5px #dd823b; }
+
+.attachment.details .check {
+ background-color: #dd823b;
+ -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 2px #dd823b;
+ box-shadow: 0 0 0 1px #fff, 0 0 0 2px #dd823b; }
+
+/* Themes */
+.theme-browser .theme.active .theme-name, .theme-browser .theme.add-new-theme:hover:after {
+ background: #dd823b; }
+
+.theme-browser .theme.add-new-theme:hover span:after {
+ color: #dd823b; }
+
+.theme-overlay .theme-header .close:hover, .theme-overlay .theme-header .right:hover, .theme-overlay .theme-header .left:hover {
+ background: #dd823b; }
+
+.theme-section.current, .theme-filter.current {
+ border-bottom-color: #cf4944; }
+
+body.more-filters-opened .more-filters, body.more-filters-opened .more-filters:before {
+ color: #fff;
+ background-color: #cf4944; }
+
+body.more-filters-opened .more-filters:hover, body.more-filters-opened .more-filters:focus, body.more-filters-opened .more-filters:hover:before, body.more-filters-opened .more-filters:focus:before {
+ background-color: #dd823b;
+ color: #fff; }
+
+/* Widgets */
+.widgets-chooser li.widgets-chooser-selected {
+ background-color: #dd823b;
+ color: #fff; }
+
+.widgets-chooser li.widgets-chooser-selected:before, .widgets-chooser li.widgets-chooser-selected:focus:before {
+ color: #fff; }
+
+/* Customize */
+#customize-theme-controls .widget-area-select .selected {
+ background-color: #dd823b;
+ color: #fff; }
+
+/* jQuery UI Slider */
+.wp-slider .ui-slider-handle, .wp-slider .ui-slider-handle.ui-state-hover, .wp-slider .ui-slider-handle.focus {
+ background: #dd823b;
+ border-color: #c36822;
+ -webkit-box-shadow: inset 0 1px 0 #e8ab7c, 0 1px 0 rgba(0, 0, 0, 0.15);
+ box-shadow: inset 0 1px 0 #e8ab7c, 0 1px 0 rgba(0, 0, 0, 0.15); }
+
+/* Thickbox: Plugin information */
+#sidemenu a.current {
+ background: #f1f1f1;
+ border-bottom-color: #f1f1f1; }
+
+#plugin-information .action-button {
+ background: #dd823b; }
+
+/* Responsive Component */
+div#wp-responsive-toggle a:before {
+ color: #f3f1f1; }
+
+.wp-responsive-open div#wp-responsive-toggle a {
+ border-color: transparent;
+ background: #dd823b; }
+
+.star-rating .star {
+ color: #dd823b; }
+
+.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
+ background: #be3631; }
diff --git a/sources/wp-admin/css/colors/sunrise/colors.min.css b/sources/wp-admin/css/colors/sunrise/colors.min.css
new file mode 100644
index 0000000..39dd213
--- /dev/null
+++ b/sources/wp-admin/css/colors/sunrise/colors.min.css
@@ -0,0 +1 @@
+html{background:#f1f1f1}a{color:#0074a2}#media-upload a.del-link:hover,.subsubsub a.current:hover,.subsubsub a:hover,a:active,a:focus,a:hover,div.dashboard-widget-submit input:hover{color:#0099d5}input[type=checkbox]:checked:before{color:#dd823b}input[type=radio]:checked:before{background:#dd823b}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:#0099d5}.wp-core-ui .button-primary{background:#dd823b;border-color:#c36822;color:#fff;-webkit-box-shadow:inset 0 1px 0 #e8ab7c,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #e8ab7c,0 1px 0 rgba(0,0,0,.15)}.wp-core-ui .button-primary:focus,.wp-core-ui .button-primary:hover{background:#d97326;border-color:#ad5c1e;color:#fff;-webkit-box-shadow:inset 0 1px 0 #e59d66,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #e59d66,0 1px 0 rgba(0,0,0,.15)}.wp-core-ui .button-primary:active{background:#c36822;border-color:#ad5c1e;color:#fff;-webkit-box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5);box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5)}.wp-core-ui .button-primary.button-primary-disabled,.wp-core-ui .button-primary.disabled,.wp-core-ui .button-primary:disabled,.wp-core-ui .button-primary[disabled]{color:#d1cbc7!important;background:#cc6c23!important;border-color:#ad5c1e!important;text-shadow:none!important}.wp-core-ui .wp-ui-primary{color:#fff;background-color:#cf4944}.wp-core-ui .wp-ui-text-primary{color:#cf4944}.wp-core-ui .wp-ui-highlight{color:#fff;background-color:#dd823b}.wp-core-ui .wp-ui-text-highlight{color:#dd823b}.wp-core-ui .wp-ui-notification{color:#fff;background-color:#ccaf0b}.wp-core-ui .wp-ui-text-notification{color:#ccaf0b}.wp-core-ui .wp-ui-text-icon{color:#f3f1f1}#add-new-comment a:hover,.tablenav .tablenav-pages a:focus,.tablenav .tablenav-pages a:hover,.wrap .add-new-h2:hover{color:#fff;background-color:#cf4944}.view-switch a.current:before{color:#cf4944}.view-switch a:hover:before{color:#ccaf0b}.post-com-count:hover:after{border-top-color:#cf4944}.post-com-count:hover span{color:#fff;background-color:#cf4944}strong .post-com-count:after{border-top-color:#ccaf0b}strong .post-com-count span{background-color:#ccaf0b}#adminmenu,#adminmenuback,#adminmenuwrap{background:#cf4944}#adminmenu a{color:#fff}#adminmenu div.wp-menu-image:before{color:#f3f1f1}#adminmenu a:hover,#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{color:#fff;background-color:#dd823b}#adminmenu li.menu-top:hover div.wp-menu-image:before,#adminmenu li.opensub>a.menu-top div.wp-menu-image:before{color:#fff}.about-wrap h2 .nav-tab-active,.nav-tab-active,.nav-tab-active:hover{background-color:#f1f1f1;border-bottom-color:#f1f1f1}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,#adminmenu .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu{background:#be3631}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after{border-right-color:#be3631}#adminmenu .wp-has-current-submenu .wp-submenu a,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a,#adminmenu .wp-submenu .wp-submenu-head,#adminmenu .wp-submenu a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a,.folded #adminmenu .wp-has-current-submenu .wp-submenu a{color:#f0c8c6}#adminmenu .wp-has-current-submenu .wp-submenu a:focus,#adminmenu .wp-has-current-submenu .wp-submenu a:hover,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover,#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu a:hover,.folded #adminmenu .wp-has-current-submenu .wp-submenu a:focus,.folded #adminmenu .wp-has-current-submenu .wp-submenu a:hover{color:#f7e3d3}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a,#adminmenu .wp-submenu li.current a,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a{color:#fff}#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus,#adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:focus,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a:hover{color:#f7e3d3}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{border-right-color:#f1f1f1}#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{color:#fff;background:#dd823b}#adminmenu li.wp-has-current-submenu div.wp-menu-image:before{color:#fff}#adminmenu .awaiting-mod,#adminmenu .update-plugins{color:#fff;background:#ccaf0b}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod,#adminmenu li.menu-top:hover>a .update-plugins,#adminmenu li:hover a .awaiting-mod{color:#fff;background:#be3631}#collapse-menu{color:#f3f1f1}#collapse-menu:hover{color:#fff}#collapse-button div:after{color:#f3f1f1}#collapse-menu:hover #collapse-button div:after{color:#fff}#wpadminbar{color:#fff;background:#cf4944}#wpadminbar .ab-item,#wpadminbar a.ab-item,#wpadminbar>#wp-toolbar span.ab-label,#wpadminbar>#wp-toolbar span.noticon{color:#fff}#wpadminbar .ab-icon,#wpadminbar .ab-icon:before,#wpadminbar .ab-item:after,#wpadminbar .ab-item:before{color:#f3f1f1}#wpadminbar .ab-top-menu>li.hover>.ab-item,#wpadminbar .ab-top-menu>li.menupop.hover>.ab-item,#wpadminbar .ab-top-menu>li:hover>.ab-item,#wpadminbar .ab-top-menu>li>.ab-item:focus,#wpadminbar-nojs .ab-top-menu>li.menupop:hover>.ab-item,#wpadminbar.nojq .quicklinks .ab-top-menu>li>.ab-item:focus{color:#f7e3d3;background:#be3631}#wpadminbar>#wp-toolbar a:focus span.ab-label,#wpadminbar>#wp-toolbar li.hover span.ab-label,#wpadminbar>#wp-toolbar li:hover span.ab-label{color:#f7e3d3}#wpadminbar .menupop .ab-sub-wrapper{background:#be3631}#wpadminbar .quicklinks .menupop ul.ab-sub-secondary,#wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu{background:#cf6b67}#wpadminbar .ab-submenu .ab-item,#wpadminbar .quicklinks .menupop ul li a,#wpadminbar .quicklinks .menupop.hover ul li a,#wpadminbar-nojs .quicklinks .menupop:hover ul li a{color:#f0c8c6}#wpadminbar .menupop .menupop>.ab-item:before,#wpadminbar .quicklinks li .blavatar{color:#f3f1f1}#wpadminbar .menupop .menupop>.ab-item:hover:before,#wpadminbar .quicklinks .menupop ul li a:focus,#wpadminbar .quicklinks .menupop ul li a:focus strong,#wpadminbar .quicklinks .menupop ul li a:hover,#wpadminbar .quicklinks .menupop ul li a:hover strong,#wpadminbar .quicklinks .menupop.hover ul li a:focus,#wpadminbar .quicklinks .menupop.hover ul li a:hover,#wpadminbar .quicklinks li a:hover .blavatar,#wpadminbar li .ab-item:focus:before,#wpadminbar li a:focus .ab-icon:before,#wpadminbar li.hover .ab-icon:before,#wpadminbar li.hover .ab-item:after,#wpadminbar li.hover .ab-item:before,#wpadminbar li:hover #adminbarsearch:before,#wpadminbar li:hover .ab-icon:before,#wpadminbar li:hover .ab-item:after,#wpadminbar li:hover .ab-item:before,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,#wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover{color:#f7e3d3}#wpadminbar #adminbarsearch:before{color:#f3f1f1}#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input:focus{color:#fff;background:#d66460}#wpadminbar #adminbarsearch .adminbar-input::-webkit-input-placeholder{color:#fff;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input:-moz-placeholder{color:#fff;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input::-moz-placeholder{color:#fff;opacity:.7}#wpadminbar #adminbarsearch .adminbar-input:-ms-input-placeholder{color:#fff;opacity:.7}#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar>a img{border-color:#d66460;background-color:#d66460}#wpadminbar #wp-admin-bar-user-info .display-name{color:#fff}#wpadminbar #wp-admin-bar-user-info a:hover .display-name{color:#f7e3d3}#wpadminbar #wp-admin-bar-user-info .username{color:#f0c8c6}.wp-pointer .wp-pointer-content h3{background-color:#dd823b;border-color:#d97326}.wp-pointer .wp-pointer-content h3:before{color:#dd823b}.wp-pointer.wp-pointer-top .wp-pointer-arrow,.wp-pointer.wp-pointer-undefined .wp-pointer-arrow{border-bottom-color:#dd823b}.media-item .bar,.media-progress-bar div{background-color:#dd823b}.details.attachment{-webkit-box-shadow:0 0 0 1px #fff,0 0 0 5px #dd823b;box-shadow:0 0 0 1px #fff,0 0 0 5px #dd823b}.attachment.details .check{background-color:#dd823b;-webkit-box-shadow:0 0 0 1px #fff,0 0 0 2px #dd823b;box-shadow:0 0 0 1px #fff,0 0 0 2px #dd823b}.theme-browser .theme.active .theme-name,.theme-browser .theme.add-new-theme:hover:after{background:#dd823b}.theme-browser .theme.add-new-theme:hover span:after{color:#dd823b}.theme-overlay .theme-header .close:hover,.theme-overlay .theme-header .left:hover,.theme-overlay .theme-header .right:hover{background:#dd823b}.theme-filter.current,.theme-section.current{border-bottom-color:#cf4944}body.more-filters-opened .more-filters,body.more-filters-opened .more-filters:before{color:#fff;background-color:#cf4944}.widgets-chooser li.widgets-chooser-selected,body.more-filters-opened .more-filters:focus,body.more-filters-opened .more-filters:focus:before,body.more-filters-opened .more-filters:hover,body.more-filters-opened .more-filters:hover:before{background-color:#dd823b;color:#fff}.widgets-chooser li.widgets-chooser-selected:before,.widgets-chooser li.widgets-chooser-selected:focus:before{color:#fff}#customize-theme-controls .widget-area-select .selected{background-color:#dd823b;color:#fff}.wp-slider .ui-slider-handle,.wp-slider .ui-slider-handle.focus,.wp-slider .ui-slider-handle.ui-state-hover{background:#dd823b;border-color:#c36822;-webkit-box-shadow:inset 0 1px 0 #e8ab7c,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #e8ab7c,0 1px 0 rgba(0,0,0,.15)}#sidemenu a.current{background:#f1f1f1;border-bottom-color:#f1f1f1}#plugin-information .action-button{background:#dd823b}div#wp-responsive-toggle a:before{color:#f3f1f1}.wp-responsive-open div#wp-responsive-toggle a{border-color:transparent;background:#dd823b}.star-rating .star{color:#dd823b}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:#be3631}
\ No newline at end of file
diff --git a/sources/wp-admin/css/colors/sunrise/colors.scss b/sources/wp-admin/css/colors/sunrise/colors.scss
new file mode 100644
index 0000000..5dd8d82
--- /dev/null
+++ b/sources/wp-admin/css/colors/sunrise/colors.scss
@@ -0,0 +1,6 @@
+$base-color: #cf4944;
+$highlight-color: #dd823b;
+$notification-color: #ccaf0b;
+$menu-submenu-focus-text: lighten( $highlight-color, 35% );
+
+@import "../_admin.scss";
diff --git a/sources/wp-admin/css/common-rtl.css b/sources/wp-admin/css/common-rtl.css
new file mode 100644
index 0000000..72c6776
--- /dev/null
+++ b/sources/wp-admin/css/common-rtl.css
@@ -0,0 +1,2637 @@
+/* 2 column liquid layout */
+#wpwrap {
+ height: auto;
+ min-height: 100%;
+ width: 100%;
+ position: relative;
+ -webkit-font-smoothing: subpixel-antialiased;
+}
+
+#wpcontent {
+ height: 100%;
+}
+
+#wpcontent,
+#wpfooter {
+ margin-right: 180px;
+}
+
+.folded #wpcontent,
+.folded #wpfooter {
+ margin-right: 56px;
+}
+
+#wpbody-content {
+ padding-bottom: 65px;
+ float: right;
+ width: 100%;
+ overflow: visible !important;
+}
+
+/* inner 2 column liquid layout */
+
+.inner-sidebar {
+ float: left;
+ clear: left;
+ display: none;
+ width: 281px;
+ position: relative;
+}
+
+.columns-2 .inner-sidebar {
+ margin-left: auto;
+ width: 286px;
+ display: block;
+}
+
+.inner-sidebar #side-sortables,
+.columns-2 .inner-sidebar #side-sortables {
+ min-height: 300px;
+ width: 280px;
+ padding: 0;
+}
+
+.has-right-sidebar .inner-sidebar {
+ display: block;
+}
+
+.has-right-sidebar #post-body {
+ float: right;
+ clear: right;
+ width: 100%;
+ margin-left: -2000px;
+}
+
+.has-right-sidebar #post-body-content {
+ margin-left: 300px;
+ float: none;
+ width: auto;
+}
+
+/* 2 columns main area */
+
+#col-container,
+#col-left,
+#col-right {
+ overflow: hidden;
+ padding: 0;
+ margin: 0;
+}
+
+#col-left {
+ width: 35%;
+}
+
+#col-right {
+ float: left;
+ clear: left;
+ width: 65%;
+}
+
+.col-wrap {
+ padding: 0 7px;
+}
+
+/* utility classes */
+.alignleft {
+ float: right;
+}
+
+.alignright {
+ float: left;
+}
+
+.textleft {
+ text-align: right;
+}
+
+.textright {
+ text-align: left;
+}
+
+.clear {
+ clear: both;
+}
+
+/* Hide visually but not from screen readers */
+.screen-reader-text,
+.screen-reader-text span,
+.ui-helper-hidden-accessible {
+ position: absolute;
+ margin: -1px;
+ padding: 0;
+ height: 1px;
+ width: 1px;
+ overflow: hidden;
+ clip: rect(0 0 0 0);
+ border: 0;
+}
+
+.screen-reader-shortcut {
+ position: absolute;
+ top: -1000em;
+}
+
+.screen-reader-shortcut:focus {
+ right: 6px;
+ top: -25px;
+ height: auto;
+ width: auto;
+ display: block;
+ font-size: 14px;
+ font-weight: 600;
+ padding: 15px 23px 14px;
+ background: #f1f1f1;
+ color: #21759b;
+ z-index: 100000;
+ line-height: normal;
+ -webkit-box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
+ box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
+ text-decoration: none;
+ outline: none;
+}
+
+.hidden,
+.js .closed .inside,
+.js .hide-if-js,
+.no-js .hide-if-no-js,
+.js.wp-core-ui .hide-if-js,
+.js .wp-core-ui .hide-if-js,
+.no-js.wp-core-ui .hide-if-no-js,
+.no-js .wp-core-ui .hide-if-no-js {
+ display: none;
+}
+
+/* @todo: Take a second look. Large chunks of shared color, from the colors.css merge */
+.widget-top,
+.menu-item-handle,
+.widget-inside,
+#menu-settings-column .accordion-container,
+#menu-management .menu-edit,
+.manage-menus,
+table.widefat,
+.stuffbox,
+p.popular-tags,
+.widgets-holder-wrap,
+.wp-editor-container,
+.popular-tags,
+.feature-filter,
+.imgedit-group {
+ border: 1px solid #e5e5e5;
+ -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
+ box-shadow: 0 1px 1px rgba(0,0,0,0.04);
+}
+
+table.widefat,
+.wp-editor-container,
+.stuffbox,
+p.popular-tags,
+.widgets-holder-wrap,
+.popular-tags,
+.feature-filter,
+.imgedit-group {
+ background: #fff;
+}
+
+/* general */
+html,
+body {
+ height: 100%;
+ margin: 0;
+ padding: 0;
+}
+
+html {
+ background: #f1f1f1;
+}
+
+body {
+ color: #444;
+ font-family: "Open Sans", sans-serif;
+ font-size: 13px;
+ line-height: 1.4em;
+ min-width: 600px;
+}
+
+body.iframe {
+ min-width: 0;
+ padding-top: 1px;
+}
+
+iframe,
+img {
+ border: 0;
+}
+
+td {
+ font-family: inherit;
+ font-size: inherit;
+ font-weight: inherit;
+ line-height: inherit;
+}
+
+a {
+ color: #0074a2;
+ -webkit-transition-property: border, background, color;
+ transition-property: border, background, color;
+ -webkit-transition-duration: .05s;
+ transition-duration: .05s;
+ -webkit-transition-timing-function: ease-in-out;
+ transition-timing-function: ease-in-out;
+}
+
+a,
+div {
+ outline: 0;
+}
+
+a:hover,
+a:active {
+ color: #2ea2cc;
+}
+
+a:focus {
+ color: #124964;
+}
+
+a:focus,
+a:active {
+ outline: thin dotted;
+}
+
+#adminmenu a:focus,
+#adminmenu a:active,
+.screen-reader-text:focus {
+ outline: none;
+}
+
+blockquote,
+q {
+ quotes: none;
+}
+
+blockquote:before,
+blockquote:after,
+q:before,
+q:after {
+ content: '';
+ content: none;
+}
+
+p {
+ font-size: 13px;
+ line-height: 1.5;
+ margin: 1em 0;
+}
+
+blockquote {
+ margin: 1em;
+}
+
+li,
+dd {
+ margin-bottom: 6px;
+}
+
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
+ display: block;
+ font-weight: 600;
+}
+
+h1 {
+ font-size: 2em;
+ margin: .67em 0;
+}
+
+h2 {
+ color: #222;
+ font-size: 1.5em;
+ margin: .83em 0;
+ font-weight: 400;
+}
+
+h3 {
+ color: #222;
+ font-size: 1.3em;
+ margin: 1em 0;
+}
+
+h4 {
+ font-size: 1em;
+ margin: 1.33em 0;
+}
+
+h5 {
+ font-size: 0.83em;
+ margin: 1.67em 0;
+}
+
+h6 {
+ font-size: 0.67em;
+ margin: 2.33em 0;
+}
+
+ul,
+ol {
+ padding: 0;
+}
+
+ul {
+ list-style: none;
+}
+
+ol {
+ list-style-type: decimal;
+ margin-right: 2em;
+}
+
+ul.ul-disc {
+ list-style: disc outside;
+}
+
+ul.ul-square {
+ list-style: square outside;
+}
+
+ol.ol-decimal {
+ list-style: decimal outside;
+}
+
+ul.ul-disc,
+ul.ul-square,
+ol.ol-decimal {
+ margin-right: 1.8em;
+}
+
+ul.ul-disc > li,
+ul.ul-square > li,
+ol.ol-decimal > li {
+ margin: 0 0 0.5em;
+}
+
+/* @noflip */
+.ltr {
+ direction: ltr;
+}
+
+/* @noflip */
+.code,
+code {
+ font-family: Consolas, Monaco, monospace;
+ direction: ltr;
+}
+
+kbd,
+code {
+ padding: 3px 5px 2px 5px;
+ margin: 0 1px;
+ background: #eaeaea;
+ background: rgba(0,0,0,0.07);
+ font-size: 13px;
+}
+
+.subsubsub {
+ list-style: none;
+ margin: 8px 0 0;
+ padding: 0;
+ font-size: 13px;
+ float: right;
+ color: #666;
+}
+
+.subsubsub a {
+ line-height: 2;
+ padding: .2em;
+ text-decoration: none;
+}
+
+.subsubsub a .count,
+.subsubsub a.current .count {
+ color: #999;
+ font-weight: normal;
+}
+
+.subsubsub a.current {
+ font-weight: 600;
+ border: none;
+}
+
+.subsubsub li {
+ display: inline-block;
+ margin: 0;
+ padding: 0;
+ white-space: nowrap;
+}
+
+/* .widefat - main style for tables */
+.widefat {
+ border-spacing: 0;
+ width: 100%;
+ clear: both;
+ margin: 0;
+}
+
+.widefat * {
+ word-wrap: break-word;
+}
+
+.widefat a {
+ text-decoration: none;
+}
+
+.widefat td,
+.widefat th {
+ padding: 8px 10px;
+}
+
+.widefat thead th {
+ border-bottom: 1px solid #e1e1e1;
+}
+
+.widefat tfoot th {
+ border-top: 1px solid #e1e1e1;
+ border-bottom: none;
+}
+
+.widefat .no-items td {
+ border-bottom-width: 0;
+}
+
+.widefat td {
+ vertical-align: top;
+}
+
+.widefat td,
+.widefat td p,
+.widefat td ol,
+.widefat td ul {
+ font-size: 13px;
+ line-height: 1.5em;
+}
+
+.widefat th {
+ text-align: right;
+ line-height: 1.3em;
+ font-size: 14px;
+}
+
+.widefat th input {
+ margin: 0 8px 0 0;
+ padding: 0;
+ vertical-align: text-top;
+}
+
+.widefat .check-column {
+ width: 2.2em;
+ padding: 6px 0 25px;
+ vertical-align: top;
+}
+
+.widefat th input[type=checkbox] {
+ margin-top: -1px;
+}
+
+.widefat tbody th.check-column {
+ padding: 9px 0 22px;
+}
+
+.widefat.media .check-column {
+ padding-top: 8px;
+}
+
+.widefat thead th.check-column,
+.widefat tbody th.check-column,
+.widefat tfoot th.check-column {
+ padding: 11px 3px 0 0;
+}
+
+.widefat thead th.check-column {
+ padding-top: 10px;
+}
+
+.update-php div.updated,
+.update-php div.error {
+ margin-right: 0;
+}
+
+.no-js .widefat thead .check-column input,
+.no-js .widefat tfoot .check-column input {
+ display: none;
+}
+
+.widefat .num,
+.column-comments,
+.column-links,
+.column-posts {
+ text-align: center;
+}
+
+.widefat th#comments {
+ vertical-align: middle;
+}
+
+.wrap {
+ margin: 10px 2px 0 20px;
+}
+
+div.updated,
+div.error {
+ padding: 0 0.6em;
+ margin: 5px 15px 2px;
+}
+
+div.updated p,
+div.error p {
+ margin: 0.5em 0;
+ padding: 2px;
+}
+
+.wrap div.updated,
+.wrap div.error,
+.media-upload-form div.error {
+ margin: 5px 0 15px;
+}
+
+div.updated {
+ border-right: 4px solid #7ad03a;
+ padding: 1px 12px;
+ background-color: #fff;
+ -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
+ box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
+}
+
+div.error {
+ border-right: 4px solid #dd3d36;
+ background: #fff;
+ -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
+ box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
+ padding: 1px 12px;
+}
+
+.attention {
+ color: #2ea2cc;
+}
+
+.wrap h2,
+.subtitle {
+ font-weight: normal;
+ margin: 0;
+}
+
+.wrap h2 {
+ font-size: 23px;
+ font-weight: 400;
+ padding: 9px 0 4px 15px;
+ line-height: 29px;
+}
+
+.subtitle {
+ color: #777;
+ font-size: 14px;
+ padding-right: 25px;
+}
+
+.wrap .add-new-h2,
+.wrap .add-new-h2:active {
+ margin-right: 4px;
+ padding: 4px 8px;
+ position: relative;
+ top: -3px;
+ text-decoration: none;
+ border: none;
+ -webkit-border-radius: 2px;
+ border-radius: 2px;
+ background: #e0e0e0;
+ text-shadow: none;
+ font-weight: 600;
+ font-size: 13px;
+}
+
+.wrap .add-new-h2:hover {
+ background: #2ea2cc;
+ color: #fff;
+}
+
+.wrap h2.long-header {
+ padding-left: 0;
+}
+
+.wp-dialog {
+ background-color: #fff;
+}
+
+.widgets-chooser ul,
+#widgets-left .widget-in-question .widget-top,
+#available-widgets .widget-top:hover,
+div#widgets-right .widget-top:hover,
+#widgets-left .widget-top:hover {
+ border-color: #999;
+ -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.1);
+ box-shadow: 0 1px 2px rgba(0,0,0,0.1);
+}
+
+.sorthelper {
+ background-color: #ccf3fa;
+}
+
+.ac_match,
+.subsubsub a.current {
+ color: #000;
+}
+
+.alternate,
+.alt {
+ background-color: #f9f9f9;
+}
+
+.bar {
+ background-color: #e8e8e8;
+ border-left-color: #99d;
+}
+
+.media-upload-form label.form-help,
+td.help {
+ color: #9a9a9a;
+}
+
+/* Helper classes for plugins to leverage the active WordPress color scheme */
+
+.highlight {
+ background-color: #e4f2fd;
+ color: #000;
+}
+
+.wp-ui-primary {
+ color: #fff;
+ background-color: #333;
+}
+.wp-ui-text-primary {
+ color: #333;
+}
+
+.wp-ui-highlight {
+ color: white;
+ background-color: #1e8cbe;
+}
+.wp-ui-text-highlight {
+ color: #1e8cbe;
+}
+
+.wp-ui-notification {
+ color: #fff;
+ background-color: #d54e21;
+}
+.wp-ui-text-notification {
+ color: #d54e21;
+}
+
+.wp-ui-text-icon {
+ color: #999;
+}
+
+/*------------------------------------------------------------------------------
+ 1.0 - Text Styles
+------------------------------------------------------------------------------*/
+
+.widget .widget-top,
+.postbox h3,
+.stuffbox h3,
+.control-section .accordion-section-title,
+h3.dashboard-widget-title,
+h3.dashboard-widget-title span,
+h3.dashboard-widget-title small,
+.sidebar-name,
+#nav-menu-header,
+#nav-menu-footer,
+.menu-item-handle,
+.checkbox,
+.side-info,
+#your-profile #rich_editing,
+.widefat thead th,
+.widefat tfoot th {
+ line-height: 1.4em;
+}
+
+.widget .widget-top,
+.menu-item-handle {
+ background: #fafafa;
+ color: #222;
+}
+
+.postbox h3,
+#namediv h3,
+#submitdiv h3 {
+ border-bottom: 1px solid #eee;
+}
+
+.quicktags,
+.search {
+ background-color: #ccc;
+ color: #000;
+ font-size: 12px;
+}
+
+.icon32 {
+ display: none;
+}
+
+/* @todo can we combine these into a class or use an existing dashicon one? */
+#welcome-panel.welcome-panel .welcome-panel-close::before,
+.tagchecklist span a:before,
+#bulk-titles div a:before {
+ background: none;
+ color: #bbb;
+ content: '\f153';
+ display: block !important;
+ font: normal 16px/1 'dashicons';
+ speak: none;
+ height: 20px;
+ margin: 2px 0;
+ text-align: center;
+ width: 20px;
+ -webkit-font-smoothing: antialiased !important;
+}
+
+#welcome-panel.welcome-panel .welcome-panel-close:hover:before,
+.tagchecklist span a:hover:before,
+#bulk-titles div a:hover:before {
+ color: #c00;
+}
+
+.key-labels label {
+ line-height: 24px;
+}
+
+strong, b {
+ font-weight: 600;
+}
+
+.pre {
+ /* https://developer.mozilla.org/en-US/docs/CSS/white-space */
+ white-space: pre-wrap; /* css-3 */
+ word-wrap: break-word; /* IE 5.5 - 7 */
+}
+
+.howto {
+ color: #666;
+ font-style: italic;
+ display: block;
+}
+
+p.install-help {
+ margin: 8px 0;
+ font-style: italic;
+}
+
+.no-break {
+ white-space: nowrap;
+}
+
+hr {
+ border: 0;
+ border-top: 1px solid #ddd;
+ border-bottom: 1px solid #fafafa;
+}
+
+.row-actions span.delete a,
+.row-actions span.trash a,
+.row-actions span.spam a,
+.plugins a.delete,
+#all-plugins-table .plugins a.delete,
+#search-plugins-table .plugins a.delete,
+.submitbox .submitdelete,
+#media-items a.delete,
+#media-items a.delete-permanently,
+#nav-menu-footer .menu-delete {
+ color: #a00;
+}
+
+abbr.required,
+.file-error,
+.widget-control-remove:hover,
+.row-actions .delete a:hover,
+.row-actions .trash a:hover,
+.row-actions .spam a:hover,
+.plugins a.delete:hover,
+#all-plugins-table .plugins a.delete:hover,
+#search-plugins-table .plugins a.delete:hover,
+.submitbox .submitdelete:hover,
+#media-items a.delete:hover,
+#media-items a.delete-permanently:hover,
+#nav-menu-footer .menu-delete:hover {
+ color: #f00;
+ text-decoration: none;
+ border: none;
+}
+
+/*------------------------------------------------------------------------------
+ 3.0 - Actions
+------------------------------------------------------------------------------*/
+
+#major-publishing-actions {
+ padding: 10px;
+ clear: both;
+ border-top: 1px solid #ddd;
+ background: #f5f5f5;
+}
+
+#delete-action {
+ line-height: 28px;
+ vertical-align: middle;
+ text-align: right;
+ float: right;
+}
+
+#publishing-action {
+ text-align: left;
+ float: left;
+ line-height: 23px;
+}
+
+#publishing-action .spinner {
+ float: right;
+}
+
+#misc-publishing-actions {
+ padding: 6px 0 0;
+}
+
+.misc-pub-section {
+ padding: 6px 10px 8px;
+}
+
+#minor-publishing-actions {
+ padding: 10px 10px 0 10px;
+ text-align: left;
+}
+
+#save-post {
+ float: right;
+}
+
+.preview {
+ float: left;
+}
+
+#sticky-span {
+ margin-right: 18px;
+}
+
+.side-info {
+ margin: 0;
+ padding: 4px;
+ font-size: 11px;
+}
+
+.side-info h5 {
+ padding-bottom: 7px;
+ font-size: 14px;
+ margin: 12px 2px 5px;
+ border-bottom: 1px solid #dadada;
+}
+
+.side-info ul {
+ margin: 0;
+ padding-right: 18px;
+ list-style: square;
+ color: #666;
+}
+
+.approve,
+.unapproved .unapprove {
+ display: none;
+}
+
+.unapproved .approve,
+.spam .approve,
+.trash .approve {
+ display: inline;
+}
+
+td.action-links,
+th.action-links {
+ text-align: left;
+}
+
+
+/*------------------------------------------------------------------------------
+ 4.0 - Notifications
+------------------------------------------------------------------------------*/
+
+#update-nag,
+.update-nag {
+ display: inline-block;
+ line-height: 19px;
+ padding: 11px 15px;
+ font-size: 14px;
+ text-align: right;
+ margin: 25px 2px 0 20px;
+ background-color: #fff;
+ border-right: 4px solid #ffba00;
+ -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
+ box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
+}
+
+.update-message {
+ color: #000;
+}
+
+ul#dismissed-updates {
+ display: none;
+}
+
+form.upgrade {
+ margin-top: 8px;
+}
+
+form.upgrade .hint {
+ font-style: italic;
+ font-size: 85%;
+ margin: -0.5em 0 2em 0;
+}
+
+.update-php .spinner {
+ float: none;
+ margin: -4px 0;
+}
+
+#ajax-loading,
+.ajax-loading,
+.ajax-feedback,
+.imgedit-wait-spin,
+.list-ajax-loading { /* deprecated */
+ visibility: hidden;
+}
+
+#ajax-response.alignleft {
+ margin-right: 2em;
+}
+
+/* @todo: this does not need its own section anymore */
+/*------------------------------------------------------------------------------
+ 6.0 - Admin Header
+------------------------------------------------------------------------------*/
+#adminmenu a,
+#sidemenu a,
+#taglist a,
+#catlist a {
+ text-decoration: none;
+}
+
+/*------------------------------------------------------------------------------
+ 6.1 - Screen Options Tabs
+------------------------------------------------------------------------------*/
+
+#screen-options-wrap,
+#contextual-help-wrap {
+ margin: 0;
+ padding: 8px 20px 12px;
+ position: relative;
+}
+
+#contextual-help-wrap {
+ overflow: auto;
+ margin-right: 0 !important;
+}
+
+#screen-meta .screen-reader-text {
+ visibility: hidden;
+}
+
+#screen-meta-links {
+ margin: 0 0 0 20px;
+}
+
+#screen-meta-links a {
+ padding: 3px 16px 3px 6px;
+}
+
+#screen-meta-links a:focus {
+ outline: none;
+}
+
+/* screen options and help tabs revert */
+#screen-meta {
+ display: none;
+ margin: 0 0px -1px 20px;
+ position: relative;
+ background-color: #fff;
+ border: 1px solid #ddd;
+ border-top: none;
+ -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.025);
+ box-shadow: 0 1px 0 rgba(0,0,0,.025);
+}
+
+#screen-options-link-wrap,
+#contextual-help-link-wrap {
+ float: left;
+ height: 28px;
+ margin: 0 6px 0 0;
+ border: 1px solid #ddd;
+ border-top: none;
+ background: #fff;
+ -webkit-box-shadow: 0 1px 1px -1px rgba(0,0,0,0.1);
+ box-shadow: 0 1px 1px -1px rgba(0,0,0,0.1);
+}
+
+#screen-meta-links .screen-meta-toggle {
+ position: relative;
+ top: 0;
+}
+
+#screen-meta-links a {
+ color: #777;
+}
+
+#screen-meta-links a:hover,
+#screen-meta-links a:active,
+#screen-meta-links a:focus {
+ color: #333;
+}
+
+#screen-meta-links a:focus {
+ border-color: #aaa;
+ -webkit-box-shadow: 0 2px 3px rgba(0,0,0,0.15);
+ box-shadow: 0 2px 3px rgba(0,0,0,0.15);
+}
+
+#screen-meta-links a.show-settings {
+ display: block;
+ font-size: 13px;
+ height: 22px;
+ line-height: 22px;
+ text-decoration: none;
+ z-index: 1;
+}
+
+#screen-meta-links a:after {
+ left: 0;
+ content: '\f140';
+ font: normal 20px/1 'dashicons';
+ speak: none;
+ display: inline-block;
+ padding: 0 0 0 5px;
+ bottom: 2px;
+ position: relative;
+ vertical-align: bottom;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ text-decoration: none !important;
+ color: #bbb;
+}
+
+#screen-meta-links a.screen-meta-active:after {
+ content: '\f142';
+}
+
+#screen-meta-links a.show-settings:hover {
+ text-decoration: none;
+}
+/* end screen options and help tabs */
+
+.toggle-arrow {
+ background-repeat: no-repeat;
+ background-position: top right;
+ background-color: transparent;
+ height: 22px;
+ line-height: 22px;
+ display: block;
+}
+
+.toggle-arrow-active {
+ background-position: bottom right;
+}
+
+#screen-options-wrap h5,
+#contextual-help-wrap h5 {
+ margin: 8px 0;
+ font-size: 13px;
+}
+
+.metabox-prefs label {
+ display: inline-block;
+ padding-left: 15px;
+ line-height: 30px;
+}
+
+.metabox-prefs label input[type=checkbox] {
+ margin-top: -4px;
+ margin-left: 6px;
+}
+
+.metabox-prefs label input {
+ margin: 0 2px 0 5px;
+}
+
+.metabox-prefs .columns-prefs label input {
+ margin: 0 2px;
+}
+
+.metabox-prefs label a {
+ display: none;
+}
+
+/*------------------------------------------------------------------------------
+ 6.2 - Help Menu
+------------------------------------------------------------------------------*/
+
+#contextual-help-wrap {
+ padding: 0;
+}
+
+#contextual-help-columns {
+ position: relative;
+}
+
+#contextual-help-back {
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ right: 150px;
+ left: 170px;
+ border: 1px solid #e1e1e1;
+ border-top: none;
+ border-bottom: none;
+ background: #f6fbfd;
+}
+
+#contextual-help-wrap.no-sidebar #contextual-help-back {
+ left: 0;
+ border-left-width: 0;
+ -webkit-border-bottom-left-radius: 2px;
+ border-bottom-left-radius: 2px;
+}
+
+.contextual-help-tabs {
+ float: right;
+ width: 150px;
+ margin: 0;
+}
+
+.contextual-help-tabs ul {
+ margin: 1em 0;
+}
+
+.contextual-help-tabs li {
+ margin-bottom: 0;
+ list-style-type: none;
+ border-style: solid;
+ border-width: 0 2px 0 0;
+ border-color: transparent;
+}
+
+.contextual-help-tabs a {
+ display: block;
+ padding: 5px 12px 5px 5px;
+ line-height: 18px;
+ text-decoration: none;
+ border: 1px solid transparent;
+ border-left: none;
+ border-right: none;
+}
+
+.contextual-help-tabs a:hover {
+ color: #333;
+}
+
+.contextual-help-tabs .active {
+ padding: 0;
+ margin: 0 0 0 -1px;
+ border-right: 2px solid #2ea2cc;
+ background: #f6fbfd;
+ -webkit-box-shadow: 0 2px 0 rgba(0,0,0,0.02), 0 1px 0 rgba(0,0,0,0.02);
+ box-shadow: 0 2px 0 rgba(0,0,0,0.02), 0 1px 0 rgba(0,0,0,0.02);
+}
+
+.contextual-help-tabs .active a {
+ border-color: #e1e1e1;
+ color: #333;
+}
+
+.contextual-help-tabs-wrap {
+ padding: 0 20px;
+ overflow: auto;
+}
+
+.help-tab-content {
+ display: none;
+ margin: 0 0 12px 22px;
+ line-height: 1.6em;
+}
+
+.help-tab-content.active {
+ display: block;
+}
+
+.help-tab-content ul li {
+ list-style-type: disc;
+ margin-right: 18px;
+}
+
+.contextual-help-sidebar {
+ width: 150px;
+ float: left;
+ padding: 0 12px 0 8px;
+ overflow: auto;
+}
+
+/*------------------------------------------------------------------------------
+ 8.0 - Layout Blocks
+------------------------------------------------------------------------------*/
+
+html.wp-toolbar {
+ padding-top: 32px;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}
+
+.narrow {
+ width: 70%;
+ margin-bottom: 40px;
+}
+
+.narrow p {
+ line-height: 150%;
+}
+
+.widefat th,
+.widefat td {
+ overflow: hidden;
+ color: #555;
+}
+
+.widefat th {
+ font-weight: normal;
+}
+
+.widefat thead tr th,
+.widefat tfoot tr th {
+ color: #333;
+}
+
+.widefat td p {
+ margin: 2px 0 0.8em;
+}
+
+.widefat p,
+.widefat ol,
+.widefat ul {
+ color: #333;
+}
+
+.widefat .column-comment p {
+ margin: 0.6em 0;
+}
+
+/* Screens with postboxes */
+.postbox-container {
+ float: right;
+}
+
+.postbox-container .meta-box-sortables {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}
+
+#wpbody-content .metabox-holder {
+ padding-top: 10px;
+}
+
+.metabox-holder .postbox-container .empty-container {
+ border: 3px dashed #bbb;
+ height: 250px;
+}
+
+.metabox-holder.columns-1 .postbox-container .empty-container,
+.columns-2 #postbox-container-3 .empty-container,
+.columns-2 #postbox-container-4 .empty-container,
+.columns-3 #postbox-container-4 .empty-container {
+ border: 0 none;
+ height: 0;
+ min-height: 0;
+}
+
+#post-body-content {
+ width: 100%;
+ min-width: 463px;
+ float: right;
+}
+
+#post-body.columns-2 #postbox-container-1 {
+ float: left;
+ margin-left: -300px;
+ width: 280px;
+}
+
+#post-body.columns-2 #side-sortables {
+ min-height: 250px;
+}
+
+/* one column on the dash */
+@media only screen and (max-width: 799px) {
+ #wpbody-content .metabox-holder .postbox-container .empty-container {
+ border: 0 none;
+ height: 0;
+ min-height: 0;
+ }
+}
+
+.js .postbox .hndle {
+ cursor: move;
+}
+
+.hndle a {
+ font-size: 11px;
+ font-weight: normal;
+}
+
+.postbox .handlediv {
+ float: left;
+ width: 27px;
+ height: 30px;
+}
+
+.js .postbox .handlediv {
+ cursor: pointer;
+}
+
+.sortable-placeholder {
+ border: 1px dashed #bbb;
+ margin-bottom: 20px;
+}
+
+.postbox,
+.stuffbox {
+ margin-bottom: 20px;
+ padding: 0;
+ line-height: 1;
+}
+
+.postbox h3,
+.stuffbox h3 {
+ margin-top: 1px;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
+
+.js .widget .widget-top,
+.js .postbox h3 {
+ cursor: move;
+}
+
+.postbox .inside,
+.stuffbox .inside {
+ padding: 0 12px 12px;
+ line-height: 1.4em;
+ font-size: 13px;
+}
+
+.postbox .inside {
+ margin: 11px 0;
+ position: relative;
+}
+
+.postbox .inside > p:last-child,
+.rss-widget ul li:last-child {
+ margin-bottom: 1px !important;
+}
+
+.postbox.closed h3 {
+ border: none;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+.postbox table.form-table {
+ margin-bottom: 0;
+}
+
+.postbox table.widefat {
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+.temp-border {
+ border: 1px dotted #ccc;
+}
+
+.columns-prefs label {
+ padding: 0 5px;
+}
+
+/* @todo: what is this doing here */
+#dashboard_right_now .versions .b,
+#post-status-display,
+#post-visibility-display,
+#adminmenu .wp-submenu li.current,
+#adminmenu .wp-submenu li.current a,
+#adminmenu .wp-submenu li.current a:hover,
+.media-item .percent,
+.plugins .name,
+#pass-strength-result.strong,
+#pass-strength-result.short,
+#ed_reply_toolbar #ed_reply_strong,
+.item-controls .item-order a,
+.feature-filter .feature-name {
+ font-weight: 600;
+}
+
+/*------------------------------------------------------------------------------
+ 21.0 - Admin Footer
+------------------------------------------------------------------------------*/
+
+#wpfooter {
+ position: absolute;
+ bottom: 0;
+ right: 0;
+ left: 0;
+ padding: 10px 0;
+ margin-left: 20px;
+ color: #777;
+}
+
+#wpfooter p {
+ font-size: 13px;
+ margin: 0;
+ line-height: 20px;
+}
+
+#footer-thankyou {
+ font-style: italic;
+}
+
+#wpfooter a {
+ text-decoration: none;
+}
+
+#wpfooter a:hover {
+ text-decoration: underline;
+}
+
+/*------------------------------------------------------------------------------
+ 25.0 - Tabbed Admin Screen Interface (Experimental)
+------------------------------------------------------------------------------*/
+
+.nav-tab {
+ border: 1px solid #ccc;
+ border-bottom: none;
+ background: #e4e4e4;
+ color: #555;
+ font-size: 12px;
+ line-height: 16px;
+ display: inline-block;
+ padding: 4px 14px 6px;
+ text-decoration: none;
+ margin: -4px 0 -1px 4px;
+}
+
+.nav-tab:hover {
+ background-color: #fff;
+ color: #464646;
+}
+
+.nav-tab-active {
+ color: #464646;
+}
+
+.nav-tab-active,
+.nav-tab-active:hover {
+ border-bottom: 1px solid #f1f1f1;
+ background: #f1f1f1;
+ color: #000;
+}
+
+h2.nav-tab-wrapper,
+h3.nav-tab-wrapper {
+ border-bottom: 1px solid #ccc;
+ padding-bottom: 0;
+ padding-right: 10px;
+}
+
+h2 .nav-tab {
+ padding: 6px 10px;
+ font-weight: bold;
+ font-size: 15px;
+ line-height: 24px;
+}
+
+
+/*------------------------------------------------------------------------------
+ 26.0 - Misc
+------------------------------------------------------------------------------*/
+
+.spinner {
+ background: url(../images/spinner.gif) no-repeat;
+ -webkit-background-size: 20px 20px;
+ background-size: 20px 20px;
+ display: none;
+ float: left;
+ opacity: 0.7;
+ filter: alpha(opacity=70);
+ width: 20px;
+ height: 20px;
+ margin: 2px 5px 0;
+}
+
+#template div {
+ margin-left: 190px;
+}
+
+.metabox-holder h3 {
+ font-size: 14px;
+ padding: 8px 12px;
+ margin: 0;
+ line-height: 1.4;
+}
+
+#templateside ul li a {
+ text-decoration: none;
+}
+
+#sidemenu {
+ margin: -30px 315px 0 15px;
+ list-style: none;
+ position: relative;
+ float: left;
+ padding-right: 10px;
+ font-size: 12px;
+}
+
+#sidemenu a {
+ padding: 0 7px;
+ display: block;
+ float: right;
+ line-height: 28px;
+ border-top: 1px solid #f9f9f9;
+ border-bottom: 1px solid #dfdfdf;
+ background-color: #f9f9f9;
+ -webkit-transition: none;
+ transition: none;
+}
+
+#sidemenu li {
+ display: inline;
+ line-height: 200%;
+ list-style: none;
+ text-align: center;
+ white-space: nowrap;
+ margin: 0;
+ padding: 0;
+}
+
+/* @todo: remove border radius */
+#sidemenu a.current {
+ font-weight: normal;
+ padding-right: 6px;
+ padding-left: 6px;
+ -webkit-border-top-right-radius: 3px;
+ border-top-right-radius: 3px;
+ -webkit-border-top-left-radius: 3px;
+ border-top-left-radius: 3px;
+ border: 1px solid #dfdfdf;
+ border-bottom-color: #f1f1f1;
+ background-color: #f1f1f1;
+ color: #000;
+}
+
+#sidemenu li a .count-0 {
+ display: none;
+}
+
+.plugin-install #description,
+.plugin-install-network #description {
+ width: 60%;
+}
+
+table .vers,
+table .column-visible,
+table .column-rating {
+ text-align: right;
+}
+
+.error-message {
+ color: red;
+ font-weight: 600;
+}
+
+/* Scrollbar fix for bulk upgrade iframe */
+body.iframe {
+ height: 98%;
+}
+
+/* Upgrader styles, Specific to Language Packs */
+.lp-show-latest p {
+ display: none;
+}
+.lp-show-latest p:last-child,
+.lp-show-latest .lp-error p {
+ display: block;
+}
+
+/* - Only used once or twice in all of WP - deprecate for global style
+------------------------------------------------------------------------------*/
+td.media-icon {
+ text-align: center;
+ width: 80px;
+ padding-top: 8px;
+ padding-bottom: 8px;
+}
+
+td.media-icon img {
+ max-width: 80px;
+ max-height: 60px;
+}
+
+#howto {
+ font-size: 11px;
+ margin: 0 5px;
+ display: block;
+}
+
+.importers td {
+ padding-left: 14px;
+}
+
+.importers {
+ font-size: 16px;
+ width: auto;
+}
+
+#post-body #post-body-content #namediv h3 {
+ margin-top: 0;
+}
+
+#namediv h3 label {
+ vertical-align: baseline;
+}
+
+#namediv table {
+ width: 100%;
+}
+
+#namediv td.first {
+ width: 10px;
+ white-space: nowrap;
+}
+
+#namediv input {
+ width: 98%;
+}
+
+#namediv p {
+ margin: 10px 0;
+}
+
+#submitdiv h3 {
+ margin-bottom: 0 !important;
+}
+
+/* - Used - but could/should be deprecated with a CSS reset
+------------------------------------------------------------------------------*/
+.zerosize {
+ height: 0;
+ width: 0;
+ margin: 0;
+ border: 0;
+ padding: 0;
+ overflow: hidden;
+ position: absolute;
+}
+
+br.clear {
+ height: 2px;
+ line-height: 2px;
+}
+
+.checkbox {
+ border: none;
+ margin: 0;
+ padding: 0;
+}
+
+fieldset {
+ border: 0;
+ padding: 0;
+ margin: 0;
+}
+
+.post-categories {
+ display: inline;
+ margin: 0;
+ padding: 0;
+}
+
+.post-categories li {
+ display: inline;
+}
+
+/* Star Ratings - Back-compat for pre-3.8 */
+div.star-holder {
+ position: relative;
+ height: 17px;
+ width: 100px;
+ background: url(../images/stars.png?ver=20121108) repeat-x bottom right;
+}
+
+div.star-holder .star-rating {
+ background: url(../images/stars.png?ver=20121108) repeat-x top right;
+ height: 17px;
+ float: right;
+}
+
+/* Star Ratings */
+.star-rating {
+ white-space: nowrap;
+}
+.star-rating .star {
+ display: inline-block;
+ width: 20px;
+ height: 20px;
+ -webkit-font-smoothing: antialiased;
+ font-size: 20px;
+ line-height: 1;
+ font-family: 'dashicons';
+ text-decoration: inherit;
+ font-weight: normal;
+ font-style: normal;
+ vertical-align: top;
+ -webkit-transition: color .1s ease-in 0;
+ transition: color .1s ease-in 0;
+ text-align: center;
+ color: #0074a2;
+}
+
+.star-rating .star-full:before {
+ content:'\f155';
+}
+
+.star-rating .star-half:before {
+ content:'\f459';
+}
+
+.rtl .star-rating .star-half {
+ -webkit-transform: rotateY(180deg);
+ -ms-transform: rotateY(180deg);
+ transform: rotateY(180deg);
+}
+
+.star-rating .star-empty:before {
+ content:'\f154';
+}
+
+div.action-links {
+ font-weight: normal;
+ margin: 6px 0 0;
+}
+
+/* Plugin install thickbox */
+#plugin-information {
+ background: #fcfcfc;
+ position: fixed;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ right: 0;
+ height: auto;
+ padding: 0;
+}
+
+#plugin-information-title {
+ padding: 0 20px 0 76px;
+ font-size: 22px;
+ font-weight: 600;
+ line-height: 56px;
+ top: 0;
+ left: 0;
+ right: 0;
+ height: 56px;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+}
+
+#plugin-information-tabs {
+ padding: 0 16px;
+ position: absolute;
+ top: 56px;
+ left: 0;
+ right: 0;
+ height: 36px;
+ z-index: 1;
+}
+
+#plugin-information-tabs a {
+ position: relative;
+ float: right;
+ padding: 8px 10px 9px;
+ margin: 0;
+ height: 18px;
+ line-height: 18px;
+ font-size: 14px;
+ text-decoration: none;
+ -webkit-transition: none;
+ transition: none;
+}
+
+#plugin-information-tabs a.current {
+ margin: -1px -1px 0;
+ background: #fff;
+ border: 1px solid #ddd;
+ border-bottom: none;
+ color: #333;
+}
+
+#plugin-information-tabs a:active,
+#plugin-information-tabs a:focus {
+ outline: none;
+}
+
+#plugin-information-content {
+ background: #fff;
+ border-top: 1px solid #ddd;
+ border-bottom: 1px solid #ddd;
+ position: absolute;
+ top: 90px;
+ left: 0;
+ bottom: 58px;
+ right: 0;
+}
+
+#section-holder {
+ margin: 0;
+ padding: 10px 26px;
+ position: absolute;
+ top: 0;
+ left: 250px;
+ bottom: 0;
+ right: 0;
+ overflow: auto;
+}
+
+#section-holder .updated {
+ margin: 16px 0;
+}
+
+#plugin-information .fyi {
+ background: #f3f3f3;
+ border-right: 1px solid #ddd;
+ color: #666;
+ padding: 16px;
+ position: absolute;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ width: 217px;
+ overflow: auto;
+}
+
+#plugin-information .fyi strong {
+ color: #464646;
+}
+
+#plugin-information .fyi h3 {
+ font-weight: bold;
+ text-transform: uppercase;
+ font-size: 12px;
+ color: #666;
+ margin: 24px 0 8px;
+}
+
+#plugin-information .fyi h2 {
+ font-size: 0.9em;
+ margin-bottom: 0;
+ margin-left: 0;
+}
+
+#plugin-information .fyi ul {
+ padding: 0;
+ margin: 0;
+ list-style: none;
+}
+
+#plugin-information .fyi li {
+ margin: 0 0 10px;
+}
+
+#plugin-information-footer {
+ padding: 15px 16px;
+ position: absolute;
+ left: 0;
+ bottom: 0;
+ right: 0;
+ height: 28px;
+}
+
+#plugin-information .section ul,
+#plugin-information .section ol {
+ list-style-type: disc;
+ margin-right: 24px;
+}
+
+#plugin-information .section,
+#plugin-information .section p {
+ font-size: 14px;
+ line-height: 1.7;
+}
+
+#plugin-information #section-screenshots ol {
+ list-style: none;
+ margin: 0;
+}
+
+#plugin-information #section-screenshots li img {
+ vertical-align: text-top;
+ margin-top: 16px;
+ max-width: 100%;
+ width: auto;
+ height: auto;
+ -webkit-box-shadow: 0 1px 2px rgba( 0, 0, 0, 0.3 );
+ box-shadow: 0 1px 2px rgba( 0, 0, 0, 0.3 );
+}
+
+#plugin-information #section-screenshots li p {
+ font-style: italic;
+ padding-right: 20px;
+}
+
+#plugin-information pre {
+ padding: 7px;
+ overflow: auto;
+ border: 1px solid #ccc;
+}
+
+.plugin-version-author-uri {
+ font-size: 13px;
+}
+
+@media screen and ( max-width: 782px ) {
+ #plugin-information-content {
+ overflow: auto;
+ bottom: 58px;
+ }
+
+ #plugin-information .fyi {
+ border: 1px solid #ddd;
+ position: static;
+ width: auto;
+ margin: 26px 26px 16px;
+ }
+
+ #section-holder {
+ position: static;
+ }
+
+ #plugin-information .fyi h3,
+ #plugin-information .fyi small {
+ display: none;
+ }
+
+ #plugin-information-footer {
+ padding: 12px 16px 0;
+ height: 46px;
+ }
+}
+
+/* Thickbox for Plugin Install screen */
+body.plugin-install-php #TB_window,
+body.import-php #TB_window,
+body.plugins-php #TB_window,
+body.update-core-php #TB_window,
+body.index-php #TB_window {
+ background: #fcfcfc url( ../images/spinner.gif ) no-repeat center;
+}
+
+@media print,
+ (-o-min-device-pixel-ratio: 5/4),
+ (-webkit-min-device-pixel-ratio: 1.25),
+ (min-resolution: 120dpi) {
+
+ body.plugin-install-php #TB_window,
+ body.import-php #TB_window,
+ body.plugins-php #TB_window,
+ body.update-core-php #TB_window,
+ body.index-php #TB_window {
+ background: #fcfcfc url( ../images/spinner-2x.gif ) no-repeat center;
+ -webkit-background-size: 20px 20px;
+ background-size: 20px 20px;
+ }
+}
+
+body.plugin-install-php #TB_title,
+body.import-php #TB_title,
+body.plugins-php #TB_title,
+body.update-core-php #TB_title,
+body.index-php #TB_title {
+ float: right;
+ height: 1px;
+}
+
+body.plugin-install-php #TB_ajaxWindowTitle,
+body.import-php #TB_ajaxWindowTitle,
+body.plugins-php #TB_ajaxWindowTitle,
+body.update-core-php #TB_ajaxWindowTitle,
+body.index-php #TB_ajaxWindowTitle {
+ display: none;
+}
+
+body.plugin-install-php .tb-close-icon,
+body.import-php .tb-close-icon,
+body.plugins-php .tb-close-icon,
+body.update-core-php .tb-close-icon,
+body.index-php .tb-close-icon {
+ line-height: 48px;
+ width: 48px;
+ height: 48px;
+}
+
+body.plugin-install-php .tb-close-icon:before,
+body.import-php .tb-close-icon:before,
+body.plugins-php .tb-close-icon:before,
+body.update-core-php .tb-close-icon:before,
+body.index-php .tb-close-icon:before {
+ line-height: 48px;
+}
+
+/* @todo: move this. */
+img {
+ border: none;
+}
+
+/* Header */
+/* @todo: are these also specific to Press This? */
+#wphead {
+ border-bottom: 1px solid #dfdfdf;
+}
+
+#wphead h1 a {
+ color: #464646;
+}
+
+/* @todo: these seem misplaced */
+.js .meta-box-sortables .postbox:hover .handlediv {
+ margin-left: 0 !important;
+}
+
+/* Metabox collapse arrow indicators */
+.js .sidebar-name .sidebar-name-arrow:before,
+.js .meta-box-sortables .postbox .handlediv:before {
+ left: 12px;
+ font: normal 20px/1 'dashicons';
+ speak: none;
+ display: inline-block;
+ padding: 8px 10px;
+ top: 0;
+ position: relative;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ text-decoration: none !important;
+}
+
+.js #widgets-left .sidebar-name .sidebar-name-arrow {
+ display: none;
+}
+
+.js #widgets-left .widgets-holder-wrap.closed .sidebar-name .sidebar-name-arrow,
+.js #widgets-left .sidebar-name:hover .sidebar-name-arrow {
+ display: block;
+}
+
+/* Show the arrow only on hover */
+.js .sidebar-name .sidebar-name-arrow:before,
+.js .meta-box-sortables .postbox .handlediv:before {
+ content: '\f142';
+}
+
+.js .widgets-holder-wrap.closed .sidebar-name-arrow:before,
+.js .meta-box-sortables .postbox.closed .handlediv:before {
+ content: '\f140';
+}
+
+.error a {
+ text-decoration: underline;
+}
+
+.updated a {
+ text-decoration: none;
+ padding-bottom: 2px;
+}
+
+/* @todo: appears to be Press This only and overridden */
+#photo-add-url-div input[type="text"] {
+ width: 300px;
+}
+
+/* Theme/Plugin Editor */
+.alignleft h3 {
+ margin: 0;
+}
+
+#template textarea {
+ font-family: Consolas, Monaco, monospace;
+ font-size: 13px;
+ width: 97%;
+ background: #f9f9f9;
+ outline: none;
+}
+
+/* @noflip */
+#template textarea,
+#docs-list {
+ direction: ltr;
+}
+
+#template p {
+ width: 97%;
+}
+
+#templateside {
+ float: left;
+ width: 190px;
+ word-wrap: break-word;
+}
+
+#templateside h3,
+#postcustomstuff p.submit {
+ margin: 0;
+}
+
+#templateside h4 {
+ margin: 1em 0 0;
+}
+
+#templateside ol,
+#templateside ul {
+ margin: .5em 0;
+ padding: 0;
+}
+
+#templateside li {
+ margin: 4px 0;
+}
+
+#templateside a,
+.theme-editor-php .highlight {
+ display: block;
+ padding: 3px 12px 3px 3px;
+ text-decoration: none;
+}
+
+.theme-editor-php .highlight {
+ margin: -3px -12px -3px 3px;
+}
+
+#templateside .highlight {
+ border: none;
+ font-weight: bold;
+}
+
+.nonessential {
+ color: #666;
+ font-size: 11px;
+ font-style: italic;
+ padding-right: 12px;
+}
+
+#documentation {
+ margin-top: 10px;
+}
+
+#documentation label {
+ line-height: 22px;
+ vertical-align: baseline;
+ font-weight: 600;
+}
+
+.fileedit-sub {
+ padding: 10px 0 8px;
+ line-height: 180%;
+}
+
+/* @todo: can we use a common class for these? */
+.nav-menus-php .item-edit:before,
+.widget-top a.widget-action:after,
+.control-section .accordion-section-title:after,
+.accordion-section-title:after {
+ left: 0;
+ content: '\f140';
+ border: none;
+ background: none;
+ font: normal 20px/1 'dashicons';
+ speak: none;
+ display: block;
+ padding: 0;
+ text-indent: 0;
+ text-align: center;
+ position: relative;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ text-decoration: none !important;
+}
+
+.widget-action,
+.handlediv,
+.item-edit,
+.sidebar-name-arrow,
+.accordion-section-title:after {
+ color: #aaa;
+}
+
+.widget-action:hover,
+.handlediv:hover,
+.item-edit:hover,
+.sidebar-name:hover .sidebar-name-arrow,
+.accordion-section-title:hover:after {
+ color: #777;
+}
+
+.widget-top a.widget-action:after {
+ padding: 12px 12px 0;
+}
+
+.nav-menus-php .item-edit:before {
+ line-height: 2.1;
+}
+
+.control-section .accordion-section-title:after,
+.accordion-section-title:after {
+ float: left;
+ left: 20px;
+ top: -2px;
+}
+
+.control-section.open .accordion-section-title:after,
+#customize-info.open .accordion-section-title:after,
+.nav-menus-php .menu-item-edit-active .item-edit:before {
+ content: '\f142';
+}
+
+/* Enable draggable on IE10 touch events until it's rolled into jQuery UI core */
+.ui-sortable,
+.ui-draggable {
+ -ms-touch-action: none;
+ touch-action: none;
+}
+
+.meta-box-sortables.ui-sortable,
+.widgets-holder-wrap .ui-draggable,
+.widgets-holder-wrap .ui-sortable,
+.menu.ui-sortable {
+ -ms-touch-action: auto;
+ touch-action: auto;
+}
+
+.meta-box-sortables.ui-sortable .hndle,
+.menu.ui-sortable .menu-item-handle {
+ -ms-touch-action: none;
+ touch-action: none;
+}
+
+/* Accordion */
+
+.accordion-section {
+ border-bottom: 1px solid #dfdfdf;
+ margin: 0;
+}
+
+.accordion-section.open .accordion-section-content,
+.no-js .accordion-section .accordion-section-content {
+ display: block;
+}
+
+.accordion-section.open:hover {
+ border-bottom-color: #dfdfdf;
+}
+
+.accordion-section-content {
+ display: none;
+ padding: 10px 20px 15px;
+ overflow: hidden;
+ background: #fff;
+}
+
+.accordion-section-title {
+ margin: 0;
+ padding: 12px 15px 15px;
+ position: relative;
+ border-right: 1px solid #dfdfdf;
+ border-left: 1px solid #dfdfdf;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
+
+.js .accordion-section-title {
+ cursor: pointer;
+}
+
+.js .accordion-section-title:after {
+ position: absolute;
+ top: 12px;
+ left: 10px;
+ z-index: 1;
+}
+
+.accordion-section-title:focus {
+ outline: none;
+}
+
+.accordion-section-title:hover:after,
+.accordion-section-title:focus:after {
+ border-color: #aaa transparent;
+}
+
+.cannot-expand .accordion-section-title {
+ cursor: auto;
+}
+
+.cannot-expand .accordion-section-title:after {
+ display: none;
+}
+
+.control-section .accordion-section-title {
+ border-right: none;
+ border-left: none;
+ padding: 10px 14px 11px 10px;
+ line-height: 21px;
+ background: #fff;
+}
+
+.control-section .accordion-section-title:after {
+ top: 11px;
+}
+
+.js .control-section:hover .accordion-section-title,
+.js .control-section .accordion-section-title:hover,
+.js .control-section.open .accordion-section-title,
+.js .control-section .accordion-section-title:focus {
+ color: #222;
+ background: #f5f5f5;
+}
+
+.control-section.open .accordion-section-title {
+ /* When expanded */
+ border-bottom: 1px solid #dfdfdf;
+}
+
+/* =Media Queries
+-------------------------------------------------------------- */
+
+/* @todo: de-duplication */
+@media only screen and (min-width: 769px) {
+ /* categories */
+ #col-left {
+ width: 35%;
+ }
+
+ #col-right {
+ width: 65%;
+ }
+}
+
+@media only screen and (max-width: 860px) {
+
+ /* categories */
+ #col-left {
+ width: 35%;
+ }
+
+ #col-right {
+ width: 65%;
+ }
+}
+
+@media only screen and (min-width: 980px) {
+
+ /* categories */
+ #col-left {
+ width: 35%;
+ }
+
+ #col-right {
+ width: 65%;
+ }
+}
+
+@media only screen and (max-width: 768px) {
+ /* categories */
+ #col-left {
+ width: 100%;
+ }
+
+ #col-right {
+ width: 100%;
+ }
+}
+
+/**
+ * HiDPI Displays
+ */
+@media print,
+ (-o-min-device-pixel-ratio: 5/4),
+ (-webkit-min-device-pixel-ratio: 1.25),
+ (min-resolution: 120dpi) {
+ /* Back-compat for pre-3.8 */
+ div.star-holder,
+ div.star-holder .star-rating {
+ background: url(../images/stars-2x.png?ver=20121108) repeat-x bottom right;
+ -webkit-background-size: 21px 37px;
+ background-size: 21px 37px;
+ }
+
+ .spinner {
+ background-image: url(../images/spinner-2x.gif);
+ }
+
+ /* @todo: evaluate - most of these were likely replaced by dashicons */
+ .curtime #timestamp,
+ #screen-meta-links a.show-settings,
+ .widget-top a.widget-action,
+ .widget-top a.widget-action:hover,
+ .sidebar-name-arrow,
+ .sidebar-name:hover .sidebar-name-arrow,
+ .meta-box-sortables .postbox:hover .handlediv,
+ .tagchecklist span a,
+ #bulk-titles div a,
+ .tagchecklist span a:hover,
+ #bulk-titles div a:hover {
+ background: none !important;
+ }
+
+}
+
+@-ms-viewport {
+ width: device-width;
+}
+
+@media screen and ( max-width: 782px ) {
+ html.wp-toolbar {
+ padding-top: 46px;
+ }
+
+ body {
+ min-width: 240px;
+ overflow-x: hidden;
+ }
+
+ body * {
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
+ }
+
+ #wpwrap {
+ background: #f0f0f0;
+ }
+
+ #wpcontent {
+ position: relative;
+ margin-right: 0;
+ padding-right: 10px;
+ }
+
+ #wpbody-content {
+ padding-bottom: 100px;
+ }
+
+ .wrap {
+ margin-left: 12px;
+ margin-right: 0;
+ }
+
+ .col-wrap {
+ padding: 0;
+ }
+
+ /* Hidden Elements */
+ #screen-meta,
+ #screen-meta-links,
+ #collapse-menu,
+ .post-format-select {
+ display: none !important;
+ }
+
+ .wrap .add-new-h2, .wrap .add-new-h2:active {
+ padding: 10px 15px;
+ font-size: 14px;
+ }
+
+ .wp-color-result {
+ height: auto;
+ padding-right: 45px;
+ }
+
+ .wp-color-result:after {
+ font-size: 14px;
+ height: auto;
+ padding: 6px 14px;
+ }
+
+ /* Feedback Messages */
+ .wrap div.updated, .wrap div.error, .media-upload-form div.error {
+ margin: 20px 0 10px 0;
+ padding: 5px 10px;
+ font-size: 14px;
+ line-height: 175%;
+ }
+
+ .wrap .icon32 + h2 {
+ margin-top: -2px;
+ }
+
+ .wp-responsive-open #wpbody {
+ left: -190px;
+ }
+
+ /* General Metabox */
+ .postbox {
+ font-size: 14px;
+ }
+
+ .metabox-holder h3 {
+ padding: 12px;
+ }
+
+ .postbox .handlediv {
+ margin-top: 3px;
+ }
+
+ /* Subsubsub Nav */
+ .subsubsub {
+ font-size: 16px;
+ text-align: center;
+ margin-bottom: 15px;
+ }
+
+ /* Theme/Plugin File Editor */
+ #templateside {
+ float: none;
+ width: auto;
+ }
+
+ #templateside li {
+ margin: 0;
+ }
+
+ #templateside li a {
+ display: block;
+ padding: 5px;
+ }
+
+ #templateside .highlight {
+ padding: 5px;
+ margin-right: -5px;
+ margin-top: -5px;
+ }
+
+ #template div {
+ float: none;
+ margin: 0;
+ width: auto;
+ }
+
+ #template textarea {
+ width: 100%;
+ }
+
+ .fileedit-sub .alignright {
+ margin-top: 15px;
+ }
+
+ #wpfooter {
+ display: none;
+ }
+
+ #comments-form .checkforspam {
+ display: none;
+ }
+}
+
+/* Smartphone */
+@media screen and (max-width: 600px) {
+ /* Disable horizontal scroll when responsive menu is open
+ since we push the main content off to the right. */
+ #wpwrap.wp-responsive-open {
+ overflow-x: hidden;
+ }
+
+ html.wp-toolbar {
+ padding-top: 0;
+ }
+
+ #wpbody {
+ padding-top: 46px;
+ }
+
+ /* Keep full-width boxes on Edit Post page from causing horizontal scroll */
+ div#post-body.metabox-holder.columns-1 {
+ overflow-x: hidden;
+ }
+}
diff --git a/sources/wp-admin/css/common.css b/sources/wp-admin/css/common.css
new file mode 100644
index 0000000..fbd77c2
--- /dev/null
+++ b/sources/wp-admin/css/common.css
@@ -0,0 +1,2637 @@
+/* 2 column liquid layout */
+#wpwrap {
+ height: auto;
+ min-height: 100%;
+ width: 100%;
+ position: relative;
+ -webkit-font-smoothing: subpixel-antialiased;
+}
+
+#wpcontent {
+ height: 100%;
+}
+
+#wpcontent,
+#wpfooter {
+ margin-left: 180px;
+}
+
+.folded #wpcontent,
+.folded #wpfooter {
+ margin-left: 56px;
+}
+
+#wpbody-content {
+ padding-bottom: 65px;
+ float: left;
+ width: 100%;
+ overflow: visible !important;
+}
+
+/* inner 2 column liquid layout */
+
+.inner-sidebar {
+ float: right;
+ clear: right;
+ display: none;
+ width: 281px;
+ position: relative;
+}
+
+.columns-2 .inner-sidebar {
+ margin-right: auto;
+ width: 286px;
+ display: block;
+}
+
+.inner-sidebar #side-sortables,
+.columns-2 .inner-sidebar #side-sortables {
+ min-height: 300px;
+ width: 280px;
+ padding: 0;
+}
+
+.has-right-sidebar .inner-sidebar {
+ display: block;
+}
+
+.has-right-sidebar #post-body {
+ float: left;
+ clear: left;
+ width: 100%;
+ margin-right: -2000px;
+}
+
+.has-right-sidebar #post-body-content {
+ margin-right: 300px;
+ float: none;
+ width: auto;
+}
+
+/* 2 columns main area */
+
+#col-container,
+#col-left,
+#col-right {
+ overflow: hidden;
+ padding: 0;
+ margin: 0;
+}
+
+#col-left {
+ width: 35%;
+}
+
+#col-right {
+ float: right;
+ clear: right;
+ width: 65%;
+}
+
+.col-wrap {
+ padding: 0 7px;
+}
+
+/* utility classes */
+.alignleft {
+ float: left;
+}
+
+.alignright {
+ float: right;
+}
+
+.textleft {
+ text-align: left;
+}
+
+.textright {
+ text-align: right;
+}
+
+.clear {
+ clear: both;
+}
+
+/* Hide visually but not from screen readers */
+.screen-reader-text,
+.screen-reader-text span,
+.ui-helper-hidden-accessible {
+ position: absolute;
+ margin: -1px;
+ padding: 0;
+ height: 1px;
+ width: 1px;
+ overflow: hidden;
+ clip: rect(0 0 0 0);
+ border: 0;
+}
+
+.screen-reader-shortcut {
+ position: absolute;
+ top: -1000em;
+}
+
+.screen-reader-shortcut:focus {
+ left: 6px;
+ top: -25px;
+ height: auto;
+ width: auto;
+ display: block;
+ font-size: 14px;
+ font-weight: 600;
+ padding: 15px 23px 14px;
+ background: #f1f1f1;
+ color: #21759b;
+ z-index: 100000;
+ line-height: normal;
+ -webkit-box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
+ box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
+ text-decoration: none;
+ outline: none;
+}
+
+.hidden,
+.js .closed .inside,
+.js .hide-if-js,
+.no-js .hide-if-no-js,
+.js.wp-core-ui .hide-if-js,
+.js .wp-core-ui .hide-if-js,
+.no-js.wp-core-ui .hide-if-no-js,
+.no-js .wp-core-ui .hide-if-no-js {
+ display: none;
+}
+
+/* @todo: Take a second look. Large chunks of shared color, from the colors.css merge */
+.widget-top,
+.menu-item-handle,
+.widget-inside,
+#menu-settings-column .accordion-container,
+#menu-management .menu-edit,
+.manage-menus,
+table.widefat,
+.stuffbox,
+p.popular-tags,
+.widgets-holder-wrap,
+.wp-editor-container,
+.popular-tags,
+.feature-filter,
+.imgedit-group {
+ border: 1px solid #e5e5e5;
+ -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
+ box-shadow: 0 1px 1px rgba(0,0,0,0.04);
+}
+
+table.widefat,
+.wp-editor-container,
+.stuffbox,
+p.popular-tags,
+.widgets-holder-wrap,
+.popular-tags,
+.feature-filter,
+.imgedit-group {
+ background: #fff;
+}
+
+/* general */
+html,
+body {
+ height: 100%;
+ margin: 0;
+ padding: 0;
+}
+
+html {
+ background: #f1f1f1;
+}
+
+body {
+ color: #444;
+ font-family: "Open Sans", sans-serif;
+ font-size: 13px;
+ line-height: 1.4em;
+ min-width: 600px;
+}
+
+body.iframe {
+ min-width: 0;
+ padding-top: 1px;
+}
+
+iframe,
+img {
+ border: 0;
+}
+
+td {
+ font-family: inherit;
+ font-size: inherit;
+ font-weight: inherit;
+ line-height: inherit;
+}
+
+a {
+ color: #0074a2;
+ -webkit-transition-property: border, background, color;
+ transition-property: border, background, color;
+ -webkit-transition-duration: .05s;
+ transition-duration: .05s;
+ -webkit-transition-timing-function: ease-in-out;
+ transition-timing-function: ease-in-out;
+}
+
+a,
+div {
+ outline: 0;
+}
+
+a:hover,
+a:active {
+ color: #2ea2cc;
+}
+
+a:focus {
+ color: #124964;
+}
+
+a:focus,
+a:active {
+ outline: thin dotted;
+}
+
+#adminmenu a:focus,
+#adminmenu a:active,
+.screen-reader-text:focus {
+ outline: none;
+}
+
+blockquote,
+q {
+ quotes: none;
+}
+
+blockquote:before,
+blockquote:after,
+q:before,
+q:after {
+ content: '';
+ content: none;
+}
+
+p {
+ font-size: 13px;
+ line-height: 1.5;
+ margin: 1em 0;
+}
+
+blockquote {
+ margin: 1em;
+}
+
+li,
+dd {
+ margin-bottom: 6px;
+}
+
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
+ display: block;
+ font-weight: 600;
+}
+
+h1 {
+ font-size: 2em;
+ margin: .67em 0;
+}
+
+h2 {
+ color: #222;
+ font-size: 1.5em;
+ margin: .83em 0;
+ font-weight: 400;
+}
+
+h3 {
+ color: #222;
+ font-size: 1.3em;
+ margin: 1em 0;
+}
+
+h4 {
+ font-size: 1em;
+ margin: 1.33em 0;
+}
+
+h5 {
+ font-size: 0.83em;
+ margin: 1.67em 0;
+}
+
+h6 {
+ font-size: 0.67em;
+ margin: 2.33em 0;
+}
+
+ul,
+ol {
+ padding: 0;
+}
+
+ul {
+ list-style: none;
+}
+
+ol {
+ list-style-type: decimal;
+ margin-left: 2em;
+}
+
+ul.ul-disc {
+ list-style: disc outside;
+}
+
+ul.ul-square {
+ list-style: square outside;
+}
+
+ol.ol-decimal {
+ list-style: decimal outside;
+}
+
+ul.ul-disc,
+ul.ul-square,
+ol.ol-decimal {
+ margin-left: 1.8em;
+}
+
+ul.ul-disc > li,
+ul.ul-square > li,
+ol.ol-decimal > li {
+ margin: 0 0 0.5em;
+}
+
+/* @noflip */
+.ltr {
+ direction: ltr;
+}
+
+/* @noflip */
+.code,
+code {
+ font-family: Consolas, Monaco, monospace;
+ direction: ltr;
+}
+
+kbd,
+code {
+ padding: 3px 5px 2px 5px;
+ margin: 0 1px;
+ background: #eaeaea;
+ background: rgba(0,0,0,0.07);
+ font-size: 13px;
+}
+
+.subsubsub {
+ list-style: none;
+ margin: 8px 0 0;
+ padding: 0;
+ font-size: 13px;
+ float: left;
+ color: #666;
+}
+
+.subsubsub a {
+ line-height: 2;
+ padding: .2em;
+ text-decoration: none;
+}
+
+.subsubsub a .count,
+.subsubsub a.current .count {
+ color: #999;
+ font-weight: normal;
+}
+
+.subsubsub a.current {
+ font-weight: 600;
+ border: none;
+}
+
+.subsubsub li {
+ display: inline-block;
+ margin: 0;
+ padding: 0;
+ white-space: nowrap;
+}
+
+/* .widefat - main style for tables */
+.widefat {
+ border-spacing: 0;
+ width: 100%;
+ clear: both;
+ margin: 0;
+}
+
+.widefat * {
+ word-wrap: break-word;
+}
+
+.widefat a {
+ text-decoration: none;
+}
+
+.widefat td,
+.widefat th {
+ padding: 8px 10px;
+}
+
+.widefat thead th {
+ border-bottom: 1px solid #e1e1e1;
+}
+
+.widefat tfoot th {
+ border-top: 1px solid #e1e1e1;
+ border-bottom: none;
+}
+
+.widefat .no-items td {
+ border-bottom-width: 0;
+}
+
+.widefat td {
+ vertical-align: top;
+}
+
+.widefat td,
+.widefat td p,
+.widefat td ol,
+.widefat td ul {
+ font-size: 13px;
+ line-height: 1.5em;
+}
+
+.widefat th {
+ text-align: left;
+ line-height: 1.3em;
+ font-size: 14px;
+}
+
+.widefat th input {
+ margin: 0 0 0 8px;
+ padding: 0;
+ vertical-align: text-top;
+}
+
+.widefat .check-column {
+ width: 2.2em;
+ padding: 6px 0 25px;
+ vertical-align: top;
+}
+
+.widefat th input[type=checkbox] {
+ margin-top: -1px;
+}
+
+.widefat tbody th.check-column {
+ padding: 9px 0 22px;
+}
+
+.widefat.media .check-column {
+ padding-top: 8px;
+}
+
+.widefat thead th.check-column,
+.widefat tbody th.check-column,
+.widefat tfoot th.check-column {
+ padding: 11px 0 0 3px;
+}
+
+.widefat thead th.check-column {
+ padding-top: 10px;
+}
+
+.update-php div.updated,
+.update-php div.error {
+ margin-left: 0;
+}
+
+.no-js .widefat thead .check-column input,
+.no-js .widefat tfoot .check-column input {
+ display: none;
+}
+
+.widefat .num,
+.column-comments,
+.column-links,
+.column-posts {
+ text-align: center;
+}
+
+.widefat th#comments {
+ vertical-align: middle;
+}
+
+.wrap {
+ margin: 10px 20px 0 2px;
+}
+
+div.updated,
+div.error {
+ padding: 0 0.6em;
+ margin: 5px 15px 2px;
+}
+
+div.updated p,
+div.error p {
+ margin: 0.5em 0;
+ padding: 2px;
+}
+
+.wrap div.updated,
+.wrap div.error,
+.media-upload-form div.error {
+ margin: 5px 0 15px;
+}
+
+div.updated {
+ border-left: 4px solid #7ad03a;
+ padding: 1px 12px;
+ background-color: #fff;
+ -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
+ box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
+}
+
+div.error {
+ border-left: 4px solid #dd3d36;
+ background: #fff;
+ -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
+ box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
+ padding: 1px 12px;
+}
+
+.attention {
+ color: #2ea2cc;
+}
+
+.wrap h2,
+.subtitle {
+ font-weight: normal;
+ margin: 0;
+}
+
+.wrap h2 {
+ font-size: 23px;
+ font-weight: 400;
+ padding: 9px 15px 4px 0;
+ line-height: 29px;
+}
+
+.subtitle {
+ color: #777;
+ font-size: 14px;
+ padding-left: 25px;
+}
+
+.wrap .add-new-h2,
+.wrap .add-new-h2:active {
+ margin-left: 4px;
+ padding: 4px 8px;
+ position: relative;
+ top: -3px;
+ text-decoration: none;
+ border: none;
+ -webkit-border-radius: 2px;
+ border-radius: 2px;
+ background: #e0e0e0;
+ text-shadow: none;
+ font-weight: 600;
+ font-size: 13px;
+}
+
+.wrap .add-new-h2:hover {
+ background: #2ea2cc;
+ color: #fff;
+}
+
+.wrap h2.long-header {
+ padding-right: 0;
+}
+
+.wp-dialog {
+ background-color: #fff;
+}
+
+.widgets-chooser ul,
+#widgets-left .widget-in-question .widget-top,
+#available-widgets .widget-top:hover,
+div#widgets-right .widget-top:hover,
+#widgets-left .widget-top:hover {
+ border-color: #999;
+ -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.1);
+ box-shadow: 0 1px 2px rgba(0,0,0,0.1);
+}
+
+.sorthelper {
+ background-color: #ccf3fa;
+}
+
+.ac_match,
+.subsubsub a.current {
+ color: #000;
+}
+
+.alternate,
+.alt {
+ background-color: #f9f9f9;
+}
+
+.bar {
+ background-color: #e8e8e8;
+ border-right-color: #99d;
+}
+
+.media-upload-form label.form-help,
+td.help {
+ color: #9a9a9a;
+}
+
+/* Helper classes for plugins to leverage the active WordPress color scheme */
+
+.highlight {
+ background-color: #e4f2fd;
+ color: #000;
+}
+
+.wp-ui-primary {
+ color: #fff;
+ background-color: #333;
+}
+.wp-ui-text-primary {
+ color: #333;
+}
+
+.wp-ui-highlight {
+ color: white;
+ background-color: #1e8cbe;
+}
+.wp-ui-text-highlight {
+ color: #1e8cbe;
+}
+
+.wp-ui-notification {
+ color: #fff;
+ background-color: #d54e21;
+}
+.wp-ui-text-notification {
+ color: #d54e21;
+}
+
+.wp-ui-text-icon {
+ color: #999;
+}
+
+/*------------------------------------------------------------------------------
+ 1.0 - Text Styles
+------------------------------------------------------------------------------*/
+
+.widget .widget-top,
+.postbox h3,
+.stuffbox h3,
+.control-section .accordion-section-title,
+h3.dashboard-widget-title,
+h3.dashboard-widget-title span,
+h3.dashboard-widget-title small,
+.sidebar-name,
+#nav-menu-header,
+#nav-menu-footer,
+.menu-item-handle,
+.checkbox,
+.side-info,
+#your-profile #rich_editing,
+.widefat thead th,
+.widefat tfoot th {
+ line-height: 1.4em;
+}
+
+.widget .widget-top,
+.menu-item-handle {
+ background: #fafafa;
+ color: #222;
+}
+
+.postbox h3,
+#namediv h3,
+#submitdiv h3 {
+ border-bottom: 1px solid #eee;
+}
+
+.quicktags,
+.search {
+ background-color: #ccc;
+ color: #000;
+ font-size: 12px;
+}
+
+.icon32 {
+ display: none;
+}
+
+/* @todo can we combine these into a class or use an existing dashicon one? */
+#welcome-panel.welcome-panel .welcome-panel-close::before,
+.tagchecklist span a:before,
+#bulk-titles div a:before {
+ background: none;
+ color: #bbb;
+ content: '\f153';
+ display: block !important;
+ font: normal 16px/1 'dashicons';
+ speak: none;
+ height: 20px;
+ margin: 2px 0;
+ text-align: center;
+ width: 20px;
+ -webkit-font-smoothing: antialiased !important;
+}
+
+#welcome-panel.welcome-panel .welcome-panel-close:hover:before,
+.tagchecklist span a:hover:before,
+#bulk-titles div a:hover:before {
+ color: #c00;
+}
+
+.key-labels label {
+ line-height: 24px;
+}
+
+strong, b {
+ font-weight: 600;
+}
+
+.pre {
+ /* https://developer.mozilla.org/en-US/docs/CSS/white-space */
+ white-space: pre-wrap; /* css-3 */
+ word-wrap: break-word; /* IE 5.5 - 7 */
+}
+
+.howto {
+ color: #666;
+ font-style: italic;
+ display: block;
+}
+
+p.install-help {
+ margin: 8px 0;
+ font-style: italic;
+}
+
+.no-break {
+ white-space: nowrap;
+}
+
+hr {
+ border: 0;
+ border-top: 1px solid #ddd;
+ border-bottom: 1px solid #fafafa;
+}
+
+.row-actions span.delete a,
+.row-actions span.trash a,
+.row-actions span.spam a,
+.plugins a.delete,
+#all-plugins-table .plugins a.delete,
+#search-plugins-table .plugins a.delete,
+.submitbox .submitdelete,
+#media-items a.delete,
+#media-items a.delete-permanently,
+#nav-menu-footer .menu-delete {
+ color: #a00;
+}
+
+abbr.required,
+.file-error,
+.widget-control-remove:hover,
+.row-actions .delete a:hover,
+.row-actions .trash a:hover,
+.row-actions .spam a:hover,
+.plugins a.delete:hover,
+#all-plugins-table .plugins a.delete:hover,
+#search-plugins-table .plugins a.delete:hover,
+.submitbox .submitdelete:hover,
+#media-items a.delete:hover,
+#media-items a.delete-permanently:hover,
+#nav-menu-footer .menu-delete:hover {
+ color: #f00;
+ text-decoration: none;
+ border: none;
+}
+
+/*------------------------------------------------------------------------------
+ 3.0 - Actions
+------------------------------------------------------------------------------*/
+
+#major-publishing-actions {
+ padding: 10px;
+ clear: both;
+ border-top: 1px solid #ddd;
+ background: #f5f5f5;
+}
+
+#delete-action {
+ line-height: 28px;
+ vertical-align: middle;
+ text-align: left;
+ float: left;
+}
+
+#publishing-action {
+ text-align: right;
+ float: right;
+ line-height: 23px;
+}
+
+#publishing-action .spinner {
+ float: left;
+}
+
+#misc-publishing-actions {
+ padding: 6px 0 0;
+}
+
+.misc-pub-section {
+ padding: 6px 10px 8px;
+}
+
+#minor-publishing-actions {
+ padding: 10px 10px 0 10px;
+ text-align: right;
+}
+
+#save-post {
+ float: left;
+}
+
+.preview {
+ float: right;
+}
+
+#sticky-span {
+ margin-left: 18px;
+}
+
+.side-info {
+ margin: 0;
+ padding: 4px;
+ font-size: 11px;
+}
+
+.side-info h5 {
+ padding-bottom: 7px;
+ font-size: 14px;
+ margin: 12px 2px 5px;
+ border-bottom: 1px solid #dadada;
+}
+
+.side-info ul {
+ margin: 0;
+ padding-left: 18px;
+ list-style: square;
+ color: #666;
+}
+
+.approve,
+.unapproved .unapprove {
+ display: none;
+}
+
+.unapproved .approve,
+.spam .approve,
+.trash .approve {
+ display: inline;
+}
+
+td.action-links,
+th.action-links {
+ text-align: right;
+}
+
+
+/*------------------------------------------------------------------------------
+ 4.0 - Notifications
+------------------------------------------------------------------------------*/
+
+#update-nag,
+.update-nag {
+ display: inline-block;
+ line-height: 19px;
+ padding: 11px 15px;
+ font-size: 14px;
+ text-align: left;
+ margin: 25px 20px 0 2px;
+ background-color: #fff;
+ border-left: 4px solid #ffba00;
+ -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
+ box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
+}
+
+.update-message {
+ color: #000;
+}
+
+ul#dismissed-updates {
+ display: none;
+}
+
+form.upgrade {
+ margin-top: 8px;
+}
+
+form.upgrade .hint {
+ font-style: italic;
+ font-size: 85%;
+ margin: -0.5em 0 2em 0;
+}
+
+.update-php .spinner {
+ float: none;
+ margin: -4px 0;
+}
+
+#ajax-loading,
+.ajax-loading,
+.ajax-feedback,
+.imgedit-wait-spin,
+.list-ajax-loading { /* deprecated */
+ visibility: hidden;
+}
+
+#ajax-response.alignleft {
+ margin-left: 2em;
+}
+
+/* @todo: this does not need its own section anymore */
+/*------------------------------------------------------------------------------
+ 6.0 - Admin Header
+------------------------------------------------------------------------------*/
+#adminmenu a,
+#sidemenu a,
+#taglist a,
+#catlist a {
+ text-decoration: none;
+}
+
+/*------------------------------------------------------------------------------
+ 6.1 - Screen Options Tabs
+------------------------------------------------------------------------------*/
+
+#screen-options-wrap,
+#contextual-help-wrap {
+ margin: 0;
+ padding: 8px 20px 12px;
+ position: relative;
+}
+
+#contextual-help-wrap {
+ overflow: auto;
+ margin-left: 0 !important;
+}
+
+#screen-meta .screen-reader-text {
+ visibility: hidden;
+}
+
+#screen-meta-links {
+ margin: 0 20px 0 0;
+}
+
+#screen-meta-links a {
+ padding: 3px 6px 3px 16px;
+}
+
+#screen-meta-links a:focus {
+ outline: none;
+}
+
+/* screen options and help tabs revert */
+#screen-meta {
+ display: none;
+ margin: 0 20px -1px 0px;
+ position: relative;
+ background-color: #fff;
+ border: 1px solid #ddd;
+ border-top: none;
+ -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.025);
+ box-shadow: 0 1px 0 rgba(0,0,0,.025);
+}
+
+#screen-options-link-wrap,
+#contextual-help-link-wrap {
+ float: right;
+ height: 28px;
+ margin: 0 0 0 6px;
+ border: 1px solid #ddd;
+ border-top: none;
+ background: #fff;
+ -webkit-box-shadow: 0 1px 1px -1px rgba(0,0,0,0.1);
+ box-shadow: 0 1px 1px -1px rgba(0,0,0,0.1);
+}
+
+#screen-meta-links .screen-meta-toggle {
+ position: relative;
+ top: 0;
+}
+
+#screen-meta-links a {
+ color: #777;
+}
+
+#screen-meta-links a:hover,
+#screen-meta-links a:active,
+#screen-meta-links a:focus {
+ color: #333;
+}
+
+#screen-meta-links a:focus {
+ border-color: #aaa;
+ -webkit-box-shadow: 0 2px 3px rgba(0,0,0,0.15);
+ box-shadow: 0 2px 3px rgba(0,0,0,0.15);
+}
+
+#screen-meta-links a.show-settings {
+ display: block;
+ font-size: 13px;
+ height: 22px;
+ line-height: 22px;
+ text-decoration: none;
+ z-index: 1;
+}
+
+#screen-meta-links a:after {
+ right: 0;
+ content: '\f140';
+ font: normal 20px/1 'dashicons';
+ speak: none;
+ display: inline-block;
+ padding: 0 5px 0 0;
+ bottom: 2px;
+ position: relative;
+ vertical-align: bottom;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ text-decoration: none !important;
+ color: #bbb;
+}
+
+#screen-meta-links a.screen-meta-active:after {
+ content: '\f142';
+}
+
+#screen-meta-links a.show-settings:hover {
+ text-decoration: none;
+}
+/* end screen options and help tabs */
+
+.toggle-arrow {
+ background-repeat: no-repeat;
+ background-position: top left;
+ background-color: transparent;
+ height: 22px;
+ line-height: 22px;
+ display: block;
+}
+
+.toggle-arrow-active {
+ background-position: bottom left;
+}
+
+#screen-options-wrap h5,
+#contextual-help-wrap h5 {
+ margin: 8px 0;
+ font-size: 13px;
+}
+
+.metabox-prefs label {
+ display: inline-block;
+ padding-right: 15px;
+ line-height: 30px;
+}
+
+.metabox-prefs label input[type=checkbox] {
+ margin-top: -4px;
+ margin-right: 6px;
+}
+
+.metabox-prefs label input {
+ margin: 0 5px 0 2px;
+}
+
+.metabox-prefs .columns-prefs label input {
+ margin: 0 2px;
+}
+
+.metabox-prefs label a {
+ display: none;
+}
+
+/*------------------------------------------------------------------------------
+ 6.2 - Help Menu
+------------------------------------------------------------------------------*/
+
+#contextual-help-wrap {
+ padding: 0;
+}
+
+#contextual-help-columns {
+ position: relative;
+}
+
+#contextual-help-back {
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ left: 150px;
+ right: 170px;
+ border: 1px solid #e1e1e1;
+ border-top: none;
+ border-bottom: none;
+ background: #f6fbfd;
+}
+
+#contextual-help-wrap.no-sidebar #contextual-help-back {
+ right: 0;
+ border-right-width: 0;
+ -webkit-border-bottom-right-radius: 2px;
+ border-bottom-right-radius: 2px;
+}
+
+.contextual-help-tabs {
+ float: left;
+ width: 150px;
+ margin: 0;
+}
+
+.contextual-help-tabs ul {
+ margin: 1em 0;
+}
+
+.contextual-help-tabs li {
+ margin-bottom: 0;
+ list-style-type: none;
+ border-style: solid;
+ border-width: 0 0 0 2px;
+ border-color: transparent;
+}
+
+.contextual-help-tabs a {
+ display: block;
+ padding: 5px 5px 5px 12px;
+ line-height: 18px;
+ text-decoration: none;
+ border: 1px solid transparent;
+ border-right: none;
+ border-left: none;
+}
+
+.contextual-help-tabs a:hover {
+ color: #333;
+}
+
+.contextual-help-tabs .active {
+ padding: 0;
+ margin: 0 -1px 0 0;
+ border-left: 2px solid #2ea2cc;
+ background: #f6fbfd;
+ -webkit-box-shadow: 0 2px 0 rgba(0,0,0,0.02), 0 1px 0 rgba(0,0,0,0.02);
+ box-shadow: 0 2px 0 rgba(0,0,0,0.02), 0 1px 0 rgba(0,0,0,0.02);
+}
+
+.contextual-help-tabs .active a {
+ border-color: #e1e1e1;
+ color: #333;
+}
+
+.contextual-help-tabs-wrap {
+ padding: 0 20px;
+ overflow: auto;
+}
+
+.help-tab-content {
+ display: none;
+ margin: 0 22px 12px 0;
+ line-height: 1.6em;
+}
+
+.help-tab-content.active {
+ display: block;
+}
+
+.help-tab-content ul li {
+ list-style-type: disc;
+ margin-left: 18px;
+}
+
+.contextual-help-sidebar {
+ width: 150px;
+ float: right;
+ padding: 0 8px 0 12px;
+ overflow: auto;
+}
+
+/*------------------------------------------------------------------------------
+ 8.0 - Layout Blocks
+------------------------------------------------------------------------------*/
+
+html.wp-toolbar {
+ padding-top: 32px;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}
+
+.narrow {
+ width: 70%;
+ margin-bottom: 40px;
+}
+
+.narrow p {
+ line-height: 150%;
+}
+
+.widefat th,
+.widefat td {
+ overflow: hidden;
+ color: #555;
+}
+
+.widefat th {
+ font-weight: normal;
+}
+
+.widefat thead tr th,
+.widefat tfoot tr th {
+ color: #333;
+}
+
+.widefat td p {
+ margin: 2px 0 0.8em;
+}
+
+.widefat p,
+.widefat ol,
+.widefat ul {
+ color: #333;
+}
+
+.widefat .column-comment p {
+ margin: 0.6em 0;
+}
+
+/* Screens with postboxes */
+.postbox-container {
+ float: left;
+}
+
+.postbox-container .meta-box-sortables {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}
+
+#wpbody-content .metabox-holder {
+ padding-top: 10px;
+}
+
+.metabox-holder .postbox-container .empty-container {
+ border: 3px dashed #bbb;
+ height: 250px;
+}
+
+.metabox-holder.columns-1 .postbox-container .empty-container,
+.columns-2 #postbox-container-3 .empty-container,
+.columns-2 #postbox-container-4 .empty-container,
+.columns-3 #postbox-container-4 .empty-container {
+ border: 0 none;
+ height: 0;
+ min-height: 0;
+}
+
+#post-body-content {
+ width: 100%;
+ min-width: 463px;
+ float: left;
+}
+
+#post-body.columns-2 #postbox-container-1 {
+ float: right;
+ margin-right: -300px;
+ width: 280px;
+}
+
+#post-body.columns-2 #side-sortables {
+ min-height: 250px;
+}
+
+/* one column on the dash */
+@media only screen and (max-width: 799px) {
+ #wpbody-content .metabox-holder .postbox-container .empty-container {
+ border: 0 none;
+ height: 0;
+ min-height: 0;
+ }
+}
+
+.js .postbox .hndle {
+ cursor: move;
+}
+
+.hndle a {
+ font-size: 11px;
+ font-weight: normal;
+}
+
+.postbox .handlediv {
+ float: right;
+ width: 27px;
+ height: 30px;
+}
+
+.js .postbox .handlediv {
+ cursor: pointer;
+}
+
+.sortable-placeholder {
+ border: 1px dashed #bbb;
+ margin-bottom: 20px;
+}
+
+.postbox,
+.stuffbox {
+ margin-bottom: 20px;
+ padding: 0;
+ line-height: 1;
+}
+
+.postbox h3,
+.stuffbox h3 {
+ margin-top: 1px;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
+
+.js .widget .widget-top,
+.js .postbox h3 {
+ cursor: move;
+}
+
+.postbox .inside,
+.stuffbox .inside {
+ padding: 0 12px 12px;
+ line-height: 1.4em;
+ font-size: 13px;
+}
+
+.postbox .inside {
+ margin: 11px 0;
+ position: relative;
+}
+
+.postbox .inside > p:last-child,
+.rss-widget ul li:last-child {
+ margin-bottom: 1px !important;
+}
+
+.postbox.closed h3 {
+ border: none;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+.postbox table.form-table {
+ margin-bottom: 0;
+}
+
+.postbox table.widefat {
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+.temp-border {
+ border: 1px dotted #ccc;
+}
+
+.columns-prefs label {
+ padding: 0 5px;
+}
+
+/* @todo: what is this doing here */
+#dashboard_right_now .versions .b,
+#post-status-display,
+#post-visibility-display,
+#adminmenu .wp-submenu li.current,
+#adminmenu .wp-submenu li.current a,
+#adminmenu .wp-submenu li.current a:hover,
+.media-item .percent,
+.plugins .name,
+#pass-strength-result.strong,
+#pass-strength-result.short,
+#ed_reply_toolbar #ed_reply_strong,
+.item-controls .item-order a,
+.feature-filter .feature-name {
+ font-weight: 600;
+}
+
+/*------------------------------------------------------------------------------
+ 21.0 - Admin Footer
+------------------------------------------------------------------------------*/
+
+#wpfooter {
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ padding: 10px 0;
+ margin-right: 20px;
+ color: #777;
+}
+
+#wpfooter p {
+ font-size: 13px;
+ margin: 0;
+ line-height: 20px;
+}
+
+#footer-thankyou {
+ font-style: italic;
+}
+
+#wpfooter a {
+ text-decoration: none;
+}
+
+#wpfooter a:hover {
+ text-decoration: underline;
+}
+
+/*------------------------------------------------------------------------------
+ 25.0 - Tabbed Admin Screen Interface (Experimental)
+------------------------------------------------------------------------------*/
+
+.nav-tab {
+ border: 1px solid #ccc;
+ border-bottom: none;
+ background: #e4e4e4;
+ color: #555;
+ font-size: 12px;
+ line-height: 16px;
+ display: inline-block;
+ padding: 4px 14px 6px;
+ text-decoration: none;
+ margin: -4px 4px -1px 0;
+}
+
+.nav-tab:hover {
+ background-color: #fff;
+ color: #464646;
+}
+
+.nav-tab-active {
+ color: #464646;
+}
+
+.nav-tab-active,
+.nav-tab-active:hover {
+ border-bottom: 1px solid #f1f1f1;
+ background: #f1f1f1;
+ color: #000;
+}
+
+h2.nav-tab-wrapper,
+h3.nav-tab-wrapper {
+ border-bottom: 1px solid #ccc;
+ padding-bottom: 0;
+ padding-left: 10px;
+}
+
+h2 .nav-tab {
+ padding: 6px 10px;
+ font-weight: bold;
+ font-size: 15px;
+ line-height: 24px;
+}
+
+
+/*------------------------------------------------------------------------------
+ 26.0 - Misc
+------------------------------------------------------------------------------*/
+
+.spinner {
+ background: url(../images/spinner.gif) no-repeat;
+ -webkit-background-size: 20px 20px;
+ background-size: 20px 20px;
+ display: none;
+ float: right;
+ opacity: 0.7;
+ filter: alpha(opacity=70);
+ width: 20px;
+ height: 20px;
+ margin: 2px 5px 0;
+}
+
+#template div {
+ margin-right: 190px;
+}
+
+.metabox-holder h3 {
+ font-size: 14px;
+ padding: 8px 12px;
+ margin: 0;
+ line-height: 1.4;
+}
+
+#templateside ul li a {
+ text-decoration: none;
+}
+
+#sidemenu {
+ margin: -30px 15px 0 315px;
+ list-style: none;
+ position: relative;
+ float: right;
+ padding-left: 10px;
+ font-size: 12px;
+}
+
+#sidemenu a {
+ padding: 0 7px;
+ display: block;
+ float: left;
+ line-height: 28px;
+ border-top: 1px solid #f9f9f9;
+ border-bottom: 1px solid #dfdfdf;
+ background-color: #f9f9f9;
+ -webkit-transition: none;
+ transition: none;
+}
+
+#sidemenu li {
+ display: inline;
+ line-height: 200%;
+ list-style: none;
+ text-align: center;
+ white-space: nowrap;
+ margin: 0;
+ padding: 0;
+}
+
+/* @todo: remove border radius */
+#sidemenu a.current {
+ font-weight: normal;
+ padding-left: 6px;
+ padding-right: 6px;
+ -webkit-border-top-left-radius: 3px;
+ border-top-left-radius: 3px;
+ -webkit-border-top-right-radius: 3px;
+ border-top-right-radius: 3px;
+ border: 1px solid #dfdfdf;
+ border-bottom-color: #f1f1f1;
+ background-color: #f1f1f1;
+ color: #000;
+}
+
+#sidemenu li a .count-0 {
+ display: none;
+}
+
+.plugin-install #description,
+.plugin-install-network #description {
+ width: 60%;
+}
+
+table .vers,
+table .column-visible,
+table .column-rating {
+ text-align: left;
+}
+
+.error-message {
+ color: red;
+ font-weight: 600;
+}
+
+/* Scrollbar fix for bulk upgrade iframe */
+body.iframe {
+ height: 98%;
+}
+
+/* Upgrader styles, Specific to Language Packs */
+.lp-show-latest p {
+ display: none;
+}
+.lp-show-latest p:last-child,
+.lp-show-latest .lp-error p {
+ display: block;
+}
+
+/* - Only used once or twice in all of WP - deprecate for global style
+------------------------------------------------------------------------------*/
+td.media-icon {
+ text-align: center;
+ width: 80px;
+ padding-top: 8px;
+ padding-bottom: 8px;
+}
+
+td.media-icon img {
+ max-width: 80px;
+ max-height: 60px;
+}
+
+#howto {
+ font-size: 11px;
+ margin: 0 5px;
+ display: block;
+}
+
+.importers td {
+ padding-right: 14px;
+}
+
+.importers {
+ font-size: 16px;
+ width: auto;
+}
+
+#post-body #post-body-content #namediv h3 {
+ margin-top: 0;
+}
+
+#namediv h3 label {
+ vertical-align: baseline;
+}
+
+#namediv table {
+ width: 100%;
+}
+
+#namediv td.first {
+ width: 10px;
+ white-space: nowrap;
+}
+
+#namediv input {
+ width: 98%;
+}
+
+#namediv p {
+ margin: 10px 0;
+}
+
+#submitdiv h3 {
+ margin-bottom: 0 !important;
+}
+
+/* - Used - but could/should be deprecated with a CSS reset
+------------------------------------------------------------------------------*/
+.zerosize {
+ height: 0;
+ width: 0;
+ margin: 0;
+ border: 0;
+ padding: 0;
+ overflow: hidden;
+ position: absolute;
+}
+
+br.clear {
+ height: 2px;
+ line-height: 2px;
+}
+
+.checkbox {
+ border: none;
+ margin: 0;
+ padding: 0;
+}
+
+fieldset {
+ border: 0;
+ padding: 0;
+ margin: 0;
+}
+
+.post-categories {
+ display: inline;
+ margin: 0;
+ padding: 0;
+}
+
+.post-categories li {
+ display: inline;
+}
+
+/* Star Ratings - Back-compat for pre-3.8 */
+div.star-holder {
+ position: relative;
+ height: 17px;
+ width: 100px;
+ background: url(../images/stars.png?ver=20121108) repeat-x bottom left;
+}
+
+div.star-holder .star-rating {
+ background: url(../images/stars.png?ver=20121108) repeat-x top left;
+ height: 17px;
+ float: left;
+}
+
+/* Star Ratings */
+.star-rating {
+ white-space: nowrap;
+}
+.star-rating .star {
+ display: inline-block;
+ width: 20px;
+ height: 20px;
+ -webkit-font-smoothing: antialiased;
+ font-size: 20px;
+ line-height: 1;
+ font-family: 'dashicons';
+ text-decoration: inherit;
+ font-weight: normal;
+ font-style: normal;
+ vertical-align: top;
+ -webkit-transition: color .1s ease-in 0;
+ transition: color .1s ease-in 0;
+ text-align: center;
+ color: #0074a2;
+}
+
+.star-rating .star-full:before {
+ content:'\f155';
+}
+
+.star-rating .star-half:before {
+ content:'\f459';
+}
+
+.rtl .star-rating .star-half {
+ -webkit-transform: rotateY(180deg);
+ -ms-transform: rotateY(180deg);
+ transform: rotateY(180deg);
+}
+
+.star-rating .star-empty:before {
+ content:'\f154';
+}
+
+div.action-links {
+ font-weight: normal;
+ margin: 6px 0 0;
+}
+
+/* Plugin install thickbox */
+#plugin-information {
+ background: #fcfcfc;
+ position: fixed;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ height: auto;
+ padding: 0;
+}
+
+#plugin-information-title {
+ padding: 0 76px 0 20px;
+ font-size: 22px;
+ font-weight: 600;
+ line-height: 56px;
+ top: 0;
+ right: 0;
+ left: 0;
+ height: 56px;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+}
+
+#plugin-information-tabs {
+ padding: 0 16px;
+ position: absolute;
+ top: 56px;
+ right: 0;
+ left: 0;
+ height: 36px;
+ z-index: 1;
+}
+
+#plugin-information-tabs a {
+ position: relative;
+ float: left;
+ padding: 8px 10px 9px;
+ margin: 0;
+ height: 18px;
+ line-height: 18px;
+ font-size: 14px;
+ text-decoration: none;
+ -webkit-transition: none;
+ transition: none;
+}
+
+#plugin-information-tabs a.current {
+ margin: -1px -1px 0;
+ background: #fff;
+ border: 1px solid #ddd;
+ border-bottom: none;
+ color: #333;
+}
+
+#plugin-information-tabs a:active,
+#plugin-information-tabs a:focus {
+ outline: none;
+}
+
+#plugin-information-content {
+ background: #fff;
+ border-top: 1px solid #ddd;
+ border-bottom: 1px solid #ddd;
+ position: absolute;
+ top: 90px;
+ right: 0;
+ bottom: 58px;
+ left: 0;
+}
+
+#section-holder {
+ margin: 0;
+ padding: 10px 26px;
+ position: absolute;
+ top: 0;
+ right: 250px;
+ bottom: 0;
+ left: 0;
+ overflow: auto;
+}
+
+#section-holder .updated {
+ margin: 16px 0;
+}
+
+#plugin-information .fyi {
+ background: #f3f3f3;
+ border-left: 1px solid #ddd;
+ color: #666;
+ padding: 16px;
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ width: 217px;
+ overflow: auto;
+}
+
+#plugin-information .fyi strong {
+ color: #464646;
+}
+
+#plugin-information .fyi h3 {
+ font-weight: bold;
+ text-transform: uppercase;
+ font-size: 12px;
+ color: #666;
+ margin: 24px 0 8px;
+}
+
+#plugin-information .fyi h2 {
+ font-size: 0.9em;
+ margin-bottom: 0;
+ margin-right: 0;
+}
+
+#plugin-information .fyi ul {
+ padding: 0;
+ margin: 0;
+ list-style: none;
+}
+
+#plugin-information .fyi li {
+ margin: 0 0 10px;
+}
+
+#plugin-information-footer {
+ padding: 15px 16px;
+ position: absolute;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ height: 28px;
+}
+
+#plugin-information .section ul,
+#plugin-information .section ol {
+ list-style-type: disc;
+ margin-left: 24px;
+}
+
+#plugin-information .section,
+#plugin-information .section p {
+ font-size: 14px;
+ line-height: 1.7;
+}
+
+#plugin-information #section-screenshots ol {
+ list-style: none;
+ margin: 0;
+}
+
+#plugin-information #section-screenshots li img {
+ vertical-align: text-top;
+ margin-top: 16px;
+ max-width: 100%;
+ width: auto;
+ height: auto;
+ -webkit-box-shadow: 0 1px 2px rgba( 0, 0, 0, 0.3 );
+ box-shadow: 0 1px 2px rgba( 0, 0, 0, 0.3 );
+}
+
+#plugin-information #section-screenshots li p {
+ font-style: italic;
+ padding-left: 20px;
+}
+
+#plugin-information pre {
+ padding: 7px;
+ overflow: auto;
+ border: 1px solid #ccc;
+}
+
+.plugin-version-author-uri {
+ font-size: 13px;
+}
+
+@media screen and ( max-width: 782px ) {
+ #plugin-information-content {
+ overflow: auto;
+ bottom: 58px;
+ }
+
+ #plugin-information .fyi {
+ border: 1px solid #ddd;
+ position: static;
+ width: auto;
+ margin: 26px 26px 16px;
+ }
+
+ #section-holder {
+ position: static;
+ }
+
+ #plugin-information .fyi h3,
+ #plugin-information .fyi small {
+ display: none;
+ }
+
+ #plugin-information-footer {
+ padding: 12px 16px 0;
+ height: 46px;
+ }
+}
+
+/* Thickbox for Plugin Install screen */
+body.plugin-install-php #TB_window,
+body.import-php #TB_window,
+body.plugins-php #TB_window,
+body.update-core-php #TB_window,
+body.index-php #TB_window {
+ background: #fcfcfc url( ../images/spinner.gif ) no-repeat center;
+}
+
+@media print,
+ (-o-min-device-pixel-ratio: 5/4),
+ (-webkit-min-device-pixel-ratio: 1.25),
+ (min-resolution: 120dpi) {
+
+ body.plugin-install-php #TB_window,
+ body.import-php #TB_window,
+ body.plugins-php #TB_window,
+ body.update-core-php #TB_window,
+ body.index-php #TB_window {
+ background: #fcfcfc url( ../images/spinner-2x.gif ) no-repeat center;
+ -webkit-background-size: 20px 20px;
+ background-size: 20px 20px;
+ }
+}
+
+body.plugin-install-php #TB_title,
+body.import-php #TB_title,
+body.plugins-php #TB_title,
+body.update-core-php #TB_title,
+body.index-php #TB_title {
+ float: left;
+ height: 1px;
+}
+
+body.plugin-install-php #TB_ajaxWindowTitle,
+body.import-php #TB_ajaxWindowTitle,
+body.plugins-php #TB_ajaxWindowTitle,
+body.update-core-php #TB_ajaxWindowTitle,
+body.index-php #TB_ajaxWindowTitle {
+ display: none;
+}
+
+body.plugin-install-php .tb-close-icon,
+body.import-php .tb-close-icon,
+body.plugins-php .tb-close-icon,
+body.update-core-php .tb-close-icon,
+body.index-php .tb-close-icon {
+ line-height: 48px;
+ width: 48px;
+ height: 48px;
+}
+
+body.plugin-install-php .tb-close-icon:before,
+body.import-php .tb-close-icon:before,
+body.plugins-php .tb-close-icon:before,
+body.update-core-php .tb-close-icon:before,
+body.index-php .tb-close-icon:before {
+ line-height: 48px;
+}
+
+/* @todo: move this. */
+img {
+ border: none;
+}
+
+/* Header */
+/* @todo: are these also specific to Press This? */
+#wphead {
+ border-bottom: 1px solid #dfdfdf;
+}
+
+#wphead h1 a {
+ color: #464646;
+}
+
+/* @todo: these seem misplaced */
+.js .meta-box-sortables .postbox:hover .handlediv {
+ margin-right: 0 !important;
+}
+
+/* Metabox collapse arrow indicators */
+.js .sidebar-name .sidebar-name-arrow:before,
+.js .meta-box-sortables .postbox .handlediv:before {
+ right: 12px;
+ font: normal 20px/1 'dashicons';
+ speak: none;
+ display: inline-block;
+ padding: 8px 10px;
+ top: 0;
+ position: relative;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ text-decoration: none !important;
+}
+
+.js #widgets-left .sidebar-name .sidebar-name-arrow {
+ display: none;
+}
+
+.js #widgets-left .widgets-holder-wrap.closed .sidebar-name .sidebar-name-arrow,
+.js #widgets-left .sidebar-name:hover .sidebar-name-arrow {
+ display: block;
+}
+
+/* Show the arrow only on hover */
+.js .sidebar-name .sidebar-name-arrow:before,
+.js .meta-box-sortables .postbox .handlediv:before {
+ content: '\f142';
+}
+
+.js .widgets-holder-wrap.closed .sidebar-name-arrow:before,
+.js .meta-box-sortables .postbox.closed .handlediv:before {
+ content: '\f140';
+}
+
+.error a {
+ text-decoration: underline;
+}
+
+.updated a {
+ text-decoration: none;
+ padding-bottom: 2px;
+}
+
+/* @todo: appears to be Press This only and overridden */
+#photo-add-url-div input[type="text"] {
+ width: 300px;
+}
+
+/* Theme/Plugin Editor */
+.alignleft h3 {
+ margin: 0;
+}
+
+#template textarea {
+ font-family: Consolas, Monaco, monospace;
+ font-size: 13px;
+ width: 97%;
+ background: #f9f9f9;
+ outline: none;
+}
+
+/* @noflip */
+#template textarea,
+#docs-list {
+ direction: ltr;
+}
+
+#template p {
+ width: 97%;
+}
+
+#templateside {
+ float: right;
+ width: 190px;
+ word-wrap: break-word;
+}
+
+#templateside h3,
+#postcustomstuff p.submit {
+ margin: 0;
+}
+
+#templateside h4 {
+ margin: 1em 0 0;
+}
+
+#templateside ol,
+#templateside ul {
+ margin: .5em 0;
+ padding: 0;
+}
+
+#templateside li {
+ margin: 4px 0;
+}
+
+#templateside a,
+.theme-editor-php .highlight {
+ display: block;
+ padding: 3px 3px 3px 12px;
+ text-decoration: none;
+}
+
+.theme-editor-php .highlight {
+ margin: -3px 3px -3px -12px;
+}
+
+#templateside .highlight {
+ border: none;
+ font-weight: bold;
+}
+
+.nonessential {
+ color: #666;
+ font-size: 11px;
+ font-style: italic;
+ padding-left: 12px;
+}
+
+#documentation {
+ margin-top: 10px;
+}
+
+#documentation label {
+ line-height: 22px;
+ vertical-align: baseline;
+ font-weight: 600;
+}
+
+.fileedit-sub {
+ padding: 10px 0 8px;
+ line-height: 180%;
+}
+
+/* @todo: can we use a common class for these? */
+.nav-menus-php .item-edit:before,
+.widget-top a.widget-action:after,
+.control-section .accordion-section-title:after,
+.accordion-section-title:after {
+ right: 0;
+ content: '\f140';
+ border: none;
+ background: none;
+ font: normal 20px/1 'dashicons';
+ speak: none;
+ display: block;
+ padding: 0;
+ text-indent: 0;
+ text-align: center;
+ position: relative;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ text-decoration: none !important;
+}
+
+.widget-action,
+.handlediv,
+.item-edit,
+.sidebar-name-arrow,
+.accordion-section-title:after {
+ color: #aaa;
+}
+
+.widget-action:hover,
+.handlediv:hover,
+.item-edit:hover,
+.sidebar-name:hover .sidebar-name-arrow,
+.accordion-section-title:hover:after {
+ color: #777;
+}
+
+.widget-top a.widget-action:after {
+ padding: 12px 12px 0;
+}
+
+.nav-menus-php .item-edit:before {
+ line-height: 2.1;
+}
+
+.control-section .accordion-section-title:after,
+.accordion-section-title:after {
+ float: right;
+ right: 20px;
+ top: -2px;
+}
+
+.control-section.open .accordion-section-title:after,
+#customize-info.open .accordion-section-title:after,
+.nav-menus-php .menu-item-edit-active .item-edit:before {
+ content: '\f142';
+}
+
+/* Enable draggable on IE10 touch events until it's rolled into jQuery UI core */
+.ui-sortable,
+.ui-draggable {
+ -ms-touch-action: none;
+ touch-action: none;
+}
+
+.meta-box-sortables.ui-sortable,
+.widgets-holder-wrap .ui-draggable,
+.widgets-holder-wrap .ui-sortable,
+.menu.ui-sortable {
+ -ms-touch-action: auto;
+ touch-action: auto;
+}
+
+.meta-box-sortables.ui-sortable .hndle,
+.menu.ui-sortable .menu-item-handle {
+ -ms-touch-action: none;
+ touch-action: none;
+}
+
+/* Accordion */
+
+.accordion-section {
+ border-bottom: 1px solid #dfdfdf;
+ margin: 0;
+}
+
+.accordion-section.open .accordion-section-content,
+.no-js .accordion-section .accordion-section-content {
+ display: block;
+}
+
+.accordion-section.open:hover {
+ border-bottom-color: #dfdfdf;
+}
+
+.accordion-section-content {
+ display: none;
+ padding: 10px 20px 15px;
+ overflow: hidden;
+ background: #fff;
+}
+
+.accordion-section-title {
+ margin: 0;
+ padding: 12px 15px 15px;
+ position: relative;
+ border-left: 1px solid #dfdfdf;
+ border-right: 1px solid #dfdfdf;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
+
+.js .accordion-section-title {
+ cursor: pointer;
+}
+
+.js .accordion-section-title:after {
+ position: absolute;
+ top: 12px;
+ right: 10px;
+ z-index: 1;
+}
+
+.accordion-section-title:focus {
+ outline: none;
+}
+
+.accordion-section-title:hover:after,
+.accordion-section-title:focus:after {
+ border-color: #aaa transparent;
+}
+
+.cannot-expand .accordion-section-title {
+ cursor: auto;
+}
+
+.cannot-expand .accordion-section-title:after {
+ display: none;
+}
+
+.control-section .accordion-section-title {
+ border-left: none;
+ border-right: none;
+ padding: 10px 10px 11px 14px;
+ line-height: 21px;
+ background: #fff;
+}
+
+.control-section .accordion-section-title:after {
+ top: 11px;
+}
+
+.js .control-section:hover .accordion-section-title,
+.js .control-section .accordion-section-title:hover,
+.js .control-section.open .accordion-section-title,
+.js .control-section .accordion-section-title:focus {
+ color: #222;
+ background: #f5f5f5;
+}
+
+.control-section.open .accordion-section-title {
+ /* When expanded */
+ border-bottom: 1px solid #dfdfdf;
+}
+
+/* =Media Queries
+-------------------------------------------------------------- */
+
+/* @todo: de-duplication */
+@media only screen and (min-width: 769px) {
+ /* categories */
+ #col-left {
+ width: 35%;
+ }
+
+ #col-right {
+ width: 65%;
+ }
+}
+
+@media only screen and (max-width: 860px) {
+
+ /* categories */
+ #col-left {
+ width: 35%;
+ }
+
+ #col-right {
+ width: 65%;
+ }
+}
+
+@media only screen and (min-width: 980px) {
+
+ /* categories */
+ #col-left {
+ width: 35%;
+ }
+
+ #col-right {
+ width: 65%;
+ }
+}
+
+@media only screen and (max-width: 768px) {
+ /* categories */
+ #col-left {
+ width: 100%;
+ }
+
+ #col-right {
+ width: 100%;
+ }
+}
+
+/**
+ * HiDPI Displays
+ */
+@media print,
+ (-o-min-device-pixel-ratio: 5/4),
+ (-webkit-min-device-pixel-ratio: 1.25),
+ (min-resolution: 120dpi) {
+ /* Back-compat for pre-3.8 */
+ div.star-holder,
+ div.star-holder .star-rating {
+ background: url(../images/stars-2x.png?ver=20121108) repeat-x bottom left;
+ -webkit-background-size: 21px 37px;
+ background-size: 21px 37px;
+ }
+
+ .spinner {
+ background-image: url(../images/spinner-2x.gif);
+ }
+
+ /* @todo: evaluate - most of these were likely replaced by dashicons */
+ .curtime #timestamp,
+ #screen-meta-links a.show-settings,
+ .widget-top a.widget-action,
+ .widget-top a.widget-action:hover,
+ .sidebar-name-arrow,
+ .sidebar-name:hover .sidebar-name-arrow,
+ .meta-box-sortables .postbox:hover .handlediv,
+ .tagchecklist span a,
+ #bulk-titles div a,
+ .tagchecklist span a:hover,
+ #bulk-titles div a:hover {
+ background: none !important;
+ }
+
+}
+
+@-ms-viewport {
+ width: device-width;
+}
+
+@media screen and ( max-width: 782px ) {
+ html.wp-toolbar {
+ padding-top: 46px;
+ }
+
+ body {
+ min-width: 240px;
+ overflow-x: hidden;
+ }
+
+ body * {
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
+ }
+
+ #wpwrap {
+ background: #f0f0f0;
+ }
+
+ #wpcontent {
+ position: relative;
+ margin-left: 0;
+ padding-left: 10px;
+ }
+
+ #wpbody-content {
+ padding-bottom: 100px;
+ }
+
+ .wrap {
+ margin-right: 12px;
+ margin-left: 0;
+ }
+
+ .col-wrap {
+ padding: 0;
+ }
+
+ /* Hidden Elements */
+ #screen-meta,
+ #screen-meta-links,
+ #collapse-menu,
+ .post-format-select {
+ display: none !important;
+ }
+
+ .wrap .add-new-h2, .wrap .add-new-h2:active {
+ padding: 10px 15px;
+ font-size: 14px;
+ }
+
+ .wp-color-result {
+ height: auto;
+ padding-left: 45px;
+ }
+
+ .wp-color-result:after {
+ font-size: 14px;
+ height: auto;
+ padding: 6px 14px;
+ }
+
+ /* Feedback Messages */
+ .wrap div.updated, .wrap div.error, .media-upload-form div.error {
+ margin: 20px 0 10px 0;
+ padding: 5px 10px;
+ font-size: 14px;
+ line-height: 175%;
+ }
+
+ .wrap .icon32 + h2 {
+ margin-top: -2px;
+ }
+
+ .wp-responsive-open #wpbody {
+ right: -190px;
+ }
+
+ /* General Metabox */
+ .postbox {
+ font-size: 14px;
+ }
+
+ .metabox-holder h3 {
+ padding: 12px;
+ }
+
+ .postbox .handlediv {
+ margin-top: 3px;
+ }
+
+ /* Subsubsub Nav */
+ .subsubsub {
+ font-size: 16px;
+ text-align: center;
+ margin-bottom: 15px;
+ }
+
+ /* Theme/Plugin File Editor */
+ #templateside {
+ float: none;
+ width: auto;
+ }
+
+ #templateside li {
+ margin: 0;
+ }
+
+ #templateside li a {
+ display: block;
+ padding: 5px;
+ }
+
+ #templateside .highlight {
+ padding: 5px;
+ margin-left: -5px;
+ margin-top: -5px;
+ }
+
+ #template div {
+ float: none;
+ margin: 0;
+ width: auto;
+ }
+
+ #template textarea {
+ width: 100%;
+ }
+
+ .fileedit-sub .alignright {
+ margin-top: 15px;
+ }
+
+ #wpfooter {
+ display: none;
+ }
+
+ #comments-form .checkforspam {
+ display: none;
+ }
+}
+
+/* Smartphone */
+@media screen and (max-width: 600px) {
+ /* Disable horizontal scroll when responsive menu is open
+ since we push the main content off to the right. */
+ #wpwrap.wp-responsive-open {
+ overflow-x: hidden;
+ }
+
+ html.wp-toolbar {
+ padding-top: 0;
+ }
+
+ #wpbody {
+ padding-top: 46px;
+ }
+
+ /* Keep full-width boxes on Edit Post page from causing horizontal scroll */
+ div#post-body.metabox-holder.columns-1 {
+ overflow-x: hidden;
+ }
+}
diff --git a/sources/wp-admin/css/customize-controls-rtl.css b/sources/wp-admin/css/customize-controls-rtl.css
index 236d85d..f3108a3 100644
--- a/sources/wp-admin/css/customize-controls-rtl.css
+++ b/sources/wp-admin/css/customize-controls-rtl.css
@@ -1,77 +1,684 @@
+body {
+ overflow: hidden;
+}
+
+#customize-controls a {
+ text-decoration: none;
+}
+
+#customize-controls h3 {
+ font-size: 14px;
+}
+
+#customize-controls .submit {
+ text-align: center;
+}
+
+#customize-controls .description {
+ color: #666666;
+}
+
#customize-header-actions .button-primary {
float: left;
+ margin-top: 9px;
}
#customize-header-actions .spinner {
- float: left;
- margin-right: 0;
+ margin-top: 16px;
margin-left: 4px;
}
-.customize-control {
- float: right;
+.saving #customize-header-actions .spinner {
+ display: block;
+}
+
+#customize-info {
+ border: none;
+ border-top: 1px solid #ddd;
+}
+
+#customize-info .accordion-section-title {
+ background-color: #fff;
+ color: #666666;
+ border-right: none;
+ border-left: none;
+ border-bottom: 1px solid #eeeeee;
+}
+
+#customize-info.open .accordion-section-title,
+#customize-info .accordion-section-title:hover,
+#customize-info .accordion-section-title:focus {
+ color: #555555;
+}
+
+#customize-info.open .accordion-section-title:after,
+#customize-info .accordion-section-title:hover:after,
+#customize-info .accordion-section-title:focus:after {
+ color: #555555;
+}
+
+#customize-info.open .accordion-section-title {
+ border-color: transparent;
+}
+
+#customize-info .preview-notice {
+ font-size: 13px;
+ line-height: 24px;
+}
+
+#customize-info .theme-name {
+ font-size: 20px;
+ font-weight: 200;
+ line-height: 24px;
+ display: block;
+}
+
+#customize-info .theme-screenshot {
+ width: 258px;
+}
+
+#customize-info .theme-description {
+ margin-top: 1em;
+ color: #666666;
+ line-height: 20px;
+}
+
+#customize-theme-controls {
+ -webkit-box-shadow: 0 1px 1px -1px rgba(0, 0, 0, 0.1);
+ box-shadow: 0 1px 1px -1px rgba(0, 0, 0, 0.1);
+}
+
+#customize-theme-controls .control-section {
+ border: none;
+}
+
+#customize-theme-controls .accordion-section-title {
+ color: #555555;
+ background-color: #fff;
+ border-bottom: 1px solid #eeeeee;
+}
+
+#customize-theme-controls .accordion-section-content {
+ color: #555555;
+ background: white;
+}
+
+#customize-theme-controls .control-section:hover .accordion-section-title,
+#customize-theme-controls .control-section .accordion-section-title:hover,
+#customize-theme-controls .control-section.open .accordion-section-title,
+#customize-theme-controls .control-section .accordion-section-title:focus {
+ color: #555555;
+ background: #f5f5f5;
+}
+
+.js .control-section:hover .accordion-section-title,
+.js .control-section .accordion-section-title:hover,
+.js .control-section.open .accordion-section-title,
+.js .control-section .accordion-section-title:focus {
+ background: #f5f5f5;
+}
+
+#customize-theme-controls .control-section:hover .accordion-section-title::after,
+#customize-theme-controls .control-section .accordion-section-title:hover::after,
+#customize-theme-controls .control-section.open .accordion-section-title::after,
+#customize-theme-controls .control-section .accordion-section-title:focus::after {
+ color: #555555;
+}
+
+#customize-theme-controls .control-section.open {
+ border-bottom: 1px solid #eeeeee;
+}
+
+#customize-theme-controls .control-section.open .accordion-section-title {
+ border-bottom-color: #eeeeee !important;
+}
+
+#customize-theme-controls .control-section:last-of-type.open,
+#customize-theme-controls .control-section:last-of-type .accordion-section-title {
+ border-bottom-color: #ddd;
+}
+
+#customize-theme-controls > ul,
+#customize-theme-controls .accordion-section-content {
+ margin: 0;
+}
+
+.customize-control {
+ width: 100%;
+ float: right;
+ clear: both;
+ margin-bottom: 8px;
+}
+
+.customize-control select,
+.customize-control input[type="text"],
+.customize-control input[type="radio"],
+.customize-control input[type="checkbox"] {
+ line-height: 28px;
+}
+
+.customize-control input[type="text"] {
+ width: 98%;
+ line-height: 18px;
+ margin: 0;
+}
+
+.customize-control select {
+ min-width: 50%;
+ max-width: 100%;
+ height: 28px;
+ line-height: 28px;
+}
+
+.customize-control select[multiple] {
+ height: auto;
+}
+
+.customize-control-title {
+ display: block;
+ font-size: 14px;
+ line-height: 24px;
+ font-weight: 600;
+ margin-bottom: 5px;
+}
+
+.customize-control-color .color-picker,
+.customize-control-checkbox label,
+.customize-control-upload div {
+ line-height: 28px;
}
-.customize-control-radio input,
.customize-control-checkbox input {
- margin-right: 0;
margin-left: 5px;
}
+.customize-control-radio {
+ padding: 5px 0 10px;
+}
+
+.customize-control-radio .customize-control-title {
+ margin-bottom: 0;
+ line-height: 22px;
+}
+
+.customize-control-radio label {
+ line-height: 32px;
+}
+
+.customize-control-radio input {
+ margin-left: 5px;
+}
+
+#customize-preview iframe {
+ width: 100%;
+ height: 100%;
+}
+
+.wp-full-overlay-sidebar {
+ background: #eeeeee;
+ border-left: 1px solid #ddd;
+}
+
+.collapse-sidebar {
+ background-color: transparent !important;
+ border: none !important;
+ -webkit-box-shadow: none !important;
+ box-shadow: none !important;
+ -webkit-border-radius: !important 0;
+ border-radius: !important 0;
+}
+
+
+.collapse-sidebar:active,
+.collapse-sidebar:active .collapse-sidebar-label,
+.collapse-sidebar:active .collapse-sidebar-arrow:before {
+ text-shadow: none;
+}
+
+.collapsed .collapse-sidebar-arrow:before {
+ color: #888;
+}
+
+/* Style for custom settings */
+
/*
* Dropdowns
*/
.accordion-section .dropdown {
float: right;
+ display: block;
+ position: relative;
+ cursor: pointer;
}
.accordion-section .dropdown-content {
+ overflow: hidden;
float: right;
- margin-right: 0px;
+ min-width: 30px;
+ height: 16px;
+ line-height: 16px;
margin-left: 16px;
- -webkit-border-radius: 0 3px 3px 0;
- border-radius: 0 3px 3px 0;
+ padding: 4px 5px;
+ border: 2px solid #eeeeee;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
}
.customize-control .dropdown-arrow {
- right: auto;
+ position: absolute;
+ top: 0;
+ bottom: 0;
left: 0;
-
- border-color: #ccc;
- border-style: solid;
- border-width: 1px 0 1px 1px;
- -webkit-border-radius: 3px 0 0 3px;
- border-radius: 3px 0 0 3px;
+ width: 20px;
+ background: #eeeeee;
}
.customize-control .dropdown-arrow:after {
- right: auto;
- left: 4px;
+ content: "\f140";
+ font: normal 20px/1 'dashicons';
+ speak: none;
+ display: block;
+ padding: 0;
+ text-indent: 0;
+ text-align: center;
+ position: relative;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ text-decoration: none !important;
+ color: #333;
+}
+
+.customize-control .dropdown-status {
+ color: #333;
+ background: #eeeeee;
+ display: none;
+ max-width: 112px;
+}
+
+/* Color Picker */
+.customize-control-color .color-picker-hex {
+ display: none;
+}
+
+.customize-control-color.open .color-picker-hex {
+ display: block;
}
-/*
- * Color Picker
- */
.customize-control-color .dropdown {
- margin-right: 0;
margin-left: 5px;
+ margin-bottom: 5px;
}
-.accordion-section input[type="text"].color-picker-hex {
- direction: ltr;
+.customize-control-color .dropdown .dropdown-content {
+ background-color: #555555;
+ border: 1px solid rgba(0, 0, 0, 0.15);
+}
+
+.customize-control-color .dropdown:hover .dropdown-content {
+ border-color: rgba(0, 0, 0, 0.25);
}
/*
* Image Picker
*/
+.customize-control-image .library,
+.customize-control-image .actions {
+ display: none;
+ float: right;
+ width: 100%;
+}
+
+.customize-control-image.open .library,
+.customize-control-image.open .actions {
+ display: block;
+}
+
+.accordion-section .customize-control-image .dropdown-content {
+ height: auto;
+ min-height: 24px;
+ min-width: 40px;
+ padding: 0;
+}
+
+.accordion-section .customize-control-image .dropdown-status {
+ padding: 4px 5px;
+}
+
+.accordion-section .customize-control-image .preview-thumbnail img {
+ display: block;
+ width: 100%;
+ max-width: 122px;
+ max-height: 98px;
+ margin: 0 auto;
+}
+
.accordion-section .customize-control-image .actions {
text-align: left;
}
-.customize-control-image .library,
-.customize-control-image .actions,
-.accordion-section .customize-control-image .library ul,
-.accordion-section .customize-control-image .library li,
-.accordion-section .customize-control-image .library-content {
+.accordion-section .customize-control-image .library ul {
+ border-bottom: 1px solid #ddd;
float: right;
+ width: 100%;
+ margin: 10px 0 0;
+}
+
+.accordion-section .customize-control-image .library li {
+ color: #ccc;
+ float: right;
+ padding: 3px 15px;
+ margin: 0;
+ border: 1px solid transparent;
+}
+
+.accordion-section .customize-control-image .library li.library-selected {
+ margin-bottom: -1px;
+ padding-bottom: 4px;
+ color: #666666;
+ border-color: #ddd;
+ border-bottom-color: #fff;
+}
+
+.accordion-section .customize-control-image .library .thumbnail {
+ display: block;
+ width: 100%;
+}
+
+.accordion-section .customize-control-image .library .thumbnail img {
+ display: block;
+ max-width: 90%;
+ max-height: 80px;
+ margin: 5px auto;
+ padding: 2px;
+ background: #666666;
+}
+
+.accordion-section .customize-control-image .library .thumbnail:hover img {
+ background-color: #2ea2cc;
+}
+
+.accordion-section .customize-control-image .library-content {
+ display: none;
+ width: 100%;
+ float: right;
+ padding: 10px 0;
+}
+
+.accordion-section .customize-control-image .library-content.library-selected {
+ display: block;
+}
+
+.accordion-section .customize-control-upload .upload-fallback,
+.accordion-section .customize-control-image .upload-fallback {
+ display: none;
+}
+
+.accordion-section .customize-control-upload .upload-dropzone,
+.accordion-section .customize-control-image .upload-dropzone {
+ display: none;
+ padding: 15px 10px;
+ border: 3px dashed #dfdfdf;
+ margin: 5px auto;
+ text-align: center;
+ position: relative;
+ cursor: default;
+}
+
+.accordion-section .customize-control-upload .upload-dropzone.supports-drag-drop,
+.accordion-section .customize-control-image .upload-dropzone.supports-drag-drop {
+ display: block;
+ -webkit-transition: border-color 0.1s;
+ transition: border-color 0.1s;
+}
+
+.accordion-section .customize-control-upload .library ul li,
+.accordion-section .customize-control-image .library ul li {
+ cursor: pointer;
+}
+
+.accordion-section .customize-control-upload .upload-dropzone.supports-drag-drop.drag-over,
+.accordion-section .customize-control-image .upload-dropzone.supports-drag-drop.drag-over {
+ border-color: #83b4d8;
+}
+
+/**
+ * iOS can't scroll iframes,
+ * instead it expands the iframe size to match the size of the content
+ */
+.ios .wp-full-overlay {
+ position: relative;
+}
+
+.ios #customize-preview {
+ position: relative;
+}
+
+.ios #customize-controls .wp-full-overlay-sidebar-content {
+ -webkit-overflow-scrolling: touch;
+}
+
+/** Header control **/
+
+#customize-control-header_image .current {
+ margin-bottom: 8px;
+}
+
+#customize-control-header_image .uploaded {
+ margin-bottom: 18px;
+}
+
+#customize-control-header_image .uploaded button:not(.random),
+#customize-control-header_image .default button:not(.random) {
+ width: 100%;
+ padding: 0;
+ margin: 0;
+ background: none;
+ border: none;
+ color: inherit;
+ cursor: pointer;
+}
+
+#customize-control-header_image button img {
+ display: block;
+}
+
+#customize-control-header_image button.new,
+#customize-control-header_image button.remove {
+ white-space: normal;
+ width: 48%;
+ height: auto;
+}
+
+
+/* Header control: current image container */
+
+#customize-control-header_image .current .container {
+ overflow: hidden;
+ -webkit-border-radius: 2px;
+ border: 1px solid #eee;
+ -webkit-border-radius: 2px;
+ border-radius: 2px;
+}
+
+#customize-control-header_image .placeholder {
+ width: 100%;
+ position: relative;
+ text-align: center;
+ cursor: default;
+}
+
+#customize-control-header_image .inner {
+ display: none;
+ position: absolute;
+ width: 100%;
+ color: #555;
+ white-space: nowrap;
+ text-overflow: ellipsis;
+ overflow: hidden;
+}
+
+#customize-control-header_image .inner,
+#customize-control-header_image .inner .dashicons {
+ line-height: 20px;
+ top: 10px;
+}
+#customize-control-header_image .list .inner,
+#customize-control-header_image .list .inner .dashicons {
+ top: 9px;
+}
+
+#customize-control-header_image .header-view {
+ position: relative;
+ width: 100%;
+ margin-bottom: 5px;
+}
+
+#customize-control-header_image .header-view:last-child {
+ margin-bottom: 0px;
+}
+
+/* Convoluted, but 'outline' support isn't good enough yet */
+#customize-control-header_image .header-view:after {
+ border: 0;
+}
+#customize-control-header_image .header-view.selected:after {
+ content: '';
+ position: absolute;
+ height: auto;
+ top: 0; right: 0; bottom: 0; left: 0;
+ border: 4px solid #2ea2cc;
+ -webkit-border-radius: 2px;
+ border-radius: 2px;
+}
+#customize-control-header_image .header-view.button.selected {
+ border: 0;
+}
+
+/* Header control: overlay "close" button */
+
+#customize-control-header_image .uploaded .header-view .close {
+ font-size: 2em;
+ color: grey;
+ position: absolute;
+ visibility: hidden;
+ top: 10px;
+ left: 10px;
+ z-index: 1;
+ width: 20px;
+ height: 20px;
+ cursor: pointer;
+}
+
+#customize-control-header_image .uploaded .header-view .close:hover {
+ color: black;
+ text-shadow:
+ -1px -1px 0 #fff,
+ 1px -1px 0 #fff,
+ -1px 1px 0 #fff,
+ 1px 1px 0 #fff;
+}
+
+#customize-control-header_image .header-view:hover .close {
+ visibility: visible;
+}
+
+/* Header control: randomiz(s)er */
+
+#customize-control-header_image .random.placeholder {
+ cursor: pointer;
+ -webkit-border-radius: 2px;
+ border-radius: 2px;
+ height: 40px;
+}
+
+#customize-control-header_image button.random {
+ width: 100%;
+ height: auto;
+ min-height: 40px;
+ white-space: normal;
+}
+
+#customize-control-header_image button.random .dice {
+ margin-top: 4px;
+}
+
+#customize-control-header_image .placeholder:hover .dice,
+#customize-control-header_image .header-view:hover > button.random .dice {
+ -webkit-animation: dice-color-change 3s infinite;
+ -ms-animation: dice-color-change 3s infinite;
+ animation: dice-color-change 3s infinite;
+}
+
+@-webkit-keyframes dice-color-change {
+ 0% { color: #d4b146; }
+ 50% { color: #ef54b0; }
+ 75% { color: #7190d3; }
+ 100% { color: #d4b146; }
+}
+
+@-ms-keyframes dice-color-change {
+ 0% { color: #d4b146; }
+ 50% { color: #ef54b0; }
+ 75% { color: #7190d3; }
+ 100% { color: #d4b146; }
+}
+
+@keyframes dice-color-change {
+ 0% { color: #d4b146; }
+ 50% { color: #ef54b0; }
+ 75% { color: #7190d3; }
+ 100% { color: #d4b146; }
+}
+
+/* Header control: actions and choices */
+
+#customize-control-header_image .actions {
+ margin-bottom: 32px;
+}
+
+#customize-control-header_image .choice {
+ position: relative;
+ display: block;
+ margin-bottom: 9px;
+}
+
+#customize-control-header_image .uploaded div:last-child > .choice {
+ margin-bottom: 0;
+}
+
+#customize-control-header_image img {
+ width: 100%;
+ -webkit-border-radius: 2px;
+ border-radius: 2px;
+}
+
+#customize-control-header_image .remove {
+ float: right;
+ margin-left: 3px;
+}
+
+#customize-control-header_image .new {
+ float: left;
+}
+
+
+/** Handle cheaters. */
+body.cheatin {
+ font-size: medium;
+ height: auto;
+ background: #fff;
+ margin: 50px auto 2em;
+ padding: 1em 2em;
+ max-width: 700px;
+ min-width: 0;
+ -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.13);
+ box-shadow: 0 1px 3px rgba(0,0,0,0.13);
+}
+
+body.cheatin p {
+ font-size: 14px;
+ line-height: 1.5;
+ margin: 25px 0 20px;
}
diff --git a/sources/wp-admin/css/customize-controls-rtl.min.css b/sources/wp-admin/css/customize-controls-rtl.min.css
index 80117e5..9f672b9 100644
--- a/sources/wp-admin/css/customize-controls-rtl.min.css
+++ b/sources/wp-admin/css/customize-controls-rtl.min.css
@@ -1 +1 @@
-#customize-header-actions .button-primary{float:left}#customize-header-actions .spinner{float:left;margin-right:0;margin-left:4px}.customize-control{float:right}.customize-control-radio input,.customize-control-checkbox input{margin-right:0;margin-left:5px}.accordion-section .dropdown{float:right}.accordion-section .dropdown-content{float:right;margin-right:0;margin-left:16px;-webkit-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0}.customize-control .dropdown-arrow{right:auto;left:0;border-color:#ccc;border-style:solid;border-width:1px 0 1px 1px;-webkit-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px}.customize-control .dropdown-arrow:after{right:auto;left:4px}.customize-control-color .dropdown{margin-right:0;margin-left:5px}.accordion-section input[type=text].color-picker-hex{direction:ltr}.accordion-section .customize-control-image .actions{text-align:left}.customize-control-image .library,.customize-control-image .actions,.accordion-section .customize-control-image .library ul,.accordion-section .customize-control-image .library li,.accordion-section .customize-control-image .library-content{float:right}
\ No newline at end of file
+body{overflow:hidden}#customize-controls a{text-decoration:none}#customize-controls h3{font-size:14px}#customize-controls .submit{text-align:center}#customize-controls .description{color:#666}#customize-header-actions .button-primary{float:left;margin-top:9px}#customize-header-actions .spinner{margin-top:16px;margin-left:4px}.saving #customize-header-actions .spinner{display:block}#customize-info{border:0;border-top:1px solid #ddd}#customize-info .accordion-section-title{background-color:#fff;color:#666;border-right:0;border-left:0;border-bottom:1px solid #eee}#customize-info .accordion-section-title:focus,#customize-info .accordion-section-title:focus:after,#customize-info .accordion-section-title:hover,#customize-info .accordion-section-title:hover:after,#customize-info.open .accordion-section-title,#customize-info.open .accordion-section-title:after{color:#555}#customize-info.open .accordion-section-title{border-color:transparent}#customize-info .preview-notice{font-size:13px;line-height:24px}#customize-info .theme-name{font-size:20px;font-weight:200;line-height:24px;display:block}#customize-info .theme-screenshot{width:258px}#customize-info .theme-description{margin-top:1em;color:#666;line-height:20px}#customize-theme-controls{-webkit-box-shadow:0 1px 1px -1px rgba(0,0,0,.1);box-shadow:0 1px 1px -1px rgba(0,0,0,.1)}#customize-theme-controls .control-section{border:0}#customize-theme-controls .accordion-section-title{color:#555;background-color:#fff;border-bottom:1px solid #eee}#customize-theme-controls .accordion-section-content{color:#555;background:#fff}#customize-theme-controls .control-section .accordion-section-title:focus,#customize-theme-controls .control-section .accordion-section-title:hover,#customize-theme-controls .control-section.open .accordion-section-title,#customize-theme-controls .control-section:hover .accordion-section-title{color:#555;background:#f5f5f5}.js .control-section .accordion-section-title:focus,.js .control-section .accordion-section-title:hover,.js .control-section.open .accordion-section-title,.js .control-section:hover .accordion-section-title{background:#f5f5f5}#customize-theme-controls .control-section .accordion-section-title:focus::after,#customize-theme-controls .control-section .accordion-section-title:hover::after,#customize-theme-controls .control-section.open .accordion-section-title::after,#customize-theme-controls .control-section:hover .accordion-section-title::after{color:#555}#customize-theme-controls .control-section.open{border-bottom:1px solid #eee}#customize-theme-controls .control-section.open .accordion-section-title{border-bottom-color:#eee!important}#customize-theme-controls .control-section:last-of-type .accordion-section-title,#customize-theme-controls .control-section:last-of-type.open{border-bottom-color:#ddd}#customize-theme-controls .accordion-section-content,#customize-theme-controls>ul{margin:0}.customize-control{width:100%;float:right;clear:both;margin-bottom:8px}.customize-control input[type=checkbox],.customize-control input[type=radio],.customize-control input[type=text],.customize-control select{line-height:28px}.customize-control input[type=text]{width:98%;line-height:18px;margin:0}.customize-control select{min-width:50%;max-width:100%;height:28px;line-height:28px}.customize-control select[multiple]{height:auto}.customize-control-title{display:block;font-size:14px;line-height:24px;font-weight:600;margin-bottom:5px}.customize-control-checkbox label,.customize-control-color .color-picker,.customize-control-upload div{line-height:28px}.customize-control-checkbox input{margin-left:5px}.customize-control-radio{padding:5px 0 10px}.customize-control-radio .customize-control-title{margin-bottom:0;line-height:22px}.customize-control-radio label{line-height:32px}.customize-control-radio input{margin-left:5px}#customize-preview iframe{width:100%;height:100%}.wp-full-overlay-sidebar{background:#eee;border-left:1px solid #ddd}.collapse-sidebar{background-color:transparent!important;border:0!important;-webkit-box-shadow:none!important;box-shadow:none!important;-webkit-border-radius:!important 0;border-radius:!important 0}.collapse-sidebar:active,.collapse-sidebar:active .collapse-sidebar-arrow:before,.collapse-sidebar:active .collapse-sidebar-label{text-shadow:none}.collapsed .collapse-sidebar-arrow:before{color:#888}.accordion-section .dropdown{float:right;display:block;position:relative;cursor:pointer}.accordion-section .dropdown-content{overflow:hidden;float:right;min-width:30px;height:16px;line-height:16px;margin-left:16px;padding:4px 5px;border:2px solid #eee;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.customize-control .dropdown-arrow{position:absolute;top:0;bottom:0;left:0;width:20px;background:#eee}.customize-control .dropdown-arrow:after{content:"\f140";font:400 20px/1 dashicons;speak:none;display:block;padding:0;text-indent:0;text-align:center;position:relative;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important;color:#333}.customize-control .dropdown-status{color:#333;background:#eee;display:none;max-width:112px}.customize-control-color .color-picker-hex{display:none}.customize-control-color.open .color-picker-hex{display:block}.customize-control-color .dropdown{margin-left:5px;margin-bottom:5px}.customize-control-color .dropdown .dropdown-content{background-color:#555;border:1px solid rgba(0,0,0,.15)}.customize-control-color .dropdown:hover .dropdown-content{border-color:rgba(0,0,0,.25)}.customize-control-image .actions,.customize-control-image .library{display:none;float:right;width:100%}.customize-control-image.open .actions,.customize-control-image.open .library{display:block}.accordion-section .customize-control-image .dropdown-content{height:auto;min-height:24px;min-width:40px;padding:0}.accordion-section .customize-control-image .dropdown-status{padding:4px 5px}.accordion-section .customize-control-image .preview-thumbnail img{display:block;width:100%;max-width:122px;max-height:98px;margin:0 auto}.accordion-section .customize-control-image .actions{text-align:left}.accordion-section .customize-control-image .library ul{border-bottom:1px solid #ddd;float:right;width:100%;margin:10px 0 0}.accordion-section .customize-control-image .library li{color:#ccc;float:right;padding:3px 15px;margin:0;border:1px solid transparent}.accordion-section .customize-control-image .library li.library-selected{margin-bottom:-1px;padding-bottom:4px;color:#666;border-color:#ddd;border-bottom-color:#fff}.accordion-section .customize-control-image .library .thumbnail{display:block;width:100%}.accordion-section .customize-control-image .library .thumbnail img{display:block;max-width:90%;max-height:80px;margin:5px auto;padding:2px;background:#666}.accordion-section .customize-control-image .library .thumbnail:hover img{background-color:#2ea2cc}.accordion-section .customize-control-image .library-content{display:none;width:100%;float:right;padding:10px 0}.accordion-section .customize-control-image .library-content.library-selected{display:block}.accordion-section .customize-control-image .upload-fallback,.accordion-section .customize-control-upload .upload-fallback{display:none}.accordion-section .customize-control-image .upload-dropzone,.accordion-section .customize-control-upload .upload-dropzone{display:none;padding:15px 10px;border:3px dashed #dfdfdf;margin:5px auto;text-align:center;position:relative;cursor:default}.accordion-section .customize-control-image .upload-dropzone.supports-drag-drop,.accordion-section .customize-control-upload .upload-dropzone.supports-drag-drop{display:block;-webkit-transition:border-color .1s;transition:border-color .1s}.accordion-section .customize-control-image .library ul li,.accordion-section .customize-control-upload .library ul li{cursor:pointer}.accordion-section .customize-control-image .upload-dropzone.supports-drag-drop.drag-over,.accordion-section .customize-control-upload .upload-dropzone.supports-drag-drop.drag-over{border-color:#83b4d8}.ios #customize-preview,.ios .wp-full-overlay{position:relative}.ios #customize-controls .wp-full-overlay-sidebar-content{-webkit-overflow-scrolling:touch}#customize-control-header_image .current{margin-bottom:8px}#customize-control-header_image .uploaded{margin-bottom:18px}#customize-control-header_image .default button:not(.random),#customize-control-header_image .uploaded button:not(.random){width:100%;padding:0;margin:0;background:0 0;border:0;color:inherit;cursor:pointer}#customize-control-header_image button img{display:block}#customize-control-header_image button.new,#customize-control-header_image button.remove{white-space:normal;width:48%;height:auto}#customize-control-header_image .current .container{overflow:hidden;border:1px solid #eee;-webkit-border-radius:2px;border-radius:2px}#customize-control-header_image .placeholder{width:100%;position:relative;text-align:center;cursor:default}#customize-control-header_image .inner{display:none;position:absolute;width:100%;color:#555;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}#customize-control-header_image .inner,#customize-control-header_image .inner .dashicons{line-height:20px;top:10px}#customize-control-header_image .list .inner,#customize-control-header_image .list .inner .dashicons{top:9px}#customize-control-header_image .header-view{position:relative;width:100%;margin-bottom:5px}#customize-control-header_image .header-view:last-child{margin-bottom:0}#customize-control-header_image .header-view:after{border:0}#customize-control-header_image .header-view.selected:after{content:'';position:absolute;height:auto;top:0;right:0;bottom:0;left:0;border:4px solid #2ea2cc;-webkit-border-radius:2px;border-radius:2px}#customize-control-header_image .header-view.button.selected{border:0}#customize-control-header_image .uploaded .header-view .close{font-size:2em;color:grey;position:absolute;visibility:hidden;top:10px;left:10px;z-index:1;width:20px;height:20px;cursor:pointer}#customize-control-header_image .uploaded .header-view .close:hover{color:#000;text-shadow:-1px -1px 0 #fff,1px -1px 0 #fff,-1px 1px 0 #fff,1px 1px 0 #fff}#customize-control-header_image .header-view:hover .close{visibility:visible}#customize-control-header_image .random.placeholder{cursor:pointer;-webkit-border-radius:2px;border-radius:2px;height:40px}#customize-control-header_image button.random{width:100%;height:auto;min-height:40px;white-space:normal}#customize-control-header_image button.random .dice{margin-top:4px}#customize-control-header_image .header-view:hover>button.random .dice,#customize-control-header_image .placeholder:hover .dice{-webkit-animation:dice-color-change 3s infinite;-ms-animation:dice-color-change 3s infinite;animation:dice-color-change 3s infinite}@-webkit-keyframes dice-color-change{0%{color:#d4b146}50%{color:#ef54b0}75%{color:#7190d3}100%{color:#d4b146}}@-ms-keyframes dice-color-change{0%{color:#d4b146}50%{color:#ef54b0}75%{color:#7190d3}100%{color:#d4b146}}@keyframes dice-color-change{0%{color:#d4b146}50%{color:#ef54b0}75%{color:#7190d3}100%{color:#d4b146}}#customize-control-header_image .actions{margin-bottom:32px}#customize-control-header_image .choice{position:relative;display:block;margin-bottom:9px}#customize-control-header_image .uploaded div:last-child>.choice{margin-bottom:0}#customize-control-header_image img{width:100%;-webkit-border-radius:2px;border-radius:2px}#customize-control-header_image .remove{float:right;margin-left:3px}#customize-control-header_image .new{float:left}body.cheatin{font-size:medium;height:auto;background:#fff;margin:50px auto 2em;padding:1em 2em;max-width:700px;min-width:0;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.13);box-shadow:0 1px 3px rgba(0,0,0,.13)}body.cheatin p{font-size:14px;line-height:1.5;margin:25px 0 20px}
\ No newline at end of file
diff --git a/sources/wp-admin/css/customize-controls.css b/sources/wp-admin/css/customize-controls.css
index 14f6f21..f966114 100644
--- a/sources/wp-admin/css/customize-controls.css
+++ b/sources/wp-admin/css/customize-controls.css
@@ -6,48 +6,21 @@ body {
text-decoration: none;
}
-#customize-info .accordion-section-content {
- background: transparent;
-}
-
-#customize-info .preview-notice {
- font-size: 13px;
- line-height: 24px;
- color: #999;
-}
-
-#customize-info .theme-name {
- font-size: 20px;
- font-weight: 200;
- line-height: 24px;
- color: #333;
- display: block;
- text-shadow: 0 1px 0 #fff;
-}
-
-#customize-info .theme-screenshot {
- width: 258px;
- border: 1px solid #ccc;
-}
-
-#customize-info .theme-description {
- margin-top: 1em;
- color: #777;
- line-height: 20px;
+#customize-controls h3 {
+ font-size: 14px;
}
#customize-controls .submit {
text-align: center;
}
-#customize-theme-controls > ul,
-#customize-theme-controls .accordion-section-content {
- margin: 0;
+#customize-controls .description {
+ color: #666666;
}
#customize-header-actions .button-primary {
float: right;
- margin-top: 10px;
+ margin-top: 9px;
}
#customize-header-actions .spinner {
@@ -59,6 +32,117 @@ body {
display: block;
}
+#customize-info {
+ border: none;
+ border-top: 1px solid #ddd;
+}
+
+#customize-info .accordion-section-title {
+ background-color: #fff;
+ color: #666666;
+ border-left: none;
+ border-right: none;
+ border-bottom: 1px solid #eeeeee;
+}
+
+#customize-info.open .accordion-section-title,
+#customize-info .accordion-section-title:hover,
+#customize-info .accordion-section-title:focus {
+ color: #555555;
+}
+
+#customize-info.open .accordion-section-title:after,
+#customize-info .accordion-section-title:hover:after,
+#customize-info .accordion-section-title:focus:after {
+ color: #555555;
+}
+
+#customize-info.open .accordion-section-title {
+ border-color: transparent;
+}
+
+#customize-info .preview-notice {
+ font-size: 13px;
+ line-height: 24px;
+}
+
+#customize-info .theme-name {
+ font-size: 20px;
+ font-weight: 200;
+ line-height: 24px;
+ display: block;
+}
+
+#customize-info .theme-screenshot {
+ width: 258px;
+}
+
+#customize-info .theme-description {
+ margin-top: 1em;
+ color: #666666;
+ line-height: 20px;
+}
+
+#customize-theme-controls {
+ -webkit-box-shadow: 0 1px 1px -1px rgba(0, 0, 0, 0.1);
+ box-shadow: 0 1px 1px -1px rgba(0, 0, 0, 0.1);
+}
+
+#customize-theme-controls .control-section {
+ border: none;
+}
+
+#customize-theme-controls .accordion-section-title {
+ color: #555555;
+ background-color: #fff;
+ border-bottom: 1px solid #eeeeee;
+}
+
+#customize-theme-controls .accordion-section-content {
+ color: #555555;
+ background: white;
+}
+
+#customize-theme-controls .control-section:hover .accordion-section-title,
+#customize-theme-controls .control-section .accordion-section-title:hover,
+#customize-theme-controls .control-section.open .accordion-section-title,
+#customize-theme-controls .control-section .accordion-section-title:focus {
+ color: #555555;
+ background: #f5f5f5;
+}
+
+.js .control-section:hover .accordion-section-title,
+.js .control-section .accordion-section-title:hover,
+.js .control-section.open .accordion-section-title,
+.js .control-section .accordion-section-title:focus {
+ background: #f5f5f5;
+}
+
+#customize-theme-controls .control-section:hover .accordion-section-title::after,
+#customize-theme-controls .control-section .accordion-section-title:hover::after,
+#customize-theme-controls .control-section.open .accordion-section-title::after,
+#customize-theme-controls .control-section .accordion-section-title:focus::after {
+ color: #555555;
+}
+
+#customize-theme-controls .control-section.open {
+ border-bottom: 1px solid #eeeeee;
+}
+
+#customize-theme-controls .control-section.open .accordion-section-title {
+ border-bottom-color: #eeeeee !important;
+}
+
+#customize-theme-controls .control-section:last-of-type.open,
+#customize-theme-controls .control-section:last-of-type .accordion-section-title {
+ border-bottom-color: #ddd;
+}
+
+#customize-theme-controls > ul,
+#customize-theme-controls .accordion-section-content {
+ margin: 0;
+}
+
.customize-control {
width: 100%;
float: left;
@@ -66,19 +150,10 @@ body {
margin-bottom: 8px;
}
-.customize-control-title {
- display: block;
- line-height: 24px;
- font-weight: bold;
-}
-
.customize-control select,
.customize-control input[type="text"],
.customize-control input[type="radio"],
-.customize-control input[type="checkbox"],
-.customize-control-color .color-picker,
-.customize-control-checkbox label,
-.customize-control-upload div {
+.customize-control input[type="checkbox"] {
line-height: 28px;
}
@@ -95,6 +170,24 @@ body {
line-height: 28px;
}
+.customize-control select[multiple] {
+ height: auto;
+}
+
+.customize-control-title {
+ display: block;
+ font-size: 14px;
+ line-height: 24px;
+ font-weight: 600;
+ margin-bottom: 5px;
+}
+
+.customize-control-color .color-picker,
+.customize-control-checkbox label,
+.customize-control-upload div {
+ line-height: 28px;
+}
+
.customize-control-checkbox input {
margin-right: 5px;
}
@@ -109,7 +202,7 @@ body {
}
.customize-control-radio label {
- line-height: 20px;
+ line-height: 32px;
}
.customize-control-radio input {
@@ -121,39 +214,32 @@ body {
height: 100%;
}
-#customize-theme-controls .accordion-section-title:hover:after,
-#customize-theme-controls .accordion-section-title:focus:after {
- border-color: #eee transparent;
+.wp-full-overlay-sidebar {
+ background: #eeeeee;
+ border-right: 1px solid #ddd;
}
-#customize-theme-controls .control-section:hover .accordion-section-title,
-#customize-theme-controls .control-section .accordion-section-title:hover,
-#customize-theme-controls .control-section.open .accordion-section-title,
-#customize-theme-controls .control-section .accordion-section-title:focus {
- color: #fff;
- text-shadow: 0 -1px 0 #333;
- background: #808080;
- background-image: -webkit-gradient(linear, left bottom, left top, from(#6d6d6d), to(#808080));
- background-image: -webkit-linear-gradient(bottom, #6d6d6d, #808080);
- background-image: -moz-linear-gradient(bottom, #6d6d6d, #808080);
- background-image: -o-linear-gradient(bottom, #6d6d6d, #808080);
- background-image: linear-gradient(to top, #6d6d6d, #808080);
- border-left: 1px solid #808080;
- border-right: 1px solid #808080;
+.collapse-sidebar {
+ background-color: transparent !important;
+ border: none !important;
+ -webkit-box-shadow: none !important;
+ box-shadow: none !important;
+ -webkit-border-radius: 0 !important;
+ border-radius: 0 !important;
}
-#customize-theme-controls .control-section.accordion-section:hover,
-#customize-theme-controls .control-section.accordion-section.open {
- border-top-color: #808080;
+
+.collapse-sidebar:active,
+.collapse-sidebar:active .collapse-sidebar-label,
+.collapse-sidebar:active .collapse-sidebar-arrow:before {
+ text-shadow: none;
}
-#customize-theme-controls .control-section.open .accordion-section-title {
- border-bottom: 1px solid #6d6d6d;
+.collapsed .collapse-sidebar-arrow:before {
+ color: #888;
}
-/*
- * Style for custom settings
- */
+/* Style for custom settings */
/*
* Dropdowns
@@ -163,9 +249,6 @@ body {
display: block;
position: relative;
cursor: pointer;
-
- -webkit-border-radius: 3px;
- border-radius: 3px;
}
.accordion-section .dropdown-content {
@@ -176,13 +259,10 @@ body {
line-height: 16px;
margin-right: 16px;
padding: 4px 5px;
- background-color: #eee;
- border: 1px solid #ccc;
- -webkit-border-radius: 3px 0 0 3px;
- border-radius: 3px 0 0 3px;
-
+ border: 2px solid #eeeeee;
-webkit-user-select: none;
-moz-user-select: none;
+ -ms-user-select: none;
user-select: none;
}
@@ -191,47 +271,33 @@ body {
top: 0;
bottom: 0;
right: 0;
- width: 15px;
-
- border-color: #ccc;
- border-style: solid;
- border-width: 1px 1px 1px 0;
- -webkit-border-radius: 0 3px 3px 0;
- border-radius: 0 3px 3px 0;
+ width: 20px;
+ background: #eeeeee;
}
.customize-control .dropdown-arrow:after {
- content: '';
- width: 0;
- height: 0;
- border-color: #ccc transparent;
- border-style: solid;
- border-width: 4px 4px 0 4px;
- position: absolute;
- top: 50%;
- margin-top: -1px;
- right: 4px;
- z-index: 1;
-}
-
-.accordion-section .dropdown:hover .dropdown-content,
-.customize-control .dropdown:hover .dropdown-arrow {
- border-color: #aaa;
-}
-
-.accordion-section .dropdown:hover .dropdown-arrow:after {
- border-color: #aaa transparent;
+ content: "\f140";
+ font: normal 20px/1 'dashicons';
+ speak: none;
+ display: block;
+ padding: 0;
+ text-indent: 0;
+ text-align: center;
+ position: relative;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ text-decoration: none !important;
+ color: #333;
}
.customize-control .dropdown-status {
+ color: #333;
+ background: #eeeeee;
display: none;
max-width: 112px;
- color: #777;
}
-/*
- * Color Picker
- */
+/* Color Picker */
.customize-control-color .color-picker-hex {
display: none;
}
@@ -246,27 +312,12 @@ body {
}
.customize-control-color .dropdown .dropdown-content {
- background-color: #fff;
- border: 1px solid rgba( 0, 0, 0, 0.15 );
+ background-color: #555555;
+ border: 1px solid rgba(0, 0, 0, 0.15);
}
.customize-control-color .dropdown:hover .dropdown-content {
- border-color: rgba( 0, 0, 0, 0.25 );
-}
-
-.accordion-section input[type="text"].color-picker-hex {
- width: 65px;
- font-family: monospace;
- text-align: center;
- line-height: 16px;
-}
-
-/* The centered cursor overlaps the placeholder in webkit. Hide it when selected. */
-.accordion-section input[type="text"].color-picker-hex:focus::-webkit-input-placeholder {
- color: transparent;
-}
-.accordion-section input[type="text"].color-picker-hex:-moz-placeholder {
- color: #999;
+ border-color: rgba(0, 0, 0, 0.25);
}
/*
@@ -308,31 +359,44 @@ body {
}
.accordion-section .customize-control-image .library ul {
- border-bottom: 1px solid #dfdfdf;
+ border-bottom: 1px solid #ddd;
float: left;
width: 100%;
margin: 10px 0 0;
}
.accordion-section .customize-control-image .library li {
- color: #999;
+ color: #ccc;
float: left;
- padding: 3px 5px;
+ padding: 3px 15px;
margin: 0;
- border-style: solid;
- border-color: transparent;
- border-width: 1px 1px 0 1px;
+ border: 1px solid transparent;
}
.accordion-section .customize-control-image .library li.library-selected {
margin-bottom: -1px;
padding-bottom: 4px;
+ color: #666666;
+ border-color: #ddd;
+ border-bottom-color: #fff;
+}
- color: #777;
- background: #fdfdfd;
- border-color: #dfdfdf;
- -webkit-border-radius: 3px 3px 0 0;
- border-radius: 3px 3px 0 0 ;
+.accordion-section .customize-control-image .library .thumbnail {
+ display: block;
+ width: 100%;
+}
+
+.accordion-section .customize-control-image .library .thumbnail img {
+ display: block;
+ max-width: 90%;
+ max-height: 80px;
+ margin: 5px auto;
+ padding: 2px;
+ background: #666666;
+}
+
+.accordion-section .customize-control-image .library .thumbnail:hover img {
+ background-color: #2ea2cc;
}
.accordion-section .customize-control-image .library-content {
@@ -346,26 +410,6 @@ body {
display: block;
}
-.accordion-section .customize-control-image .library .thumbnail {
- display: block;
- width: 100%;
-}
-
-.accordion-section .customize-control-image .library .thumbnail:hover img {
- border-color: #21759b;
-}
-
-.accordion-section .customize-control-image .library .thumbnail img {
- display: block;
- max-width: 90%;
- max-height: 80px;
-
- margin: 5px auto;
- padding: 4px;
- background: #fff;
- border: 1px solid #dfdfdf;
-}
-
.accordion-section .customize-control-upload .upload-fallback,
.accordion-section .customize-control-image .upload-fallback {
display: none;
@@ -378,7 +422,6 @@ body {
border: 3px dashed #dfdfdf;
margin: 5px auto;
text-align: center;
- color: #777;
position: relative;
cursor: default;
}
@@ -387,10 +430,7 @@ body {
.accordion-section .customize-control-image .upload-dropzone.supports-drag-drop {
display: block;
-webkit-transition: border-color 0.1s;
- -moz-transition: border-color 0.1s;
- -ms-transition: border-color 0.1s;
- -o-transition: border-color 0.1s;
- transition: border-color 0.1s;
+ transition: border-color 0.1s;
}
.accordion-section .customize-control-upload .library ul li,
@@ -419,22 +459,226 @@ body {
-webkit-overflow-scrolling: touch;
}
-/**
- * Handle cheaters.
- */
+/** Header control **/
+
+#customize-control-header_image .current {
+ margin-bottom: 8px;
+}
+
+#customize-control-header_image .uploaded {
+ margin-bottom: 18px;
+}
+
+#customize-control-header_image .uploaded button:not(.random),
+#customize-control-header_image .default button:not(.random) {
+ width: 100%;
+ padding: 0;
+ margin: 0;
+ background: none;
+ border: none;
+ color: inherit;
+ cursor: pointer;
+}
+
+#customize-control-header_image button img {
+ display: block;
+}
+
+#customize-control-header_image button.new,
+#customize-control-header_image button.remove {
+ white-space: normal;
+ width: 48%;
+ height: auto;
+}
+
+
+/* Header control: current image container */
+
+#customize-control-header_image .current .container {
+ overflow: hidden;
+ -webkit-border-radius: 2px;
+ border: 1px solid #eee;
+ -webkit-border-radius: 2px;
+ border-radius: 2px;
+}
+
+#customize-control-header_image .placeholder {
+ width: 100%;
+ position: relative;
+ text-align: center;
+ cursor: default;
+}
+
+#customize-control-header_image .inner {
+ display: none;
+ position: absolute;
+ width: 100%;
+ color: #555;
+ white-space: nowrap;
+ text-overflow: ellipsis;
+ overflow: hidden;
+}
+
+#customize-control-header_image .inner,
+#customize-control-header_image .inner .dashicons {
+ line-height: 20px;
+ top: 10px;
+}
+#customize-control-header_image .list .inner,
+#customize-control-header_image .list .inner .dashicons {
+ top: 9px;
+}
+
+#customize-control-header_image .header-view {
+ position: relative;
+ width: 100%;
+ margin-bottom: 5px;
+}
+
+#customize-control-header_image .header-view:last-child {
+ margin-bottom: 0px;
+}
+
+/* Convoluted, but 'outline' support isn't good enough yet */
+#customize-control-header_image .header-view:after {
+ border: 0;
+}
+#customize-control-header_image .header-view.selected:after {
+ content: '';
+ position: absolute;
+ height: auto;
+ top: 0; left: 0; bottom: 0; right: 0;
+ border: 4px solid #2ea2cc;
+ -webkit-border-radius: 2px;
+ border-radius: 2px;
+}
+#customize-control-header_image .header-view.button.selected {
+ border: 0;
+}
+
+/* Header control: overlay "close" button */
+
+#customize-control-header_image .uploaded .header-view .close {
+ font-size: 2em;
+ color: grey;
+ position: absolute;
+ visibility: hidden;
+ top: 10px;
+ right: 10px;
+ z-index: 1;
+ width: 20px;
+ height: 20px;
+ cursor: pointer;
+}
+
+#customize-control-header_image .uploaded .header-view .close:hover {
+ color: black;
+ text-shadow:
+ -1px -1px 0 #fff,
+ 1px -1px 0 #fff,
+ -1px 1px 0 #fff,
+ 1px 1px 0 #fff;
+}
+
+#customize-control-header_image .header-view:hover .close {
+ visibility: visible;
+}
+
+/* Header control: randomiz(s)er */
+
+#customize-control-header_image .random.placeholder {
+ cursor: pointer;
+ -webkit-border-radius: 2px;
+ border-radius: 2px;
+ height: 40px;
+}
+
+#customize-control-header_image button.random {
+ width: 100%;
+ height: auto;
+ min-height: 40px;
+ white-space: normal;
+}
+
+#customize-control-header_image button.random .dice {
+ margin-top: 4px;
+}
+
+#customize-control-header_image .placeholder:hover .dice,
+#customize-control-header_image .header-view:hover > button.random .dice {
+ -webkit-animation: dice-color-change 3s infinite;
+ -ms-animation: dice-color-change 3s infinite;
+ animation: dice-color-change 3s infinite;
+}
+
+@-webkit-keyframes dice-color-change {
+ 0% { color: #d4b146; }
+ 50% { color: #ef54b0; }
+ 75% { color: #7190d3; }
+ 100% { color: #d4b146; }
+}
+
+@-ms-keyframes dice-color-change {
+ 0% { color: #d4b146; }
+ 50% { color: #ef54b0; }
+ 75% { color: #7190d3; }
+ 100% { color: #d4b146; }
+}
+
+@keyframes dice-color-change {
+ 0% { color: #d4b146; }
+ 50% { color: #ef54b0; }
+ 75% { color: #7190d3; }
+ 100% { color: #d4b146; }
+}
+
+/* Header control: actions and choices */
+
+#customize-control-header_image .actions {
+ margin-bottom: 32px;
+}
+
+#customize-control-header_image .choice {
+ position: relative;
+ display: block;
+ margin-bottom: 9px;
+}
+
+#customize-control-header_image .uploaded div:last-child > .choice {
+ margin-bottom: 0;
+}
+
+#customize-control-header_image img {
+ width: 100%;
+ -webkit-border-radius: 2px;
+ border-radius: 2px;
+}
+
+#customize-control-header_image .remove {
+ float: left;
+ margin-right: 3px;
+}
+
+#customize-control-header_image .new {
+ float: right;
+}
+
+
+/** Handle cheaters. */
body.cheatin {
+ font-size: medium;
+ height: auto;
+ background: #fff;
+ margin: 50px auto 2em;
+ padding: 1em 2em;
+ max-width: 700px;
min-width: 0;
- background: #f9f9f9;
- padding: 50px;
+ -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.13);
+ box-shadow: 0 1px 3px rgba(0,0,0,0.13);
}
body.cheatin p {
- max-width: 700px;
- margin: 0 auto;
- padding: 2em;
font-size: 14px;
- background: #fff;
- border: 1px solid #dfdfdf;
- -webkit-border-radius: 3px;
- border-radius: 3px;
+ line-height: 1.5;
+ margin: 25px 0 20px;
}
diff --git a/sources/wp-admin/css/customize-controls.min.css b/sources/wp-admin/css/customize-controls.min.css
index a310000..99b3ab5 100644
--- a/sources/wp-admin/css/customize-controls.min.css
+++ b/sources/wp-admin/css/customize-controls.min.css
@@ -1 +1 @@
-body{overflow:hidden}#customize-controls a{text-decoration:none}#customize-info .accordion-section-content{background:transparent}#customize-info .preview-notice{font-size:13px;line-height:24px;color:#999}#customize-info .theme-name{font-size:20px;font-weight:200;line-height:24px;color:#333;display:block;text-shadow:0 1px 0 #fff}#customize-info .theme-screenshot{width:258px;border:1px solid #ccc}#customize-info .theme-description{margin-top:1em;color:#777;line-height:20px}#customize-controls .submit{text-align:center}#customize-theme-controls>ul,#customize-theme-controls .accordion-section-content{margin:0}#customize-header-actions .button-primary{float:right;margin-top:10px}#customize-header-actions .spinner{margin-top:16px;margin-right:4px}.saving #customize-header-actions .spinner{display:block}.customize-control{width:100%;float:left;clear:both;margin-bottom:8px}.customize-control-title{display:block;line-height:24px;font-weight:700}.customize-control select,.customize-control input[type=text],.customize-control input[type=radio],.customize-control input[type=checkbox],.customize-control-color .color-picker,.customize-control-checkbox label,.customize-control-upload div{line-height:28px}.customize-control input[type=text]{width:98%;line-height:18px;margin:0}.customize-control select{min-width:50%;max-width:100%;height:28px;line-height:28px}.customize-control-checkbox input{margin-right:5px}.customize-control-radio{padding:5px 0 10px}.customize-control-radio .customize-control-title{margin-bottom:0;line-height:22px}.customize-control-radio label{line-height:20px}.customize-control-radio input{margin-right:5px}#customize-preview iframe{width:100%;height:100%}#customize-theme-controls .accordion-section-title:hover:after,#customize-theme-controls .accordion-section-title:focus:after{border-color:#eee transparent}#customize-theme-controls .control-section:hover .accordion-section-title,#customize-theme-controls .control-section .accordion-section-title:hover,#customize-theme-controls .control-section.open .accordion-section-title,#customize-theme-controls .control-section .accordion-section-title:focus{color:#fff;text-shadow:0 -1px 0 #333;background:gray;background-image:-webkit-gradient(linear,left bottom,left top,from(#6d6d6d),to(gray));background-image:-webkit-linear-gradient(bottom,#6d6d6d,gray);background-image:-moz-linear-gradient(bottom,#6d6d6d,gray);background-image:-o-linear-gradient(bottom,#6d6d6d,gray);background-image:linear-gradient(to top,#6d6d6d,gray);border-left:1px solid gray;border-right:1px solid gray}#customize-theme-controls .control-section.accordion-section:hover,#customize-theme-controls .control-section.accordion-section.open{border-top-color:gray}#customize-theme-controls .control-section.open .accordion-section-title{border-bottom:1px solid #6d6d6d}.accordion-section .dropdown{float:left;display:block;position:relative;cursor:pointer;-webkit-border-radius:3px;border-radius:3px}.accordion-section .dropdown-content{overflow:hidden;float:left;min-width:30px;height:16px;line-height:16px;margin-right:16px;padding:4px 5px;background-color:#eee;border:1px solid #ccc;-webkit-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;-webkit-user-select:none;-moz-user-select:none;user-select:none}.customize-control .dropdown-arrow{position:absolute;top:0;bottom:0;right:0;width:15px;border-color:#ccc;border-style:solid;border-width:1px 1px 1px 0;-webkit-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0}.customize-control .dropdown-arrow:after{content:'';width:0;height:0;border-color:#ccc transparent;border-style:solid;border-width:4px 4px 0;position:absolute;top:50%;margin-top:-1px;right:4px;z-index:1}.accordion-section .dropdown:hover .dropdown-content,.customize-control .dropdown:hover .dropdown-arrow{border-color:#aaa}.accordion-section .dropdown:hover .dropdown-arrow:after{border-color:#aaa transparent}.customize-control .dropdown-status{display:none;max-width:112px;color:#777}.customize-control-color .color-picker-hex{display:none}.customize-control-color.open .color-picker-hex{display:block}.customize-control-color .dropdown{margin-right:5px;margin-bottom:5px}.customize-control-color .dropdown .dropdown-content{background-color:#fff;border:1px solid rgba(0,0,0,.15)}.customize-control-color .dropdown:hover .dropdown-content{border-color:rgba(0,0,0,.25)}.accordion-section input[type=text].color-picker-hex{width:65px;font-family:monospace;text-align:center;line-height:16px}.accordion-section input[type=text].color-picker-hex:focus::-webkit-input-placeholder{color:transparent}.accordion-section input[type=text].color-picker-hex:-moz-placeholder{color:#999}.customize-control-image .library,.customize-control-image .actions{display:none;float:left;width:100%}.customize-control-image.open .library,.customize-control-image.open .actions{display:block}.accordion-section .customize-control-image .dropdown-content{height:auto;min-height:24px;min-width:40px;padding:0}.accordion-section .customize-control-image .dropdown-status{padding:4px 5px}.accordion-section .customize-control-image .preview-thumbnail img{display:block;width:100%;max-width:122px;max-height:98px;margin:0 auto}.accordion-section .customize-control-image .actions{text-align:right}.accordion-section .customize-control-image .library ul{border-bottom:1px solid #dfdfdf;float:left;width:100%;margin:10px 0 0}.accordion-section .customize-control-image .library li{color:#999;float:left;padding:3px 5px;margin:0;border-style:solid;border-color:transparent;border-width:1px 1px 0}.accordion-section .customize-control-image .library li.library-selected{margin-bottom:-1px;padding-bottom:4px;color:#777;background:#fdfdfd;border-color:#dfdfdf;-webkit-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0}.accordion-section .customize-control-image .library-content{display:none;width:100%;float:left;padding:10px 0}.accordion-section .customize-control-image .library-content.library-selected{display:block}.accordion-section .customize-control-image .library .thumbnail{display:block;width:100%}.accordion-section .customize-control-image .library .thumbnail:hover img{border-color:#21759b}.accordion-section .customize-control-image .library .thumbnail img{display:block;max-width:90%;max-height:80px;margin:5px auto;padding:4px;background:#fff;border:1px solid #dfdfdf}.accordion-section .customize-control-upload .upload-fallback,.accordion-section .customize-control-image .upload-fallback{display:none}.accordion-section .customize-control-upload .upload-dropzone,.accordion-section .customize-control-image .upload-dropzone{display:none;padding:15px 10px;border:3px dashed #dfdfdf;margin:5px auto;text-align:center;color:#777;position:relative;cursor:default}.accordion-section .customize-control-upload .upload-dropzone.supports-drag-drop,.accordion-section .customize-control-image .upload-dropzone.supports-drag-drop{display:block;-webkit-transition:border-color .1s;-moz-transition:border-color .1s;-ms-transition:border-color .1s;-o-transition:border-color .1s;transition:border-color .1s}.accordion-section .customize-control-upload .library ul li,.accordion-section .customize-control-image .library ul li{cursor:pointer}.accordion-section .customize-control-upload .upload-dropzone.supports-drag-drop.drag-over,.accordion-section .customize-control-image .upload-dropzone.supports-drag-drop.drag-over{border-color:#83b4d8}.ios .wp-full-overlay{position:relative}.ios #customize-preview{position:relative}.ios #customize-controls .wp-full-overlay-sidebar-content{-webkit-overflow-scrolling:touch}body.cheatin{min-width:0;background:#f9f9f9;padding:50px}body.cheatin p{max-width:700px;margin:0 auto;padding:2em;font-size:14px;background:#fff;border:1px solid #dfdfdf;-webkit-border-radius:3px;border-radius:3px}
\ No newline at end of file
+body{overflow:hidden}#customize-controls a{text-decoration:none}#customize-controls h3{font-size:14px}#customize-controls .submit{text-align:center}#customize-controls .description{color:#666}#customize-header-actions .button-primary{float:right;margin-top:9px}#customize-header-actions .spinner{margin-top:16px;margin-right:4px}.saving #customize-header-actions .spinner{display:block}#customize-info{border:0;border-top:1px solid #ddd}#customize-info .accordion-section-title{background-color:#fff;color:#666;border-left:0;border-right:0;border-bottom:1px solid #eee}#customize-info .accordion-section-title:focus,#customize-info .accordion-section-title:focus:after,#customize-info .accordion-section-title:hover,#customize-info .accordion-section-title:hover:after,#customize-info.open .accordion-section-title,#customize-info.open .accordion-section-title:after{color:#555}#customize-info.open .accordion-section-title{border-color:transparent}#customize-info .preview-notice{font-size:13px;line-height:24px}#customize-info .theme-name{font-size:20px;font-weight:200;line-height:24px;display:block}#customize-info .theme-screenshot{width:258px}#customize-info .theme-description{margin-top:1em;color:#666;line-height:20px}#customize-theme-controls{-webkit-box-shadow:0 1px 1px -1px rgba(0,0,0,.1);box-shadow:0 1px 1px -1px rgba(0,0,0,.1)}#customize-theme-controls .control-section{border:0}#customize-theme-controls .accordion-section-title{color:#555;background-color:#fff;border-bottom:1px solid #eee}#customize-theme-controls .accordion-section-content{color:#555;background:#fff}#customize-theme-controls .control-section .accordion-section-title:focus,#customize-theme-controls .control-section .accordion-section-title:hover,#customize-theme-controls .control-section.open .accordion-section-title,#customize-theme-controls .control-section:hover .accordion-section-title{color:#555;background:#f5f5f5}.js .control-section .accordion-section-title:focus,.js .control-section .accordion-section-title:hover,.js .control-section.open .accordion-section-title,.js .control-section:hover .accordion-section-title{background:#f5f5f5}#customize-theme-controls .control-section .accordion-section-title:focus::after,#customize-theme-controls .control-section .accordion-section-title:hover::after,#customize-theme-controls .control-section.open .accordion-section-title::after,#customize-theme-controls .control-section:hover .accordion-section-title::after{color:#555}#customize-theme-controls .control-section.open{border-bottom:1px solid #eee}#customize-theme-controls .control-section.open .accordion-section-title{border-bottom-color:#eee!important}#customize-theme-controls .control-section:last-of-type .accordion-section-title,#customize-theme-controls .control-section:last-of-type.open{border-bottom-color:#ddd}#customize-theme-controls .accordion-section-content,#customize-theme-controls>ul{margin:0}.customize-control{width:100%;float:left;clear:both;margin-bottom:8px}.customize-control input[type=checkbox],.customize-control input[type=radio],.customize-control input[type=text],.customize-control select{line-height:28px}.customize-control input[type=text]{width:98%;line-height:18px;margin:0}.customize-control select{min-width:50%;max-width:100%;height:28px;line-height:28px}.customize-control select[multiple]{height:auto}.customize-control-title{display:block;font-size:14px;line-height:24px;font-weight:600;margin-bottom:5px}.customize-control-checkbox label,.customize-control-color .color-picker,.customize-control-upload div{line-height:28px}.customize-control-checkbox input{margin-right:5px}.customize-control-radio{padding:5px 0 10px}.customize-control-radio .customize-control-title{margin-bottom:0;line-height:22px}.customize-control-radio label{line-height:32px}.customize-control-radio input{margin-right:5px}#customize-preview iframe{width:100%;height:100%}.wp-full-overlay-sidebar{background:#eee;border-right:1px solid #ddd}.collapse-sidebar{background-color:transparent!important;border:0!important;-webkit-box-shadow:none!important;box-shadow:none!important;-webkit-border-radius:0!important;border-radius:0!important}.collapse-sidebar:active,.collapse-sidebar:active .collapse-sidebar-arrow:before,.collapse-sidebar:active .collapse-sidebar-label{text-shadow:none}.collapsed .collapse-sidebar-arrow:before{color:#888}.accordion-section .dropdown{float:left;display:block;position:relative;cursor:pointer}.accordion-section .dropdown-content{overflow:hidden;float:left;min-width:30px;height:16px;line-height:16px;margin-right:16px;padding:4px 5px;border:2px solid #eee;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.customize-control .dropdown-arrow{position:absolute;top:0;bottom:0;right:0;width:20px;background:#eee}.customize-control .dropdown-arrow:after{content:"\f140";font:400 20px/1 dashicons;speak:none;display:block;padding:0;text-indent:0;text-align:center;position:relative;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important;color:#333}.customize-control .dropdown-status{color:#333;background:#eee;display:none;max-width:112px}.customize-control-color .color-picker-hex{display:none}.customize-control-color.open .color-picker-hex{display:block}.customize-control-color .dropdown{margin-right:5px;margin-bottom:5px}.customize-control-color .dropdown .dropdown-content{background-color:#555;border:1px solid rgba(0,0,0,.15)}.customize-control-color .dropdown:hover .dropdown-content{border-color:rgba(0,0,0,.25)}.customize-control-image .actions,.customize-control-image .library{display:none;float:left;width:100%}.customize-control-image.open .actions,.customize-control-image.open .library{display:block}.accordion-section .customize-control-image .dropdown-content{height:auto;min-height:24px;min-width:40px;padding:0}.accordion-section .customize-control-image .dropdown-status{padding:4px 5px}.accordion-section .customize-control-image .preview-thumbnail img{display:block;width:100%;max-width:122px;max-height:98px;margin:0 auto}.accordion-section .customize-control-image .actions{text-align:right}.accordion-section .customize-control-image .library ul{border-bottom:1px solid #ddd;float:left;width:100%;margin:10px 0 0}.accordion-section .customize-control-image .library li{color:#ccc;float:left;padding:3px 15px;margin:0;border:1px solid transparent}.accordion-section .customize-control-image .library li.library-selected{margin-bottom:-1px;padding-bottom:4px;color:#666;border-color:#ddd;border-bottom-color:#fff}.accordion-section .customize-control-image .library .thumbnail{display:block;width:100%}.accordion-section .customize-control-image .library .thumbnail img{display:block;max-width:90%;max-height:80px;margin:5px auto;padding:2px;background:#666}.accordion-section .customize-control-image .library .thumbnail:hover img{background-color:#2ea2cc}.accordion-section .customize-control-image .library-content{display:none;width:100%;float:left;padding:10px 0}.accordion-section .customize-control-image .library-content.library-selected{display:block}.accordion-section .customize-control-image .upload-fallback,.accordion-section .customize-control-upload .upload-fallback{display:none}.accordion-section .customize-control-image .upload-dropzone,.accordion-section .customize-control-upload .upload-dropzone{display:none;padding:15px 10px;border:3px dashed #dfdfdf;margin:5px auto;text-align:center;position:relative;cursor:default}.accordion-section .customize-control-image .upload-dropzone.supports-drag-drop,.accordion-section .customize-control-upload .upload-dropzone.supports-drag-drop{display:block;-webkit-transition:border-color .1s;transition:border-color .1s}.accordion-section .customize-control-image .library ul li,.accordion-section .customize-control-upload .library ul li{cursor:pointer}.accordion-section .customize-control-image .upload-dropzone.supports-drag-drop.drag-over,.accordion-section .customize-control-upload .upload-dropzone.supports-drag-drop.drag-over{border-color:#83b4d8}.ios #customize-preview,.ios .wp-full-overlay{position:relative}.ios #customize-controls .wp-full-overlay-sidebar-content{-webkit-overflow-scrolling:touch}#customize-control-header_image .current{margin-bottom:8px}#customize-control-header_image .uploaded{margin-bottom:18px}#customize-control-header_image .default button:not(.random),#customize-control-header_image .uploaded button:not(.random){width:100%;padding:0;margin:0;background:0 0;border:0;color:inherit;cursor:pointer}#customize-control-header_image button img{display:block}#customize-control-header_image button.new,#customize-control-header_image button.remove{white-space:normal;width:48%;height:auto}#customize-control-header_image .current .container{overflow:hidden;border:1px solid #eee;-webkit-border-radius:2px;border-radius:2px}#customize-control-header_image .placeholder{width:100%;position:relative;text-align:center;cursor:default}#customize-control-header_image .inner{display:none;position:absolute;width:100%;color:#555;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}#customize-control-header_image .inner,#customize-control-header_image .inner .dashicons{line-height:20px;top:10px}#customize-control-header_image .list .inner,#customize-control-header_image .list .inner .dashicons{top:9px}#customize-control-header_image .header-view{position:relative;width:100%;margin-bottom:5px}#customize-control-header_image .header-view:last-child{margin-bottom:0}#customize-control-header_image .header-view:after{border:0}#customize-control-header_image .header-view.selected:after{content:'';position:absolute;height:auto;top:0;left:0;bottom:0;right:0;border:4px solid #2ea2cc;-webkit-border-radius:2px;border-radius:2px}#customize-control-header_image .header-view.button.selected{border:0}#customize-control-header_image .uploaded .header-view .close{font-size:2em;color:grey;position:absolute;visibility:hidden;top:10px;right:10px;z-index:1;width:20px;height:20px;cursor:pointer}#customize-control-header_image .uploaded .header-view .close:hover{color:#000;text-shadow:-1px -1px 0 #fff,1px -1px 0 #fff,-1px 1px 0 #fff,1px 1px 0 #fff}#customize-control-header_image .header-view:hover .close{visibility:visible}#customize-control-header_image .random.placeholder{cursor:pointer;-webkit-border-radius:2px;border-radius:2px;height:40px}#customize-control-header_image button.random{width:100%;height:auto;min-height:40px;white-space:normal}#customize-control-header_image button.random .dice{margin-top:4px}#customize-control-header_image .header-view:hover>button.random .dice,#customize-control-header_image .placeholder:hover .dice{-webkit-animation:dice-color-change 3s infinite;-ms-animation:dice-color-change 3s infinite;animation:dice-color-change 3s infinite}@-webkit-keyframes dice-color-change{0%{color:#d4b146}50%{color:#ef54b0}75%{color:#7190d3}100%{color:#d4b146}}@-ms-keyframes dice-color-change{0%{color:#d4b146}50%{color:#ef54b0}75%{color:#7190d3}100%{color:#d4b146}}@keyframes dice-color-change{0%{color:#d4b146}50%{color:#ef54b0}75%{color:#7190d3}100%{color:#d4b146}}#customize-control-header_image .actions{margin-bottom:32px}#customize-control-header_image .choice{position:relative;display:block;margin-bottom:9px}#customize-control-header_image .uploaded div:last-child>.choice{margin-bottom:0}#customize-control-header_image img{width:100%;-webkit-border-radius:2px;border-radius:2px}#customize-control-header_image .remove{float:left;margin-right:3px}#customize-control-header_image .new{float:right}body.cheatin{font-size:medium;height:auto;background:#fff;margin:50px auto 2em;padding:1em 2em;max-width:700px;min-width:0;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.13);box-shadow:0 1px 3px rgba(0,0,0,.13)}body.cheatin p{font-size:14px;line-height:1.5;margin:25px 0 20px}
\ No newline at end of file
diff --git a/sources/wp-admin/css/customize-widgets-rtl.css b/sources/wp-admin/css/customize-widgets-rtl.css
new file mode 100644
index 0000000..a26638e
--- /dev/null
+++ b/sources/wp-admin/css/customize-widgets-rtl.css
@@ -0,0 +1,603 @@
+.wp-full-overlay-sidebar {
+ overflow: visible;
+}
+
+/**
+ * Hide all sidebar sections by default, only show them (via JS) once the
+ * preview loads and we know whether the sidebars are used in the template.
+ */
+
+.control-section[id^="accordion-section-sidebar-widgets-"],
+.customize-control-sidebar_widgets label,
+.customize-control-sidebar_widgets .hide-if-js {
+ /* The link in .customize-control-sidebar_widgets .hide-if-js will fail if it ever gets used. */
+ display:none;
+}
+
+.customize-control-widget_form .widget-top {
+ -webkit-transition: opacity 0.5s;
+ transition: opacity 0.5s;
+}
+
+.customize-control-widget_form:not(.widget-rendered) .widget-top {
+ opacity: 0.5;
+}
+
+.customize-control-widget_form .widget-control-save,
+.customize-control-widget_form .spinner {
+ display: none;
+}
+
+.customize-control-widget_form.previewer-loading .spinner {
+ display: inline;
+}
+
+.customize-control-widget_form.widget-form-disabled .widget-content {
+ opacity: 0.7;
+ pointer-events: none;
+ -moz-user-select: none;
+ -webkit-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
+
+.customize-control-widget_form .widget {
+ margin-bottom: 0;
+}
+
+.customize-control-widget_form.wide-widget-control .widget-inside {
+ position: fixed;
+ right: 299px;
+ top: 25%;
+ border: 1px solid rgb(229, 229, 229);
+ overflow: auto;
+}
+.customize-control-widget_form.wide-widget-control .widget-inside > .form {
+ padding: 20px;
+}
+
+.customize-control-widget_form.wide-widget-control .widget-top {
+ -webkit-transition: background-color 0.4s;
+ transition: background-color 0.4s;
+}
+.customize-control-widget_form.wide-widget-control.expanding .widget-top,
+.customize-control-widget_form.wide-widget-control.expanded:not(.collapsing) .widget-top {
+ background-color: rgb(227, 227, 227);
+}
+
+.widget-inside {
+ padding: 1px 10px 10px 10px;
+ border-top: none;
+ line-height: 16px;
+}
+
+.widget-top {
+ cursor: move;
+}
+
+.customize-control-widget_form.expanded a.widget-action:after {
+ content: "\f142";
+}
+
+.customize-control-widget_form.wide-widget-control a.widget-action:after {
+ content: "\f139";
+}
+
+.customize-control-widget_form.wide-widget-control.expanded a.widget-action:after {
+ content: "\f141";
+}
+
+.widget-title-action {
+ cursor: pointer;
+}
+
+.customize-control-widget_form .widget .customize-control-title {
+ cursor: move;
+}
+
+.control-section.accordion-section.highlighted > .accordion-section-title,
+.customize-control-widget_form.highlighted {
+ outline: none;
+ -webkit-box-shadow: 0 0 2px rgba(30,140,190,0.8);
+ box-shadow: 0 0 2px rgba(30,140,190,0.8);
+ position: relative;
+ z-index: 1;
+}
+
+#widget-customizer-control-templates {
+ display: none;
+}
+
+/**
+* Widget reordering styles
+**/
+
+.reorder-toggle {
+ float: left;
+ padding: 5px 8px;
+ text-decoration: none;
+ cursor: pointer;
+ outline: none;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
+.reorder-toggle:focus {
+ outline: 1px dotted;
+}
+
+.reorder-done,
+.reordering .reorder {
+ display: none;
+}
+
+.reordering .reorder-done {
+ display: block;
+ color: #aa0000;
+}
+
+#customize-theme-controls .reordering .add-new-widget {
+ opacity: 0.2;
+ pointer-events: none;
+ cursor: not-allowed;
+}
+
+#customize-theme-controls .widget-reorder-nav {
+ display: none;
+ float: left;
+ background-color: #fafafa;
+}
+
+.widget-reorder-nav span {
+ position: relative;
+ overflow: hidden;
+ float: right;
+ display: block;
+ width: 33px; /* was 42px for mobile */
+ height: 43px;
+ color: #888;
+ text-indent: -9999px;
+ cursor: pointer;
+ outline: none;
+}
+
+.widget-reorder-nav span:before {
+ display: inline-block;
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ font: normal 20px/43px 'dashicons';
+ text-align: center;
+ text-indent: 0;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+.widget-reorder-nav span:hover,
+.widget-reorder-nav span:focus {
+ color: #444;
+ background: #eee;
+}
+
+.move-widget:before {
+ content: '\f504';
+}
+
+.move-widget-down:before {
+ content: '\f347';
+}
+
+.move-widget-up:before {
+ content: '\f343';
+}
+
+#customize-theme-controls .first-widget .move-widget-up,
+#customize-theme-controls .last-widget .move-widget-down {
+ color: #d5d5d5;
+ cursor: default;
+}
+
+#customize-theme-controls .move-widget-area {
+ display: none;
+ background: #fff;
+ border: 1px solid #dedede;
+ border-top: none;
+ cursor: auto;
+}
+
+#customize-theme-controls .reordering .move-widget-area.active {
+ display: block;
+}
+
+#customize-theme-controls .move-widget-area .description {
+ margin: 0;
+ padding: 15px 20px;
+ font-weight: 400;
+}
+
+#customize-theme-controls .widget-area-select {
+ margin: 0;
+ padding: 0;
+ list-style: none;
+}
+
+#customize-theme-controls .widget-area-select li {
+ position: relative;
+ margin: 0;
+ padding: 13px 42px 15px 15px;
+ color: #555;
+ border-top: 1px solid #eee;
+ cursor: pointer;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
+
+#customize-theme-controls .widget-area-select li:before {
+ display: none;
+ content: '\f147';
+ position: absolute;
+ top: 12px;
+ right: 10px;
+ font: normal 20px/1 'dashicons';
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+#customize-theme-controls .widget-area-select li:last-child {
+ border-bottom: 1px solid #eee;
+}
+
+#customize-theme-controls .widget-area-select .selected {
+ color: #fff;
+ text-shadow: 0 -1px 0 rgba(0,0,0,.4);
+ background: #2ea2cc;
+}
+
+#customize-theme-controls .widget-area-select .selected:before {
+ display: block;
+}
+
+#customize-theme-controls .move-widget-actions {
+ text-align: left;
+ padding: 12px;
+}
+
+#customize-theme-controls .reordering .widget-title-action {
+ display: none;
+}
+
+#customize-theme-controls .reordering .widget-reorder-nav {
+ display: block;
+}
+
+
+/**
+ * Styles for new widget addition panel
+ */
+.wp-full-overlay-main {
+ left: auto; /* this overrides a right: 0; which causes the preview to resize, I'd rather have it go off screen at the normal size. */
+ width: 100%;
+}
+
+#customize-theme-controls .add-new-widget {
+ cursor: pointer;
+ float: left;
+ margin-right: 10px;
+ -webkit-transition: all 0.2s;
+ transition: all 0.2s;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ outline: none;
+}
+
+.add-new-widget:before {
+ content: "\f132";
+ display: inline-block;
+ position: relative;
+ right: -2px;
+ top: -1px;
+ font: normal 20px/1 'dashicons';
+ vertical-align: middle;
+ -webkit-transition: all 0.2s;
+ transition: all 0.2s;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+body.adding-widget .add-new-widget,
+body.adding-widget .add-new-widget:hover {
+ background: #eee;
+ border-color: #999;
+ color: #333;
+ -webkit-box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
+ box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
+}
+body.adding-widget .add-new-widget:before {
+ -webkit-transform: rotate(45deg);
+ -ms-transform: rotate(45deg);
+ transform: rotate(45deg);
+}
+
+#available-widgets .widget {
+ position: static;
+}
+
+/* override widgets admin page rules in wp-admin/css/wp-admin.css */
+#widgets-left #available-widgets .widget {
+ float: none !important;
+ width: auto !important;
+}
+
+#available-widgets {
+ position: absolute;
+ overflow: auto;
+ top: 0;
+ bottom: 0;
+ right: -301px;
+ width: 300px;
+ margin: 0;
+ z-index: 1;
+ background: #fff;
+ -webkit-transition: all 0.2s;
+ transition: all 0.2s;
+ border-left: 1px solid #dddddd;
+}
+
+#available-widgets-filter {
+ padding: 8px 13px 7px 17px;
+ border-bottom: 1px solid #e4e4e4;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}
+
+#available-widgets-filter input {
+ padding: 5px 10px 2px 10px;
+ width: 100%;
+}
+
+#available-widgets .widget-tpl {
+ position: relative;
+ padding: 20px 60px 20px 15px;
+ border-bottom: 1px solid #e4e4e4;
+ cursor: pointer;
+ display: none;
+}
+
+#available-widgets .widget-tpl:hover,
+#available-widgets .widget-tpl.selected {
+ background: #fafafa;
+}
+
+#available-widgets .widget-top,
+#available-widgets .widget-top:hover {
+ border: none;
+ background: transparent;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+#available-widgets .widget-title h4 {
+ padding: 0 0 5px;
+ font-size: 14px;
+}
+
+#available-widgets .widget .widget-description {
+ padding: 0;
+ color: #777;
+}
+
+#customize-preview {
+ -webkit-transition: all 0.2s;
+ transition: all 0.2s;
+}
+
+body.adding-widget #available-widgets {
+ right: 0;
+}
+
+body.adding-widget .wp-full-overlay-main {
+ right: 300px;
+}
+
+body.adding-widget #customize-preview {
+ opacity: 0.4;
+}
+
+
+/**
+ * Widget Icon styling
+ * No plurals in naming.
+ * Ordered from lowest to highest specificity.
+ **/
+#available-widgets .widget-title {
+ position: relative;
+}
+
+#available-widgets .widget-title:before {
+ content: "\f132";
+ position: absolute;
+ top: -3px;
+ left: 100%;
+ margin-left: 20px;
+ width: 20px;
+ height: 20px;
+ color: #333;
+ font: normal 20px/1 'dashicons';
+ text-align: center;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+/* smiley */
+#available-widgets [class*="easy"] .widget-title:before { content: "\f328"; top: -4px; }
+
+/* star-filled */
+#available-widgets [class*="super"] .widget-title:before,
+#available-widgets [class*="like"] .widget-title:before { content: "\f155"; top: -4px; }
+
+/* wordpress */
+#available-widgets [class*="meta"] .widget-title:before { content: "\f120"; }
+
+/* archive-box */
+#available-widgets [class*="archives"] .widget-title:before { content: "\f480"; top: -4px; }
+
+/* category */
+#available-widgets [class*="categor"] .widget-title:before { content: "\f318"; top: -4px; }
+
+/* comments */
+#available-widgets [class*="comment"] .widget-title:before,
+#available-widgets [class*="testimonial"] .widget-title:before,
+#available-widgets [class*="chat"] .widget-title:before { content: "\f101"; }
+
+/* post */
+#available-widgets [class*="post"] .widget-title:before { content: "\f109"; }
+
+/* admin-page */
+#available-widgets [class*="page"] .widget-title:before { content: "\f105"; }
+
+/* text */
+#available-widgets [class*="text"] .widget-title:before { content: "\f478"; }
+
+/* links */
+#available-widgets [class*="link"] .widget-title:before { content: "\f103"; }
+
+/* search */
+#available-widgets [class*="search"] .widget-title:before { content: "\f179"; }
+
+/* menu */
+#available-widgets [class*="menu"] .widget-title:before,
+#available-widgets [class*="nav"] .widget-title:before { content: "\f333"; }
+
+/* tag-cloud */
+#available-widgets [class*="tag"] .widget-title:before { content: "\f479"; }
+
+/* rss */
+#available-widgets [class*="rss"] .widget-title:before { content: "\f303"; top: -6px; }
+
+/* calendar */
+#available-widgets [class*="event"] .widget-title:before,
+#available-widgets [class*="calendar"] .widget-title:before { content: "\f145"; top: -4px;}
+
+/* format-image */
+#available-widgets [class*="image"] .widget-title:before,
+#available-widgets [class*="photo"] .widget-title:before,
+#available-widgets [class*="slide"] .widget-title:before,
+#available-widgets [class*="instagram"] .widget-title:before { content: "\f128"; }
+
+/* format-gallery */
+#available-widgets [class*="album"] .widget-title:before,
+#available-widgets [class*="galler"] .widget-title:before { content: "\f161"; }
+
+/* format-video */
+#available-widgets [class*="video"] .widget-title:before,
+#available-widgets [class*="tube"] .widget-title:before { content: "\f126"; }
+
+/* format-audio */
+#available-widgets [class*="music"] .widget-title:before,
+#available-widgets [class*="radio"] .widget-title:before,
+#available-widgets [class*="audio"] .widget-title:before { content: "\f127"; }
+
+/* admin-users */
+#available-widgets [class*="login"] .widget-title:before,
+#available-widgets [class*="user"] .widget-title:before,
+#available-widgets [class*="member"] .widget-title:before,
+#available-widgets [class*="avatar"] .widget-title:before,
+#available-widgets [class*="subscriber"] .widget-title:before,
+#available-widgets [class*="profile"] .widget-title:before,
+#available-widgets [class*="grofile"] .widget-title:before { content: "\f110"; }
+
+/* cart */
+#available-widgets [class*="commerce"] .widget-title:before,
+#available-widgets [class*="shop"] .widget-title:before,
+#available-widgets [class*="cart"] .widget-title:before { content: "\f174"; top: -4px; }
+
+/* shield */
+#available-widgets [class*="secur"] .widget-title:before,
+#available-widgets [class*="firewall"] .widget-title:before { content: "\f332"; }
+
+/* chart-bar */
+#available-widgets [class*="analytic"] .widget-title:before,
+#available-widgets [class*="stat"] .widget-title:before,
+#available-widgets [class*="poll"] .widget-title:before { content: "\f185"; }
+
+/* feedback */
+#available-widgets [class*="form"] .widget-title:before { content: "\f175"; }
+
+/* email-alt */
+#available-widgets [class*="subscribe"] .widget-title:before,
+#available-widgets [class*="news"] .widget-title:before,
+#available-widgets [class*="contact"] .widget-title:before,
+#available-widgets [class*="mail"] .widget-title:before { content: "\f466"; }
+
+/* share */
+#available-widgets [class*="share"] .widget-title:before,
+#available-widgets [class*="socia"] .widget-title:before { content: "\f237"; }
+
+/* translation */
+#available-widgets [class*="lang"] .widget-title:before,
+#available-widgets [class*="translat"] .widget-title:before { content: "\f326"; }
+
+/* location-alt */
+#available-widgets [class*="locat"] .widget-title:before,
+#available-widgets [class*="map"] .widget-title:before { content: "\f231"; }
+
+/* download */
+#available-widgets [class*="download"] .widget-title:before { content: "\f316"; }
+
+/* cloud */
+#available-widgets [class*="weather"] .widget-title:before { content: "\f176"; top: -4px;}
+
+/* facebook */
+#available-widgets [class*="facebook"] .widget-title:before { content: "\f304"; }
+
+/* twitter */
+#available-widgets [class*="tweet"] .widget-title:before,
+#available-widgets [class*="twitter"] .widget-title:before { content: "\f301"; }
+
+
+@media screen and (max-height: 700px) and (min-width: 981px) {
+ .customize-control {
+ margin-bottom: 0;
+ }
+ .widget-top {
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ margin-top: -1px;
+ }
+ .widget-top:hover {
+ position: relative;
+ z-index: 1;
+ }
+ .last-widget {
+ margin-bottom: 15px;
+ }
+ .widget-title h4 {
+ padding: 13px 15px;
+ }
+ .widget-top a.widget-action:after {
+ padding-top: 9px;
+ }
+ .widget-reorder-nav span {
+ height: 39px;
+ }
+ .widget-reorder-nav span:before {
+ line-height: 39px;
+ }
+ #customize-theme-controls .widget-area-select li {
+ padding: 9px 42px 11px 15px;
+ }
+ #customize-theme-controls .widget-area-select li:before {
+ top: 8px;
+ }
+}
diff --git a/sources/wp-admin/css/customize-widgets-rtl.min.css b/sources/wp-admin/css/customize-widgets-rtl.min.css
new file mode 100644
index 0000000..f8bd054
--- /dev/null
+++ b/sources/wp-admin/css/customize-widgets-rtl.min.css
@@ -0,0 +1 @@
+.wp-full-overlay-sidebar{overflow:visible}.control-section[id^=accordion-section-sidebar-widgets-],.customize-control-sidebar_widgets .hide-if-js,.customize-control-sidebar_widgets label{display:none}.customize-control-widget_form .widget-top{-webkit-transition:opacity .5s;transition:opacity .5s}.customize-control-widget_form:not(.widget-rendered) .widget-top{opacity:.5}.customize-control-widget_form .spinner,.customize-control-widget_form .widget-control-save{display:none}.customize-control-widget_form.previewer-loading .spinner{display:inline}.customize-control-widget_form.widget-form-disabled .widget-content{opacity:.7;pointer-events:none;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.customize-control-widget_form .widget{margin-bottom:0}.customize-control-widget_form.wide-widget-control .widget-inside{position:fixed;right:299px;top:25%;border:1px solid #e5e5e5;overflow:auto}.customize-control-widget_form.wide-widget-control .widget-inside>.form{padding:20px}.customize-control-widget_form.wide-widget-control .widget-top{-webkit-transition:background-color .4s;transition:background-color .4s}.customize-control-widget_form.wide-widget-control.expanded:not(.collapsing) .widget-top,.customize-control-widget_form.wide-widget-control.expanding .widget-top{background-color:#e3e3e3}.widget-inside{padding:1px 10px 10px;border-top:0;line-height:16px}.widget-top{cursor:move}.customize-control-widget_form.expanded a.widget-action:after{content:"\f142"}.customize-control-widget_form.wide-widget-control a.widget-action:after{content:"\f139"}.customize-control-widget_form.wide-widget-control.expanded a.widget-action:after{content:"\f141"}.widget-title-action{cursor:pointer}.customize-control-widget_form .widget .customize-control-title{cursor:move}.control-section.accordion-section.highlighted>.accordion-section-title,.customize-control-widget_form.highlighted{outline:0;-webkit-box-shadow:0 0 2px rgba(30,140,190,.8);box-shadow:0 0 2px rgba(30,140,190,.8);position:relative;z-index:1}#widget-customizer-control-templates{display:none}.reorder-toggle{float:left;padding:5px 8px;text-decoration:none;cursor:pointer;outline:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.reorder-toggle:focus{outline:1px dotted}.reorder-done,.reordering .reorder{display:none}.reordering .reorder-done{display:block;color:#a00}#customize-theme-controls .reordering .add-new-widget{opacity:.2;pointer-events:none;cursor:not-allowed}#customize-theme-controls .widget-reorder-nav{display:none;float:left;background-color:#fafafa}.widget-reorder-nav span{position:relative;overflow:hidden;float:right;display:block;width:33px;height:43px;color:#888;text-indent:-9999px;cursor:pointer;outline:0}.widget-reorder-nav span:before{display:inline-block;position:absolute;top:0;left:0;width:100%;height:100%;font:400 20px/43px dashicons;text-align:center;text-indent:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.widget-reorder-nav span:focus,.widget-reorder-nav span:hover{color:#444;background:#eee}.move-widget:before{content:'\f504'}.move-widget-down:before{content:'\f347'}.move-widget-up:before{content:'\f343'}#customize-theme-controls .first-widget .move-widget-up,#customize-theme-controls .last-widget .move-widget-down{color:#d5d5d5;cursor:default}#customize-theme-controls .move-widget-area{display:none;background:#fff;border:1px solid #dedede;border-top:0;cursor:auto}#customize-theme-controls .reordering .move-widget-area.active{display:block}#customize-theme-controls .move-widget-area .description{margin:0;padding:15px 20px;font-weight:400}#customize-theme-controls .widget-area-select{margin:0;padding:0;list-style:none}#customize-theme-controls .widget-area-select li{position:relative;margin:0;padding:13px 42px 15px 15px;color:#555;border-top:1px solid #eee;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#customize-theme-controls .widget-area-select li:before{display:none;content:'\f147';position:absolute;top:12px;right:10px;font:400 20px/1 dashicons;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#customize-theme-controls .widget-area-select li:last-child{border-bottom:1px solid #eee}#customize-theme-controls .widget-area-select .selected{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.4);background:#2ea2cc}#customize-theme-controls .widget-area-select .selected:before{display:block}#customize-theme-controls .move-widget-actions{text-align:left;padding:12px}#customize-theme-controls .reordering .widget-title-action{display:none}#customize-theme-controls .reordering .widget-reorder-nav{display:block}.wp-full-overlay-main{left:auto;width:100%}#customize-theme-controls .add-new-widget{cursor:pointer;float:left;margin-right:10px;-webkit-transition:all .2s;transition:all .2s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;outline:0}.add-new-widget:before{content:"\f132";display:inline-block;position:relative;right:-2px;top:-1px;font:400 20px/1 dashicons;vertical-align:middle;-webkit-transition:all .2s;transition:all .2s;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body.adding-widget .add-new-widget,body.adding-widget .add-new-widget:hover{background:#eee;border-color:#999;color:#333;-webkit-box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5);box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5)}body.adding-widget .add-new-widget:before{-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}#available-widgets .widget{position:static}#widgets-left #available-widgets .widget{float:none!important;width:auto!important}#available-widgets{position:absolute;overflow:auto;top:0;bottom:0;right:-301px;width:300px;margin:0;z-index:1;background:#fff;-webkit-transition:all .2s;transition:all .2s;border-left:1px solid #ddd}#available-widgets-filter{padding:8px 13px 7px 17px;border-bottom:1px solid #e4e4e4;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#available-widgets-filter input{padding:5px 10px 2px;width:100%}#available-widgets .widget-tpl{position:relative;padding:20px 60px 20px 15px;border-bottom:1px solid #e4e4e4;cursor:pointer;display:none}#available-widgets .widget-tpl.selected,#available-widgets .widget-tpl:hover{background:#fafafa}#available-widgets .widget-top,#available-widgets .widget-top:hover{border:0;background:0 0;-webkit-box-shadow:none;box-shadow:none}#available-widgets .widget-title h4{padding:0 0 5px;font-size:14px}#available-widgets .widget .widget-description{padding:0;color:#777}#customize-preview{-webkit-transition:all .2s;transition:all .2s}body.adding-widget #available-widgets{right:0}body.adding-widget .wp-full-overlay-main{right:300px}body.adding-widget #customize-preview{opacity:.4}#available-widgets .widget-title{position:relative}#available-widgets .widget-title:before{content:"\f132";position:absolute;top:-3px;left:100%;margin-left:20px;width:20px;height:20px;color:#333;font:400 20px/1 dashicons;text-align:center;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#available-widgets [class*=easy] .widget-title:before{content:"\f328";top:-4px}#available-widgets [class*=like] .widget-title:before,#available-widgets [class*=super] .widget-title:before{content:"\f155";top:-4px}#available-widgets [class*=meta] .widget-title:before{content:"\f120"}#available-widgets [class*=archives] .widget-title:before{content:"\f480";top:-4px}#available-widgets [class*=categor] .widget-title:before{content:"\f318";top:-4px}#available-widgets [class*=chat] .widget-title:before,#available-widgets [class*=comment] .widget-title:before,#available-widgets [class*=testimonial] .widget-title:before{content:"\f101"}#available-widgets [class*=post] .widget-title:before{content:"\f109"}#available-widgets [class*=page] .widget-title:before{content:"\f105"}#available-widgets [class*=text] .widget-title:before{content:"\f478"}#available-widgets [class*=link] .widget-title:before{content:"\f103"}#available-widgets [class*=search] .widget-title:before{content:"\f179"}#available-widgets [class*=menu] .widget-title:before,#available-widgets [class*=nav] .widget-title:before{content:"\f333"}#available-widgets [class*=tag] .widget-title:before{content:"\f479"}#available-widgets [class*=rss] .widget-title:before{content:"\f303";top:-6px}#available-widgets [class*=calendar] .widget-title:before,#available-widgets [class*=event] .widget-title:before{content:"\f145";top:-4px}#available-widgets [class*=image] .widget-title:before,#available-widgets [class*=instagram] .widget-title:before,#available-widgets [class*=photo] .widget-title:before,#available-widgets [class*=slide] .widget-title:before{content:"\f128"}#available-widgets [class*=album] .widget-title:before,#available-widgets [class*=galler] .widget-title:before{content:"\f161"}#available-widgets [class*=tube] .widget-title:before,#available-widgets [class*=video] .widget-title:before{content:"\f126"}#available-widgets [class*=audio] .widget-title:before,#available-widgets [class*=music] .widget-title:before,#available-widgets [class*=radio] .widget-title:before{content:"\f127"}#available-widgets [class*=avatar] .widget-title:before,#available-widgets [class*=grofile] .widget-title:before,#available-widgets [class*=login] .widget-title:before,#available-widgets [class*=member] .widget-title:before,#available-widgets [class*=profile] .widget-title:before,#available-widgets [class*=subscriber] .widget-title:before,#available-widgets [class*=user] .widget-title:before{content:"\f110"}#available-widgets [class*=cart] .widget-title:before,#available-widgets [class*=commerce] .widget-title:before,#available-widgets [class*=shop] .widget-title:before{content:"\f174";top:-4px}#available-widgets [class*=firewall] .widget-title:before,#available-widgets [class*=secur] .widget-title:before{content:"\f332"}#available-widgets [class*=analytic] .widget-title:before,#available-widgets [class*=poll] .widget-title:before,#available-widgets [class*=stat] .widget-title:before{content:"\f185"}#available-widgets [class*=form] .widget-title:before{content:"\f175"}#available-widgets [class*=contact] .widget-title:before,#available-widgets [class*=mail] .widget-title:before,#available-widgets [class*=news] .widget-title:before,#available-widgets [class*=subscribe] .widget-title:before{content:"\f466"}#available-widgets [class*=share] .widget-title:before,#available-widgets [class*=socia] .widget-title:before{content:"\f237"}#available-widgets [class*=lang] .widget-title:before,#available-widgets [class*=translat] .widget-title:before{content:"\f326"}#available-widgets [class*=locat] .widget-title:before,#available-widgets [class*=map] .widget-title:before{content:"\f231"}#available-widgets [class*=download] .widget-title:before{content:"\f316"}#available-widgets [class*=weather] .widget-title:before{content:"\f176";top:-4px}#available-widgets [class*=facebook] .widget-title:before{content:"\f304"}#available-widgets [class*=tweet] .widget-title:before,#available-widgets [class*=twitter] .widget-title:before{content:"\f301"}@media screen and (max-height:700px) and (min-width:981px){.customize-control{margin-bottom:0}.widget-top{-webkit-box-shadow:none;box-shadow:none;margin-top:-1px}.widget-top:hover{position:relative;z-index:1}.last-widget{margin-bottom:15px}.widget-title h4{padding:13px 15px}.widget-top a.widget-action:after{padding-top:9px}.widget-reorder-nav span{height:39px}.widget-reorder-nav span:before{line-height:39px}#customize-theme-controls .widget-area-select li{padding:9px 42px 11px 15px}#customize-theme-controls .widget-area-select li:before{top:8px}}
\ No newline at end of file
diff --git a/sources/wp-admin/css/customize-widgets.css b/sources/wp-admin/css/customize-widgets.css
new file mode 100644
index 0000000..f025f79
--- /dev/null
+++ b/sources/wp-admin/css/customize-widgets.css
@@ -0,0 +1,603 @@
+.wp-full-overlay-sidebar {
+ overflow: visible;
+}
+
+/**
+ * Hide all sidebar sections by default, only show them (via JS) once the
+ * preview loads and we know whether the sidebars are used in the template.
+ */
+
+.control-section[id^="accordion-section-sidebar-widgets-"],
+.customize-control-sidebar_widgets label,
+.customize-control-sidebar_widgets .hide-if-js {
+ /* The link in .customize-control-sidebar_widgets .hide-if-js will fail if it ever gets used. */
+ display:none;
+}
+
+.customize-control-widget_form .widget-top {
+ -webkit-transition: opacity 0.5s;
+ transition: opacity 0.5s;
+}
+
+.customize-control-widget_form:not(.widget-rendered) .widget-top {
+ opacity: 0.5;
+}
+
+.customize-control-widget_form .widget-control-save,
+.customize-control-widget_form .spinner {
+ display: none;
+}
+
+.customize-control-widget_form.previewer-loading .spinner {
+ display: inline;
+}
+
+.customize-control-widget_form.widget-form-disabled .widget-content {
+ opacity: 0.7;
+ pointer-events: none;
+ -moz-user-select: none;
+ -webkit-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
+
+.customize-control-widget_form .widget {
+ margin-bottom: 0;
+}
+
+.customize-control-widget_form.wide-widget-control .widget-inside {
+ position: fixed;
+ left: 299px;
+ top: 25%;
+ border: 1px solid rgb(229, 229, 229);
+ overflow: auto;
+}
+.customize-control-widget_form.wide-widget-control .widget-inside > .form {
+ padding: 20px;
+}
+
+.customize-control-widget_form.wide-widget-control .widget-top {
+ -webkit-transition: background-color 0.4s;
+ transition: background-color 0.4s;
+}
+.customize-control-widget_form.wide-widget-control.expanding .widget-top,
+.customize-control-widget_form.wide-widget-control.expanded:not(.collapsing) .widget-top {
+ background-color: rgb(227, 227, 227);
+}
+
+.widget-inside {
+ padding: 1px 10px 10px 10px;
+ border-top: none;
+ line-height: 16px;
+}
+
+.widget-top {
+ cursor: move;
+}
+
+.customize-control-widget_form.expanded a.widget-action:after {
+ content: "\f142";
+}
+
+.customize-control-widget_form.wide-widget-control a.widget-action:after {
+ content: "\f139";
+}
+
+.customize-control-widget_form.wide-widget-control.expanded a.widget-action:after {
+ content: "\f141";
+}
+
+.widget-title-action {
+ cursor: pointer;
+}
+
+.customize-control-widget_form .widget .customize-control-title {
+ cursor: move;
+}
+
+.control-section.accordion-section.highlighted > .accordion-section-title,
+.customize-control-widget_form.highlighted {
+ outline: none;
+ -webkit-box-shadow: 0 0 2px rgba(30,140,190,0.8);
+ box-shadow: 0 0 2px rgba(30,140,190,0.8);
+ position: relative;
+ z-index: 1;
+}
+
+#widget-customizer-control-templates {
+ display: none;
+}
+
+/**
+* Widget reordering styles
+**/
+
+.reorder-toggle {
+ float: right;
+ padding: 5px 8px;
+ text-decoration: none;
+ cursor: pointer;
+ outline: none;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
+.reorder-toggle:focus {
+ outline: 1px dotted;
+}
+
+.reorder-done,
+.reordering .reorder {
+ display: none;
+}
+
+.reordering .reorder-done {
+ display: block;
+ color: #aa0000;
+}
+
+#customize-theme-controls .reordering .add-new-widget {
+ opacity: 0.2;
+ pointer-events: none;
+ cursor: not-allowed;
+}
+
+#customize-theme-controls .widget-reorder-nav {
+ display: none;
+ float: right;
+ background-color: #fafafa;
+}
+
+.widget-reorder-nav span {
+ position: relative;
+ overflow: hidden;
+ float: left;
+ display: block;
+ width: 33px; /* was 42px for mobile */
+ height: 43px;
+ color: #888;
+ text-indent: -9999px;
+ cursor: pointer;
+ outline: none;
+}
+
+.widget-reorder-nav span:before {
+ display: inline-block;
+ position: absolute;
+ top: 0;
+ right: 0;
+ width: 100%;
+ height: 100%;
+ font: normal 20px/43px 'dashicons';
+ text-align: center;
+ text-indent: 0;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+.widget-reorder-nav span:hover,
+.widget-reorder-nav span:focus {
+ color: #444;
+ background: #eee;
+}
+
+.move-widget:before {
+ content: '\f504';
+}
+
+.move-widget-down:before {
+ content: '\f347';
+}
+
+.move-widget-up:before {
+ content: '\f343';
+}
+
+#customize-theme-controls .first-widget .move-widget-up,
+#customize-theme-controls .last-widget .move-widget-down {
+ color: #d5d5d5;
+ cursor: default;
+}
+
+#customize-theme-controls .move-widget-area {
+ display: none;
+ background: #fff;
+ border: 1px solid #dedede;
+ border-top: none;
+ cursor: auto;
+}
+
+#customize-theme-controls .reordering .move-widget-area.active {
+ display: block;
+}
+
+#customize-theme-controls .move-widget-area .description {
+ margin: 0;
+ padding: 15px 20px;
+ font-weight: 400;
+}
+
+#customize-theme-controls .widget-area-select {
+ margin: 0;
+ padding: 0;
+ list-style: none;
+}
+
+#customize-theme-controls .widget-area-select li {
+ position: relative;
+ margin: 0;
+ padding: 13px 15px 15px 42px;
+ color: #555;
+ border-top: 1px solid #eee;
+ cursor: pointer;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
+
+#customize-theme-controls .widget-area-select li:before {
+ display: none;
+ content: '\f147';
+ position: absolute;
+ top: 12px;
+ left: 10px;
+ font: normal 20px/1 'dashicons';
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+#customize-theme-controls .widget-area-select li:last-child {
+ border-bottom: 1px solid #eee;
+}
+
+#customize-theme-controls .widget-area-select .selected {
+ color: #fff;
+ text-shadow: 0 -1px 0 rgba(0,0,0,.4);
+ background: #2ea2cc;
+}
+
+#customize-theme-controls .widget-area-select .selected:before {
+ display: block;
+}
+
+#customize-theme-controls .move-widget-actions {
+ text-align: right;
+ padding: 12px;
+}
+
+#customize-theme-controls .reordering .widget-title-action {
+ display: none;
+}
+
+#customize-theme-controls .reordering .widget-reorder-nav {
+ display: block;
+}
+
+
+/**
+ * Styles for new widget addition panel
+ */
+.wp-full-overlay-main {
+ right: auto; /* this overrides a right: 0; which causes the preview to resize, I'd rather have it go off screen at the normal size. */
+ width: 100%;
+}
+
+#customize-theme-controls .add-new-widget {
+ cursor: pointer;
+ float: right;
+ margin-left: 10px;
+ -webkit-transition: all 0.2s;
+ transition: all 0.2s;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ outline: none;
+}
+
+.add-new-widget:before {
+ content: "\f132";
+ display: inline-block;
+ position: relative;
+ left: -2px;
+ top: -1px;
+ font: normal 20px/1 'dashicons';
+ vertical-align: middle;
+ -webkit-transition: all 0.2s;
+ transition: all 0.2s;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+body.adding-widget .add-new-widget,
+body.adding-widget .add-new-widget:hover {
+ background: #eee;
+ border-color: #999;
+ color: #333;
+ -webkit-box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
+ box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
+}
+body.adding-widget .add-new-widget:before {
+ -webkit-transform: rotate(45deg);
+ -ms-transform: rotate(45deg);
+ transform: rotate(45deg);
+}
+
+#available-widgets .widget {
+ position: static;
+}
+
+/* override widgets admin page rules in wp-admin/css/wp-admin.css */
+#widgets-left #available-widgets .widget {
+ float: none !important;
+ width: auto !important;
+}
+
+#available-widgets {
+ position: absolute;
+ overflow: auto;
+ top: 0;
+ bottom: 0;
+ left: -301px;
+ width: 300px;
+ margin: 0;
+ z-index: 1;
+ background: #fff;
+ -webkit-transition: all 0.2s;
+ transition: all 0.2s;
+ border-right: 1px solid #dddddd;
+}
+
+#available-widgets-filter {
+ padding: 8px 17px 7px 13px;
+ border-bottom: 1px solid #e4e4e4;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}
+
+#available-widgets-filter input {
+ padding: 5px 10px 2px 10px;
+ width: 100%;
+}
+
+#available-widgets .widget-tpl {
+ position: relative;
+ padding: 20px 15px 20px 60px;
+ border-bottom: 1px solid #e4e4e4;
+ cursor: pointer;
+ display: none;
+}
+
+#available-widgets .widget-tpl:hover,
+#available-widgets .widget-tpl.selected {
+ background: #fafafa;
+}
+
+#available-widgets .widget-top,
+#available-widgets .widget-top:hover {
+ border: none;
+ background: transparent;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+#available-widgets .widget-title h4 {
+ padding: 0 0 5px;
+ font-size: 14px;
+}
+
+#available-widgets .widget .widget-description {
+ padding: 0;
+ color: #777;
+}
+
+#customize-preview {
+ -webkit-transition: all 0.2s;
+ transition: all 0.2s;
+}
+
+body.adding-widget #available-widgets {
+ left: 0;
+}
+
+body.adding-widget .wp-full-overlay-main {
+ left: 300px;
+}
+
+body.adding-widget #customize-preview {
+ opacity: 0.4;
+}
+
+
+/**
+ * Widget Icon styling
+ * No plurals in naming.
+ * Ordered from lowest to highest specificity.
+ **/
+#available-widgets .widget-title {
+ position: relative;
+}
+
+#available-widgets .widget-title:before {
+ content: "\f132";
+ position: absolute;
+ top: -3px;
+ right: 100%;
+ margin-right: 20px;
+ width: 20px;
+ height: 20px;
+ color: #333;
+ font: normal 20px/1 'dashicons';
+ text-align: center;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+/* smiley */
+#available-widgets [class*="easy"] .widget-title:before { content: "\f328"; top: -4px; }
+
+/* star-filled */
+#available-widgets [class*="super"] .widget-title:before,
+#available-widgets [class*="like"] .widget-title:before { content: "\f155"; top: -4px; }
+
+/* wordpress */
+#available-widgets [class*="meta"] .widget-title:before { content: "\f120"; }
+
+/* archive-box */
+#available-widgets [class*="archives"] .widget-title:before { content: "\f480"; top: -4px; }
+
+/* category */
+#available-widgets [class*="categor"] .widget-title:before { content: "\f318"; top: -4px; }
+
+/* comments */
+#available-widgets [class*="comment"] .widget-title:before,
+#available-widgets [class*="testimonial"] .widget-title:before,
+#available-widgets [class*="chat"] .widget-title:before { content: "\f101"; }
+
+/* post */
+#available-widgets [class*="post"] .widget-title:before { content: "\f109"; }
+
+/* admin-page */
+#available-widgets [class*="page"] .widget-title:before { content: "\f105"; }
+
+/* text */
+#available-widgets [class*="text"] .widget-title:before { content: "\f478"; }
+
+/* links */
+#available-widgets [class*="link"] .widget-title:before { content: "\f103"; }
+
+/* search */
+#available-widgets [class*="search"] .widget-title:before { content: "\f179"; }
+
+/* menu */
+#available-widgets [class*="menu"] .widget-title:before,
+#available-widgets [class*="nav"] .widget-title:before { content: "\f333"; }
+
+/* tag-cloud */
+#available-widgets [class*="tag"] .widget-title:before { content: "\f479"; }
+
+/* rss */
+#available-widgets [class*="rss"] .widget-title:before { content: "\f303"; top: -6px; }
+
+/* calendar */
+#available-widgets [class*="event"] .widget-title:before,
+#available-widgets [class*="calendar"] .widget-title:before { content: "\f145"; top: -4px;}
+
+/* format-image */
+#available-widgets [class*="image"] .widget-title:before,
+#available-widgets [class*="photo"] .widget-title:before,
+#available-widgets [class*="slide"] .widget-title:before,
+#available-widgets [class*="instagram"] .widget-title:before { content: "\f128"; }
+
+/* format-gallery */
+#available-widgets [class*="album"] .widget-title:before,
+#available-widgets [class*="galler"] .widget-title:before { content: "\f161"; }
+
+/* format-video */
+#available-widgets [class*="video"] .widget-title:before,
+#available-widgets [class*="tube"] .widget-title:before { content: "\f126"; }
+
+/* format-audio */
+#available-widgets [class*="music"] .widget-title:before,
+#available-widgets [class*="radio"] .widget-title:before,
+#available-widgets [class*="audio"] .widget-title:before { content: "\f127"; }
+
+/* admin-users */
+#available-widgets [class*="login"] .widget-title:before,
+#available-widgets [class*="user"] .widget-title:before,
+#available-widgets [class*="member"] .widget-title:before,
+#available-widgets [class*="avatar"] .widget-title:before,
+#available-widgets [class*="subscriber"] .widget-title:before,
+#available-widgets [class*="profile"] .widget-title:before,
+#available-widgets [class*="grofile"] .widget-title:before { content: "\f110"; }
+
+/* cart */
+#available-widgets [class*="commerce"] .widget-title:before,
+#available-widgets [class*="shop"] .widget-title:before,
+#available-widgets [class*="cart"] .widget-title:before { content: "\f174"; top: -4px; }
+
+/* shield */
+#available-widgets [class*="secur"] .widget-title:before,
+#available-widgets [class*="firewall"] .widget-title:before { content: "\f332"; }
+
+/* chart-bar */
+#available-widgets [class*="analytic"] .widget-title:before,
+#available-widgets [class*="stat"] .widget-title:before,
+#available-widgets [class*="poll"] .widget-title:before { content: "\f185"; }
+
+/* feedback */
+#available-widgets [class*="form"] .widget-title:before { content: "\f175"; }
+
+/* email-alt */
+#available-widgets [class*="subscribe"] .widget-title:before,
+#available-widgets [class*="news"] .widget-title:before,
+#available-widgets [class*="contact"] .widget-title:before,
+#available-widgets [class*="mail"] .widget-title:before { content: "\f466"; }
+
+/* share */
+#available-widgets [class*="share"] .widget-title:before,
+#available-widgets [class*="socia"] .widget-title:before { content: "\f237"; }
+
+/* translation */
+#available-widgets [class*="lang"] .widget-title:before,
+#available-widgets [class*="translat"] .widget-title:before { content: "\f326"; }
+
+/* location-alt */
+#available-widgets [class*="locat"] .widget-title:before,
+#available-widgets [class*="map"] .widget-title:before { content: "\f231"; }
+
+/* download */
+#available-widgets [class*="download"] .widget-title:before { content: "\f316"; }
+
+/* cloud */
+#available-widgets [class*="weather"] .widget-title:before { content: "\f176"; top: -4px;}
+
+/* facebook */
+#available-widgets [class*="facebook"] .widget-title:before { content: "\f304"; }
+
+/* twitter */
+#available-widgets [class*="tweet"] .widget-title:before,
+#available-widgets [class*="twitter"] .widget-title:before { content: "\f301"; }
+
+
+@media screen and (max-height: 700px) and (min-width: 981px) {
+ .customize-control {
+ margin-bottom: 0;
+ }
+ .widget-top {
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ margin-top: -1px;
+ }
+ .widget-top:hover {
+ position: relative;
+ z-index: 1;
+ }
+ .last-widget {
+ margin-bottom: 15px;
+ }
+ .widget-title h4 {
+ padding: 13px 15px;
+ }
+ .widget-top a.widget-action:after {
+ padding-top: 9px;
+ }
+ .widget-reorder-nav span {
+ height: 39px;
+ }
+ .widget-reorder-nav span:before {
+ line-height: 39px;
+ }
+ #customize-theme-controls .widget-area-select li {
+ padding: 9px 15px 11px 42px;
+ }
+ #customize-theme-controls .widget-area-select li:before {
+ top: 8px;
+ }
+}
diff --git a/sources/wp-admin/css/customize-widgets.min.css b/sources/wp-admin/css/customize-widgets.min.css
new file mode 100644
index 0000000..cac07db
--- /dev/null
+++ b/sources/wp-admin/css/customize-widgets.min.css
@@ -0,0 +1 @@
+.wp-full-overlay-sidebar{overflow:visible}.control-section[id^=accordion-section-sidebar-widgets-],.customize-control-sidebar_widgets .hide-if-js,.customize-control-sidebar_widgets label{display:none}.customize-control-widget_form .widget-top{-webkit-transition:opacity .5s;transition:opacity .5s}.customize-control-widget_form:not(.widget-rendered) .widget-top{opacity:.5}.customize-control-widget_form .spinner,.customize-control-widget_form .widget-control-save{display:none}.customize-control-widget_form.previewer-loading .spinner{display:inline}.customize-control-widget_form.widget-form-disabled .widget-content{opacity:.7;pointer-events:none;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.customize-control-widget_form .widget{margin-bottom:0}.customize-control-widget_form.wide-widget-control .widget-inside{position:fixed;left:299px;top:25%;border:1px solid #e5e5e5;overflow:auto}.customize-control-widget_form.wide-widget-control .widget-inside>.form{padding:20px}.customize-control-widget_form.wide-widget-control .widget-top{-webkit-transition:background-color .4s;transition:background-color .4s}.customize-control-widget_form.wide-widget-control.expanded:not(.collapsing) .widget-top,.customize-control-widget_form.wide-widget-control.expanding .widget-top{background-color:#e3e3e3}.widget-inside{padding:1px 10px 10px;border-top:0;line-height:16px}.widget-top{cursor:move}.customize-control-widget_form.expanded a.widget-action:after{content:"\f142"}.customize-control-widget_form.wide-widget-control a.widget-action:after{content:"\f139"}.customize-control-widget_form.wide-widget-control.expanded a.widget-action:after{content:"\f141"}.widget-title-action{cursor:pointer}.customize-control-widget_form .widget .customize-control-title{cursor:move}.control-section.accordion-section.highlighted>.accordion-section-title,.customize-control-widget_form.highlighted{outline:0;-webkit-box-shadow:0 0 2px rgba(30,140,190,.8);box-shadow:0 0 2px rgba(30,140,190,.8);position:relative;z-index:1}#widget-customizer-control-templates{display:none}.reorder-toggle{float:right;padding:5px 8px;text-decoration:none;cursor:pointer;outline:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.reorder-toggle:focus{outline:1px dotted}.reorder-done,.reordering .reorder{display:none}.reordering .reorder-done{display:block;color:#a00}#customize-theme-controls .reordering .add-new-widget{opacity:.2;pointer-events:none;cursor:not-allowed}#customize-theme-controls .widget-reorder-nav{display:none;float:right;background-color:#fafafa}.widget-reorder-nav span{position:relative;overflow:hidden;float:left;display:block;width:33px;height:43px;color:#888;text-indent:-9999px;cursor:pointer;outline:0}.widget-reorder-nav span:before{display:inline-block;position:absolute;top:0;right:0;width:100%;height:100%;font:400 20px/43px dashicons;text-align:center;text-indent:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.widget-reorder-nav span:focus,.widget-reorder-nav span:hover{color:#444;background:#eee}.move-widget:before{content:'\f504'}.move-widget-down:before{content:'\f347'}.move-widget-up:before{content:'\f343'}#customize-theme-controls .first-widget .move-widget-up,#customize-theme-controls .last-widget .move-widget-down{color:#d5d5d5;cursor:default}#customize-theme-controls .move-widget-area{display:none;background:#fff;border:1px solid #dedede;border-top:0;cursor:auto}#customize-theme-controls .reordering .move-widget-area.active{display:block}#customize-theme-controls .move-widget-area .description{margin:0;padding:15px 20px;font-weight:400}#customize-theme-controls .widget-area-select{margin:0;padding:0;list-style:none}#customize-theme-controls .widget-area-select li{position:relative;margin:0;padding:13px 15px 15px 42px;color:#555;border-top:1px solid #eee;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#customize-theme-controls .widget-area-select li:before{display:none;content:'\f147';position:absolute;top:12px;left:10px;font:400 20px/1 dashicons;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#customize-theme-controls .widget-area-select li:last-child{border-bottom:1px solid #eee}#customize-theme-controls .widget-area-select .selected{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.4);background:#2ea2cc}#customize-theme-controls .widget-area-select .selected:before{display:block}#customize-theme-controls .move-widget-actions{text-align:right;padding:12px}#customize-theme-controls .reordering .widget-title-action{display:none}#customize-theme-controls .reordering .widget-reorder-nav{display:block}.wp-full-overlay-main{right:auto;width:100%}#customize-theme-controls .add-new-widget{cursor:pointer;float:right;margin-left:10px;-webkit-transition:all .2s;transition:all .2s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;outline:0}.add-new-widget:before{content:"\f132";display:inline-block;position:relative;left:-2px;top:-1px;font:400 20px/1 dashicons;vertical-align:middle;-webkit-transition:all .2s;transition:all .2s;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body.adding-widget .add-new-widget,body.adding-widget .add-new-widget:hover{background:#eee;border-color:#999;color:#333;-webkit-box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5);box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5)}body.adding-widget .add-new-widget:before{-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}#available-widgets .widget{position:static}#widgets-left #available-widgets .widget{float:none!important;width:auto!important}#available-widgets{position:absolute;overflow:auto;top:0;bottom:0;left:-301px;width:300px;margin:0;z-index:1;background:#fff;-webkit-transition:all .2s;transition:all .2s;border-right:1px solid #ddd}#available-widgets-filter{padding:8px 17px 7px 13px;border-bottom:1px solid #e4e4e4;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#available-widgets-filter input{padding:5px 10px 2px;width:100%}#available-widgets .widget-tpl{position:relative;padding:20px 15px 20px 60px;border-bottom:1px solid #e4e4e4;cursor:pointer;display:none}#available-widgets .widget-tpl.selected,#available-widgets .widget-tpl:hover{background:#fafafa}#available-widgets .widget-top,#available-widgets .widget-top:hover{border:0;background:0 0;-webkit-box-shadow:none;box-shadow:none}#available-widgets .widget-title h4{padding:0 0 5px;font-size:14px}#available-widgets .widget .widget-description{padding:0;color:#777}#customize-preview{-webkit-transition:all .2s;transition:all .2s}body.adding-widget #available-widgets{left:0}body.adding-widget .wp-full-overlay-main{left:300px}body.adding-widget #customize-preview{opacity:.4}#available-widgets .widget-title{position:relative}#available-widgets .widget-title:before{content:"\f132";position:absolute;top:-3px;right:100%;margin-right:20px;width:20px;height:20px;color:#333;font:400 20px/1 dashicons;text-align:center;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#available-widgets [class*=easy] .widget-title:before{content:"\f328";top:-4px}#available-widgets [class*=like] .widget-title:before,#available-widgets [class*=super] .widget-title:before{content:"\f155";top:-4px}#available-widgets [class*=meta] .widget-title:before{content:"\f120"}#available-widgets [class*=archives] .widget-title:before{content:"\f480";top:-4px}#available-widgets [class*=categor] .widget-title:before{content:"\f318";top:-4px}#available-widgets [class*=chat] .widget-title:before,#available-widgets [class*=comment] .widget-title:before,#available-widgets [class*=testimonial] .widget-title:before{content:"\f101"}#available-widgets [class*=post] .widget-title:before{content:"\f109"}#available-widgets [class*=page] .widget-title:before{content:"\f105"}#available-widgets [class*=text] .widget-title:before{content:"\f478"}#available-widgets [class*=link] .widget-title:before{content:"\f103"}#available-widgets [class*=search] .widget-title:before{content:"\f179"}#available-widgets [class*=menu] .widget-title:before,#available-widgets [class*=nav] .widget-title:before{content:"\f333"}#available-widgets [class*=tag] .widget-title:before{content:"\f479"}#available-widgets [class*=rss] .widget-title:before{content:"\f303";top:-6px}#available-widgets [class*=calendar] .widget-title:before,#available-widgets [class*=event] .widget-title:before{content:"\f145";top:-4px}#available-widgets [class*=image] .widget-title:before,#available-widgets [class*=instagram] .widget-title:before,#available-widgets [class*=photo] .widget-title:before,#available-widgets [class*=slide] .widget-title:before{content:"\f128"}#available-widgets [class*=album] .widget-title:before,#available-widgets [class*=galler] .widget-title:before{content:"\f161"}#available-widgets [class*=tube] .widget-title:before,#available-widgets [class*=video] .widget-title:before{content:"\f126"}#available-widgets [class*=audio] .widget-title:before,#available-widgets [class*=music] .widget-title:before,#available-widgets [class*=radio] .widget-title:before{content:"\f127"}#available-widgets [class*=avatar] .widget-title:before,#available-widgets [class*=grofile] .widget-title:before,#available-widgets [class*=login] .widget-title:before,#available-widgets [class*=member] .widget-title:before,#available-widgets [class*=profile] .widget-title:before,#available-widgets [class*=subscriber] .widget-title:before,#available-widgets [class*=user] .widget-title:before{content:"\f110"}#available-widgets [class*=cart] .widget-title:before,#available-widgets [class*=commerce] .widget-title:before,#available-widgets [class*=shop] .widget-title:before{content:"\f174";top:-4px}#available-widgets [class*=firewall] .widget-title:before,#available-widgets [class*=secur] .widget-title:before{content:"\f332"}#available-widgets [class*=analytic] .widget-title:before,#available-widgets [class*=poll] .widget-title:before,#available-widgets [class*=stat] .widget-title:before{content:"\f185"}#available-widgets [class*=form] .widget-title:before{content:"\f175"}#available-widgets [class*=contact] .widget-title:before,#available-widgets [class*=mail] .widget-title:before,#available-widgets [class*=news] .widget-title:before,#available-widgets [class*=subscribe] .widget-title:before{content:"\f466"}#available-widgets [class*=share] .widget-title:before,#available-widgets [class*=socia] .widget-title:before{content:"\f237"}#available-widgets [class*=lang] .widget-title:before,#available-widgets [class*=translat] .widget-title:before{content:"\f326"}#available-widgets [class*=locat] .widget-title:before,#available-widgets [class*=map] .widget-title:before{content:"\f231"}#available-widgets [class*=download] .widget-title:before{content:"\f316"}#available-widgets [class*=weather] .widget-title:before{content:"\f176";top:-4px}#available-widgets [class*=facebook] .widget-title:before{content:"\f304"}#available-widgets [class*=tweet] .widget-title:before,#available-widgets [class*=twitter] .widget-title:before{content:"\f301"}@media screen and (max-height:700px) and (min-width:981px){.customize-control{margin-bottom:0}.widget-top{-webkit-box-shadow:none;box-shadow:none;margin-top:-1px}.widget-top:hover{position:relative;z-index:1}.last-widget{margin-bottom:15px}.widget-title h4{padding:13px 15px}.widget-top a.widget-action:after{padding-top:9px}.widget-reorder-nav span{height:39px}.widget-reorder-nav span:before{line-height:39px}#customize-theme-controls .widget-area-select li{padding:9px 15px 11px 42px}#customize-theme-controls .widget-area-select li:before{top:8px}}
\ No newline at end of file
diff --git a/sources/wp-admin/css/dashboard-rtl.css b/sources/wp-admin/css/dashboard-rtl.css
new file mode 100644
index 0000000..f608d45
--- /dev/null
+++ b/sources/wp-admin/css/dashboard-rtl.css
@@ -0,0 +1,1135 @@
+#wpbody-content #dashboard-widgets.columns-1 .postbox-container {
+ width: 100%;
+}
+
+#wpbody-content #dashboard-widgets.columns-2 .postbox-container {
+ width: 49.5%;
+}
+
+#wpbody-content #dashboard-widgets.columns-2 #postbox-container-2,
+#wpbody-content #dashboard-widgets.columns-2 #postbox-container-3,
+#wpbody-content #dashboard-widgets.columns-2 #postbox-container-4 {
+ float: left;
+ width: 50.5%;
+}
+
+#wpbody-content #dashboard-widgets.columns-3 .postbox-container {
+ width: 33.5%;
+}
+
+#wpbody-content #dashboard-widgets.columns-3 #postbox-container-1 {
+ width: 33%;
+}
+
+#wpbody-content #dashboard-widgets.columns-3 #postbox-container-3,
+#wpbody-content #dashboard-widgets.columns-3 #postbox-container-4 {
+ float: left;
+}
+
+#wpbody-content #dashboard-widgets.columns-4 .postbox-container {
+ width: 25%;
+}
+
+#dashboard-widgets .postbox-container {
+ width: 25%;
+}
+
+#dashboard-widgets-wrap .columns-3 #postbox-container-4 .empty-container {
+ border: none !important;
+}
+
+.ie8 #wpbody-content #dashboard-widgets .postbox-container {
+ width: 49.5%;
+}
+
+.ie8 #wpbody-content #dashboard-widgets #postbox-container-2,
+.ie8 #wpbody-content #dashboard-widgets #postbox-container-3,
+.ie8 #wpbody-content #dashboard-widgets #postbox-container-4 {
+ float: left;
+ width: 50.5%;
+}
+
+.ie8 #dashboard-widgets #postbox-container-3 .empty-container,
+.ie8 #dashboard-widgets #postbox-container-4 .empty-container {
+ border: 0 none;
+ height: 0;
+ min-height: 0;
+}
+
+/*------------------------------------------------------------------------------
+ 9.0 - Dashboard
+------------------------------------------------------------------------------*/
+
+#dashboard-widgets-wrap {
+ overflow: hidden;
+ margin: 0 -8px;
+}
+
+#dashboard-widgets .postbox .inside {
+ margin-bottom: 0;
+}
+
+#dashboard-widgets .meta-box-sortables {
+ margin: 0 8px;
+ min-height: 100px;
+}
+
+h3.dashboard-widget-title,
+h3.dashboard-widget-title span,
+h3.dashboard-widget-title small {
+ color: #333;
+}
+
+h3.dashboard-widget-title small a {
+ color: #d7d7d7;
+}
+
+h3.dashboard-widget-title small a:hover {
+ color: #fff;
+}
+
+/* @todo: this was originally in this section, but likely belongs elsewhere */
+#the-comment-list td.comment p.comment-author {
+ margin-top: 0;
+ margin-right: 0;
+}
+
+#the-comment-list p.comment-author img {
+ float: right;
+ margin-left: 8px;
+}
+
+#the-comment-list p.comment-author strong a {
+ border: none;
+}
+
+#the-comment-list td {
+ vertical-align: top;
+}
+
+#the-comment-list td.comment {
+ word-wrap: break-word;
+}
+
+#the-comment-list td.comment img {
+ max-width: 100%;
+}
+
+/* Welcome Panel */
+.welcome-panel {
+ position: relative;
+ overflow: auto;
+ margin: 16px 0;
+ padding: 23px 10px 0;
+ border: 1px solid #e5e5e5;
+ -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
+ box-shadow: 0 1px 1px rgba(0,0,0,0.04);
+ background: #fff;
+ font-size: 13px;
+ line-height: 2.1em;
+}
+
+.welcome-panel h3 {
+ margin: 0;
+ font-size: 21px;
+ font-weight: normal;
+ line-height: 1.2;
+}
+
+.welcome-panel h4 {
+ margin: 1.33em 0 0;
+ font-size: 16px;
+}
+
+.welcome-panel li {
+ font-size: 14px;
+}
+
+.welcome-panel p {
+ color: #777;
+}
+
+.welcome-panel a {
+ text-decoration: none;
+}
+
+.welcome-panel .about-description {
+ font-size: 16px;
+ margin: 0;
+}
+
+.welcome-panel .welcome-panel-close {
+ position: absolute;
+ top: 5px;
+ left: 10px;
+ padding: 20px 3px 0 15px;
+ font-size: 13px;
+ text-decoration: none;
+ line-height: 1;
+}
+
+#welcome-panel.welcome-panel .welcome-panel-close::before {
+ position: absolute;
+ right: -18px;
+ margin-top: -2px;
+ -webkit-transition: all .1s ease-in-out;
+ transition: all .1s ease-in-out;
+}
+
+.wp-core-ui .welcome-panel .button.button-hero {
+ margin: 15px 0 3px;
+}
+
+.welcome-panel-content {
+ margin-right: 13px;
+ max-width: 1500px;
+}
+
+.welcome-panel .welcome-panel-column-container {
+ clear: both;
+ overflow: hidden;
+ position: relative;
+}
+
+.welcome-panel .welcome-panel-column {
+ width: 32%;
+ min-width: 200px;
+ float: right;
+}
+
+.ie8 .welcome-panel .welcome-panel-column {
+ min-width: 230px;
+}
+
+.welcome-panel .welcome-panel-column:first-child {
+ width: 36%;
+}
+
+.welcome-panel-column p.hide-if-no-customize {
+ margin-top: 10px;
+}
+
+.welcome-panel-column p {
+ margin-top: 7px;
+ color: #464646;
+}
+
+.welcome-panel .welcome-icon {
+ display: block;
+ padding: 0 0 8px;
+ background: transparent !important;
+}
+
+.welcome-panel .welcome-icon:before {
+ color: #888;
+ font: normal 20px/1 'dashicons';
+ speak: none;
+ display: inline-block;
+ padding: 0 0 0 10px;
+ top: -1px;
+ position: relative;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ text-decoration: none !important;
+ vertical-align: top;
+}
+
+.welcome-panel .welcome-write-blog:before,
+.welcome-panel .welcome-edit-page:before {
+ content:'\f119';
+ top: -3px;
+}
+
+.welcome-panel .welcome-add-page:before {
+ content:'\f132';
+}
+
+.welcome-panel .welcome-view-site:before {
+ content:'\f115';
+ top: -2px;
+}
+
+.welcome-panel .welcome-widgets-menus:before {
+ content:'\f116';
+ top: -2px;
+}
+
+.welcome-panel .welcome-comments:before {
+ content:'\f117';
+ top: -1px;
+}
+
+.welcome-panel .welcome-learn-more:before {
+ content:'\f118';
+ top: -1px;
+}
+
+.welcome-panel .welcome-widgets-menus {
+ line-height: 16px;
+}
+
+.welcome-panel .welcome-panel-column ul {
+ margin: 0.8em 0 1em 1em;
+}
+
+.welcome-panel .welcome-panel-column li {
+ line-height: 16px;
+ list-style-type: none;
+}
+
+/* Dashboard WordPress news */
+
+#dashboard_primary .inside {
+ margin: 0;
+ padding: 0;
+}
+
+#dashboard_primary .widget-loading,
+#dashboard_primary .dashboard-widget-control-form {
+ padding: 12px 12px 0;
+}
+
+body #dashboard-widgets .postbox form .submit {
+ margin: 0;
+}
+
+.dashboard-widget-control-form {
+ overflow: hidden;
+}
+
+.dashboard-widget-control-form p {
+ margin-top: 0;
+}
+
+/* @todo: are these actually used anywhere? no non-CSS results in plugin search */
+div.dashboard-widget-error {
+ background-color: #c43;
+}
+
+div.dashboard-widget-notice {
+ background-color: #cfe1ef;
+}
+
+.rssSummary {
+ color: #777;
+ margin-top: 4px;
+}
+
+#dashboard_primary .rss-widget {
+ border-bottom: 1px solid #eee;
+ font-size: 13px;
+ padding: 8px 12px 10px;
+}
+
+#dashboard_primary .rss-widget:last-child {
+ border-bottom: none;
+ padding-bottom: 8px;
+}
+
+#dashboard_primary .rss-widget a {
+ font-weight: normal;
+}
+
+#dashboard_primary .rss-widget span,
+#dashboard_primary .rss-widget span.rss-date {
+ color: #777;
+}
+
+#dashboard_primary .rss-widget span.rss-date {
+ margin-right: 12px;
+}
+
+#dashboard_primary .rss-widget ul li {
+ margin-bottom: 8px;
+}
+
+/* Dashboard right now */
+
+#dashboard_right_now ul {
+ margin: 0;
+ overflow: hidden;
+}
+
+#dashboard_right_now li {
+ width: 50%;
+ float: right;
+ margin-bottom: 10px;
+}
+
+#dashboard_right_now .inside {
+ overflow: hidden;
+ padding: 0;
+}
+
+#dashboard_right_now .main {
+ overflow: hidden;
+ padding: 0 12px 11px;
+}
+
+#dashboard_right_now .main p {
+ margin: 0;
+}
+
+#dashboard_right_now #wp-version-message .button {
+ clear: left;
+ float: left;
+ position: relative;
+ top: -5px;
+}
+
+.mu-storage {
+ overflow: hidden;
+}
+
+#dashboard-widgets h4.mu-storage {
+ margin-bottom: 10px;
+}
+
+/* Dashboard right now - Colors */
+
+#dashboard_right_now li a:before,
+#dashboard_right_now li span:before {
+ color: #888;
+}
+
+#dashboard_right_now .sub {
+ color: #777;
+ background: #f5f5f5;
+ border-top: 1px solid #eee;
+ padding: 10px 12px 6px 12px;
+}
+
+#dashboard_right_now .sub h4 {
+ color: #555;
+}
+
+#dashboard_right_now .sub p {
+ margin: 0 0 1em;
+}
+
+#dashboard_right_now .warning a:before,
+#dashboard_right_now .warning span:before {
+ color: #d54e21;
+}
+
+/* Dashboard right now - Icons */
+#dashboard_right_now li a:before,
+#dashboard_right_now li span:before {
+ content: '\f159';
+ font: normal 20px/1 'dashicons';
+ speak: none;
+ display: block;
+ float: right;
+ margin: 0 0 0 5px;
+ padding: 0;
+ text-indent: 0;
+ text-align: center;
+ position: relative;
+ -webkit-font-smoothing: antialiased;
+ text-decoration: none !important;
+}
+
+#dashboard_right_now .page-count a:before,
+#dashboard_right_now .page-count span:before {
+ content: '\f105';
+}
+
+#dashboard_right_now .post-count a:before,
+#dashboard_right_now .post-count span:before {
+ content: '\f109';
+}
+
+#dashboard_right_now .comment-count a:before {
+ content: '\f101';
+}
+
+#dashboard_right_now .comment-mod-count a:before {
+ content: '\f125';
+}
+
+#dashboard_right_now .storage-count a:before {
+ content: '\f104';
+}
+
+#dashboard_right_now .storage-count.warning a:before {
+ content: '\f153';
+}
+
+/* Dashboard Quick Draft */
+
+#dashboard_quick_press .inside {
+ margin: 0;
+ padding: 0;
+}
+
+#dashboard_quick_press div.updated {
+ margin-bottom: 10px;
+ border: 1px solid #eee;
+ border-width: 1px 0 1px 1px;
+}
+
+#dashboard_quick_press form {
+ overflow: hidden;
+ margin: 12px;
+}
+
+#dashboard_quick_press .drafts,
+#dashboard_quick_press .easy-blogging {
+ padding: 10px 0 0;
+}
+
+/* Dashboard Quick Draft - Form styling */
+
+input#save-post {
+ float: right;
+}
+
+form.initial-form.quickpress-open label.prompt {
+ font-style: normal;
+}
+
+form.initial-form.quickpress-open input#title {
+ height: auto;
+}
+
+#dashboard_quick_press input,
+#dashboard_quick_press textarea {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ margin: 0;
+}
+
+#dashboard_quick_press textarea {
+ resize: vertical;
+}
+
+#dashboard-widgets .postbox form .submit {
+ margin: -39px 0;
+ float: left;
+}
+
+#description-wrap {
+ margin-top: 12px;
+}
+
+#title-wrap #title-prompt-text,
+.textarea-wrap #content-prompt-text {
+ color: #777;
+}
+
+#title-wrap #title-prompt-text {
+ font-size: 1.1em;
+ padding: 7px 8px;
+}
+
+.input-text-wrap,
+.textarea-wrap {
+ position: relative;
+}
+
+.input-text-wrap .prompt,
+.textarea-wrap .prompt {
+ position: absolute;
+}
+
+.textarea-wrap #content-prompt-text {
+ font-size: 1.1em;
+ padding: 7px 8px;
+}
+
+.textarea-wrap textarea#content {
+ margin: 0 0 8px;
+ padding: 6px 7px;
+}
+
+#quick-press textarea#content {
+ min-height: 90px;
+ max-height: 1300px;
+ resize: none;
+}
+
+/* Dashboard Quick Draft - Drafts list */
+
+.js #dashboard_quick_press .drafts {
+ border-top: 1px solid #eee;
+}
+
+#dashboard_quick_press .drafts abbr {
+ border: none;
+}
+
+#dashboard_quick_press .drafts h4 {
+ margin: 0 12px 8px;
+ font-weight: normal;
+}
+
+#dashboard_quick_press .drafts .view-all {
+ float: left;
+ margin: 0 0 0 12px;
+}
+
+#dashboard_primary a.rsswidget {
+ font-weight: normal;
+}
+
+#dashboard_quick_press .drafts ul {
+ margin: 0 12px;
+}
+
+#dashboard_quick_press .drafts li {
+ margin-bottom: 1em;
+}
+#dashboard_quick_press .drafts li time {
+ color: #777;
+}
+
+#dashboard_quick_press .drafts p {
+ margin: 0;
+ word-wrap: break-word;
+}
+
+#dashboard_quick_press .draft-title {
+ overflow: hidden;
+}
+
+#dashboard_quick_press .draft-title a,
+#dashboard_quick_press .draft-title time {
+ float: right;
+ margin: 0 0 0 5px;
+}
+
+/* Dashboard activity widget */
+
+#dashboard-widgets #dashboard_activity h4 {
+ margin: 0 12px 8px 0;
+ font-weight: normal;
+}
+
+#dashboard-widgets #dashboard_activity h4.comment-meta {
+ margin: 0;
+}
+
+#dashboard_activity h4.comment-meta {
+ margin-bottom: 4px;
+}
+
+#dashboard_activity ul {
+ padding: 0 12px;
+}
+
+#dashboard_activity .comment-meta span.approve:before {
+ content: '\f227';
+ font: 20px/.5 "dashicons";
+ margin-right: 12px;
+ vertical-align: middle;
+ position: relative;
+ top: -1px;
+ margin-left: 2px;
+}
+
+#dashboard_activity .inside {
+ padding: 0;
+ margin: 0;
+}
+
+#dashboard_activity .no-activity {
+ overflow: hidden;
+ padding: 0 12px 12px;
+ text-align: center;
+}
+
+#dashboard_activity .no-activity p {
+ color: #999;
+ font-size: 16px;
+}
+
+#dashboard_activity .no-activity .smiley {
+ margin-top: 0;
+}
+
+#dashboard_activity .no-activity .smiley:before {
+ content: '\f328';
+ font: normal 120px/1 'dashicons';
+ speak: none;
+ display: block;
+ margin: 0 0 0 5px;
+ padding: 0;
+ text-indent: 0;
+ text-align: center;
+ position: relative;
+ -webkit-font-smoothing: antialiased;
+ text-decoration: none !important;
+}
+
+#dashboard_activity .subsubsub {
+ float: none;
+ border-top: 1px solid #eeeeee;
+ margin-top: 0;
+ padding: 8px 12px 4px;
+}
+
+#future-posts ul,
+#published-posts ul {
+ clear: both;
+ margin-bottom: 0;
+}
+
+#future-posts li,
+#published-posts li {
+ overflow: hidden;
+ margin-bottom: 8px;
+}
+
+#future-posts ul span,
+#published-posts ul span {
+ color: #777;
+ float: right;
+ margin-left: 8px;
+ min-width: 150px;
+}
+
+.activity-block {
+ border-bottom: 1px solid #eee;
+ overflow: hidden;
+ padding: 8px 0 4px;
+}
+
+.activity-block:last-child {
+ border-bottom: none;
+}
+
+.activity-block .subsubsub li {
+ color: #ddd;
+}
+
+/* Dashboard activity widget - Comments */
+/* @todo: needs serious de-duplication */
+
+#activity-widget #the-comment-list tr.undo,
+#activity-widget #the-comment-list div.undo {
+ background: none;
+ padding: 6px 0;
+}
+
+#activity-widget #the-comment-list .alternate,
+#activity-widget #the-comment-list .alt {
+ background: none;
+}
+
+#activity-widget #the-comment-list .comment-item {
+ background: #fafafa;
+ padding: 12px;
+ position: relative;
+}
+
+#activity-widget #the-comment-list img {
+ position: absolute;
+ right: 13px;
+ top: 13px;
+}
+
+#activity-widget #the-comment-list .dashboard-comment-wrap {
+ padding-right: 63px;
+}
+
+#activity-widget #the-comment-list .dashboard-comment-wrap blockquote {
+ margin: 1em 0;
+}
+
+#activity-widget #the-comment-list .comment-item h4 {
+ font-size: 13px;
+ color: #999;
+}
+
+#activity-widget #the-comment-list .comment-item p.row-actions {
+ margin: 4px 0 0 0;
+}
+
+#activity-widget #the-comment-list .comment-item:first-child {
+ border-top: 1px solid #eeeeee;
+}
+
+#activity-widget #the-comment-list .unapproved {
+ background-color: #fef7f1;
+}
+
+#activity-widget #the-comment-list .unapproved:before {
+ content: "";
+ display: block;
+ position: absolute;
+ right: 0;
+ top: 0;
+ bottom: 0;
+ background: #d54e21;
+ width: 4px;
+}
+
+#activity-widget #the-comment-list .spam-undo-inside .avatar,
+#activity-widget #the-comment-list .trash-undo-inside .avatar {
+ margin-left: 20px;
+ position: relative;
+ top: 0;
+}
+
+/* Browse happy box */
+
+#dashboard-widgets #dashboard_browser_nag.postbox .inside {
+ margin: 10px;
+}
+
+.edit-box {
+ display: none;
+}
+
+h3:hover .edit-box {
+ display: inline;
+}
+
+#dashboard-widgets form .input-text-wrap input {
+ width: 100%;
+}
+
+#dashboard-widgets form .textarea-wrap textarea {
+ width: 100%;
+}
+
+#dashboard-widgets .postbox form .submit {
+ float: none;
+ margin: .5em 0 0;
+ padding: 0;
+ border: none;
+}
+
+#dashboard-widgets-wrap #dashboard-widgets .postbox form .submit #publish {
+ min-width: 0;
+}
+
+#dashboard-widgets a {
+ text-decoration: none;
+}
+
+#dashboard-widgets h3 a {
+ text-decoration: underline;
+}
+
+#dashboard-widgets h3 .postbox-title-action {
+ position: absolute;
+ left: 10px;
+ padding: 0;
+ top: 5px;
+}
+
+.js #dashboard-widgets h3 .postbox-title-action {
+ left: 33px;
+}
+
+#dashboard-widgets h4 {
+ color: #222;
+ font-weight: normal;
+ font-size: 14px;
+ margin: 0 0 .2em;
+ padding: 0;
+}
+
+#dashboard_plugins h5 {
+ font-size: 14px;
+}
+
+/* Recent Comments */
+
+#latest-comments #the-comment-list {
+ position: relative;
+}
+
+#activity-widget #the-comment-list .comment {
+ -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.06);
+ box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.06);
+}
+
+#activity-widget .comments #the-comment-list .alt {
+ background-color: transparent;
+}
+
+#activity-widget #latest-comments #the-comment-list .comment-item {
+ padding: 1em 12px;
+}
+
+#latest-comments #the-comment-list .pingback {
+ padding-right: 12px !important;
+}
+
+#latest-comments #the-comment-list .comment-item:first-child {
+ border-top: none;
+}
+
+#latest-comments #the-comment-list .comment-item h4 {
+ line-height: 1.5em;
+ margin-top: 0;
+ color: #666;
+}
+
+#latest-comments #the-comment-list .comment-item h4 cite {
+ font-style: normal;
+ font-weight: normal;
+}
+
+#latest-comments #the-comment-list .comment-item blockquote,
+#latest-comments #the-comment-list .comment-item blockquote p {
+ margin: 0;
+ padding: 0;
+ display: inline;
+}
+
+#latest-comments #the-comment-list .comment-item p.row-actions {
+ margin: 3px 0 0;
+ padding: 0;
+ font-size: 13px;
+}
+
+/* QuickDraft */
+
+#title-wrap label {
+ cursor: text;
+}
+
+#title-wrap #title {
+ padding: 2px 6px;
+ font-size: 1.3em;
+ line-height: 100%;
+ outline: none;
+}
+
+#title-wrap #title-prompt-text {
+ font-size: 1.1em;
+ padding: 5px 8px;
+}
+
+/* Feeds */
+.rss-widget ul {
+ margin: 0;
+ padding: 0;
+ list-style: none;
+}
+
+a.rsswidget {
+ font-size: 14px;
+ font-weight: 600;
+ line-height: 1.7em;
+}
+
+.rss-widget ul li {
+ line-height: 1.5em;
+ margin-bottom: 12px;
+}
+
+.rss-widget span.rss-date {
+ color: #999;
+ font-size: 13px;
+ margin-right: 3px;
+}
+
+.rss-widget cite {
+ display: block;
+ text-align: left;
+ margin: 0 0 1em;
+ padding: 0;
+}
+
+.rss-widget cite:before {
+ content: '\2014';
+}
+
+.dashboard-comment-wrap {
+ overflow: hidden;
+ word-wrap: break-word;
+}
+
+/* Browser Nag */
+#dashboard_browser_nag a.update-browser-link {
+ font-size: 1.2em;
+ font-weight: 600;
+}
+
+#dashboard_browser_nag a {
+ text-decoration: underline;
+}
+
+#dashboard_browser_nag p.browser-update-nag.has-browser-icon {
+ padding-left: 125px;
+}
+
+#dashboard_browser_nag .browser-icon {
+ margin-top: -35px;
+}
+
+#dashboard_browser_nag.postbox.browser-insecure {
+ background-color: #ac1b1b;
+ border-color: #ac1b1b;
+}
+
+#dashboard_browser_nag.postbox {
+ background-color: #e29808;
+ background-image: none;
+ border-color: #edc048;
+ color: #fff;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+#dashboard_browser_nag.postbox.browser-insecure h3 {
+ border-bottom-color: #cd5a5a;
+ color: #fff;
+}
+
+#dashboard_browser_nag.postbox h3 {
+ border-bottom-color: #f6e2ac;
+ background: transparent none;
+ color: #fff;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+#dashboard_browser_nag a {
+ color: #fff;
+}
+
+/* Make the browser nags easier to read with Open Sans */
+
+#dashboard_browser_nag h3.hndle {
+ border: none;
+ font-weight: 600;
+ font-size: 20px;
+ padding-top: 10px;
+}
+
+.postbox#dashboard_browser_nag p a.dismiss {
+ font-size: 14px;
+}
+
+.postbox#dashboard_browser_nag p,
+.postbox#dashboard_browser_nag a,
+.postbox#dashboard_browser_nag p.browser-update-nag {
+ font-size: 16px;
+}
+
+/* =Media Queries
+-------------------------------------------------------------- */
+
+/* one column on the dash */
+@media only screen and (max-width: 799px) {
+ #wpbody-content #dashboard-widgets .postbox-container {
+ width: 100%;
+ }
+}
+
+/* two columns on the dash, but keep the setting if one is selected */
+@media only screen and (min-width: 800px) and (max-width: 1499px) {
+ #wpbody-content #dashboard-widgets .postbox-container {
+ width: 49.5%;
+ }
+
+ #wpbody-content #dashboard-widgets #postbox-container-2,
+ #wpbody-content #dashboard-widgets #postbox-container-3,
+ #wpbody-content #dashboard-widgets #postbox-container-4 {
+ float: left;
+ width: 50.5%;
+ }
+
+ #dashboard-widgets #postbox-container-3 .empty-container,
+ #dashboard-widgets #postbox-container-4 .empty-container {
+ border: 0 none;
+ height: 0;
+ min-height: 0;
+ }
+
+ #wpbody #wpbody-content #dashboard-widgets.columns-1 .postbox-container {
+ width: 100%;
+ }
+
+ #wpbody #wpbody-content .metabox-holder.columns-1 .postbox-container .empty-container {
+ border: 0 none;
+ height: 0;
+ min-height: 0;
+ }
+
+ /* show the radio buttons for column prefs only for one or two columns */
+ .index-php .screen-layout,
+ .index-php .columns-prefs {
+ display: block;
+ }
+
+ .columns-prefs .columns-prefs-3,
+ .columns-prefs .columns-prefs-4 {
+ display: none;
+ }
+}
+
+/* three columns on the dash */
+@media only screen and (min-width: 1500px) and (max-width: 1800px) {
+ #wpbody-content #dashboard-widgets .postbox-container {
+ width: 33.5%;
+ }
+
+ #wpbody-content #dashboard-widgets #postbox-container-1 {
+ width: 33%;
+ }
+
+ #wpbody-content #dashboard-widgets #postbox-container-3,
+ #wpbody-content #dashboard-widgets #postbox-container-4 {
+ float: left;
+ }
+
+ #dashboard-widgets #postbox-container-4 .empty-container {
+ border: 0 none;
+ height: 0;
+ min-height: 0;
+ }
+}
+
+@media screen and (max-width: 870px) {
+ .welcome-panel .welcome-panel-column,
+ .welcome-panel .welcome-panel-column:first-child {
+ display: block;
+ float: none;
+ width: 100%;
+ }
+
+ .welcome-panel .welcome-panel-column li {
+ display: inline-block;
+ margin-left: 13px;
+ }
+
+ .welcome-panel .welcome-panel-column ul {
+ margin: 0.4em 0 0;
+ }
+
+}
+
+@media screen and ( max-width: 782px ) {
+ #dashboard_recent_comments #the-comment-list .comment-item .avatar {
+ height: 30px;
+ width: 30px;
+ margin: 4px 0 5px 10px;
+ }
+}
+
+/* Smartphone */
+@media screen and (max-width: 600px) {
+ /* Keep the close icon from overlapping the Welcome text. */
+ .welcome-panel .welcome-panel-close {
+ overflow: hidden;
+ text-indent: 100%;
+ white-space: nowrap;
+ width: 20px;
+ height: 20px;
+ left: 0;
+ padding: 5px;
+ }
+
+ /* Make the close icon larger for tappability. */
+ #welcome-panel.welcome-panel .welcome-panel-close::before {
+ font-size: 20px;
+ margin: 0;
+ }
+}
diff --git a/sources/wp-admin/css/dashboard.css b/sources/wp-admin/css/dashboard.css
new file mode 100644
index 0000000..bd94d96
--- /dev/null
+++ b/sources/wp-admin/css/dashboard.css
@@ -0,0 +1,1135 @@
+#wpbody-content #dashboard-widgets.columns-1 .postbox-container {
+ width: 100%;
+}
+
+#wpbody-content #dashboard-widgets.columns-2 .postbox-container {
+ width: 49.5%;
+}
+
+#wpbody-content #dashboard-widgets.columns-2 #postbox-container-2,
+#wpbody-content #dashboard-widgets.columns-2 #postbox-container-3,
+#wpbody-content #dashboard-widgets.columns-2 #postbox-container-4 {
+ float: right;
+ width: 50.5%;
+}
+
+#wpbody-content #dashboard-widgets.columns-3 .postbox-container {
+ width: 33.5%;
+}
+
+#wpbody-content #dashboard-widgets.columns-3 #postbox-container-1 {
+ width: 33%;
+}
+
+#wpbody-content #dashboard-widgets.columns-3 #postbox-container-3,
+#wpbody-content #dashboard-widgets.columns-3 #postbox-container-4 {
+ float: right;
+}
+
+#wpbody-content #dashboard-widgets.columns-4 .postbox-container {
+ width: 25%;
+}
+
+#dashboard-widgets .postbox-container {
+ width: 25%;
+}
+
+#dashboard-widgets-wrap .columns-3 #postbox-container-4 .empty-container {
+ border: none !important;
+}
+
+.ie8 #wpbody-content #dashboard-widgets .postbox-container {
+ width: 49.5%;
+}
+
+.ie8 #wpbody-content #dashboard-widgets #postbox-container-2,
+.ie8 #wpbody-content #dashboard-widgets #postbox-container-3,
+.ie8 #wpbody-content #dashboard-widgets #postbox-container-4 {
+ float: right;
+ width: 50.5%;
+}
+
+.ie8 #dashboard-widgets #postbox-container-3 .empty-container,
+.ie8 #dashboard-widgets #postbox-container-4 .empty-container {
+ border: 0 none;
+ height: 0;
+ min-height: 0;
+}
+
+/*------------------------------------------------------------------------------
+ 9.0 - Dashboard
+------------------------------------------------------------------------------*/
+
+#dashboard-widgets-wrap {
+ overflow: hidden;
+ margin: 0 -8px;
+}
+
+#dashboard-widgets .postbox .inside {
+ margin-bottom: 0;
+}
+
+#dashboard-widgets .meta-box-sortables {
+ margin: 0 8px;
+ min-height: 100px;
+}
+
+h3.dashboard-widget-title,
+h3.dashboard-widget-title span,
+h3.dashboard-widget-title small {
+ color: #333;
+}
+
+h3.dashboard-widget-title small a {
+ color: #d7d7d7;
+}
+
+h3.dashboard-widget-title small a:hover {
+ color: #fff;
+}
+
+/* @todo: this was originally in this section, but likely belongs elsewhere */
+#the-comment-list td.comment p.comment-author {
+ margin-top: 0;
+ margin-left: 0;
+}
+
+#the-comment-list p.comment-author img {
+ float: left;
+ margin-right: 8px;
+}
+
+#the-comment-list p.comment-author strong a {
+ border: none;
+}
+
+#the-comment-list td {
+ vertical-align: top;
+}
+
+#the-comment-list td.comment {
+ word-wrap: break-word;
+}
+
+#the-comment-list td.comment img {
+ max-width: 100%;
+}
+
+/* Welcome Panel */
+.welcome-panel {
+ position: relative;
+ overflow: auto;
+ margin: 16px 0;
+ padding: 23px 10px 0;
+ border: 1px solid #e5e5e5;
+ -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
+ box-shadow: 0 1px 1px rgba(0,0,0,0.04);
+ background: #fff;
+ font-size: 13px;
+ line-height: 2.1em;
+}
+
+.welcome-panel h3 {
+ margin: 0;
+ font-size: 21px;
+ font-weight: normal;
+ line-height: 1.2;
+}
+
+.welcome-panel h4 {
+ margin: 1.33em 0 0;
+ font-size: 16px;
+}
+
+.welcome-panel li {
+ font-size: 14px;
+}
+
+.welcome-panel p {
+ color: #777;
+}
+
+.welcome-panel a {
+ text-decoration: none;
+}
+
+.welcome-panel .about-description {
+ font-size: 16px;
+ margin: 0;
+}
+
+.welcome-panel .welcome-panel-close {
+ position: absolute;
+ top: 5px;
+ right: 10px;
+ padding: 20px 15px 0 3px;
+ font-size: 13px;
+ text-decoration: none;
+ line-height: 1;
+}
+
+#welcome-panel.welcome-panel .welcome-panel-close::before {
+ position: absolute;
+ left: -18px;
+ margin-top: -2px;
+ -webkit-transition: all .1s ease-in-out;
+ transition: all .1s ease-in-out;
+}
+
+.wp-core-ui .welcome-panel .button.button-hero {
+ margin: 15px 0 3px;
+}
+
+.welcome-panel-content {
+ margin-left: 13px;
+ max-width: 1500px;
+}
+
+.welcome-panel .welcome-panel-column-container {
+ clear: both;
+ overflow: hidden;
+ position: relative;
+}
+
+.welcome-panel .welcome-panel-column {
+ width: 32%;
+ min-width: 200px;
+ float: left;
+}
+
+.ie8 .welcome-panel .welcome-panel-column {
+ min-width: 230px;
+}
+
+.welcome-panel .welcome-panel-column:first-child {
+ width: 36%;
+}
+
+.welcome-panel-column p.hide-if-no-customize {
+ margin-top: 10px;
+}
+
+.welcome-panel-column p {
+ margin-top: 7px;
+ color: #464646;
+}
+
+.welcome-panel .welcome-icon {
+ display: block;
+ padding: 0 0 8px;
+ background: transparent !important;
+}
+
+.welcome-panel .welcome-icon:before {
+ color: #888;
+ font: normal 20px/1 'dashicons';
+ speak: none;
+ display: inline-block;
+ padding: 0 10px 0 0;
+ top: -1px;
+ position: relative;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ text-decoration: none !important;
+ vertical-align: top;
+}
+
+.welcome-panel .welcome-write-blog:before,
+.welcome-panel .welcome-edit-page:before {
+ content:'\f119';
+ top: -3px;
+}
+
+.welcome-panel .welcome-add-page:before {
+ content:'\f132';
+}
+
+.welcome-panel .welcome-view-site:before {
+ content:'\f115';
+ top: -2px;
+}
+
+.welcome-panel .welcome-widgets-menus:before {
+ content:'\f116';
+ top: -2px;
+}
+
+.welcome-panel .welcome-comments:before {
+ content:'\f117';
+ top: -1px;
+}
+
+.welcome-panel .welcome-learn-more:before {
+ content:'\f118';
+ top: -1px;
+}
+
+.welcome-panel .welcome-widgets-menus {
+ line-height: 16px;
+}
+
+.welcome-panel .welcome-panel-column ul {
+ margin: 0.8em 1em 1em 0;
+}
+
+.welcome-panel .welcome-panel-column li {
+ line-height: 16px;
+ list-style-type: none;
+}
+
+/* Dashboard WordPress news */
+
+#dashboard_primary .inside {
+ margin: 0;
+ padding: 0;
+}
+
+#dashboard_primary .widget-loading,
+#dashboard_primary .dashboard-widget-control-form {
+ padding: 12px 12px 0;
+}
+
+body #dashboard-widgets .postbox form .submit {
+ margin: 0;
+}
+
+.dashboard-widget-control-form {
+ overflow: hidden;
+}
+
+.dashboard-widget-control-form p {
+ margin-top: 0;
+}
+
+/* @todo: are these actually used anywhere? no non-CSS results in plugin search */
+div.dashboard-widget-error {
+ background-color: #c43;
+}
+
+div.dashboard-widget-notice {
+ background-color: #cfe1ef;
+}
+
+.rssSummary {
+ color: #777;
+ margin-top: 4px;
+}
+
+#dashboard_primary .rss-widget {
+ border-bottom: 1px solid #eee;
+ font-size: 13px;
+ padding: 8px 12px 10px;
+}
+
+#dashboard_primary .rss-widget:last-child {
+ border-bottom: none;
+ padding-bottom: 8px;
+}
+
+#dashboard_primary .rss-widget a {
+ font-weight: normal;
+}
+
+#dashboard_primary .rss-widget span,
+#dashboard_primary .rss-widget span.rss-date {
+ color: #777;
+}
+
+#dashboard_primary .rss-widget span.rss-date {
+ margin-left: 12px;
+}
+
+#dashboard_primary .rss-widget ul li {
+ margin-bottom: 8px;
+}
+
+/* Dashboard right now */
+
+#dashboard_right_now ul {
+ margin: 0;
+ overflow: hidden;
+}
+
+#dashboard_right_now li {
+ width: 50%;
+ float: left;
+ margin-bottom: 10px;
+}
+
+#dashboard_right_now .inside {
+ overflow: hidden;
+ padding: 0;
+}
+
+#dashboard_right_now .main {
+ overflow: hidden;
+ padding: 0 12px 11px;
+}
+
+#dashboard_right_now .main p {
+ margin: 0;
+}
+
+#dashboard_right_now #wp-version-message .button {
+ clear: right;
+ float: right;
+ position: relative;
+ top: -5px;
+}
+
+.mu-storage {
+ overflow: hidden;
+}
+
+#dashboard-widgets h4.mu-storage {
+ margin-bottom: 10px;
+}
+
+/* Dashboard right now - Colors */
+
+#dashboard_right_now li a:before,
+#dashboard_right_now li span:before {
+ color: #888;
+}
+
+#dashboard_right_now .sub {
+ color: #777;
+ background: #f5f5f5;
+ border-top: 1px solid #eee;
+ padding: 10px 12px 6px 12px;
+}
+
+#dashboard_right_now .sub h4 {
+ color: #555;
+}
+
+#dashboard_right_now .sub p {
+ margin: 0 0 1em;
+}
+
+#dashboard_right_now .warning a:before,
+#dashboard_right_now .warning span:before {
+ color: #d54e21;
+}
+
+/* Dashboard right now - Icons */
+#dashboard_right_now li a:before,
+#dashboard_right_now li span:before {
+ content: '\f159';
+ font: normal 20px/1 'dashicons';
+ speak: none;
+ display: block;
+ float: left;
+ margin: 0 5px 0 0;
+ padding: 0;
+ text-indent: 0;
+ text-align: center;
+ position: relative;
+ -webkit-font-smoothing: antialiased;
+ text-decoration: none !important;
+}
+
+#dashboard_right_now .page-count a:before,
+#dashboard_right_now .page-count span:before {
+ content: '\f105';
+}
+
+#dashboard_right_now .post-count a:before,
+#dashboard_right_now .post-count span:before {
+ content: '\f109';
+}
+
+#dashboard_right_now .comment-count a:before {
+ content: '\f101';
+}
+
+#dashboard_right_now .comment-mod-count a:before {
+ content: '\f125';
+}
+
+#dashboard_right_now .storage-count a:before {
+ content: '\f104';
+}
+
+#dashboard_right_now .storage-count.warning a:before {
+ content: '\f153';
+}
+
+/* Dashboard Quick Draft */
+
+#dashboard_quick_press .inside {
+ margin: 0;
+ padding: 0;
+}
+
+#dashboard_quick_press div.updated {
+ margin-bottom: 10px;
+ border: 1px solid #eee;
+ border-width: 1px 1px 1px 0;
+}
+
+#dashboard_quick_press form {
+ overflow: hidden;
+ margin: 12px;
+}
+
+#dashboard_quick_press .drafts,
+#dashboard_quick_press .easy-blogging {
+ padding: 10px 0 0;
+}
+
+/* Dashboard Quick Draft - Form styling */
+
+input#save-post {
+ float: left;
+}
+
+form.initial-form.quickpress-open label.prompt {
+ font-style: normal;
+}
+
+form.initial-form.quickpress-open input#title {
+ height: auto;
+}
+
+#dashboard_quick_press input,
+#dashboard_quick_press textarea {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ margin: 0;
+}
+
+#dashboard_quick_press textarea {
+ resize: vertical;
+}
+
+#dashboard-widgets .postbox form .submit {
+ margin: -39px 0;
+ float: right;
+}
+
+#description-wrap {
+ margin-top: 12px;
+}
+
+#title-wrap #title-prompt-text,
+.textarea-wrap #content-prompt-text {
+ color: #777;
+}
+
+#title-wrap #title-prompt-text {
+ font-size: 1.1em;
+ padding: 7px 8px;
+}
+
+.input-text-wrap,
+.textarea-wrap {
+ position: relative;
+}
+
+.input-text-wrap .prompt,
+.textarea-wrap .prompt {
+ position: absolute;
+}
+
+.textarea-wrap #content-prompt-text {
+ font-size: 1.1em;
+ padding: 7px 8px;
+}
+
+.textarea-wrap textarea#content {
+ margin: 0 0 8px;
+ padding: 6px 7px;
+}
+
+#quick-press textarea#content {
+ min-height: 90px;
+ max-height: 1300px;
+ resize: none;
+}
+
+/* Dashboard Quick Draft - Drafts list */
+
+.js #dashboard_quick_press .drafts {
+ border-top: 1px solid #eee;
+}
+
+#dashboard_quick_press .drafts abbr {
+ border: none;
+}
+
+#dashboard_quick_press .drafts h4 {
+ margin: 0 12px 8px;
+ font-weight: normal;
+}
+
+#dashboard_quick_press .drafts .view-all {
+ float: right;
+ margin: 0 12px 0 0;
+}
+
+#dashboard_primary a.rsswidget {
+ font-weight: normal;
+}
+
+#dashboard_quick_press .drafts ul {
+ margin: 0 12px;
+}
+
+#dashboard_quick_press .drafts li {
+ margin-bottom: 1em;
+}
+#dashboard_quick_press .drafts li time {
+ color: #777;
+}
+
+#dashboard_quick_press .drafts p {
+ margin: 0;
+ word-wrap: break-word;
+}
+
+#dashboard_quick_press .draft-title {
+ overflow: hidden;
+}
+
+#dashboard_quick_press .draft-title a,
+#dashboard_quick_press .draft-title time {
+ float: left;
+ margin: 0 5px 0 0;
+}
+
+/* Dashboard activity widget */
+
+#dashboard-widgets #dashboard_activity h4 {
+ margin: 0 0 8px 12px;
+ font-weight: normal;
+}
+
+#dashboard-widgets #dashboard_activity h4.comment-meta {
+ margin: 0;
+}
+
+#dashboard_activity h4.comment-meta {
+ margin-bottom: 4px;
+}
+
+#dashboard_activity ul {
+ padding: 0 12px;
+}
+
+#dashboard_activity .comment-meta span.approve:before {
+ content: '\f227';
+ font: 20px/.5 "dashicons";
+ margin-left: 12px;
+ vertical-align: middle;
+ position: relative;
+ top: -1px;
+ margin-right: 2px;
+}
+
+#dashboard_activity .inside {
+ padding: 0;
+ margin: 0;
+}
+
+#dashboard_activity .no-activity {
+ overflow: hidden;
+ padding: 0 12px 12px;
+ text-align: center;
+}
+
+#dashboard_activity .no-activity p {
+ color: #999;
+ font-size: 16px;
+}
+
+#dashboard_activity .no-activity .smiley {
+ margin-top: 0;
+}
+
+#dashboard_activity .no-activity .smiley:before {
+ content: '\f328';
+ font: normal 120px/1 'dashicons';
+ speak: none;
+ display: block;
+ margin: 0 5px 0 0;
+ padding: 0;
+ text-indent: 0;
+ text-align: center;
+ position: relative;
+ -webkit-font-smoothing: antialiased;
+ text-decoration: none !important;
+}
+
+#dashboard_activity .subsubsub {
+ float: none;
+ border-top: 1px solid #eeeeee;
+ margin-top: 0;
+ padding: 8px 12px 4px;
+}
+
+#future-posts ul,
+#published-posts ul {
+ clear: both;
+ margin-bottom: 0;
+}
+
+#future-posts li,
+#published-posts li {
+ overflow: hidden;
+ margin-bottom: 8px;
+}
+
+#future-posts ul span,
+#published-posts ul span {
+ color: #777;
+ float: left;
+ margin-right: 8px;
+ min-width: 150px;
+}
+
+.activity-block {
+ border-bottom: 1px solid #eee;
+ overflow: hidden;
+ padding: 8px 0 4px;
+}
+
+.activity-block:last-child {
+ border-bottom: none;
+}
+
+.activity-block .subsubsub li {
+ color: #ddd;
+}
+
+/* Dashboard activity widget - Comments */
+/* @todo: needs serious de-duplication */
+
+#activity-widget #the-comment-list tr.undo,
+#activity-widget #the-comment-list div.undo {
+ background: none;
+ padding: 6px 0;
+}
+
+#activity-widget #the-comment-list .alternate,
+#activity-widget #the-comment-list .alt {
+ background: none;
+}
+
+#activity-widget #the-comment-list .comment-item {
+ background: #fafafa;
+ padding: 12px;
+ position: relative;
+}
+
+#activity-widget #the-comment-list img {
+ position: absolute;
+ left: 13px;
+ top: 13px;
+}
+
+#activity-widget #the-comment-list .dashboard-comment-wrap {
+ padding-left: 63px;
+}
+
+#activity-widget #the-comment-list .dashboard-comment-wrap blockquote {
+ margin: 1em 0;
+}
+
+#activity-widget #the-comment-list .comment-item h4 {
+ font-size: 13px;
+ color: #999;
+}
+
+#activity-widget #the-comment-list .comment-item p.row-actions {
+ margin: 4px 0 0 0;
+}
+
+#activity-widget #the-comment-list .comment-item:first-child {
+ border-top: 1px solid #eeeeee;
+}
+
+#activity-widget #the-comment-list .unapproved {
+ background-color: #fef7f1;
+}
+
+#activity-widget #the-comment-list .unapproved:before {
+ content: "";
+ display: block;
+ position: absolute;
+ left: 0;
+ top: 0;
+ bottom: 0;
+ background: #d54e21;
+ width: 4px;
+}
+
+#activity-widget #the-comment-list .spam-undo-inside .avatar,
+#activity-widget #the-comment-list .trash-undo-inside .avatar {
+ margin-right: 20px;
+ position: relative;
+ top: 0;
+}
+
+/* Browse happy box */
+
+#dashboard-widgets #dashboard_browser_nag.postbox .inside {
+ margin: 10px;
+}
+
+.edit-box {
+ display: none;
+}
+
+h3:hover .edit-box {
+ display: inline;
+}
+
+#dashboard-widgets form .input-text-wrap input {
+ width: 100%;
+}
+
+#dashboard-widgets form .textarea-wrap textarea {
+ width: 100%;
+}
+
+#dashboard-widgets .postbox form .submit {
+ float: none;
+ margin: .5em 0 0;
+ padding: 0;
+ border: none;
+}
+
+#dashboard-widgets-wrap #dashboard-widgets .postbox form .submit #publish {
+ min-width: 0;
+}
+
+#dashboard-widgets a {
+ text-decoration: none;
+}
+
+#dashboard-widgets h3 a {
+ text-decoration: underline;
+}
+
+#dashboard-widgets h3 .postbox-title-action {
+ position: absolute;
+ right: 10px;
+ padding: 0;
+ top: 5px;
+}
+
+.js #dashboard-widgets h3 .postbox-title-action {
+ right: 33px;
+}
+
+#dashboard-widgets h4 {
+ color: #222;
+ font-weight: normal;
+ font-size: 14px;
+ margin: 0 0 .2em;
+ padding: 0;
+}
+
+#dashboard_plugins h5 {
+ font-size: 14px;
+}
+
+/* Recent Comments */
+
+#latest-comments #the-comment-list {
+ position: relative;
+}
+
+#activity-widget #the-comment-list .comment {
+ -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.06);
+ box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.06);
+}
+
+#activity-widget .comments #the-comment-list .alt {
+ background-color: transparent;
+}
+
+#activity-widget #latest-comments #the-comment-list .comment-item {
+ padding: 1em 12px;
+}
+
+#latest-comments #the-comment-list .pingback {
+ padding-left: 12px !important;
+}
+
+#latest-comments #the-comment-list .comment-item:first-child {
+ border-top: none;
+}
+
+#latest-comments #the-comment-list .comment-item h4 {
+ line-height: 1.5em;
+ margin-top: 0;
+ color: #666;
+}
+
+#latest-comments #the-comment-list .comment-item h4 cite {
+ font-style: normal;
+ font-weight: normal;
+}
+
+#latest-comments #the-comment-list .comment-item blockquote,
+#latest-comments #the-comment-list .comment-item blockquote p {
+ margin: 0;
+ padding: 0;
+ display: inline;
+}
+
+#latest-comments #the-comment-list .comment-item p.row-actions {
+ margin: 3px 0 0;
+ padding: 0;
+ font-size: 13px;
+}
+
+/* QuickDraft */
+
+#title-wrap label {
+ cursor: text;
+}
+
+#title-wrap #title {
+ padding: 2px 6px;
+ font-size: 1.3em;
+ line-height: 100%;
+ outline: none;
+}
+
+#title-wrap #title-prompt-text {
+ font-size: 1.1em;
+ padding: 5px 8px;
+}
+
+/* Feeds */
+.rss-widget ul {
+ margin: 0;
+ padding: 0;
+ list-style: none;
+}
+
+a.rsswidget {
+ font-size: 14px;
+ font-weight: 600;
+ line-height: 1.7em;
+}
+
+.rss-widget ul li {
+ line-height: 1.5em;
+ margin-bottom: 12px;
+}
+
+.rss-widget span.rss-date {
+ color: #999;
+ font-size: 13px;
+ margin-left: 3px;
+}
+
+.rss-widget cite {
+ display: block;
+ text-align: right;
+ margin: 0 0 1em;
+ padding: 0;
+}
+
+.rss-widget cite:before {
+ content: '\2014';
+}
+
+.dashboard-comment-wrap {
+ overflow: hidden;
+ word-wrap: break-word;
+}
+
+/* Browser Nag */
+#dashboard_browser_nag a.update-browser-link {
+ font-size: 1.2em;
+ font-weight: 600;
+}
+
+#dashboard_browser_nag a {
+ text-decoration: underline;
+}
+
+#dashboard_browser_nag p.browser-update-nag.has-browser-icon {
+ padding-right: 125px;
+}
+
+#dashboard_browser_nag .browser-icon {
+ margin-top: -35px;
+}
+
+#dashboard_browser_nag.postbox.browser-insecure {
+ background-color: #ac1b1b;
+ border-color: #ac1b1b;
+}
+
+#dashboard_browser_nag.postbox {
+ background-color: #e29808;
+ background-image: none;
+ border-color: #edc048;
+ color: #fff;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+#dashboard_browser_nag.postbox.browser-insecure h3 {
+ border-bottom-color: #cd5a5a;
+ color: #fff;
+}
+
+#dashboard_browser_nag.postbox h3 {
+ border-bottom-color: #f6e2ac;
+ background: transparent none;
+ color: #fff;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+#dashboard_browser_nag a {
+ color: #fff;
+}
+
+/* Make the browser nags easier to read with Open Sans */
+
+#dashboard_browser_nag h3.hndle {
+ border: none;
+ font-weight: 600;
+ font-size: 20px;
+ padding-top: 10px;
+}
+
+.postbox#dashboard_browser_nag p a.dismiss {
+ font-size: 14px;
+}
+
+.postbox#dashboard_browser_nag p,
+.postbox#dashboard_browser_nag a,
+.postbox#dashboard_browser_nag p.browser-update-nag {
+ font-size: 16px;
+}
+
+/* =Media Queries
+-------------------------------------------------------------- */
+
+/* one column on the dash */
+@media only screen and (max-width: 799px) {
+ #wpbody-content #dashboard-widgets .postbox-container {
+ width: 100%;
+ }
+}
+
+/* two columns on the dash, but keep the setting if one is selected */
+@media only screen and (min-width: 800px) and (max-width: 1499px) {
+ #wpbody-content #dashboard-widgets .postbox-container {
+ width: 49.5%;
+ }
+
+ #wpbody-content #dashboard-widgets #postbox-container-2,
+ #wpbody-content #dashboard-widgets #postbox-container-3,
+ #wpbody-content #dashboard-widgets #postbox-container-4 {
+ float: right;
+ width: 50.5%;
+ }
+
+ #dashboard-widgets #postbox-container-3 .empty-container,
+ #dashboard-widgets #postbox-container-4 .empty-container {
+ border: 0 none;
+ height: 0;
+ min-height: 0;
+ }
+
+ #wpbody #wpbody-content #dashboard-widgets.columns-1 .postbox-container {
+ width: 100%;
+ }
+
+ #wpbody #wpbody-content .metabox-holder.columns-1 .postbox-container .empty-container {
+ border: 0 none;
+ height: 0;
+ min-height: 0;
+ }
+
+ /* show the radio buttons for column prefs only for one or two columns */
+ .index-php .screen-layout,
+ .index-php .columns-prefs {
+ display: block;
+ }
+
+ .columns-prefs .columns-prefs-3,
+ .columns-prefs .columns-prefs-4 {
+ display: none;
+ }
+}
+
+/* three columns on the dash */
+@media only screen and (min-width: 1500px) and (max-width: 1800px) {
+ #wpbody-content #dashboard-widgets .postbox-container {
+ width: 33.5%;
+ }
+
+ #wpbody-content #dashboard-widgets #postbox-container-1 {
+ width: 33%;
+ }
+
+ #wpbody-content #dashboard-widgets #postbox-container-3,
+ #wpbody-content #dashboard-widgets #postbox-container-4 {
+ float: right;
+ }
+
+ #dashboard-widgets #postbox-container-4 .empty-container {
+ border: 0 none;
+ height: 0;
+ min-height: 0;
+ }
+}
+
+@media screen and (max-width: 870px) {
+ .welcome-panel .welcome-panel-column,
+ .welcome-panel .welcome-panel-column:first-child {
+ display: block;
+ float: none;
+ width: 100%;
+ }
+
+ .welcome-panel .welcome-panel-column li {
+ display: inline-block;
+ margin-right: 13px;
+ }
+
+ .welcome-panel .welcome-panel-column ul {
+ margin: 0.4em 0 0;
+ }
+
+}
+
+@media screen and ( max-width: 782px ) {
+ #dashboard_recent_comments #the-comment-list .comment-item .avatar {
+ height: 30px;
+ width: 30px;
+ margin: 4px 10px 5px 0;
+ }
+}
+
+/* Smartphone */
+@media screen and (max-width: 600px) {
+ /* Keep the close icon from overlapping the Welcome text. */
+ .welcome-panel .welcome-panel-close {
+ overflow: hidden;
+ text-indent: 100%;
+ white-space: nowrap;
+ width: 20px;
+ height: 20px;
+ right: 0;
+ padding: 5px;
+ }
+
+ /* Make the close icon larger for tappability. */
+ #welcome-panel.welcome-panel .welcome-panel-close::before {
+ font-size: 20px;
+ margin: 0;
+ }
+}
diff --git a/sources/wp-admin/css/deprecated-media-rtl.css b/sources/wp-admin/css/deprecated-media-rtl.css
new file mode 100644
index 0000000..7b69804
--- /dev/null
+++ b/sources/wp-admin/css/deprecated-media-rtl.css
@@ -0,0 +1,376 @@
+/* Styles for the media library iframe (not used on the Library screen) */
+
+div#media-upload-header {
+ margin: 0;
+ padding: 5px 5px 0;
+ font-weight: bold;
+ position: relative;
+ border-bottom: 1px solid #dfdfdf;
+ background: #f9f9f9;
+}
+
+body#media-upload ul#sidemenu {
+ font-weight: normal;
+ margin: 0 5px;
+ right: 0;
+ bottom: -1px;
+ float: none;
+ overflow: hidden;
+}
+
+#media-upload:after { /* clearfix */
+ content: "";
+ display: table;
+ clear: both;
+}
+
+#media-upload,
+#media-upload .media-item .slidetoggle {
+ background: #fff;
+}
+
+#media-upload .slidetoggle {
+ border-top-color: #dfdfdf;
+}
+
+#media-upload input[type="radio"] {
+ padding: 0;
+}
+
+form {
+ margin: 1em;
+}
+
+#search-filter {
+ text-align: left;
+}
+
+th {
+ position: relative;
+}
+
+.media-upload-form label.form-help, td.help {
+ font-family: sans-serif;
+ font-style: italic;
+ font-weight: normal;
+}
+
+.media-upload-form p.help {
+ margin: 0;
+ padding: 0;
+}
+
+.media-upload-form fieldset {
+ width: 100%;
+ border: none;
+ text-align: justify;
+ margin: 0 0 1em 0;
+ padding: 0;
+}
+
+/* specific to the image upload form */
+
+.image-align-none-label {
+ background: url(../images/align-none.png) no-repeat center right;
+}
+
+.image-align-left-label {
+ background: url(../images/align-left.png) no-repeat center right;
+}
+
+.image-align-center-label {
+ background: url(../images/align-center.png) no-repeat center right;
+}
+
+.image-align-right-label {
+ background: url(../images/align-right.png) no-repeat center right;
+}
+
+tr.image-size td {
+ width: 460px;
+}
+
+tr.image-size div.image-size-item {
+ margin: 0 0 5px;
+}
+
+#library-form .progress,
+#gallery-form .progress,
+.insert-gallery,
+.describe.startopen,
+.describe.startclosed {
+ display: none;
+}
+
+.media-item .thumbnail {
+ max-width: 128px;
+ max-height: 128px;
+}
+
+thead.media-item-info tr {
+ background-color: transparent;
+}
+
+.form-table thead.media-item-info {
+ border: 8px solid #fff;
+}
+
+abbr.required {
+ text-decoration: none;
+ border: none;
+}
+
+.describe label {
+ display: inline;
+}
+
+.describe td.error {
+ padding: 2px 8px;
+}
+
+.describe td.A1 {
+ width: 132px;
+}
+
+.describe input[type="text"],
+.describe textarea {
+ width: 460px;
+ border-width: 1px;
+ border-style: solid;
+}
+
+/* Specific to Uploader */
+
+#media-upload p.ml-submit {
+ padding: 1em 0;
+}
+
+#media-upload p.help,
+#media-upload label.help {
+ font-family: sans-serif;
+ font-style: italic;
+ font-weight: normal;
+}
+
+#media-upload .ui-sortable .media-item {
+ cursor: move;
+}
+
+#media-upload tr.image-size {
+ margin-bottom: 1em;
+ height: 3em;
+}
+
+#media-upload #filter {
+ width: 623px;
+}
+
+#media-upload #filter .subsubsub {
+ margin: 8px 0;
+}
+
+#filter .tablenav select {
+ border-style: solid;
+ border-width: 1px;
+ padding: 2px;
+ vertical-align: top;
+ width: auto;
+}
+
+#media-upload .del-attachment {
+ display: none;
+ margin: 5px 0;
+}
+
+.menu_order {
+ float: left;
+ font-size: 11px;
+ margin: 10px 10px 0;
+}
+
+.menu_order_input {
+ border: 1px solid #ddd;
+ font-size: 10px;
+ padding: 1px;
+ width: 23px;
+}
+
+.ui-sortable-helper {
+ background-color: #fff;
+ border: 1px solid #aaa;
+ opacity: 0.6;
+ filter: alpha(opacity=60);
+}
+
+#media-upload th.order-head {
+ width: 20%;
+ text-align: center;
+}
+
+#media-upload th.actions-head {
+ width: 25%;
+ text-align: center;
+}
+
+#media-upload a.wp-post-thumbnail {
+ margin: 0 20px;
+}
+
+#media-upload .widefat {
+ width: 626px;
+ border-style: solid solid none;
+}
+
+.sorthelper {
+ height: 37px;
+ width: 623px;
+ display: block;
+}
+
+#gallery-settings th.label {
+ width: 160px;
+}
+
+#gallery-settings #basic th.label {
+ padding: 5px 0 5px 5px;
+}
+
+#gallery-settings .title {
+ clear: both;
+ padding: 0 0 3px;
+ font-size: 1.6em;
+ border-bottom: 1px solid #DADADA;
+}
+
+h3.media-title {
+ font-size: 1.6em;
+}
+
+h4.media-sub-title {
+ border-bottom: 1px solid #DADADA;
+ font-size: 1.3em;
+ margin: 12px;
+ padding: 0 0 3px;
+}
+
+#gallery-settings .title,
+h3.media-title,
+h4.media-sub-title {
+ font-family: Georgia,"Times New Roman",Times,serif;
+ font-weight: normal;
+ color: #5A5A5A;
+}
+
+#gallery-settings .describe td {
+ vertical-align: middle;
+ height: 3em;
+}
+
+#gallery-settings .describe th.label {
+ padding-top: .5em;
+ text-align: right;
+}
+
+#gallery-settings .describe {
+ padding: 5px;
+ width: 615px;
+ clear: both;
+ cursor: default;
+}
+
+#gallery-settings .describe select {
+ width: 15em;
+}
+
+#gallery-settings .describe select option,
+#gallery-settings .describe td {
+ padding: 0;
+}
+
+#gallery-settings label,
+#gallery-settings legend {
+ font-size: 13px;
+ color: #464646;
+ margin-left: 15px;
+}
+
+#gallery-settings .align .field label {
+ margin: 0 3px 0 1em;
+}
+
+#gallery-settings p.ml-submit {
+ border-top: 1px solid #dfdfdf;
+}
+
+#gallery-settings select#columns {
+ width: 6em;
+}
+
+#sort-buttons {
+ font-size: 0.8em;
+ margin: 3px 0 -8px 25px;
+ text-align: left;
+ max-width: 625px;
+}
+
+#sort-buttons a {
+ text-decoration: none;
+}
+
+#sort-buttons #asc,
+#sort-buttons #showall {
+ padding-right: 5px;
+}
+
+#sort-buttons span {
+ margin-left: 25px;
+}
+
+p.media-types {
+ margin: 1em;
+}
+
+tr.not-image {
+ display: none;
+}
+
+table.not-image tr.not-image {
+ display: table-row;
+}
+
+table.not-image tr.image-only {
+ display: none;
+}
+
+/**
+ * HiDPI Displays
+ */
+@media print,
+ (-o-min-device-pixel-ratio: 5/4),
+ (-webkit-min-device-pixel-ratio: 1.25),
+ (min-resolution: 120dpi) {
+
+ .image-align-none-label {
+ background-image: url(../images/align-none-2x.png?ver=20120916);
+ -webkit-background-size: 21px 15px;
+ background-size: 21px 15px;
+ }
+
+ .image-align-left-label {
+ background-image: url(../images/align-left-2x.png?ver=20120916);
+ -webkit-background-size: 22px 15px;
+ background-size: 22px 15px;
+ }
+
+ .image-align-center-label {
+ background-image: url(../images/align-center-2x.png?ver=20120916);
+ -webkit-background-size: 21px 15px;
+ background-size: 21px 15px;
+ }
+
+ .image-align-right-label {
+ background-image: url(../images/align-right-2x.png?ver=20120916);
+ -webkit-background-size: 22px 15px;
+ background-size: 22px 15px;
+ }
+}
diff --git a/sources/wp-admin/css/deprecated-media-rtl.min.css b/sources/wp-admin/css/deprecated-media-rtl.min.css
new file mode 100644
index 0000000..a16b012
--- /dev/null
+++ b/sources/wp-admin/css/deprecated-media-rtl.min.css
@@ -0,0 +1 @@
+div#media-upload-header{margin:0;padding:5px 5px 0;font-weight:700;position:relative;border-bottom:1px solid #dfdfdf;background:#f9f9f9}body#media-upload ul#sidemenu{font-weight:400;margin:0 5px;right:0;bottom:-1px;float:none;overflow:hidden}#media-upload:after{content:"";display:table;clear:both}#media-upload,#media-upload .media-item .slidetoggle{background:#fff}#media-upload .slidetoggle{border-top-color:#dfdfdf}#media-upload input[type=radio]{padding:0}form{margin:1em}#search-filter{text-align:left}th{position:relative}.media-upload-form label.form-help,td.help{font-family:sans-serif;font-style:italic;font-weight:400}.media-upload-form p.help{margin:0;padding:0}.media-upload-form fieldset{width:100%;border:0;text-align:justify;margin:0 0 1em;padding:0}.image-align-none-label{background:url(../images/align-none.png) no-repeat center right}.image-align-left-label{background:url(../images/align-left.png) no-repeat center right}.image-align-center-label{background:url(../images/align-center.png) no-repeat center right}.image-align-right-label{background:url(../images/align-right.png) no-repeat center right}tr.image-size td{width:460px}tr.image-size div.image-size-item{margin:0 0 5px}#gallery-form .progress,#library-form .progress,.describe.startclosed,.describe.startopen,.insert-gallery{display:none}.media-item .thumbnail{max-width:128px;max-height:128px}thead.media-item-info tr{background-color:transparent}.form-table thead.media-item-info{border:8px solid #fff}abbr.required{text-decoration:none;border:0}.describe label{display:inline}.describe td.error{padding:2px 8px}.describe td.A1{width:132px}.describe input[type=text],.describe textarea{width:460px;border-width:1px;border-style:solid}#media-upload p.ml-submit{padding:1em 0}#media-upload label.help,#media-upload p.help{font-family:sans-serif;font-style:italic;font-weight:400}#media-upload .ui-sortable .media-item{cursor:move}#media-upload tr.image-size{margin-bottom:1em;height:3em}#media-upload #filter{width:623px}#media-upload #filter .subsubsub{margin:8px 0}#filter .tablenav select{border-style:solid;border-width:1px;padding:2px;vertical-align:top;width:auto}#media-upload .del-attachment{display:none;margin:5px 0}.menu_order{float:left;font-size:11px;margin:10px 10px 0}.menu_order_input{border:1px solid #ddd;font-size:10px;padding:1px;width:23px}.ui-sortable-helper{background-color:#fff;border:1px solid #aaa;opacity:.6;filter:alpha(opacity=60)}#media-upload th.order-head{width:20%;text-align:center}#media-upload th.actions-head{width:25%;text-align:center}#media-upload a.wp-post-thumbnail{margin:0 20px}#media-upload .widefat{width:626px;border-style:solid solid none}.sorthelper{height:37px;width:623px;display:block}#gallery-settings th.label{width:160px}#gallery-settings #basic th.label{padding:5px 0 5px 5px}#gallery-settings .title{clear:both;padding:0 0 3px;font-size:1.6em;border-bottom:1px solid #DADADA}h3.media-title{font-size:1.6em}h4.media-sub-title{border-bottom:1px solid #DADADA;font-size:1.3em;margin:12px;padding:0 0 3px}#gallery-settings .title,h3.media-title,h4.media-sub-title{font-family:Georgia,"Times New Roman",Times,serif;font-weight:400;color:#5A5A5A}#gallery-settings .describe td{vertical-align:middle;height:3em}#gallery-settings .describe th.label{padding-top:.5em;text-align:right}#gallery-settings .describe{padding:5px;width:615px;clear:both;cursor:default}#gallery-settings .describe select{width:15em}#gallery-settings .describe select option,#gallery-settings .describe td{padding:0}#gallery-settings label,#gallery-settings legend{font-size:13px;color:#464646;margin-left:15px}#gallery-settings .align .field label{margin:0 3px 0 1em}#gallery-settings p.ml-submit{border-top:1px solid #dfdfdf}#gallery-settings select#columns{width:6em}#sort-buttons{font-size:.8em;margin:3px 0 -8px 25px;text-align:left;max-width:625px}#sort-buttons a{text-decoration:none}#sort-buttons #asc,#sort-buttons #showall{padding-right:5px}#sort-buttons span{margin-left:25px}p.media-types{margin:1em}tr.not-image{display:none}table.not-image tr.not-image{display:table-row}table.not-image tr.image-only{display:none}@media print,(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.image-align-none-label{background-image:url(../images/align-none-2x.png?ver=20120916);-webkit-background-size:21px 15px;background-size:21px 15px}.image-align-left-label{background-image:url(../images/align-left-2x.png?ver=20120916);-webkit-background-size:22px 15px;background-size:22px 15px}.image-align-center-label{background-image:url(../images/align-center-2x.png?ver=20120916);-webkit-background-size:21px 15px;background-size:21px 15px}.image-align-right-label{background-image:url(../images/align-right-2x.png?ver=20120916);-webkit-background-size:22px 15px;background-size:22px 15px}}
\ No newline at end of file
diff --git a/sources/wp-admin/css/deprecated-media.css b/sources/wp-admin/css/deprecated-media.css
new file mode 100644
index 0000000..edd4c0b
--- /dev/null
+++ b/sources/wp-admin/css/deprecated-media.css
@@ -0,0 +1,376 @@
+/* Styles for the media library iframe (not used on the Library screen) */
+
+div#media-upload-header {
+ margin: 0;
+ padding: 5px 5px 0;
+ font-weight: bold;
+ position: relative;
+ border-bottom: 1px solid #dfdfdf;
+ background: #f9f9f9;
+}
+
+body#media-upload ul#sidemenu {
+ font-weight: normal;
+ margin: 0 5px;
+ left: 0;
+ bottom: -1px;
+ float: none;
+ overflow: hidden;
+}
+
+#media-upload:after { /* clearfix */
+ content: "";
+ display: table;
+ clear: both;
+}
+
+#media-upload,
+#media-upload .media-item .slidetoggle {
+ background: #fff;
+}
+
+#media-upload .slidetoggle {
+ border-top-color: #dfdfdf;
+}
+
+#media-upload input[type="radio"] {
+ padding: 0;
+}
+
+form {
+ margin: 1em;
+}
+
+#search-filter {
+ text-align: right;
+}
+
+th {
+ position: relative;
+}
+
+.media-upload-form label.form-help, td.help {
+ font-family: sans-serif;
+ font-style: italic;
+ font-weight: normal;
+}
+
+.media-upload-form p.help {
+ margin: 0;
+ padding: 0;
+}
+
+.media-upload-form fieldset {
+ width: 100%;
+ border: none;
+ text-align: justify;
+ margin: 0 0 1em 0;
+ padding: 0;
+}
+
+/* specific to the image upload form */
+
+.image-align-none-label {
+ background: url(../images/align-none.png) no-repeat center left;
+}
+
+.image-align-left-label {
+ background: url(../images/align-left.png) no-repeat center left;
+}
+
+.image-align-center-label {
+ background: url(../images/align-center.png) no-repeat center left;
+}
+
+.image-align-right-label {
+ background: url(../images/align-right.png) no-repeat center left;
+}
+
+tr.image-size td {
+ width: 460px;
+}
+
+tr.image-size div.image-size-item {
+ margin: 0 0 5px;
+}
+
+#library-form .progress,
+#gallery-form .progress,
+.insert-gallery,
+.describe.startopen,
+.describe.startclosed {
+ display: none;
+}
+
+.media-item .thumbnail {
+ max-width: 128px;
+ max-height: 128px;
+}
+
+thead.media-item-info tr {
+ background-color: transparent;
+}
+
+.form-table thead.media-item-info {
+ border: 8px solid #fff;
+}
+
+abbr.required {
+ text-decoration: none;
+ border: none;
+}
+
+.describe label {
+ display: inline;
+}
+
+.describe td.error {
+ padding: 2px 8px;
+}
+
+.describe td.A1 {
+ width: 132px;
+}
+
+.describe input[type="text"],
+.describe textarea {
+ width: 460px;
+ border-width: 1px;
+ border-style: solid;
+}
+
+/* Specific to Uploader */
+
+#media-upload p.ml-submit {
+ padding: 1em 0;
+}
+
+#media-upload p.help,
+#media-upload label.help {
+ font-family: sans-serif;
+ font-style: italic;
+ font-weight: normal;
+}
+
+#media-upload .ui-sortable .media-item {
+ cursor: move;
+}
+
+#media-upload tr.image-size {
+ margin-bottom: 1em;
+ height: 3em;
+}
+
+#media-upload #filter {
+ width: 623px;
+}
+
+#media-upload #filter .subsubsub {
+ margin: 8px 0;
+}
+
+#filter .tablenav select {
+ border-style: solid;
+ border-width: 1px;
+ padding: 2px;
+ vertical-align: top;
+ width: auto;
+}
+
+#media-upload .del-attachment {
+ display: none;
+ margin: 5px 0;
+}
+
+.menu_order {
+ float: right;
+ font-size: 11px;
+ margin: 10px 10px 0;
+}
+
+.menu_order_input {
+ border: 1px solid #ddd;
+ font-size: 10px;
+ padding: 1px;
+ width: 23px;
+}
+
+.ui-sortable-helper {
+ background-color: #fff;
+ border: 1px solid #aaa;
+ opacity: 0.6;
+ filter: alpha(opacity=60);
+}
+
+#media-upload th.order-head {
+ width: 20%;
+ text-align: center;
+}
+
+#media-upload th.actions-head {
+ width: 25%;
+ text-align: center;
+}
+
+#media-upload a.wp-post-thumbnail {
+ margin: 0 20px;
+}
+
+#media-upload .widefat {
+ width: 626px;
+ border-style: solid solid none;
+}
+
+.sorthelper {
+ height: 37px;
+ width: 623px;
+ display: block;
+}
+
+#gallery-settings th.label {
+ width: 160px;
+}
+
+#gallery-settings #basic th.label {
+ padding: 5px 5px 5px 0;
+}
+
+#gallery-settings .title {
+ clear: both;
+ padding: 0 0 3px;
+ font-size: 1.6em;
+ border-bottom: 1px solid #DADADA;
+}
+
+h3.media-title {
+ font-size: 1.6em;
+}
+
+h4.media-sub-title {
+ border-bottom: 1px solid #DADADA;
+ font-size: 1.3em;
+ margin: 12px;
+ padding: 0 0 3px;
+}
+
+#gallery-settings .title,
+h3.media-title,
+h4.media-sub-title {
+ font-family: Georgia,"Times New Roman",Times,serif;
+ font-weight: normal;
+ color: #5A5A5A;
+}
+
+#gallery-settings .describe td {
+ vertical-align: middle;
+ height: 3em;
+}
+
+#gallery-settings .describe th.label {
+ padding-top: .5em;
+ text-align: left;
+}
+
+#gallery-settings .describe {
+ padding: 5px;
+ width: 615px;
+ clear: both;
+ cursor: default;
+}
+
+#gallery-settings .describe select {
+ width: 15em;
+}
+
+#gallery-settings .describe select option,
+#gallery-settings .describe td {
+ padding: 0;
+}
+
+#gallery-settings label,
+#gallery-settings legend {
+ font-size: 13px;
+ color: #464646;
+ margin-right: 15px;
+}
+
+#gallery-settings .align .field label {
+ margin: 0 1em 0 3px;
+}
+
+#gallery-settings p.ml-submit {
+ border-top: 1px solid #dfdfdf;
+}
+
+#gallery-settings select#columns {
+ width: 6em;
+}
+
+#sort-buttons {
+ font-size: 0.8em;
+ margin: 3px 25px -8px 0;
+ text-align: right;
+ max-width: 625px;
+}
+
+#sort-buttons a {
+ text-decoration: none;
+}
+
+#sort-buttons #asc,
+#sort-buttons #showall {
+ padding-left: 5px;
+}
+
+#sort-buttons span {
+ margin-right: 25px;
+}
+
+p.media-types {
+ margin: 1em;
+}
+
+tr.not-image {
+ display: none;
+}
+
+table.not-image tr.not-image {
+ display: table-row;
+}
+
+table.not-image tr.image-only {
+ display: none;
+}
+
+/**
+ * HiDPI Displays
+ */
+@media print,
+ (-o-min-device-pixel-ratio: 5/4),
+ (-webkit-min-device-pixel-ratio: 1.25),
+ (min-resolution: 120dpi) {
+
+ .image-align-none-label {
+ background-image: url(../images/align-none-2x.png?ver=20120916);
+ -webkit-background-size: 21px 15px;
+ background-size: 21px 15px;
+ }
+
+ .image-align-left-label {
+ background-image: url(../images/align-left-2x.png?ver=20120916);
+ -webkit-background-size: 22px 15px;
+ background-size: 22px 15px;
+ }
+
+ .image-align-center-label {
+ background-image: url(../images/align-center-2x.png?ver=20120916);
+ -webkit-background-size: 21px 15px;
+ background-size: 21px 15px;
+ }
+
+ .image-align-right-label {
+ background-image: url(../images/align-right-2x.png?ver=20120916);
+ -webkit-background-size: 22px 15px;
+ background-size: 22px 15px;
+ }
+}
diff --git a/sources/wp-admin/css/deprecated-media.min.css b/sources/wp-admin/css/deprecated-media.min.css
new file mode 100644
index 0000000..a6aca1d
--- /dev/null
+++ b/sources/wp-admin/css/deprecated-media.min.css
@@ -0,0 +1 @@
+div#media-upload-header{margin:0;padding:5px 5px 0;font-weight:700;position:relative;border-bottom:1px solid #dfdfdf;background:#f9f9f9}body#media-upload ul#sidemenu{font-weight:400;margin:0 5px;left:0;bottom:-1px;float:none;overflow:hidden}#media-upload:after{content:"";display:table;clear:both}#media-upload,#media-upload .media-item .slidetoggle{background:#fff}#media-upload .slidetoggle{border-top-color:#dfdfdf}#media-upload input[type=radio]{padding:0}form{margin:1em}#search-filter{text-align:right}th{position:relative}.media-upload-form label.form-help,td.help{font-family:sans-serif;font-style:italic;font-weight:400}.media-upload-form p.help{margin:0;padding:0}.media-upload-form fieldset{width:100%;border:0;text-align:justify;margin:0 0 1em;padding:0}.image-align-none-label{background:url(../images/align-none.png) no-repeat center left}.image-align-left-label{background:url(../images/align-left.png) no-repeat center left}.image-align-center-label{background:url(../images/align-center.png) no-repeat center left}.image-align-right-label{background:url(../images/align-right.png) no-repeat center left}tr.image-size td{width:460px}tr.image-size div.image-size-item{margin:0 0 5px}#gallery-form .progress,#library-form .progress,.describe.startclosed,.describe.startopen,.insert-gallery{display:none}.media-item .thumbnail{max-width:128px;max-height:128px}thead.media-item-info tr{background-color:transparent}.form-table thead.media-item-info{border:8px solid #fff}abbr.required{text-decoration:none;border:0}.describe label{display:inline}.describe td.error{padding:2px 8px}.describe td.A1{width:132px}.describe input[type=text],.describe textarea{width:460px;border-width:1px;border-style:solid}#media-upload p.ml-submit{padding:1em 0}#media-upload label.help,#media-upload p.help{font-family:sans-serif;font-style:italic;font-weight:400}#media-upload .ui-sortable .media-item{cursor:move}#media-upload tr.image-size{margin-bottom:1em;height:3em}#media-upload #filter{width:623px}#media-upload #filter .subsubsub{margin:8px 0}#filter .tablenav select{border-style:solid;border-width:1px;padding:2px;vertical-align:top;width:auto}#media-upload .del-attachment{display:none;margin:5px 0}.menu_order{float:right;font-size:11px;margin:10px 10px 0}.menu_order_input{border:1px solid #ddd;font-size:10px;padding:1px;width:23px}.ui-sortable-helper{background-color:#fff;border:1px solid #aaa;opacity:.6;filter:alpha(opacity=60)}#media-upload th.order-head{width:20%;text-align:center}#media-upload th.actions-head{width:25%;text-align:center}#media-upload a.wp-post-thumbnail{margin:0 20px}#media-upload .widefat{width:626px;border-style:solid solid none}.sorthelper{height:37px;width:623px;display:block}#gallery-settings th.label{width:160px}#gallery-settings #basic th.label{padding:5px 5px 5px 0}#gallery-settings .title{clear:both;padding:0 0 3px;font-size:1.6em;border-bottom:1px solid #DADADA}h3.media-title{font-size:1.6em}h4.media-sub-title{border-bottom:1px solid #DADADA;font-size:1.3em;margin:12px;padding:0 0 3px}#gallery-settings .title,h3.media-title,h4.media-sub-title{font-family:Georgia,"Times New Roman",Times,serif;font-weight:400;color:#5A5A5A}#gallery-settings .describe td{vertical-align:middle;height:3em}#gallery-settings .describe th.label{padding-top:.5em;text-align:left}#gallery-settings .describe{padding:5px;width:615px;clear:both;cursor:default}#gallery-settings .describe select{width:15em}#gallery-settings .describe select option,#gallery-settings .describe td{padding:0}#gallery-settings label,#gallery-settings legend{font-size:13px;color:#464646;margin-right:15px}#gallery-settings .align .field label{margin:0 1em 0 3px}#gallery-settings p.ml-submit{border-top:1px solid #dfdfdf}#gallery-settings select#columns{width:6em}#sort-buttons{font-size:.8em;margin:3px 25px -8px 0;text-align:right;max-width:625px}#sort-buttons a{text-decoration:none}#sort-buttons #asc,#sort-buttons #showall{padding-left:5px}#sort-buttons span{margin-right:25px}p.media-types{margin:1em}tr.not-image{display:none}table.not-image tr.not-image{display:table-row}table.not-image tr.image-only{display:none}@media print,(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.image-align-none-label{background-image:url(../images/align-none-2x.png?ver=20120916);-webkit-background-size:21px 15px;background-size:21px 15px}.image-align-left-label{background-image:url(../images/align-left-2x.png?ver=20120916);-webkit-background-size:22px 15px;background-size:22px 15px}.image-align-center-label{background-image:url(../images/align-center-2x.png?ver=20120916);-webkit-background-size:21px 15px;background-size:21px 15px}.image-align-right-label{background-image:url(../images/align-right-2x.png?ver=20120916);-webkit-background-size:22px 15px;background-size:22px 15px}}
\ No newline at end of file
diff --git a/sources/wp-admin/css/edit-rtl.css b/sources/wp-admin/css/edit-rtl.css
new file mode 100644
index 0000000..2bb6650
--- /dev/null
+++ b/sources/wp-admin/css/edit-rtl.css
@@ -0,0 +1,1423 @@
+#poststuff {
+ padding-top: 10px;
+ min-width: 763px;
+}
+
+#poststuff #post-body {
+ padding: 0;
+}
+
+#poststuff .postbox-container {
+ width: 100%;
+}
+
+#poststuff #post-body.columns-2 {
+ margin-left: 300px;
+}
+
+/*------------------------------------------------------------------------------
+ 11.0 - Write/Edit Post Screen
+------------------------------------------------------------------------------*/
+
+#show-comments {
+ overflow: hidden;
+}
+
+#save-action .spinner,
+#show-comments a,
+#show-comments .spinner {
+ float: right;
+}
+
+#lost-connection-notice .spinner {
+ display: block;
+ float: right;
+ margin: 0 0 0 5px;
+}
+
+#titlediv {
+ position: relative;
+ margin-bottom: 10px;
+}
+
+#titlediv label {
+ cursor: text;
+}
+
+#titlediv div.inside {
+ margin: 0;
+}
+
+#poststuff #titlewrap {
+ border: 0;
+ padding: 0;
+}
+
+#titlediv #title {
+ padding: 3px 8px;
+ font-size: 1.7em;
+ line-height: 100%;
+ height: 1.7em;
+ width: 100%;
+ outline: none;
+ margin: 0;
+ background-color: #fff;
+}
+
+#titlediv #title-prompt-text {
+ color: #777;
+ position: absolute;
+ font-size: 1.7em;
+ padding: 11px 10px;
+}
+
+#wp-fullscreen-save .fs-saved {
+ color: #999;
+ float: left;
+ margin-top: 4px;
+}
+
+#poststuff .inside-submitbox,
+#side-sortables .inside-submitbox {
+ margin: 0 3px;
+ font-size: 11px;
+}
+
+input#link_description,
+input#link_url {
+ width: 98%;
+}
+
+#pending {
+ background: 0 none;
+ border: 0 none;
+ padding: 0;
+ font-size: 11px;
+ margin-top: -1px;
+}
+
+#edit-slug-box {
+ line-height: 24px;
+ min-height: 25px; /* Yes, line-height + 1 */
+ margin-top: 5px;
+ padding: 0 10px;
+ color: #666;
+}
+
+#edit-slug-box .cancel {
+ margin-left: 10px;
+ font-size: 11px;
+}
+
+#editable-post-name-full {
+ display: none;
+}
+
+#editable-post-name {
+ background-color: #fffbcc;
+}
+
+#editable-post-name input {
+ font-size: 13px;
+ height: 22px;
+ margin: 0;
+ width: 16em;
+}
+
+.postarea h3 label {
+ float: right;
+}
+
+.submitbox .submit {
+ text-align: right;
+ padding: 12px 10px 10px;
+ font-size: 11px;
+ background-color: #464646;
+ color: #ccc;
+}
+
+.submitbox .submitdelete {
+ text-decoration: none;
+ padding: 1px 2px;
+}
+
+/* @todo: do we really need this? word on the street is we don't and this
+stray rule may actually be compensated for elsewhere. */
+#normal-sortables .submitbox .submitdelete:hover {
+ color: #000;
+ background-color: #f00;
+ border-bottom-color: #f00;
+}
+
+.submitbox .submit a:hover {
+ text-decoration: underline;
+}
+
+.submitbox .submit input {
+ margin-bottom: 8px;
+ margin-left: 4px;
+ padding: 6px;
+}
+
+.inside-submitbox #post_status {
+ margin: 2px -2px 2px 0;
+}
+
+#post-status-select {
+ margin-top: 3px;
+}
+
+/* Post Screen */
+#post-body #normal-sortables {
+ min-height: 50px;
+}
+
+.postbox {
+ position: relative;
+ min-width: 255px;
+ border: 1px solid #e5e5e5;
+ -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
+ box-shadow: 0 1px 1px rgba(0,0,0,0.04);
+ background: #fff;
+}
+
+#trackback_url {
+ width: 99%;
+}
+
+#normal-sortables .postbox .submit {
+ background: transparent none;
+ border: 0 none;
+ float: left;
+ padding: 0 12px;
+ margin:0;
+}
+
+.category-add input[type="text"],
+.category-add select {
+ width: 100%;
+ max-width: 260px;
+ vertical-align: baseline;
+}
+
+#side-sortables .category-add input[type="text"],
+#side-sortables .category-add select {
+ margin: 0 0 1em;
+}
+
+ul.category-tabs li,
+#side-sortables .add-menu-item-tabs li,
+.wp-tab-bar li {
+ display: inline;
+ line-height: 1.35em;
+}
+
+.no-js .category-tabs li.hide-if-no-js {
+ display: none;
+}
+
+.category-tabs a,
+#side-sortables .add-menu-item-tabs a,
+.wp-tab-bar a {
+ text-decoration: none;
+}
+
+/* @todo: do these really need to be so specific? */
+#side-sortables .category-tabs .tabs a,
+#side-sortables .add-menu-item-tabs .tabs a,
+.wp-tab-bar .wp-tab-active a,
+#post-body ul.category-tabs li.tabs a,
+#post-body ul.add-menu-item-tabs li.tabs a {
+ color: #333;
+}
+
+.category-tabs {
+ margin: 8px 0 5px;
+}
+
+#category-adder h4 {
+ margin: 10px 0;
+}
+
+#side-sortables .add-menu-item-tabs,
+.wp-tab-bar {
+ margin-bottom: 3px;
+}
+
+#normal-sortables .postbox #replyrow .submit {
+ float: none;
+ margin: 0;
+ padding: 0 7px 5px;
+}
+
+#side-sortables .submitbox .submit input,
+#side-sortables .submitbox .submit .preview,
+#side-sortables .submitbox .submit a.preview:hover {
+ border: 0 none;
+}
+
+#side-sortables .inside-submitbox .insidebox,
+.stuffbox .insidebox {
+ margin: 11px 0;
+}
+
+/* @todo: make this a more generic class */
+ul.category-tabs,
+ul.add-menu-item-tabs,
+ul.wp-tab-bar {
+ margin-top: 12px;
+}
+
+ul.category-tabs li,
+ul.add-menu-item-tabs li {
+ border: solid 1px transparent;
+ position: relative;
+}
+
+ul.category-tabs li.tabs,
+ul.add-menu-item-tabs li.tabs,
+.wp-tab-active {
+ border: 1px solid #dfdfdf;
+ border-bottom-color: #fdfdfd;
+ background-color: #fdfdfd;
+}
+
+ul.category-tabs li,
+ul.add-menu-item-tabs li,
+ul.wp-tab-bar li {
+ padding: 3px 5px 5px;
+}
+
+#postimagediv .inside img {
+ max-width: 100%;
+ height: auto;
+}
+
+form#tags-filter {
+ position: relative;
+}
+
+/* Edit posts */
+td.post-title strong,
+td.plugin-title strong {
+ display: block;
+ margin-bottom: .2em;
+ font-size: 14px;
+}
+
+td.post-title p,
+td.plugin-title p {
+ margin: 6px 0;
+}
+
+/* Global classes */
+.wp-hidden-children .wp-hidden-child,
+.ui-tabs-hide {
+ display: none;
+}
+
+#post-body .tagsdiv #newtag {
+ margin-left: 5px;
+ width: 16em;
+}
+
+#side-sortables input#post_password {
+ width: 94%
+}
+
+#side-sortables .tagsdiv #newtag {
+ width: 68%;
+}
+
+#post-status-info {
+ width: 100%;
+ border-spacing: 0;
+ border: 1px solid #e5e5e5;
+ border-top: none;
+ background-color: #f7f7f7;
+ -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
+ box-shadow: 0 1px 1px rgba(0,0,0,0.04);
+}
+
+#post-status-info td {
+ font-size: 12px;
+}
+
+.autosave-info {
+ padding: 2px;
+ text-align: left;
+}
+
+#editorcontent #post-status-info {
+ border: none;
+}
+
+#content-resize-handle {
+ background: transparent url(../images/resize.gif) no-repeat scroll left bottom;
+ width: 12px;
+ cursor: row-resize;
+}
+
+.rtl #content-resize-handle {
+ background: transparent url(../images/resize-rtl.gif) no-repeat scroll right bottom;
+}
+
+#wp-word-count {
+ display: block;
+ padding: 2px 10px;
+}
+
+#timestampdiv select {
+ height: 21px;
+ line-height: 14px;
+ padding: 0;
+ vertical-align: top;
+ font-size: 12px;
+}
+
+#aa, #jj, #hh, #mn {
+ padding: 1px;
+ font-size: 12px;
+}
+
+#jj, #hh, #mn {
+ width: 2em;
+}
+
+#aa {
+ width: 3.4em;
+}
+
+.curtime #timestamp {
+ padding: 2px 0 1px 0;
+ display: inline !important;
+ height: auto !important;
+}
+
+#misc-publishing-actions label[for="post_status"]:before,
+#post-body #visibility:before,
+.curtime #timestamp:before,
+#post-body .misc-pub-revisions:before,
+span.wp-media-buttons-icon:before {
+ color: #888;
+}
+
+#post-body #visibility:before,
+.curtime #timestamp:before,
+#post-body .misc-pub-revisions:before {
+ font: normal 20px/1 'dashicons';
+ speak: none;
+ display: inline-block;
+ padding: 0 0 0 2px;
+ top: 0;
+ right: -1px;
+ position: relative;
+ vertical-align: top;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ text-decoration: none !important;
+}
+
+#post-body #visibility:before {
+ content: '\f177';
+}
+
+.curtime #timestamp:before {
+ content: '\f145';
+ top: -1px;
+}
+
+#post-body .misc-pub-revisions:before {
+ content: '\f321';
+}
+
+#timestampdiv {
+ padding-top: 5px;
+ line-height: 23px;
+}
+
+#timestampdiv p {
+ margin: 8px 0 6px;
+}
+
+#timestampdiv input {
+ border-width: 1px;
+ border-style: solid;
+}
+
+.notification-dialog {
+ position: fixed;
+ top: 30%;
+ right: 50%;
+ width: 450px;
+ margin-right: -225px;
+ background: #fff;
+ -webkit-box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
+ box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
+ line-height: 1.5;
+ z-index: 1000005;
+}
+
+.notification-dialog-background {
+ position: fixed;
+ top: 0;
+ right: 0;
+ left: 0;
+ bottom: 0;
+ background: #000;
+ opacity: 0.7;
+ filter: alpha(opacity=70);
+ z-index: 1000000;
+}
+
+#post-lock-dialog .post-locked-message,
+#post-lock-dialog .post-taken-over {
+ margin: 25px;
+}
+
+#post-lock-dialog .post-locked-message a.button {
+ margin-left: 10px;
+}
+
+#post-lock-dialog .post-locked-avatar {
+ float: right;
+ margin: 0 0 20px 20px;
+}
+
+#post-lock-dialog .wp-tab-first {
+ outline: 0;
+}
+
+#post-lock-dialog .locked-saving img {
+ float: right;
+ margin-left: 3px;
+}
+
+#post-lock-dialog.saving .locked-saving,
+#post-lock-dialog.saved .locked-saved {
+ display: inline;
+}
+
+#excerpt,
+.attachmentlinks {
+ margin: 0;
+ height: 4em;
+ width: 98%;
+}
+
+.tagchecklist {
+ margin-right: 14px;
+ font-size: 12px;
+ overflow: auto;
+}
+
+.tagchecklist br {
+ display: none;
+}
+
+.tagchecklist strong {
+ margin-right: -8px;
+ position: absolute;
+}
+
+.tagchecklist span {
+ margin-left: 25px;
+ display: block;
+ float: right;
+ font-size: 13px;
+ line-height: 1.8em;
+ white-space: nowrap;
+ cursor: default;
+}
+
+.tagchecklist span a {
+ margin: 1px -17px 0 0;
+ cursor: pointer;
+ width: 20px;
+ height: 20px;
+ display: block;
+ float: right;
+ text-indent: 0;
+ overflow: hidden;
+ position: absolute;
+}
+
+#poststuff h2 {
+ margin-top: 20px;
+ font-size: 1.5em;
+ margin-bottom: 15px;
+ padding: 0 0 3px;
+ clear: right;
+}
+
+#poststuff h3 {
+ font-size: 14px;
+ padding: 8px 12px;
+ margin: 0;
+ line-height: 1.4;
+}
+
+#poststuff .inside {
+ margin: 6px 0 0 0;
+}
+
+#poststuff .inside #parent_id,
+#poststuff .inside #page_template {
+ max-width: 100%;
+}
+
+#poststuff .inside label.spam,
+#poststuff .inside label.deleted {
+ color: red;
+}
+
+#poststuff .inside label.waiting {
+ color: orange;
+}
+
+#poststuff .inside label.approved {
+ color: green;
+}
+
+.ie8 #poststuff .inside #parent_id,
+.ie8 #poststuff .inside #page_template {
+ width: 250px;
+}
+
+#post-visibility-select {
+ line-height: 1.5em;
+ margin-top: 3px;
+}
+
+#poststuff #submitdiv .inside {
+ margin: 0;
+ padding: 0;
+}
+
+.edit-form-section {
+ margin-bottom: 20px;
+}
+
+/*------------------------------------------------------------------------------
+ 11.1 - Custom Fields
+------------------------------------------------------------------------------*/
+
+#postcustomstuff thead th {
+ padding: 5px 8px 8px;
+ background-color: #f1f1f1;
+}
+
+#postcustom #postcustomstuff .submit {
+ border: 0 none;
+ float: none;
+ padding: 0 8px 8px;
+}
+
+#side-sortables #postcustom #postcustomstuff .submit {
+ margin: 0;
+ padding: 0;
+}
+
+#side-sortables #postcustom #postcustomstuff #the-list textarea {
+ height: 85px;
+}
+
+#side-sortables #postcustom #postcustomstuff td.left input,
+#side-sortables #postcustom #postcustomstuff td.left select,
+#side-sortables #postcustomstuff #newmetaleft a {
+ margin: 3px 3px 0;
+}
+
+#postcustomstuff table {
+ margin: 0;
+ width: 100%;
+ border: 1px solid #dfdfdf;
+ border-spacing: 0;
+ background-color: #f9f9f9;
+}
+
+#postcustomstuff tr {
+ vertical-align: top;
+}
+
+#postcustomstuff table input,
+#postcustomstuff table select,
+#postcustomstuff table textarea {
+ width: 96%;
+ margin: 8px;
+}
+
+#side-sortables #postcustomstuff table input,
+#side-sortables #postcustomstuff table select,
+#side-sortables #postcustomstuff table textarea {
+ margin: 3px;
+}
+
+#postcustomstuff th.left,
+#postcustomstuff td.left {
+ width: 38%;
+}
+
+#postcustomstuff .submit input {
+ margin: 0;
+ width: auto;
+}
+
+#postcustomstuff #newmetaleft a {
+ display: inline-block;
+ margin: 0 8px 8px;
+ text-decoration: none;
+}
+
+.no-js #postcustomstuff #enternew {
+ display: none;
+}
+
+#post-body-content .compat-attachment-fields {
+ margin-bottom: 20px;
+}
+
+.compat-attachment-fields th {
+ padding-top: 5px;
+ padding-left: 10px;
+}
+
+/*------------------------------------------------------------------------------
+ 11.3 - Featured Images
+------------------------------------------------------------------------------*/
+
+#select-featured-image {
+ padding: 4px 0;
+ overflow: hidden;
+}
+
+#select-featured-image img {
+ max-width: 100%;
+ height: auto;
+ margin-bottom: 10px;
+}
+
+#select-featured-image a {
+ float: right;
+ clear: both;
+}
+
+#select-featured-image .remove {
+ display: none;
+ margin-top: 10px;
+}
+
+.js #select-featured-image.has-featured-image .remove {
+ display: inline-block;
+}
+
+.no-js #select-featured-image .choose {
+ display: none;
+}
+
+/*------------------------------------------------------------------------------
+ 11.4 - Post formats
+------------------------------------------------------------------------------*/
+
+.post-state-format {
+ overflow: hidden;
+ display: inline-block;
+ vertical-align: middle;
+ height: 20px;
+ width: 20px;
+ margin-left: 5px;
+ margin-top: -4px;
+}
+
+.post-state-format:before {
+ display: block;
+ height: 20px;
+ width: 20px;
+ font: normal 20px/1 'dashicons' !important;
+ speak: none;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+.post-state-format:before,
+.post-format-icon:before {
+ color: #ddd;
+ -webkit-transition: all .1s ease-in-out;
+ transition: all .1s ease-in-out;
+}
+
+a.post-state-format:hover:before,
+a.post-format-icon:hover:before {
+ color: #2ea2cc;
+}
+
+#post-formats-select {
+ line-height: 2em;
+}
+
+#post-formats-select .post-format-icon:before {
+ top: 5px;
+}
+
+input.post-format {
+ margin-top: 1px;
+}
+
+label.post-format-icon {
+ margin-right: 0px;
+ padding: 2px 0px 2px 0;
+}
+
+.post-format-icon:before {
+ position: relative;
+ display: inline-block;
+ margin-left: 7px;
+ font: normal 20px/1 'dashicons';
+ speak: none;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+.post-state-format.post-format-standard:before,
+.post-format-icon.post-format-standard:before,
+a.post-state-format.format-standard:before {
+ content: '\f109';
+}
+
+.post-state-format.post-format-image:before,
+.post-format-icon.post-format-image:before,
+a.post-state-format.format-image:before {
+ content: '\f128';
+}
+
+.post-state-format.post-format-gallery:before,
+.post-format-icon.post-format-gallery:before,
+a.post-state-format.format-gallery:before {
+ content: '\f161';
+}
+
+.post-state-format.post-format-audio:before,
+.post-format-icon.post-format-audio:before,
+a.post-state-format.format-audio:before {
+ content: '\f127';
+}
+
+.post-state-format.post-format-video:before,
+.post-format-icon.post-format-video:before,
+a.post-state-format.format-video:before {
+ content: '\f126';
+}
+
+.post-state-format.post-format-chat:before,
+.post-format-icon.post-format-chat:before,
+a.post-state-format.format-chat:before {
+ content: '\f125';
+}
+
+.post-state-format.post-format-status:before,
+.post-format-icon.post-format-status:before,
+a.post-state-format.format-status:before {
+ content: '\f130';
+}
+
+.post-state-format.post-format-aside:before,
+.post-format-icon.post-format-aside:before,
+a.post-state-format.format-aside:before {
+ content: '\f123';
+}
+
+.post-state-format.post-format-quote:before,
+.post-format-icon.post-format-quote:before,
+a.post-state-format.format-quote:before {
+ content: '\f122';
+}
+
+.post-state-format.post-format-link:before,
+.post-format-icon.post-format-link:before,
+a.post-state-format.format-link:before {
+ content: '\f103';
+}
+
+/*------------------------------------------------------------------------------
+ 12.0 - Categories
+------------------------------------------------------------------------------*/
+
+.category-adder {
+ margin-right: 120px;
+ padding: 4px 0;
+}
+
+.category-adder h4 {
+ margin: 0 0 8px;
+}
+
+#side-sortables .category-adder {
+ margin: 0;
+}
+
+.wp-tab-panel,
+.categorydiv div.tabs-panel,
+.customlinkdiv div.tabs-panel,
+.posttypediv div.tabs-panel,
+.taxonomydiv div.tabs-panel {
+ min-height: 42px;
+ max-height: 200px;
+ overflow: auto;
+ padding: 0 0.9em;
+ border: solid 1px #dfdfdf;
+ background-color: #fdfdfd;
+}
+
+div.tabs-panel-active {
+ display:block;
+}
+
+div.tabs-panel-inactive {
+ display:none;
+}
+
+#front-page-warning,
+#front-static-pages ul,
+ul.export-filters,
+.inline-editor ul.cat-checklist ul,
+.categorydiv ul.categorychecklist ul,
+.customlinkdiv ul.categorychecklist ul,
+.posttypediv ul.categorychecklist ul,
+.taxonomydiv ul.categorychecklist ul {
+ margin-right: 18px;
+}
+
+ul.categorychecklist li {
+ margin: 0;
+ padding: 0;
+ line-height: 22px;
+ word-wrap: break-word;
+}
+
+.categorydiv .tabs-panel,
+.customlinkdiv .tabs-panel,
+.posttypediv .tabs-panel,
+.taxonomydiv .tabs-panel {
+ border-width: 3px;
+ border-style: solid;
+}
+
+.form-wrap p,
+.form-wrap label {
+ font-size: 11px;
+}
+
+.form-wrap label {
+ display: block;
+ padding: 2px;
+ font-size: 12px;
+}
+
+.form-field input,
+.form-field textarea {
+ border-style: solid;
+ border-width: 1px;
+ width: 95%;
+}
+
+p.description,
+.form-wrap p {
+ margin: 2px 0 5px;
+ color: #666;
+}
+
+p.help,
+p.description,
+span.description,
+.form-wrap p {
+ font-size: 13px;
+ font-style: italic;
+}
+
+.form-wrap .form-field {
+ margin: 0 0 10px;
+ padding: 8px 0;
+}
+
+.form-wrap .form-field #parent {
+ max-width: 100%;
+}
+
+.col-wrap h3 {
+ margin: 12px 0;
+ font-size: 1.1em;
+}
+
+.col-wrap p.submit {
+ margin-top: -10px;
+}
+
+
+/*------------------------------------------------------------------------------
+ 13.0 - Tags
+------------------------------------------------------------------------------*/
+
+.tagsdiv {
+ margin-top: -8px;
+}
+
+#poststuff .taghint {
+ color: #aaa;
+ margin: 15px 12px -24px 0;
+}
+
+#poststuff .tagsdiv .howto {
+ margin: 0 0 6px 0;
+}
+
+.ajaxtag .newtag {
+ position: relative;
+}
+
+.tagsdiv .newtag {
+ width: 180px;
+}
+
+.tagsdiv .the-tags {
+ display: block;
+ height: 60px;
+ margin: 0 auto;
+ overflow: auto;
+ width: 260px;
+}
+
+#post-body-content .tagsdiv .the-tags {
+ margin: 0 5px;
+}
+
+/* tag hints */
+.taghint {
+ color: #aaa;
+ margin: -17px 7px 0 0;
+ visibility: hidden;
+}
+
+input.newtag ~ div.taghint {
+ visibility: visible;
+}
+
+input.newtag:focus ~ div.taghint {
+ visibility: hidden;
+}
+
+p.popular-tags {
+ border: none;
+ line-height: 2em;
+ max-width: 1000px;
+ padding: 8px 12px 12px;
+ text-align: justify;
+}
+
+p.popular-tags a {
+ padding: 0 3px;
+}
+
+.tagcloud {
+ width: 97%;
+ margin: 0 0 40px;
+ text-align: justify;
+}
+
+.tagcloud h3 {
+ margin: 2px 0 12px;
+}
+
+.ac_results {
+ padding: 0;
+ margin: 0;
+ list-style: none;
+ position: absolute;
+ z-index: 10000;
+ display: none;
+ border: 1px solid #808080;
+ background-color: #fff;
+}
+
+.wp-customizer .ac_results {
+ z-index: 500000;
+}
+
+.ac_results li {
+ padding: 2px 5px;
+ white-space: nowrap;
+ color: #101010;
+ text-align: right;
+}
+
+.ac_over {
+ background-color: #f0f0b8;
+ cursor: pointer;
+}
+
+.ac_match {
+ text-decoration: underline;
+}
+
+/* Comments */
+
+.comment-php .wp-editor-area {
+ height: 200px;
+}
+
+.comment-ays {
+ margin-bottom: 0;
+ border-bottom-style: solid;
+ border-bottom-width: 1px;
+}
+
+.comment-ays .alt {
+ background-color: transparent;
+}
+
+.trash-undo-inside,
+.spam-undo-inside {
+ margin: 1px 0 1px 8px;
+ line-height: 16px;
+}
+
+.spam-undo-inside .avatar,
+.trash-undo-inside .avatar {
+ height: 20px;
+ width: 20px;
+ margin-left: 8px;
+ vertical-align: middle;
+}
+
+.stuffbox .editcomment {
+ clear: none;
+}
+
+#comment-status-radio p {
+ margin: 3px 0 5px;
+}
+
+#comment-status-radio input {
+ margin: 2px 0 5px 3px;
+ vertical-align: middle;
+}
+
+#comment-status-radio label {
+ padding: 5px 0;
+}
+
+/* links tables */
+table.links-table {
+ width: 100%;
+ border-spacing: 0;
+}
+
+.links-table th {
+ font-weight: normal;
+ text-align: right;
+ vertical-align: top;
+ min-width: 80px;
+ width: 20%;
+ word-wrap: break-word;
+}
+
+.links-table th,
+.links-table td {
+ padding: 5px 0;
+}
+
+.links-table td label {
+ margin-left: 8px;
+}
+
+.links-table td input[type="text"],
+.links-table td textarea {
+ width: 100%;
+}
+
+.links-table #link_rel {
+ max-width: 280px;
+}
+
+/* =Media Queries
+-------------------------------------------------------------- */
+
+/**
+ * HiDPI Displays
+ */
+@media print,
+ (-o-min-device-pixel-ratio: 5/4),
+ (-webkit-min-device-pixel-ratio: 1.25),
+ (min-resolution: 120dpi) {
+ #content-resize-handle,
+ #post-body .wp_themeSkin .mceStatusbar a.mceResize {
+ background: transparent url(../images/resize-2x.gif) no-repeat scroll left bottom;
+ -webkit-background-size: 11px 11px;
+ background-size: 11px 11px;
+ }
+
+ .rtl #content-resize-handle,
+ .rtl #post-body .wp_themeSkin .mceStatusbar a.mceResize {
+ background: transparent url(../images/resize-rtl-2x.gif) no-repeat scroll left bottom;
+ }
+}
+
+/* one column on the post write/edit screen */
+@media only screen and (max-width: 850px) {
+ #poststuff {
+ min-width: 0;
+ }
+
+ #wpbody-content #poststuff #post-body {
+ margin: 0;
+ }
+
+ #wpbody-content #post-body.columns-2 #postbox-container-1 {
+ margin-left: 0;
+ width: 100%;
+ }
+
+ #poststuff #postbox-container-1 .empty-container,
+ #poststuff #postbox-container-1 #side-sortables:empty {
+ border: 0 none;
+ height: 0;
+ min-height: 0;
+ }
+
+ #poststuff #post-body.columns-2 #side-sortables {
+ min-height: 0;
+ }
+
+ /* hide the radio buttons for column prefs */
+ .screen-layout,
+ .columns-prefs {
+ display: none;
+ }
+}
+
+@media screen and ( max-width: 782px ) {
+ #post-body-content {
+ min-width: 0;
+ }
+
+ #titlediv #title-prompt-text {
+ padding: 10px 10px;
+ }
+
+ #poststuff h3 {
+ padding: 12px;
+ }
+
+ .post-format-options {
+ padding-left: 0;
+ }
+
+ .post-format-options a {
+ margin-left: 5px;
+ margin-bottom: 5px;
+ min-width: 52px;
+ }
+
+ .post-format-options .post-format-title {
+ font-size: 11px;
+ }
+
+ .post-format-options a div {
+ height: 28px;
+ width: 28px;
+ }
+
+ .post-format-options a div:before {
+ font-size: 26px !important;
+ }
+
+ /* Publish Metabox Options */
+ #post-visibility-select {
+ line-height: 280%;
+ }
+
+ .wp-core-ui .save-post-visibility,
+ .wp-core-ui .save-timestamp {
+ vertical-align: middle;
+ margin-left: 15px;
+ }
+
+ .timestamp-wrap select#mm {
+ display: block;
+ width: 100%;
+ margin-bottom: 10px;
+ }
+
+ .timestamp-wrap #jj,
+ .timestamp-wrap #aa,
+ .timestamp-wrap #hh,
+ .timestamp-wrap #mn {
+ padding: 12px 3px;
+ font-size: 14px;
+ margin-bottom: 5px;
+ width: auto;
+ text-align: center;
+ }
+
+ /* Categories Metabox */
+ ul.category-tabs {
+ margin: 30px 0 15px;
+ }
+
+ ul.category-tabs li.tabs {
+ padding: 15px;
+ }
+
+ ul.categorychecklist li {
+ margin-bottom: 15px;
+ }
+
+ ul.categorychecklist ul {
+ margin-top: 15px;
+ }
+
+ .category-add input[type=text],
+ .category-add select {
+ max-width: none;
+ margin-bottom: 15px;
+ }
+
+ /* Tags Metabox */
+ .tagsdiv .newtag {
+ width: 100%;
+ height: auto;
+ margin-bottom: 15px;
+ }
+
+ .tagchecklist {
+ margin: 25px 10px;
+ }
+
+ .tagchecklist span {
+ font-size: 16px;
+ line-height: 120%;
+ }
+
+ /* Discussion */
+ #commentstatusdiv p {
+ line-height: 2.8;
+ }
+
+ /* TinyMCE Adjustments */
+ .mceToolbar * {
+ white-space: normal !important;
+ }
+
+ .mceToolbar tr,
+ .mceToolbar td {
+ float: right !important;
+ }
+
+ .wp_themeSkin a.mceButton {
+ width: 30px;
+ height: 30px;
+ }
+
+ .wp_themeSkin .mceButton .mceIcon {
+ margin-top: 5px;
+ margin-right: 5px;
+ }
+
+ .wp_themeSkin .mceSplitButton {
+ margin-top: 1px;
+ }
+
+ .wp_themeSkin .mceSplitButton td a.mceAction {
+ padding-top: 6px;
+ padding-bottom: 6px;
+ padding-right: 6px;
+ padding-left: 3px;
+ }
+
+ .wp_themeSkin .mceSplitButton td a.mceOpen,
+ .wp_themeSkin .mceSplitButtonEnabled:hover td a.mceOpen {
+ padding-top: 6px;
+ padding-bottom: 6px;
+ background-position: 1px 6px;
+ }
+
+ .wp_themeSkin table.mceListBox {
+ margin: 5px;
+ }
+
+ div.quicktags-toolbar input {
+ padding: 10px 20px;
+ }
+
+ #wp-content-editor-tools {
+ overflow: hidden;
+ padding: 20px 0 1px 15px;
+ top: 1px;
+ }
+
+ a.wp-switch-editor {
+ font-size: 16px;
+ line-height: 1em;
+ margin: 3px 7px 0 0;
+ padding: 12px 15px;
+ }
+
+ #wp-content-media-buttons a {
+ font-size: 16px;
+ line-height: 37px;
+ height: 39px;
+ padding: 0 15px 0 20px;
+ }
+
+ .wp-media-buttons span.wp-media-buttons-icon,
+ .wp-media-buttons span.jetpack-contact-form-icon {
+ width: 22px !important;
+ margin-top: -3px !important;
+ margin-right: -5px !important;
+ }
+
+ .wp-media-buttons .add_media span.wp-media-buttons-icon:before,
+ .wp-media-buttons #insert-jetpack-contact-form span.jetpack-contact-form-icon:before {
+ font-size: 20px !important;
+ }
+
+ #content_wp_fullscreen {
+ display: none;
+ }
+
+ .misc-pub-section {
+ padding: 20px 10px 20px;
+ }
+
+ .misc-pub-section > a {
+ float: left;
+ font-size: 16px;
+ }
+
+ #delete-action,
+ #publishing-action {
+ line-height: 47px;
+ }
+
+ /* Moderate Comment */
+ .comment-ays {
+ border-bottom: none;
+ }
+
+ /* Links */
+ .links-table #link_rel {
+ max-width: none;
+ }
+
+ .links-table th,
+ .links-table td {
+ padding: 10px 0;
+ }
+}
+
+@media only screen and (max-width: 500px) {
+ /* Align Add Media + Visual + Text tabs */
+ #wp-content-media-buttons a {
+ font-size: 14px;
+ padding: 0 10px 0 10px;
+ }
+}
diff --git a/sources/wp-admin/css/edit.css b/sources/wp-admin/css/edit.css
new file mode 100644
index 0000000..646384e
--- /dev/null
+++ b/sources/wp-admin/css/edit.css
@@ -0,0 +1,1423 @@
+#poststuff {
+ padding-top: 10px;
+ min-width: 763px;
+}
+
+#poststuff #post-body {
+ padding: 0;
+}
+
+#poststuff .postbox-container {
+ width: 100%;
+}
+
+#poststuff #post-body.columns-2 {
+ margin-right: 300px;
+}
+
+/*------------------------------------------------------------------------------
+ 11.0 - Write/Edit Post Screen
+------------------------------------------------------------------------------*/
+
+#show-comments {
+ overflow: hidden;
+}
+
+#save-action .spinner,
+#show-comments a,
+#show-comments .spinner {
+ float: left;
+}
+
+#lost-connection-notice .spinner {
+ display: block;
+ float: left;
+ margin: 0 5px 0 0;
+}
+
+#titlediv {
+ position: relative;
+ margin-bottom: 10px;
+}
+
+#titlediv label {
+ cursor: text;
+}
+
+#titlediv div.inside {
+ margin: 0;
+}
+
+#poststuff #titlewrap {
+ border: 0;
+ padding: 0;
+}
+
+#titlediv #title {
+ padding: 3px 8px;
+ font-size: 1.7em;
+ line-height: 100%;
+ height: 1.7em;
+ width: 100%;
+ outline: none;
+ margin: 0;
+ background-color: #fff;
+}
+
+#titlediv #title-prompt-text {
+ color: #777;
+ position: absolute;
+ font-size: 1.7em;
+ padding: 11px 10px;
+}
+
+#wp-fullscreen-save .fs-saved {
+ color: #999;
+ float: right;
+ margin-top: 4px;
+}
+
+#poststuff .inside-submitbox,
+#side-sortables .inside-submitbox {
+ margin: 0 3px;
+ font-size: 11px;
+}
+
+input#link_description,
+input#link_url {
+ width: 98%;
+}
+
+#pending {
+ background: 0 none;
+ border: 0 none;
+ padding: 0;
+ font-size: 11px;
+ margin-top: -1px;
+}
+
+#edit-slug-box {
+ line-height: 24px;
+ min-height: 25px; /* Yes, line-height + 1 */
+ margin-top: 5px;
+ padding: 0 10px;
+ color: #666;
+}
+
+#edit-slug-box .cancel {
+ margin-right: 10px;
+ font-size: 11px;
+}
+
+#editable-post-name-full {
+ display: none;
+}
+
+#editable-post-name {
+ background-color: #fffbcc;
+}
+
+#editable-post-name input {
+ font-size: 13px;
+ height: 22px;
+ margin: 0;
+ width: 16em;
+}
+
+.postarea h3 label {
+ float: left;
+}
+
+.submitbox .submit {
+ text-align: left;
+ padding: 12px 10px 10px;
+ font-size: 11px;
+ background-color: #464646;
+ color: #ccc;
+}
+
+.submitbox .submitdelete {
+ text-decoration: none;
+ padding: 1px 2px;
+}
+
+/* @todo: do we really need this? word on the street is we don't and this
+stray rule may actually be compensated for elsewhere. */
+#normal-sortables .submitbox .submitdelete:hover {
+ color: #000;
+ background-color: #f00;
+ border-bottom-color: #f00;
+}
+
+.submitbox .submit a:hover {
+ text-decoration: underline;
+}
+
+.submitbox .submit input {
+ margin-bottom: 8px;
+ margin-right: 4px;
+ padding: 6px;
+}
+
+.inside-submitbox #post_status {
+ margin: 2px 0 2px -2px;
+}
+
+#post-status-select {
+ margin-top: 3px;
+}
+
+/* Post Screen */
+#post-body #normal-sortables {
+ min-height: 50px;
+}
+
+.postbox {
+ position: relative;
+ min-width: 255px;
+ border: 1px solid #e5e5e5;
+ -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
+ box-shadow: 0 1px 1px rgba(0,0,0,0.04);
+ background: #fff;
+}
+
+#trackback_url {
+ width: 99%;
+}
+
+#normal-sortables .postbox .submit {
+ background: transparent none;
+ border: 0 none;
+ float: right;
+ padding: 0 12px;
+ margin:0;
+}
+
+.category-add input[type="text"],
+.category-add select {
+ width: 100%;
+ max-width: 260px;
+ vertical-align: baseline;
+}
+
+#side-sortables .category-add input[type="text"],
+#side-sortables .category-add select {
+ margin: 0 0 1em;
+}
+
+ul.category-tabs li,
+#side-sortables .add-menu-item-tabs li,
+.wp-tab-bar li {
+ display: inline;
+ line-height: 1.35em;
+}
+
+.no-js .category-tabs li.hide-if-no-js {
+ display: none;
+}
+
+.category-tabs a,
+#side-sortables .add-menu-item-tabs a,
+.wp-tab-bar a {
+ text-decoration: none;
+}
+
+/* @todo: do these really need to be so specific? */
+#side-sortables .category-tabs .tabs a,
+#side-sortables .add-menu-item-tabs .tabs a,
+.wp-tab-bar .wp-tab-active a,
+#post-body ul.category-tabs li.tabs a,
+#post-body ul.add-menu-item-tabs li.tabs a {
+ color: #333;
+}
+
+.category-tabs {
+ margin: 8px 0 5px;
+}
+
+#category-adder h4 {
+ margin: 10px 0;
+}
+
+#side-sortables .add-menu-item-tabs,
+.wp-tab-bar {
+ margin-bottom: 3px;
+}
+
+#normal-sortables .postbox #replyrow .submit {
+ float: none;
+ margin: 0;
+ padding: 0 7px 5px;
+}
+
+#side-sortables .submitbox .submit input,
+#side-sortables .submitbox .submit .preview,
+#side-sortables .submitbox .submit a.preview:hover {
+ border: 0 none;
+}
+
+#side-sortables .inside-submitbox .insidebox,
+.stuffbox .insidebox {
+ margin: 11px 0;
+}
+
+/* @todo: make this a more generic class */
+ul.category-tabs,
+ul.add-menu-item-tabs,
+ul.wp-tab-bar {
+ margin-top: 12px;
+}
+
+ul.category-tabs li,
+ul.add-menu-item-tabs li {
+ border: solid 1px transparent;
+ position: relative;
+}
+
+ul.category-tabs li.tabs,
+ul.add-menu-item-tabs li.tabs,
+.wp-tab-active {
+ border: 1px solid #dfdfdf;
+ border-bottom-color: #fdfdfd;
+ background-color: #fdfdfd;
+}
+
+ul.category-tabs li,
+ul.add-menu-item-tabs li,
+ul.wp-tab-bar li {
+ padding: 3px 5px 5px;
+}
+
+#postimagediv .inside img {
+ max-width: 100%;
+ height: auto;
+}
+
+form#tags-filter {
+ position: relative;
+}
+
+/* Edit posts */
+td.post-title strong,
+td.plugin-title strong {
+ display: block;
+ margin-bottom: .2em;
+ font-size: 14px;
+}
+
+td.post-title p,
+td.plugin-title p {
+ margin: 6px 0;
+}
+
+/* Global classes */
+.wp-hidden-children .wp-hidden-child,
+.ui-tabs-hide {
+ display: none;
+}
+
+#post-body .tagsdiv #newtag {
+ margin-right: 5px;
+ width: 16em;
+}
+
+#side-sortables input#post_password {
+ width: 94%
+}
+
+#side-sortables .tagsdiv #newtag {
+ width: 68%;
+}
+
+#post-status-info {
+ width: 100%;
+ border-spacing: 0;
+ border: 1px solid #e5e5e5;
+ border-top: none;
+ background-color: #f7f7f7;
+ -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
+ box-shadow: 0 1px 1px rgba(0,0,0,0.04);
+}
+
+#post-status-info td {
+ font-size: 12px;
+}
+
+.autosave-info {
+ padding: 2px;
+ text-align: right;
+}
+
+#editorcontent #post-status-info {
+ border: none;
+}
+
+#content-resize-handle {
+ background: transparent url(../images/resize.gif) no-repeat scroll right bottom;
+ width: 12px;
+ cursor: row-resize;
+}
+
+.rtl #content-resize-handle {
+ background: transparent url(../images/resize-rtl.gif) no-repeat scroll left bottom;
+}
+
+#wp-word-count {
+ display: block;
+ padding: 2px 10px;
+}
+
+#timestampdiv select {
+ height: 21px;
+ line-height: 14px;
+ padding: 0;
+ vertical-align: top;
+ font-size: 12px;
+}
+
+#aa, #jj, #hh, #mn {
+ padding: 1px;
+ font-size: 12px;
+}
+
+#jj, #hh, #mn {
+ width: 2em;
+}
+
+#aa {
+ width: 3.4em;
+}
+
+.curtime #timestamp {
+ padding: 2px 0 1px 0;
+ display: inline !important;
+ height: auto !important;
+}
+
+#misc-publishing-actions label[for="post_status"]:before,
+#post-body #visibility:before,
+.curtime #timestamp:before,
+#post-body .misc-pub-revisions:before,
+span.wp-media-buttons-icon:before {
+ color: #888;
+}
+
+#post-body #visibility:before,
+.curtime #timestamp:before,
+#post-body .misc-pub-revisions:before {
+ font: normal 20px/1 'dashicons';
+ speak: none;
+ display: inline-block;
+ padding: 0 2px 0 0;
+ top: 0;
+ left: -1px;
+ position: relative;
+ vertical-align: top;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ text-decoration: none !important;
+}
+
+#post-body #visibility:before {
+ content: '\f177';
+}
+
+.curtime #timestamp:before {
+ content: '\f145';
+ top: -1px;
+}
+
+#post-body .misc-pub-revisions:before {
+ content: '\f321';
+}
+
+#timestampdiv {
+ padding-top: 5px;
+ line-height: 23px;
+}
+
+#timestampdiv p {
+ margin: 8px 0 6px;
+}
+
+#timestampdiv input {
+ border-width: 1px;
+ border-style: solid;
+}
+
+.notification-dialog {
+ position: fixed;
+ top: 30%;
+ left: 50%;
+ width: 450px;
+ margin-left: -225px;
+ background: #fff;
+ -webkit-box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
+ box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
+ line-height: 1.5;
+ z-index: 1000005;
+}
+
+.notification-dialog-background {
+ position: fixed;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ background: #000;
+ opacity: 0.7;
+ filter: alpha(opacity=70);
+ z-index: 1000000;
+}
+
+#post-lock-dialog .post-locked-message,
+#post-lock-dialog .post-taken-over {
+ margin: 25px;
+}
+
+#post-lock-dialog .post-locked-message a.button {
+ margin-right: 10px;
+}
+
+#post-lock-dialog .post-locked-avatar {
+ float: left;
+ margin: 0 20px 20px 0;
+}
+
+#post-lock-dialog .wp-tab-first {
+ outline: 0;
+}
+
+#post-lock-dialog .locked-saving img {
+ float: left;
+ margin-right: 3px;
+}
+
+#post-lock-dialog.saving .locked-saving,
+#post-lock-dialog.saved .locked-saved {
+ display: inline;
+}
+
+#excerpt,
+.attachmentlinks {
+ margin: 0;
+ height: 4em;
+ width: 98%;
+}
+
+.tagchecklist {
+ margin-left: 14px;
+ font-size: 12px;
+ overflow: auto;
+}
+
+.tagchecklist br {
+ display: none;
+}
+
+.tagchecklist strong {
+ margin-left: -8px;
+ position: absolute;
+}
+
+.tagchecklist span {
+ margin-right: 25px;
+ display: block;
+ float: left;
+ font-size: 13px;
+ line-height: 1.8em;
+ white-space: nowrap;
+ cursor: default;
+}
+
+.tagchecklist span a {
+ margin: 1px 0 0 -17px;
+ cursor: pointer;
+ width: 20px;
+ height: 20px;
+ display: block;
+ float: left;
+ text-indent: 0;
+ overflow: hidden;
+ position: absolute;
+}
+
+#poststuff h2 {
+ margin-top: 20px;
+ font-size: 1.5em;
+ margin-bottom: 15px;
+ padding: 0 0 3px;
+ clear: left;
+}
+
+#poststuff h3 {
+ font-size: 14px;
+ padding: 8px 12px;
+ margin: 0;
+ line-height: 1.4;
+}
+
+#poststuff .inside {
+ margin: 6px 0 0 0;
+}
+
+#poststuff .inside #parent_id,
+#poststuff .inside #page_template {
+ max-width: 100%;
+}
+
+#poststuff .inside label.spam,
+#poststuff .inside label.deleted {
+ color: red;
+}
+
+#poststuff .inside label.waiting {
+ color: orange;
+}
+
+#poststuff .inside label.approved {
+ color: green;
+}
+
+.ie8 #poststuff .inside #parent_id,
+.ie8 #poststuff .inside #page_template {
+ width: 250px;
+}
+
+#post-visibility-select {
+ line-height: 1.5em;
+ margin-top: 3px;
+}
+
+#poststuff #submitdiv .inside {
+ margin: 0;
+ padding: 0;
+}
+
+.edit-form-section {
+ margin-bottom: 20px;
+}
+
+/*------------------------------------------------------------------------------
+ 11.1 - Custom Fields
+------------------------------------------------------------------------------*/
+
+#postcustomstuff thead th {
+ padding: 5px 8px 8px;
+ background-color: #f1f1f1;
+}
+
+#postcustom #postcustomstuff .submit {
+ border: 0 none;
+ float: none;
+ padding: 0 8px 8px;
+}
+
+#side-sortables #postcustom #postcustomstuff .submit {
+ margin: 0;
+ padding: 0;
+}
+
+#side-sortables #postcustom #postcustomstuff #the-list textarea {
+ height: 85px;
+}
+
+#side-sortables #postcustom #postcustomstuff td.left input,
+#side-sortables #postcustom #postcustomstuff td.left select,
+#side-sortables #postcustomstuff #newmetaleft a {
+ margin: 3px 3px 0;
+}
+
+#postcustomstuff table {
+ margin: 0;
+ width: 100%;
+ border: 1px solid #dfdfdf;
+ border-spacing: 0;
+ background-color: #f9f9f9;
+}
+
+#postcustomstuff tr {
+ vertical-align: top;
+}
+
+#postcustomstuff table input,
+#postcustomstuff table select,
+#postcustomstuff table textarea {
+ width: 96%;
+ margin: 8px;
+}
+
+#side-sortables #postcustomstuff table input,
+#side-sortables #postcustomstuff table select,
+#side-sortables #postcustomstuff table textarea {
+ margin: 3px;
+}
+
+#postcustomstuff th.left,
+#postcustomstuff td.left {
+ width: 38%;
+}
+
+#postcustomstuff .submit input {
+ margin: 0;
+ width: auto;
+}
+
+#postcustomstuff #newmetaleft a {
+ display: inline-block;
+ margin: 0 8px 8px;
+ text-decoration: none;
+}
+
+.no-js #postcustomstuff #enternew {
+ display: none;
+}
+
+#post-body-content .compat-attachment-fields {
+ margin-bottom: 20px;
+}
+
+.compat-attachment-fields th {
+ padding-top: 5px;
+ padding-right: 10px;
+}
+
+/*------------------------------------------------------------------------------
+ 11.3 - Featured Images
+------------------------------------------------------------------------------*/
+
+#select-featured-image {
+ padding: 4px 0;
+ overflow: hidden;
+}
+
+#select-featured-image img {
+ max-width: 100%;
+ height: auto;
+ margin-bottom: 10px;
+}
+
+#select-featured-image a {
+ float: left;
+ clear: both;
+}
+
+#select-featured-image .remove {
+ display: none;
+ margin-top: 10px;
+}
+
+.js #select-featured-image.has-featured-image .remove {
+ display: inline-block;
+}
+
+.no-js #select-featured-image .choose {
+ display: none;
+}
+
+/*------------------------------------------------------------------------------
+ 11.4 - Post formats
+------------------------------------------------------------------------------*/
+
+.post-state-format {
+ overflow: hidden;
+ display: inline-block;
+ vertical-align: middle;
+ height: 20px;
+ width: 20px;
+ margin-right: 5px;
+ margin-top: -4px;
+}
+
+.post-state-format:before {
+ display: block;
+ height: 20px;
+ width: 20px;
+ font: normal 20px/1 'dashicons' !important;
+ speak: none;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+.post-state-format:before,
+.post-format-icon:before {
+ color: #ddd;
+ -webkit-transition: all .1s ease-in-out;
+ transition: all .1s ease-in-out;
+}
+
+a.post-state-format:hover:before,
+a.post-format-icon:hover:before {
+ color: #2ea2cc;
+}
+
+#post-formats-select {
+ line-height: 2em;
+}
+
+#post-formats-select .post-format-icon:before {
+ top: 5px;
+}
+
+input.post-format {
+ margin-top: 1px;
+}
+
+label.post-format-icon {
+ margin-left: 0px;
+ padding: 2px 0 2px 0px;
+}
+
+.post-format-icon:before {
+ position: relative;
+ display: inline-block;
+ margin-right: 7px;
+ font: normal 20px/1 'dashicons';
+ speak: none;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+.post-state-format.post-format-standard:before,
+.post-format-icon.post-format-standard:before,
+a.post-state-format.format-standard:before {
+ content: '\f109';
+}
+
+.post-state-format.post-format-image:before,
+.post-format-icon.post-format-image:before,
+a.post-state-format.format-image:before {
+ content: '\f128';
+}
+
+.post-state-format.post-format-gallery:before,
+.post-format-icon.post-format-gallery:before,
+a.post-state-format.format-gallery:before {
+ content: '\f161';
+}
+
+.post-state-format.post-format-audio:before,
+.post-format-icon.post-format-audio:before,
+a.post-state-format.format-audio:before {
+ content: '\f127';
+}
+
+.post-state-format.post-format-video:before,
+.post-format-icon.post-format-video:before,
+a.post-state-format.format-video:before {
+ content: '\f126';
+}
+
+.post-state-format.post-format-chat:before,
+.post-format-icon.post-format-chat:before,
+a.post-state-format.format-chat:before {
+ content: '\f125';
+}
+
+.post-state-format.post-format-status:before,
+.post-format-icon.post-format-status:before,
+a.post-state-format.format-status:before {
+ content: '\f130';
+}
+
+.post-state-format.post-format-aside:before,
+.post-format-icon.post-format-aside:before,
+a.post-state-format.format-aside:before {
+ content: '\f123';
+}
+
+.post-state-format.post-format-quote:before,
+.post-format-icon.post-format-quote:before,
+a.post-state-format.format-quote:before {
+ content: '\f122';
+}
+
+.post-state-format.post-format-link:before,
+.post-format-icon.post-format-link:before,
+a.post-state-format.format-link:before {
+ content: '\f103';
+}
+
+/*------------------------------------------------------------------------------
+ 12.0 - Categories
+------------------------------------------------------------------------------*/
+
+.category-adder {
+ margin-left: 120px;
+ padding: 4px 0;
+}
+
+.category-adder h4 {
+ margin: 0 0 8px;
+}
+
+#side-sortables .category-adder {
+ margin: 0;
+}
+
+.wp-tab-panel,
+.categorydiv div.tabs-panel,
+.customlinkdiv div.tabs-panel,
+.posttypediv div.tabs-panel,
+.taxonomydiv div.tabs-panel {
+ min-height: 42px;
+ max-height: 200px;
+ overflow: auto;
+ padding: 0 0.9em;
+ border: solid 1px #dfdfdf;
+ background-color: #fdfdfd;
+}
+
+div.tabs-panel-active {
+ display:block;
+}
+
+div.tabs-panel-inactive {
+ display:none;
+}
+
+#front-page-warning,
+#front-static-pages ul,
+ul.export-filters,
+.inline-editor ul.cat-checklist ul,
+.categorydiv ul.categorychecklist ul,
+.customlinkdiv ul.categorychecklist ul,
+.posttypediv ul.categorychecklist ul,
+.taxonomydiv ul.categorychecklist ul {
+ margin-left: 18px;
+}
+
+ul.categorychecklist li {
+ margin: 0;
+ padding: 0;
+ line-height: 22px;
+ word-wrap: break-word;
+}
+
+.categorydiv .tabs-panel,
+.customlinkdiv .tabs-panel,
+.posttypediv .tabs-panel,
+.taxonomydiv .tabs-panel {
+ border-width: 3px;
+ border-style: solid;
+}
+
+.form-wrap p,
+.form-wrap label {
+ font-size: 11px;
+}
+
+.form-wrap label {
+ display: block;
+ padding: 2px;
+ font-size: 12px;
+}
+
+.form-field input,
+.form-field textarea {
+ border-style: solid;
+ border-width: 1px;
+ width: 95%;
+}
+
+p.description,
+.form-wrap p {
+ margin: 2px 0 5px;
+ color: #666;
+}
+
+p.help,
+p.description,
+span.description,
+.form-wrap p {
+ font-size: 13px;
+ font-style: italic;
+}
+
+.form-wrap .form-field {
+ margin: 0 0 10px;
+ padding: 8px 0;
+}
+
+.form-wrap .form-field #parent {
+ max-width: 100%;
+}
+
+.col-wrap h3 {
+ margin: 12px 0;
+ font-size: 1.1em;
+}
+
+.col-wrap p.submit {
+ margin-top: -10px;
+}
+
+
+/*------------------------------------------------------------------------------
+ 13.0 - Tags
+------------------------------------------------------------------------------*/
+
+.tagsdiv {
+ margin-top: -8px;
+}
+
+#poststuff .taghint {
+ color: #aaa;
+ margin: 15px 0 -24px 12px;
+}
+
+#poststuff .tagsdiv .howto {
+ margin: 0 0 6px 0;
+}
+
+.ajaxtag .newtag {
+ position: relative;
+}
+
+.tagsdiv .newtag {
+ width: 180px;
+}
+
+.tagsdiv .the-tags {
+ display: block;
+ height: 60px;
+ margin: 0 auto;
+ overflow: auto;
+ width: 260px;
+}
+
+#post-body-content .tagsdiv .the-tags {
+ margin: 0 5px;
+}
+
+/* tag hints */
+.taghint {
+ color: #aaa;
+ margin: -17px 0 0 7px;
+ visibility: hidden;
+}
+
+input.newtag ~ div.taghint {
+ visibility: visible;
+}
+
+input.newtag:focus ~ div.taghint {
+ visibility: hidden;
+}
+
+p.popular-tags {
+ border: none;
+ line-height: 2em;
+ max-width: 1000px;
+ padding: 8px 12px 12px;
+ text-align: justify;
+}
+
+p.popular-tags a {
+ padding: 0 3px;
+}
+
+.tagcloud {
+ width: 97%;
+ margin: 0 0 40px;
+ text-align: justify;
+}
+
+.tagcloud h3 {
+ margin: 2px 0 12px;
+}
+
+.ac_results {
+ padding: 0;
+ margin: 0;
+ list-style: none;
+ position: absolute;
+ z-index: 10000;
+ display: none;
+ border: 1px solid #808080;
+ background-color: #fff;
+}
+
+.wp-customizer .ac_results {
+ z-index: 500000;
+}
+
+.ac_results li {
+ padding: 2px 5px;
+ white-space: nowrap;
+ color: #101010;
+ text-align: left;
+}
+
+.ac_over {
+ background-color: #f0f0b8;
+ cursor: pointer;
+}
+
+.ac_match {
+ text-decoration: underline;
+}
+
+/* Comments */
+
+.comment-php .wp-editor-area {
+ height: 200px;
+}
+
+.comment-ays {
+ margin-bottom: 0;
+ border-bottom-style: solid;
+ border-bottom-width: 1px;
+}
+
+.comment-ays .alt {
+ background-color: transparent;
+}
+
+.trash-undo-inside,
+.spam-undo-inside {
+ margin: 1px 8px 1px 0;
+ line-height: 16px;
+}
+
+.spam-undo-inside .avatar,
+.trash-undo-inside .avatar {
+ height: 20px;
+ width: 20px;
+ margin-right: 8px;
+ vertical-align: middle;
+}
+
+.stuffbox .editcomment {
+ clear: none;
+}
+
+#comment-status-radio p {
+ margin: 3px 0 5px;
+}
+
+#comment-status-radio input {
+ margin: 2px 3px 5px 0;
+ vertical-align: middle;
+}
+
+#comment-status-radio label {
+ padding: 5px 0;
+}
+
+/* links tables */
+table.links-table {
+ width: 100%;
+ border-spacing: 0;
+}
+
+.links-table th {
+ font-weight: normal;
+ text-align: left;
+ vertical-align: top;
+ min-width: 80px;
+ width: 20%;
+ word-wrap: break-word;
+}
+
+.links-table th,
+.links-table td {
+ padding: 5px 0;
+}
+
+.links-table td label {
+ margin-right: 8px;
+}
+
+.links-table td input[type="text"],
+.links-table td textarea {
+ width: 100%;
+}
+
+.links-table #link_rel {
+ max-width: 280px;
+}
+
+/* =Media Queries
+-------------------------------------------------------------- */
+
+/**
+ * HiDPI Displays
+ */
+@media print,
+ (-o-min-device-pixel-ratio: 5/4),
+ (-webkit-min-device-pixel-ratio: 1.25),
+ (min-resolution: 120dpi) {
+ #content-resize-handle,
+ #post-body .wp_themeSkin .mceStatusbar a.mceResize {
+ background: transparent url(../images/resize-2x.gif) no-repeat scroll right bottom;
+ -webkit-background-size: 11px 11px;
+ background-size: 11px 11px;
+ }
+
+ .rtl #content-resize-handle,
+ .rtl #post-body .wp_themeSkin .mceStatusbar a.mceResize {
+ background: transparent url(../images/resize-rtl-2x.gif) no-repeat scroll right bottom;
+ }
+}
+
+/* one column on the post write/edit screen */
+@media only screen and (max-width: 850px) {
+ #poststuff {
+ min-width: 0;
+ }
+
+ #wpbody-content #poststuff #post-body {
+ margin: 0;
+ }
+
+ #wpbody-content #post-body.columns-2 #postbox-container-1 {
+ margin-right: 0;
+ width: 100%;
+ }
+
+ #poststuff #postbox-container-1 .empty-container,
+ #poststuff #postbox-container-1 #side-sortables:empty {
+ border: 0 none;
+ height: 0;
+ min-height: 0;
+ }
+
+ #poststuff #post-body.columns-2 #side-sortables {
+ min-height: 0;
+ }
+
+ /* hide the radio buttons for column prefs */
+ .screen-layout,
+ .columns-prefs {
+ display: none;
+ }
+}
+
+@media screen and ( max-width: 782px ) {
+ #post-body-content {
+ min-width: 0;
+ }
+
+ #titlediv #title-prompt-text {
+ padding: 10px 10px;
+ }
+
+ #poststuff h3 {
+ padding: 12px;
+ }
+
+ .post-format-options {
+ padding-right: 0;
+ }
+
+ .post-format-options a {
+ margin-right: 5px;
+ margin-bottom: 5px;
+ min-width: 52px;
+ }
+
+ .post-format-options .post-format-title {
+ font-size: 11px;
+ }
+
+ .post-format-options a div {
+ height: 28px;
+ width: 28px;
+ }
+
+ .post-format-options a div:before {
+ font-size: 26px !important;
+ }
+
+ /* Publish Metabox Options */
+ #post-visibility-select {
+ line-height: 280%;
+ }
+
+ .wp-core-ui .save-post-visibility,
+ .wp-core-ui .save-timestamp {
+ vertical-align: middle;
+ margin-right: 15px;
+ }
+
+ .timestamp-wrap select#mm {
+ display: block;
+ width: 100%;
+ margin-bottom: 10px;
+ }
+
+ .timestamp-wrap #jj,
+ .timestamp-wrap #aa,
+ .timestamp-wrap #hh,
+ .timestamp-wrap #mn {
+ padding: 12px 3px;
+ font-size: 14px;
+ margin-bottom: 5px;
+ width: auto;
+ text-align: center;
+ }
+
+ /* Categories Metabox */
+ ul.category-tabs {
+ margin: 30px 0 15px;
+ }
+
+ ul.category-tabs li.tabs {
+ padding: 15px;
+ }
+
+ ul.categorychecklist li {
+ margin-bottom: 15px;
+ }
+
+ ul.categorychecklist ul {
+ margin-top: 15px;
+ }
+
+ .category-add input[type=text],
+ .category-add select {
+ max-width: none;
+ margin-bottom: 15px;
+ }
+
+ /* Tags Metabox */
+ .tagsdiv .newtag {
+ width: 100%;
+ height: auto;
+ margin-bottom: 15px;
+ }
+
+ .tagchecklist {
+ margin: 25px 10px;
+ }
+
+ .tagchecklist span {
+ font-size: 16px;
+ line-height: 120%;
+ }
+
+ /* Discussion */
+ #commentstatusdiv p {
+ line-height: 2.8;
+ }
+
+ /* TinyMCE Adjustments */
+ .mceToolbar * {
+ white-space: normal !important;
+ }
+
+ .mceToolbar tr,
+ .mceToolbar td {
+ float: left !important;
+ }
+
+ .wp_themeSkin a.mceButton {
+ width: 30px;
+ height: 30px;
+ }
+
+ .wp_themeSkin .mceButton .mceIcon {
+ margin-top: 5px;
+ margin-left: 5px;
+ }
+
+ .wp_themeSkin .mceSplitButton {
+ margin-top: 1px;
+ }
+
+ .wp_themeSkin .mceSplitButton td a.mceAction {
+ padding-top: 6px;
+ padding-bottom: 6px;
+ padding-left: 6px;
+ padding-right: 3px;
+ }
+
+ .wp_themeSkin .mceSplitButton td a.mceOpen,
+ .wp_themeSkin .mceSplitButtonEnabled:hover td a.mceOpen {
+ padding-top: 6px;
+ padding-bottom: 6px;
+ background-position: 1px 6px;
+ }
+
+ .wp_themeSkin table.mceListBox {
+ margin: 5px;
+ }
+
+ div.quicktags-toolbar input {
+ padding: 10px 20px;
+ }
+
+ #wp-content-editor-tools {
+ overflow: hidden;
+ padding: 20px 15px 1px 0;
+ top: 1px;
+ }
+
+ a.wp-switch-editor {
+ font-size: 16px;
+ line-height: 1em;
+ margin: 3px 0 0 7px;
+ padding: 12px 15px;
+ }
+
+ #wp-content-media-buttons a {
+ font-size: 16px;
+ line-height: 37px;
+ height: 39px;
+ padding: 0 20px 0 15px;
+ }
+
+ .wp-media-buttons span.wp-media-buttons-icon,
+ .wp-media-buttons span.jetpack-contact-form-icon {
+ width: 22px !important;
+ margin-top: -3px !important;
+ margin-left: -5px !important;
+ }
+
+ .wp-media-buttons .add_media span.wp-media-buttons-icon:before,
+ .wp-media-buttons #insert-jetpack-contact-form span.jetpack-contact-form-icon:before {
+ font-size: 20px !important;
+ }
+
+ #content_wp_fullscreen {
+ display: none;
+ }
+
+ .misc-pub-section {
+ padding: 20px 10px 20px;
+ }
+
+ .misc-pub-section > a {
+ float: right;
+ font-size: 16px;
+ }
+
+ #delete-action,
+ #publishing-action {
+ line-height: 47px;
+ }
+
+ /* Moderate Comment */
+ .comment-ays {
+ border-bottom: none;
+ }
+
+ /* Links */
+ .links-table #link_rel {
+ max-width: none;
+ }
+
+ .links-table th,
+ .links-table td {
+ padding: 10px 0;
+ }
+}
+
+@media only screen and (max-width: 500px) {
+ /* Align Add Media + Visual + Text tabs */
+ #wp-content-media-buttons a {
+ font-size: 14px;
+ padding: 0 10px 0 10px;
+ }
+}
diff --git a/sources/wp-admin/css/farbtastic-rtl.css b/sources/wp-admin/css/farbtastic-rtl.css
new file mode 100644
index 0000000..b7aebad
--- /dev/null
+++ b/sources/wp-admin/css/farbtastic-rtl.css
@@ -0,0 +1,41 @@
+
+.farbtastic {
+ position: relative;
+}
+
+.farbtastic * {
+ position: absolute;
+ cursor: crosshair;
+}
+
+.farbtastic,
+.farbtastic .wheel {
+ width: 195px;
+ height: 195px;
+}
+
+.farbtastic .color,
+.farbtastic .overlay {
+ top: 47px;
+ right: 47px;
+ width: 101px;
+ height: 101px;
+}
+
+.farbtastic .wheel {
+ background: url(../images/wheel.png) no-repeat;
+ width: 195px;
+ height: 195px;
+}
+
+.farbtastic .overlay {
+ background: url(../images/mask.png) no-repeat;
+}
+
+.farbtastic .marker {
+ width: 17px;
+ height: 17px;
+ margin: -8px -8px 0 0;
+ overflow: hidden;
+ background: url(../images/marker.png) no-repeat;
+}
diff --git a/sources/wp-admin/css/farbtastic.css b/sources/wp-admin/css/farbtastic.css
index ef1129c..2bb73bf 100644
--- a/sources/wp-admin/css/farbtastic.css
+++ b/sources/wp-admin/css/farbtastic.css
@@ -39,14 +39,3 @@
overflow: hidden;
background: url(../images/marker.png) no-repeat;
}
-
-/* farbtastic-rtl */
-.rtl .farbtastic .color,
-.rtl .farbtastic .overlay {
- left: 0;
- right: 47px;
-}
-
-.rtl .farbtastic .marker {
- margin: -8px -8px 0 0;
-}
diff --git a/sources/wp-admin/css/forms-rtl.css b/sources/wp-admin/css/forms-rtl.css
new file mode 100644
index 0000000..9014537
--- /dev/null
+++ b/sources/wp-admin/css/forms-rtl.css
@@ -0,0 +1,977 @@
+/* include margin and padding in the width calculation of input and textarea */
+input,
+input[type="text"],
+input[type="password"],
+input[type="number"],
+input[type="search"],
+input[type="email"],
+input[type="url"],
+textarea {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}
+
+/* @noflip */
+input[type="email"],
+input[type="url"] {
+ direction: ltr;
+}
+
+input[type="checkbox"],
+input[type="radio"] {
+ border: 1px solid #bbb;
+ background: #fff;
+ color: #555;
+ clear: none;
+ cursor: pointer;
+ display: inline-block;
+ line-height: 0;
+ height: 16px;
+ margin: -4px 0 0 4px;
+ outline: 0;
+ padding: 0 !important;
+ text-align: center;
+ vertical-align: middle;
+ width: 16px;
+ min-width: 16px;
+ -webkit-appearance: none;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
+ box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
+ -webkit-transition: .05s border-color ease-in-out;
+ transition: .05s border-color ease-in-out;
+}
+
+input[type="radio"]:checked + label:before {
+ color: #888;
+}
+
+.wp-core-ui input[type="reset"]:hover,
+.wp-core-ui input[type="reset"]:active {
+ color: #2ea2cc;
+}
+
+td > input[type="checkbox"],
+.wp-admin p input[type=checkbox],
+.wp-admin p input[type=radio] {
+ margin-top: 0;
+}
+
+.wp-admin p label input[type=checkbox] {
+ margin-top: -4px;
+}
+
+.wp-admin p label input[type=radio] {
+ margin-top: -2px;
+}
+
+input[type=radio] {
+ -webkit-border-radius: 50%;
+ border-radius: 50%;
+ margin-left: 4px;
+ line-height: 10px;
+}
+
+input[type=checkbox]:checked:before,
+input[type=radio]:checked:before {
+ float: right;
+ display: inline-block;
+ vertical-align: middle;
+ width: 16px;
+ font: normal 21px/1 'dashicons';
+ speak: none;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+input[type=checkbox]:checked:before {
+ content: '\f147';
+ margin: -3px -4px 0 0;
+ color: #1e8cbe;
+}
+
+input[type=radio]:checked:before {
+ content: '\2022';
+ text-indent: -9999px;
+ -webkit-border-radius: 50px;
+ border-radius: 50px;
+ font-size: 24px;
+ width: 6px;
+ height: 6px;
+ margin: 4px;
+ line-height: 16px;
+ background-color: #1e8cbe;
+}
+
+input.readonly, textarea.readonly {
+ background-color: #ddd;
+}
+
+@-moz-document url-prefix() {
+ input[type=checkbox],
+ input[type=radio],
+ .form-table input.tog {
+ margin-bottom: -1px;
+ }
+}
+
+/* Search */
+input[type="search"] {
+ -webkit-appearance: textfield;
+}
+
+input[type="search"]::-webkit-search-decoration {
+ display: none;
+}
+
+.ie8 input[type="password"] {
+ font-family: sans-serif;
+}
+
+textarea,
+input,
+select,
+button {
+ font-family: inherit;
+ font-size: inherit;
+ font-weight: inherit;
+}
+
+textarea,
+input,
+select {
+ font-size: 14px;
+ padding: 3px 5px;
+ line-height: 15px;
+ -webkit-border-radius: 0;
+ border-radius: 0; /* Reset mobile webkit's default element styling */
+}
+
+textarea {
+ overflow: auto;
+ padding: 2px 6px;
+ line-height: 1.4;
+}
+
+input[type="text"],
+input[type="password"],
+input[type="number"],
+input[type="search"],
+input[type="email"],
+input[type="url"],
+textarea,
+select {
+ outline: 0;
+}
+
+.wp-admin input[type="file"] {
+ padding: 3px 0;
+}
+
+label {
+ cursor: pointer;
+}
+
+input,
+select {
+ margin: 1px;
+ padding: 3px 5px;
+}
+
+input.code {
+ padding-top: 6px;
+}
+
+textarea.code {
+ line-height: 1.4;
+ padding: 4px 6px 1px 6px;
+}
+
+textarea,
+input[type="text"],
+input[type="password"],
+input[type="email"],
+input[type="number"],
+input[type="search"],
+input[type="tel"],
+input[type="url"],
+select {
+ border: 1px solid #ddd;
+ -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.07);
+ box-shadow: inset 0 1px 2px rgba(0,0,0,0.07);
+ background-color: #fff;
+ color: #333;
+ -webkit-transition: .05s border-color ease-in-out;
+ transition: .05s border-color ease-in-out;
+}
+
+select[disabled] {
+ color: #7f7f7f;
+}
+
+textarea:focus,
+input[type="text"]:focus,
+input[type="password"]:focus,
+input[type="email"]:focus,
+input[type="number"]:focus,
+input[type="search"]:focus,
+input[type="tel"]:focus,
+input[type="url"]:focus,
+input[type="checkbox"]:focus,
+input[type="radio"]:focus,
+select:focus {
+ border-color: #5b9dd9;
+ -webkit-box-shadow: 0 0 2px rgba(30,140,190,0.8);
+ box-shadow: 0 0 2px rgba(30,140,190,0.8);
+}
+
+input[readonly] {
+ background-color: #eee;
+}
+
+:-moz-placeholder,
+.wp-core-ui :-moz-placeholder {
+ color: #a9a9a9;
+}
+
+.form-invalid {
+ background-color: #ffebe8 !important;
+}
+
+.form-invalid input,
+.form-invalid select {
+ border-color: #c00 !important;
+}
+
+.form-input-tip {
+ color: #666;
+}
+
+input:disabled,
+input.disabled,
+textarea:disabled,
+textarea.disabled {
+ -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.04);
+ box-shadow: inset 0 1px 2px rgba(0,0,0,0.04);
+ border-color: rgba(222, 222, 222, .75);
+ background: rgba(255, 255, 255, .5);
+ color: rgba(51, 51, 51, .5);
+}
+
+input[type=checkbox]:disabled,
+input[type=radio]:disabled,
+input[type=checkbox]:disabled:checked:before,
+input[type=radio]:disabled:checked:before {
+ opacity: 0.7;
+}
+
+/*------------------------------------------------------------------------------
+ 2.0 - Forms
+------------------------------------------------------------------------------*/
+
+
+.wp-admin select {
+ padding: 2px;
+ line-height: 28px;
+ height: 28px;
+ vertical-align: middle;
+}
+
+.wp-admin .button-cancel {
+ padding: 0 5px;
+ line-height: 2;
+}
+
+.meta-box-sortables select {
+ max-width: 100%;
+}
+
+.wp-admin select[multiple] {
+ height: auto;
+}
+
+.submit {
+ padding: 1.5em 0;
+ margin: 5px 0;
+ -webkit-border-bottom-right-radius: 3px;
+ border-bottom-right-radius: 3px;
+ -webkit-border-bottom-left-radius: 3px;
+ border-bottom-left-radius: 3px;
+ border: none;
+}
+
+form p.submit a.cancel:hover {
+ text-decoration: none;
+}
+
+p.submit {
+ text-align: right;
+ max-width: 100%;
+ margin-top: 20px;
+ padding-top: 10px;
+}
+
+.textright p.submit {
+ border: none;
+ text-align: left;
+}
+
+table.form-table + p.submit,
+table.form-table + input + p.submit,
+table.form-table + input + input + p.submit {
+ border-top: none;
+ padding-top: 0;
+}
+
+#minor-publishing-actions input,
+#major-publishing-actions input,
+#minor-publishing-actions .preview {
+ text-align: center;
+}
+
+textarea.all-options,
+input.all-options {
+ width: 250px;
+}
+
+input.large-text,
+textarea.large-text {
+ width: 99%;
+}
+
+input.regular-text,
+#adduser .form-field input {
+ width: 25em;
+}
+
+input.small-text {
+ width: 50px;
+ padding: 1px 6px;
+}
+
+input[type="number"].small-text {
+ width: 65px;
+}
+
+#doaction,
+#doaction2,
+#post-query-submit {
+ margin: 1px 0 0 8px;
+}
+
+.tablenav #changeit,
+.tablenav #delete_all,
+.tablenav #clear-recent-list {
+ margin-top: 1px;
+}
+
+.tablenav .actions select {
+ float: right;
+ margin-left: 6px;
+ max-width: 200px;
+}
+
+.ie8 .tablenav .actions select {
+ width: 155px;
+}
+
+.ie8 .tablenav .actions select#cat {
+ width: 200px;
+}
+
+#timezone_string option {
+ margin-right: 1em;
+}
+
+#upload-form label {
+ color: #777;
+}
+
+label,
+#your-profile label + a {
+ vertical-align: middle;
+}
+
+fieldset label,
+#your-profile label + a {
+ vertical-align: middle;
+}
+
+.options-media-php label[for*="_size_"],
+#misc-publishing-actions label {
+ vertical-align: baseline;
+}
+
+#misc-publishing-actions label[for="post_status"]:before {
+ content: '\f173';
+ display: inline-block;
+ font: normal 20px/1 'dashicons';
+ speak: none;
+ right: -1px;
+ padding: 0 0 0 5px;
+ position: relative;
+ top: 0;
+ text-decoration: none !important;
+ vertical-align: top;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+#pass-strength-result {
+ background-color: #eee;
+ border: 1px solid #ddd;
+ float: right;
+ margin: 13px 1px 5px 5px;
+ padding: 3px 5px;
+ text-align: center;
+ width: 200px;
+ display: none;
+}
+
+#pass-strength-result.short {
+ background-color: #ffa0a0;
+ border-color: #f04040;
+}
+
+#pass-strength-result.bad {
+ background-color: #ffb78c;
+ border-color: #ff853c;
+}
+
+#pass-strength-result.good {
+ background-color: #ffec8b;
+ border-color: #fc0;
+}
+
+#pass-strength-result.strong {
+ background-color: #c3ff88;
+ border-color: #8dff1c;
+}
+
+.indicator-hint {
+ padding-top: 8px;
+}
+
+p.search-box {
+ float: left;
+ margin: 0;
+}
+
+.network-admin.themes-php p.search-box {
+ clear: right;
+}
+
+.search-box input[name="s"],
+#search-plugins input[name="s"],
+.tagsdiv .newtag {
+ float: right;
+ height: 28px;
+ margin: 0 0 0 4px;
+}
+
+input[type="text"].ui-autocomplete-loading {
+ background: transparent url(../images/loading.gif) no-repeat left center;
+ visibility: visible;
+}
+
+ul#add-to-blog-users {
+ margin: 0 14px 0 0;
+}
+
+.ui-autocomplete-input.open {
+ -webkit-border-bottom-left-radius: 0;
+ border-bottom-left-radius: 0;
+ -webkit-border-bottom-right-radius: 0;
+ border-bottom-right-radius: 0;
+}
+
+.ui-autocomplete {
+ padding: 0;
+ margin: 0;
+ list-style: none;
+ position: absolute;
+ z-index: 10000;
+ -webkit-border-bottom-left-radius: 3px;
+ border-bottom-left-radius: 3px;
+ -webkit-border-bottom-right-radius: 3px;
+ border-bottom-right-radius: 3px;
+ border: 1px solid #aaa;
+ background-color: #efefef;
+}
+
+.ui-autocomplete li {
+ margin-bottom: 0;
+ white-space: nowrap;
+ text-align: right;
+}
+
+.ui-autocomplete li a {
+ display: block;
+ height: 100%;
+ padding: 4px 10px;
+ color: #444;
+}
+
+.ui-autocomplete li a.ui-state-focus {
+ background-color: #ddd;
+ cursor: pointer;
+}
+
+/*------------------------------------------------------------------------------
+ 15.0 - Comments Screen
+------------------------------------------------------------------------------*/
+
+.form-table {
+ border-collapse: collapse;
+ margin-top: 0.5em;
+ width: 100%;
+ clear: both;
+}
+
+.form-table,
+.form-table td,
+.form-table th,
+.form-table td p,
+.form-wrap label {
+ font-size: 14px;
+}
+
+.form-table td {
+ margin-bottom: 9px;
+ padding: 15px 10px;
+ line-height: 1.3;
+ vertical-align: middle;
+}
+
+.form-table th,
+.form-wrap label {
+ color: #222;
+ font-weight: normal;
+ text-shadow: none;
+ vertical-align: baseline;
+}
+
+.form-table th {
+ vertical-align: top;
+ text-align: right;
+ padding: 20px 0 20px 10px;
+ width: 200px;
+ line-height: 1.3;
+ font-weight: 600;
+}
+
+.form-table th.th-full {
+ width: auto;
+ font-weight: 400;
+}
+
+.form-table td p {
+ margin-top: 4px;
+ margin-bottom: 0;
+}
+
+.form-table td fieldset label {
+ margin: 0.25em 0 0.5em !important;
+ display: inline-block;
+}
+
+.form-table td fieldset label,
+.form-table td fieldset p,
+.form-table td fieldset li {
+ line-height: 1.4em;
+}
+
+.form-table input.tog,
+.form-table input[type=radio] {
+ margin-top: -4px;
+ margin-left: 4px;
+ float: none;
+}
+
+.form-table .pre {
+ padding: 8px;
+ margin: 0;
+}
+
+table.form-table td .updated {
+ font-size: 13px;
+}
+
+/*------------------------------------------------------------------------------
+ 18.0 - Users
+------------------------------------------------------------------------------*/
+
+#profile-page .form-table textarea {
+ width: 500px;
+ margin-bottom: 6px;
+}
+
+#profile-page .form-table #rich_editing {
+ margin-left: 5px
+}
+
+#your-profile legend {
+ font-size: 22px;
+}
+
+#display_name {
+ width: 15em;
+}
+
+#createuser .form-field input {
+ width: 25em;
+}
+
+.color-option {
+ display: inline-block;
+ width: 24%;
+ padding: 5px 15px 15px;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ margin-bottom: 3px;
+}
+
+.color-option:hover,
+.color-option.selected {
+ background: #ddd;
+}
+
+.color-palette {
+ width: 100%;
+ border-spacing: 0;
+ border-collapse: collapse;
+}
+.color-palette td {
+ height: 20px;
+ padding: 0;
+ border: none;
+}
+
+.color-option {
+ cursor: pointer;
+}
+
+/*------------------------------------------------------------------------------
+ 19.0 - Tools
+------------------------------------------------------------------------------*/
+
+.tool-box .title {
+ margin: 8px 0;
+ font-size: 18px;
+ font-weight: normal;
+ line-height: 24px;
+}
+
+.pressthis {
+ margin: 20px 0;
+}
+
+.pressthis a,
+.pressthis a:hover,
+.pressthis a:focus,
+.pressthis a:active {
+ display: inline-block;
+ position: relative;
+ cursor: move;
+ color: #333;
+ background: #e6e6e6;
+ -webkit-border-radius: 5px;
+ border-radius: 5px;
+ border: 1px solid #b4b4b4;
+ font-style: normal;
+ line-height: 16px;
+ font-size: 14px;
+ text-decoration: none;
+}
+
+.pressthis a:active {
+ outline: none;
+}
+
+.pressthis a:hover:after {
+ -webkit-transform: skew(20deg) rotate(9deg);
+ -ms-transform: skew(20deg) rotate(9deg);
+ transform: skew(20deg) rotate(9deg);
+ -webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7);
+ box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7);
+}
+
+.pressthis a span {
+ display: inline-block;
+ margin: 0px 0 0;
+ padding: 0px 9px 8px 12px;
+}
+
+.pressthis a span:before {
+ color: #777;
+ font: normal 20px/1 'dashicons';
+ content:'\f157';
+ position: relative;
+ display: inline-block;
+ top: 4px;
+ margin-left: 4px;
+}
+
+.pressthis a:after {
+ content: '';
+ width: 70%;
+ height: 55%;
+ z-index: -1;
+ position: absolute;
+ left: 10px;
+ bottom: 9px;
+ background: transparent;
+ -webkit-transform: skew(20deg) rotate(6deg);
+ -ms-transform: skew(20deg) rotate(6deg);
+ transform: skew(20deg) rotate(6deg);
+ -webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6);
+ box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6);
+}
+
+/*------------------------------------------------------------------------------
+ 20.0 - Settings
+------------------------------------------------------------------------------*/
+
+#utc-time, #local-time {
+ padding-right: 25px;
+ font-style: italic;
+}
+
+.defaultavatarpicker .avatar {
+ margin: 2px 0;
+ vertical-align: middle;
+}
+
+.options-general-php .spinner {
+ float: none;
+ margin: -3px 3px;
+}
+
+/* =Media Queries
+-------------------------------------------------------------- */
+
+@media screen and ( max-width: 782px ) {
+ /* Input Elements */
+ textarea {
+ -webkit-appearance: none;
+ }
+
+ input[type=text], input[type=search],
+ input[type=password], input[type=number] {
+ -webkit-appearance: none;
+ padding: 6px 10px;
+ }
+
+ input.code {
+ padding-bottom: 5px;
+ padding-top: 10px;
+ }
+
+ input[type=checkbox], .widefat th input[type=checkbox] {
+ -webkit-appearance: none;
+ padding: 10px;
+ }
+
+ .widefat th input[type=checkbox] {
+ margin-bottom: 8px;
+ }
+
+ input[type=checkbox]:checked:before, .widefat th input[type=checkbox]:before {
+ font: normal 30px/1 'Dashicons';
+ margin: -3px -5px;
+ }
+
+ input[type=radio],
+ input[type=checkbox] {
+ height: 25px;
+ width: 25px;
+ }
+
+ .wp-admin p input[type=checkbox],
+ .wp-admin p input[type=radio] {
+ margin-top: -3px;
+ }
+
+ input[type=radio]:checked:before {
+ vertical-align: middle;
+ width: 9px;
+ height: 9px;
+ margin: 7px;
+ line-height: 16px;
+ }
+
+ .wp-upload-form input[type=submit] {
+ margin-top: 10px;
+ }
+
+ #wpbody select {
+ height: 36px;
+ font-size: 16px;
+ }
+
+ .wp-admin .button-cancel {
+ padding: 0;
+ font-size: 14px;
+ }
+
+ #createuser .form-field input {
+ width: 100%;
+ }
+
+ .form-table {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ }
+
+ .form-table th,
+ .form-table td {
+ display: block;
+ width: auto;
+ vertical-align: middle;
+ }
+
+ .form-table .color-palette td {
+ display: table-cell;
+ width: 15px;
+ }
+
+ .form-table table.color-palette {
+ margin-left: 10px;
+ }
+
+ textarea,
+ input {
+ font-size: 16px;
+ }
+
+ .form-table td input[type="text"],
+ .form-table td input[type="password"],
+ .form-table td select,
+ .form-table td textarea,
+ .form-table span.description,
+ #profile-page .form-table textarea {
+ width: 100%;
+ font-size: 16px;
+ line-height: 1.5;
+ padding: 7px 10px;
+ display: block;
+ max-width: none;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ }
+
+ input[type=text].small-text,
+ input[type=search].small-text,
+ input[type=password].small-text,
+ input[type=number].small-text,
+ input[type="number"].small-text,
+ .form-table input[type=text].small-text {
+ width: auto;
+ max-width: 55px;
+ display: inline;
+ padding: 3px 6px;
+ margin: 0 3px;
+ }
+
+ #pass-strength-result {
+ width: 100%;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ padding: 8px;
+ }
+
+ p.search-box {
+ float: none;
+ position: absolute;
+ bottom: 0;
+ width: 98%;
+ height: 90px;
+ margin-bottom: 20px;
+ }
+
+ p.search-box input[name="s"] {
+ height: auto;
+ float: none;
+ width: 100%;
+ margin-bottom: 10px;
+ vertical-align: middle;
+ -webkit-appearance: none;
+ }
+
+ p.search-box input[type="submit"] {
+ margin-bottom: 10px;
+ }
+
+ .form-table span.description {
+ padding: 4px 0 0;
+ line-height: 1.4em;
+ }
+
+ .form-table th {
+ padding-top: 10px;
+ padding-bottom: 0;
+ border-bottom: 0;
+ }
+
+ .form-table td {
+ padding-top: 8px;
+ padding-right: 0;
+ }
+
+ .form-table input.regular-text {
+ width: 100%;
+ }
+
+ .form-table label {
+ font-size: 14px;
+ }
+
+ .form-table fieldset label {
+ display: block;
+ }
+
+ #utc-time {
+ margin-top: 10px;
+ }
+
+ #utc-time,
+ #local-time {
+ display: block;
+ float: none;
+ padding: 0;
+ line-height: 2;
+ }
+}
+
+@media only screen and (max-width: 768px) {
+ .form-field input,
+ .form-field textarea {
+ width: 99%;
+ }
+
+ .form-wrap .form-field {
+ padding:0;
+ }
+
+ /* users */
+ #profile-page .form-table textarea {
+ max-width: 400px;
+ width: auto;
+ }
+}
+
+/* Smartphone */
+@media screen and (max-width: 600px) {
+ /* Color Picker Options */
+ .color-option {
+ width: 49%;
+ }
+}
+
diff --git a/sources/wp-admin/css/forms.css b/sources/wp-admin/css/forms.css
new file mode 100644
index 0000000..14cfe85
--- /dev/null
+++ b/sources/wp-admin/css/forms.css
@@ -0,0 +1,977 @@
+/* include margin and padding in the width calculation of input and textarea */
+input,
+input[type="text"],
+input[type="password"],
+input[type="number"],
+input[type="search"],
+input[type="email"],
+input[type="url"],
+textarea {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}
+
+/* @noflip */
+input[type="email"],
+input[type="url"] {
+ direction: ltr;
+}
+
+input[type="checkbox"],
+input[type="radio"] {
+ border: 1px solid #bbb;
+ background: #fff;
+ color: #555;
+ clear: none;
+ cursor: pointer;
+ display: inline-block;
+ line-height: 0;
+ height: 16px;
+ margin: -4px 4px 0 0;
+ outline: 0;
+ padding: 0 !important;
+ text-align: center;
+ vertical-align: middle;
+ width: 16px;
+ min-width: 16px;
+ -webkit-appearance: none;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
+ box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
+ -webkit-transition: .05s border-color ease-in-out;
+ transition: .05s border-color ease-in-out;
+}
+
+input[type="radio"]:checked + label:before {
+ color: #888;
+}
+
+.wp-core-ui input[type="reset"]:hover,
+.wp-core-ui input[type="reset"]:active {
+ color: #2ea2cc;
+}
+
+td > input[type="checkbox"],
+.wp-admin p input[type=checkbox],
+.wp-admin p input[type=radio] {
+ margin-top: 0;
+}
+
+.wp-admin p label input[type=checkbox] {
+ margin-top: -4px;
+}
+
+.wp-admin p label input[type=radio] {
+ margin-top: -2px;
+}
+
+input[type=radio] {
+ -webkit-border-radius: 50%;
+ border-radius: 50%;
+ margin-right: 4px;
+ line-height: 10px;
+}
+
+input[type=checkbox]:checked:before,
+input[type=radio]:checked:before {
+ float: left;
+ display: inline-block;
+ vertical-align: middle;
+ width: 16px;
+ font: normal 21px/1 'dashicons';
+ speak: none;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+input[type=checkbox]:checked:before {
+ content: '\f147';
+ margin: -3px 0 0 -4px;
+ color: #1e8cbe;
+}
+
+input[type=radio]:checked:before {
+ content: '\2022';
+ text-indent: -9999px;
+ -webkit-border-radius: 50px;
+ border-radius: 50px;
+ font-size: 24px;
+ width: 6px;
+ height: 6px;
+ margin: 4px;
+ line-height: 16px;
+ background-color: #1e8cbe;
+}
+
+input.readonly, textarea.readonly {
+ background-color: #ddd;
+}
+
+@-moz-document url-prefix() {
+ input[type=checkbox],
+ input[type=radio],
+ .form-table input.tog {
+ margin-bottom: -1px;
+ }
+}
+
+/* Search */
+input[type="search"] {
+ -webkit-appearance: textfield;
+}
+
+input[type="search"]::-webkit-search-decoration {
+ display: none;
+}
+
+.ie8 input[type="password"] {
+ font-family: sans-serif;
+}
+
+textarea,
+input,
+select,
+button {
+ font-family: inherit;
+ font-size: inherit;
+ font-weight: inherit;
+}
+
+textarea,
+input,
+select {
+ font-size: 14px;
+ padding: 3px 5px;
+ line-height: 15px;
+ -webkit-border-radius: 0;
+ border-radius: 0; /* Reset mobile webkit's default element styling */
+}
+
+textarea {
+ overflow: auto;
+ padding: 2px 6px;
+ line-height: 1.4;
+}
+
+input[type="text"],
+input[type="password"],
+input[type="number"],
+input[type="search"],
+input[type="email"],
+input[type="url"],
+textarea,
+select {
+ outline: 0;
+}
+
+.wp-admin input[type="file"] {
+ padding: 3px 0;
+}
+
+label {
+ cursor: pointer;
+}
+
+input,
+select {
+ margin: 1px;
+ padding: 3px 5px;
+}
+
+input.code {
+ padding-top: 6px;
+}
+
+textarea.code {
+ line-height: 1.4;
+ padding: 4px 6px 1px 6px;
+}
+
+textarea,
+input[type="text"],
+input[type="password"],
+input[type="email"],
+input[type="number"],
+input[type="search"],
+input[type="tel"],
+input[type="url"],
+select {
+ border: 1px solid #ddd;
+ -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.07);
+ box-shadow: inset 0 1px 2px rgba(0,0,0,0.07);
+ background-color: #fff;
+ color: #333;
+ -webkit-transition: .05s border-color ease-in-out;
+ transition: .05s border-color ease-in-out;
+}
+
+select[disabled] {
+ color: #7f7f7f;
+}
+
+textarea:focus,
+input[type="text"]:focus,
+input[type="password"]:focus,
+input[type="email"]:focus,
+input[type="number"]:focus,
+input[type="search"]:focus,
+input[type="tel"]:focus,
+input[type="url"]:focus,
+input[type="checkbox"]:focus,
+input[type="radio"]:focus,
+select:focus {
+ border-color: #5b9dd9;
+ -webkit-box-shadow: 0 0 2px rgba(30,140,190,0.8);
+ box-shadow: 0 0 2px rgba(30,140,190,0.8);
+}
+
+input[readonly] {
+ background-color: #eee;
+}
+
+:-moz-placeholder,
+.wp-core-ui :-moz-placeholder {
+ color: #a9a9a9;
+}
+
+.form-invalid {
+ background-color: #ffebe8 !important;
+}
+
+.form-invalid input,
+.form-invalid select {
+ border-color: #c00 !important;
+}
+
+.form-input-tip {
+ color: #666;
+}
+
+input:disabled,
+input.disabled,
+textarea:disabled,
+textarea.disabled {
+ -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.04);
+ box-shadow: inset 0 1px 2px rgba(0,0,0,0.04);
+ border-color: rgba(222, 222, 222, .75);
+ background: rgba(255, 255, 255, .5);
+ color: rgba(51, 51, 51, .5);
+}
+
+input[type=checkbox]:disabled,
+input[type=radio]:disabled,
+input[type=checkbox]:disabled:checked:before,
+input[type=radio]:disabled:checked:before {
+ opacity: 0.7;
+}
+
+/*------------------------------------------------------------------------------
+ 2.0 - Forms
+------------------------------------------------------------------------------*/
+
+
+.wp-admin select {
+ padding: 2px;
+ line-height: 28px;
+ height: 28px;
+ vertical-align: middle;
+}
+
+.wp-admin .button-cancel {
+ padding: 0 5px;
+ line-height: 2;
+}
+
+.meta-box-sortables select {
+ max-width: 100%;
+}
+
+.wp-admin select[multiple] {
+ height: auto;
+}
+
+.submit {
+ padding: 1.5em 0;
+ margin: 5px 0;
+ -webkit-border-bottom-left-radius: 3px;
+ border-bottom-left-radius: 3px;
+ -webkit-border-bottom-right-radius: 3px;
+ border-bottom-right-radius: 3px;
+ border: none;
+}
+
+form p.submit a.cancel:hover {
+ text-decoration: none;
+}
+
+p.submit {
+ text-align: left;
+ max-width: 100%;
+ margin-top: 20px;
+ padding-top: 10px;
+}
+
+.textright p.submit {
+ border: none;
+ text-align: right;
+}
+
+table.form-table + p.submit,
+table.form-table + input + p.submit,
+table.form-table + input + input + p.submit {
+ border-top: none;
+ padding-top: 0;
+}
+
+#minor-publishing-actions input,
+#major-publishing-actions input,
+#minor-publishing-actions .preview {
+ text-align: center;
+}
+
+textarea.all-options,
+input.all-options {
+ width: 250px;
+}
+
+input.large-text,
+textarea.large-text {
+ width: 99%;
+}
+
+input.regular-text,
+#adduser .form-field input {
+ width: 25em;
+}
+
+input.small-text {
+ width: 50px;
+ padding: 1px 6px;
+}
+
+input[type="number"].small-text {
+ width: 65px;
+}
+
+#doaction,
+#doaction2,
+#post-query-submit {
+ margin: 1px 8px 0 0;
+}
+
+.tablenav #changeit,
+.tablenav #delete_all,
+.tablenav #clear-recent-list {
+ margin-top: 1px;
+}
+
+.tablenav .actions select {
+ float: left;
+ margin-right: 6px;
+ max-width: 200px;
+}
+
+.ie8 .tablenav .actions select {
+ width: 155px;
+}
+
+.ie8 .tablenav .actions select#cat {
+ width: 200px;
+}
+
+#timezone_string option {
+ margin-left: 1em;
+}
+
+#upload-form label {
+ color: #777;
+}
+
+label,
+#your-profile label + a {
+ vertical-align: middle;
+}
+
+fieldset label,
+#your-profile label + a {
+ vertical-align: middle;
+}
+
+.options-media-php label[for*="_size_"],
+#misc-publishing-actions label {
+ vertical-align: baseline;
+}
+
+#misc-publishing-actions label[for="post_status"]:before {
+ content: '\f173';
+ display: inline-block;
+ font: normal 20px/1 'dashicons';
+ speak: none;
+ left: -1px;
+ padding: 0 5px 0 0;
+ position: relative;
+ top: 0;
+ text-decoration: none !important;
+ vertical-align: top;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+#pass-strength-result {
+ background-color: #eee;
+ border: 1px solid #ddd;
+ float: left;
+ margin: 13px 5px 5px 1px;
+ padding: 3px 5px;
+ text-align: center;
+ width: 200px;
+ display: none;
+}
+
+#pass-strength-result.short {
+ background-color: #ffa0a0;
+ border-color: #f04040;
+}
+
+#pass-strength-result.bad {
+ background-color: #ffb78c;
+ border-color: #ff853c;
+}
+
+#pass-strength-result.good {
+ background-color: #ffec8b;
+ border-color: #fc0;
+}
+
+#pass-strength-result.strong {
+ background-color: #c3ff88;
+ border-color: #8dff1c;
+}
+
+.indicator-hint {
+ padding-top: 8px;
+}
+
+p.search-box {
+ float: right;
+ margin: 0;
+}
+
+.network-admin.themes-php p.search-box {
+ clear: left;
+}
+
+.search-box input[name="s"],
+#search-plugins input[name="s"],
+.tagsdiv .newtag {
+ float: left;
+ height: 28px;
+ margin: 0 4px 0 0;
+}
+
+input[type="text"].ui-autocomplete-loading {
+ background: transparent url(../images/loading.gif) no-repeat right center;
+ visibility: visible;
+}
+
+ul#add-to-blog-users {
+ margin: 0 0 0 14px;
+}
+
+.ui-autocomplete-input.open {
+ -webkit-border-bottom-right-radius: 0;
+ border-bottom-right-radius: 0;
+ -webkit-border-bottom-left-radius: 0;
+ border-bottom-left-radius: 0;
+}
+
+.ui-autocomplete {
+ padding: 0;
+ margin: 0;
+ list-style: none;
+ position: absolute;
+ z-index: 10000;
+ -webkit-border-bottom-right-radius: 3px;
+ border-bottom-right-radius: 3px;
+ -webkit-border-bottom-left-radius: 3px;
+ border-bottom-left-radius: 3px;
+ border: 1px solid #aaa;
+ background-color: #efefef;
+}
+
+.ui-autocomplete li {
+ margin-bottom: 0;
+ white-space: nowrap;
+ text-align: left;
+}
+
+.ui-autocomplete li a {
+ display: block;
+ height: 100%;
+ padding: 4px 10px;
+ color: #444;
+}
+
+.ui-autocomplete li a.ui-state-focus {
+ background-color: #ddd;
+ cursor: pointer;
+}
+
+/*------------------------------------------------------------------------------
+ 15.0 - Comments Screen
+------------------------------------------------------------------------------*/
+
+.form-table {
+ border-collapse: collapse;
+ margin-top: 0.5em;
+ width: 100%;
+ clear: both;
+}
+
+.form-table,
+.form-table td,
+.form-table th,
+.form-table td p,
+.form-wrap label {
+ font-size: 14px;
+}
+
+.form-table td {
+ margin-bottom: 9px;
+ padding: 15px 10px;
+ line-height: 1.3;
+ vertical-align: middle;
+}
+
+.form-table th,
+.form-wrap label {
+ color: #222;
+ font-weight: normal;
+ text-shadow: none;
+ vertical-align: baseline;
+}
+
+.form-table th {
+ vertical-align: top;
+ text-align: left;
+ padding: 20px 10px 20px 0;
+ width: 200px;
+ line-height: 1.3;
+ font-weight: 600;
+}
+
+.form-table th.th-full {
+ width: auto;
+ font-weight: 400;
+}
+
+.form-table td p {
+ margin-top: 4px;
+ margin-bottom: 0;
+}
+
+.form-table td fieldset label {
+ margin: 0.25em 0 0.5em !important;
+ display: inline-block;
+}
+
+.form-table td fieldset label,
+.form-table td fieldset p,
+.form-table td fieldset li {
+ line-height: 1.4em;
+}
+
+.form-table input.tog,
+.form-table input[type=radio] {
+ margin-top: -4px;
+ margin-right: 4px;
+ float: none;
+}
+
+.form-table .pre {
+ padding: 8px;
+ margin: 0;
+}
+
+table.form-table td .updated {
+ font-size: 13px;
+}
+
+/*------------------------------------------------------------------------------
+ 18.0 - Users
+------------------------------------------------------------------------------*/
+
+#profile-page .form-table textarea {
+ width: 500px;
+ margin-bottom: 6px;
+}
+
+#profile-page .form-table #rich_editing {
+ margin-right: 5px
+}
+
+#your-profile legend {
+ font-size: 22px;
+}
+
+#display_name {
+ width: 15em;
+}
+
+#createuser .form-field input {
+ width: 25em;
+}
+
+.color-option {
+ display: inline-block;
+ width: 24%;
+ padding: 5px 15px 15px;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ margin-bottom: 3px;
+}
+
+.color-option:hover,
+.color-option.selected {
+ background: #ddd;
+}
+
+.color-palette {
+ width: 100%;
+ border-spacing: 0;
+ border-collapse: collapse;
+}
+.color-palette td {
+ height: 20px;
+ padding: 0;
+ border: none;
+}
+
+.color-option {
+ cursor: pointer;
+}
+
+/*------------------------------------------------------------------------------
+ 19.0 - Tools
+------------------------------------------------------------------------------*/
+
+.tool-box .title {
+ margin: 8px 0;
+ font-size: 18px;
+ font-weight: normal;
+ line-height: 24px;
+}
+
+.pressthis {
+ margin: 20px 0;
+}
+
+.pressthis a,
+.pressthis a:hover,
+.pressthis a:focus,
+.pressthis a:active {
+ display: inline-block;
+ position: relative;
+ cursor: move;
+ color: #333;
+ background: #e6e6e6;
+ -webkit-border-radius: 5px;
+ border-radius: 5px;
+ border: 1px solid #b4b4b4;
+ font-style: normal;
+ line-height: 16px;
+ font-size: 14px;
+ text-decoration: none;
+}
+
+.pressthis a:active {
+ outline: none;
+}
+
+.pressthis a:hover:after {
+ -webkit-transform: skew(20deg) rotate(9deg);
+ -ms-transform: skew(20deg) rotate(9deg);
+ transform: skew(20deg) rotate(9deg);
+ -webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7);
+ box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7);
+}
+
+.pressthis a span {
+ display: inline-block;
+ margin: 0px 0 0;
+ padding: 0px 12px 8px 9px;
+}
+
+.pressthis a span:before {
+ color: #777;
+ font: normal 20px/1 'dashicons';
+ content:'\f157';
+ position: relative;
+ display: inline-block;
+ top: 4px;
+ margin-right: 4px;
+}
+
+.pressthis a:after {
+ content: '';
+ width: 70%;
+ height: 55%;
+ z-index: -1;
+ position: absolute;
+ right: 10px;
+ bottom: 9px;
+ background: transparent;
+ -webkit-transform: skew(20deg) rotate(6deg);
+ -ms-transform: skew(20deg) rotate(6deg);
+ transform: skew(20deg) rotate(6deg);
+ -webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6);
+ box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6);
+}
+
+/*------------------------------------------------------------------------------
+ 20.0 - Settings
+------------------------------------------------------------------------------*/
+
+#utc-time, #local-time {
+ padding-left: 25px;
+ font-style: italic;
+}
+
+.defaultavatarpicker .avatar {
+ margin: 2px 0;
+ vertical-align: middle;
+}
+
+.options-general-php .spinner {
+ float: none;
+ margin: -3px 3px;
+}
+
+/* =Media Queries
+-------------------------------------------------------------- */
+
+@media screen and ( max-width: 782px ) {
+ /* Input Elements */
+ textarea {
+ -webkit-appearance: none;
+ }
+
+ input[type=text], input[type=search],
+ input[type=password], input[type=number] {
+ -webkit-appearance: none;
+ padding: 6px 10px;
+ }
+
+ input.code {
+ padding-bottom: 5px;
+ padding-top: 10px;
+ }
+
+ input[type=checkbox], .widefat th input[type=checkbox] {
+ -webkit-appearance: none;
+ padding: 10px;
+ }
+
+ .widefat th input[type=checkbox] {
+ margin-bottom: 8px;
+ }
+
+ input[type=checkbox]:checked:before, .widefat th input[type=checkbox]:before {
+ font: normal 30px/1 'Dashicons';
+ margin: -3px -5px;
+ }
+
+ input[type=radio],
+ input[type=checkbox] {
+ height: 25px;
+ width: 25px;
+ }
+
+ .wp-admin p input[type=checkbox],
+ .wp-admin p input[type=radio] {
+ margin-top: -3px;
+ }
+
+ input[type=radio]:checked:before {
+ vertical-align: middle;
+ width: 9px;
+ height: 9px;
+ margin: 7px;
+ line-height: 16px;
+ }
+
+ .wp-upload-form input[type=submit] {
+ margin-top: 10px;
+ }
+
+ #wpbody select {
+ height: 36px;
+ font-size: 16px;
+ }
+
+ .wp-admin .button-cancel {
+ padding: 0;
+ font-size: 14px;
+ }
+
+ #createuser .form-field input {
+ width: 100%;
+ }
+
+ .form-table {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ }
+
+ .form-table th,
+ .form-table td {
+ display: block;
+ width: auto;
+ vertical-align: middle;
+ }
+
+ .form-table .color-palette td {
+ display: table-cell;
+ width: 15px;
+ }
+
+ .form-table table.color-palette {
+ margin-right: 10px;
+ }
+
+ textarea,
+ input {
+ font-size: 16px;
+ }
+
+ .form-table td input[type="text"],
+ .form-table td input[type="password"],
+ .form-table td select,
+ .form-table td textarea,
+ .form-table span.description,
+ #profile-page .form-table textarea {
+ width: 100%;
+ font-size: 16px;
+ line-height: 1.5;
+ padding: 7px 10px;
+ display: block;
+ max-width: none;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ }
+
+ input[type=text].small-text,
+ input[type=search].small-text,
+ input[type=password].small-text,
+ input[type=number].small-text,
+ input[type="number"].small-text,
+ .form-table input[type=text].small-text {
+ width: auto;
+ max-width: 55px;
+ display: inline;
+ padding: 3px 6px;
+ margin: 0 3px;
+ }
+
+ #pass-strength-result {
+ width: 100%;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ padding: 8px;
+ }
+
+ p.search-box {
+ float: none;
+ position: absolute;
+ bottom: 0;
+ width: 98%;
+ height: 90px;
+ margin-bottom: 20px;
+ }
+
+ p.search-box input[name="s"] {
+ height: auto;
+ float: none;
+ width: 100%;
+ margin-bottom: 10px;
+ vertical-align: middle;
+ -webkit-appearance: none;
+ }
+
+ p.search-box input[type="submit"] {
+ margin-bottom: 10px;
+ }
+
+ .form-table span.description {
+ padding: 4px 0 0;
+ line-height: 1.4em;
+ }
+
+ .form-table th {
+ padding-top: 10px;
+ padding-bottom: 0;
+ border-bottom: 0;
+ }
+
+ .form-table td {
+ padding-top: 8px;
+ padding-left: 0;
+ }
+
+ .form-table input.regular-text {
+ width: 100%;
+ }
+
+ .form-table label {
+ font-size: 14px;
+ }
+
+ .form-table fieldset label {
+ display: block;
+ }
+
+ #utc-time {
+ margin-top: 10px;
+ }
+
+ #utc-time,
+ #local-time {
+ display: block;
+ float: none;
+ padding: 0;
+ line-height: 2;
+ }
+}
+
+@media only screen and (max-width: 768px) {
+ .form-field input,
+ .form-field textarea {
+ width: 99%;
+ }
+
+ .form-wrap .form-field {
+ padding:0;
+ }
+
+ /* users */
+ #profile-page .form-table textarea {
+ max-width: 400px;
+ width: auto;
+ }
+}
+
+/* Smartphone */
+@media screen and (max-width: 600px) {
+ /* Color Picker Options */
+ .color-option {
+ width: 49%;
+ }
+}
+
diff --git a/sources/wp-admin/css/ie-rtl.css b/sources/wp-admin/css/ie-rtl.css
index 51dfdff..4783f2f 100644
--- a/sources/wp-admin/css/ie-rtl.css
+++ b/sources/wp-admin/css/ie-rtl.css
@@ -1,112 +1,591 @@
+/* Fixes for IE 7 bugs */
-body {
- direction: rtl;
- width: 99.5%;
+#dashboard-widgets form .input-text-wrap input,
+#dashboard-widgets form .textarea-wrap textarea {
+ width: 99%;
}
-.rtl #adminmenuback {
- left: auto;
+#dashboard-widgets form #title {
+ width: 98%;
+}
+
+#wpbody-content #dashboard-widgets .postbox-container {
+ width: 49.5%;
+}
+
+#wpbody-content #dashboard-widgets #postbox-container-2,
+#wpbody-content #dashboard-widgets #postbox-container-3,
+#wpbody-content #dashboard-widgets #postbox-container-4 {
+ float: left;
+ width: 50.5%;
+}
+
+#dashboard-widgets #postbox-container-3 .empty-container,
+#dashboard-widgets #postbox-container-4 .empty-container {
+ border: 0 none;
+ height: 0;
+ min-height: 0;
+}
+
+.wp-editor-wrap .wp-editor-tools,
+.wp-editor-wrap .wp-switch-editor,
+.wp-editor-wrap .wp-editor-tabs,
+.wp-editor-wrap .wp-editor-container {
+ zoom: 100%;
+}
+
+.wp-editor-wrap .wp-editor-container textarea.wp-editor-area {
+ width: 97%;
+}
+
+#post-body.columns-2 #postbox-container-1 {
+ padding-right: 19px;
+}
+
+.welcome-panel .wp-badge {
+ position: absolute;
+}
+
+.welcome-panel .welcome-panel-column:first-child {
+ width: 35%;
+}
+
+.wp-fullscreen-title {
+ width: 97%;
+}
+
+#wp_mce_fullscreen_ifr {
+ background-color: #f9f9f9;
+}
+
+#wp-fullscreen-tagline {
+ color: #888;
+ font-size: 14px;
+}
+
+#adminmenuback {
right: 0;
background-image: none;
}
-.rtl #adminmenuback,
-.rtl #adminmenuwrap {
- border-width: 0 0 0 1px;
+#adminmenuwrap {
+ position: static;
}
-#plupload-upload-ui {
- zoom: 1;
+#adminmenu {
+ position: relative;
}
-.post-com-count-wrapper a.post-com-count {
- float: none;
+#adminmenu,
+#adminmenu a {
+ cursor: pointer;
+}
+
+#adminmenu li.wp-menu-separator,
+#adminmenu li.wp-menu-separator-last {
+ font-size: 1px;
+ line-height: 1;
+}
+
+#adminmenu a.menu-top {
+ border-bottom: 0 none;
+ border-top: 1px solid #ddd;
+}
+
+#adminmenu .separator {
+ font-size: 1px;
+ line-height: 1px;
+}
+
+#adminmenu .wp-submenu {
+ right: 110px;
}
#adminmenu .wp-submenu ul {
- width: 99%;
+ margin: 0;
}
-#adminmenu .wp-submenu .wp-submenu .wp-submenu,
-#adminmenu .wp-menu-open .wp-submenu .wp-submenu {
- border: 1px solid #dfdfdf;
+.folded #wpcontent,
+.folded #wpfooter {
+ margin-right: 170px;
+}
+
+.folded #adminmenuback,
+.folded #adminmenuwrap,
+.folded #adminmenu,
+.folded #adminmenu li.menu-top {
+ width: 150px;
}
.folded #adminmenu .wp-submenu {
- right: 30px;
+ border-top-color: transparent;
}
-#wpcontent #adminmenu .wp-submenu li.wp-submenu-head {
- padding: 3px 10px 4px 4px;
+.folded #adminmenu .wp-menu-name {
+ display: block;
}
-div.quicktags-toolbar input {
- min-width: 0;
+.folded #adminmenu .wp-submenu.sub-open,
+.folded #adminmenu .opensub .wp-submenu {
+ right: 110px;
+}
+
+.folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
+.folded #adminmenu .wp-has-current-submenu .wp-submenu {
+ top: -1px;
+ position: relative;
+}
+
+.folded #adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
+ background-color: transparent;
+}
+
+#adminmenu .wp-submenu .wp-submenu-head {
+ border-top-color: #ddd;
+}
+
+.folded #adminmenu .wp-submenu ul {
+ margin-right: 5px;
+}
+
+#adminmenu li.menu-top {
+ margin-bottom: -2px;
+}
+
+#adminmenu .wp-menu-arrow {
+ display: none !important;
+}
+
+.js.folded #adminmenu li.menu-top {
+ display: block;
+ zoom: 100%;
+}
+
+ul#adminmenu {
+ z-index: 99;
+}
+
+#adminmenu li.menu-top a.menu-top {
+ min-width: auto;
+ width: auto;
+}
+
+#wpcontent #adminmenu li.wp-has-current-submenu a.wp-has-submenu {
+ font-style: normal;
+}
+
+#wpcontent #adminmenu .wp-submenu li {
+ padding: 0;
+}
+
+#adminmenu li.wp-has-current-submenu .wp-submenu {
+ right: -40px;
+}
+
+#adminmenu .wp-menu-image {
+ display: none !important;
+}
+
+#adminmenu a.menu-top .wp-menu-name {
+ padding-right: 8px;
+}
+
+#collapse-menu {
+ line-height: 23px;
+}
+
+#wpadminbar .ab-comments-icon {
+ padding-top: 7px;
+}
+
+
+.theme-browser .theme {
+ width: 30%;
+ margin: 0 0 4% 3%;
+ cursor: auto;
+}
+
+.theme-browser .theme:hover,
+.theme-browser .theme:focus {
+ cursor: auto;
+}
+
+.theme-browser .theme .theme-screenshot {
+ height: 180px;
+}
+
+.theme-browser .theme .theme-actions {
+ position: static;
+ background-color: #e8e8e8;
+}
+
+.theme-browser .theme .more-details {
+ display: none;
+}
+
+.plugins td,
+.plugins th {
+ border-top: 1px solid #ddd;
+}
+
+table.fixed th,
+table.fixed td {
+ border-top: 1px solid #ddd;
+}
+
+#wpbody-content input.button,
+#wpbody-content input.button-primary,
+#wpbody-content input.button-secondary {
+ overflow: visible;
+}
+
+#dashboard-widgets h3 a {
+ height: 14px;
+ line-height: 14px;
+}
+
+#dashboard_browser_nag {
+ color: #fff;
+}
+
+#dashboard_browser_nag .browser-icon {
+ position: relative;
+}
+
+.tablenav-pages .current-page {
+ vertical-align: middle;
+}
+
+#wpbody-content .postbox {
+ border: 1px solid #dfdfdf;
+}
+
+#wpbody-content .postbox h3 {
+ margin-bottom: -1px;
+}
+
+.major-publishing-actions,
+.wp-submenu,
+.wp-submenu li,
+#template,
+#template div,
+#editcat,
+#addcat {
+ zoom: 100%;
+}
+
+.wp-menu-arrow {
+ height: 28px;
+}
+
+.submitbox {
+ margin-top: 10px;
+}
+
+/* Inline Editor */
+#wpbody-content .quick-edit-row-post .inline-edit-col-left {
+ width: 39%;
+}
+
+#wpbody-content .inline-edit-row-post .inline-edit-col-center {
+ width: 19%;
+}
+
+#wpbody-content .quick-edit-row-page .inline-edit-col-left {
+ width: 49%;
+}
+
+#wpbody-content .bulk-edit-row .inline-edit-col-left {
+ width: 29%;
+}
+
+.inline-edit-row p.submit {
+ zoom: 100%;
}
.inline-edit-row fieldset label span.title {
+ display: block;
float: right;
+ width: 5em;
}
.inline-edit-row fieldset label span.input-text-wrap {
margin-right: 0;
+ zoom: 100%;
+}
+
+#wpbody-content .inline-edit-row fieldset label span.input-text-wrap input {
+ line-height: 130%;
+}
+
+#wpbody-content .inline-edit-row .input-text-wrap input {
+ width: 95%;
+}
+
+#wpbody-content .inline-edit-row .input-text-wrap input.inline-edit-password-input {
+ width: 8em;
+}
+/* end Inline Editor */
+
+#titlediv #title {
+ width: 98%;
+}
+
+.button,
+input[type="reset"],
+input[type="button"],
+input[type="submit"] {
+ padding: 0 8px;
+ line-height: 20px;
+ height: auto;
+}
+
+.button.button-large,
+input[type="reset"].button-large,
+input[type="button"].button-large,
+input[type="submit"].button-large {
+ padding: 0 10px;
+ line-height: 24px;
+ height: auto;
+}
+
+.button.button-small,
+input[type="reset"].button-small,
+input[type="button"].button-small,
+input[type="submit"].button-small {
+ padding: 0 6px;
+ line-height: 16px;
+ height: auto;
+}
+
+a.button {
+ margin: 1px;
+ padding: 1px 9px 2px;
+}
+
+a.button.button-large {
+ padding: 1px 11px 2px;
+}
+
+a.button.button-small {
+ padding: 1px 7px 2px;
+}
+
+#screen-options-wrap {
+ overflow: hidden;
+}
+
+#the-comment-list .comment-item,
+#post-status-info,
+#wpwrap,
+#wrap,
+#postdivrich,
+#postdiv,
+#poststuff,
+.metabox-holder,
+#titlediv,
+#post-body,
+#editorcontainer,
+.tablenav,
+.widget-liquid-left,
+.widget-liquid-right,
+#widgets-left,
+.widgets-sortables,
+#dragHelper,
+.widget .widget-top,
+.widget-control-actions,
+.tagchecklist,
+#col-container,
+#col-left,
+#col-right,
+.fileedit-sub {
+ display: block;
+ zoom: 100%;
}
p.search-box {
+ position: static;
float: left;
+ margin: -3px 0 4px;
+}
+
+#widget-list .widget,
+.feature-filter .feature-group li {
+ display: inline;
+}
+
+.feature-filter .feature-group li input {
+ vertical-align: middle;
+}
+
+#editorcontainer #content {
+ overflow: auto;
+ margin: auto;
+ width: 98%;
+}
+
+form#template div {
+ width: 100%;
+}
+
+.wp-editor-container .quicktags-toolbar input {
+ overflow: visible;
+ padding: 0 4px;
+}
+
+#poststuff h2 {
+ font-size: 1.6em;
+}
+
+#poststuff .inside #parent_id,
+#poststuff .inside #page_template,
+.inline-edit-row #post_parent,
+.inline-edit-row select[name="page_template"] {
+ width: 250px;
+}
+
+#submitdiv input,
+#submitdiv select,
+#submitdiv a.button {
+ position: relative;
}
#bh {
- margin: 7px 10px 0 0;
+ margin: 7px 0 0 10px;
float: left;
}
-.postbox div.inside,
-.wp-editor-wrap .wp-editor-container .wp-editor-area,
-#nav-menu-theme-locations .howto select {
- width: 97.5%;
-}
-
/* without this dashboard widgets appear in one column for some screen widths */
div#dashboard-widgets {
- padding-right: 0;
padding-left: 1px;
}
+.tagchecklist span, .tagchecklist span a {
+ display: inline-block;
+ display: block;
+}
+
+.tablenav .button-secondary,
+.nav .button-secondary {
+ padding-top: 2px;
+ padding-bottom: 2px;
+}
+
+.tablenav select {
+ font-size: 13px;
+ display: inline-block;
+ vertical-align: top;
+ margin-top: 2px;
+}
+
+.tablenav .actions select {
+ width: 155px;
+}
+
+.subsubsub li {
+ display: inline;
+}
+
+a.post-state-format {
+ text-indent: 0;
+ line-height: 0;
+ font-size: 0;
+}
+
+table.ie-fixed {
+ table-layout: fixed;
+}
+
+.widefat tr,
+.widefat th {
+ margin-bottom: 0;
+ border-spacing: 0;
+}
+
.widefat th input {
margin: 0 5px 0 0;
}
-/* ---------- add by navid */
-#TB_window {
- width: 670px;
- position: absolute;
- top: 50%;
- left: 50%;
- margin-right: 335px !important;
+.widefat thead .check-column,
+.widefat tfoot .check-column {
+ padding-top: 6px;
}
-#dashboard_plugins {
- direction: ltr;
+.widefat tbody th.check-column,
+.media.widefat tbody th.check-column {
+ padding: 4px 0 0;
}
-#dashboard_plugins h3.hndle {
- direction: rtl;
+.widefat {
+ empty-cells: show;
+ border-collapse: collapse;
}
-#dashboard_incoming_links ul li,
-#dashboard_secondary ul li,
-#dashboard_primary ul li,
-p.row-actions {
- width: 100%;
+.tablenav a.button-secondary {
+ display: inline-block;
+ padding: 2px 5px;
}
-#post-status-info {
- height: 25px;
+.inactive-sidebar .widgets-sortables {
+ padding-bottom: 8px;
}
-p.submit { /* quick edit and reply in edit-comments.php */
- height:22px;
+#available-widgets .widget-holder {
+ padding-bottom: 65px;
+}
+
+#widgets-left .inactive {
+ padding-bottom: 10px;
+}
+
+.widget-liquid-right .widget,
+.inactive-sidebar .widget {
+ position: relative;
+}
+
+.inactive-sidebar .widget {
+ display: block;
+ float: right;
+}
+
+#wpcontent .button-primary-disabled {
+ color: #9FD0D5;
+ background: #298CBA;
+}
+
+#the-comment-list .unapproved tr,
+#the-comment-list .unapproved td {
+ background-color: #ffffe0;
+}
+
+.imgedit-submit {
+ width: 300px;
+}
+
+#nav-menus-frame,
+#wpbody,
+.menu li {
+ zoom: 100%;
+}
+
+#update-nav-menu #post-body {
+ overflow:hidden;
+}
+
+.menu li {
+ min-width: 100%;
+}
+
+.menu li.sortable-placeholder {
+ min-width: 400px;
+}
+
+.available-theme {
+ display: inline;
+}
+
+.available-theme ul {
+ margin: 0;
}
.available-theme .action-links li {
@@ -114,123 +593,193 @@ p.submit { /* quick edit and reply in edit-comments.php */
margin-left: 7px;
}
-form#widgets-filter { /* fix widget page */
- position: static;
+.about-wrap .three-col.about-updates .col-2 {
+ width: 15%;
}
-/* nav menus
-.menu-max-depth-0 #menu-management { width: 460px; }
-.menu-max-depth-1 #menu-management { width: 490px; }
-.menu-max-depth-2 #menu-management { width: 520px; }
-.menu-max-depth-3 #menu-management { width: 550px; }
-.menu-max-depth-4 #menu-management { width: 580px; }
-.menu-max-depth-5 #menu-management { width: 610px; }
-.menu-max-depth-6 #menu-management { width: 640px; }
-.menu-max-depth-7 #menu-management { width: 670px; }
-.menu-max-depth-8 #menu-management { width: 700px; }
-.menu-max-depth-9 #menu-management { width: 730px; }
-.menu-max-depth-10 #menu-management { width: 760px; }
-.menu-max-depth-11 #menu-management { width: 790px; }
-*/
-.menu-item-depth-0 { margin-left: 0px; }
-.menu-item-depth-1 { margin-left: -30px; }
-.menu-item-depth-2 { margin-left: -60px; }
-.menu-item-depth-3 { margin-left: -90px; }
-.menu-item-depth-4 { margin-left: -120px; }
-.menu-item-depth-5 { margin-left: -150px; }
-.menu-item-depth-6 { margin-left: -180px; }
-.menu-item-depth-7 { margin-left: -210px; }
-.menu-item-depth-8 { margin-left: -240px; }
-.menu-item-depth-9 { margin-left: -270px; }
-.menu-item-depth-10 { margin-left: -300px; }
-.menu-item-depth-11 { margin-left: -330px; }
-
-/*
-#menu-to-edit li dl {
- padding: 0 !important;
- margin: 0 !important;
+.about-wrap .about-password-meter input {
+ width: 98%;
}
-.ui-sortable-helper .menu-item-transport {
- margin-top: 13px;
+.revisions-tickmarks,
+.revisions-tooltip {
+ display: none !important;
}
-.ui-sortable-helper .menu-item-transport .menu-item-transport {
- margin-top: 0;
-}
-*/
-
-#menu-management,
-.nav-menus-php .menu-edit,
-#nav-menu-header .submitbox {
- zoom: 1;
+.revisions.pinned .revisions-controls {
+ position: relative;
}
-.nav-menus-php label {
- max-width: 90% !important;
+input[type="password"],
+.login form .input {
+ font-family: sans-serif;
}
-p.button-controls,
-.nav-menus-php .tabs-panel {
- max-width: 90%;
+/* TinyMCE icons */
+.mce-btn i.mce-i-bold,
+.mce-btn i.mce-i-italic,
+.mce-btn i.mce-i-bullist,
+.mce-btn i.mce-i-numlist,
+.mce-btn i.mce-i-blockquote,
+.mce-btn i.mce-i-alignleft,
+.mce-btn i.mce-i-aligncenter,
+.mce-btn i.mce-i-alignright,
+.mce-btn i.mce-i-link,
+.mce-btn i.mce-i-unlink,
+.mce-btn i.mce-i-wp_more,
+.mce-btn i.mce-i-strikethrough,
+.mce-btn i.mce-i-spellchecker,
+.mce-btn i.mce-i-fullscreen,
+.mce-btn i.mce-i-wp_fullscreen,
+.mce-btn i.mce-i-wp_adv,
+.mce-btn i.mce-i-underline,
+.mce-btn i.mce-i-alignjustify,
+.mce-btn i.mce-i-forecolor,
+.mce-btn i.mce-i-pastetext,
+.mce-btn i.mce-i-pasteword,
+.mce-btn i.mce-i-removeformat,
+.mce-btn i.mce-i-charmap,
+.mce-btn i.mce-i-outdent,
+.mce-btn i.mce-i-indent,
+.mce-btn i.mce-i-undo,
+.mce-btn i.mce-i-redo,
+.mce-btn i.mce-i-help,
+.mce-btn i.mce-i-wp_help,
+.mce-btn i.mce-i-wp-media-library,
+.mce-btn i.mce-i-ltr,
+.mce-btn i.mce-i-wp_page,
+.mce-btn i.mce-i-hr,
+.mce-close {
+ font-family: 'tinymce', Arial;
+ font-style: normal;
+ font-weight: normal;
+ font-variant: normal;
+ font-size: 16px;
+ margin-right: 0;
+ padding-left: 0;
}
-.nav-menus-php .major-publishing-actions .publishing-action {
- float: none;
+.mce-btn i.mce-i-wp_fullscreen,
+.qt-fullscreen {
+ -ie7-icon: '\e023';
}
-#wpbody #nav-menu-header label {
- float: none;
+.mce-btn i.mce-i-wp_more,
+.mce-btn i.mce-i-wp_page {
+ -ie7-icon: '\e027';
}
-#nav-menu-header {
- margin-top: -10px;
+.mce-btn i.mce-i-wp_adv {
+ background-color: #aaa;
}
-#nav-menu-footer {
- margin-bottom: -20px;
+.mce-btn i.mce-i-help,
+.mce-btn i.mce-i-wp_help {
+ -ie7-icon: '\e016';
}
-#update-nav-menu .publishing-action {
- max-width: 200px;
+
+/* IE6 leftovers */
+* html .row-actions {
+ visibility: visible;
}
-#nav-menus-frame #update-nav-menu .delete-action {
- margin-top: -25px;
- float: left;
+* html div.widget-liquid-right,
+* html div.widget-liquid-right {
+ display: block;
+ position: relative;
}
-#menu-to-edit li {
- margin-top: -10px;
- margin-bottom: -10px;
+* html #editorcontainer {
+ padding: 0;
}
-.sortable-placeholder {
- margin-top: 0 !important;
- margin-left: 0 !important;
- margin-bottom: 13px !important;
- padding: 0 !important;
+* html #poststuff h2 {
+ margin-right: 0;
}
-.auto-add-pages {
- clear: both;
- float: none;
+* html .stuffbox,
+* html .stuffbox input,
+* html .stuffbox textarea {
+ border: 1px solid #DFDFDF;
}
-#nav-menus-frame .open-label span {
- float: none;
+* html .feature-filter .feature-group li {
+ width: 145px;
+}
+
+* html div.widget-liquid-left {
+ width: 99%;
+}
+
+* html .widgets-sortables {
+ height: 50px;
+}
+
+* html a#content_resize {
+ left: -2px;
+}
+
+* html .widget-title h4 {
+ width: 205px;
+}
+
+* html #removing-widget .in-widget-title {
+ display: none;
+}
+
+* html .media-item .pinkynail {
+ height: 32px;
+ width: 40px;
+}
+
+* html .describe .field input.text,
+* html .describe .field textarea {
+ width: 440px;
+}
+
+* html input {
+ border: 1px solid #dfdfdf;
+}
+
+* html .edit-box {
+ display: inline;
+}
+
+* html .postbox-container .meta-box-sortables {
+ height: 300px;
+}
+
+* html #wpbody-content #screen-options-link-wrap {
display: inline-block;
+ width: 150px;
+ text-align: center;
}
-#nav-menus-frame .delete-action {
- float: none;
+* html #wpbody-content #contextual-help-link-wrap {
+ display: inline-block;
+ width: 100px;
+ text-align: center;
}
-#title-wrap #title-prompt-text {
- right: 0;
+* html #adminmenu {
+ margin-right: -80px;
}
-.screen-reader-text {
- right: auto;
- text-indent: -1000em;
-}
\ No newline at end of file
+* html .folded #adminmenu {
+ margin-right: -22px;
+}
+
+* html #wpcontent #adminmenu li.menu-top {
+ display: inline;
+ padding: 0;
+ margin: 0;
+}
+
+* html #wpfooter {
+ margin: 0;
+}
+
+* html #adminmenu div.wp-menu-image {
+ height: 29px;
+}
diff --git a/sources/wp-admin/css/ie-rtl.min.css b/sources/wp-admin/css/ie-rtl.min.css
index 4467ebd..f8c6f3b 100644
--- a/sources/wp-admin/css/ie-rtl.min.css
+++ b/sources/wp-admin/css/ie-rtl.min.css
@@ -1 +1 @@
-body{direction:rtl;width:99.5%}.rtl #adminmenuback{left:auto;right:0;background-image:none}.rtl #adminmenuback,.rtl #adminmenuwrap{border-width:0 0 0 1px}#plupload-upload-ui{zoom:1}.post-com-count-wrapper a.post-com-count{float:none}#adminmenu .wp-submenu ul{width:99%}#adminmenu .wp-submenu .wp-submenu .wp-submenu,#adminmenu .wp-menu-open .wp-submenu .wp-submenu{border:1px solid #dfdfdf}.folded #adminmenu .wp-submenu{right:30px}#wpcontent #adminmenu .wp-submenu li.wp-submenu-head{padding:3px 10px 4px 4px}div.quicktags-toolbar input{min-width:0}.inline-edit-row fieldset label span.title{float:right}.inline-edit-row fieldset label span.input-text-wrap{margin-right:0}p.search-box{float:left}#bh{margin:7px 10px 0 0;float:left}.postbox div.inside,.wp-editor-wrap .wp-editor-container .wp-editor-area,#nav-menu-theme-locations .howto select{width:97.5%}div#dashboard-widgets{padding-right:0;padding-left:1px}.widefat th input{margin:0 5px 0 0}#TB_window{width:670px;position:absolute;top:50%;left:50%;margin-right:335px!important}#dashboard_plugins{direction:ltr}#dashboard_plugins h3.hndle{direction:rtl}#dashboard_incoming_links ul li,#dashboard_secondary ul li,#dashboard_primary ul li,p.row-actions{width:100%}#post-status-info{height:25px}p.submit{height:22px}.available-theme .action-links li{padding-left:7px;margin-left:7px}form#widgets-filter{position:static}.menu-item-depth-0{margin-left:0}.menu-item-depth-1{margin-left:-30px}.menu-item-depth-2{margin-left:-60px}.menu-item-depth-3{margin-left:-90px}.menu-item-depth-4{margin-left:-120px}.menu-item-depth-5{margin-left:-150px}.menu-item-depth-6{margin-left:-180px}.menu-item-depth-7{margin-left:-210px}.menu-item-depth-8{margin-left:-240px}.menu-item-depth-9{margin-left:-270px}.menu-item-depth-10{margin-left:-300px}.menu-item-depth-11{margin-left:-330px}#menu-management,.nav-menus-php .menu-edit,#nav-menu-header .submitbox{zoom:1}.nav-menus-php label{max-width:90%!important}p.button-controls,.nav-menus-php .tabs-panel{max-width:90%}.nav-menus-php .major-publishing-actions .publishing-action{float:none}#wpbody #nav-menu-header label{float:none}#nav-menu-header{margin-top:-10px}#nav-menu-footer{margin-bottom:-20px}#update-nav-menu .publishing-action{max-width:200px}#nav-menus-frame #update-nav-menu .delete-action{margin-top:-25px;float:left}#menu-to-edit li{margin-top:-10px;margin-bottom:-10px}.sortable-placeholder{margin-top:0!important;margin-left:0!important;margin-bottom:13px!important;padding:0!important}.auto-add-pages{clear:both;float:none}#nav-menus-frame .open-label span{float:none;display:inline-block}#nav-menus-frame .delete-action{float:none}#title-wrap #title-prompt-text{right:0}.screen-reader-text{right:auto;text-indent:-1000em}
\ No newline at end of file
+#dashboard-widgets form .input-text-wrap input,#dashboard-widgets form .textarea-wrap textarea{width:99%}#dashboard-widgets form #title{width:98%}#wpbody-content #dashboard-widgets .postbox-container{width:49.5%}#wpbody-content #dashboard-widgets #postbox-container-2,#wpbody-content #dashboard-widgets #postbox-container-3,#wpbody-content #dashboard-widgets #postbox-container-4{float:left;width:50.5%}#dashboard-widgets #postbox-container-3 .empty-container,#dashboard-widgets #postbox-container-4 .empty-container{border:0 none;height:0;min-height:0}.wp-editor-wrap .wp-editor-container,.wp-editor-wrap .wp-editor-tabs,.wp-editor-wrap .wp-editor-tools,.wp-editor-wrap .wp-switch-editor{zoom:100%}.wp-editor-wrap .wp-editor-container textarea.wp-editor-area{width:97%}#post-body.columns-2 #postbox-container-1{padding-right:19px}.welcome-panel .wp-badge{position:absolute}.welcome-panel .welcome-panel-column:first-child{width:35%}.wp-fullscreen-title{width:97%}#wp_mce_fullscreen_ifr{background-color:#f9f9f9}#wp-fullscreen-tagline{color:#888;font-size:14px}#adminmenuback{right:0;background-image:none}#adminmenuwrap{position:static}#adminmenu{position:relative}#adminmenu,#adminmenu a{cursor:pointer}#adminmenu li.wp-menu-separator,#adminmenu li.wp-menu-separator-last{font-size:1px;line-height:1}#adminmenu a.menu-top{border-bottom:0 none;border-top:1px solid #ddd}#adminmenu .separator{font-size:1px;line-height:1px}#adminmenu .wp-submenu{right:110px}#adminmenu .wp-submenu ul{margin:0}.folded #wpcontent,.folded #wpfooter{margin-right:170px}.folded #adminmenu,.folded #adminmenu li.menu-top,.folded #adminmenuback,.folded #adminmenuwrap{width:150px}.folded #adminmenu .wp-submenu{border-top-color:transparent}.folded #adminmenu .wp-menu-name{display:block}.folded #adminmenu .opensub .wp-submenu,.folded #adminmenu .wp-submenu.sub-open{right:110px}.folded #adminmenu .wp-has-current-submenu .wp-submenu,.folded #adminmenu a.wp-has-current-submenu:focus+.wp-submenu{top:-1px;position:relative}.folded #adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head{background-color:transparent}#adminmenu .wp-submenu .wp-submenu-head{border-top-color:#ddd}.folded #adminmenu .wp-submenu ul{margin-right:5px}#adminmenu li.menu-top{margin-bottom:-2px}#adminmenu .wp-menu-arrow{display:none!important}.js.folded #adminmenu li.menu-top{display:block;zoom:100%}ul#adminmenu{z-index:99}#adminmenu li.menu-top a.menu-top{min-width:auto;width:auto}#wpcontent #adminmenu li.wp-has-current-submenu a.wp-has-submenu{font-style:normal}#wpcontent #adminmenu .wp-submenu li{padding:0}#adminmenu li.wp-has-current-submenu .wp-submenu{right:-40px}#adminmenu .wp-menu-image{display:none!important}#adminmenu a.menu-top .wp-menu-name{padding-right:8px}#collapse-menu{line-height:23px}#wpadminbar .ab-comments-icon{padding-top:7px}.theme-browser .theme{width:30%;margin:0 0 4% 3%;cursor:auto}.theme-browser .theme:focus,.theme-browser .theme:hover{cursor:auto}.theme-browser .theme .theme-screenshot{height:180px}.theme-browser .theme .theme-actions{position:static;background-color:#e8e8e8}.theme-browser .theme .more-details{display:none}.plugins td,.plugins th,table.fixed td,table.fixed th{border-top:1px solid #ddd}#wpbody-content input.button,#wpbody-content input.button-primary,#wpbody-content input.button-secondary{overflow:visible}#dashboard-widgets h3 a{height:14px;line-height:14px}#dashboard_browser_nag{color:#fff}#dashboard_browser_nag .browser-icon{position:relative}.tablenav-pages .current-page{vertical-align:middle}#wpbody-content .postbox{border:1px solid #dfdfdf}#wpbody-content .postbox h3{margin-bottom:-1px}#addcat,#editcat,#template,#template div,.major-publishing-actions,.wp-submenu,.wp-submenu li{zoom:100%}.wp-menu-arrow{height:28px}.submitbox{margin-top:10px}#wpbody-content .quick-edit-row-post .inline-edit-col-left{width:39%}#wpbody-content .inline-edit-row-post .inline-edit-col-center{width:19%}#wpbody-content .quick-edit-row-page .inline-edit-col-left{width:49%}#wpbody-content .bulk-edit-row .inline-edit-col-left{width:29%}.inline-edit-row p.submit{zoom:100%}.inline-edit-row fieldset label span.title{display:block;float:right;width:5em}.inline-edit-row fieldset label span.input-text-wrap{margin-right:0;zoom:100%}#wpbody-content .inline-edit-row fieldset label span.input-text-wrap input{line-height:130%}#wpbody-content .inline-edit-row .input-text-wrap input{width:95%}#wpbody-content .inline-edit-row .input-text-wrap input.inline-edit-password-input{width:8em}#titlediv #title{width:98%}.button,input[type=button],input[type=reset],input[type=submit]{padding:0 8px;line-height:20px;height:auto}.button.button-large,input[type=button].button-large,input[type=reset].button-large,input[type=submit].button-large{padding:0 10px;line-height:24px;height:auto}.button.button-small,input[type=button].button-small,input[type=reset].button-small,input[type=submit].button-small{padding:0 6px;line-height:16px;height:auto}a.button{margin:1px;padding:1px 9px 2px}a.button.button-large{padding:1px 11px 2px}a.button.button-small{padding:1px 7px 2px}#screen-options-wrap{overflow:hidden}#col-container,#col-left,#col-right,#dragHelper,#editorcontainer,#post-body,#post-status-info,#postdiv,#postdivrich,#poststuff,#the-comment-list .comment-item,#titlediv,#widgets-left,#wpwrap,#wrap,.fileedit-sub,.metabox-holder,.tablenav,.tagchecklist,.widget .widget-top,.widget-control-actions,.widget-liquid-left,.widget-liquid-right,.widgets-sortables{display:block;zoom:100%}p.search-box{position:static;float:left;margin:-3px 0 4px}#widget-list .widget,.feature-filter .feature-group li{display:inline}.feature-filter .feature-group li input{vertical-align:middle}#editorcontainer #content{overflow:auto;margin:auto;width:98%}form#template div{width:100%}.wp-editor-container .quicktags-toolbar input{overflow:visible;padding:0 4px}#poststuff h2{font-size:1.6em}#poststuff .inside #page_template,#poststuff .inside #parent_id,.inline-edit-row #post_parent,.inline-edit-row select[name=page_template]{width:250px}#submitdiv a.button,#submitdiv input,#submitdiv select{position:relative}#bh{margin:7px 0 0 10px;float:left}div#dashboard-widgets{padding-left:1px}.tagchecklist span,.tagchecklist span a{display:inline-block;display:block}.nav .button-secondary,.tablenav .button-secondary{padding-top:2px;padding-bottom:2px}.tablenav select{font-size:13px;display:inline-block;vertical-align:top;margin-top:2px}.tablenav .actions select{width:155px}.subsubsub li{display:inline}a.post-state-format{text-indent:0;line-height:0;font-size:0}table.ie-fixed{table-layout:fixed}.widefat th,.widefat tr{margin-bottom:0;border-spacing:0}.widefat th input{margin:0 5px 0 0}.widefat tfoot .check-column,.widefat thead .check-column{padding-top:6px}.media.widefat tbody th.check-column,.widefat tbody th.check-column{padding:4px 0 0}.widefat{empty-cells:show;border-collapse:collapse}.tablenav a.button-secondary{display:inline-block;padding:2px 5px}.inactive-sidebar .widgets-sortables{padding-bottom:8px}#available-widgets .widget-holder{padding-bottom:65px}#widgets-left .inactive{padding-bottom:10px}.inactive-sidebar .widget,.widget-liquid-right .widget{position:relative}.inactive-sidebar .widget{display:block;float:right}#wpcontent .button-primary-disabled{color:#9FD0D5;background:#298CBA}#the-comment-list .unapproved td,#the-comment-list .unapproved tr{background-color:#ffffe0}.imgedit-submit{width:300px}#nav-menus-frame,#wpbody,.menu li{zoom:100%}#update-nav-menu #post-body{overflow:hidden}.menu li{min-width:100%}.menu li.sortable-placeholder{min-width:400px}.available-theme{display:inline}.available-theme ul{margin:0}.available-theme .action-links li{padding-left:7px;margin-left:7px}.about-wrap .three-col.about-updates .col-2{width:15%}.about-wrap .about-password-meter input{width:98%}.revisions-tickmarks,.revisions-tooltip{display:none!important}.revisions.pinned .revisions-controls{position:relative}.login form .input,input[type=password]{font-family:sans-serif}.mce-btn i.mce-i-aligncenter,.mce-btn i.mce-i-alignjustify,.mce-btn i.mce-i-alignleft,.mce-btn i.mce-i-alignright,.mce-btn i.mce-i-blockquote,.mce-btn i.mce-i-bold,.mce-btn i.mce-i-bullist,.mce-btn i.mce-i-charmap,.mce-btn i.mce-i-forecolor,.mce-btn i.mce-i-fullscreen,.mce-btn i.mce-i-help,.mce-btn i.mce-i-hr,.mce-btn i.mce-i-indent,.mce-btn i.mce-i-italic,.mce-btn i.mce-i-link,.mce-btn i.mce-i-ltr,.mce-btn i.mce-i-numlist,.mce-btn i.mce-i-outdent,.mce-btn i.mce-i-pastetext,.mce-btn i.mce-i-pasteword,.mce-btn i.mce-i-redo,.mce-btn i.mce-i-removeformat,.mce-btn i.mce-i-spellchecker,.mce-btn i.mce-i-strikethrough,.mce-btn i.mce-i-underline,.mce-btn i.mce-i-undo,.mce-btn i.mce-i-unlink,.mce-btn i.mce-i-wp-media-library,.mce-btn i.mce-i-wp_adv,.mce-btn i.mce-i-wp_fullscreen,.mce-btn i.mce-i-wp_help,.mce-btn i.mce-i-wp_more,.mce-btn i.mce-i-wp_page,.mce-close{font-family:tinymce,Arial;font-style:normal;font-weight:400;font-variant:normal;font-size:16px;margin-right:0;padding-left:0}.mce-btn i.mce-i-wp_fullscreen,.qt-fullscreen{-ie7-icon:'\e023'}.mce-btn i.mce-i-wp_more,.mce-btn i.mce-i-wp_page{-ie7-icon:'\e027'}.mce-btn i.mce-i-wp_adv{background-color:#aaa}.mce-btn i.mce-i-help,.mce-btn i.mce-i-wp_help{-ie7-icon:'\e016'}* html .row-actions{visibility:visible}* html div.widget-liquid-right{display:block;position:relative}* html #editorcontainer{padding:0}* html #poststuff h2{margin-right:0}* html .stuffbox,* html .stuffbox input,* html .stuffbox textarea{border:1px solid #DFDFDF}* html .feature-filter .feature-group li{width:145px}* html div.widget-liquid-left{width:99%}* html .widgets-sortables{height:50px}* html a#content_resize{left:-2px}* html .widget-title h4{width:205px}* html #removing-widget .in-widget-title{display:none}* html .media-item .pinkynail{height:32px;width:40px}* html .describe .field input.text,* html .describe .field textarea{width:440px}* html input{border:1px solid #dfdfdf}* html .edit-box{display:inline}* html .postbox-container .meta-box-sortables{height:300px}* html #wpbody-content #screen-options-link-wrap{display:inline-block;width:150px;text-align:center}* html #wpbody-content #contextual-help-link-wrap{display:inline-block;width:100px;text-align:center}* html #adminmenu{margin-right:-80px}* html .folded #adminmenu{margin-right:-22px}* html #wpcontent #adminmenu li.menu-top{display:inline;padding:0;margin:0}* html #wpfooter{margin:0}* html #adminmenu div.wp-menu-image{height:29px}
\ No newline at end of file
diff --git a/sources/wp-admin/css/ie.css b/sources/wp-admin/css/ie.css
index 7aa6685..967fae2 100644
--- a/sources/wp-admin/css/ie.css
+++ b/sources/wp-admin/css/ie.css
@@ -9,6 +9,31 @@
width: 98%;
}
+#wpbody-content #dashboard-widgets .postbox-container {
+ width: 49.5%;
+}
+
+#wpbody-content #dashboard-widgets #postbox-container-2,
+#wpbody-content #dashboard-widgets #postbox-container-3,
+#wpbody-content #dashboard-widgets #postbox-container-4 {
+ float: right;
+ width: 50.5%;
+}
+
+#dashboard-widgets #postbox-container-3 .empty-container,
+#dashboard-widgets #postbox-container-4 .empty-container {
+ border: 0 none;
+ height: 0;
+ min-height: 0;
+}
+
+.wp-editor-wrap .wp-editor-tools,
+.wp-editor-wrap .wp-switch-editor,
+.wp-editor-wrap .wp-editor-tabs,
+.wp-editor-wrap .wp-editor-container {
+ zoom: 100%;
+}
+
.wp-editor-wrap .wp-editor-container textarea.wp-editor-area {
width: 97%;
}
@@ -25,7 +50,7 @@
width: 35%;
}
-#wp-fullscreen-title {
+.wp-fullscreen-title {
width: 97%;
}
@@ -38,10 +63,6 @@
font-size: 14px;
}
-#adminmenushadow {
- display: none;
-}
-
#adminmenuback {
left: 0;
background-image: none;
@@ -76,14 +97,49 @@
line-height: 1px;
}
+#adminmenu .wp-submenu {
+ left: 110px;
+}
+
#adminmenu .wp-submenu ul {
margin: 0;
}
+.folded #wpcontent,
+.folded #wpfooter {
+ margin-left: 170px;
+}
+
+.folded #adminmenuback,
+.folded #adminmenuwrap,
+.folded #adminmenu,
+.folded #adminmenu li.menu-top {
+ width: 150px;
+}
+
.folded #adminmenu .wp-submenu {
border-top-color: transparent;
}
+.folded #adminmenu .wp-menu-name {
+ display: block;
+}
+
+.folded #adminmenu .wp-submenu.sub-open,
+.folded #adminmenu .opensub .wp-submenu {
+ left: 110px;
+}
+
+.folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
+.folded #adminmenu .wp-has-current-submenu .wp-submenu {
+ top: -1px;
+ position: relative;
+}
+
+.folded #adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
+ background-color: transparent;
+}
+
#adminmenu .wp-submenu .wp-submenu-head {
border-top-color: #ddd;
}
@@ -122,6 +178,18 @@ ul#adminmenu {
padding: 0;
}
+#adminmenu li.wp-has-current-submenu .wp-submenu {
+ left: -40px;
+}
+
+#adminmenu .wp-menu-image {
+ display: none !important;
+}
+
+#adminmenu a.menu-top .wp-menu-name {
+ padding-left: 8px;
+}
+
#collapse-menu {
line-height: 23px;
}
@@ -130,6 +198,36 @@ ul#adminmenu {
padding-top: 7px;
}
+
+.theme-browser .theme {
+ width: 30%;
+ margin: 0 3% 4% 0;
+ cursor: auto;
+}
+
+.theme-browser .theme:hover,
+.theme-browser .theme:focus {
+ cursor: auto;
+}
+
+.theme-browser .theme .theme-screenshot {
+ height: 180px;
+}
+
+.theme-browser .theme .theme-actions {
+ position: static;
+ background-color: #e8e8e8;
+}
+
+.theme-browser .theme .more-details {
+ display: none;
+}
+
+.plugins td,
+.plugins th {
+ border-top: 1px solid #ddd;
+}
+
table.fixed th,
table.fixed td {
border-top: 1px solid #ddd;
@@ -141,10 +239,6 @@ table.fixed td {
overflow: visible;
}
-#dashboard-widgets #dashboard_quick_press form p.submit #publish {
- float: none;
-}
-
#dashboard-widgets h3 a {
height: 14px;
line-height: 14px;
@@ -516,6 +610,75 @@ table.ie-fixed {
position: relative;
}
+input[type="password"],
+.login form .input {
+ font-family: sans-serif;
+}
+
+/* TinyMCE icons */
+.mce-btn i.mce-i-bold,
+.mce-btn i.mce-i-italic,
+.mce-btn i.mce-i-bullist,
+.mce-btn i.mce-i-numlist,
+.mce-btn i.mce-i-blockquote,
+.mce-btn i.mce-i-alignleft,
+.mce-btn i.mce-i-aligncenter,
+.mce-btn i.mce-i-alignright,
+.mce-btn i.mce-i-link,
+.mce-btn i.mce-i-unlink,
+.mce-btn i.mce-i-wp_more,
+.mce-btn i.mce-i-strikethrough,
+.mce-btn i.mce-i-spellchecker,
+.mce-btn i.mce-i-fullscreen,
+.mce-btn i.mce-i-wp_fullscreen,
+.mce-btn i.mce-i-wp_adv,
+.mce-btn i.mce-i-underline,
+.mce-btn i.mce-i-alignjustify,
+.mce-btn i.mce-i-forecolor,
+.mce-btn i.mce-i-pastetext,
+.mce-btn i.mce-i-pasteword,
+.mce-btn i.mce-i-removeformat,
+.mce-btn i.mce-i-charmap,
+.mce-btn i.mce-i-outdent,
+.mce-btn i.mce-i-indent,
+.mce-btn i.mce-i-undo,
+.mce-btn i.mce-i-redo,
+.mce-btn i.mce-i-help,
+.mce-btn i.mce-i-wp_help,
+.mce-btn i.mce-i-wp-media-library,
+.mce-btn i.mce-i-ltr,
+.mce-btn i.mce-i-wp_page,
+.mce-btn i.mce-i-hr,
+.mce-close {
+ font-family: 'tinymce', Arial;
+ font-style: normal;
+ font-weight: normal;
+ font-variant: normal;
+ font-size: 16px;
+ margin-left: 0;
+ padding-right: 0;
+}
+
+.mce-btn i.mce-i-wp_fullscreen,
+.qt-fullscreen {
+ -ie7-icon: '\e023';
+}
+
+.mce-btn i.mce-i-wp_more,
+.mce-btn i.mce-i-wp_page {
+ -ie7-icon: '\e027';
+}
+
+.mce-btn i.mce-i-wp_adv {
+ background-color: #aaa;
+}
+
+.mce-btn i.mce-i-help,
+.mce-btn i.mce-i-wp_help {
+ -ie7-icon: '\e016';
+}
+
+
/* IE6 leftovers */
* html .row-actions {
visibility: visible;
diff --git a/sources/wp-admin/css/ie.min.css b/sources/wp-admin/css/ie.min.css
index 32e50b1..849f4d1 100644
--- a/sources/wp-admin/css/ie.min.css
+++ b/sources/wp-admin/css/ie.min.css
@@ -1 +1 @@
-#dashboard-widgets form .input-text-wrap input,#dashboard-widgets form .textarea-wrap textarea{width:99%}#dashboard-widgets form #title{width:98%}.wp-editor-wrap .wp-editor-container textarea.wp-editor-area{width:97%}#post-body.columns-2 #postbox-container-1{padding-left:19px}.welcome-panel .wp-badge{position:absolute}.welcome-panel .welcome-panel-column:first-child{width:35%}#wp-fullscreen-title{width:97%}#wp_mce_fullscreen_ifr{background-color:#f9f9f9}#wp-fullscreen-tagline{color:#888;font-size:14px}#adminmenushadow{display:none}#adminmenuback{left:0;background-image:none}#adminmenuwrap{position:static}#adminmenu{position:relative}#adminmenu,#adminmenu a{cursor:pointer}#adminmenu li.wp-menu-separator,#adminmenu li.wp-menu-separator-last{font-size:1px;line-height:1}#adminmenu a.menu-top{border-bottom:0 none;border-top:1px solid #ddd}#adminmenu .separator{font-size:1px;line-height:1px}#adminmenu .wp-submenu ul{margin:0}.folded #adminmenu .wp-submenu{border-top-color:transparent}#adminmenu .wp-submenu .wp-submenu-head{border-top-color:#ddd}.folded #adminmenu .wp-submenu ul{margin-left:5px}#adminmenu li.menu-top{margin-bottom:-2px}#adminmenu .wp-menu-arrow{display:none!important}.js.folded #adminmenu li.menu-top{display:block;zoom:100%}ul#adminmenu{z-index:99}#adminmenu li.menu-top a.menu-top{min-width:auto;width:auto}#wpcontent #adminmenu li.wp-has-current-submenu a.wp-has-submenu{font-style:normal}#wpcontent #adminmenu .wp-submenu li{padding:0}#collapse-menu{line-height:23px}#wpadminbar .ab-comments-icon{padding-top:7px}table.fixed th,table.fixed td{border-top:1px solid #ddd}#wpbody-content input.button,#wpbody-content input.button-primary,#wpbody-content input.button-secondary{overflow:visible}#dashboard-widgets #dashboard_quick_press form p.submit #publish{float:none}#dashboard-widgets h3 a{height:14px;line-height:14px}#dashboard_browser_nag{color:#fff}#dashboard_browser_nag .browser-icon{position:relative}.tablenav-pages .current-page{vertical-align:middle}#wpbody-content .postbox{border:1px solid #dfdfdf}#wpbody-content .postbox h3{margin-bottom:-1px}.major-publishing-actions,.wp-submenu,.wp-submenu li,#template,#template div,#editcat,#addcat{zoom:100%}.wp-menu-arrow{height:28px}.submitbox{margin-top:10px}#wpbody-content .quick-edit-row-post .inline-edit-col-left{width:39%}#wpbody-content .inline-edit-row-post .inline-edit-col-center{width:19%}#wpbody-content .quick-edit-row-page .inline-edit-col-left{width:49%}#wpbody-content .bulk-edit-row .inline-edit-col-left{width:29%}.inline-edit-row p.submit{zoom:100%}.inline-edit-row fieldset label span.title{display:block;float:left;width:5em}.inline-edit-row fieldset label span.input-text-wrap{margin-left:0;zoom:100%}#wpbody-content .inline-edit-row fieldset label span.input-text-wrap input{line-height:130%}#wpbody-content .inline-edit-row .input-text-wrap input{width:95%}#wpbody-content .inline-edit-row .input-text-wrap input.inline-edit-password-input{width:8em}#titlediv #title{width:98%}.button,input[type=reset],input[type=button],input[type=submit]{padding:0 8px;line-height:20px;height:auto}.button.button-large,input[type=reset].button-large,input[type=button].button-large,input[type=submit].button-large{padding:0 10px;line-height:24px;height:auto}.button.button-small,input[type=reset].button-small,input[type=button].button-small,input[type=submit].button-small{padding:0 6px;line-height:16px;height:auto}a.button{margin:1px;padding:1px 9px 2px}a.button.button-large{padding:1px 11px 2px}a.button.button-small{padding:1px 7px 2px}#screen-options-wrap{overflow:hidden}#the-comment-list .comment-item,#post-status-info,#wpwrap,#wrap,#postdivrich,#postdiv,#poststuff,.metabox-holder,#titlediv,#post-body,#editorcontainer,.tablenav,.widget-liquid-left,.widget-liquid-right,#widgets-left,.widgets-sortables,#dragHelper,.widget .widget-top,.widget-control-actions,.tagchecklist,#col-container,#col-left,#col-right,.fileedit-sub{display:block;zoom:100%}p.search-box{position:static;float:right;margin:-3px 0 4px}#widget-list .widget,.feature-filter .feature-group li{display:inline}.feature-filter .feature-group li input{vertical-align:middle}#editorcontainer #content{overflow:auto;margin:auto;width:98%}form#template div{width:100%}.wp-editor-container .quicktags-toolbar input{overflow:visible;padding:0 4px}#poststuff h2{font-size:1.6em}#poststuff .inside #parent_id,#poststuff .inside #page_template,.inline-edit-row #post_parent,.inline-edit-row select[name=page_template]{width:250px}#submitdiv input,#submitdiv select,#submitdiv a.button{position:relative}#bh{margin:7px 10px 0 0;float:right}div#dashboard-widgets{padding-right:1px}.tagchecklist span,.tagchecklist span a{display:inline-block;display:block}.tablenav .button-secondary,.nav .button-secondary{padding-top:2px;padding-bottom:2px}.tablenav select{font-size:13px;display:inline-block;vertical-align:top;margin-top:2px}.tablenav .actions select{width:155px}.subsubsub li{display:inline}a.post-state-format{text-indent:0;line-height:0;font-size:0}table.ie-fixed{table-layout:fixed}.widefat tr,.widefat th{margin-bottom:0;border-spacing:0}.widefat th input{margin:0 0 0 5px}.widefat thead .check-column,.widefat tfoot .check-column{padding-top:6px}.widefat tbody th.check-column,.media.widefat tbody th.check-column{padding:4px 0 0}.widefat{empty-cells:show;border-collapse:collapse}.tablenav a.button-secondary{display:inline-block;padding:2px 5px}.inactive-sidebar .widgets-sortables{padding-bottom:8px}#available-widgets .widget-holder{padding-bottom:65px}#widgets-left .inactive{padding-bottom:10px}.widget-liquid-right .widget,.inactive-sidebar .widget{position:relative}.inactive-sidebar .widget{display:block;float:left}#wpcontent .button-primary-disabled{color:#9FD0D5;background:#298CBA}#the-comment-list .unapproved tr,#the-comment-list .unapproved td{background-color:#ffffe0}.imgedit-submit{width:300px}#nav-menus-frame,#wpbody,.menu li{zoom:100%}#update-nav-menu #post-body{overflow:hidden}.menu li{min-width:100%}.menu li.sortable-placeholder{min-width:400px}.available-theme{display:inline}.available-theme ul{margin:0}.available-theme .action-links li{padding-right:7px;margin-right:7px}.about-wrap .three-col.about-updates .col-2{width:15%}.about-wrap .about-password-meter input{width:98%}.revisions-tickmarks,.revisions-tooltip{display:none!important}.revisions.pinned .revisions-controls{position:relative}* html .row-actions{visibility:visible}* html div.widget-liquid-left,* html div.widget-liquid-right{display:block;position:relative}* html #editorcontainer{padding:0}* html #poststuff h2{margin-left:0}* html .stuffbox,* html .stuffbox input,* html .stuffbox textarea{border:1px solid #DFDFDF}* html .feature-filter .feature-group li{width:145px}* html div.widget-liquid-left{width:99%}* html .widgets-sortables{height:50px}* html a#content_resize{right:-2px}* html .widget-title h4{width:205px}* html #removing-widget .in-widget-title{display:none}* html .media-item .pinkynail{height:32px;width:40px}* html .describe .field input.text,* html .describe .field textarea{width:440px}* html input{border:1px solid #dfdfdf}* html .edit-box{display:inline}* html .postbox-container .meta-box-sortables{height:300px}* html #wpbody-content #screen-options-link-wrap{display:inline-block;width:150px;text-align:center}* html #wpbody-content #contextual-help-link-wrap{display:inline-block;width:100px;text-align:center}* html #adminmenu{margin-left:-80px}* html .folded #adminmenu{margin-left:-22px}* html #wpcontent #adminmenu li.menu-top{display:inline;padding:0;margin:0}* html #wpfooter{margin:0}* html #adminmenu div.wp-menu-image{height:29px}
\ No newline at end of file
+#dashboard-widgets form .input-text-wrap input,#dashboard-widgets form .textarea-wrap textarea{width:99%}#dashboard-widgets form #title{width:98%}#wpbody-content #dashboard-widgets .postbox-container{width:49.5%}#wpbody-content #dashboard-widgets #postbox-container-2,#wpbody-content #dashboard-widgets #postbox-container-3,#wpbody-content #dashboard-widgets #postbox-container-4{float:right;width:50.5%}#dashboard-widgets #postbox-container-3 .empty-container,#dashboard-widgets #postbox-container-4 .empty-container{border:0 none;height:0;min-height:0}.wp-editor-wrap .wp-editor-container,.wp-editor-wrap .wp-editor-tabs,.wp-editor-wrap .wp-editor-tools,.wp-editor-wrap .wp-switch-editor{zoom:100%}.wp-editor-wrap .wp-editor-container textarea.wp-editor-area{width:97%}#post-body.columns-2 #postbox-container-1{padding-left:19px}.welcome-panel .wp-badge{position:absolute}.welcome-panel .welcome-panel-column:first-child{width:35%}.wp-fullscreen-title{width:97%}#wp_mce_fullscreen_ifr{background-color:#f9f9f9}#wp-fullscreen-tagline{color:#888;font-size:14px}#adminmenuback{left:0;background-image:none}#adminmenuwrap{position:static}#adminmenu{position:relative}#adminmenu,#adminmenu a{cursor:pointer}#adminmenu li.wp-menu-separator,#adminmenu li.wp-menu-separator-last{font-size:1px;line-height:1}#adminmenu a.menu-top{border-bottom:0 none;border-top:1px solid #ddd}#adminmenu .separator{font-size:1px;line-height:1px}#adminmenu .wp-submenu{left:110px}#adminmenu .wp-submenu ul{margin:0}.folded #wpcontent,.folded #wpfooter{margin-left:170px}.folded #adminmenu,.folded #adminmenu li.menu-top,.folded #adminmenuback,.folded #adminmenuwrap{width:150px}.folded #adminmenu .wp-submenu{border-top-color:transparent}.folded #adminmenu .wp-menu-name{display:block}.folded #adminmenu .opensub .wp-submenu,.folded #adminmenu .wp-submenu.sub-open{left:110px}.folded #adminmenu .wp-has-current-submenu .wp-submenu,.folded #adminmenu a.wp-has-current-submenu:focus+.wp-submenu{top:-1px;position:relative}.folded #adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head{background-color:transparent}#adminmenu .wp-submenu .wp-submenu-head{border-top-color:#ddd}.folded #adminmenu .wp-submenu ul{margin-left:5px}#adminmenu li.menu-top{margin-bottom:-2px}#adminmenu .wp-menu-arrow{display:none!important}.js.folded #adminmenu li.menu-top{display:block;zoom:100%}ul#adminmenu{z-index:99}#adminmenu li.menu-top a.menu-top{min-width:auto;width:auto}#wpcontent #adminmenu li.wp-has-current-submenu a.wp-has-submenu{font-style:normal}#wpcontent #adminmenu .wp-submenu li{padding:0}#adminmenu li.wp-has-current-submenu .wp-submenu{left:-40px}#adminmenu .wp-menu-image{display:none!important}#adminmenu a.menu-top .wp-menu-name{padding-left:8px}#collapse-menu{line-height:23px}#wpadminbar .ab-comments-icon{padding-top:7px}.theme-browser .theme{width:30%;margin:0 3% 4% 0;cursor:auto}.theme-browser .theme:focus,.theme-browser .theme:hover{cursor:auto}.theme-browser .theme .theme-screenshot{height:180px}.theme-browser .theme .theme-actions{position:static;background-color:#e8e8e8}.theme-browser .theme .more-details{display:none}.plugins td,.plugins th,table.fixed td,table.fixed th{border-top:1px solid #ddd}#wpbody-content input.button,#wpbody-content input.button-primary,#wpbody-content input.button-secondary{overflow:visible}#dashboard-widgets h3 a{height:14px;line-height:14px}#dashboard_browser_nag{color:#fff}#dashboard_browser_nag .browser-icon{position:relative}.tablenav-pages .current-page{vertical-align:middle}#wpbody-content .postbox{border:1px solid #dfdfdf}#wpbody-content .postbox h3{margin-bottom:-1px}#addcat,#editcat,#template,#template div,.major-publishing-actions,.wp-submenu,.wp-submenu li{zoom:100%}.wp-menu-arrow{height:28px}.submitbox{margin-top:10px}#wpbody-content .quick-edit-row-post .inline-edit-col-left{width:39%}#wpbody-content .inline-edit-row-post .inline-edit-col-center{width:19%}#wpbody-content .quick-edit-row-page .inline-edit-col-left{width:49%}#wpbody-content .bulk-edit-row .inline-edit-col-left{width:29%}.inline-edit-row p.submit{zoom:100%}.inline-edit-row fieldset label span.title{display:block;float:left;width:5em}.inline-edit-row fieldset label span.input-text-wrap{margin-left:0;zoom:100%}#wpbody-content .inline-edit-row fieldset label span.input-text-wrap input{line-height:130%}#wpbody-content .inline-edit-row .input-text-wrap input{width:95%}#wpbody-content .inline-edit-row .input-text-wrap input.inline-edit-password-input{width:8em}#titlediv #title{width:98%}.button,input[type=button],input[type=reset],input[type=submit]{padding:0 8px;line-height:20px;height:auto}.button.button-large,input[type=button].button-large,input[type=reset].button-large,input[type=submit].button-large{padding:0 10px;line-height:24px;height:auto}.button.button-small,input[type=button].button-small,input[type=reset].button-small,input[type=submit].button-small{padding:0 6px;line-height:16px;height:auto}a.button{margin:1px;padding:1px 9px 2px}a.button.button-large{padding:1px 11px 2px}a.button.button-small{padding:1px 7px 2px}#screen-options-wrap{overflow:hidden}#col-container,#col-left,#col-right,#dragHelper,#editorcontainer,#post-body,#post-status-info,#postdiv,#postdivrich,#poststuff,#the-comment-list .comment-item,#titlediv,#widgets-left,#wpwrap,#wrap,.fileedit-sub,.metabox-holder,.tablenav,.tagchecklist,.widget .widget-top,.widget-control-actions,.widget-liquid-left,.widget-liquid-right,.widgets-sortables{display:block;zoom:100%}p.search-box{position:static;float:right;margin:-3px 0 4px}#widget-list .widget,.feature-filter .feature-group li{display:inline}.feature-filter .feature-group li input{vertical-align:middle}#editorcontainer #content{overflow:auto;margin:auto;width:98%}form#template div{width:100%}.wp-editor-container .quicktags-toolbar input{overflow:visible;padding:0 4px}#poststuff h2{font-size:1.6em}#poststuff .inside #page_template,#poststuff .inside #parent_id,.inline-edit-row #post_parent,.inline-edit-row select[name=page_template]{width:250px}#submitdiv a.button,#submitdiv input,#submitdiv select{position:relative}#bh{margin:7px 10px 0 0;float:right}div#dashboard-widgets{padding-right:1px}.tagchecklist span,.tagchecklist span a{display:inline-block;display:block}.nav .button-secondary,.tablenav .button-secondary{padding-top:2px;padding-bottom:2px}.tablenav select{font-size:13px;display:inline-block;vertical-align:top;margin-top:2px}.tablenav .actions select{width:155px}.subsubsub li{display:inline}a.post-state-format{text-indent:0;line-height:0;font-size:0}table.ie-fixed{table-layout:fixed}.widefat th,.widefat tr{margin-bottom:0;border-spacing:0}.widefat th input{margin:0 0 0 5px}.widefat tfoot .check-column,.widefat thead .check-column{padding-top:6px}.media.widefat tbody th.check-column,.widefat tbody th.check-column{padding:4px 0 0}.widefat{empty-cells:show;border-collapse:collapse}.tablenav a.button-secondary{display:inline-block;padding:2px 5px}.inactive-sidebar .widgets-sortables{padding-bottom:8px}#available-widgets .widget-holder{padding-bottom:65px}#widgets-left .inactive{padding-bottom:10px}.inactive-sidebar .widget,.widget-liquid-right .widget{position:relative}.inactive-sidebar .widget{display:block;float:left}#wpcontent .button-primary-disabled{color:#9FD0D5;background:#298CBA}#the-comment-list .unapproved td,#the-comment-list .unapproved tr{background-color:#ffffe0}.imgedit-submit{width:300px}#nav-menus-frame,#wpbody,.menu li{zoom:100%}#update-nav-menu #post-body{overflow:hidden}.menu li{min-width:100%}.menu li.sortable-placeholder{min-width:400px}.available-theme{display:inline}.available-theme ul{margin:0}.available-theme .action-links li{padding-right:7px;margin-right:7px}.about-wrap .three-col.about-updates .col-2{width:15%}.about-wrap .about-password-meter input{width:98%}.revisions-tickmarks,.revisions-tooltip{display:none!important}.revisions.pinned .revisions-controls{position:relative}.login form .input,input[type=password]{font-family:sans-serif}.mce-btn i.mce-i-aligncenter,.mce-btn i.mce-i-alignjustify,.mce-btn i.mce-i-alignleft,.mce-btn i.mce-i-alignright,.mce-btn i.mce-i-blockquote,.mce-btn i.mce-i-bold,.mce-btn i.mce-i-bullist,.mce-btn i.mce-i-charmap,.mce-btn i.mce-i-forecolor,.mce-btn i.mce-i-fullscreen,.mce-btn i.mce-i-help,.mce-btn i.mce-i-hr,.mce-btn i.mce-i-indent,.mce-btn i.mce-i-italic,.mce-btn i.mce-i-link,.mce-btn i.mce-i-ltr,.mce-btn i.mce-i-numlist,.mce-btn i.mce-i-outdent,.mce-btn i.mce-i-pastetext,.mce-btn i.mce-i-pasteword,.mce-btn i.mce-i-redo,.mce-btn i.mce-i-removeformat,.mce-btn i.mce-i-spellchecker,.mce-btn i.mce-i-strikethrough,.mce-btn i.mce-i-underline,.mce-btn i.mce-i-undo,.mce-btn i.mce-i-unlink,.mce-btn i.mce-i-wp-media-library,.mce-btn i.mce-i-wp_adv,.mce-btn i.mce-i-wp_fullscreen,.mce-btn i.mce-i-wp_help,.mce-btn i.mce-i-wp_more,.mce-btn i.mce-i-wp_page,.mce-close{font-family:tinymce,Arial;font-style:normal;font-weight:400;font-variant:normal;font-size:16px;margin-left:0;padding-right:0}.mce-btn i.mce-i-wp_fullscreen,.qt-fullscreen{-ie7-icon:'\e023'}.mce-btn i.mce-i-wp_more,.mce-btn i.mce-i-wp_page{-ie7-icon:'\e027'}.mce-btn i.mce-i-wp_adv{background-color:#aaa}.mce-btn i.mce-i-help,.mce-btn i.mce-i-wp_help{-ie7-icon:'\e016'}* html .row-actions{visibility:visible}* html div.widget-liquid-left,* html div.widget-liquid-right{display:block;position:relative}* html #editorcontainer{padding:0}* html #poststuff h2{margin-left:0}* html .stuffbox,* html .stuffbox input,* html .stuffbox textarea{border:1px solid #DFDFDF}* html .feature-filter .feature-group li{width:145px}* html div.widget-liquid-left{width:99%}* html .widgets-sortables{height:50px}* html a#content_resize{right:-2px}* html .widget-title h4{width:205px}* html #removing-widget .in-widget-title{display:none}* html .media-item .pinkynail{height:32px;width:40px}* html .describe .field input.text,* html .describe .field textarea{width:440px}* html input{border:1px solid #dfdfdf}* html .edit-box{display:inline}* html .postbox-container .meta-box-sortables{height:300px}* html #wpbody-content #screen-options-link-wrap{display:inline-block;width:150px;text-align:center}* html #wpbody-content #contextual-help-link-wrap{display:inline-block;width:100px;text-align:center}* html #adminmenu{margin-left:-80px}* html .folded #adminmenu{margin-left:-22px}* html #wpcontent #adminmenu li.menu-top{display:inline;padding:0;margin:0}* html #wpfooter{margin:0}* html #adminmenu div.wp-menu-image{height:29px}
\ No newline at end of file
diff --git a/sources/wp-admin/css/install-rtl.css b/sources/wp-admin/css/install-rtl.css
new file mode 100644
index 0000000..b73329e
--- /dev/null
+++ b/sources/wp-admin/css/install-rtl.css
@@ -0,0 +1,313 @@
+html {
+ background: #f1f1f1;
+ margin: 0 20px;
+}
+
+body {
+ background: #fff;
+ color: #444;
+ font-family: "Open Sans", sans-serif;
+ margin: 140px auto 25px;
+ padding: 20px 20px 10px 20px;
+ max-width: 700px;
+ -webkit-font-smoothing: subpixel-antialiased;
+ -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.13);
+ box-shadow: 0 1px 3px rgba(0,0,0,0.13);
+}
+
+a {
+ color: #0074a2;
+ text-decoration: none;
+}
+
+a:hover {
+ color: #2ea2cc;
+}
+
+h1 {
+ border-bottom: 1px solid #dedede;
+ clear: both;
+ color: #666;
+ font-size: 24px;
+ margin: 30px 0;
+ padding: 0;
+ padding-bottom: 7px;
+ font-weight: normal;
+}
+
+h2 {
+ font-size: 16px;
+}
+
+p, li, dd, dt {
+ padding-bottom: 2px;
+ font-size: 14px;
+ line-height: 1.5;
+}
+
+code, .code {
+ font-family: Consolas, Monaco, monospace;
+}
+
+ul, ol, dl {
+ padding: 5px 22px 5px 5px;
+}
+
+a img {
+ border:0
+}
+abbr {
+ border: 0;
+ font-variant: normal;
+}
+#logo {
+ margin: 6px 0 14px 0;
+ border-bottom: none;
+ text-align:center
+}
+#logo a {
+ background-image: url(../images/w-logo-blue.png?ver=20131202);
+ background-image: none, url(../images/wordpress-logo.svg?ver=20131107);
+ -webkit-background-size: 80px 80px;
+ background-size: 80px 80px;
+ background-position: center top;
+ background-repeat: no-repeat;
+ color: #999;
+ height: 80px;
+ font-size: 20px;
+ font-weight: normal;
+ line-height: 1.3em;
+ margin: -130px auto 25px;
+ padding: 0;
+ text-decoration: none;
+ width: 80px;
+ text-indent: -9999px;
+ outline: none;
+ overflow: hidden;
+ display: block;
+}
+.step {
+ margin: 20px 0 15px;
+}
+.step, th {
+ text-align: right;
+ padding: 0;
+}
+.step .button-large {
+ font-size: 14px;
+}
+textarea {
+ border: 1px solid #dfdfdf;
+ font-family: "Open Sans", sans-serif;
+ width: 100%;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}
+
+.form-table {
+ border-collapse: collapse;
+ margin-top: 1em;
+ width: 100%;
+}
+
+.form-table td {
+ margin-bottom: 9px;
+ padding: 10px 0 10px 20px;
+ border-bottom: 8px solid #fff;
+ font-size: 14px;
+ vertical-align: top
+}
+
+.form-table th {
+ font-size: 14px;
+ text-align: right;
+ padding: 16px 0 10px 20px;
+ width: 140px;
+ vertical-align: top;
+}
+
+.form-table code {
+ line-height: 18px;
+ font-size: 14px;
+}
+
+.form-table p {
+ margin: 4px 0 0 0;
+ font-size: 11px;
+}
+
+.form-table input {
+ line-height: 20px;
+ font-size: 15px;
+ padding: 3px 5px;
+ border: 1px solid #ddd;
+ -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.07);
+ box-shadow: inset 0 1px 2px rgba(0,0,0,0.07);
+}
+
+input,
+submit {
+ font-family: "Open Sans", sans-serif;
+}
+
+.form-table input[type=text],
+.form-table input[type=password] {
+ width: 206px;
+}
+
+.form-table th p {
+ font-weight: normal;
+}
+
+.form-table.install-success td {
+ vertical-align: middle;
+ padding: 16px 0 10px 20px;
+}
+
+.form-table.install-success td p {
+ margin: 0;
+ font-size: 14px;
+}
+
+.form-table.install-success td code {
+ margin: 0;
+ font-size: 18px;
+}
+
+#error-page {
+ margin-top: 50px;
+}
+
+#error-page p {
+ font-size: 14px;
+ line-height: 18px;
+ margin: 25px 0 20px;
+}
+
+#error-page code, .code {
+ font-family: Consolas, Monaco, monospace;
+}
+
+#pass-strength-result {
+ background-color: #eee;
+ border-color: #ddd !important;
+ border-style: solid;
+ border-width: 1px;
+ margin: 5px 0 5px 5px;
+ padding: 5px;
+ text-align: center;
+ width: 200px;
+ display: none;
+}
+
+#pass-strength-result.bad {
+ background-color: #ffb78c;
+ border-color: #ff853c !important;
+}
+
+#pass-strength-result.good {
+ background-color: #ffec8b;
+ border-color: #ffcc00 !important;
+}
+
+#pass-strength-result.short {
+ background-color: #ffa0a0;
+ border-color: #f04040 !important;
+}
+
+#pass-strength-result.strong {
+ background-color: #c3ff88;
+ border-color: #8dff1c !important;
+}
+
+.message {
+ border: 1px solid #c00;
+ padding: 0.5em 0.7em;
+ margin: 5px 0 15px;
+ background-color: #ffebe8;
+}
+
+/* @noflip */
+#dbname,
+#uname,
+#pwd,
+#dbhost,
+#prefix,
+#user_login,
+#admin_email,
+#pass1,
+#pass2 {
+ direction: ltr;
+}
+
+
+/* localization */
+body.rtl,
+.rtl textarea,
+.rtl input,
+.rtl submit {
+ font-family: Tahoma, sans-serif;
+}
+
+:lang(he-il) body.rtl,
+:lang(he-il) .rtl textarea,
+:lang(he-il) .rtl input,
+:lang(he-il) .rtl submit {
+ font-family: Arial, sans-serif;
+}
+
+@media only screen and (max-width: 799px) {
+ body {
+ margin-top: 115px;
+ }
+ #logo a {
+ margin: -125px auto 30px;
+ }
+}
+
+@media screen and ( max-width: 782px ) {
+
+ .form-table {
+ margin-top: 0;
+ }
+
+ .form-table th,
+ .form-table td {
+ display: block;
+ width: auto;
+ vertical-align: middle;
+ }
+
+ .form-table th {
+ padding: 20px 0 0;
+ }
+
+ .form-table td {
+ padding: 5px 0;
+ border: 0;
+ margin: 0;
+ }
+
+ textarea,
+ input {
+ font-size: 16px;
+ }
+
+ .form-table td input[type="text"],
+ .form-table td input[type="password"],
+ .form-table td select,
+ .form-table td textarea,
+ .form-table span.description {
+ width: 100%;
+ font-size: 16px;
+ line-height: 1.5;
+ padding: 7px 10px;
+ display: block;
+ max-width: none;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ }
+
+}
diff --git a/sources/wp-admin/css/install-rtl.min.css b/sources/wp-admin/css/install-rtl.min.css
new file mode 100644
index 0000000..6b112f7
--- /dev/null
+++ b/sources/wp-admin/css/install-rtl.min.css
@@ -0,0 +1 @@
+html{background:#f1f1f1;margin:0 20px}body{background:#fff;color:#444;font-family:"Open Sans",sans-serif;margin:140px auto 25px;padding:20px 20px 10px;max-width:700px;-webkit-font-smoothing:subpixel-antialiased;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.13);box-shadow:0 1px 3px rgba(0,0,0,.13)}a{color:#0074a2;text-decoration:none}a:hover{color:#2ea2cc}h1{border-bottom:1px solid #dedede;clear:both;color:#666;font-size:24px;margin:30px 0;padding:0;padding-bottom:7px;font-weight:400}h2{font-size:16px}dd,dt,li,p{padding-bottom:2px;font-size:14px;line-height:1.5}.code,code{font-family:Consolas,Monaco,monospace}dl,ol,ul{padding:5px 22px 5px 5px}a img{border:0}abbr{border:0;font-variant:normal}#logo{margin:6px 0 14px;border-bottom:0;text-align:center}#logo a{background-image:url(../images/w-logo-blue.png?ver=20131202);background-image:none,url(../images/wordpress-logo.svg?ver=20131107);-webkit-background-size:80px 80px;background-size:80px 80px;background-position:center top;background-repeat:no-repeat;color:#999;height:80px;font-size:20px;font-weight:400;line-height:1.3em;margin:-130px auto 25px;padding:0;text-decoration:none;width:80px;text-indent:-9999px;outline:0;overflow:hidden;display:block}.step{margin:20px 0 15px}.step,th{text-align:right;padding:0}.step .button-large{font-size:14px}textarea{border:1px solid #dfdfdf;font-family:"Open Sans",sans-serif;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.form-table{border-collapse:collapse;margin-top:1em;width:100%}.form-table td{margin-bottom:9px;padding:10px 0 10px 20px;border-bottom:8px solid #fff;font-size:14px;vertical-align:top}.form-table th{font-size:14px;text-align:right;padding:16px 0 10px 20px;width:140px;vertical-align:top}.form-table code{line-height:18px;font-size:14px}.form-table p{margin:4px 0 0;font-size:11px}.form-table input{line-height:20px;font-size:15px;padding:3px 5px;border:1px solid #ddd;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.07);box-shadow:inset 0 1px 2px rgba(0,0,0,.07)}input,submit{font-family:"Open Sans",sans-serif}.form-table input[type=password],.form-table input[type=text]{width:206px}.form-table th p{font-weight:400}.form-table.install-success td{vertical-align:middle;padding:16px 0 10px 20px}.form-table.install-success td p{margin:0;font-size:14px}.form-table.install-success td code{margin:0;font-size:18px}#error-page{margin-top:50px}#error-page p{font-size:14px;line-height:18px;margin:25px 0 20px}#error-page code,.code{font-family:Consolas,Monaco,monospace}#pass-strength-result{background-color:#eee;border-color:#ddd!important;border-style:solid;border-width:1px;margin:5px 0 5px 5px;padding:5px;text-align:center;width:200px;display:none}#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}.message{border:1px solid #c00;padding:.5em .7em;margin:5px 0 15px;background-color:#ffebe8}#admin_email,#dbhost,#dbname,#pass1,#pass2,#prefix,#pwd,#uname,#user_login{direction:ltr}.rtl input,.rtl submit,.rtl textarea,body.rtl{font-family:Tahoma,sans-serif}:lang(he-il) .rtl input,:lang(he-il) .rtl submit,:lang(he-il) .rtl textarea,:lang(he-il) body.rtl{font-family:Arial,sans-serif}@media only screen and (max-width:799px){body{margin-top:115px}#logo a{margin:-125px auto 30px}}@media screen and (max-width:782px){.form-table{margin-top:0}.form-table td,.form-table th{display:block;width:auto;vertical-align:middle}.form-table th{padding:20px 0 0}.form-table td{padding:5px 0;border:0;margin:0}input,textarea{font-size:16px}.form-table span.description,.form-table td input[type=password],.form-table td input[type=text],.form-table td select,.form-table td textarea{width:100%;font-size:16px;line-height:1.5;padding:7px 10px;display:block;max-width:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}}
\ No newline at end of file
diff --git a/sources/wp-admin/css/install.css b/sources/wp-admin/css/install.css
index 03c0e98..a2e19a1 100644
--- a/sources/wp-admin/css/install.css
+++ b/sources/wp-admin/css/install.css
@@ -1,36 +1,38 @@
html {
- background: #f9f9f9;
+ background: #f1f1f1;
+ margin: 0 20px;
}
body {
background: #fff;
- color: #333;
- font-family: sans-serif;
- margin: 2em auto;
- padding: 1em 2em;
- -webkit-border-radius: 3px;
- border-radius: 3px;
- border: 1px solid #dfdfdf;
+ color: #444;
+ font-family: "Open Sans", sans-serif;
+ margin: 140px auto 25px;
+ padding: 20px 20px 10px 20px;
max-width: 700px;
+ -webkit-font-smoothing: subpixel-antialiased;
+ -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.13);
+ box-shadow: 0 1px 3px rgba(0,0,0,0.13);
}
a {
- color: #21759b;
+ color: #0074a2;
text-decoration: none;
}
a:hover {
- color: #d54e21;
+ color: #2ea2cc;
}
h1 {
- border-bottom: 1px solid #dadada;
+ border-bottom: 1px solid #dedede;
clear: both;
color: #666;
- font: 24px Georgia, "Times New Roman", Times, serif;
- margin: 30px 0 0 0;
+ font-size: 24px;
+ margin: 30px 0;
padding: 0;
padding-bottom: 7px;
+ font-weight: normal;
}
h2 {
@@ -44,7 +46,7 @@ p, li, dd, dt {
}
code, .code {
- font-size: 14px;
+ font-family: Consolas, Monaco, monospace;
}
ul, ol, dl {
@@ -64,25 +66,26 @@ abbr {
text-align:center
}
#logo a {
- background-image: url('../images/wordpress-logo.png?ver=20120216');
- background-size: 274px 63px;
- background-position: top center;
+ background-image: url(../images/w-logo-blue.png?ver=20131202);
+ background-image: none, url(../images/wordpress-logo.svg?ver=20131107);
+ -webkit-background-size: 80px 80px;
+ background-size: 80px 80px;
+ background-position: center top;
background-repeat: no-repeat;
- height: 67px;
+ color: #999;
+ height: 80px;
+ font-size: 20px;
+ font-weight: normal;
+ line-height: 1.3em;
+ margin: -130px auto 25px;
+ padding: 0;
+ text-decoration: none;
+ width: 80px;
text-indent: -9999px;
outline: none;
overflow: hidden;
display: block;
}
-@media print,
- (-o-min-device-pixel-ratio: 5/4),
- (-webkit-min-device-pixel-ratio: 1.25),
- (min-resolution: 120dpi) {
- #logo a {
- background-image: url('../images/wordpress-logo-2x.png?ver=20120412');
- background-size: 274px 63px;
- }
-}
.step {
margin: 20px 0 15px;
}
@@ -95,10 +98,11 @@ abbr {
}
textarea {
border: 1px solid #dfdfdf;
- -webkit-border-radius: 3px;
- border-radius: 3px;
- font-family: sans-serif;
- width: 695px;
+ font-family: "Open Sans", sans-serif;
+ width: 100%;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
}
.form-table {
@@ -119,7 +123,6 @@ textarea {
font-size: 14px;
text-align: left;
padding: 16px 20px 10px 0;
- border-bottom: 8px solid #fff;
width: 140px;
vertical-align: top;
}
@@ -137,11 +140,15 @@ textarea {
.form-table input {
line-height: 20px;
font-size: 15px;
- padding: 2px;
- border: 1px #dfdfdf solid;
- -webkit-border-radius: 3px;
- border-radius: 3px;
- font-family: sans-serif;
+ padding: 3px 5px;
+ border: 1px solid #ddd;
+ -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.07);
+ box-shadow: inset 0 1px 2px rgba(0,0,0,0.07);
+}
+
+input,
+submit {
+ font-family: "Open Sans", sans-serif;
}
.form-table input[type=text],
@@ -216,48 +223,91 @@ textarea {
.message {
border: 1px solid #c00;
- -webkit-border-radius: 3px;
- border-radius: 3px;
padding: 0.5em 0.7em;
margin: 5px 0 15px;
background-color: #ffebe8;
}
-/* install-rtl */
-body.rtl {
- font-family: Tahoma, arial;
-}
-
-.rtl h1 {
- font-family: arial;
- margin: 5px -4px 0 0;
-}
-
-.rtl ul,
-.rtl ol {
- padding: 5px 22px 5px 5px;
-}
-
-.rtl .step,
-.rtl th,
-.rtl .form-table th {
- text-align: right;
-}
-
-.rtl .submit input,
-.rtl .button,
-.rtl .button-secondary {
- margin-right: 0;
-}
-
-.rtl #dbname,
-.rtl #uname,
-.rtl #pwd,
-.rtl #dbhost,
-.rtl #prefix,
-.rtl #user_login,
-.rtl #admin_email,
-.rtl #pass1,
-.rtl #pass2 {
+/* @noflip */
+#dbname,
+#uname,
+#pwd,
+#dbhost,
+#prefix,
+#user_login,
+#admin_email,
+#pass1,
+#pass2 {
direction: ltr;
}
+
+
+/* localization */
+body.rtl,
+.rtl textarea,
+.rtl input,
+.rtl submit {
+ font-family: Tahoma, sans-serif;
+}
+
+:lang(he-il) body.rtl,
+:lang(he-il) .rtl textarea,
+:lang(he-il) .rtl input,
+:lang(he-il) .rtl submit {
+ font-family: Arial, sans-serif;
+}
+
+@media only screen and (max-width: 799px) {
+ body {
+ margin-top: 115px;
+ }
+ #logo a {
+ margin: -125px auto 30px;
+ }
+}
+
+@media screen and ( max-width: 782px ) {
+
+ .form-table {
+ margin-top: 0;
+ }
+
+ .form-table th,
+ .form-table td {
+ display: block;
+ width: auto;
+ vertical-align: middle;
+ }
+
+ .form-table th {
+ padding: 20px 0 0;
+ }
+
+ .form-table td {
+ padding: 5px 0;
+ border: 0;
+ margin: 0;
+ }
+
+ textarea,
+ input {
+ font-size: 16px;
+ }
+
+ .form-table td input[type="text"],
+ .form-table td input[type="password"],
+ .form-table td select,
+ .form-table td textarea,
+ .form-table span.description {
+ width: 100%;
+ font-size: 16px;
+ line-height: 1.5;
+ padding: 7px 10px;
+ display: block;
+ max-width: none;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ }
+
+}
diff --git a/sources/wp-admin/css/install.min.css b/sources/wp-admin/css/install.min.css
index 6c6dac1..1a712e8 100644
--- a/sources/wp-admin/css/install.min.css
+++ b/sources/wp-admin/css/install.min.css
@@ -1 +1 @@
-html{background:#f9f9f9}body{background:#fff;color:#333;font-family:sans-serif;margin:2em auto;padding:1em 2em;-webkit-border-radius:3px;border-radius:3px;border:1px solid #dfdfdf;max-width:700px}a{color:#21759b;text-decoration:none}a:hover{color:#d54e21}h1{border-bottom:1px solid #dadada;clear:both;color:#666;font:24px Georgia,"Times New Roman",Times,serif;margin:30px 0 0;padding:0;padding-bottom:7px}h2{font-size:16px}p,li,dd,dt{padding-bottom:2px;font-size:14px;line-height:1.5}code,.code{font-size:14px}ul,ol,dl{padding:5px 5px 5px 22px}a img{border:0}abbr{border:0;font-variant:normal}#logo{margin:6px 0 14px;border-bottom:0;text-align:center}#logo a{background-image:url(../images/wordpress-logo.png?ver=20120216);background-size:274px 63px;background-position:top center;background-repeat:no-repeat;height:67px;text-indent:-9999px;outline:0;overflow:hidden;display:block}@media print,(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){#logo a{background-image:url(../images/wordpress-logo-2x.png?ver=20120412);background-size:274px 63px}}.step{margin:20px 0 15px}.step,th{text-align:left;padding:0}.step .button-large{font-size:14px}textarea{border:1px solid #dfdfdf;-webkit-border-radius:3px;border-radius:3px;font-family:sans-serif;width:695px}.form-table{border-collapse:collapse;margin-top:1em;width:100%}.form-table td{margin-bottom:9px;padding:10px 20px 10px 0;border-bottom:8px solid #fff;font-size:14px;vertical-align:top}.form-table th{font-size:14px;text-align:left;padding:16px 20px 10px 0;border-bottom:8px solid #fff;width:140px;vertical-align:top}.form-table code{line-height:18px;font-size:14px}.form-table p{margin:4px 0 0;font-size:11px}.form-table input{line-height:20px;font-size:15px;padding:2px;border:1px #dfdfdf solid;-webkit-border-radius:3px;border-radius:3px;font-family:sans-serif}.form-table input[type=text],.form-table input[type=password]{width:206px}.form-table th p{font-weight:400}.form-table.install-success td{vertical-align:middle;padding:16px 20px 10px 0}.form-table.install-success td p{margin:0;font-size:14px}.form-table.install-success td code{margin:0;font-size:18px}#error-page{margin-top:50px}#error-page p{font-size:14px;line-height:18px;margin:25px 0 20px}#error-page code,.code{font-family:Consolas,Monaco,monospace}#pass-strength-result{background-color:#eee;border-color:#ddd!important;border-style:solid;border-width:1px;margin:5px 5px 5px 0;padding:5px;text-align:center;width:200px;display:none}#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}.message{border:1px solid #c00;-webkit-border-radius:3px;border-radius:3px;padding:.5em .7em;margin:5px 0 15px;background-color:#ffebe8}body.rtl{font-family:Tahoma,arial}.rtl h1{font-family:arial;margin:5px -4px 0 0}.rtl ul,.rtl ol{padding:5px 22px 5px 5px}.rtl .step,.rtl th,.rtl .form-table th{text-align:right}.rtl .submit input,.rtl .button,.rtl .button-secondary{margin-right:0}.rtl #dbname,.rtl #uname,.rtl #pwd,.rtl #dbhost,.rtl #prefix,.rtl #user_login,.rtl #admin_email,.rtl #pass1,.rtl #pass2{direction:ltr}
\ No newline at end of file
+html{background:#f1f1f1;margin:0 20px}body{background:#fff;color:#444;font-family:"Open Sans",sans-serif;margin:140px auto 25px;padding:20px 20px 10px;max-width:700px;-webkit-font-smoothing:subpixel-antialiased;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.13);box-shadow:0 1px 3px rgba(0,0,0,.13)}a{color:#0074a2;text-decoration:none}a:hover{color:#2ea2cc}h1{border-bottom:1px solid #dedede;clear:both;color:#666;font-size:24px;margin:30px 0;padding:0;padding-bottom:7px;font-weight:400}h2{font-size:16px}dd,dt,li,p{padding-bottom:2px;font-size:14px;line-height:1.5}.code,code{font-family:Consolas,Monaco,monospace}dl,ol,ul{padding:5px 5px 5px 22px}a img{border:0}abbr{border:0;font-variant:normal}#logo{margin:6px 0 14px;border-bottom:0;text-align:center}#logo a{background-image:url(../images/w-logo-blue.png?ver=20131202);background-image:none,url(../images/wordpress-logo.svg?ver=20131107);-webkit-background-size:80px 80px;background-size:80px 80px;background-position:center top;background-repeat:no-repeat;color:#999;height:80px;font-size:20px;font-weight:400;line-height:1.3em;margin:-130px auto 25px;padding:0;text-decoration:none;width:80px;text-indent:-9999px;outline:0;overflow:hidden;display:block}.step{margin:20px 0 15px}.step,th{text-align:left;padding:0}.step .button-large{font-size:14px}textarea{border:1px solid #dfdfdf;font-family:"Open Sans",sans-serif;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.form-table{border-collapse:collapse;margin-top:1em;width:100%}.form-table td{margin-bottom:9px;padding:10px 20px 10px 0;border-bottom:8px solid #fff;font-size:14px;vertical-align:top}.form-table th{font-size:14px;text-align:left;padding:16px 20px 10px 0;width:140px;vertical-align:top}.form-table code{line-height:18px;font-size:14px}.form-table p{margin:4px 0 0;font-size:11px}.form-table input{line-height:20px;font-size:15px;padding:3px 5px;border:1px solid #ddd;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.07);box-shadow:inset 0 1px 2px rgba(0,0,0,.07)}input,submit{font-family:"Open Sans",sans-serif}.form-table input[type=password],.form-table input[type=text]{width:206px}.form-table th p{font-weight:400}.form-table.install-success td{vertical-align:middle;padding:16px 20px 10px 0}.form-table.install-success td p{margin:0;font-size:14px}.form-table.install-success td code{margin:0;font-size:18px}#error-page{margin-top:50px}#error-page p{font-size:14px;line-height:18px;margin:25px 0 20px}#error-page code,.code{font-family:Consolas,Monaco,monospace}#pass-strength-result{background-color:#eee;border-color:#ddd!important;border-style:solid;border-width:1px;margin:5px 5px 5px 0;padding:5px;text-align:center;width:200px;display:none}#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}.message{border:1px solid #c00;padding:.5em .7em;margin:5px 0 15px;background-color:#ffebe8}#admin_email,#dbhost,#dbname,#pass1,#pass2,#prefix,#pwd,#uname,#user_login{direction:ltr}.rtl input,.rtl submit,.rtl textarea,body.rtl{font-family:Tahoma,sans-serif}:lang(he-il) .rtl input,:lang(he-il) .rtl submit,:lang(he-il) .rtl textarea,:lang(he-il) body.rtl{font-family:Arial,sans-serif}@media only screen and (max-width:799px){body{margin-top:115px}#logo a{margin:-125px auto 30px}}@media screen and (max-width:782px){.form-table{margin-top:0}.form-table td,.form-table th{display:block;width:auto;vertical-align:middle}.form-table th{padding:20px 0 0}.form-table td{padding:5px 0;border:0;margin:0}input,textarea{font-size:16px}.form-table span.description,.form-table td input[type=password],.form-table td input[type=text],.form-table td select,.form-table td textarea{width:100%;font-size:16px;line-height:1.5;padding:7px 10px;display:block;max-width:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}}
\ No newline at end of file
diff --git a/sources/wp-admin/css/l10n-rtl.css b/sources/wp-admin/css/l10n-rtl.css
new file mode 100644
index 0000000..5590f1d
--- /dev/null
+++ b/sources/wp-admin/css/l10n-rtl.css
@@ -0,0 +1,100 @@
+/*------------------------------------------------------------------------------
+ 27.0 - Localization
+------------------------------------------------------------------------------*/
+
+/* RTL except Hebrew (see below): Tahoma as the first font; */
+body.rtl,
+body.rtl .press-this a.wp-switch-editor {
+ font-family: Tahoma, Arial, sans-serif;
+}
+
+
+/* he_IL: Remove Tahoma from the font stack. Arial is best for Hebrew. */
+body.locale-he-il,
+body.locale-he-il .press-this a.wp-switch-editor {
+ font-family: Arial, sans-serif;
+}
+
+/* he_IL: Have
be bold rather than italic. */
+.locale-he-il em {
+ font-style: normal;
+ font-weight: bold;
+}
+
+/* zh_CN: Remove italic properties. */
+.locale-zh-cn .howto,
+.locale-zh-cn .tablenav .displaying-num,
+.locale-zh-cn .js .input-with-default-title,
+.locale-zh-cn .link-to-original,
+.locale-zh-cn .inline-edit-row fieldset span.title,
+.locale-zh-cn .inline-edit-row fieldset span.checkbox-title,
+.locale-zh-cn #utc-time,
+.locale-zh-cn #local-time,
+.locale-zh-cn p.install-help,
+.locale-zh-cn p.help,
+.locale-zh-cn p.description,
+.locale-zh-cn span.description,
+.locale-zh-cn .form-wrap p {
+ font-style: normal;
+}
+
+/* zh_CN: Enlarge dashboard widget 'Configure' link */
+.locale-zh-cn .hdnle a { font-size: 12px; }
+
+/* zn_CH: Enlarge font size, set font-size: normal */
+.locale-zh-cn form.upgrade .hint { font-style: normal; font-size: 100%; }
+
+/* Zn_CH: Distraction free writing.
+ * More beautiful font for "Just write."
+ * Larger text for HTML/Visual mode.
+ */
+.locale-zh-cn #wp-fullscreen-tagline { font-family: KaiTi, "楷体", sans-serif; }
+.locale-zh-cn #wp-fullscreen-modes a { font-size: 12px; }
+
+/* zh_CN: Enlarge font-size. */
+.locale-zh-cn #sort-buttons { font-size: 1em !important; }
+
+/* de_DE: Text needs more space for translation */
+.locale-de-de .inline-edit-row fieldset label span.title {
+ width: 7em; /* default 5em */
+}
+.locale-de-de .inline-edit-row fieldset label span.input-text-wrap {
+ margin-right: 7em; /* default 5em */
+}
+.locale-de-de #customize-header-actions .button {
+ padding: 0 5px 1px; /* default 0 10px 1px */
+}
+.locale-de-de #customize-header-actions .spinner {
+ margin: 16px 3px 0; /* default 16px 4px 0 5px */
+}
+
+/* ru_RU: Text needs more room to breathe. */
+.locale-ru-ru .inline-edit-row fieldset label span.title {
+ width: 8em; /* default 5em */
+}
+.locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap {
+ margin-right: 8em; /* default 5em */
+}
+.locale-ru-ru.post-php .tagsdiv .newtag {
+ width: 165px; /* default 180px - 15px */
+}
+.locale-ru-ru.press-this .posting {
+ margin-left: 277px; /* default 252px + 25px */
+}
+.locale-ru-ru .press-this-sidebar {
+ width: 265px; /* default 240px + 25px */
+}
+.locale-ru-ru #customize-header-actions .button {
+ padding: 0 5px 1px; /* default 0 10px 1px */
+}
+.locale-ru-ru #customize-header-actions .spinner {
+ margin: 16px 3px 0; /* default 16px 4px 0 5px */
+}
+
+/* lt_LT: QuickEdit */
+.locale-lt-lt .inline-edit-row fieldset label span.title {
+ width: 8em;
+}
+.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap {
+ margin-right: 8em;
+}
diff --git a/sources/wp-admin/css/l10n.css b/sources/wp-admin/css/l10n.css
new file mode 100644
index 0000000..3b056d6
--- /dev/null
+++ b/sources/wp-admin/css/l10n.css
@@ -0,0 +1,100 @@
+/*------------------------------------------------------------------------------
+ 27.0 - Localization
+------------------------------------------------------------------------------*/
+
+/* RTL except Hebrew (see below): Tahoma as the first font; */
+body.rtl,
+body.rtl .press-this a.wp-switch-editor {
+ font-family: Tahoma, Arial, sans-serif;
+}
+
+
+/* he_IL: Remove Tahoma from the font stack. Arial is best for Hebrew. */
+body.locale-he-il,
+body.locale-he-il .press-this a.wp-switch-editor {
+ font-family: Arial, sans-serif;
+}
+
+/* he_IL: Have be bold rather than italic. */
+.locale-he-il em {
+ font-style: normal;
+ font-weight: bold;
+}
+
+/* zh_CN: Remove italic properties. */
+.locale-zh-cn .howto,
+.locale-zh-cn .tablenav .displaying-num,
+.locale-zh-cn .js .input-with-default-title,
+.locale-zh-cn .link-to-original,
+.locale-zh-cn .inline-edit-row fieldset span.title,
+.locale-zh-cn .inline-edit-row fieldset span.checkbox-title,
+.locale-zh-cn #utc-time,
+.locale-zh-cn #local-time,
+.locale-zh-cn p.install-help,
+.locale-zh-cn p.help,
+.locale-zh-cn p.description,
+.locale-zh-cn span.description,
+.locale-zh-cn .form-wrap p {
+ font-style: normal;
+}
+
+/* zh_CN: Enlarge dashboard widget 'Configure' link */
+.locale-zh-cn .hdnle a { font-size: 12px; }
+
+/* zn_CH: Enlarge font size, set font-size: normal */
+.locale-zh-cn form.upgrade .hint { font-style: normal; font-size: 100%; }
+
+/* Zn_CH: Distraction free writing.
+ * More beautiful font for "Just write."
+ * Larger text for HTML/Visual mode.
+ */
+.locale-zh-cn #wp-fullscreen-tagline { font-family: KaiTi, "楷体", sans-serif; }
+.locale-zh-cn #wp-fullscreen-modes a { font-size: 12px; }
+
+/* zh_CN: Enlarge font-size. */
+.locale-zh-cn #sort-buttons { font-size: 1em !important; }
+
+/* de_DE: Text needs more space for translation */
+.locale-de-de .inline-edit-row fieldset label span.title {
+ width: 7em; /* default 5em */
+}
+.locale-de-de .inline-edit-row fieldset label span.input-text-wrap {
+ margin-left: 7em; /* default 5em */
+}
+.locale-de-de #customize-header-actions .button {
+ padding: 0 5px 1px; /* default 0 10px 1px */
+}
+.locale-de-de #customize-header-actions .spinner {
+ margin: 16px 3px 0; /* default 16px 4px 0 5px */
+}
+
+/* ru_RU: Text needs more room to breathe. */
+.locale-ru-ru .inline-edit-row fieldset label span.title {
+ width: 8em; /* default 5em */
+}
+.locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap {
+ margin-left: 8em; /* default 5em */
+}
+.locale-ru-ru.post-php .tagsdiv .newtag {
+ width: 165px; /* default 180px - 15px */
+}
+.locale-ru-ru.press-this .posting {
+ margin-right: 277px; /* default 252px + 25px */
+}
+.locale-ru-ru .press-this-sidebar {
+ width: 265px; /* default 240px + 25px */
+}
+.locale-ru-ru #customize-header-actions .button {
+ padding: 0 5px 1px; /* default 0 10px 1px */
+}
+.locale-ru-ru #customize-header-actions .spinner {
+ margin: 16px 3px 0; /* default 16px 4px 0 5px */
+}
+
+/* lt_LT: QuickEdit */
+.locale-lt-lt .inline-edit-row fieldset label span.title {
+ width: 8em;
+}
+.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap {
+ margin-left: 8em;
+}
diff --git a/sources/wp-admin/css/list-tables-rtl.css b/sources/wp-admin/css/list-tables-rtl.css
new file mode 100644
index 0000000..6f36c9e
--- /dev/null
+++ b/sources/wp-admin/css/list-tables-rtl.css
@@ -0,0 +1,1619 @@
+/* List table styles */
+.post-com-count-wrapper {
+ min-width: 22px;
+}
+
+.post-com-count {
+ background: none;
+ height: 1.3em;
+ line-height: 1.1em;
+ display: block;
+ text-decoration: none;
+ padding: 0 0 6px;
+ cursor: pointer;
+ background-position: center -80px;
+ background-repeat: no-repeat;
+ color: #fff;
+}
+
+.post-com-count:after { /* draw bubble connector using CSS! */
+ content: "";
+ display: block;
+ width: 0;
+ height: 0;
+ margin-right: 8px;
+ border-top: 5px solid #bbb;
+ border-left: 5px solid transparent;
+}
+
+.post-com-count span {
+ font-size: 11px;
+ font-weight: 600;
+ height: 1.4em;
+ line-height: 1.4em;
+ min-width: 0.7em;
+ padding: 0 6px;
+ display: inline-block;
+ -webkit-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #bbb;
+ color: #fff;
+}
+
+.post-com-count:hover {
+ background-position: center -3px;
+}
+
+.post-com-count:hover span {
+ background-color: #2ea2cc;
+}
+
+.post-com-count:hover:after {
+ border-top: 5px solid #2ea2cc;
+}
+
+strong .post-com-count {
+ background-position: center -55px;
+}
+
+strong .post-com-count span {
+ background-color: #0074a2;
+}
+
+strong .post-com-count:after {
+ border-top: 5px solid #0074a2;
+}
+
+.column-response .post-com-count {
+ float: right;
+ margin-left: 5px;
+ text-align: center;
+}
+
+.response-links {
+ float: right;
+}
+
+/* comments */
+
+.commentlist li {
+ padding: 1em 1em .2em;
+ margin: 0;
+ border-bottom: 1px solid #ccc;
+}
+
+.commentlist li li {
+ border-bottom: 0;
+ padding: 0;
+}
+
+.commentlist p {
+ padding: 0;
+ margin: 0 0 .8em;
+}
+
+#submitted-on,
+.submitted-on {
+ color: #777;
+}
+
+/* reply to comments */
+#replyrow td {
+ padding: 2px;
+}
+
+#replysubmit {
+ margin: 0;
+ padding: 0 5px 3px;
+ text-align: center;
+}
+
+#replysubmit .spinner {
+ padding: 2px 0 0;
+ vertical-align: top;
+ float: left;
+}
+
+#replysubmit .button {
+ margin-left: 5px;
+}
+
+#replysubmit .error {
+ color: red;
+ line-height: 21px;
+ text-align: center;
+}
+
+#replyrow h5 {
+ margin: .2em 0 0;
+ padding: 0 5px;
+ line-height: 1.4em;
+ font-size: 1em;
+}
+
+#edithead .inside {
+ float: right;
+ padding: 3px 5px 2px 0;
+ margin: 0;
+ text-align: center;
+}
+
+#edithead .inside input {
+ width: 180px;
+}
+
+#edithead label {
+ padding: 2px 0;
+}
+
+#replycontainer {
+ padding: 5px;
+}
+
+#replycontent {
+ height: 120px;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+#replyerror {
+ border-color: #ddd;
+ background-color: #f9f9f9;
+}
+
+/* @todo: is this used? */
+.commentlist .avatar {
+ vertical-align: text-top;
+}
+
+#the-comment-list .attachment-80x60 {
+ padding: 4px 8px;
+}
+
+#the-comment-list tr.undo,
+#the-comment-list div.undo {
+ background-color: #f4f4f4;
+}
+
+#the-comment-list .unapproved th,
+#the-comment-list .unapproved td {
+ background-color: #fef7f1;
+}
+
+#the-comment-list .unapproved th.check-column {
+ border-right: 4px solid #d54e21;
+}
+
+#the-comment-list .unapproved th.check-column input {
+ margin-right: 4px;
+}
+
+#the-comment-list .approve a {
+ color: #006505;
+}
+
+#the-comment-list .unapprove a {
+ color: #d98500;
+}
+
+#the-comment-list th,
+#the-comment-list td {
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
+}
+
+#the-comment-list tr:last-child th,
+#the-comment-list tr:last-child td {
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+#the-comment-list tr.unapproved + tr.approved th,
+#the-comment-list tr.unapproved + tr.approved td {
+ border-top: 1px solid rgba(0, 0, 0, 0.03);
+}
+
+/* table vim shortcuts */
+.vim-current,
+.vim-current th,
+.vim-current td {
+ background-color: #e4f2fd !important;
+}
+
+th .comment-grey-bubble {
+ height: 16px;
+ width: 16px;
+}
+
+th .comment-grey-bubble:before {
+ content: '\f101';
+ font: normal 20px/.5 'dashicons';
+ speak: none;
+ display: inline-block;
+ padding: 0;
+ top: 4px;
+ right: -4px;
+ position: relative;
+ vertical-align: top;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ text-decoration: none !important;
+ color: #444;
+}
+
+/*------------------------------------------------------------------------------
+ 10.0 - List Posts (/Pages/etc)
+------------------------------------------------------------------------------*/
+
+table.fixed {
+ table-layout: fixed;
+}
+
+.fixed .column-rating,
+.fixed .column-visible {
+ width: 8%;
+}
+
+.fixed .column-posts,
+.fixed .column-date,
+.fixed .column-parent,
+.fixed .column-links,
+.fixed .column-author,
+.fixed .column-format {
+ width: 10%;
+}
+
+.fixed .column-comment .comment-author {
+ display: none;
+}
+
+.fixed .column-response,
+.fixed .column-categories,
+.fixed .column-tags,
+.fixed .column-rel,
+.fixed .column-role {
+ width: 15%;
+}
+
+.fixed .column-slug {
+ width: 25%;
+}
+
+.fixed .column-locations {
+ width: 35%;
+}
+
+.fixed .column-comments {
+ width: 4em;
+ padding: 8px 0;
+ text-align: right;
+}
+
+.fixed .column-comments .vers {
+ padding-right: 3px;
+}
+
+.fixed .column-comments a {
+ float: right;
+}
+
+.fixed .column-icon {
+ width: 80px;
+}
+
+/* @todo: pick a consistent list table selector */
+.wp-list-table a {
+ -webkit-transition: none;
+ transition: none;
+}
+
+#the-list tr:last-child td,
+#the-list tr:last-child th {
+ border-bottom: none !important;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+#comments-form .fixed .column-author {
+ width: 20%;
+}
+
+#commentsdiv.postbox .inside {
+ margin: 0;
+ padding: 0;
+}
+
+#commentsdiv .inside .row-actions {
+ line-height:18px;
+}
+
+#commentsdiv .inside .column-author {
+ width: 25%;
+}
+
+#commentsdiv .column-comment p {
+ margin: 0.6em 0;
+ padding: 0;
+}
+
+#commentsdiv #replyrow td {
+ padding: 0;
+}
+
+#commentsdiv p {
+ padding: 8px 10px;
+ margin: 0;
+}
+
+#commentsdiv .comments-box {
+ border: 0 none;
+}
+
+#commentsdiv .comments-box thead th {
+ background: transparent;
+ padding: 0 7px 4px;
+ font-style: italic;
+}
+
+#commentsdiv .comments-box tr:last-child td {
+ border-bottom: 0 none;
+}
+
+#commentsdiv .spinner {
+ padding-right: 5px;
+}
+
+.sorting-indicator {
+ display: none;
+ width: 10px;
+ height: 4px;
+ margin-top: 8px;
+ margin-right: 7px;
+}
+
+.sorting-indicator:before {
+ background: none;
+ content: '\f142';
+ font: normal 20px/1 'dashicons';
+ speak: none;
+ display: inline-block;
+ padding: 0;
+ top: -4px;
+ right: -8px;
+ color: #444;
+ line-height: 10px;
+ position: relative;
+ vertical-align: top;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ text-decoration: none !important;
+ color: #444;
+}
+
+.column-comments .sorting-indicator:before {
+ top: 0;
+ right: -10px;
+}
+
+th.sorted.asc .sorting-indicator:before,
+th.desc:hover span.sorting-indicator:before {
+ content: '\f142';
+}
+
+th.sorted.desc .sorting-indicator:before,
+th.asc:hover span.sorting-indicator:before {
+ content: '\f140';
+}
+
+tr.wp-locked .locked-indicator {
+ margin-right: 6px;
+ height: 20px;
+ width: 16px;
+}
+
+tr.wp-locked .locked-indicator:before {
+ color: #888;
+ content: '\f160';
+ display: inline-block;
+ float: right;
+ font: normal 20px/1 'dashicons';
+ speak: none;
+ vertical-align: middle;
+ margin-right: 0;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+tr.wp-locked .check-column label,
+tr.wp-locked .check-column input[type="checkbox"],
+tr.wp-locked .row-actions .inline,
+tr.wp-locked .row-actions .trash {
+ display: none;
+}
+
+tr .locked-info {
+ height: 0;
+ opacity: 0;
+}
+
+tr.wp-locked .locked-info {
+ margin-top: 8px;
+ height: auto;
+ opacity: 1;
+}
+
+.locked-text {
+ vertical-align: top;
+}
+
+tr.locked-info, tr.wp-locked .locked-info {
+ -webkit-transition: height 1s, opacity 0.5s;
+ transition: height 1s, opacity 0.5s;
+}
+
+.fixed .column-comments .sorting-indicator {
+ margin-top: 3px;
+}
+
+#menu-locations-wrap .widefat {
+ width: 60%;
+}
+
+.widefat th.sortable,
+.widefat th.sorted {
+ padding: 0;
+}
+
+th.sortable a,
+th.sorted a {
+ display: block;
+ overflow: hidden;
+ padding: 7px 10px 8px 7px;
+}
+
+th.manage-column a,
+th.sortable a:hover,
+th.sortable a:active,
+th.sortable a:focus {
+ color: #333;
+}
+
+th.sortable a:focus {
+ background: #e1e1e1;
+}
+
+.fixed .column-comments.sortable a,
+.fixed .column-comments.sorted a {
+ padding: 8px 0;
+}
+
+th.sortable a span,
+th.sorted a span {
+ float: right;
+ cursor: pointer;
+}
+
+th.sorted.asc .sorting-indicator,
+th.desc:hover span.sorting-indicator {
+ display: block;
+ background-position: 0 0;
+}
+
+th.sorted.desc .sorting-indicator,
+th.asc:hover span.sorting-indicator {
+ display: block;
+ background-position: -7px 0;
+}
+
+/* Bulk Actions */
+.tablenav-pages a {
+ font-weight: 600;
+ margin-left: 1px;
+ padding: 0 2px;
+}
+.tablenav-pages .current-page {
+ padding-top: 0;
+ text-align: center;
+}
+.tablenav-pages .next-page {
+ margin-right: 2px;
+}
+
+.tablenav a.button-secondary {
+ display: block;
+ margin: 3px 0 0 8px;
+}
+
+.tablenav {
+ clear: both;
+ height: 30px;
+ margin: 6px 0 4px;
+ vertical-align: middle;
+}
+
+.tablenav.themes {
+ max-width: 98%;
+}
+
+.tablenav .tablenav-pages {
+ float: left;
+ display: block;
+ cursor: default;
+ height: 30px;
+ color: #555;
+ line-height: 30px;
+ font-size: 12px;
+}
+
+.tablenav .no-pages,
+.tablenav .one-page .pagination-links {
+ display: none;
+}
+
+.tablenav .tablenav-pages a,
+.tablenav-pages span.current {
+ text-decoration: none;
+ padding: 3px 6px;
+}
+
+.tablenav .tablenav-pages a {
+ padding: 0 10px 3px;
+ background: #eee;
+ background: rgba( 0, 0, 0, 0.05 );
+ font-size: 16px;
+ font-weight: normal;
+}
+
+.tablenav .tablenav-pages a:hover,
+.tablenav .tablenav-pages a:focus {
+ color: #fff;
+ background: #2ea2cc;
+}
+
+.tablenav .tablenav-pages a.disabled,
+.tablenav .tablenav-pages a.disabled:hover,
+.tablenav .tablenav-pages a.disabled:focus,
+.tablenav .tablenav-pages a.disabled:active {
+ color: #aaa;
+ background: #eee;
+ background: rgba( 0, 0, 0, 0.05 );
+}
+
+.tablenav .displaying-num {
+ margin-left: 2px;
+ color: #777;
+ font-size: 12px;
+ font-style: italic;
+}
+
+.tablenav .actions {
+ overflow: hidden;
+ padding: 2px 0 0 8px;
+}
+
+.tablenav .delete {
+ margin-left: 20px;
+}
+
+/* @todo: unclear if the following tablenav rules are actually used.
+classes exist in paginate_links() but not seen in list table output. */
+.tablenav .dots {
+ border-color: transparent;
+}
+
+.tablenav .next,
+.tablenav .prev {
+ border-color: transparent;
+ color: #0074a2;
+}
+
+.tablenav .next:hover,
+.tablenav .prev:hover {
+ border-color: transparent;
+ color: #2ea2cc;
+}
+
+.view-switch {
+ float: left;
+ margin: 5px 8px 0 16px;
+}
+
+.view-switch img {
+ display: none;
+}
+
+.view-switch a {
+ text-decoration: none;
+}
+
+.view-switch > a {
+ display: inline-block;
+ width: 18px;
+ height: 18px;
+}
+
+.view-switch > a:before {
+ color: #bbb;
+ content: '\f163';
+ display: inline-block;
+ float: right;
+ font: normal 20px/1 'dashicons';
+ speak: none;
+ vertical-align: middle;
+ margin-right: 0;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+.view-switch a:hover:before {
+ color: #727272;
+}
+
+.view-switch a.current:before {
+ color: #0074a2;
+}
+
+.view-switch > a + a:before {
+ margin-right: 5px;
+ content: '\f164';
+}
+
+.filter {
+ float: right;
+ margin: -5px 10px 0 0;
+}
+
+.filter .subsubsub {
+ margin-right: -10px;
+ margin-top: 13px;
+}
+.screen-per-page {
+ width: 4em;
+}
+
+#posts-filter fieldset {
+ float: right;
+ margin: 0 0 1em 1.5ex;
+ padding: 0;
+}
+
+#posts-filter fieldset legend {
+ padding: 0 1px .2em 0;
+}
+
+p.pagenav {
+ margin: 0;
+ display: inline;
+}
+
+.pagenav span {
+ font-weight: 600;
+ margin: 0 6px;
+}
+
+.row-title {
+ font-size: 14px !important;
+ font-weight: 600;
+}
+
+.column-comment .comment-author {
+ margin-bottom: 0.6em;
+}
+
+.column-author img,
+.column-username img,
+.column-comment .comment-author img {
+ float: right;
+ margin-left: 10px;
+ margin-top: 1px;
+}
+
+.row-actions {
+ color: #ddd;
+ font-size: 13px;
+ visibility: hidden;
+ padding: 2px 0 0;
+}
+
+tr:hover .row-actions,
+.mobile .row-actions,
+.row-actions.visible,
+div.comment-item:hover .row-actions {
+ visibility: visible;
+}
+
+/* deprecated */
+.row-actions-visible {
+ padding: 2px 0 0;
+}
+
+
+/*------------------------------------------------------------------------------
+ 10.1 - Inline Editing
+------------------------------------------------------------------------------*/
+
+/*
+.quick-edit* is for Quick Edit
+.bulk-edit* is for Bulk Edit
+.inline-edit* is for everything
+*/
+
+/* Layout */
+
+#wpbody-content .inline-edit-row fieldset {
+ font-size: 12px;
+ float: right;
+ margin: 0;
+ padding: 0;
+ width: 100%;
+}
+
+tr.inline-edit-row td,
+#wpbody-content .inline-edit-row fieldset .inline-edit-col {
+ padding: 0 0.5em;
+}
+
+#wpbody-content .quick-edit-row-page fieldset.inline-edit-col-right .inline-edit-col {
+ border-width: 0 1px 0 0;
+ border-style: none none none solid;
+}
+
+#wpbody-content .quick-edit-row-post .inline-edit-col-left {
+ width: 40%;
+}
+
+#wpbody-content .quick-edit-row-post .inline-edit-col-right {
+ width: 39%;
+}
+
+#wpbody-content .inline-edit-row-post .inline-edit-col-center {
+ width: 20%;
+}
+
+#wpbody-content .quick-edit-row-page .inline-edit-col-left {
+ width: 50%;
+}
+
+#wpbody-content .quick-edit-row-page .inline-edit-col-right,
+#wpbody-content .bulk-edit-row-post .inline-edit-col-right {
+ width: 49%;
+}
+
+#wpbody-content .bulk-edit-row .inline-edit-col-left {
+ width: 30%;
+}
+
+#wpbody-content .bulk-edit-row-page .inline-edit-col-right {
+ width: 69%;
+}
+
+#wpbody-content .bulk-edit-row .inline-edit-col-bottom {
+ float: left;
+ width: 69%;
+}
+
+#wpbody-content .inline-edit-row-page .inline-edit-col-right {
+ margin-top: 27px;
+}
+
+.inline-edit-row fieldset .inline-edit-group {
+ clear: both;
+}
+
+.inline-edit-row fieldset .inline-edit-group:after {
+ content: ".";
+ display: block;
+ height: 0;
+ clear: both;
+ visibility: hidden;
+}
+
+.inline-edit-row p.submit {
+ clear: both;
+ padding: 0.5em;
+ margin: 0.5em 0 0;
+}
+
+.inline-edit-row span.error {
+ line-height: 22px;
+ margin: 0 15px;
+ padding: 3px 5px;
+}
+
+/* Positioning */
+.inline-edit-row h4 {
+ margin: .2em 0;
+ padding: 0;
+ line-height: 23px;
+}
+.inline-edit-row fieldset span.title,
+.inline-edit-row fieldset span.checkbox-title {
+ margin: 0;
+ padding: 0;
+ line-height: 27px;
+}
+
+.inline-edit-row fieldset label,
+.inline-edit-row fieldset span.inline-edit-categories-label {
+ display: block;
+ margin: .2em 0;
+}
+
+.inline-edit-row fieldset label.inline-edit-tags {
+ margin-top: 0;
+}
+
+.inline-edit-row fieldset label.inline-edit-tags span.title {
+ margin: .2em 0;
+ width: auto;
+}
+
+.inline-edit-row fieldset label span.title {
+ display: block;
+ float: right;
+ width: 5em;
+}
+
+.inline-edit-row fieldset label span.input-text-wrap {
+ display: block;
+ margin-right: 5em;
+}
+
+.quick-edit-row-post fieldset.inline-edit-col-right label span.title {
+ width: auto;
+ padding-left: 0.5em;
+}
+
+.inline-edit-row .input-text-wrap input[type=text] {
+ width: 100%;
+}
+
+.inline-edit-row fieldset label input[type=checkbox] {
+ vertical-align: text-bottom;
+}
+
+.inline-edit-row fieldset label textarea {
+ width: 100%;
+ height: 4em;
+}
+
+#wpbody-content .bulk-edit-row fieldset .inline-edit-group label {
+ max-width: 50%;
+}
+
+#wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child {
+ margin-left: 0.5em
+}
+
+.inline-edit-col-right .input-text-wrap input.inline-edit-menu-order-input {
+ width: 6em;
+}
+
+.inline-edit-save .spinner {
+ padding: 4px 10px 0;
+ vertical-align: top;
+ float: left;
+}
+
+/* Styling */
+.inline-edit-row h4 {
+ text-transform: uppercase;
+}
+
+.inline-edit-row fieldset span.title,
+.inline-edit-row fieldset span.checkbox-title {
+ font-style: italic;
+ line-height: 1.8em;
+}
+
+/* Specific Elements */
+.inline-edit-row fieldset .inline-edit-date {
+ float: right;
+}
+
+.inline-edit-row fieldset input[name=jj],
+.inline-edit-row fieldset input[name=hh],
+.inline-edit-row fieldset input[name=mn] {
+ font-size: 12px;
+ width: 2.1em;
+}
+
+.inline-edit-row fieldset input[name=aa] {
+ font-size: 12px;
+ width: 3.5em;
+}
+
+.inline-edit-row fieldset label input.inline-edit-password-input {
+ width: 8em;
+}
+
+ul.cat-checklist {
+ height: 12em;
+ border: solid 1px #ddd;
+ overflow-y: scroll;
+ padding: 0 5px;
+ margin: 0;
+ background-color: #fff;
+}
+
+#bulk-titles {
+ display: block;
+ height: 12em;
+ border: 1px solid #ddd;
+ overflow-y: scroll;
+ padding: 0 5px;
+ margin: 0 0 5px;
+}
+
+.inline-edit-row fieldset ul.cat-checklist li,
+.inline-edit-row fieldset ul.cat-checklist input {
+ margin: 0;
+ position: relative; /* RTL fix, #WP27629 */
+}
+
+.inline-edit-row fieldset ul.cat-checklist label,
+.inline-edit-row #bulk-titles div {
+ font-style: normal;
+ font-size: 11px;
+}
+
+.inline-edit-row fieldset label input.inline-edit-menu-order-input {
+ width: 3em;
+}
+
+.inline-edit-row fieldset label input.inline-edit-slug-input {
+ width: 75%;
+}
+
+.inline-edit-row #post_parent,
+.inline-edit-row select[name="page_template"] {
+ max-width: 80%;
+}
+
+.ie8 .inline-edit-row #post_parent,
+.ie8 .inline-edit-row select[name="page_template"] {
+ width: 250px;
+}
+
+.quick-edit-row-post fieldset label.inline-edit-status {
+ float: right;
+}
+
+#bulk-titles {
+ line-height: 140%;
+}
+#bulk-titles div {
+ margin: 0.2em 0.3em;
+}
+
+#bulk-titles div a {
+ cursor: pointer;
+ display: block;
+ float: right;
+ height: 18px;
+ margin: 0 -2px 0 3px;
+ overflow: hidden;
+ position: relative;
+ width: 20px;
+}
+
+#bulk-titles div a:before {
+ position: relative;
+ top: -3px;
+}
+
+/*------------------------------------------------------------------------------
+ 17.0 - Plugins
+------------------------------------------------------------------------------*/
+
+.plugins tbody th.check-column,
+.plugins tbody {
+ padding: 8px 2px 0 0;
+}
+
+.plugins tbody th.check-column input[type=checkbox] {
+ margin-top: 4px;
+}
+
+#update-plugins-table tbody td p {
+ margin-top: 0;
+}
+
+#update-plugins-table tbody td p strong {
+ font-size: 14px;
+}
+
+.plugins thead th.check-column,
+.plugins tfoot th.check-column,
+.plugins .inactive th.check-column {
+ padding-right: 6px;
+}
+
+#update-plugins-table thead th.check-column,
+#update-plugins-table tfoot th.check-column {
+ padding-top: 11px;
+}
+
+.plugins,
+.plugins th,
+.plugins td {
+ color: #000;
+}
+
+.plugins tr {
+ background: #fff;
+}
+
+.plugins p {
+ margin: 0 4px;
+ padding: 0;
+}
+
+.plugins .desc p {
+ margin: 0 0 8px;
+}
+
+.plugins td.desc {
+ line-height: 1.5em;
+}
+
+.plugins .desc ul,
+.plugins .desc ol {
+ margin: 0 2em 0 0;
+}
+
+.plugins .desc ul {
+ list-style-type: disc;
+}
+
+.plugins .row-actions {
+ font-size: 13px;
+ padding: 0;
+}
+
+.plugins .inactive td,
+.plugins .inactive th,
+.plugins .active td,
+.plugins .active th {
+ padding: 10px 9px;
+}
+
+.plugins .active td,
+.plugins .active th {
+ background-color: #f7fcfe;
+}
+
+.plugins .update th,
+.plugins .update td {
+ border-bottom: 0;
+}
+
+.plugin-update-tr td {
+ border-top: 0;
+}
+
+.plugins .inactive td,
+.plugins .inactive th,
+.plugins .active td,
+.plugins .active th,
+.plugin-install #the-list td,
+.upgrade .plugins td,
+.upgrade .plugins th {
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
+ box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
+}
+
+.plugins tr.active.plugin-update-tr + tr.inactive th,
+.plugins tr.active.plugin-update-tr + tr.inactive td,
+.plugins tr.active + tr.inactive th,
+.plugins tr.active + tr.inactive td {
+ border-top: 1px solid rgba(0,0,0,0.03);
+ -webkit-box-shadow: inset 0 1px 0 rgba(0,0,0,0.02), inset 0 -1px 0 #e1e1e1;
+ box-shadow: inset 0 1px 0 rgba(0,0,0,0.02), inset 0 -1px 0 #e1e1e1;
+}
+
+.plugins .update td,
+.plugins .update th,
+.upgrade .plugins tr:last-of-type td,
+.upgrade .plugins tr:last-of-type th,
+.plugins tr.active + tr.inactive.update th,
+.plugins tr.active + tr.inactive.update td {
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+.plugins .active.update td,
+.plugins .active.update th,
+tr.active.update + tr.plugin-update-tr .plugin-update {
+ background-color: #fef7f1;
+}
+
+.plugins .active th.check-column {
+ border-right: 4px solid #2ea2cc;
+}
+
+.plugins .active.update th.check-column,
+.plugins .active.update + .plugin-update-tr .plugin-update {
+ border-right: 4px solid #d54e21;
+}
+
+#wpbody-content .plugins .plugin-title,
+#wpbody-content .plugins .theme-title {
+ padding-left: 12px;
+ white-space:nowrap;
+}
+
+.plugins .inactive .plugin-title strong {
+ font-weight: 400;
+}
+
+.plugins .second,
+.plugins .row-actions {
+ padding: 0 0 5px;
+}
+
+.plugins .update .second,
+.plugins .update .row-actions {
+ padding-bottom: 0;
+}
+
+.plugins-php .widefat tfoot th,
+.plugins-php .widefat tfoot td {
+ border-top-style: solid;
+ border-top-width: 1px;
+}
+
+.plugin-update-tr .update-message {
+ font-size: 13px;
+ font-weight: normal;
+ margin: 6px 12px 12px;
+ padding: 6px 12px;
+ margin: 0 31px 8px 10px;
+ background-color: #f7f7f7;
+ background-color: rgba(0,0,0,0.03);
+}
+
+.plugin-update-tr .update-message:before {
+ color: #d54e21;
+ content: '\f463';
+ display: inline-block;
+ font: normal 20px/1 'dashicons';
+ speak: none;
+ margin: 0 -2px 0 8px;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ vertical-align: top;
+}
+
+.plugins .plugin-update {
+ padding: 0;
+ border: none;
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
+ box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
+}
+
+/* update notices for active plugins */
+tr.active + tr.plugin-update-tr .plugin-update {
+ background-color: #f7fcfe;
+}
+
+tr.active + tr.plugin-update-tr .plugin-update .update-message {
+ background-color: #fcf3ef;
+}
+
+.plugin-install-php h4 {
+ margin: 2.5em 0 8px;
+}
+
+/* ms */
+/* Background Color for Site Status */
+.wp-list-table .site-deleted {
+ background: #ff8573;
+}
+.wp-list-table .site-spammed {
+ background: #faafaa;
+}
+.wp-list-table .site-archived {
+ background: #ffebe8;
+}
+.wp-list-table .site-mature {
+ background: #fecac2;
+}
+
+/* =Media Queries
+-------------------------------------------------------------- */
+
+/**
+ * HiDPI Displays
+ */
+@media screen and ( max-width: 782px ) {
+ /* WP List Table Options & Filters */
+ .tablenav {
+ height: auto;
+ }
+
+ .tablenav.top {
+ margin: 0;
+ }
+
+ .tablenav.bottom {
+ position: relative;
+ margin-top: 15px;
+ }
+
+ .tablenav br {
+ display: none;
+ }
+
+ .tablenav br.clear {
+ display: block;
+ }
+
+ .tablenav.top .actions, .view-switch {
+ display: none;
+ }
+
+ /* Pagination */
+ .tablenav.top .displaying-num {
+ display: none;
+ }
+
+ .tablenav.bottom .displaying-num {
+ position: absolute;
+ left: 0;
+ top: 10px;
+ font-size: 14px;
+ }
+
+ .tablenav-pages {
+ width: 100%;
+ text-align: center;
+ margin: 0 0 25px;
+ }
+
+ .tablenav.bottom .tablenav-pages {
+ margin-top: 25px;
+ }
+
+ .tablenav.top .tablenav-pages.one-page {
+ display: none;
+ }
+
+ .tablenav.bottom .tablenav-pages.one-page {
+ margin: 15px 0 0 0;
+ height: 0;
+ }
+
+ .tablenav-pages .pagination-links .paging-input {
+ font-size: 18px;
+ }
+
+ .tablenav-pages .pagination-links a {
+ padding: 8px 20px 11px;
+ font-size: 18px;
+ background: rgba(0, 0, 0, 0.05);
+ }
+
+ .tablenav-pages .pagination-links .current-page {
+ padding: 10px;
+ font-size: 14px;
+ }
+
+ /* WP List Table Adjustments: General */
+ .form-wrap > p {
+ display: none;
+ }
+
+ .comment-count {
+ font-size: 14px;
+ }
+
+ /* Columns to hide */
+ .fixed .column-date,
+ .fixed .column-author,
+ .column-categories,
+ .column-tags,
+ .tags .column-description,
+ .media .column-parent,
+ .users .column-email,
+ .users .column-name,
+ .sites .column-registered,
+ .sites .column-users {
+ display: none;
+ }
+
+ .fixed .column-comment .comment-author {
+ display: block;
+ }
+
+ /* Posts */
+ .column-title {
+ width: 85%;
+ }
+
+ .fixed .column-comments, .widefat .check-column {
+ width: 35px
+ }
+
+ .widefat thead .check-column, .widefat tfoot .check-column {
+ padding: 10px 0 10px;
+ }
+
+ .widefat * {
+ word-wrap: normal;
+ }
+
+ /* Quick Edit and Bulk Edit */
+ #wpbody-content .quick-edit-row-post .inline-edit-col-left,
+ #wpbody-content .quick-edit-row-post .inline-edit-col-right,
+ #wpbody-content .inline-edit-row-post .inline-edit-col-center,
+ #wpbody-content .quick-edit-row-page .inline-edit-col-left,
+ #wpbody-content .quick-edit-row-page .inline-edit-col-right,
+ #wpbody-content .bulk-edit-row-post .inline-edit-col-right,
+ #wpbody-content .bulk-edit-row .inline-edit-col-left,
+ #wpbody-content .bulk-edit-row-page .inline-edit-col-right,
+ #wpbody-content .bulk-edit-row .inline-edit-col-bottom {
+ float: none;
+ width: 100%;
+ }
+
+ #wpbody-content .quick-edit-row fieldset .inline-edit-col label,
+ #wpbody-content .quick-edit-row fieldset .inline-edit-group label,
+ #wpbody-content .bulk-edit-row fieldset .inline-edit-col label,
+ #wpbody-content .bulk-edit-row fieldset .inline-edit-group label {
+ max-width: none;
+ float: none;
+ margin-bottom: 5px;
+ }
+
+ #wpbody .bulk-edit-row fieldset select {
+ display: block;
+ width: 100%;
+ max-width: none;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ }
+
+ .inline-edit-row fieldset ul.cat-checklist label,
+ .inline-edit-row #bulk-titles div {
+ font-size: 16px;
+ }
+
+ .inline-edit-row fieldset label span.title {
+ float: none;
+ }
+
+ .inline-edit-row fieldset label.inline-edit-tags {
+ padding: 0 0.5em;
+ }
+
+ .inline-edit-row fieldset .inline-edit-col label.inline-edit-tags {
+ padding: 0;
+ }
+
+ .inline-edit-row fieldset label span.input-text-wrap {
+ margin-right: 0;
+ }
+
+ .inline-edit-row fieldset input[name=jj],
+ .inline-edit-row fieldset input[name=hh],
+ .inline-edit-row fieldset input[name=mn] {
+ width: 3em;
+ }
+
+ .inline-edit-row fieldset input[name=aa] {
+ width: 4.5em;
+ }
+
+ #bulk-titles div {
+ margin: 0.8em 0.3em;
+ }
+
+ #bulk-titles div a {
+ height: 22px;
+ }
+
+ /* Taxonomies */
+ .tags .column-posts {
+ width: 50px;
+ }
+
+ .tags .column-slug {
+ width: 30%;
+ }
+
+ /* Comments */
+ .comments .column-response {
+ width: 35%;
+ }
+
+ /* Users */
+ .users .column-role {
+ width: 35%;
+ }
+
+ /* Network admin sites */
+ .sites .column-blogname {
+ width: 55%;
+ }
+
+ /* Updates */
+ #wpbody-content #update-themes-table .plugin-title {
+ width: auto;
+ }
+
+ /* Links */
+ .link-manager-php #posts-filter {
+ margin-top: 25px;
+ }
+
+ .link-manager-php .tablenav.bottom {
+ overflow: hidden;
+ }
+
+ /* Plugin/Theme Management Page */
+ .wp-list-table.plugins {
+ position: relative;
+ margin-top: 35px;
+ margin-bottom: 50px;
+ }
+
+ .wp-list-table.plugins thead .column-description,
+ #wpbody-content .wp-list-table.plugins tfoot .column-description,
+ .wp-list-table.plugins th#description {
+ display: none;
+ }
+
+ #wpbody-content .wp-list-table.plugins,
+ #wpbody-content .wp-list-table.plugins thead,
+ #wpbody-content .wp-list-table.plugins tbody,
+ #wpbody-content .wp-list-table.plugins tr,
+ #wpbody-content .wp-list-table.plugins .column-description,
+ #wpbody-content .wp-list-table.plugins .plugin-title,
+ #wpbody-content .wp-list-table.plugins .theme-title,
+ #wpbody-content .wp-list-table.plugins .plugin-update,
+ #wpbody-content .wp-list-table.plugins .manage-column.column-name {
+ display: block;
+ width: auto;
+ }
+
+ .wp-list-table.plugins thead,
+ .wp-list-table.plugins tfoot {
+ position: absolute;
+ top: -35px;
+ right: 0;
+ left: 0;
+ width: auto;
+ height: 35px;
+ }
+
+ .wp-list-table.plugins tfoot {
+ bottom: -35px;
+ top: auto;
+ }
+
+ .active, .inactive {
+ padding-top: 0;
+ }
+
+ .wp-list-table.plugins .plugin-title,
+ .wp-list-table.plugins .theme-title {
+ padding-top: 13px;
+ padding-bottom: 4px;
+ }
+
+ .plugins tr.active + tr.inactive th.check-column,
+ .plugins tr.active + tr.inactive td,
+ .wp-list-table.plugins .plugin-title,
+ .wp-list-table.plugins .theme-title,
+ .wp-list-table.plugins tbody th {
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ }
+
+ .plugins tbody {
+ padding: 1px 0 0;
+ }
+
+ .plugins tr.active + tr.inactive td.column-description {
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
+ }
+
+ .plugins tr.active + tr.inactive th.check-column,
+ .plugins tr.active + tr.inactive td {
+ border-top: none;
+ }
+
+ .wp-list-table.plugins .column-description {
+ padding-top: 0;
+ }
+
+ .wp-list-table.plugins .manage-column.column-name,
+ .wp-list-table.plugins .column-description,
+ .wp-list-table.plugins .plugin-title,
+ .wp-list-table.plugins .theme-title {
+ padding-left: 12px;
+ padding-right: 46px;
+ }
+
+ .wp-list-table.plugins tr {
+ position: relative;
+ }
+
+ .wp-list-table.plugins th.check-column,
+ .wp-list-table.plugins tr.update th.check-column {
+ position: absolute;
+ height: auto;
+ top: 0;
+ bottom: 0;
+ right: 0;
+ padding-right: 2px;
+ padding-top: 18px;
+ }
+
+ .wp-list-table.plugins thead th.check-column,
+ .wp-list-table.plugins tfoot th.check-column {
+ padding-right: 3px;
+ padding-top: 11px;
+ background: none;
+ }
+
+ .widefat tbody th.check-column input[type="checkbox"] {
+ margin-top: -3px;
+ margin-right: 8px;
+ }
+
+ .wp-list-table.plugins .active .check-column input,
+ .wp-list-table.plugins .update .check-column input {
+ margin-right: 5px;
+ }
+
+ .wp-list-table.plugins thead .check-column input,
+ .wp-list-table.plugins tfoot .check-column input {
+ margin-top: -6px;
+ }
+
+ .wp-list-table.plugins .active th.check-column {
+ background: none;
+ }
+
+ .wp-list-table.plugins .plugin-title strong,
+ .wp-list-table.plugins .theme-title strong {
+ font-size: 1.4em;
+ line-height: 1.6em;
+ }
+
+ /* Add New plugins page */
+ table.plugin-install .column-name,
+ table.plugin-install .column-version,
+ table.plugin-install .column-rating,
+ table.plugin-install .column-description {
+ display: block;
+ width: auto;
+ }
+
+ table.plugin-install th.column-name,
+ table.plugin-install th.column-version,
+ table.plugin-install th.column-rating,
+ table.plugin-install th.column-description {
+ display: none;
+ }
+
+ table.plugin-install td.column-name strong {
+ font-size: 1.4em;
+ line-height: 1.6em;
+ }
+
+ table.plugin-install #the-list td {
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ }
+
+ table.plugin-install #the-list tr {
+ display: block;
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
+ box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
+ }
+}
diff --git a/sources/wp-admin/css/list-tables.css b/sources/wp-admin/css/list-tables.css
new file mode 100644
index 0000000..0b4115d
--- /dev/null
+++ b/sources/wp-admin/css/list-tables.css
@@ -0,0 +1,1619 @@
+/* List table styles */
+.post-com-count-wrapper {
+ min-width: 22px;
+}
+
+.post-com-count {
+ background: none;
+ height: 1.3em;
+ line-height: 1.1em;
+ display: block;
+ text-decoration: none;
+ padding: 0 0 6px;
+ cursor: pointer;
+ background-position: center -80px;
+ background-repeat: no-repeat;
+ color: #fff;
+}
+
+.post-com-count:after { /* draw bubble connector using CSS! */
+ content: "";
+ display: block;
+ width: 0;
+ height: 0;
+ margin-left: 8px;
+ border-top: 5px solid #bbb;
+ border-right: 5px solid transparent;
+}
+
+.post-com-count span {
+ font-size: 11px;
+ font-weight: 600;
+ height: 1.4em;
+ line-height: 1.4em;
+ min-width: 0.7em;
+ padding: 0 6px;
+ display: inline-block;
+ -webkit-border-radius: 5px;
+ border-radius: 5px;
+ background-color: #bbb;
+ color: #fff;
+}
+
+.post-com-count:hover {
+ background-position: center -3px;
+}
+
+.post-com-count:hover span {
+ background-color: #2ea2cc;
+}
+
+.post-com-count:hover:after {
+ border-top: 5px solid #2ea2cc;
+}
+
+strong .post-com-count {
+ background-position: center -55px;
+}
+
+strong .post-com-count span {
+ background-color: #0074a2;
+}
+
+strong .post-com-count:after {
+ border-top: 5px solid #0074a2;
+}
+
+.column-response .post-com-count {
+ float: left;
+ margin-right: 5px;
+ text-align: center;
+}
+
+.response-links {
+ float: left;
+}
+
+/* comments */
+
+.commentlist li {
+ padding: 1em 1em .2em;
+ margin: 0;
+ border-bottom: 1px solid #ccc;
+}
+
+.commentlist li li {
+ border-bottom: 0;
+ padding: 0;
+}
+
+.commentlist p {
+ padding: 0;
+ margin: 0 0 .8em;
+}
+
+#submitted-on,
+.submitted-on {
+ color: #777;
+}
+
+/* reply to comments */
+#replyrow td {
+ padding: 2px;
+}
+
+#replysubmit {
+ margin: 0;
+ padding: 0 5px 3px;
+ text-align: center;
+}
+
+#replysubmit .spinner {
+ padding: 2px 0 0;
+ vertical-align: top;
+ float: right;
+}
+
+#replysubmit .button {
+ margin-right: 5px;
+}
+
+#replysubmit .error {
+ color: red;
+ line-height: 21px;
+ text-align: center;
+}
+
+#replyrow h5 {
+ margin: .2em 0 0;
+ padding: 0 5px;
+ line-height: 1.4em;
+ font-size: 1em;
+}
+
+#edithead .inside {
+ float: left;
+ padding: 3px 0 2px 5px;
+ margin: 0;
+ text-align: center;
+}
+
+#edithead .inside input {
+ width: 180px;
+}
+
+#edithead label {
+ padding: 2px 0;
+}
+
+#replycontainer {
+ padding: 5px;
+}
+
+#replycontent {
+ height: 120px;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+#replyerror {
+ border-color: #ddd;
+ background-color: #f9f9f9;
+}
+
+/* @todo: is this used? */
+.commentlist .avatar {
+ vertical-align: text-top;
+}
+
+#the-comment-list .attachment-80x60 {
+ padding: 4px 8px;
+}
+
+#the-comment-list tr.undo,
+#the-comment-list div.undo {
+ background-color: #f4f4f4;
+}
+
+#the-comment-list .unapproved th,
+#the-comment-list .unapproved td {
+ background-color: #fef7f1;
+}
+
+#the-comment-list .unapproved th.check-column {
+ border-left: 4px solid #d54e21;
+}
+
+#the-comment-list .unapproved th.check-column input {
+ margin-left: 4px;
+}
+
+#the-comment-list .approve a {
+ color: #006505;
+}
+
+#the-comment-list .unapprove a {
+ color: #d98500;
+}
+
+#the-comment-list th,
+#the-comment-list td {
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
+}
+
+#the-comment-list tr:last-child th,
+#the-comment-list tr:last-child td {
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+#the-comment-list tr.unapproved + tr.approved th,
+#the-comment-list tr.unapproved + tr.approved td {
+ border-top: 1px solid rgba(0, 0, 0, 0.03);
+}
+
+/* table vim shortcuts */
+.vim-current,
+.vim-current th,
+.vim-current td {
+ background-color: #e4f2fd !important;
+}
+
+th .comment-grey-bubble {
+ height: 16px;
+ width: 16px;
+}
+
+th .comment-grey-bubble:before {
+ content: '\f101';
+ font: normal 20px/.5 'dashicons';
+ speak: none;
+ display: inline-block;
+ padding: 0;
+ top: 4px;
+ left: -4px;
+ position: relative;
+ vertical-align: top;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ text-decoration: none !important;
+ color: #444;
+}
+
+/*------------------------------------------------------------------------------
+ 10.0 - List Posts (/Pages/etc)
+------------------------------------------------------------------------------*/
+
+table.fixed {
+ table-layout: fixed;
+}
+
+.fixed .column-rating,
+.fixed .column-visible {
+ width: 8%;
+}
+
+.fixed .column-posts,
+.fixed .column-date,
+.fixed .column-parent,
+.fixed .column-links,
+.fixed .column-author,
+.fixed .column-format {
+ width: 10%;
+}
+
+.fixed .column-comment .comment-author {
+ display: none;
+}
+
+.fixed .column-response,
+.fixed .column-categories,
+.fixed .column-tags,
+.fixed .column-rel,
+.fixed .column-role {
+ width: 15%;
+}
+
+.fixed .column-slug {
+ width: 25%;
+}
+
+.fixed .column-locations {
+ width: 35%;
+}
+
+.fixed .column-comments {
+ width: 4em;
+ padding: 8px 0;
+ text-align: left;
+}
+
+.fixed .column-comments .vers {
+ padding-left: 3px;
+}
+
+.fixed .column-comments a {
+ float: left;
+}
+
+.fixed .column-icon {
+ width: 80px;
+}
+
+/* @todo: pick a consistent list table selector */
+.wp-list-table a {
+ -webkit-transition: none;
+ transition: none;
+}
+
+#the-list tr:last-child td,
+#the-list tr:last-child th {
+ border-bottom: none !important;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+#comments-form .fixed .column-author {
+ width: 20%;
+}
+
+#commentsdiv.postbox .inside {
+ margin: 0;
+ padding: 0;
+}
+
+#commentsdiv .inside .row-actions {
+ line-height:18px;
+}
+
+#commentsdiv .inside .column-author {
+ width: 25%;
+}
+
+#commentsdiv .column-comment p {
+ margin: 0.6em 0;
+ padding: 0;
+}
+
+#commentsdiv #replyrow td {
+ padding: 0;
+}
+
+#commentsdiv p {
+ padding: 8px 10px;
+ margin: 0;
+}
+
+#commentsdiv .comments-box {
+ border: 0 none;
+}
+
+#commentsdiv .comments-box thead th {
+ background: transparent;
+ padding: 0 7px 4px;
+ font-style: italic;
+}
+
+#commentsdiv .comments-box tr:last-child td {
+ border-bottom: 0 none;
+}
+
+#commentsdiv .spinner {
+ padding-left: 5px;
+}
+
+.sorting-indicator {
+ display: none;
+ width: 10px;
+ height: 4px;
+ margin-top: 8px;
+ margin-left: 7px;
+}
+
+.sorting-indicator:before {
+ background: none;
+ content: '\f142';
+ font: normal 20px/1 'dashicons';
+ speak: none;
+ display: inline-block;
+ padding: 0;
+ top: -4px;
+ left: -8px;
+ color: #444;
+ line-height: 10px;
+ position: relative;
+ vertical-align: top;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ text-decoration: none !important;
+ color: #444;
+}
+
+.column-comments .sorting-indicator:before {
+ top: 0;
+ left: -10px;
+}
+
+th.sorted.asc .sorting-indicator:before,
+th.desc:hover span.sorting-indicator:before {
+ content: '\f142';
+}
+
+th.sorted.desc .sorting-indicator:before,
+th.asc:hover span.sorting-indicator:before {
+ content: '\f140';
+}
+
+tr.wp-locked .locked-indicator {
+ margin-left: 6px;
+ height: 20px;
+ width: 16px;
+}
+
+tr.wp-locked .locked-indicator:before {
+ color: #888;
+ content: '\f160';
+ display: inline-block;
+ float: left;
+ font: normal 20px/1 'dashicons';
+ speak: none;
+ vertical-align: middle;
+ margin-left: 0;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+tr.wp-locked .check-column label,
+tr.wp-locked .check-column input[type="checkbox"],
+tr.wp-locked .row-actions .inline,
+tr.wp-locked .row-actions .trash {
+ display: none;
+}
+
+tr .locked-info {
+ height: 0;
+ opacity: 0;
+}
+
+tr.wp-locked .locked-info {
+ margin-top: 8px;
+ height: auto;
+ opacity: 1;
+}
+
+.locked-text {
+ vertical-align: top;
+}
+
+tr.locked-info, tr.wp-locked .locked-info {
+ -webkit-transition: height 1s, opacity 0.5s;
+ transition: height 1s, opacity 0.5s;
+}
+
+.fixed .column-comments .sorting-indicator {
+ margin-top: 3px;
+}
+
+#menu-locations-wrap .widefat {
+ width: 60%;
+}
+
+.widefat th.sortable,
+.widefat th.sorted {
+ padding: 0;
+}
+
+th.sortable a,
+th.sorted a {
+ display: block;
+ overflow: hidden;
+ padding: 7px 7px 8px 10px;
+}
+
+th.manage-column a,
+th.sortable a:hover,
+th.sortable a:active,
+th.sortable a:focus {
+ color: #333;
+}
+
+th.sortable a:focus {
+ background: #e1e1e1;
+}
+
+.fixed .column-comments.sortable a,
+.fixed .column-comments.sorted a {
+ padding: 8px 0;
+}
+
+th.sortable a span,
+th.sorted a span {
+ float: left;
+ cursor: pointer;
+}
+
+th.sorted.asc .sorting-indicator,
+th.desc:hover span.sorting-indicator {
+ display: block;
+ background-position: 0 0;
+}
+
+th.sorted.desc .sorting-indicator,
+th.asc:hover span.sorting-indicator {
+ display: block;
+ background-position: -7px 0;
+}
+
+/* Bulk Actions */
+.tablenav-pages a {
+ font-weight: 600;
+ margin-right: 1px;
+ padding: 0 2px;
+}
+.tablenav-pages .current-page {
+ padding-top: 0;
+ text-align: center;
+}
+.tablenav-pages .next-page {
+ margin-left: 2px;
+}
+
+.tablenav a.button-secondary {
+ display: block;
+ margin: 3px 8px 0 0;
+}
+
+.tablenav {
+ clear: both;
+ height: 30px;
+ margin: 6px 0 4px;
+ vertical-align: middle;
+}
+
+.tablenav.themes {
+ max-width: 98%;
+}
+
+.tablenav .tablenav-pages {
+ float: right;
+ display: block;
+ cursor: default;
+ height: 30px;
+ color: #555;
+ line-height: 30px;
+ font-size: 12px;
+}
+
+.tablenav .no-pages,
+.tablenav .one-page .pagination-links {
+ display: none;
+}
+
+.tablenav .tablenav-pages a,
+.tablenav-pages span.current {
+ text-decoration: none;
+ padding: 3px 6px;
+}
+
+.tablenav .tablenav-pages a {
+ padding: 0 10px 3px;
+ background: #eee;
+ background: rgba( 0, 0, 0, 0.05 );
+ font-size: 16px;
+ font-weight: normal;
+}
+
+.tablenav .tablenav-pages a:hover,
+.tablenav .tablenav-pages a:focus {
+ color: #fff;
+ background: #2ea2cc;
+}
+
+.tablenav .tablenav-pages a.disabled,
+.tablenav .tablenav-pages a.disabled:hover,
+.tablenav .tablenav-pages a.disabled:focus,
+.tablenav .tablenav-pages a.disabled:active {
+ color: #aaa;
+ background: #eee;
+ background: rgba( 0, 0, 0, 0.05 );
+}
+
+.tablenav .displaying-num {
+ margin-right: 2px;
+ color: #777;
+ font-size: 12px;
+ font-style: italic;
+}
+
+.tablenav .actions {
+ overflow: hidden;
+ padding: 2px 8px 0 0;
+}
+
+.tablenav .delete {
+ margin-right: 20px;
+}
+
+/* @todo: unclear if the following tablenav rules are actually used.
+classes exist in paginate_links() but not seen in list table output. */
+.tablenav .dots {
+ border-color: transparent;
+}
+
+.tablenav .next,
+.tablenav .prev {
+ border-color: transparent;
+ color: #0074a2;
+}
+
+.tablenav .next:hover,
+.tablenav .prev:hover {
+ border-color: transparent;
+ color: #2ea2cc;
+}
+
+.view-switch {
+ float: right;
+ margin: 5px 16px 0 8px;
+}
+
+.view-switch img {
+ display: none;
+}
+
+.view-switch a {
+ text-decoration: none;
+}
+
+.view-switch > a {
+ display: inline-block;
+ width: 18px;
+ height: 18px;
+}
+
+.view-switch > a:before {
+ color: #bbb;
+ content: '\f163';
+ display: inline-block;
+ float: left;
+ font: normal 20px/1 'dashicons';
+ speak: none;
+ vertical-align: middle;
+ margin-left: 0;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+.view-switch a:hover:before {
+ color: #727272;
+}
+
+.view-switch a.current:before {
+ color: #0074a2;
+}
+
+.view-switch > a + a:before {
+ margin-left: 5px;
+ content: '\f164';
+}
+
+.filter {
+ float: left;
+ margin: -5px 0 0 10px;
+}
+
+.filter .subsubsub {
+ margin-left: -10px;
+ margin-top: 13px;
+}
+.screen-per-page {
+ width: 4em;
+}
+
+#posts-filter fieldset {
+ float: left;
+ margin: 0 1.5ex 1em 0;
+ padding: 0;
+}
+
+#posts-filter fieldset legend {
+ padding: 0 0 .2em 1px;
+}
+
+p.pagenav {
+ margin: 0;
+ display: inline;
+}
+
+.pagenav span {
+ font-weight: 600;
+ margin: 0 6px;
+}
+
+.row-title {
+ font-size: 14px !important;
+ font-weight: 600;
+}
+
+.column-comment .comment-author {
+ margin-bottom: 0.6em;
+}
+
+.column-author img,
+.column-username img,
+.column-comment .comment-author img {
+ float: left;
+ margin-right: 10px;
+ margin-top: 1px;
+}
+
+.row-actions {
+ color: #ddd;
+ font-size: 13px;
+ visibility: hidden;
+ padding: 2px 0 0;
+}
+
+tr:hover .row-actions,
+.mobile .row-actions,
+.row-actions.visible,
+div.comment-item:hover .row-actions {
+ visibility: visible;
+}
+
+/* deprecated */
+.row-actions-visible {
+ padding: 2px 0 0;
+}
+
+
+/*------------------------------------------------------------------------------
+ 10.1 - Inline Editing
+------------------------------------------------------------------------------*/
+
+/*
+.quick-edit* is for Quick Edit
+.bulk-edit* is for Bulk Edit
+.inline-edit* is for everything
+*/
+
+/* Layout */
+
+#wpbody-content .inline-edit-row fieldset {
+ font-size: 12px;
+ float: left;
+ margin: 0;
+ padding: 0;
+ width: 100%;
+}
+
+tr.inline-edit-row td,
+#wpbody-content .inline-edit-row fieldset .inline-edit-col {
+ padding: 0 0.5em;
+}
+
+#wpbody-content .quick-edit-row-page fieldset.inline-edit-col-right .inline-edit-col {
+ border-width: 0 0 0 1px;
+ border-style: none none none solid;
+}
+
+#wpbody-content .quick-edit-row-post .inline-edit-col-left {
+ width: 40%;
+}
+
+#wpbody-content .quick-edit-row-post .inline-edit-col-right {
+ width: 39%;
+}
+
+#wpbody-content .inline-edit-row-post .inline-edit-col-center {
+ width: 20%;
+}
+
+#wpbody-content .quick-edit-row-page .inline-edit-col-left {
+ width: 50%;
+}
+
+#wpbody-content .quick-edit-row-page .inline-edit-col-right,
+#wpbody-content .bulk-edit-row-post .inline-edit-col-right {
+ width: 49%;
+}
+
+#wpbody-content .bulk-edit-row .inline-edit-col-left {
+ width: 30%;
+}
+
+#wpbody-content .bulk-edit-row-page .inline-edit-col-right {
+ width: 69%;
+}
+
+#wpbody-content .bulk-edit-row .inline-edit-col-bottom {
+ float: right;
+ width: 69%;
+}
+
+#wpbody-content .inline-edit-row-page .inline-edit-col-right {
+ margin-top: 27px;
+}
+
+.inline-edit-row fieldset .inline-edit-group {
+ clear: both;
+}
+
+.inline-edit-row fieldset .inline-edit-group:after {
+ content: ".";
+ display: block;
+ height: 0;
+ clear: both;
+ visibility: hidden;
+}
+
+.inline-edit-row p.submit {
+ clear: both;
+ padding: 0.5em;
+ margin: 0.5em 0 0;
+}
+
+.inline-edit-row span.error {
+ line-height: 22px;
+ margin: 0 15px;
+ padding: 3px 5px;
+}
+
+/* Positioning */
+.inline-edit-row h4 {
+ margin: .2em 0;
+ padding: 0;
+ line-height: 23px;
+}
+.inline-edit-row fieldset span.title,
+.inline-edit-row fieldset span.checkbox-title {
+ margin: 0;
+ padding: 0;
+ line-height: 27px;
+}
+
+.inline-edit-row fieldset label,
+.inline-edit-row fieldset span.inline-edit-categories-label {
+ display: block;
+ margin: .2em 0;
+}
+
+.inline-edit-row fieldset label.inline-edit-tags {
+ margin-top: 0;
+}
+
+.inline-edit-row fieldset label.inline-edit-tags span.title {
+ margin: .2em 0;
+ width: auto;
+}
+
+.inline-edit-row fieldset label span.title {
+ display: block;
+ float: left;
+ width: 5em;
+}
+
+.inline-edit-row fieldset label span.input-text-wrap {
+ display: block;
+ margin-left: 5em;
+}
+
+.quick-edit-row-post fieldset.inline-edit-col-right label span.title {
+ width: auto;
+ padding-right: 0.5em;
+}
+
+.inline-edit-row .input-text-wrap input[type=text] {
+ width: 100%;
+}
+
+.inline-edit-row fieldset label input[type=checkbox] {
+ vertical-align: text-bottom;
+}
+
+.inline-edit-row fieldset label textarea {
+ width: 100%;
+ height: 4em;
+}
+
+#wpbody-content .bulk-edit-row fieldset .inline-edit-group label {
+ max-width: 50%;
+}
+
+#wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child {
+ margin-right: 0.5em
+}
+
+.inline-edit-col-right .input-text-wrap input.inline-edit-menu-order-input {
+ width: 6em;
+}
+
+.inline-edit-save .spinner {
+ padding: 4px 10px 0;
+ vertical-align: top;
+ float: right;
+}
+
+/* Styling */
+.inline-edit-row h4 {
+ text-transform: uppercase;
+}
+
+.inline-edit-row fieldset span.title,
+.inline-edit-row fieldset span.checkbox-title {
+ font-style: italic;
+ line-height: 1.8em;
+}
+
+/* Specific Elements */
+.inline-edit-row fieldset .inline-edit-date {
+ float: left;
+}
+
+.inline-edit-row fieldset input[name=jj],
+.inline-edit-row fieldset input[name=hh],
+.inline-edit-row fieldset input[name=mn] {
+ font-size: 12px;
+ width: 2.1em;
+}
+
+.inline-edit-row fieldset input[name=aa] {
+ font-size: 12px;
+ width: 3.5em;
+}
+
+.inline-edit-row fieldset label input.inline-edit-password-input {
+ width: 8em;
+}
+
+ul.cat-checklist {
+ height: 12em;
+ border: solid 1px #ddd;
+ overflow-y: scroll;
+ padding: 0 5px;
+ margin: 0;
+ background-color: #fff;
+}
+
+#bulk-titles {
+ display: block;
+ height: 12em;
+ border: 1px solid #ddd;
+ overflow-y: scroll;
+ padding: 0 5px;
+ margin: 0 0 5px;
+}
+
+.inline-edit-row fieldset ul.cat-checklist li,
+.inline-edit-row fieldset ul.cat-checklist input {
+ margin: 0;
+ position: relative; /* RTL fix, #WP27629 */
+}
+
+.inline-edit-row fieldset ul.cat-checklist label,
+.inline-edit-row #bulk-titles div {
+ font-style: normal;
+ font-size: 11px;
+}
+
+.inline-edit-row fieldset label input.inline-edit-menu-order-input {
+ width: 3em;
+}
+
+.inline-edit-row fieldset label input.inline-edit-slug-input {
+ width: 75%;
+}
+
+.inline-edit-row #post_parent,
+.inline-edit-row select[name="page_template"] {
+ max-width: 80%;
+}
+
+.ie8 .inline-edit-row #post_parent,
+.ie8 .inline-edit-row select[name="page_template"] {
+ width: 250px;
+}
+
+.quick-edit-row-post fieldset label.inline-edit-status {
+ float: left;
+}
+
+#bulk-titles {
+ line-height: 140%;
+}
+#bulk-titles div {
+ margin: 0.2em 0.3em;
+}
+
+#bulk-titles div a {
+ cursor: pointer;
+ display: block;
+ float: left;
+ height: 18px;
+ margin: 0 3px 0 -2px;
+ overflow: hidden;
+ position: relative;
+ width: 20px;
+}
+
+#bulk-titles div a:before {
+ position: relative;
+ top: -3px;
+}
+
+/*------------------------------------------------------------------------------
+ 17.0 - Plugins
+------------------------------------------------------------------------------*/
+
+.plugins tbody th.check-column,
+.plugins tbody {
+ padding: 8px 0 0 2px;
+}
+
+.plugins tbody th.check-column input[type=checkbox] {
+ margin-top: 4px;
+}
+
+#update-plugins-table tbody td p {
+ margin-top: 0;
+}
+
+#update-plugins-table tbody td p strong {
+ font-size: 14px;
+}
+
+.plugins thead th.check-column,
+.plugins tfoot th.check-column,
+.plugins .inactive th.check-column {
+ padding-left: 6px;
+}
+
+#update-plugins-table thead th.check-column,
+#update-plugins-table tfoot th.check-column {
+ padding-top: 11px;
+}
+
+.plugins,
+.plugins th,
+.plugins td {
+ color: #000;
+}
+
+.plugins tr {
+ background: #fff;
+}
+
+.plugins p {
+ margin: 0 4px;
+ padding: 0;
+}
+
+.plugins .desc p {
+ margin: 0 0 8px;
+}
+
+.plugins td.desc {
+ line-height: 1.5em;
+}
+
+.plugins .desc ul,
+.plugins .desc ol {
+ margin: 0 0 0 2em;
+}
+
+.plugins .desc ul {
+ list-style-type: disc;
+}
+
+.plugins .row-actions {
+ font-size: 13px;
+ padding: 0;
+}
+
+.plugins .inactive td,
+.plugins .inactive th,
+.plugins .active td,
+.plugins .active th {
+ padding: 10px 9px;
+}
+
+.plugins .active td,
+.plugins .active th {
+ background-color: #f7fcfe;
+}
+
+.plugins .update th,
+.plugins .update td {
+ border-bottom: 0;
+}
+
+.plugin-update-tr td {
+ border-top: 0;
+}
+
+.plugins .inactive td,
+.plugins .inactive th,
+.plugins .active td,
+.plugins .active th,
+.plugin-install #the-list td,
+.upgrade .plugins td,
+.upgrade .plugins th {
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
+ box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
+}
+
+.plugins tr.active.plugin-update-tr + tr.inactive th,
+.plugins tr.active.plugin-update-tr + tr.inactive td,
+.plugins tr.active + tr.inactive th,
+.plugins tr.active + tr.inactive td {
+ border-top: 1px solid rgba(0,0,0,0.03);
+ -webkit-box-shadow: inset 0 1px 0 rgba(0,0,0,0.02), inset 0 -1px 0 #e1e1e1;
+ box-shadow: inset 0 1px 0 rgba(0,0,0,0.02), inset 0 -1px 0 #e1e1e1;
+}
+
+.plugins .update td,
+.plugins .update th,
+.upgrade .plugins tr:last-of-type td,
+.upgrade .plugins tr:last-of-type th,
+.plugins tr.active + tr.inactive.update th,
+.plugins tr.active + tr.inactive.update td {
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+.plugins .active.update td,
+.plugins .active.update th,
+tr.active.update + tr.plugin-update-tr .plugin-update {
+ background-color: #fef7f1;
+}
+
+.plugins .active th.check-column {
+ border-left: 4px solid #2ea2cc;
+}
+
+.plugins .active.update th.check-column,
+.plugins .active.update + .plugin-update-tr .plugin-update {
+ border-left: 4px solid #d54e21;
+}
+
+#wpbody-content .plugins .plugin-title,
+#wpbody-content .plugins .theme-title {
+ padding-right: 12px;
+ white-space:nowrap;
+}
+
+.plugins .inactive .plugin-title strong {
+ font-weight: 400;
+}
+
+.plugins .second,
+.plugins .row-actions {
+ padding: 0 0 5px;
+}
+
+.plugins .update .second,
+.plugins .update .row-actions {
+ padding-bottom: 0;
+}
+
+.plugins-php .widefat tfoot th,
+.plugins-php .widefat tfoot td {
+ border-top-style: solid;
+ border-top-width: 1px;
+}
+
+.plugin-update-tr .update-message {
+ font-size: 13px;
+ font-weight: normal;
+ margin: 6px 12px 12px;
+ padding: 6px 12px;
+ margin: 0 10px 8px 31px;
+ background-color: #f7f7f7;
+ background-color: rgba(0,0,0,0.03);
+}
+
+.plugin-update-tr .update-message:before {
+ color: #d54e21;
+ content: '\f463';
+ display: inline-block;
+ font: normal 20px/1 'dashicons';
+ speak: none;
+ margin: 0 8px 0 -2px;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ vertical-align: top;
+}
+
+.plugins .plugin-update {
+ padding: 0;
+ border: none;
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
+ box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
+}
+
+/* update notices for active plugins */
+tr.active + tr.plugin-update-tr .plugin-update {
+ background-color: #f7fcfe;
+}
+
+tr.active + tr.plugin-update-tr .plugin-update .update-message {
+ background-color: #fcf3ef;
+}
+
+.plugin-install-php h4 {
+ margin: 2.5em 0 8px;
+}
+
+/* ms */
+/* Background Color for Site Status */
+.wp-list-table .site-deleted {
+ background: #ff8573;
+}
+.wp-list-table .site-spammed {
+ background: #faafaa;
+}
+.wp-list-table .site-archived {
+ background: #ffebe8;
+}
+.wp-list-table .site-mature {
+ background: #fecac2;
+}
+
+/* =Media Queries
+-------------------------------------------------------------- */
+
+/**
+ * HiDPI Displays
+ */
+@media screen and ( max-width: 782px ) {
+ /* WP List Table Options & Filters */
+ .tablenav {
+ height: auto;
+ }
+
+ .tablenav.top {
+ margin: 0;
+ }
+
+ .tablenav.bottom {
+ position: relative;
+ margin-top: 15px;
+ }
+
+ .tablenav br {
+ display: none;
+ }
+
+ .tablenav br.clear {
+ display: block;
+ }
+
+ .tablenav.top .actions, .view-switch {
+ display: none;
+ }
+
+ /* Pagination */
+ .tablenav.top .displaying-num {
+ display: none;
+ }
+
+ .tablenav.bottom .displaying-num {
+ position: absolute;
+ right: 0;
+ top: 10px;
+ font-size: 14px;
+ }
+
+ .tablenav-pages {
+ width: 100%;
+ text-align: center;
+ margin: 0 0 25px;
+ }
+
+ .tablenav.bottom .tablenav-pages {
+ margin-top: 25px;
+ }
+
+ .tablenav.top .tablenav-pages.one-page {
+ display: none;
+ }
+
+ .tablenav.bottom .tablenav-pages.one-page {
+ margin: 15px 0 0 0;
+ height: 0;
+ }
+
+ .tablenav-pages .pagination-links .paging-input {
+ font-size: 18px;
+ }
+
+ .tablenav-pages .pagination-links a {
+ padding: 8px 20px 11px;
+ font-size: 18px;
+ background: rgba(0, 0, 0, 0.05);
+ }
+
+ .tablenav-pages .pagination-links .current-page {
+ padding: 10px;
+ font-size: 14px;
+ }
+
+ /* WP List Table Adjustments: General */
+ .form-wrap > p {
+ display: none;
+ }
+
+ .comment-count {
+ font-size: 14px;
+ }
+
+ /* Columns to hide */
+ .fixed .column-date,
+ .fixed .column-author,
+ .column-categories,
+ .column-tags,
+ .tags .column-description,
+ .media .column-parent,
+ .users .column-email,
+ .users .column-name,
+ .sites .column-registered,
+ .sites .column-users {
+ display: none;
+ }
+
+ .fixed .column-comment .comment-author {
+ display: block;
+ }
+
+ /* Posts */
+ .column-title {
+ width: 85%;
+ }
+
+ .fixed .column-comments, .widefat .check-column {
+ width: 35px
+ }
+
+ .widefat thead .check-column, .widefat tfoot .check-column {
+ padding: 10px 0 10px;
+ }
+
+ .widefat * {
+ word-wrap: normal;
+ }
+
+ /* Quick Edit and Bulk Edit */
+ #wpbody-content .quick-edit-row-post .inline-edit-col-left,
+ #wpbody-content .quick-edit-row-post .inline-edit-col-right,
+ #wpbody-content .inline-edit-row-post .inline-edit-col-center,
+ #wpbody-content .quick-edit-row-page .inline-edit-col-left,
+ #wpbody-content .quick-edit-row-page .inline-edit-col-right,
+ #wpbody-content .bulk-edit-row-post .inline-edit-col-right,
+ #wpbody-content .bulk-edit-row .inline-edit-col-left,
+ #wpbody-content .bulk-edit-row-page .inline-edit-col-right,
+ #wpbody-content .bulk-edit-row .inline-edit-col-bottom {
+ float: none;
+ width: 100%;
+ }
+
+ #wpbody-content .quick-edit-row fieldset .inline-edit-col label,
+ #wpbody-content .quick-edit-row fieldset .inline-edit-group label,
+ #wpbody-content .bulk-edit-row fieldset .inline-edit-col label,
+ #wpbody-content .bulk-edit-row fieldset .inline-edit-group label {
+ max-width: none;
+ float: none;
+ margin-bottom: 5px;
+ }
+
+ #wpbody .bulk-edit-row fieldset select {
+ display: block;
+ width: 100%;
+ max-width: none;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ }
+
+ .inline-edit-row fieldset ul.cat-checklist label,
+ .inline-edit-row #bulk-titles div {
+ font-size: 16px;
+ }
+
+ .inline-edit-row fieldset label span.title {
+ float: none;
+ }
+
+ .inline-edit-row fieldset label.inline-edit-tags {
+ padding: 0 0.5em;
+ }
+
+ .inline-edit-row fieldset .inline-edit-col label.inline-edit-tags {
+ padding: 0;
+ }
+
+ .inline-edit-row fieldset label span.input-text-wrap {
+ margin-left: 0;
+ }
+
+ .inline-edit-row fieldset input[name=jj],
+ .inline-edit-row fieldset input[name=hh],
+ .inline-edit-row fieldset input[name=mn] {
+ width: 3em;
+ }
+
+ .inline-edit-row fieldset input[name=aa] {
+ width: 4.5em;
+ }
+
+ #bulk-titles div {
+ margin: 0.8em 0.3em;
+ }
+
+ #bulk-titles div a {
+ height: 22px;
+ }
+
+ /* Taxonomies */
+ .tags .column-posts {
+ width: 50px;
+ }
+
+ .tags .column-slug {
+ width: 30%;
+ }
+
+ /* Comments */
+ .comments .column-response {
+ width: 35%;
+ }
+
+ /* Users */
+ .users .column-role {
+ width: 35%;
+ }
+
+ /* Network admin sites */
+ .sites .column-blogname {
+ width: 55%;
+ }
+
+ /* Updates */
+ #wpbody-content #update-themes-table .plugin-title {
+ width: auto;
+ }
+
+ /* Links */
+ .link-manager-php #posts-filter {
+ margin-top: 25px;
+ }
+
+ .link-manager-php .tablenav.bottom {
+ overflow: hidden;
+ }
+
+ /* Plugin/Theme Management Page */
+ .wp-list-table.plugins {
+ position: relative;
+ margin-top: 35px;
+ margin-bottom: 50px;
+ }
+
+ .wp-list-table.plugins thead .column-description,
+ #wpbody-content .wp-list-table.plugins tfoot .column-description,
+ .wp-list-table.plugins th#description {
+ display: none;
+ }
+
+ #wpbody-content .wp-list-table.plugins,
+ #wpbody-content .wp-list-table.plugins thead,
+ #wpbody-content .wp-list-table.plugins tbody,
+ #wpbody-content .wp-list-table.plugins tr,
+ #wpbody-content .wp-list-table.plugins .column-description,
+ #wpbody-content .wp-list-table.plugins .plugin-title,
+ #wpbody-content .wp-list-table.plugins .theme-title,
+ #wpbody-content .wp-list-table.plugins .plugin-update,
+ #wpbody-content .wp-list-table.plugins .manage-column.column-name {
+ display: block;
+ width: auto;
+ }
+
+ .wp-list-table.plugins thead,
+ .wp-list-table.plugins tfoot {
+ position: absolute;
+ top: -35px;
+ left: 0;
+ right: 0;
+ width: auto;
+ height: 35px;
+ }
+
+ .wp-list-table.plugins tfoot {
+ bottom: -35px;
+ top: auto;
+ }
+
+ .active, .inactive {
+ padding-top: 0;
+ }
+
+ .wp-list-table.plugins .plugin-title,
+ .wp-list-table.plugins .theme-title {
+ padding-top: 13px;
+ padding-bottom: 4px;
+ }
+
+ .plugins tr.active + tr.inactive th.check-column,
+ .plugins tr.active + tr.inactive td,
+ .wp-list-table.plugins .plugin-title,
+ .wp-list-table.plugins .theme-title,
+ .wp-list-table.plugins tbody th {
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ }
+
+ .plugins tbody {
+ padding: 1px 0 0;
+ }
+
+ .plugins tr.active + tr.inactive td.column-description {
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
+ }
+
+ .plugins tr.active + tr.inactive th.check-column,
+ .plugins tr.active + tr.inactive td {
+ border-top: none;
+ }
+
+ .wp-list-table.plugins .column-description {
+ padding-top: 0;
+ }
+
+ .wp-list-table.plugins .manage-column.column-name,
+ .wp-list-table.plugins .column-description,
+ .wp-list-table.plugins .plugin-title,
+ .wp-list-table.plugins .theme-title {
+ padding-right: 12px;
+ padding-left: 46px;
+ }
+
+ .wp-list-table.plugins tr {
+ position: relative;
+ }
+
+ .wp-list-table.plugins th.check-column,
+ .wp-list-table.plugins tr.update th.check-column {
+ position: absolute;
+ height: auto;
+ top: 0;
+ bottom: 0;
+ left: 0;
+ padding-left: 2px;
+ padding-top: 18px;
+ }
+
+ .wp-list-table.plugins thead th.check-column,
+ .wp-list-table.plugins tfoot th.check-column {
+ padding-left: 3px;
+ padding-top: 11px;
+ background: none;
+ }
+
+ .widefat tbody th.check-column input[type="checkbox"] {
+ margin-top: -3px;
+ margin-left: 8px;
+ }
+
+ .wp-list-table.plugins .active .check-column input,
+ .wp-list-table.plugins .update .check-column input {
+ margin-left: 5px;
+ }
+
+ .wp-list-table.plugins thead .check-column input,
+ .wp-list-table.plugins tfoot .check-column input {
+ margin-top: -6px;
+ }
+
+ .wp-list-table.plugins .active th.check-column {
+ background: none;
+ }
+
+ .wp-list-table.plugins .plugin-title strong,
+ .wp-list-table.plugins .theme-title strong {
+ font-size: 1.4em;
+ line-height: 1.6em;
+ }
+
+ /* Add New plugins page */
+ table.plugin-install .column-name,
+ table.plugin-install .column-version,
+ table.plugin-install .column-rating,
+ table.plugin-install .column-description {
+ display: block;
+ width: auto;
+ }
+
+ table.plugin-install th.column-name,
+ table.plugin-install th.column-version,
+ table.plugin-install th.column-rating,
+ table.plugin-install th.column-description {
+ display: none;
+ }
+
+ table.plugin-install td.column-name strong {
+ font-size: 1.4em;
+ line-height: 1.6em;
+ }
+
+ table.plugin-install #the-list td {
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ }
+
+ table.plugin-install #the-list tr {
+ display: block;
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
+ box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
+ }
+}
diff --git a/sources/wp-admin/css/login-rtl.css b/sources/wp-admin/css/login-rtl.css
new file mode 100644
index 0000000..a3c7bed
--- /dev/null
+++ b/sources/wp-admin/css/login-rtl.css
@@ -0,0 +1,270 @@
+@import url(forms.css);
+@import url(l10n.css);
+
+html,
+body {
+ height: 100%;
+ margin: 0;
+ padding: 0;
+}
+
+html {
+ background: #f1f1f1;
+}
+
+body {
+ background: #f1f1f1;
+ min-width: 0;
+ color: #444;
+ font-family: "Open Sans", sans-serif;
+ font-size: 13px;
+ line-height: 1.4em;
+}
+
+a {
+ color: #0074a2;
+ -webkit-transition-property: border, background, color;
+ transition-property: border, background, color;
+ -webkit-transition-duration: .05s;
+ transition-duration: .05s;
+ -webkit-transition-timing-function: ease-in-out;
+ transition-timing-function: ease-in-out;
+}
+
+a {
+ outline: 0;
+}
+
+a:hover,
+a:active {
+ color: #2ea2cc;
+}
+
+a:focus {
+ color: #124964;
+}
+
+a:focus,
+a:active {
+ outline: thin dotted;
+}
+
+p {
+ line-height: 1.5;
+}
+
+.login .message {
+ border-right: 4px solid #7ad03a;
+ padding: 1px 12px;
+ background-color: #fff;
+ -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
+ box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
+}
+
+.login #login_error {
+ border-right: 4px solid #dd3d36;
+ background: #fff;
+ -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
+ box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
+}
+
+#loginform p.submit,
+.login-action-lostpassword p.submit {
+ border: none;
+ margin: -10px 0 20px; /* May want to revisit this */
+}
+
+.login * {
+ margin: 0;
+ padding: 0;
+}
+
+.login form {
+ margin-top: 20px;
+ margin-right: 0;
+ padding: 26px 24px 46px;
+ font-weight: normal;
+ overflow: hidden;
+ background: #fff;
+ -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.13);
+ box-shadow: 0 1px 3px rgba(0,0,0,0.13);
+}
+
+.login form .forgetmenot {
+ font-weight: normal;
+ float: right;
+ margin-bottom: 0;
+}
+
+.login .button-primary {
+ float: left;
+}
+
+#login form p {
+ margin-bottom: 0;
+}
+
+#login form p.submit {
+ margin: 0;
+ padding: 0;
+}
+
+.login label {
+ color: #777;
+ font-size: 14px;
+}
+
+.login form .forgetmenot label {
+ font-size: 12px;
+ line-height: 19px;
+}
+
+.login h1 {
+ text-align: center;
+}
+
+.login h1 a {
+ background-image: url(../images/w-logo-blue.png?ver=20131202);
+ background-image: none, url(../images/wordpress-logo.svg?ver=20131107);
+ -webkit-background-size: 80px 80px;
+ background-size: 80px 80px;
+ background-position: center top;
+ background-repeat: no-repeat;
+ color: #999;
+ height: 80px;
+ font-size: 20px;
+ font-weight: normal;
+ line-height: 1.3em;
+ margin: 0 auto 25px;
+ padding: 0;
+ text-decoration: none;
+ width: 80px;
+ text-indent: -9999px;
+ outline: none;
+ overflow: hidden;
+ display: block;
+}
+
+#login {
+ width: 320px;
+ padding: 8% 0 0;
+ margin: auto;
+}
+
+#login_error,
+.login .message {
+ margin-right: 0;
+ padding: 12px;
+}
+
+.login #nav,
+.login #backtoblog {
+ font-size: 13px;
+ padding: 0 24px 0;
+}
+
+.login #nav {
+ margin: 24px 0 0 0;
+}
+
+#backtoblog {
+ margin: 16px 0 0 0;
+}
+
+.login #nav a,
+.login #backtoblog a {
+ text-decoration: none;
+ color: #999;
+}
+
+.login #nav a:hover,
+.login #backtoblog a:hover,
+.login h1 a:hover {
+ color: #2ea2cc;
+}
+
+.login form .input,
+.login input[type="text"] {
+ font-size: 24px;
+ line-height: 1;
+ width: 100%;
+ padding: 3px;
+ margin: 2px 0 16px 6px;
+}
+
+.login form .input,
+.login input[type="text"],
+.login form input[type="checkbox"] {
+ background: #fbfbfb;
+}
+
+.ie7 .login form .input,
+.ie8 .login form .input {
+ font-family: sans-serif;
+}
+
+.login #pass-strength-result {
+ width: 250px;
+ font-weight: 600;
+ margin: 12px 0 6px;
+ padding: 6px 5px;
+ text-align: center;
+}
+
+.mobile #login {
+ padding: 20px 0;
+}
+
+.mobile #login form,
+.mobile #login .message,
+.mobile #login_error {
+ margin-right: 0;
+}
+
+.mobile #login #nav,
+.mobile #login #backtoblog {
+ margin-right: 8px;
+}
+
+.mobile #login h1 a {
+ width: auto;
+}
+
+body.interim-login {
+ height: auto;
+}
+
+.interim-login #login {
+ padding: 0;
+ margin: 5px auto 20px;
+}
+
+.interim-login.login h1 a {
+ width: auto;
+}
+
+.interim-login #login_error,
+.interim-login.login .message {
+ margin: 0 0 16px;
+}
+
+.interim-login.login form {
+ margin: 0;
+}
+
+@-ms-viewport {
+ width: device-width;
+}
+
+@media screen and ( max-width: 782px ) {
+ .interim-login input[type=checkbox] {
+ height: 16px;
+ width: 16px;
+ }
+
+ .interim-login input[type=checkbox]:checked:before {
+ width: 16px;
+ font: normal 21px/1 'dashicons';
+ margin: -3px -4px 0 0;
+ }
+}
\ No newline at end of file
diff --git a/sources/wp-admin/css/login-rtl.min.css b/sources/wp-admin/css/login-rtl.min.css
new file mode 100644
index 0000000..52197f3
--- /dev/null
+++ b/sources/wp-admin/css/login-rtl.min.css
@@ -0,0 +1 @@
+input,input[type=email],input[type=number],input[type=password],input[type=search],input[type=text],input[type=url],textarea{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=email],input[type=url]{direction:ltr}input[type=checkbox],input[type=radio]{border:1px solid #bbb;background:#fff;color:#555;clear:none;cursor:pointer;display:inline-block;line-height:0;height:16px;margin:-4px 4px 0 0;outline:0;padding:0!important;text-align:center;vertical-align:middle;width:16px;min-width:16px;-webkit-appearance:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);-webkit-transition:.05s border-color ease-in-out;transition:.05s border-color ease-in-out}input[type=radio]:checked+label:before{color:#888}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:#2ea2cc}.wp-admin p input[type=checkbox],.wp-admin p input[type=radio],td>input[type=checkbox]{margin-top:0}.wp-admin p label input[type=checkbox]{margin-top:-4px}.wp-admin p label input[type=radio]{margin-top:-2px}input[type=radio]{-webkit-border-radius:50%;border-radius:50%;margin-right:4px;line-height:10px}input[type=checkbox]:checked:before,input[type=radio]:checked:before{float:left;display:inline-block;vertical-align:middle;width:16px;font:400 21px/1 dashicons;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}input[type=checkbox]:checked:before{content:'\f147';margin:-3px 0 0 -4px;color:#1e8cbe}input[type=radio]:checked:before{content:'\2022';text-indent:-9999px;-webkit-border-radius:50px;border-radius:50px;font-size:24px;width:6px;height:6px;margin:4px;line-height:16px;background-color:#1e8cbe}input.readonly,textarea.readonly{background-color:#ddd}@-moz-document url-prefix(){.form-table input.tog,input[type=checkbox],input[type=radio]{margin-bottom:-1px}}input[type=search]{-webkit-appearance:textfield}input[type=search]::-webkit-search-decoration{display:none}.ie8 input[type=password]{font-family:sans-serif}button,input,select,textarea{font-family:inherit;font-size:inherit;font-weight:inherit}input,select,textarea{font-size:14px;padding:3px 5px;line-height:15px;-webkit-border-radius:0;border-radius:0}textarea{overflow:auto;padding:2px 6px;line-height:1.4}input[type=email],input[type=number],input[type=password],input[type=search],input[type=text],input[type=url],select,textarea{outline:0}.wp-admin input[type=file]{padding:3px 0}label{cursor:pointer}input,select{margin:1px;padding:3px 5px}input.code{padding-top:6px}textarea.code{line-height:1.4;padding:4px 6px 1px}input[type=email],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],select,textarea{border:1px solid #ddd;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.07);box-shadow:inset 0 1px 2px rgba(0,0,0,.07);background-color:#fff;color:#333;-webkit-transition:.05s border-color ease-in-out;transition:.05s border-color ease-in-out}select[disabled]{color:#7f7f7f}input[type=checkbox]:focus,input[type=email]:focus,input[type=number]:focus,input[type=password]:focus,input[type=radio]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,select:focus,textarea:focus{border-color:#5b9dd9;-webkit-box-shadow:0 0 2px rgba(30,140,190,.8);box-shadow:0 0 2px rgba(30,140,190,.8)}input[readonly]{background-color:#eee}.wp-core-ui :-moz-placeholder,:-moz-placeholder{color:#a9a9a9}.form-invalid{background-color:#ffebe8!important}.form-invalid input,.form-invalid select{border-color:#c00!important}.form-input-tip{color:#666}input.disabled,input:disabled,textarea.disabled,textarea:disabled{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.04);box-shadow:inset 0 1px 2px rgba(0,0,0,.04);border-color:rgba(222,222,222,.75);background:rgba(255,255,255,.5);color:rgba(51,51,51,.5)}input[type=checkbox]:disabled,input[type=checkbox]:disabled:checked:before,input[type=radio]:disabled,input[type=radio]:disabled:checked:before{opacity:.7}.wp-admin select{padding:2px;line-height:28px;height:28px;vertical-align:middle}.wp-admin .button-cancel{padding:0 5px;line-height:2}.meta-box-sortables select{max-width:100%}.wp-admin select[multiple]{height:auto}.submit{padding:1.5em 0;margin:5px 0;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;border:0}form p.submit a.cancel:hover{text-decoration:none}p.submit{text-align:left;max-width:100%;margin-top:20px;padding-top:10px}.textright p.submit{border:0;text-align:right}table.form-table+input+input+p.submit,table.form-table+input+p.submit,table.form-table+p.submit{border-top:0;padding-top:0}#major-publishing-actions input,#minor-publishing-actions .preview,#minor-publishing-actions input{text-align:center}input.all-options,textarea.all-options{width:250px}input.large-text,textarea.large-text{width:99%}#adduser .form-field input,input.regular-text{width:25em}input.small-text{width:50px;padding:1px 6px}input[type=number].small-text{width:65px}#doaction,#doaction2,#post-query-submit{margin:1px 8px 0 0}.tablenav #changeit,.tablenav #clear-recent-list,.tablenav #delete_all{margin-top:1px}.tablenav .actions select{float:left;margin-right:6px;max-width:200px}.ie8 .tablenav .actions select{width:155px}.ie8 .tablenav .actions select#cat{width:200px}#timezone_string option{margin-left:1em}#upload-form label{color:#777}#your-profile label+a,fieldset label,label{vertical-align:middle}#misc-publishing-actions label,.options-media-php label[for*="_size_"]{vertical-align:baseline}#misc-publishing-actions label[for=post_status]:before{content:'\f173';display:inline-block;font:400 20px/1 dashicons;speak:none;left:-1px;padding:0 5px 0 0;position:relative;top:0;text-decoration:none!important;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#pass-strength-result{background-color:#eee;border:1px solid #ddd;float:left;margin:13px 5px 5px 1px;padding:3px 5px;text-align:center;width:200px;display:none}#pass-strength-result.short{background-color:#ffa0a0;border-color:#f04040}#pass-strength-result.bad{background-color:#ffb78c;border-color:#ff853c}#pass-strength-result.good{background-color:#ffec8b;border-color:#fc0}#pass-strength-result.strong{background-color:#c3ff88;border-color:#8dff1c}.indicator-hint{padding-top:8px}p.search-box{float:right;margin:0}.network-admin.themes-php p.search-box{clear:left}#search-plugins input[name="s"],.search-box input[name="s"],.tagsdiv .newtag{float:left;height:28px;margin:0 4px 0 0}input[type=text].ui-autocomplete-loading{background:transparent url(../images/loading.gif) no-repeat right center;visibility:visible}ul#add-to-blog-users{margin:0 0 0 14px}.ui-autocomplete-input.open{-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0}.ui-autocomplete{padding:0;margin:0;list-style:none;position:absolute;z-index:10000;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;border:1px solid #aaa;background-color:#efefef}.ui-autocomplete li{margin-bottom:0;white-space:nowrap;text-align:left}.ui-autocomplete li a{display:block;height:100%;padding:4px 10px;color:#444}.ui-autocomplete li a.ui-state-focus{background-color:#ddd;cursor:pointer}.form-table{border-collapse:collapse;margin-top:.5em;width:100%;clear:both}.form-table,.form-table td,.form-table td p,.form-table th,.form-wrap label{font-size:14px}.form-table td{margin-bottom:9px;padding:15px 10px;line-height:1.3;vertical-align:middle}.form-table th,.form-wrap label{color:#222;font-weight:400;text-shadow:none;vertical-align:baseline}.form-table th{vertical-align:top;text-align:left;padding:20px 10px 20px 0;width:200px;line-height:1.3;font-weight:600}.form-table th.th-full{width:auto;font-weight:400}.form-table td p{margin-top:4px;margin-bottom:0}.form-table td fieldset label{margin:.25em 0 .5em!important;display:inline-block}.form-table td fieldset label,.form-table td fieldset li,.form-table td fieldset p{line-height:1.4em}.form-table input.tog,.form-table input[type=radio]{margin-top:-4px;margin-right:4px;float:none}.form-table .pre{padding:8px;margin:0}table.form-table td .updated{font-size:13px}#profile-page .form-table textarea{width:500px;margin-bottom:6px}#profile-page .form-table #rich_editing{margin-right:5px}#your-profile legend{font-size:22px}#display_name{width:15em}#createuser .form-field input{width:25em}.color-option{display:inline-block;width:24%;padding:5px 15px 15px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin-bottom:3px}.color-option.selected,.color-option:hover{background:#ddd}.color-palette{width:100%;border-spacing:0;border-collapse:collapse}.color-palette td{height:20px;padding:0;border:0}.color-option{cursor:pointer}.tool-box .title{margin:8px 0;font-size:18px;font-weight:400;line-height:24px}.pressthis{margin:20px 0}.pressthis a,.pressthis a:active,.pressthis a:focus,.pressthis a:hover{display:inline-block;position:relative;cursor:move;color:#333;background:#e6e6e6;-webkit-border-radius:5px;border-radius:5px;border:1px solid #b4b4b4;font-style:normal;line-height:16px;font-size:14px;text-decoration:none}.pressthis a:active{outline:0}.pressthis a:hover:after{-webkit-transform:skew(20deg) rotate(9deg);-ms-transform:skew(20deg) rotate(9deg);transform:skew(20deg) rotate(9deg);-webkit-box-shadow:0 10px 8px rgba(0,0,0,.7);box-shadow:0 10px 8px rgba(0,0,0,.7)}.pressthis a span{display:inline-block;margin:0;padding:0 12px 8px 9px}.pressthis a span:before{color:#777;font:400 20px/1 dashicons;content:'\f157';position:relative;display:inline-block;top:4px;margin-right:4px}.pressthis a:after{content:'';width:70%;height:55%;z-index:-1;position:absolute;right:10px;bottom:9px;background:0 0;-webkit-transform:skew(20deg) rotate(6deg);-ms-transform:skew(20deg) rotate(6deg);transform:skew(20deg) rotate(6deg);-webkit-box-shadow:0 10px 8px rgba(0,0,0,.6);box-shadow:0 10px 8px rgba(0,0,0,.6)}#local-time,#utc-time{padding-left:25px;font-style:italic}.defaultavatarpicker .avatar{margin:2px 0;vertical-align:middle}.options-general-php .spinner{float:none;margin:-3px 3px}@media screen and (max-width:782px){textarea{-webkit-appearance:none}input[type=number],input[type=password],input[type=search],input[type=text]{-webkit-appearance:none;padding:6px 10px}input.code{padding-bottom:5px;padding-top:10px}.widefat th input[type=checkbox],input[type=checkbox]{-webkit-appearance:none;padding:10px}.widefat th input[type=checkbox]{margin-bottom:8px}.widefat th input[type=checkbox]:before,input[type=checkbox]:checked:before{font:400 30px/1 Dashicons;margin:-3px -5px}input[type=checkbox],input[type=radio]{height:25px;width:25px}.wp-admin p input[type=checkbox],.wp-admin p input[type=radio]{margin-top:-3px}input[type=radio]:checked:before{vertical-align:middle;width:9px;height:9px;margin:7px;line-height:16px}.wp-upload-form input[type=submit]{margin-top:10px}#wpbody select{height:36px;font-size:16px}.wp-admin .button-cancel{padding:0;font-size:14px}#createuser .form-field input{width:100%}.form-table{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.form-table td,.form-table th{display:block;width:auto;vertical-align:middle}.form-table .color-palette td{display:table-cell;width:15px}.form-table table.color-palette{margin-right:10px}input,textarea{font-size:16px}#profile-page .form-table textarea,.form-table span.description,.form-table td input[type=password],.form-table td input[type=text],.form-table td select,.form-table td textarea{width:100%;font-size:16px;line-height:1.5;padding:7px 10px;display:block;max-width:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.form-table input[type=text].small-text,input[type=number].small-text,input[type=password].small-text,input[type=search].small-text,input[type=text].small-text{width:auto;max-width:55px;display:inline;padding:3px 6px;margin:0 3px}#pass-strength-result{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:8px}p.search-box{float:none;position:absolute;bottom:0;width:98%;height:90px;margin-bottom:20px}p.search-box input[name="s"]{height:auto;float:none;width:100%;margin-bottom:10px;vertical-align:middle;-webkit-appearance:none}p.search-box input[type=submit]{margin-bottom:10px}.form-table span.description{padding:4px 0 0;line-height:1.4em}.form-table th{padding-top:10px;padding-bottom:0;border-bottom:0}.form-table td{padding-top:8px;padding-left:0}.form-table input.regular-text{width:100%}.form-table label{font-size:14px}.form-table fieldset label{display:block}#utc-time{margin-top:10px}#local-time,#utc-time{display:block;float:none;padding:0;line-height:2}}@media only screen and (max-width:768px){.form-field input,.form-field textarea{width:99%}.form-wrap .form-field{padding:0}#profile-page .form-table textarea{max-width:400px;width:auto}}@media screen and (max-width:600px){.color-option{width:49%}}body.rtl,body.rtl .press-this a.wp-switch-editor{font-family:Tahoma,Arial,sans-serif}body.locale-he-il,body.locale-he-il .press-this a.wp-switch-editor{font-family:Arial,sans-serif}.locale-he-il em{font-style:normal;font-weight:700}.locale-zh-cn #local-time,.locale-zh-cn #utc-time,.locale-zh-cn .form-wrap p,.locale-zh-cn .howto,.locale-zh-cn .inline-edit-row fieldset span.checkbox-title,.locale-zh-cn .inline-edit-row fieldset span.title,.locale-zh-cn .js .input-with-default-title,.locale-zh-cn .link-to-original,.locale-zh-cn .tablenav .displaying-num,.locale-zh-cn p.description,.locale-zh-cn p.help,.locale-zh-cn p.install-help,.locale-zh-cn span.description{font-style:normal}.locale-zh-cn .hdnle a{font-size:12px}.locale-zh-cn form.upgrade .hint{font-style:normal;font-size:100%}.locale-zh-cn #wp-fullscreen-tagline{font-family:KaiTi,"楷体",sans-serif}.locale-zh-cn #wp-fullscreen-modes a{font-size:12px}.locale-zh-cn #sort-buttons{font-size:1em!important}.locale-de-de .inline-edit-row fieldset label span.title{width:7em}.locale-de-de .inline-edit-row fieldset label span.input-text-wrap{margin-left:7em}.locale-de-de #customize-header-actions .button{padding:0 5px 1px}.locale-de-de #customize-header-actions .spinner{margin:16px 3px 0}.locale-ru-ru .inline-edit-row fieldset label span.title{width:8em}.locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap{margin-left:8em}.locale-ru-ru.post-php .tagsdiv .newtag{width:165px}.locale-ru-ru.press-this .posting{margin-right:277px}.locale-ru-ru .press-this-sidebar{width:265px}.locale-ru-ru #customize-header-actions .button{padding:0 5px 1px}.locale-ru-ru #customize-header-actions .spinner{margin:16px 3px 0}.locale-lt-lt .inline-edit-row fieldset label span.title{width:8em}.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap{margin-left:8em}body,html{height:100%;margin:0;padding:0}html{background:#f1f1f1}body{background:#f1f1f1;min-width:0;color:#444;font-family:"Open Sans",sans-serif;font-size:13px;line-height:1.4em}a{color:#0074a2;-webkit-transition-property:border,background,color;transition-property:border,background,color;-webkit-transition-duration:.05s;transition-duration:.05s;-webkit-transition-timing-function:ease-in-out;transition-timing-function:ease-in-out;outline:0}a:active,a:hover{color:#2ea2cc}a:focus{color:#124964}a:active,a:focus{outline:thin dotted}p{line-height:1.5}.login .message{border-right:4px solid #7ad03a;background-color:#fff;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}.login #login_error{border-right:4px solid #dd3d36;background:#fff;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}#loginform p.submit,.login-action-lostpassword p.submit{border:0;margin:-10px 0 20px}.login *{margin:0;padding:0}.login form{margin-top:20px;margin-right:0;padding:26px 24px 46px;font-weight:400;overflow:hidden;background:#fff;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.13);box-shadow:0 1px 3px rgba(0,0,0,.13)}.login form .forgetmenot{font-weight:400;float:right;margin-bottom:0}.login .button-primary{float:left}#login form p{margin-bottom:0}#login form p.submit{margin:0;padding:0}.login label{color:#777;font-size:14px}.login form .forgetmenot label{font-size:12px;line-height:19px}.login h1{text-align:center}.login h1 a{background-image:url(../images/w-logo-blue.png?ver=20131202);background-image:none,url(../images/wordpress-logo.svg?ver=20131107);-webkit-background-size:80px 80px;background-size:80px 80px;background-position:center top;background-repeat:no-repeat;color:#999;height:80px;font-size:20px;font-weight:400;line-height:1.3em;margin:0 auto 25px;padding:0;text-decoration:none;width:80px;text-indent:-9999px;outline:0;overflow:hidden;display:block}#login{width:320px;padding:8% 0 0;margin:auto}#login_error,.login .message{margin-right:0;padding:12px}.login #backtoblog,.login #nav{font-size:13px;padding:0 24px}.login #nav{margin:24px 0 0}#backtoblog{margin:16px 0 0}.login #backtoblog a,.login #nav a{text-decoration:none;color:#999}.login #backtoblog a:hover,.login #nav a:hover,.login h1 a:hover{color:#2ea2cc}.login form .input,.login input[type=text]{font-size:24px;line-height:1;width:100%;padding:3px;margin:2px 0 16px 6px}.login form .input,.login form input[type=checkbox],.login input[type=text]{background:#fbfbfb}.ie7 .login form .input,.ie8 .login form .input{font-family:sans-serif}.login #pass-strength-result{width:250px;font-weight:600;margin:12px 0 6px;padding:6px 5px;text-align:center}.mobile #login{padding:20px 0}.mobile #login .message,.mobile #login form,.mobile #login_error{margin-right:0}.mobile #login #backtoblog,.mobile #login #nav{margin-right:8px}.mobile #login h1 a{width:auto}body.interim-login{height:auto}.interim-login #login{padding:0;margin:5px auto 20px}.interim-login.login h1 a{width:auto}.interim-login #login_error,.interim-login.login .message{margin:0 0 16px}.interim-login.login form{margin:0}@-ms-viewport{width:device-width}@media screen and (max-width:782px){.interim-login input[type=checkbox]{height:16px;width:16px}.interim-login input[type=checkbox]:checked:before{width:16px;font:400 21px/1 dashicons;margin:-3px -4px 0 0}}
\ No newline at end of file
diff --git a/sources/wp-admin/css/login.css b/sources/wp-admin/css/login.css
new file mode 100644
index 0000000..679e4e7
--- /dev/null
+++ b/sources/wp-admin/css/login.css
@@ -0,0 +1,270 @@
+@import url(forms.css);
+@import url(l10n.css);
+
+html,
+body {
+ height: 100%;
+ margin: 0;
+ padding: 0;
+}
+
+html {
+ background: #f1f1f1;
+}
+
+body {
+ background: #f1f1f1;
+ min-width: 0;
+ color: #444;
+ font-family: "Open Sans", sans-serif;
+ font-size: 13px;
+ line-height: 1.4em;
+}
+
+a {
+ color: #0074a2;
+ -webkit-transition-property: border, background, color;
+ transition-property: border, background, color;
+ -webkit-transition-duration: .05s;
+ transition-duration: .05s;
+ -webkit-transition-timing-function: ease-in-out;
+ transition-timing-function: ease-in-out;
+}
+
+a {
+ outline: 0;
+}
+
+a:hover,
+a:active {
+ color: #2ea2cc;
+}
+
+a:focus {
+ color: #124964;
+}
+
+a:focus,
+a:active {
+ outline: thin dotted;
+}
+
+p {
+ line-height: 1.5;
+}
+
+.login .message {
+ border-left: 4px solid #7ad03a;
+ padding: 1px 12px;
+ background-color: #fff;
+ -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
+ box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
+}
+
+.login #login_error {
+ border-left: 4px solid #dd3d36;
+ background: #fff;
+ -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
+ box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
+}
+
+#loginform p.submit,
+.login-action-lostpassword p.submit {
+ border: none;
+ margin: -10px 0 20px; /* May want to revisit this */
+}
+
+.login * {
+ margin: 0;
+ padding: 0;
+}
+
+.login form {
+ margin-top: 20px;
+ margin-left: 0;
+ padding: 26px 24px 46px;
+ font-weight: normal;
+ overflow: hidden;
+ background: #fff;
+ -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.13);
+ box-shadow: 0 1px 3px rgba(0,0,0,0.13);
+}
+
+.login form .forgetmenot {
+ font-weight: normal;
+ float: left;
+ margin-bottom: 0;
+}
+
+.login .button-primary {
+ float: right;
+}
+
+#login form p {
+ margin-bottom: 0;
+}
+
+#login form p.submit {
+ margin: 0;
+ padding: 0;
+}
+
+.login label {
+ color: #777;
+ font-size: 14px;
+}
+
+.login form .forgetmenot label {
+ font-size: 12px;
+ line-height: 19px;
+}
+
+.login h1 {
+ text-align: center;
+}
+
+.login h1 a {
+ background-image: url(../images/w-logo-blue.png?ver=20131202);
+ background-image: none, url(../images/wordpress-logo.svg?ver=20131107);
+ -webkit-background-size: 80px 80px;
+ background-size: 80px 80px;
+ background-position: center top;
+ background-repeat: no-repeat;
+ color: #999;
+ height: 80px;
+ font-size: 20px;
+ font-weight: normal;
+ line-height: 1.3em;
+ margin: 0 auto 25px;
+ padding: 0;
+ text-decoration: none;
+ width: 80px;
+ text-indent: -9999px;
+ outline: none;
+ overflow: hidden;
+ display: block;
+}
+
+#login {
+ width: 320px;
+ padding: 8% 0 0;
+ margin: auto;
+}
+
+#login_error,
+.login .message {
+ margin-left: 0;
+ padding: 12px;
+}
+
+.login #nav,
+.login #backtoblog {
+ font-size: 13px;
+ padding: 0 24px 0;
+}
+
+.login #nav {
+ margin: 24px 0 0 0;
+}
+
+#backtoblog {
+ margin: 16px 0 0 0;
+}
+
+.login #nav a,
+.login #backtoblog a {
+ text-decoration: none;
+ color: #999;
+}
+
+.login #nav a:hover,
+.login #backtoblog a:hover,
+.login h1 a:hover {
+ color: #2ea2cc;
+}
+
+.login form .input,
+.login input[type="text"] {
+ font-size: 24px;
+ line-height: 1;
+ width: 100%;
+ padding: 3px;
+ margin: 2px 6px 16px 0;
+}
+
+.login form .input,
+.login input[type="text"],
+.login form input[type="checkbox"] {
+ background: #fbfbfb;
+}
+
+.ie7 .login form .input,
+.ie8 .login form .input {
+ font-family: sans-serif;
+}
+
+.login #pass-strength-result {
+ width: 250px;
+ font-weight: 600;
+ margin: 12px 0 6px;
+ padding: 6px 5px;
+ text-align: center;
+}
+
+.mobile #login {
+ padding: 20px 0;
+}
+
+.mobile #login form,
+.mobile #login .message,
+.mobile #login_error {
+ margin-left: 0;
+}
+
+.mobile #login #nav,
+.mobile #login #backtoblog {
+ margin-left: 8px;
+}
+
+.mobile #login h1 a {
+ width: auto;
+}
+
+body.interim-login {
+ height: auto;
+}
+
+.interim-login #login {
+ padding: 0;
+ margin: 5px auto 20px;
+}
+
+.interim-login.login h1 a {
+ width: auto;
+}
+
+.interim-login #login_error,
+.interim-login.login .message {
+ margin: 0 0 16px;
+}
+
+.interim-login.login form {
+ margin: 0;
+}
+
+@-ms-viewport {
+ width: device-width;
+}
+
+@media screen and ( max-width: 782px ) {
+ .interim-login input[type=checkbox] {
+ height: 16px;
+ width: 16px;
+ }
+
+ .interim-login input[type=checkbox]:checked:before {
+ width: 16px;
+ font: normal 21px/1 'dashicons';
+ margin: -3px 0 0 -4px;
+ }
+}
\ No newline at end of file
diff --git a/sources/wp-admin/css/login.min.css b/sources/wp-admin/css/login.min.css
new file mode 100644
index 0000000..86722df
--- /dev/null
+++ b/sources/wp-admin/css/login.min.css
@@ -0,0 +1 @@
+input,input[type=email],input[type=number],input[type=password],input[type=search],input[type=text],input[type=url],textarea{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=email],input[type=url]{direction:ltr}input[type=checkbox],input[type=radio]{border:1px solid #bbb;background:#fff;color:#555;clear:none;cursor:pointer;display:inline-block;line-height:0;height:16px;margin:-4px 4px 0 0;outline:0;padding:0!important;text-align:center;vertical-align:middle;width:16px;min-width:16px;-webkit-appearance:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);-webkit-transition:.05s border-color ease-in-out;transition:.05s border-color ease-in-out}input[type=radio]:checked+label:before{color:#888}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:#2ea2cc}.wp-admin p input[type=checkbox],.wp-admin p input[type=radio],td>input[type=checkbox]{margin-top:0}.wp-admin p label input[type=checkbox]{margin-top:-4px}.wp-admin p label input[type=radio]{margin-top:-2px}input[type=radio]{-webkit-border-radius:50%;border-radius:50%;margin-right:4px;line-height:10px}input[type=checkbox]:checked:before,input[type=radio]:checked:before{float:left;display:inline-block;vertical-align:middle;width:16px;font:400 21px/1 dashicons;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}input[type=checkbox]:checked:before{content:'\f147';margin:-3px 0 0 -4px;color:#1e8cbe}input[type=radio]:checked:before{content:'\2022';text-indent:-9999px;-webkit-border-radius:50px;border-radius:50px;font-size:24px;width:6px;height:6px;margin:4px;line-height:16px;background-color:#1e8cbe}input.readonly,textarea.readonly{background-color:#ddd}@-moz-document url-prefix(){.form-table input.tog,input[type=checkbox],input[type=radio]{margin-bottom:-1px}}input[type=search]{-webkit-appearance:textfield}input[type=search]::-webkit-search-decoration{display:none}.ie8 input[type=password]{font-family:sans-serif}button,input,select,textarea{font-family:inherit;font-size:inherit;font-weight:inherit}input,select,textarea{font-size:14px;padding:3px 5px;line-height:15px;-webkit-border-radius:0;border-radius:0}textarea{overflow:auto;padding:2px 6px;line-height:1.4}input[type=email],input[type=number],input[type=password],input[type=search],input[type=text],input[type=url],select,textarea{outline:0}.wp-admin input[type=file]{padding:3px 0}label{cursor:pointer}input,select{margin:1px;padding:3px 5px}input.code{padding-top:6px}textarea.code{line-height:1.4;padding:4px 6px 1px}input[type=email],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],select,textarea{border:1px solid #ddd;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.07);box-shadow:inset 0 1px 2px rgba(0,0,0,.07);background-color:#fff;color:#333;-webkit-transition:.05s border-color ease-in-out;transition:.05s border-color ease-in-out}select[disabled]{color:#7f7f7f}input[type=checkbox]:focus,input[type=email]:focus,input[type=number]:focus,input[type=password]:focus,input[type=radio]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,select:focus,textarea:focus{border-color:#5b9dd9;-webkit-box-shadow:0 0 2px rgba(30,140,190,.8);box-shadow:0 0 2px rgba(30,140,190,.8)}input[readonly]{background-color:#eee}.wp-core-ui :-moz-placeholder,:-moz-placeholder{color:#a9a9a9}.form-invalid{background-color:#ffebe8!important}.form-invalid input,.form-invalid select{border-color:#c00!important}.form-input-tip{color:#666}input.disabled,input:disabled,textarea.disabled,textarea:disabled{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.04);box-shadow:inset 0 1px 2px rgba(0,0,0,.04);border-color:rgba(222,222,222,.75);background:rgba(255,255,255,.5);color:rgba(51,51,51,.5)}input[type=checkbox]:disabled,input[type=checkbox]:disabled:checked:before,input[type=radio]:disabled,input[type=radio]:disabled:checked:before{opacity:.7}.wp-admin select{padding:2px;line-height:28px;height:28px;vertical-align:middle}.wp-admin .button-cancel{padding:0 5px;line-height:2}.meta-box-sortables select{max-width:100%}.wp-admin select[multiple]{height:auto}.submit{padding:1.5em 0;margin:5px 0;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;border:0}form p.submit a.cancel:hover{text-decoration:none}p.submit{text-align:left;max-width:100%;margin-top:20px;padding-top:10px}.textright p.submit{border:0;text-align:right}table.form-table+input+input+p.submit,table.form-table+input+p.submit,table.form-table+p.submit{border-top:0;padding-top:0}#major-publishing-actions input,#minor-publishing-actions .preview,#minor-publishing-actions input{text-align:center}input.all-options,textarea.all-options{width:250px}input.large-text,textarea.large-text{width:99%}#adduser .form-field input,input.regular-text{width:25em}input.small-text{width:50px;padding:1px 6px}input[type=number].small-text{width:65px}#doaction,#doaction2,#post-query-submit{margin:1px 8px 0 0}.tablenav #changeit,.tablenav #clear-recent-list,.tablenav #delete_all{margin-top:1px}.tablenav .actions select{float:left;margin-right:6px;max-width:200px}.ie8 .tablenav .actions select{width:155px}.ie8 .tablenav .actions select#cat{width:200px}#timezone_string option{margin-left:1em}#upload-form label{color:#777}#your-profile label+a,fieldset label,label{vertical-align:middle}#misc-publishing-actions label,.options-media-php label[for*="_size_"]{vertical-align:baseline}#misc-publishing-actions label[for=post_status]:before{content:'\f173';display:inline-block;font:400 20px/1 dashicons;speak:none;left:-1px;padding:0 5px 0 0;position:relative;top:0;text-decoration:none!important;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#pass-strength-result{background-color:#eee;border:1px solid #ddd;float:left;margin:13px 5px 5px 1px;padding:3px 5px;text-align:center;width:200px;display:none}#pass-strength-result.short{background-color:#ffa0a0;border-color:#f04040}#pass-strength-result.bad{background-color:#ffb78c;border-color:#ff853c}#pass-strength-result.good{background-color:#ffec8b;border-color:#fc0}#pass-strength-result.strong{background-color:#c3ff88;border-color:#8dff1c}.indicator-hint{padding-top:8px}p.search-box{float:right;margin:0}.network-admin.themes-php p.search-box{clear:left}#search-plugins input[name="s"],.search-box input[name="s"],.tagsdiv .newtag{float:left;height:28px;margin:0 4px 0 0}input[type=text].ui-autocomplete-loading{background:transparent url(../images/loading.gif) no-repeat right center;visibility:visible}ul#add-to-blog-users{margin:0 0 0 14px}.ui-autocomplete-input.open{-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0}.ui-autocomplete{padding:0;margin:0;list-style:none;position:absolute;z-index:10000;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;border:1px solid #aaa;background-color:#efefef}.ui-autocomplete li{margin-bottom:0;white-space:nowrap;text-align:left}.ui-autocomplete li a{display:block;height:100%;padding:4px 10px;color:#444}.ui-autocomplete li a.ui-state-focus{background-color:#ddd;cursor:pointer}.form-table{border-collapse:collapse;margin-top:.5em;width:100%;clear:both}.form-table,.form-table td,.form-table td p,.form-table th,.form-wrap label{font-size:14px}.form-table td{margin-bottom:9px;padding:15px 10px;line-height:1.3;vertical-align:middle}.form-table th,.form-wrap label{color:#222;font-weight:400;text-shadow:none;vertical-align:baseline}.form-table th{vertical-align:top;text-align:left;padding:20px 10px 20px 0;width:200px;line-height:1.3;font-weight:600}.form-table th.th-full{width:auto;font-weight:400}.form-table td p{margin-top:4px;margin-bottom:0}.form-table td fieldset label{margin:.25em 0 .5em!important;display:inline-block}.form-table td fieldset label,.form-table td fieldset li,.form-table td fieldset p{line-height:1.4em}.form-table input.tog,.form-table input[type=radio]{margin-top:-4px;margin-right:4px;float:none}.form-table .pre{padding:8px;margin:0}table.form-table td .updated{font-size:13px}#profile-page .form-table textarea{width:500px;margin-bottom:6px}#profile-page .form-table #rich_editing{margin-right:5px}#your-profile legend{font-size:22px}#display_name{width:15em}#createuser .form-field input{width:25em}.color-option{display:inline-block;width:24%;padding:5px 15px 15px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin-bottom:3px}.color-option.selected,.color-option:hover{background:#ddd}.color-palette{width:100%;border-spacing:0;border-collapse:collapse}.color-palette td{height:20px;padding:0;border:0}.color-option{cursor:pointer}.tool-box .title{margin:8px 0;font-size:18px;font-weight:400;line-height:24px}.pressthis{margin:20px 0}.pressthis a,.pressthis a:active,.pressthis a:focus,.pressthis a:hover{display:inline-block;position:relative;cursor:move;color:#333;background:#e6e6e6;-webkit-border-radius:5px;border-radius:5px;border:1px solid #b4b4b4;font-style:normal;line-height:16px;font-size:14px;text-decoration:none}.pressthis a:active{outline:0}.pressthis a:hover:after{-webkit-transform:skew(20deg) rotate(9deg);-ms-transform:skew(20deg) rotate(9deg);transform:skew(20deg) rotate(9deg);-webkit-box-shadow:0 10px 8px rgba(0,0,0,.7);box-shadow:0 10px 8px rgba(0,0,0,.7)}.pressthis a span{display:inline-block;margin:0;padding:0 12px 8px 9px}.pressthis a span:before{color:#777;font:400 20px/1 dashicons;content:'\f157';position:relative;display:inline-block;top:4px;margin-right:4px}.pressthis a:after{content:'';width:70%;height:55%;z-index:-1;position:absolute;right:10px;bottom:9px;background:0 0;-webkit-transform:skew(20deg) rotate(6deg);-ms-transform:skew(20deg) rotate(6deg);transform:skew(20deg) rotate(6deg);-webkit-box-shadow:0 10px 8px rgba(0,0,0,.6);box-shadow:0 10px 8px rgba(0,0,0,.6)}#local-time,#utc-time{padding-left:25px;font-style:italic}.defaultavatarpicker .avatar{margin:2px 0;vertical-align:middle}.options-general-php .spinner{float:none;margin:-3px 3px}@media screen and (max-width:782px){textarea{-webkit-appearance:none}input[type=number],input[type=password],input[type=search],input[type=text]{-webkit-appearance:none;padding:6px 10px}input.code{padding-bottom:5px;padding-top:10px}.widefat th input[type=checkbox],input[type=checkbox]{-webkit-appearance:none;padding:10px}.widefat th input[type=checkbox]{margin-bottom:8px}.widefat th input[type=checkbox]:before,input[type=checkbox]:checked:before{font:400 30px/1 Dashicons;margin:-3px -5px}input[type=checkbox],input[type=radio]{height:25px;width:25px}.wp-admin p input[type=checkbox],.wp-admin p input[type=radio]{margin-top:-3px}input[type=radio]:checked:before{vertical-align:middle;width:9px;height:9px;margin:7px;line-height:16px}.wp-upload-form input[type=submit]{margin-top:10px}#wpbody select{height:36px;font-size:16px}.wp-admin .button-cancel{padding:0;font-size:14px}#createuser .form-field input{width:100%}.form-table{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.form-table td,.form-table th{display:block;width:auto;vertical-align:middle}.form-table .color-palette td{display:table-cell;width:15px}.form-table table.color-palette{margin-right:10px}input,textarea{font-size:16px}#profile-page .form-table textarea,.form-table span.description,.form-table td input[type=password],.form-table td input[type=text],.form-table td select,.form-table td textarea{width:100%;font-size:16px;line-height:1.5;padding:7px 10px;display:block;max-width:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.form-table input[type=text].small-text,input[type=number].small-text,input[type=password].small-text,input[type=search].small-text,input[type=text].small-text{width:auto;max-width:55px;display:inline;padding:3px 6px;margin:0 3px}#pass-strength-result{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:8px}p.search-box{float:none;position:absolute;bottom:0;width:98%;height:90px;margin-bottom:20px}p.search-box input[name="s"]{height:auto;float:none;width:100%;margin-bottom:10px;vertical-align:middle;-webkit-appearance:none}p.search-box input[type=submit]{margin-bottom:10px}.form-table span.description{padding:4px 0 0;line-height:1.4em}.form-table th{padding-top:10px;padding-bottom:0;border-bottom:0}.form-table td{padding-top:8px;padding-left:0}.form-table input.regular-text{width:100%}.form-table label{font-size:14px}.form-table fieldset label{display:block}#utc-time{margin-top:10px}#local-time,#utc-time{display:block;float:none;padding:0;line-height:2}}@media only screen and (max-width:768px){.form-field input,.form-field textarea{width:99%}.form-wrap .form-field{padding:0}#profile-page .form-table textarea{max-width:400px;width:auto}}@media screen and (max-width:600px){.color-option{width:49%}}body.rtl,body.rtl .press-this a.wp-switch-editor{font-family:Tahoma,Arial,sans-serif}body.locale-he-il,body.locale-he-il .press-this a.wp-switch-editor{font-family:Arial,sans-serif}.locale-he-il em{font-style:normal;font-weight:700}.locale-zh-cn #local-time,.locale-zh-cn #utc-time,.locale-zh-cn .form-wrap p,.locale-zh-cn .howto,.locale-zh-cn .inline-edit-row fieldset span.checkbox-title,.locale-zh-cn .inline-edit-row fieldset span.title,.locale-zh-cn .js .input-with-default-title,.locale-zh-cn .link-to-original,.locale-zh-cn .tablenav .displaying-num,.locale-zh-cn p.description,.locale-zh-cn p.help,.locale-zh-cn p.install-help,.locale-zh-cn span.description{font-style:normal}.locale-zh-cn .hdnle a{font-size:12px}.locale-zh-cn form.upgrade .hint{font-style:normal;font-size:100%}.locale-zh-cn #wp-fullscreen-tagline{font-family:KaiTi,"楷体",sans-serif}.locale-zh-cn #wp-fullscreen-modes a{font-size:12px}.locale-zh-cn #sort-buttons{font-size:1em!important}.locale-de-de .inline-edit-row fieldset label span.title{width:7em}.locale-de-de .inline-edit-row fieldset label span.input-text-wrap{margin-left:7em}.locale-de-de #customize-header-actions .button{padding:0 5px 1px}.locale-de-de #customize-header-actions .spinner{margin:16px 3px 0}.locale-ru-ru .inline-edit-row fieldset label span.title{width:8em}.locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap{margin-left:8em}.locale-ru-ru.post-php .tagsdiv .newtag{width:165px}.locale-ru-ru.press-this .posting{margin-right:277px}.locale-ru-ru .press-this-sidebar{width:265px}.locale-ru-ru #customize-header-actions .button{padding:0 5px 1px}.locale-ru-ru #customize-header-actions .spinner{margin:16px 3px 0}.locale-lt-lt .inline-edit-row fieldset label span.title{width:8em}.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap{margin-left:8em}body,html{height:100%;margin:0;padding:0}html{background:#f1f1f1}body{background:#f1f1f1;min-width:0;color:#444;font-family:"Open Sans",sans-serif;font-size:13px;line-height:1.4em}a{color:#0074a2;-webkit-transition-property:border,background,color;transition-property:border,background,color;-webkit-transition-duration:.05s;transition-duration:.05s;-webkit-transition-timing-function:ease-in-out;transition-timing-function:ease-in-out;outline:0}a:active,a:hover{color:#2ea2cc}a:focus{color:#124964}a:active,a:focus{outline:thin dotted}p{line-height:1.5}.login .message{border-left:4px solid #7ad03a;background-color:#fff;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}.login #login_error{border-left:4px solid #dd3d36;background:#fff;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}#loginform p.submit,.login-action-lostpassword p.submit{border:0;margin:-10px 0 20px}.login *{margin:0;padding:0}.login form{margin-top:20px;margin-left:0;padding:26px 24px 46px;font-weight:400;overflow:hidden;background:#fff;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.13);box-shadow:0 1px 3px rgba(0,0,0,.13)}.login form .forgetmenot{font-weight:400;float:left;margin-bottom:0}.login .button-primary{float:right}#login form p{margin-bottom:0}#login form p.submit{margin:0;padding:0}.login label{color:#777;font-size:14px}.login form .forgetmenot label{font-size:12px;line-height:19px}.login h1{text-align:center}.login h1 a{background-image:url(../images/w-logo-blue.png?ver=20131202);background-image:none,url(../images/wordpress-logo.svg?ver=20131107);-webkit-background-size:80px 80px;background-size:80px 80px;background-position:center top;background-repeat:no-repeat;color:#999;height:80px;font-size:20px;font-weight:400;line-height:1.3em;margin:0 auto 25px;padding:0;text-decoration:none;width:80px;text-indent:-9999px;outline:0;overflow:hidden;display:block}#login{width:320px;padding:8% 0 0;margin:auto}#login_error,.login .message{margin-left:0;padding:12px}.login #backtoblog,.login #nav{font-size:13px;padding:0 24px}.login #nav{margin:24px 0 0}#backtoblog{margin:16px 0 0}.login #backtoblog a,.login #nav a{text-decoration:none;color:#999}.login #backtoblog a:hover,.login #nav a:hover,.login h1 a:hover{color:#2ea2cc}.login form .input,.login input[type=text]{font-size:24px;line-height:1;width:100%;padding:3px;margin:2px 6px 16px 0}.login form .input,.login form input[type=checkbox],.login input[type=text]{background:#fbfbfb}.ie7 .login form .input,.ie8 .login form .input{font-family:sans-serif}.login #pass-strength-result{width:250px;font-weight:600;margin:12px 0 6px;padding:6px 5px;text-align:center}.mobile #login{padding:20px 0}.mobile #login .message,.mobile #login form,.mobile #login_error{margin-left:0}.mobile #login #backtoblog,.mobile #login #nav{margin-left:8px}.mobile #login h1 a{width:auto}body.interim-login{height:auto}.interim-login #login{padding:0;margin:5px auto 20px}.interim-login.login h1 a{width:auto}.interim-login #login_error,.interim-login.login .message{margin:0 0 16px}.interim-login.login form{margin:0}@-ms-viewport{width:device-width}@media screen and (max-width:782px){.interim-login input[type=checkbox]{height:16px;width:16px}.interim-login input[type=checkbox]:checked:before{width:16px;font:400 21px/1 dashicons;margin:-3px 0 0 -4px}}
\ No newline at end of file
diff --git a/sources/wp-admin/css/media-rtl.css b/sources/wp-admin/css/media-rtl.css
index 0c3ccb3..2ad6280 100644
--- a/sources/wp-admin/css/media-rtl.css
+++ b/sources/wp-admin/css/media-rtl.css
@@ -1,71 +1,724 @@
-body#media-upload ul#sidemenu {
- left: auto;
- right: 0;
+/*------------------------------------------------------------------------------
+ 14.0 - Media Screen
+------------------------------------------------------------------------------*/
+
+.media-item .describe {
+ border-collapse: collapse;
+ width: 100%;
+ border-top: 1px solid #dfdfdf;
+ clear: both;
+ cursor: default;
}
-#search-filter {
- text-align: left;
+
+.media-item.media-blank .describe {
+ border: 0;
}
-/* specific to the image upload form */
-.align .field label {
+
+.media-item .describe th {
+ vertical-align: top;
+ text-align: right;
+ padding: 5px 10px 10px;
+ width: 140px;
+}
+
+.media-item .describe .align th {
+ padding-top: 0;
+}
+
+.media-item .media-item-info tr {
+ background-color: transparent;
+}
+
+.media-item .describe td {
+ padding: 0 0 8px 8px;
+ vertical-align: top;
+}
+
+.media-item thead.media-item-info td {
+ padding: 4px 10px 0;
+}
+
+.media-item .media-item-info .A1B1 {
+ padding: 0 10px 0 0;
+}
+
+.media-item td.savesend {
+ padding-bottom: 15px;
+}
+
+.media-item .thumbnail {
+ max-height: 128px;
+ max-width: 128px;
+}
+
+#wpbody-content #async-upload-wrap a {
+ display: none;
+}
+
+.media-upload-form {
+ margin-top: 20px;
+}
+
+.media-upload-form td label {
+ margin-left: 6px;
+ margin-right: 2px;
+}
+
+.media-upload-form .align .field label {
+ display: inline;
padding: 0 23px 0 0;
margin: 0 3px 0 1em;
-}
-.image-align-none-label, .image-align-left-label, .image-align-center-label, .image-align-right-label {
- background-position: center right;
-}
-tr.image-size label {
- margin: 0 5px 0 0;
-}
-.file-error {
- margin: 0 50px 5px 0;
-}
-.progress {
- left: auto;
- right: 0;
-}
-.describe td {
- padding: 0 0 0 5px;
+ font-weight: 600;
}
-/* Specific to Uploader */
-#media-upload .describe th.label {
- text-align: right;
+.media-upload-form tr.image-size label {
+ margin: 0 5px 0 0;
+ font-weight: 600;
}
-.menu_order {
+
+.media-upload-form th.label label {
+ font-weight: 600;
+ margin: 0.5em;
+ font-size: 13px;
+}
+
+.media-upload-form th.label label span {
+ padding: 0 5px;
+}
+
+.media-item .describe input[type="text"],
+.media-item .describe textarea {
+ width: 460px;
+}
+
+.media-item .describe p.help {
+ margin: 0;
+ padding: 0 5px 0 0;
+}
+
+.media-item .edit-attachment,
+.describe-toggle-on,
+.describe-toggle-off {
+ display: block;
+ line-height: 36px;
float: left;
}
-.media-upload-form label.form-help, td.help, #media-upload p.help, #media-upload label.help {
- font-family: Tahoma, Arial;
-}
-#gallery-settings #basic th.label {
- padding: 5px 0 5px 5px;
-}
-#gallery-settings .title, h3.media-title {
- font-family: Tahoma, Arial;
-}
-#gallery-settings .describe th.label {
- text-align: right;
-}
-#gallery-settings label,
-#gallery-settings legend {
- margin-right: 0;
- margin-left: 15px;
-}
-#gallery-settings .align .field label {
- margin: 0 3px 0 1em;
-}
-#sort-buttons {
- margin: 3px 0 -8px 25px;
- text-align: left;
+
+.media-item .describe-toggle-off,
+.media-item.open .describe-toggle-on {
+ display: none;
}
-#sort-buttons #asc,
-#sort-buttons #showall {
+.media-item.open .describe-toggle-off {
+ display: block;
+}
+
+#media-items .media-item {
+ border-bottom: 1px solid #dfdfdf;
+ min-height: 36px;
+ position: relative;
+ width: 100%;
+}
+
+#media-items {
+ width: 623px;
+}
+
+.media-new-php #media-items {
+ margin: 1em 0;
+}
+
+#media-items:empty {
+ border: 0 none;
+}
+
+.media-item .filename {
+ line-height: 36px;
+ overflow: hidden;
+}
+
+.media-item .error-div {
+ padding-right: 10px;
+}
+
+.media-item .pinkynail {
+ float: right;
+ margin: 2px 0 0 10px;
+ max-width: 40px;
+ max-height: 32px;
+}
+
+.media-item .startopen,
+.media-item .startclosed {
+ display: none;
+}
+
+.media-item .original {
+ position: relative;
+ height: 34px;
+}
+
+.media-item .progress {
+ float: left;
+ height: 22px;
+ margin: 7px 0 0;
+ width: 200px;
+ line-height: 2em;
+ padding: 0;
+ overflow: hidden;
+ margin-bottom: 2px;
+ -webkit-border-radius: 22px;
+ border-radius: 22px;
+ background: #ddd;
+ -webkit-box-shadow: inset 0px 1px 2px rgba(0,0,0,0.1);
+ box-shadow: inset 0px 1px 2px rgba(0,0,0,0.1);
+}
+
+.media-item .bar {
+ z-index: 9;
+ width: 0;
+ height: 100%;
+ margin-top: -22px;
+ -webkit-border-radius: 22px;
+ border-radius: 22px;
+ background-color: #0074a2;
+ -webkit-box-shadow: inset 0 0 2px rgba(0,0,0,0.3);
+ box-shadow: inset 0 0 2px rgba(0,0,0,0.3);
+}
+
+.media-item .progress .percent {
+ z-index: 10;
+ position: relative;
+ width: 200px;
+ padding: 0;
+ color: #fff;
+ text-align: center;
+ line-height: 22px;
+ font-weight: 400;
+ text-shadow: 0px 1px 2px rgba(0,0,0,0.2);
+}
+
+.upload-php .fixed .column-parent {
+ width: 15%;
+}
+
+.js .html-uploader #plupload-upload-ui {
+ display: none;
+}
+
+.js .html-uploader #html-upload-ui {
+ display: block;
+}
+
+.media-upload-form .media-item.error {
+ margin: 0;
+ padding: 0;
+}
+
+.media-upload-form .media-item.error p,
+.media-item .error-div {
+ line-height: 16px;
+ margin: 5px 10px;
+ padding: 0;
+}
+
+.media-item .error-div a.dismiss {
+ display: block;
+ float: left;
+ margin: 5px 15px 0 4px;
+}
+
+/*------------------------------------------------------------------------------
+ 14.1 - Media Library
+------------------------------------------------------------------------------*/
+
+.find-box {
+ background-color: #fff;
+ -webkit-box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
+ box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
+ width: 600px;
+ overflow: hidden;
+ margin-right: -300px;
+ position: fixed;
+ top: 30px;
+ bottom: 30px;
+ right: 50%;
+ z-index: 100105;
+}
+
+.find-box-head {
+ background: #fcfcfc;
+ border-bottom: 1px solid #dfdfdf;
+ height: 36px;
+ font-size: 18px;
+ font-weight: 600;
+ line-height: 36px;
+ padding: 0 16px 0 36px;
+ position: absolute;
+ top: 0;
+ right: 0;
+ left: 0;
+}
+
+.find-box-inside {
+ overflow: auto;
+ padding: 16px;
+ background-color: #fff;
+ position: absolute;
+ top: 37px;
+ bottom: 45px;
+ overflow-y: scroll;
+ width: 100%;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}
+
+.find-box-search {
+ padding-bottom: 16px;
+}
+
+.find-box-search .spinner {
+ float: none;
+ right: 125px;
+ position: absolute;
+ top: 18px;
+}
+
+#find-posts-input,
+#find-posts-search {
+ float: right;
+}
+
+#find-posts-input {
+ width: 140px;
+ height: 28px;
+ margin: 0 0 0 4px;
+}
+
+.widefat .found-radio {
padding-left: 0;
- padding-right: 5px;
+ width: 16px;
}
-#sort-buttons span {
- margin-right: 0;
- margin-left: 25px;
+#find-posts-close {
+ width: 36px;
+ height: 36px;
+ position: absolute;
+ top: 0;
+ left: 0;
+ cursor: pointer;
+ text-align: center;
+ color: #666;
+}
+
+#find-posts-close:hover {
+ color: #2ea2cc;
+}
+
+#find-posts-close:before {
+ font: normal 20px/36px 'dashicons';
+ vertical-align: top;
+ speak: none;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ content: '\f158';
+}
+
+.find-box-buttons {
+ padding: 8px 16px;
+ background: #fcfcfc;
+ border-top: 1px solid #dfdfdf;
+ position: absolute;
+ bottom: 0;
+ right: 0;
+ left: 0;
+}
+
+@media screen and ( max-width: 782px ) {
+ .find-box-inside {
+ bottom: 57px;
+ }
+}
+
+@media screen and ( max-width: 660px ) {
+
+ .find-box {
+ top: 0;
+ bottom: 0;
+ right: 0;
+ left: 0;
+ margin: 0;
+ width: 100%;
+ }
+
+}
+
+.ui-find-overlay {
+ position: fixed;
+ top: 0;
+ right: 0;
+ left: 0;
+ bottom: 0;
+ background: #000;
+ opacity: 0.7;
+ filter: alpha(opacity=70);
+ z-index: 100100;
+}
+
+ul#dismissed-updates {
+ display: none;
+}
+
+form.upgrade {
+ margin-top: 8px;
+}
+
+form.upgrade .hint {
+ font-style: italic;
+ font-size: 85%;
+ margin: -0.5em 0 2em 0;
+}
+
+#poststuff .inside .the-tagcloud {
+ margin: 5px 0 10px;
+ padding: 8px;
+ border: 1px solid #ddd;
+ line-height: 1.8em;
+ word-spacing: 3px;
+ -webkit-border-radius: 6px;
+ border-radius: 6px;
+}
+
+.drag-drop #drag-drop-area {
+ border: 4px dashed #bbb;
+ height: 200px;
+}
+
+.drag-drop .drag-drop-inside {
+ margin: 70px auto 0;
+ width: 250px;
+}
+
+.drag-drop-inside p {
+ color: #aaa;
+ font-size: 14px;
+ margin: 5px 0;
+ display: none;
+}
+
+.drag-drop .drag-drop-inside p {
+ text-align: center;
+}
+
+.drag-drop-inside p.drag-drop-info {
+ font-size: 20px;
+}
+
+.drag-drop .drag-drop-inside p,
+.drag-drop-inside p.drag-drop-buttons {
+ display: block;
+}
+
+/*
+#drag-drop-area:-moz-drag-over {
+ border-color: #83b4d8;
+}
+border color while dragging a file over the uploader drop area */
+.drag-drop.drag-over #drag-drop-area {
+ border-color: #83b4d8;
+}
+
+#plupload-upload-ui {
+ position: relative;
+}
+
+
+/*------------------------------------------------------------------------------
+ 14.2 - Image Editor
+------------------------------------------------------------------------------*/
+
+.wp_attachment_details label[for="content"] {
+ font-size: 13px;
+ line-height: 1.5;
+ margin: 1em 0;
+}
+
+.wp_attachment_details #attachment_caption {
+ height: 4em;
+}
+
+.describe .image-editor {
+ vertical-align: top;
+}
+
+.imgedit-wrap {
+ position: relative;
+}
+
+.imgedit-settings p {
+ margin: 8px 0 0;
+}
+
+.describe .imgedit-wrap .imgedit-settings {
+ padding: 0 5px;
+}
+
+.wp_attachment_holder div.updated {
+ margin-top: 0;
+}
+
+.wp_attachment_holder .imgedit-wrap > div {
+ height: auto;
+ overflow: hidden;
+}
+
+.wp_attachment_holder .imgedit-wrap .imgedit-panel-content {
+ padding-left: 16px;
+ width: auto;
+ overflow: hidden;
+}
+
+.wp_attachment_holder .imgedit-wrap .imgedit-settings {
+ float: left;
+ width: 250px;
+}
+
+.imgedit-settings input {
+ margin-top: 0;
+ vertical-align: middle;
+}
+
+.imgedit-wait {
+ position: absolute;
+ top: 0;
+ background: #fff url(../images/spinner.gif) no-repeat center;
+ -webkit-background-size: 20px 20px;
+ background-size: 20px 20px;
+ opacity: 0.7;
+ filter: alpha(opacity=70);
+ width: 100%;
+ height: 500px;
+ display: none;
+}
+
+.no-float {
+ float: none;
+}
+
+.media-disabled,
+.imgedit-settings .disabled {
+ color: grey;
+}
+
+.wp_attachment_image,
+.A1B1 {
+ overflow: hidden;
+}
+
+.wp_attachment_image .button,
+.A1B1 .button {
+ float: right;
+}
+
+.no-js .wp_attachment_image .button {
+ display: none;
+}
+
+.wp_attachment_image .spinner,
+.A1B1 .spinner {
+ float: right;
+ padding: 0 0 4px 0;
+ vertical-align: bottom;
+}
+
+.imgedit-menu {
+ margin: 0 0 12px;
+ min-width: 300px;
+}
+
+.imgedit-menu div {
+ float: right;
+ width: 32px;
+ border: 1px solid #d5d5d5;
+ background: #f1f1f1;
+ margin: 0 0 0 8px;
+ height: 32px;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ text-align: center;
+ line-height: 28px;
+ color: #777;
+ cursor: pointer;
+}
+
+.imgedit-menu div:before {
+ font: normal 20px/1 'dashicons';
+ speak: none;
+ vertical-align: middle;
+}
+
+.imgedit-menu div:hover {
+ border-color: #c1c1c1;
+ background-color: #eaeaea;
+ color: #333;
+}
+
+.imgedit-menu div.disabled {
+ border-color: #ccc;
+ background-color: #ddd;
+ color: #777;
+ filter: alpha(opacity=50);
+ opacity: 0.5;
+ cursor: default;
+}
+
+.imgedit-crop:before {
+ content:'\f165';
+}
+
+.imgedit-rleft:before {
+ content:'\f166';
+}
+
+.imgedit-rright:before {
+ content:'\f167';
+}
+
+.imgedit-flipv:before {
+ content:'\f168';
+}
+
+.imgedit-fliph:before {
+ content:'\f169';
+}
+
+.imgedit-undo:before {
+ content:'\f171';
+}
+
+.imgedit-redo:before {
+ content:'\f172';
+}
+
+.imgedit-crop-wrap {
+ position: relative;
+}
+
+.imgedit-crop {
+ margin: 0 0 0 8px;
+}
+
+.imgedit-rleft {
+ margin: 0 3px;
+}
+
+.imgedit-rright {
+ margin: 0 3px 0 8px;
+}
+
+.imgedit-flipv {
+ margin: 0 3px;
+}
+
+.imgedit-fliph {
+ margin: 0 3px 0 8px;
+}
+
+.imgedit-undo {
+ margin: 0 3px;
+}
+
+.imgedit-redo {
+ margin: 0 3px 0 8px;
+}
+
+.imgedit-applyto img {
+ margin: 0 0 0 8px;
+}
+
+.imgedit-group-top {
+ margin: 5px 0;
+}
+
+#poststuff .imgedit-group-top h3 {
+ padding: 0;
+}
+
+.imgedit-group-top h3 a {
+ text-decoration: none;
+}
+
+.imgedit-applyto .imgedit-label {
+ padding: 2px 0 0;
+ display: block;
+}
+
+.imgedit-help {
+ display: none;
+ font-style: italic;
+}
+
+a.imgedit-help-toggle {
+ text-decoration: none;
+}
+
+.form-table td.imgedit-response {
+ padding: 0;
+}
+
+.imgedit-submit {
+ margin: 8px 0;
+}
+
+.imgedit-submit-btn {
+ margin-right: 20px;
+}
+
+.imgedit-wrap .nowrap {
+ white-space: nowrap;
+}
+
+span.imgedit-scale-warn {
+ color: red;
+ font-size: 20px;
+ font-style: normal;
+ visibility: hidden;
+ vertical-align: middle;
+}
+
+.imgedit-group {
+ margin-bottom: 8px;
+ padding: 2px 10px;
+}
+
+audio, video {
+ display: inline-block;
+ max-width: 100%;
+}
+
+.mejs-container {
+ width: 100%;
+}
+
+/* =Media Queries
+-------------------------------------------------------------- */
+
+/**
+ * HiDPI Displays
+ */
+@media print,
+ (-o-min-device-pixel-ratio: 5/4),
+ (-webkit-min-device-pixel-ratio: 1.25),
+ (min-resolution: 120dpi) {
+ .imgedit-wait {
+ background-image: url(../images/spinner-2x.gif);
+ }
+}
+
+@media screen and ( max-width: 782px ) {
+ .wp_attachment_details label[for="content"] {
+ font-size: 14px;
+ line-height: 1.5em;
+ }
}
diff --git a/sources/wp-admin/css/media-rtl.min.css b/sources/wp-admin/css/media-rtl.min.css
deleted file mode 100644
index 5f51b60..0000000
--- a/sources/wp-admin/css/media-rtl.min.css
+++ /dev/null
@@ -1 +0,0 @@
-body#media-upload ul#sidemenu{left:auto;right:0}#search-filter{text-align:left}.align .field label{padding:0 23px 0 0;margin:0 3px 0 1em}.image-align-none-label,.image-align-left-label,.image-align-center-label,.image-align-right-label{background-position:center right}tr.image-size label{margin:0 5px 0 0}.file-error{margin:0 50px 5px 0}.progress{left:auto;right:0}.describe td{padding:0 0 0 5px}#media-upload .describe th.label{text-align:right}.menu_order{float:left}.media-upload-form label.form-help,td.help,#media-upload p.help,#media-upload label.help{font-family:Tahoma,Arial}#gallery-settings #basic th.label{padding:5px 0 5px 5px}#gallery-settings .title,h3.media-title{font-family:Tahoma,Arial}#gallery-settings .describe th.label{text-align:right}#gallery-settings label,#gallery-settings legend{margin-right:0;margin-left:15px}#gallery-settings .align .field label{margin:0 3px 0 1em}#sort-buttons{margin:3px 0 -8px 25px;text-align:left}#sort-buttons #asc,#sort-buttons #showall{padding-left:0;padding-right:5px}#sort-buttons span{margin-right:0;margin-left:25px}
\ No newline at end of file
diff --git a/sources/wp-admin/css/media.css b/sources/wp-admin/css/media.css
index 85adbf3..e6bbdcb 100644
--- a/sources/wp-admin/css/media.css
+++ b/sources/wp-admin/css/media.css
@@ -1,328 +1,709 @@
-/* Styles for the media library iframe (not used on the Library screen) */
+/*------------------------------------------------------------------------------
+ 14.0 - Media Screen
+------------------------------------------------------------------------------*/
-div#media-upload-header {
- margin: 0;
- padding: 5px 5px 0;
- font-weight: bold;
- position: relative;
- border-bottom-width: 1px;
- border-bottom-style: solid;
-}
-
-body#media-upload ul#sidemenu {
- font-weight: normal;
- margin: 0 5px;
- left: 0;
- bottom: -1px;
- float: none;
- overflow: hidden;
-}
-
-form {
- margin: 1em;
-}
-
-#search-filter {
- text-align: right;
-}
-
-th {
- position: relative;
-}
-
-.media-upload-form label.form-help, td.help {
- font-family: sans-serif;
- font-style: italic;
- font-weight: normal;
-}
-
-.media-upload-form p.help {
- margin: 0;
- padding: 0;
-}
-
-.media-upload-form fieldset {
+.media-item .describe {
+ border-collapse: collapse;
width: 100%;
- border: none;
- text-align: justify;
- margin: 0 0 1em 0;
- padding: 0;
-}
-
-/* specific to the image upload form */
-
-.image-align-none-label {
- background: url(../images/align-none.png) no-repeat center left;
-}
-
-.image-align-left-label {
- background: url(../images/align-left.png) no-repeat center left;
-}
-
-.image-align-center-label {
- background: url(../images/align-center.png) no-repeat center left;
-}
-
-.image-align-right-label {
- background: url(../images/align-right.png) no-repeat center left;
-}
-
-tr.image-size td {
- width: 460px;
-}
-
-tr.image-size div.image-size-item {
- margin: 0 0 5px;
-}
-
-#library-form .progress,
-#gallery-form .progress,
-.insert-gallery,
-.describe.startopen,
-.describe.startclosed {
- display: none;
-}
-
-.media-item .thumbnail {
- max-width: 128px;
- max-height: 128px;
-}
-
-thead.media-item-info tr {
- background-color: transparent;
-}
-
-.form-table thead.media-item-info {
- border: 8px solid #fff;
-}
-
-abbr.required {
- text-decoration: none;
- border: none;
-}
-
-.describe label {
- display: inline;
-}
-
-.describe td.error {
- padding: 2px 8px;
-}
-
-.describe td.A1 {
- width: 132px;
-}
-
-.describe input[type="text"],
-.describe textarea {
- width: 460px;
- border-width: 1px;
- border-style: solid;
-}
-
-/* Specific to Uploader */
-
-#media-upload p.ml-submit {
- padding: 1em 0;
-}
-
-#media-upload p.help,
-#media-upload label.help {
- font-family: sans-serif;
- font-style: italic;
- font-weight: normal;
-}
-
-#media-upload .ui-sortable .media-item {
- cursor: move;
-}
-
-#media-upload tr.image-size {
- margin-bottom: 1em;
- height: 3em;
-}
-
-#media-upload #filter {
- width: 623px;
-}
-
-#media-upload #filter .subsubsub {
- margin: 8px 0;
-}
-
-#filter .tablenav select {
- border-style: solid;
- border-width: 1px;
- padding: 2px;
- vertical-align: top;
- width: auto;
-}
-
-#media-upload .del-attachment {
- display: none;
- margin: 5px 0;
-}
-
-.menu_order {
- float: right;
- font-size: 11px;
- margin: 10px 10px 0;
-}
-
-.menu_order_input {
- border: 1px solid #ddd;
- font-size: 10px;
- padding: 1px;
- width: 23px;
-}
-
-.ui-sortable-helper {
- background-color: #fff;
- border: 1px solid #aaa;
- opacity: 0.6;
- filter: alpha(opacity=60);
-}
-
-#media-upload th.order-head {
- width: 20%;
- text-align: center;
-}
-
-#media-upload th.actions-head {
- width: 25%;
- text-align: center;
-}
-
-#media-upload a.wp-post-thumbnail {
- margin: 0 20px;
-}
-
-#media-upload .widefat {
- width: 626px;
- border-style: solid solid none;
-}
-
-.sorthelper {
- height: 37px;
- width: 623px;
- display: block;
-}
-
-#gallery-settings th.label {
- width: 160px;
-}
-
-#gallery-settings #basic th.label {
- padding: 5px 5px 5px 0;
-}
-
-#gallery-settings .title {
- clear: both;
- padding: 0 0 3px;
- font-size: 1.6em;
- border-bottom: 1px solid #DADADA;
-}
-
-h3.media-title {
- font-size: 1.6em;
-}
-
-h4.media-sub-title {
- border-bottom: 1px solid #DADADA;
- font-size: 1.3em;
- margin: 12px;
- padding: 0 0 3px;
-}
-
-#gallery-settings .title,
-h3.media-title,
-h4.media-sub-title {
- font-family: Georgia,"Times New Roman",Times,serif;
- font-weight: normal;
- color: #5A5A5A;
-}
-
-#gallery-settings .describe td {
- vertical-align: middle;
- height: 3em;
-}
-
-#gallery-settings .describe th.label {
- padding-top: .5em;
- text-align: left;
-}
-
-#gallery-settings .describe {
- padding: 5px;
- width: 615px;
+ border-top: 1px solid #dfdfdf;
clear: both;
cursor: default;
}
-#gallery-settings .describe select {
- width: 15em;
+.media-item.media-blank .describe {
+ border: 0;
}
-#gallery-settings .describe select option,
-#gallery-settings .describe td {
+.media-item .describe th {
+ vertical-align: top;
+ text-align: left;
+ padding: 5px 10px 10px;
+ width: 140px;
+}
+
+.media-item .describe .align th {
+ padding-top: 0;
+}
+
+.media-item .media-item-info tr {
+ background-color: transparent;
+}
+
+.media-item .describe td {
+ padding: 0 8px 8px 0;
+ vertical-align: top;
+}
+
+.media-item thead.media-item-info td {
+ padding: 4px 10px 0;
+}
+
+.media-item .media-item-info .A1B1 {
+ padding: 0 0 0 10px;
+}
+
+.media-item td.savesend {
+ padding-bottom: 15px;
+}
+
+.media-item .thumbnail {
+ max-height: 128px;
+ max-width: 128px;
+}
+
+#wpbody-content #async-upload-wrap a {
+ display: none;
+}
+
+.media-upload-form {
+ margin-top: 20px;
+}
+
+.media-upload-form td label {
+ margin-right: 6px;
+ margin-left: 2px;
+}
+
+.media-upload-form .align .field label {
+ display: inline;
+ padding: 0 0 0 23px;
+ margin: 0 1em 0 3px;
+ font-weight: 600;
+}
+
+.media-upload-form tr.image-size label {
+ margin: 0 0 0 5px;
+ font-weight: 600;
+}
+
+.media-upload-form th.label label {
+ font-weight: 600;
+ margin: 0.5em;
+ font-size: 13px;
+}
+
+.media-upload-form th.label label span {
+ padding: 0 5px;
+}
+
+.media-item .describe input[type="text"],
+.media-item .describe textarea {
+ width: 460px;
+}
+
+.media-item .describe p.help {
+ margin: 0;
+ padding: 0 0 0 5px;
+}
+
+.media-item .edit-attachment,
+.describe-toggle-on,
+.describe-toggle-off {
+ display: block;
+ line-height: 36px;
+ float: right;
+}
+
+.media-item .describe-toggle-off,
+.media-item.open .describe-toggle-on {
+ display: none;
+}
+
+.media-item.open .describe-toggle-off {
+ display: block;
+}
+
+#media-items .media-item {
+ border-bottom: 1px solid #dfdfdf;
+ min-height: 36px;
+ position: relative;
+ width: 100%;
+}
+
+#media-items {
+ width: 623px;
+}
+
+.media-new-php #media-items {
+ margin: 1em 0;
+}
+
+#media-items:empty {
+ border: 0 none;
+}
+
+.media-item .filename {
+ line-height: 36px;
+ overflow: hidden;
+}
+
+.media-item .error-div {
+ padding-left: 10px;
+}
+
+.media-item .pinkynail {
+ float: left;
+ margin: 2px 10px 0 0;
+ max-width: 40px;
+ max-height: 32px;
+}
+
+.media-item .startopen,
+.media-item .startclosed {
+ display: none;
+}
+
+.media-item .original {
+ position: relative;
+ height: 34px;
+}
+
+.media-item .progress {
+ float: right;
+ height: 22px;
+ margin: 7px 0 0;
+ width: 200px;
+ line-height: 2em;
+ padding: 0;
+ overflow: hidden;
+ margin-bottom: 2px;
+ -webkit-border-radius: 22px;
+ border-radius: 22px;
+ background: #ddd;
+ -webkit-box-shadow: inset 0px 1px 2px rgba(0,0,0,0.1);
+ box-shadow: inset 0px 1px 2px rgba(0,0,0,0.1);
+}
+
+.media-item .bar {
+ z-index: 9;
+ width: 0;
+ height: 100%;
+ margin-top: -22px;
+ -webkit-border-radius: 22px;
+ border-radius: 22px;
+ background-color: #0074a2;
+ -webkit-box-shadow: inset 0 0 2px rgba(0,0,0,0.3);
+ box-shadow: inset 0 0 2px rgba(0,0,0,0.3);
+}
+
+.media-item .progress .percent {
+ z-index: 10;
+ position: relative;
+ width: 200px;
+ padding: 0;
+ color: #fff;
+ text-align: center;
+ line-height: 22px;
+ font-weight: 400;
+ text-shadow: 0px 1px 2px rgba(0,0,0,0.2);
+}
+
+.upload-php .fixed .column-parent {
+ width: 15%;
+}
+
+.js .html-uploader #plupload-upload-ui {
+ display: none;
+}
+
+.js .html-uploader #html-upload-ui {
+ display: block;
+}
+
+.media-upload-form .media-item.error {
+ margin: 0;
padding: 0;
}
-#gallery-settings label,
-#gallery-settings legend {
- font-size: 13px;
- color: #464646;
- margin-right: 15px;
+.media-upload-form .media-item.error p,
+.media-item .error-div {
+ line-height: 16px;
+ margin: 5px 10px;
+ padding: 0;
}
-#gallery-settings .align .field label {
- margin: 0 1em 0 3px;
+.media-item .error-div a.dismiss {
+ display: block;
+ float: right;
+ margin: 5px 4px 0 15px;
}
-#gallery-settings p.ml-submit {
+/*------------------------------------------------------------------------------
+ 14.1 - Media Library
+------------------------------------------------------------------------------*/
+
+.find-box {
+ background-color: #fff;
+ -webkit-box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
+ box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
+ width: 600px;
+ overflow: hidden;
+ margin-left: -300px;
+ position: fixed;
+ top: 30px;
+ bottom: 30px;
+ left: 50%;
+ z-index: 100105;
+}
+
+.find-box-head {
+ background: #fcfcfc;
+ border-bottom: 1px solid #dfdfdf;
+ height: 36px;
+ font-size: 18px;
+ font-weight: 600;
+ line-height: 36px;
+ padding: 0 36px 0 16px;
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+}
+
+.find-box-inside {
+ overflow: auto;
+ padding: 16px;
+ background-color: #fff;
+ position: absolute;
+ top: 37px;
+ bottom: 45px;
+ overflow-y: scroll;
+ width: 100%;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}
+
+.find-box-search {
+ padding-bottom: 16px;
+}
+
+.find-box-search .spinner {
+ float: none;
+ left: 125px;
+ position: absolute;
+ top: 18px;
+}
+
+#find-posts-input,
+#find-posts-search {
+ float: left;
+}
+
+#find-posts-input {
+ width: 140px;
+ height: 28px;
+ margin: 0 4px 0 0;
+}
+
+.widefat .found-radio {
+ padding-right: 0;
+ width: 16px;
+}
+
+#find-posts-close {
+ width: 36px;
+ height: 36px;
+ position: absolute;
+ top: 0;
+ right: 0;
+ cursor: pointer;
+ text-align: center;
+ color: #666;
+}
+
+#find-posts-close:hover {
+ color: #2ea2cc;
+}
+
+#find-posts-close:before {
+ font: normal 20px/36px 'dashicons';
+ vertical-align: top;
+ speak: none;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ content: '\f158';
+}
+
+.find-box-buttons {
+ padding: 8px 16px;
+ background: #fcfcfc;
border-top: 1px solid #dfdfdf;
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ right: 0;
}
-#gallery-settings select#columns {
- width: 6em;
+@media screen and ( max-width: 782px ) {
+ .find-box-inside {
+ bottom: 57px;
+ }
}
-#sort-buttons {
- font-size: 0.8em;
- margin: 3px 25px -8px 0;
- text-align: right;
- max-width: 625px;
+@media screen and ( max-width: 660px ) {
+
+ .find-box {
+ top: 0;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ margin: 0;
+ width: 100%;
+ }
+
}
-#sort-buttons a {
+.ui-find-overlay {
+ position: fixed;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ background: #000;
+ opacity: 0.7;
+ filter: alpha(opacity=70);
+ z-index: 100100;
+}
+
+ul#dismissed-updates {
+ display: none;
+}
+
+form.upgrade {
+ margin-top: 8px;
+}
+
+form.upgrade .hint {
+ font-style: italic;
+ font-size: 85%;
+ margin: -0.5em 0 2em 0;
+}
+
+#poststuff .inside .the-tagcloud {
+ margin: 5px 0 10px;
+ padding: 8px;
+ border: 1px solid #ddd;
+ line-height: 1.8em;
+ word-spacing: 3px;
+ -webkit-border-radius: 6px;
+ border-radius: 6px;
+}
+
+.drag-drop #drag-drop-area {
+ border: 4px dashed #bbb;
+ height: 200px;
+}
+
+.drag-drop .drag-drop-inside {
+ margin: 70px auto 0;
+ width: 250px;
+}
+
+.drag-drop-inside p {
+ color: #aaa;
+ font-size: 14px;
+ margin: 5px 0;
+ display: none;
+}
+
+.drag-drop .drag-drop-inside p {
+ text-align: center;
+}
+
+.drag-drop-inside p.drag-drop-info {
+ font-size: 20px;
+}
+
+.drag-drop .drag-drop-inside p,
+.drag-drop-inside p.drag-drop-buttons {
+ display: block;
+}
+
+/*
+#drag-drop-area:-moz-drag-over {
+ border-color: #83b4d8;
+}
+border color while dragging a file over the uploader drop area */
+.drag-drop.drag-over #drag-drop-area {
+ border-color: #83b4d8;
+}
+
+#plupload-upload-ui {
+ position: relative;
+}
+
+
+/*------------------------------------------------------------------------------
+ 14.2 - Image Editor
+------------------------------------------------------------------------------*/
+
+.wp_attachment_details label[for="content"] {
+ font-size: 13px;
+ line-height: 1.5;
+ margin: 1em 0;
+}
+
+.wp_attachment_details #attachment_caption {
+ height: 4em;
+}
+
+.describe .image-editor {
+ vertical-align: top;
+}
+
+.imgedit-wrap {
+ position: relative;
+}
+
+.imgedit-settings p {
+ margin: 8px 0 0;
+}
+
+.describe .imgedit-wrap .imgedit-settings {
+ padding: 0 5px;
+}
+
+.wp_attachment_holder div.updated {
+ margin-top: 0;
+}
+
+.wp_attachment_holder .imgedit-wrap > div {
+ height: auto;
+ overflow: hidden;
+}
+
+.wp_attachment_holder .imgedit-wrap .imgedit-panel-content {
+ padding-right: 16px;
+ width: auto;
+ overflow: hidden;
+}
+
+.wp_attachment_holder .imgedit-wrap .imgedit-settings {
+ float: right;
+ width: 250px;
+}
+
+.imgedit-settings input {
+ margin-top: 0;
+ vertical-align: middle;
+}
+
+.imgedit-wait {
+ position: absolute;
+ top: 0;
+ background: #fff url(../images/spinner.gif) no-repeat center;
+ -webkit-background-size: 20px 20px;
+ background-size: 20px 20px;
+ opacity: 0.7;
+ filter: alpha(opacity=70);
+ width: 100%;
+ height: 500px;
+ display: none;
+}
+
+.no-float {
+ float: none;
+}
+
+.media-disabled,
+.imgedit-settings .disabled {
+ color: grey;
+}
+
+.wp_attachment_image,
+.A1B1 {
+ overflow: hidden;
+}
+
+.wp_attachment_image .button,
+.A1B1 .button {
+ float: left;
+}
+
+.no-js .wp_attachment_image .button {
+ display: none;
+}
+
+.wp_attachment_image .spinner,
+.A1B1 .spinner {
+ float: left;
+ padding: 0 0 4px 0;
+ vertical-align: bottom;
+}
+
+.imgedit-menu {
+ margin: 0 0 12px;
+ min-width: 300px;
+}
+
+.imgedit-menu div {
+ float: left;
+ width: 32px;
+ border: 1px solid #d5d5d5;
+ background: #f1f1f1;
+ margin: 0 8px 0 0;
+ height: 32px;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ text-align: center;
+ line-height: 28px;
+ color: #777;
+ cursor: pointer;
+}
+
+.imgedit-menu div:before {
+ font: normal 20px/1 'dashicons';
+ speak: none;
+ vertical-align: middle;
+}
+
+.imgedit-menu div:hover {
+ border-color: #c1c1c1;
+ background-color: #eaeaea;
+ color: #333;
+}
+
+.imgedit-menu div.disabled {
+ border-color: #ccc;
+ background-color: #ddd;
+ color: #777;
+ filter: alpha(opacity=50);
+ opacity: 0.5;
+ cursor: default;
+}
+
+.imgedit-crop:before {
+ content:'\f165';
+}
+
+.imgedit-rleft:before {
+ content:'\f166';
+}
+
+.imgedit-rright:before {
+ content:'\f167';
+}
+
+.imgedit-flipv:before {
+ content:'\f168';
+}
+
+.imgedit-fliph:before {
+ content:'\f169';
+}
+
+.imgedit-undo:before {
+ content:'\f171';
+}
+
+.imgedit-redo:before {
+ content:'\f172';
+}
+
+.imgedit-crop-wrap {
+ position: relative;
+}
+
+.imgedit-crop {
+ margin: 0 8px 0 0;
+}
+
+.imgedit-rleft {
+ margin: 0 3px;
+}
+
+.imgedit-rright {
+ margin: 0 8px 0 3px;
+}
+
+.imgedit-flipv {
+ margin: 0 3px;
+}
+
+.imgedit-fliph {
+ margin: 0 8px 0 3px;
+}
+
+.imgedit-undo {
+ margin: 0 3px;
+}
+
+.imgedit-redo {
+ margin: 0 8px 0 3px;
+}
+
+.imgedit-applyto img {
+ margin: 0 8px 0 0;
+}
+
+.imgedit-group-top {
+ margin: 5px 0;
+}
+
+#poststuff .imgedit-group-top h3 {
+ padding: 0;
+}
+
+.imgedit-group-top h3 a {
text-decoration: none;
}
-#sort-buttons #asc,
-#sort-buttons #showall {
- padding-left: 5px;
+.imgedit-applyto .imgedit-label {
+ padding: 2px 0 0;
+ display: block;
}
-#sort-buttons span {
- margin-right: 25px;
-}
-
-p.media-types {
- margin: 1em;
-}
-
-tr.not-image {
+.imgedit-help {
display: none;
+ font-style: italic;
}
-table.not-image tr.not-image {
- display: table-row;
+a.imgedit-help-toggle {
+ text-decoration: none;
}
-table.not-image tr.image-only {
- display: none;
+.form-table td.imgedit-response {
+ padding: 0;
}
+.imgedit-submit {
+ margin: 8px 0;
+}
+
+.imgedit-submit-btn {
+ margin-left: 20px;
+}
+
+.imgedit-wrap .nowrap {
+ white-space: nowrap;
+}
+
+span.imgedit-scale-warn {
+ color: red;
+ font-size: 20px;
+ font-style: normal;
+ visibility: hidden;
+ vertical-align: middle;
+}
+
+.imgedit-group {
+ margin-bottom: 8px;
+ padding: 2px 10px;
+}
+
+audio, video {
+ display: inline-block;
+ max-width: 100%;
+}
+
+.mejs-container {
+ width: 100%;
+}
+
+/* =Media Queries
+-------------------------------------------------------------- */
+
/**
* HiDPI Displays
*/
@@ -330,24 +711,14 @@ table.not-image tr.image-only {
(-o-min-device-pixel-ratio: 5/4),
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 120dpi) {
-
- .image-align-none-label {
- background-image: url("../images/align-none-2x.png?ver=20120916");
- background-size: 21px 15px;
- }
-
- .image-align-left-label {
- background-image: url("../images/align-left-2x.png?ver=20120916");
- background-size: 22px 15px;
- }
-
- .image-align-center-label {
- background-image: url("../images/align-center-2x.png?ver=20120916");
- background-size: 21px 15px;
- }
-
- .image-align-right-label {
- background-image: url("../images/align-right-2x.png?ver=20120916");
- background-size: 22px 15px;
+ .imgedit-wait {
+ background-image: url(../images/spinner-2x.gif);
+ }
+}
+
+@media screen and ( max-width: 782px ) {
+ .wp_attachment_details label[for="content"] {
+ font-size: 14px;
+ line-height: 1.5em;
}
}
diff --git a/sources/wp-admin/css/media.min.css b/sources/wp-admin/css/media.min.css
deleted file mode 100644
index fbdeea2..0000000
--- a/sources/wp-admin/css/media.min.css
+++ /dev/null
@@ -1 +0,0 @@
-div#media-upload-header{margin:0;padding:5px 5px 0;font-weight:700;position:relative;border-bottom-width:1px;border-bottom-style:solid}body#media-upload ul#sidemenu{font-weight:400;margin:0 5px;left:0;bottom:-1px;float:none;overflow:hidden}form{margin:1em}#search-filter{text-align:right}th{position:relative}.media-upload-form label.form-help,td.help{font-family:sans-serif;font-style:italic;font-weight:400}.media-upload-form p.help{margin:0;padding:0}.media-upload-form fieldset{width:100%;border:0;text-align:justify;margin:0 0 1em;padding:0}.image-align-none-label{background:url(../images/align-none.png) no-repeat center left}.image-align-left-label{background:url(../images/align-left.png) no-repeat center left}.image-align-center-label{background:url(../images/align-center.png) no-repeat center left}.image-align-right-label{background:url(../images/align-right.png) no-repeat center left}tr.image-size td{width:460px}tr.image-size div.image-size-item{margin:0 0 5px}#library-form .progress,#gallery-form .progress,.insert-gallery,.describe.startopen,.describe.startclosed{display:none}.media-item .thumbnail{max-width:128px;max-height:128px}thead.media-item-info tr{background-color:transparent}.form-table thead.media-item-info{border:8px solid #fff}abbr.required{text-decoration:none;border:0}.describe label{display:inline}.describe td.error{padding:2px 8px}.describe td.A1{width:132px}.describe input[type=text],.describe textarea{width:460px;border-width:1px;border-style:solid}#media-upload p.ml-submit{padding:1em 0}#media-upload p.help,#media-upload label.help{font-family:sans-serif;font-style:italic;font-weight:400}#media-upload .ui-sortable .media-item{cursor:move}#media-upload tr.image-size{margin-bottom:1em;height:3em}#media-upload #filter{width:623px}#media-upload #filter .subsubsub{margin:8px 0}#filter .tablenav select{border-style:solid;border-width:1px;padding:2px;vertical-align:top;width:auto}#media-upload .del-attachment{display:none;margin:5px 0}.menu_order{float:right;font-size:11px;margin:10px 10px 0}.menu_order_input{border:1px solid #ddd;font-size:10px;padding:1px;width:23px}.ui-sortable-helper{background-color:#fff;border:1px solid #aaa;opacity:.6;filter:alpha(opacity=60)}#media-upload th.order-head{width:20%;text-align:center}#media-upload th.actions-head{width:25%;text-align:center}#media-upload a.wp-post-thumbnail{margin:0 20px}#media-upload .widefat{width:626px;border-style:solid solid none}.sorthelper{height:37px;width:623px;display:block}#gallery-settings th.label{width:160px}#gallery-settings #basic th.label{padding:5px 5px 5px 0}#gallery-settings .title{clear:both;padding:0 0 3px;font-size:1.6em;border-bottom:1px solid #DADADA}h3.media-title{font-size:1.6em}h4.media-sub-title{border-bottom:1px solid #DADADA;font-size:1.3em;margin:12px;padding:0 0 3px}#gallery-settings .title,h3.media-title,h4.media-sub-title{font-family:Georgia,"Times New Roman",Times,serif;font-weight:400;color:#5A5A5A}#gallery-settings .describe td{vertical-align:middle;height:3em}#gallery-settings .describe th.label{padding-top:.5em;text-align:left}#gallery-settings .describe{padding:5px;width:615px;clear:both;cursor:default}#gallery-settings .describe select{width:15em}#gallery-settings .describe select option,#gallery-settings .describe td{padding:0}#gallery-settings label,#gallery-settings legend{font-size:13px;color:#464646;margin-right:15px}#gallery-settings .align .field label{margin:0 1em 0 3px}#gallery-settings p.ml-submit{border-top:1px solid #dfdfdf}#gallery-settings select#columns{width:6em}#sort-buttons{font-size:.8em;margin:3px 25px -8px 0;text-align:right;max-width:625px}#sort-buttons a{text-decoration:none}#sort-buttons #asc,#sort-buttons #showall{padding-left:5px}#sort-buttons span{margin-right:25px}p.media-types{margin:1em}tr.not-image{display:none}table.not-image tr.not-image{display:table-row}table.not-image tr.image-only{display:none}@media print,(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.image-align-none-label{background-image:url(../images/align-none-2x.png?ver=20120916);background-size:21px 15px}.image-align-left-label{background-image:url(../images/align-left-2x.png?ver=20120916);background-size:22px 15px}.image-align-center-label{background-image:url(../images/align-center-2x.png?ver=20120916);background-size:21px 15px}.image-align-right-label{background-image:url(../images/align-right-2x.png?ver=20120916);background-size:22px 15px}}
\ No newline at end of file
diff --git a/sources/wp-admin/css/nav-menus-rtl.css b/sources/wp-admin/css/nav-menus-rtl.css
new file mode 100644
index 0000000..82c91e9
--- /dev/null
+++ b/sources/wp-admin/css/nav-menus-rtl.css
@@ -0,0 +1,853 @@
+/* nav-menu */
+
+/* @todo: determine if this is truly for nav menus only */
+.no-js #message {
+ display: block;
+}
+
+ul.add-menu-item-tabs li {
+ padding: 3px 8px 3px 5px;
+}
+
+.accordion-section ul.category-tabs,
+.accordion-section ul.add-menu-item-tabs,
+.accordion-section ul.wp-tab-bar {
+ margin: 0;
+}
+
+.accordion-section .categorychecklist {
+ margin: 13px 0;
+}
+
+#nav-menu-meta .accordion-section-content {
+ padding: 18px 13px;
+}
+
+#nav-menu-meta .button-controls {
+ margin-bottom: 0;
+}
+
+#nav-menus-frame {
+ margin-right: 300px;
+ margin-top: 23px;
+}
+
+#wpbody-content #menu-settings-column {
+ display:inline;
+ width:281px;
+ margin-right: -300px;
+ clear: both;
+ float: right;
+ padding-top: 0;
+}
+
+#menu-settings-column .inside {
+ clear: both;
+ margin: 10px 0 0;
+}
+
+.metabox-holder-disabled .postbox,
+.metabox-holder-disabled .accordion-section-content,
+.metabox-holder-disabled .accordion-section-title {
+ opacity: 0.5;
+ filter: alpha(opacity=50);
+}
+
+.metabox-holder-disabled .button-controls .select-all {
+ display: none;
+}
+
+#wpbody {
+ position: relative;
+}
+
+.blank-slate .menu-name {
+ height: 2em;
+}
+
+.blank-slate .menu-settings {
+ border: none;
+ margin-top: 0;
+ padding-top: 0;
+ overflow: hidden;
+}
+
+.is-submenu {
+ color: #999;
+ font-style: italic;
+ font-weight: normal;
+ margin-right: 4px;
+}
+
+.manage-menus {
+ margin-top: 23px;
+ padding: 10px;
+ overflow: hidden;
+ background: #fbfbfb;
+}
+
+.manage-menus select {
+ float: right;
+ margin-left: 6px;
+}
+
+.manage-menus .selected-menu {
+ float: right;
+ margin: 5px 0 0 6px;
+}
+
+.manage-menus .submit-btn {
+ float: right;
+ margin-top: 1px;
+}
+
+.menu-edit p {
+ margin: .3em 0 .6em;
+}
+
+.menu-edit #post-body-content h3 {
+ margin: 1em 0 10px;
+}
+
+.menu-settings {
+ border-top: 1px solid #eee;
+ margin-top: 2em;
+}
+
+.menu-settings dl {
+ margin: 0 0 10px;
+ overflow: hidden;
+ padding-right: 18%;
+}
+
+.menu-settings dd {
+ float: right;
+ margin: 0;
+ width: 100%;
+}
+
+.menu-settings dt {
+ float: right;
+ clear: both;
+ width: 21.951%;
+ padding: 3px 0 0;
+ margin-right: -21.951%;
+}
+
+.menu-settings label {
+ vertical-align: baseline;
+}
+
+.menu-edit .checkbox-input {
+ margin-top: 4px;
+}
+
+.theme-location-set {
+ color: #999;
+ font-size: 11px;
+}
+
+/* Menu Container */
+#menu-management-liquid {
+ float: right;
+ min-width: 100%;
+ margin-top: 3px;
+}
+
+#menu-management {
+ position: relative;
+ margin-left: 20px;
+ margin-top: -3px;
+ width: 100%;
+ background: #f5f5f5;
+}
+
+#menu-management .menu-edit {
+ margin-bottom: 20px;
+}
+
+.nav-menus-php #post-body {
+ padding: 0 10px 10px;
+ border-top: 1px solid #fff;
+ border-bottom: 1px solid #dfdfdf;
+ background: #fff;
+}
+
+#nav-menu-header,
+#nav-menu-footer {
+ padding: 0 10px;
+}
+
+#nav-menu-header {
+ border-bottom: 1px solid #dfdfdf;
+ margin-bottom: 0;
+}
+
+#nav-menu-header .menu-name-label {
+ margin-top: 4px;
+}
+
+.nav-menus-php #post-body div.updated,
+.nav-menus-php #post-body div.error {
+ margin: 0;
+}
+
+.nav-menus-php #post-body-content {
+ position: relative;
+ float: none;
+}
+
+#menu-management .menu-add-new abbr {
+ font-weight:600;
+}
+
+#select-nav-menu-container {
+ text-align: left;
+ padding: 0 10px 3px 10px;
+ margin-bottom: 5px;
+}
+
+#select-nav-menu {
+ width: 100px;
+ display: inline;
+}
+
+#menu-name-label {
+ margin-top: -2px;
+}
+
+.widefat td.menu-location-menus {
+ padding-bottom: 5px;
+}
+
+.menu-location-menus select {
+ float: right;
+}
+
+#locations-nav-menu-wrapper {
+ padding: 5px 0;
+}
+
+.locations-nav-menu-select select {
+ float: right;
+ width: 160px;
+ margin-left: 5px;
+}
+
+.locations-row-links {
+ float: right;
+ margin: 6px 6px 0 0;
+}
+
+.locations-edit-menu-link,
+.locations-add-menu-link {
+ margin: 0 3px;
+}
+
+.locations-edit-menu-link {
+ padding-left: 3px;
+ border-left: 1px solid #ccc;
+}
+
+#wpbody .open-label {
+ display: block;
+ float:right;
+}
+
+#wpbody .open-label span {
+ padding-left: 10px;
+}
+
+.js .input-with-default-title {
+ color: #aaa;
+ font-style: italic;
+}
+
+#menu-management .inside {
+ padding: 0 10px;
+}
+
+/* Add Menu Item Boxes */
+.postbox .howto input,
+.accordion-container .howto input {
+ width: 180px;
+ float: left;
+}
+
+.accordion-container .outer-border {
+ margin: 0;
+}
+
+.customlinkdiv .howto input {
+ width: 180px;
+}
+
+.customlinkdiv p {
+ margin-top: 0
+}
+
+#nav-menu-theme-locations .howto select {
+ width: 100%;
+}
+
+#nav-menu-theme-locations .button-controls {
+ text-align: left;
+}
+
+.add-menu-item-view-all {
+ height: 400px;
+}
+
+/* Button Primary Actions */
+#menu-container .submit {
+ margin: 0 0 10px;
+ padding: 0;
+}
+
+.nav-menus-php .add-new-menu-action {
+ float: right;
+ margin: 6px 6px 0 0;
+ line-height: 15px;
+}
+
+.nav-menus-php .meta-sep,
+.nav-menus-php .submitdelete,
+.nav-menus-php .submitcancel {
+ display: block;
+ float: right;
+ margin: 6px 0;
+ line-height: 15px;
+}
+
+.meta-sep {
+ padding: 0 2px;
+}
+
+/* @todo: is this actually used? */
+#cancel-save {
+ text-decoration: underline;
+ font-size: 12px;
+ margin-right: 20px;
+ margin-top: 5px;
+}
+
+.button.right, .button-secondary.right, .button-primary.right {
+ float: left;
+}
+
+/* Button Secondary Actions */
+.list-controls {
+ float: right;
+ margin-top: 5px;
+}
+
+.add-to-menu {
+ float: left;
+}
+
+.postbox .spinner {
+ display: none;
+ vertical-align: middle;
+}
+
+.button-controls {
+ clear:both;
+ margin: 10px 0;
+}
+
+.show-all,
+.hide-all {
+ cursor: pointer;
+}
+
+.hide-all {
+ display: none;
+}
+
+/* Create Menu */
+#menu-name {
+ width: 270px;
+}
+
+#manage-menu .inside {
+ padding: 0px 0px;
+}
+
+/* Custom Links */
+#available-links dt {
+ display: block;
+}
+
+#add-custom-link .howto {
+ font-size: 12px;
+}
+
+#add-custom-link label span {
+ display: block;
+ float: right;
+ margin-top: 5px;
+ padding-left: 5px;
+}
+
+.menu-item-textbox {
+ width: 180px;
+}
+
+.nav-menus-php .howto span {
+ margin-top: 6px;
+ display: block;
+ float: right;
+}
+
+/* Menu item types */
+.quick-search {
+ width: 190px;
+}
+
+.nav-menus-php .list-wrap {
+ display: none;
+ clear: both;
+ margin-bottom: 10px;
+}
+
+.nav-menus-php .postbox p.submit {
+ margin-bottom: 0;
+}
+
+/* Listings */
+.nav-menus-php .list li {
+ display: none;
+ margin: 0;
+ margin-bottom: 5px;
+}
+
+.nav-menus-php .list li .menu-item-title {
+ cursor: pointer;
+ display: block;
+}
+
+.nav-menus-php .list li .menu-item-title input {
+ margin-left: 3px;
+ margin-top: -3px;
+}
+
+.menu-item-title input[type=checkbox] {
+ display: inline-block;
+ margin-top: -4px;
+}
+
+/* Nav Menu */
+#menu-container .inside {
+ padding-bottom: 10px;
+}
+
+.menu {
+ padding-top:1em;
+}
+
+#menu-to-edit {
+ margin: 0;
+ padding: 0.1em 0;
+}
+
+.menu ul {
+ width: 100%;
+}
+
+.menu li {
+ margin-bottom: 0;
+ position:relative;
+}
+
+.menu-item-bar {
+ clear:both;
+ line-height:1.5em;
+ position:relative;
+ margin: 9px 0 0;
+}
+
+.menu-item-bar .menu-item-handle {
+ border: 1px solid #dfdfdf;
+ position: relative;
+ padding: 10px 15px;
+ height: auto;
+ width: 382px;
+ line-height: 30px;
+ overflow: hidden;
+ word-wrap: break-word;
+}
+
+.menu-item-bar .menu-item-handle:hover {
+ border-color: #999;
+}
+
+#menu-to-edit .menu-item-invalid .menu-item-handle {
+ background: #f6c9cc;
+ border-color: #f1acb1;
+}
+
+.no-js .menu-item-edit-active .item-edit {
+ display: none;
+}
+
+.js .menu-item-handle {
+ cursor: move;
+}
+
+.menu li.deleting .menu-item-handle {
+ background-image: none;
+ background-color: #f66;
+}
+
+.menu-item-handle .item-title {
+ font-size: 13px;
+ font-weight: 600;
+ line-height: 20px;
+ display: block;
+ margin-left: 13em;
+}
+
+/* Sortables */
+li.menu-item.ui-sortable-helper dl {
+ margin-top: 0;
+}
+
+li.menu-item.ui-sortable-helper .menu-item-transport dl {
+ margin-top: 13px;
+}
+
+.menu .sortable-placeholder {
+ height: 35px;
+ width: 410px;
+ margin-top: 13px;
+}
+
+/* WARNING: The factor of 30px is hardcoded into the nav-menus javascript. */
+.menu-item-depth-0 { margin-right: 0px; }
+.menu-item-depth-1 { margin-right: 30px; }
+.menu-item-depth-2 { margin-right: 60px; }
+.menu-item-depth-3 { margin-right: 90px; }
+.menu-item-depth-4 { margin-right: 120px; }
+.menu-item-depth-5 { margin-right: 150px; }
+.menu-item-depth-6 { margin-right: 180px; }
+.menu-item-depth-7 { margin-right: 210px; }
+.menu-item-depth-8 { margin-right: 240px; }
+.menu-item-depth-9 { margin-right: 270px; }
+.menu-item-depth-10 { margin-right: 300px; }
+.menu-item-depth-11 { margin-right: 330px; }
+
+.menu-item-depth-0 .menu-item-transport { margin-right: 0px; }
+.menu-item-depth-1 .menu-item-transport { margin-right: -30px; }
+.menu-item-depth-2 .menu-item-transport { margin-right: -60px; }
+.menu-item-depth-3 .menu-item-transport { margin-right: -90px; }
+.menu-item-depth-4 .menu-item-transport { margin-right: -120px; }
+.menu-item-depth-5 .menu-item-transport { margin-right: -150px; }
+.menu-item-depth-6 .menu-item-transport { margin-right: -180px; }
+.menu-item-depth-7 .menu-item-transport { margin-right: -210px; }
+.menu-item-depth-8 .menu-item-transport { margin-right: -240px; }
+.menu-item-depth-9 .menu-item-transport { margin-right: -270px; }
+.menu-item-depth-10 .menu-item-transport { margin-right: -300px; }
+.menu-item-depth-11 .menu-item-transport { margin-right: -330px; }
+
+body.menu-max-depth-0 { min-width: 950px !important; }
+body.menu-max-depth-1 { min-width: 980px !important; }
+body.menu-max-depth-2 { min-width: 1010px !important; }
+body.menu-max-depth-3 { min-width: 1040px !important; }
+body.menu-max-depth-4 { min-width: 1070px !important; }
+body.menu-max-depth-5 { min-width: 1100px !important; }
+body.menu-max-depth-6 { min-width: 1130px !important; }
+body.menu-max-depth-7 { min-width: 1160px !important; }
+body.menu-max-depth-8 { min-width: 1190px !important; }
+body.menu-max-depth-9 { min-width: 1220px !important; }
+body.menu-max-depth-10 { min-width: 1250px !important; }
+body.menu-max-depth-11 { min-width: 1280px !important; }
+
+/* Menu item controls */
+.item-type {
+ color: #777;
+ font-size: 12px;
+ padding: 12px 10px;
+ line-height: 18px;
+ display: block;
+}
+
+.item-controls {
+ font-size: 12px;
+ position: absolute;
+ left: 20px;
+ top: -1px;
+}
+
+.item-controls a {
+ text-decoration: none;
+}
+
+.item-controls a:hover {
+ cursor: pointer;
+}
+
+.item-controls .item-order {
+ padding-left: 10px;
+}
+
+.nav-menus-php .item-edit {
+ position: absolute;
+ left: -20px;
+ top: 0;
+ display: block;
+ width: 30px;
+ height: 40px;
+ margin-left: 0 !important;
+ text-indent: 100%;
+ outline: none;
+ overflow: hidden;
+ white-space: nowrap;
+}
+
+/* Menu editing */
+.menu-instructions-inactive {
+ display: none;
+}
+
+.menu-item-settings {
+ display: block;
+ width: 402px;
+ padding: 10px 10px 10px 0;
+ position: relative;
+ z-index: 10; /* Keep .item-title's shadow from appearing on top of .menu-item-settings */
+ border: 1px solid #e5e5e5;
+ border-top: none;
+ -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
+ box-shadow: 0 1px 1px rgba(0,0,0,0.04);
+}
+
+.menu-item-settings .field-move a {
+ display: none;
+ margin: 0 2px;
+}
+
+.menu-item-edit-active .menu-item-settings {
+ display: block;
+}
+
+.menu-item-edit-inactive .menu-item-settings {
+ display: none;
+}
+
+.add-menu-item-pagelinks {
+ margin: .5em auto;
+ text-align: center;
+}
+
+.link-to-original {
+ display: block;
+ margin: 0 0 10px;
+ padding: 3px 5px 5px;
+ border: 1px solid #dfdfdf;
+ color: #777;
+ font-size: 12px;
+ font-style: italic;
+}
+
+.link-to-original a {
+ padding-right: 4px;
+ font-style: normal;
+}
+
+.hidden-field {
+ display: none;
+}
+
+.menu-item-settings .description-thin,
+.menu-item-settings .description-wide {
+ margin-left: 10px;
+ float: right;
+}
+
+.description-thin {
+ width: 190px;
+ height: 40px;
+}
+
+.description-wide {
+ width: 390px;
+}
+
+.menu-item-actions {
+ padding-top: 15px;
+}
+
+#cancel-save {
+ cursor: pointer;
+}
+
+/* Major/minor publishing actions (classes) */
+.nav-menus-php .major-publishing-actions {
+ clear: both;
+ padding: 3px 0 6px;
+}
+
+.nav-menus-php .major-publishing-actions .publishing-action {
+ text-align: left;
+ float: left;
+ line-height: 23px;
+ margin: 4px 0 1px;
+}
+
+.nav-menus-php .blank-slate .menu-settings {
+ display: none;
+}
+
+.nav-menus-php .delete-action {
+ float: right;
+ margin-top: 2px;
+}
+
+.nav-menus-php .submitbox .submitcancel {
+ border-bottom: 1px solid #0074a2;
+ padding: 1px 2px;
+ color: #0074a2;
+ text-decoration: none;
+}
+
+.nav-menus-php .submitbox .submitcancel:hover {
+ background: #0074a2;
+ color: #fff;
+}
+
+.nav-menus-php .major-publishing-actions .form-invalid {
+ padding-right: 4px;
+ margin-right: -4px;
+}
+
+/* Clearfix */
+#menu-item-name-wrap:after,
+#menu-item-url-wrap:after,
+#menu-name-label:after,
+#menu-settings-column .inside:after,
+#nav-menus-frame:after,
+.nav-menus-php #post-body-content:after,
+.nav-menus-php .button-controls:after,
+.nav-menus-php .major-publishing-actions:after,
+.nav-menus-php .menu-item-settings:after {
+ clear: both;
+ content: ".";
+ display: block;
+ height: 0;
+ visibility: hidden;
+}
+
+#nav-menus-frame,
+.button-controls,
+#menu-item-url-wrap,
+#menu-item-name-wrap {
+ display: block;
+}
+
+/* =Media Queries
+-------------------------------------------------------------- */
+
+@media screen and ( max-width: 782px ) {
+ body.nav-menus-php {
+ min-width: 0 !important;
+ }
+
+ #nav-menus-frame {
+ margin-right: 0;
+ float: none;
+ width: 100%;
+ }
+
+ #wpbody-content #menu-settings-column {
+ display: block;
+ width: 100%;
+ float: none;
+ margin-right: 0;
+ }
+
+ #side-sortables .add-menu-item-tabs {
+ margin: 15px 0 14px;
+ }
+
+ ul.add-menu-item-tabs li.tabs {
+ padding: 13px 15px 14px;
+ }
+
+ .nav-menus-php .item-controls .item-type {
+ margin-top: 2px;
+ }
+
+ .nav-menus-php .customlinkdiv .howto input {
+ width: 65%;
+ }
+
+ .nav-menus-php .quick-search {
+ width: 85%;
+ }
+
+ #menu-management-liquid {
+ margin-top: 25px;
+ }
+
+ .nav-menus-php .menu-name-label.howto span {
+ margin-top: 13px
+ }
+
+ .menu-name-label #menu-name {
+ margin-top: 4px;
+ }
+
+ .nav-menus-php .major-publishing-actions .publishing-action {
+ margin-top: 6px;
+ }
+
+ .nav-menus-php .delete-action {
+ font-size: 14px;
+ line-height: 50px;
+ margin-top: 12px;
+ }
+
+ .menu-item-bar .menu-item-handle,
+ .menu-item-settings,
+ .description-wide {
+ width: auto;
+ }
+
+ .menu-item-settings {
+ padding: 10px;
+ }
+
+ .menu-item-settings .description-thin,
+ .menu-item-settings .description-wide {
+ width: 100%;
+ height: auto;
+ }
+
+ .menu-item-settings input {
+ width: 100%;
+ }
+
+ .menu-settings dl {
+ padding-right: 0;
+ }
+
+ .menu-settings dd {
+ float: none;
+ width: 100%;
+ margin-bottom: 15px;
+ }
+
+ .menu-settings dt {
+ float: none;
+ width: auto;
+ margin-right: 0;
+ margin-bottom: 15px;
+ }
+}
+
+@media only screen and (max-width: 768px) {
+ /* menu locations */
+ #menu-locations-wrap .widefat {
+ width: 100%;
+ }
+}
diff --git a/sources/wp-admin/css/nav-menus.css b/sources/wp-admin/css/nav-menus.css
new file mode 100644
index 0000000..6466d94
--- /dev/null
+++ b/sources/wp-admin/css/nav-menus.css
@@ -0,0 +1,853 @@
+/* nav-menu */
+
+/* @todo: determine if this is truly for nav menus only */
+.no-js #message {
+ display: block;
+}
+
+ul.add-menu-item-tabs li {
+ padding: 3px 5px 3px 8px;
+}
+
+.accordion-section ul.category-tabs,
+.accordion-section ul.add-menu-item-tabs,
+.accordion-section ul.wp-tab-bar {
+ margin: 0;
+}
+
+.accordion-section .categorychecklist {
+ margin: 13px 0;
+}
+
+#nav-menu-meta .accordion-section-content {
+ padding: 18px 13px;
+}
+
+#nav-menu-meta .button-controls {
+ margin-bottom: 0;
+}
+
+#nav-menus-frame {
+ margin-left: 300px;
+ margin-top: 23px;
+}
+
+#wpbody-content #menu-settings-column {
+ display:inline;
+ width:281px;
+ margin-left: -300px;
+ clear: both;
+ float: left;
+ padding-top: 0;
+}
+
+#menu-settings-column .inside {
+ clear: both;
+ margin: 10px 0 0;
+}
+
+.metabox-holder-disabled .postbox,
+.metabox-holder-disabled .accordion-section-content,
+.metabox-holder-disabled .accordion-section-title {
+ opacity: 0.5;
+ filter: alpha(opacity=50);
+}
+
+.metabox-holder-disabled .button-controls .select-all {
+ display: none;
+}
+
+#wpbody {
+ position: relative;
+}
+
+.blank-slate .menu-name {
+ height: 2em;
+}
+
+.blank-slate .menu-settings {
+ border: none;
+ margin-top: 0;
+ padding-top: 0;
+ overflow: hidden;
+}
+
+.is-submenu {
+ color: #999;
+ font-style: italic;
+ font-weight: normal;
+ margin-left: 4px;
+}
+
+.manage-menus {
+ margin-top: 23px;
+ padding: 10px;
+ overflow: hidden;
+ background: #fbfbfb;
+}
+
+.manage-menus select {
+ float: left;
+ margin-right: 6px;
+}
+
+.manage-menus .selected-menu {
+ float: left;
+ margin: 5px 6px 0 0;
+}
+
+.manage-menus .submit-btn {
+ float: left;
+ margin-top: 1px;
+}
+
+.menu-edit p {
+ margin: .3em 0 .6em;
+}
+
+.menu-edit #post-body-content h3 {
+ margin: 1em 0 10px;
+}
+
+.menu-settings {
+ border-top: 1px solid #eee;
+ margin-top: 2em;
+}
+
+.menu-settings dl {
+ margin: 0 0 10px;
+ overflow: hidden;
+ padding-left: 18%;
+}
+
+.menu-settings dd {
+ float: left;
+ margin: 0;
+ width: 100%;
+}
+
+.menu-settings dt {
+ float: left;
+ clear: both;
+ width: 21.951%;
+ padding: 3px 0 0;
+ margin-left: -21.951%;
+}
+
+.menu-settings label {
+ vertical-align: baseline;
+}
+
+.menu-edit .checkbox-input {
+ margin-top: 4px;
+}
+
+.theme-location-set {
+ color: #999;
+ font-size: 11px;
+}
+
+/* Menu Container */
+#menu-management-liquid {
+ float: left;
+ min-width: 100%;
+ margin-top: 3px;
+}
+
+#menu-management {
+ position: relative;
+ margin-right: 20px;
+ margin-top: -3px;
+ width: 100%;
+ background: #f5f5f5;
+}
+
+#menu-management .menu-edit {
+ margin-bottom: 20px;
+}
+
+.nav-menus-php #post-body {
+ padding: 0 10px 10px;
+ border-top: 1px solid #fff;
+ border-bottom: 1px solid #dfdfdf;
+ background: #fff;
+}
+
+#nav-menu-header,
+#nav-menu-footer {
+ padding: 0 10px;
+}
+
+#nav-menu-header {
+ border-bottom: 1px solid #dfdfdf;
+ margin-bottom: 0;
+}
+
+#nav-menu-header .menu-name-label {
+ margin-top: 4px;
+}
+
+.nav-menus-php #post-body div.updated,
+.nav-menus-php #post-body div.error {
+ margin: 0;
+}
+
+.nav-menus-php #post-body-content {
+ position: relative;
+ float: none;
+}
+
+#menu-management .menu-add-new abbr {
+ font-weight:600;
+}
+
+#select-nav-menu-container {
+ text-align: right;
+ padding: 0 10px 3px 10px;
+ margin-bottom: 5px;
+}
+
+#select-nav-menu {
+ width: 100px;
+ display: inline;
+}
+
+#menu-name-label {
+ margin-top: -2px;
+}
+
+.widefat td.menu-location-menus {
+ padding-bottom: 5px;
+}
+
+.menu-location-menus select {
+ float: left;
+}
+
+#locations-nav-menu-wrapper {
+ padding: 5px 0;
+}
+
+.locations-nav-menu-select select {
+ float: left;
+ width: 160px;
+ margin-right: 5px;
+}
+
+.locations-row-links {
+ float: left;
+ margin: 6px 0 0 6px;
+}
+
+.locations-edit-menu-link,
+.locations-add-menu-link {
+ margin: 0 3px;
+}
+
+.locations-edit-menu-link {
+ padding-right: 3px;
+ border-right: 1px solid #ccc;
+}
+
+#wpbody .open-label {
+ display: block;
+ float:left;
+}
+
+#wpbody .open-label span {
+ padding-right: 10px;
+}
+
+.js .input-with-default-title {
+ color: #aaa;
+ font-style: italic;
+}
+
+#menu-management .inside {
+ padding: 0 10px;
+}
+
+/* Add Menu Item Boxes */
+.postbox .howto input,
+.accordion-container .howto input {
+ width: 180px;
+ float: right;
+}
+
+.accordion-container .outer-border {
+ margin: 0;
+}
+
+.customlinkdiv .howto input {
+ width: 180px;
+}
+
+.customlinkdiv p {
+ margin-top: 0
+}
+
+#nav-menu-theme-locations .howto select {
+ width: 100%;
+}
+
+#nav-menu-theme-locations .button-controls {
+ text-align: right;
+}
+
+.add-menu-item-view-all {
+ height: 400px;
+}
+
+/* Button Primary Actions */
+#menu-container .submit {
+ margin: 0 0 10px;
+ padding: 0;
+}
+
+.nav-menus-php .add-new-menu-action {
+ float: left;
+ margin: 6px 0 0 6px;
+ line-height: 15px;
+}
+
+.nav-menus-php .meta-sep,
+.nav-menus-php .submitdelete,
+.nav-menus-php .submitcancel {
+ display: block;
+ float: left;
+ margin: 6px 0;
+ line-height: 15px;
+}
+
+.meta-sep {
+ padding: 0 2px;
+}
+
+/* @todo: is this actually used? */
+#cancel-save {
+ text-decoration: underline;
+ font-size: 12px;
+ margin-left: 20px;
+ margin-top: 5px;
+}
+
+.button.right, .button-secondary.right, .button-primary.right {
+ float: right;
+}
+
+/* Button Secondary Actions */
+.list-controls {
+ float: left;
+ margin-top: 5px;
+}
+
+.add-to-menu {
+ float: right;
+}
+
+.postbox .spinner {
+ display: none;
+ vertical-align: middle;
+}
+
+.button-controls {
+ clear:both;
+ margin: 10px 0;
+}
+
+.show-all,
+.hide-all {
+ cursor: pointer;
+}
+
+.hide-all {
+ display: none;
+}
+
+/* Create Menu */
+#menu-name {
+ width: 270px;
+}
+
+#manage-menu .inside {
+ padding: 0px 0px;
+}
+
+/* Custom Links */
+#available-links dt {
+ display: block;
+}
+
+#add-custom-link .howto {
+ font-size: 12px;
+}
+
+#add-custom-link label span {
+ display: block;
+ float: left;
+ margin-top: 5px;
+ padding-right: 5px;
+}
+
+.menu-item-textbox {
+ width: 180px;
+}
+
+.nav-menus-php .howto span {
+ margin-top: 6px;
+ display: block;
+ float: left;
+}
+
+/* Menu item types */
+.quick-search {
+ width: 190px;
+}
+
+.nav-menus-php .list-wrap {
+ display: none;
+ clear: both;
+ margin-bottom: 10px;
+}
+
+.nav-menus-php .postbox p.submit {
+ margin-bottom: 0;
+}
+
+/* Listings */
+.nav-menus-php .list li {
+ display: none;
+ margin: 0;
+ margin-bottom: 5px;
+}
+
+.nav-menus-php .list li .menu-item-title {
+ cursor: pointer;
+ display: block;
+}
+
+.nav-menus-php .list li .menu-item-title input {
+ margin-right: 3px;
+ margin-top: -3px;
+}
+
+.menu-item-title input[type=checkbox] {
+ display: inline-block;
+ margin-top: -4px;
+}
+
+/* Nav Menu */
+#menu-container .inside {
+ padding-bottom: 10px;
+}
+
+.menu {
+ padding-top:1em;
+}
+
+#menu-to-edit {
+ margin: 0;
+ padding: 0.1em 0;
+}
+
+.menu ul {
+ width: 100%;
+}
+
+.menu li {
+ margin-bottom: 0;
+ position:relative;
+}
+
+.menu-item-bar {
+ clear:both;
+ line-height:1.5em;
+ position:relative;
+ margin: 9px 0 0;
+}
+
+.menu-item-bar .menu-item-handle {
+ border: 1px solid #dfdfdf;
+ position: relative;
+ padding: 10px 15px;
+ height: auto;
+ width: 382px;
+ line-height: 30px;
+ overflow: hidden;
+ word-wrap: break-word;
+}
+
+.menu-item-bar .menu-item-handle:hover {
+ border-color: #999;
+}
+
+#menu-to-edit .menu-item-invalid .menu-item-handle {
+ background: #f6c9cc;
+ border-color: #f1acb1;
+}
+
+.no-js .menu-item-edit-active .item-edit {
+ display: none;
+}
+
+.js .menu-item-handle {
+ cursor: move;
+}
+
+.menu li.deleting .menu-item-handle {
+ background-image: none;
+ background-color: #f66;
+}
+
+.menu-item-handle .item-title {
+ font-size: 13px;
+ font-weight: 600;
+ line-height: 20px;
+ display: block;
+ margin-right: 13em;
+}
+
+/* Sortables */
+li.menu-item.ui-sortable-helper dl {
+ margin-top: 0;
+}
+
+li.menu-item.ui-sortable-helper .menu-item-transport dl {
+ margin-top: 13px;
+}
+
+.menu .sortable-placeholder {
+ height: 35px;
+ width: 410px;
+ margin-top: 13px;
+}
+
+/* WARNING: The factor of 30px is hardcoded into the nav-menus javascript. */
+.menu-item-depth-0 { margin-left: 0px; }
+.menu-item-depth-1 { margin-left: 30px; }
+.menu-item-depth-2 { margin-left: 60px; }
+.menu-item-depth-3 { margin-left: 90px; }
+.menu-item-depth-4 { margin-left: 120px; }
+.menu-item-depth-5 { margin-left: 150px; }
+.menu-item-depth-6 { margin-left: 180px; }
+.menu-item-depth-7 { margin-left: 210px; }
+.menu-item-depth-8 { margin-left: 240px; }
+.menu-item-depth-9 { margin-left: 270px; }
+.menu-item-depth-10 { margin-left: 300px; }
+.menu-item-depth-11 { margin-left: 330px; }
+
+.menu-item-depth-0 .menu-item-transport { margin-left: 0px; }
+.menu-item-depth-1 .menu-item-transport { margin-left: -30px; }
+.menu-item-depth-2 .menu-item-transport { margin-left: -60px; }
+.menu-item-depth-3 .menu-item-transport { margin-left: -90px; }
+.menu-item-depth-4 .menu-item-transport { margin-left: -120px; }
+.menu-item-depth-5 .menu-item-transport { margin-left: -150px; }
+.menu-item-depth-6 .menu-item-transport { margin-left: -180px; }
+.menu-item-depth-7 .menu-item-transport { margin-left: -210px; }
+.menu-item-depth-8 .menu-item-transport { margin-left: -240px; }
+.menu-item-depth-9 .menu-item-transport { margin-left: -270px; }
+.menu-item-depth-10 .menu-item-transport { margin-left: -300px; }
+.menu-item-depth-11 .menu-item-transport { margin-left: -330px; }
+
+body.menu-max-depth-0 { min-width: 950px !important; }
+body.menu-max-depth-1 { min-width: 980px !important; }
+body.menu-max-depth-2 { min-width: 1010px !important; }
+body.menu-max-depth-3 { min-width: 1040px !important; }
+body.menu-max-depth-4 { min-width: 1070px !important; }
+body.menu-max-depth-5 { min-width: 1100px !important; }
+body.menu-max-depth-6 { min-width: 1130px !important; }
+body.menu-max-depth-7 { min-width: 1160px !important; }
+body.menu-max-depth-8 { min-width: 1190px !important; }
+body.menu-max-depth-9 { min-width: 1220px !important; }
+body.menu-max-depth-10 { min-width: 1250px !important; }
+body.menu-max-depth-11 { min-width: 1280px !important; }
+
+/* Menu item controls */
+.item-type {
+ color: #777;
+ font-size: 12px;
+ padding: 12px 10px;
+ line-height: 18px;
+ display: block;
+}
+
+.item-controls {
+ font-size: 12px;
+ position: absolute;
+ right: 20px;
+ top: -1px;
+}
+
+.item-controls a {
+ text-decoration: none;
+}
+
+.item-controls a:hover {
+ cursor: pointer;
+}
+
+.item-controls .item-order {
+ padding-right: 10px;
+}
+
+.nav-menus-php .item-edit {
+ position: absolute;
+ right: -20px;
+ top: 0;
+ display: block;
+ width: 30px;
+ height: 40px;
+ margin-right: 0 !important;
+ text-indent: 100%;
+ outline: none;
+ overflow: hidden;
+ white-space: nowrap;
+}
+
+/* Menu editing */
+.menu-instructions-inactive {
+ display: none;
+}
+
+.menu-item-settings {
+ display: block;
+ width: 402px;
+ padding: 10px 0 10px 10px;
+ position: relative;
+ z-index: 10; /* Keep .item-title's shadow from appearing on top of .menu-item-settings */
+ border: 1px solid #e5e5e5;
+ border-top: none;
+ -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
+ box-shadow: 0 1px 1px rgba(0,0,0,0.04);
+}
+
+.menu-item-settings .field-move a {
+ display: none;
+ margin: 0 2px;
+}
+
+.menu-item-edit-active .menu-item-settings {
+ display: block;
+}
+
+.menu-item-edit-inactive .menu-item-settings {
+ display: none;
+}
+
+.add-menu-item-pagelinks {
+ margin: .5em auto;
+ text-align: center;
+}
+
+.link-to-original {
+ display: block;
+ margin: 0 0 10px;
+ padding: 3px 5px 5px;
+ border: 1px solid #dfdfdf;
+ color: #777;
+ font-size: 12px;
+ font-style: italic;
+}
+
+.link-to-original a {
+ padding-left: 4px;
+ font-style: normal;
+}
+
+.hidden-field {
+ display: none;
+}
+
+.menu-item-settings .description-thin,
+.menu-item-settings .description-wide {
+ margin-right: 10px;
+ float: left;
+}
+
+.description-thin {
+ width: 190px;
+ height: 40px;
+}
+
+.description-wide {
+ width: 390px;
+}
+
+.menu-item-actions {
+ padding-top: 15px;
+}
+
+#cancel-save {
+ cursor: pointer;
+}
+
+/* Major/minor publishing actions (classes) */
+.nav-menus-php .major-publishing-actions {
+ clear: both;
+ padding: 3px 0 6px;
+}
+
+.nav-menus-php .major-publishing-actions .publishing-action {
+ text-align: right;
+ float: right;
+ line-height: 23px;
+ margin: 4px 0 1px;
+}
+
+.nav-menus-php .blank-slate .menu-settings {
+ display: none;
+}
+
+.nav-menus-php .delete-action {
+ float: left;
+ margin-top: 2px;
+}
+
+.nav-menus-php .submitbox .submitcancel {
+ border-bottom: 1px solid #0074a2;
+ padding: 1px 2px;
+ color: #0074a2;
+ text-decoration: none;
+}
+
+.nav-menus-php .submitbox .submitcancel:hover {
+ background: #0074a2;
+ color: #fff;
+}
+
+.nav-menus-php .major-publishing-actions .form-invalid {
+ padding-left: 4px;
+ margin-left: -4px;
+}
+
+/* Clearfix */
+#menu-item-name-wrap:after,
+#menu-item-url-wrap:after,
+#menu-name-label:after,
+#menu-settings-column .inside:after,
+#nav-menus-frame:after,
+.nav-menus-php #post-body-content:after,
+.nav-menus-php .button-controls:after,
+.nav-menus-php .major-publishing-actions:after,
+.nav-menus-php .menu-item-settings:after {
+ clear: both;
+ content: ".";
+ display: block;
+ height: 0;
+ visibility: hidden;
+}
+
+#nav-menus-frame,
+.button-controls,
+#menu-item-url-wrap,
+#menu-item-name-wrap {
+ display: block;
+}
+
+/* =Media Queries
+-------------------------------------------------------------- */
+
+@media screen and ( max-width: 782px ) {
+ body.nav-menus-php {
+ min-width: 0 !important;
+ }
+
+ #nav-menus-frame {
+ margin-left: 0;
+ float: none;
+ width: 100%;
+ }
+
+ #wpbody-content #menu-settings-column {
+ display: block;
+ width: 100%;
+ float: none;
+ margin-left: 0;
+ }
+
+ #side-sortables .add-menu-item-tabs {
+ margin: 15px 0 14px;
+ }
+
+ ul.add-menu-item-tabs li.tabs {
+ padding: 13px 15px 14px;
+ }
+
+ .nav-menus-php .item-controls .item-type {
+ margin-top: 2px;
+ }
+
+ .nav-menus-php .customlinkdiv .howto input {
+ width: 65%;
+ }
+
+ .nav-menus-php .quick-search {
+ width: 85%;
+ }
+
+ #menu-management-liquid {
+ margin-top: 25px;
+ }
+
+ .nav-menus-php .menu-name-label.howto span {
+ margin-top: 13px
+ }
+
+ .menu-name-label #menu-name {
+ margin-top: 4px;
+ }
+
+ .nav-menus-php .major-publishing-actions .publishing-action {
+ margin-top: 6px;
+ }
+
+ .nav-menus-php .delete-action {
+ font-size: 14px;
+ line-height: 50px;
+ margin-top: 12px;
+ }
+
+ .menu-item-bar .menu-item-handle,
+ .menu-item-settings,
+ .description-wide {
+ width: auto;
+ }
+
+ .menu-item-settings {
+ padding: 10px;
+ }
+
+ .menu-item-settings .description-thin,
+ .menu-item-settings .description-wide {
+ width: 100%;
+ height: auto;
+ }
+
+ .menu-item-settings input {
+ width: 100%;
+ }
+
+ .menu-settings dl {
+ padding-left: 0;
+ }
+
+ .menu-settings dd {
+ float: none;
+ width: 100%;
+ margin-bottom: 15px;
+ }
+
+ .menu-settings dt {
+ float: none;
+ width: auto;
+ margin-left: 0;
+ margin-bottom: 15px;
+ }
+}
+
+@media only screen and (max-width: 768px) {
+ /* menu locations */
+ #menu-locations-wrap .widefat {
+ width: 100%;
+ }
+}
diff --git a/sources/wp-admin/css/press-this-rtl.css b/sources/wp-admin/css/press-this-rtl.css
new file mode 100644
index 0000000..4773ba4
--- /dev/null
+++ b/sources/wp-admin/css/press-this-rtl.css
@@ -0,0 +1,458 @@
+.press-this #message {
+ border-right: 4px solid #7ad03a;
+ padding: 1px 12px;
+ background-color: #fff;
+ -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
+ box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
+}
+
+.press-this #side-sortables .category-tabs li {
+ display: inline;
+ line-height: 1.35em;
+}
+
+body.press-this ul.category-tabs li.tabs a {
+ color: #333;
+}
+
+.press-this #content-resize-handle {
+ bottom: 2px;
+}
+
+body.press-this {
+ color: #333;
+ margin: 0;
+ padding: 0;
+ min-width: 708px;
+ min-height: 400px;
+}
+
+.press-this #titlediv #title {
+ font-size: 1.4em;
+}
+
+.press-this #site-heading:before {
+ top: 3px;
+ position: relative;
+ display: inline-block;
+ font: normal 18px/1 'dashicons';
+ speak: none;
+ color: #727272;
+ content: '\f120';
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+.press-this #wphead {
+ height: 32px;
+ margin-right: 0;
+ margin-left: 0;
+ margin-bottom: 5px;
+}
+
+.press-this #header-logo {
+ float: right;
+ margin: 7px 7px 0;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
+
+.press-this #wphead h1 {
+ font-weight: normal;
+ font-size: 16px;
+ line-height: 32px;
+ margin: 0;
+ float: right;
+}
+
+.press-this #wphead h1 a {
+ text-decoration: none;
+}
+
+.press-this #wphead h1 a:hover {
+ text-decoration: underline;
+}
+
+.press-this #message {
+ margin: 10px 0;
+}
+
+.press-this .posting {
+ margin-left: 250px;
+}
+
+.press-this-sidebar {
+ float: left;
+ width: 240px;
+ padding-top: 10px;
+}
+
+.press-this #title {
+ margin-right: 0;
+ margin-left: 0;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}
+
+.press-this .tagchecklist {
+ margin-top: 8px;
+}
+
+.press-this #titlediv {
+ margin: 0;
+}
+
+.press-this #wp-content-wrap #wp-content-editor-tools {
+ padding: 0;
+ top: 3px;
+ overflow: hidden;
+}
+
+.press-this .wp-media-buttons {
+ cursor: default;
+ padding: 8px 8px 6px;
+}
+
+.press-this #wp-content-wrap #wp-content-media-buttons a {
+ padding: 0;
+ line-height: normal;
+ height: auto;
+ font-size: 16px;
+}
+
+.press-this #wp-content-wrap .mce-toolbar .mce-btn-group .mce-btn {
+ margin: 0 1px;
+}
+
+.press-this #wp-content-wrap .mce-toolbar .mce-btn button {
+ padding: 2px 3px;
+}
+
+.press-this #wp-content-wrap div.mce-toolbar-grp,
+.press-this #wp-content-wrap .quicktags-toolbar {
+ padding-left: 3px;
+}
+
+.press-this .howto {
+ margin-top: 2px;
+ margin-bottom: 3px;
+ font-size: 12px;
+ font-style: italic;
+ display: block;
+}
+
+.press-this #wp-content-editor-container {
+ clear: none;
+}
+
+.press-this #poststuff .inside {
+ margin-top: 18px;
+}
+
+.press-this .category-tabs {
+ margin-bottom: 3px;
+}
+
+/* Editor/Main Column */
+.press-this #poststuff {
+ margin: 0 8px;
+ padding: 0;
+}
+
+.press-this #photo-add-url-div input[type="text"] {
+ width: 220px;
+}
+
+#poststuff #editor-toolbar {
+ height: 30px;
+}
+
+.posting {
+ margin-left: 212px;
+ position: relative;
+}
+
+.press-this .inner-sidebar {
+ width: 200px;
+}
+
+.press-this .inner-sidebar .sleeve {
+ padding-top: 5px;
+}
+
+.press-this #submitdiv p {
+ margin: 0;
+ padding: 6px;
+}
+
+.press-this #submitdiv #publishing-actions {
+ border-bottom: 1px solid #dfdfdf;
+}
+
+.press-this #publish {
+ float: left;
+}
+
+.press-this #poststuff h2,
+.press-this #poststuff h3 {
+ font-size: 14px;
+ line-height: 1;
+}
+
+.press-this #tagsdiv-post_tag h3,
+.press-this #categorydiv h3 {
+ cursor: pointer;
+}
+
+.press-this #submitdiv h3 {
+ cursor: default;
+}
+
+h3.tb {
+ font-weight: 600;
+ font-size: 12px;
+ margin-right: 5px;
+}
+
+.press-this .postbox,
+.press-this .stuffbox {
+ margin-bottom: 10px;
+ min-width: 0;
+}
+
+.press-this #submitdiv:hover .handlediv {
+ background: none;
+}
+
+.tbtitle {
+ font-size: 1.7em;
+ outline: none;
+ padding: 3px 4px;
+ border: 1px solid #dfdfdf;
+}
+
+.press-this .actions {
+ float: left;
+ margin: -19px 0 0;
+}
+
+.press-this #extra-fields .actions {
+ margin: -32px 0 0 -7px;
+}
+
+.press-this .actions li {
+ float: right;
+ list-style: none;
+ margin-left: 10px;
+}
+
+#extra-fields .button {
+ margin-left: 5px;
+}
+
+/* Photo Styles */
+#photo_saving {
+ margin: 0 8px 8px;
+ vertical-align: middle;
+}
+
+#img_container_container {
+ overflow: auto;
+}
+
+#extra-fields {
+ margin-top: 10px;
+ position: relative;
+}
+
+#extra-fields h2 {
+ margin: 12px;
+}
+
+#waiting {
+ margin-top: 10px;
+ overflow: hidden;
+}
+
+#waiting span {
+ float: left;
+ margin: 0 5px 0 0;
+}
+
+#waiting .spinner {
+ display: block;
+}
+
+#extra-fields .postbox {
+ margin-bottom: 5px;
+}
+
+#extra-fields .titlewrap {
+ padding: 0;
+ overflow: auto;
+ height: 120px;
+}
+
+#img_container a {
+ display: block;
+ float: right;
+ overflow: hidden;
+}
+
+#img_container img,
+#img_container a {
+ width: 68px;
+ height: 68px;
+}
+
+#img_container img {
+ border: none;
+ background-color: #f4f4f4;
+ cursor: pointer;
+}
+
+#img_container a,
+#img_container a:link,
+#img_container a:visited {
+ border: 1px solid #ccc;
+ display: block;
+ position: relative;
+}
+
+#img_container a:hover,
+#img_container a:active {
+ border-color: #000;
+ z-index: 1000;
+ border-width: 1px;
+}
+
+/* Video */
+#embed-code {
+ width: 100%;
+ height: 98px;
+}
+
+/* Categories */
+.press-this .categorydiv div.tabs-panel {
+ height: 100px;
+}
+
+/* Tags */
+.press-this .tagsdiv .newtag {
+ width: 120px;
+}
+
+.press-this #content {
+ margin: 5px 0;
+ padding: 0 5px;
+ border: 0 none;
+ height: 340px;
+ font-family: Consolas, Monaco, monospace;
+ font-size: 13px;
+ line-height: 19px;
+ background: transparent;
+}
+
+/* Submit */
+.press-this #publishing-actions .spinner {
+ display: inline;
+ vertical-align: middle;
+}
+
+/* =Media Queries
+-------------------------------------------------------------- */
+
+/* Reset responsive styles in Press This */
+@media screen and ( max-width: 782px ) {
+ .press-this ul.category-tabs li.tabs {
+ padding: 3px 5px 5px; /* Reset tabs in Press This to standard size */
+ }
+
+ .press-this a.wp-switch-editor {
+ font: 13px/19px "Open Sans", sans-serif;
+ margin: 5px 5px 0 0;
+ padding: 3px 8px 4px;
+ }
+
+ .press-this #wp-content-media-buttons a {
+ padding: 0;
+ line-height: normal;
+ height: auto;
+ }
+
+ .press-this #wp-content-editor-tools {
+ padding: 0;
+ top: 3px;
+ }
+
+ .press-this .category-tabs {
+ margin-top: 0;
+ }
+
+ .press-this .tagsdiv .newtag {
+ width: 120px;
+ padding: 3px 5px;
+ margin-bottom: 0;
+ }
+
+ .press-this .tagchecklist {
+ padding: 0;
+ margin-bottom: 0;
+ }
+
+ .press-this .wp_themeSkin a.mceButton {
+ width: 20px;
+ height: 20px;
+ }
+
+ .press-this .wp_themeSkin .mceButton .mceIcon {
+ margin: 0;
+ }
+
+ .press-this #poststuff h3,
+ .press-this .metabox-holder h3 {
+ padding: 7px 12px;
+ }
+
+ .press-this input[type=checkbox],
+ .press-this input[type=radio] {
+ height: 16px;
+ width: 16px;
+ }
+
+ .press-this input[type=checkbox]:checked:before {
+ width: 16px;
+ font: normal 21px/1 'dashicons';
+ margin: -3px -4px 0 0;
+ }
+
+ .press-this input[type=radio]:checked:before {
+ font: normal 21px/1 'dashicons';
+ width: 6px;
+ height: 6px;
+ margin: 4px;
+ }
+
+ .press-this ul.categorychecklist ul,
+ .press-this ul.categorychecklist li {
+ margin-top: 0;
+ margin-bottom: 0;
+ }
+
+ .press-this div.quicktags-toolbar input {
+ padding: 2px 4px;
+ }
+
+ .press-this textarea,
+ .press-this input {
+ font-size: 14px;
+ }
+
+ .press-this .tagchecklist span {
+ font-size: 13px;
+ line-height: 1.8em;
+ }
+}
diff --git a/sources/wp-admin/css/press-this.css b/sources/wp-admin/css/press-this.css
new file mode 100644
index 0000000..dbf355a
--- /dev/null
+++ b/sources/wp-admin/css/press-this.css
@@ -0,0 +1,458 @@
+.press-this #message {
+ border-left: 4px solid #7ad03a;
+ padding: 1px 12px;
+ background-color: #fff;
+ -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
+ box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
+}
+
+.press-this #side-sortables .category-tabs li {
+ display: inline;
+ line-height: 1.35em;
+}
+
+body.press-this ul.category-tabs li.tabs a {
+ color: #333;
+}
+
+.press-this #content-resize-handle {
+ bottom: 2px;
+}
+
+body.press-this {
+ color: #333;
+ margin: 0;
+ padding: 0;
+ min-width: 708px;
+ min-height: 400px;
+}
+
+.press-this #titlediv #title {
+ font-size: 1.4em;
+}
+
+.press-this #site-heading:before {
+ top: 3px;
+ position: relative;
+ display: inline-block;
+ font: normal 18px/1 'dashicons';
+ speak: none;
+ color: #727272;
+ content: '\f120';
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+.press-this #wphead {
+ height: 32px;
+ margin-left: 0;
+ margin-right: 0;
+ margin-bottom: 5px;
+}
+
+.press-this #header-logo {
+ float: left;
+ margin: 7px 7px 0;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
+
+.press-this #wphead h1 {
+ font-weight: normal;
+ font-size: 16px;
+ line-height: 32px;
+ margin: 0;
+ float: left;
+}
+
+.press-this #wphead h1 a {
+ text-decoration: none;
+}
+
+.press-this #wphead h1 a:hover {
+ text-decoration: underline;
+}
+
+.press-this #message {
+ margin: 10px 0;
+}
+
+.press-this .posting {
+ margin-right: 250px;
+}
+
+.press-this-sidebar {
+ float: right;
+ width: 240px;
+ padding-top: 10px;
+}
+
+.press-this #title {
+ margin-left: 0;
+ margin-right: 0;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}
+
+.press-this .tagchecklist {
+ margin-top: 8px;
+}
+
+.press-this #titlediv {
+ margin: 0;
+}
+
+.press-this #wp-content-wrap #wp-content-editor-tools {
+ padding: 0;
+ top: 3px;
+ overflow: hidden;
+}
+
+.press-this .wp-media-buttons {
+ cursor: default;
+ padding: 8px 8px 6px;
+}
+
+.press-this #wp-content-wrap #wp-content-media-buttons a {
+ padding: 0;
+ line-height: normal;
+ height: auto;
+ font-size: 16px;
+}
+
+.press-this #wp-content-wrap .mce-toolbar .mce-btn-group .mce-btn {
+ margin: 0 1px;
+}
+
+.press-this #wp-content-wrap .mce-toolbar .mce-btn button {
+ padding: 2px 3px;
+}
+
+.press-this #wp-content-wrap div.mce-toolbar-grp,
+.press-this #wp-content-wrap .quicktags-toolbar {
+ padding-right: 3px;
+}
+
+.press-this .howto {
+ margin-top: 2px;
+ margin-bottom: 3px;
+ font-size: 12px;
+ font-style: italic;
+ display: block;
+}
+
+.press-this #wp-content-editor-container {
+ clear: none;
+}
+
+.press-this #poststuff .inside {
+ margin-top: 18px;
+}
+
+.press-this .category-tabs {
+ margin-bottom: 3px;
+}
+
+/* Editor/Main Column */
+.press-this #poststuff {
+ margin: 0 8px;
+ padding: 0;
+}
+
+.press-this #photo-add-url-div input[type="text"] {
+ width: 220px;
+}
+
+#poststuff #editor-toolbar {
+ height: 30px;
+}
+
+.posting {
+ margin-right: 212px;
+ position: relative;
+}
+
+.press-this .inner-sidebar {
+ width: 200px;
+}
+
+.press-this .inner-sidebar .sleeve {
+ padding-top: 5px;
+}
+
+.press-this #submitdiv p {
+ margin: 0;
+ padding: 6px;
+}
+
+.press-this #submitdiv #publishing-actions {
+ border-bottom: 1px solid #dfdfdf;
+}
+
+.press-this #publish {
+ float: right;
+}
+
+.press-this #poststuff h2,
+.press-this #poststuff h3 {
+ font-size: 14px;
+ line-height: 1;
+}
+
+.press-this #tagsdiv-post_tag h3,
+.press-this #categorydiv h3 {
+ cursor: pointer;
+}
+
+.press-this #submitdiv h3 {
+ cursor: default;
+}
+
+h3.tb {
+ font-weight: 600;
+ font-size: 12px;
+ margin-left: 5px;
+}
+
+.press-this .postbox,
+.press-this .stuffbox {
+ margin-bottom: 10px;
+ min-width: 0;
+}
+
+.press-this #submitdiv:hover .handlediv {
+ background: none;
+}
+
+.tbtitle {
+ font-size: 1.7em;
+ outline: none;
+ padding: 3px 4px;
+ border: 1px solid #dfdfdf;
+}
+
+.press-this .actions {
+ float: right;
+ margin: -19px 0 0;
+}
+
+.press-this #extra-fields .actions {
+ margin: -32px -7px 0 0;
+}
+
+.press-this .actions li {
+ float: left;
+ list-style: none;
+ margin-right: 10px;
+}
+
+#extra-fields .button {
+ margin-right: 5px;
+}
+
+/* Photo Styles */
+#photo_saving {
+ margin: 0 8px 8px;
+ vertical-align: middle;
+}
+
+#img_container_container {
+ overflow: auto;
+}
+
+#extra-fields {
+ margin-top: 10px;
+ position: relative;
+}
+
+#extra-fields h2 {
+ margin: 12px;
+}
+
+#waiting {
+ margin-top: 10px;
+ overflow: hidden;
+}
+
+#waiting span {
+ float: right;
+ margin: 0 0 0 5px;
+}
+
+#waiting .spinner {
+ display: block;
+}
+
+#extra-fields .postbox {
+ margin-bottom: 5px;
+}
+
+#extra-fields .titlewrap {
+ padding: 0;
+ overflow: auto;
+ height: 120px;
+}
+
+#img_container a {
+ display: block;
+ float: left;
+ overflow: hidden;
+}
+
+#img_container img,
+#img_container a {
+ width: 68px;
+ height: 68px;
+}
+
+#img_container img {
+ border: none;
+ background-color: #f4f4f4;
+ cursor: pointer;
+}
+
+#img_container a,
+#img_container a:link,
+#img_container a:visited {
+ border: 1px solid #ccc;
+ display: block;
+ position: relative;
+}
+
+#img_container a:hover,
+#img_container a:active {
+ border-color: #000;
+ z-index: 1000;
+ border-width: 1px;
+}
+
+/* Video */
+#embed-code {
+ width: 100%;
+ height: 98px;
+}
+
+/* Categories */
+.press-this .categorydiv div.tabs-panel {
+ height: 100px;
+}
+
+/* Tags */
+.press-this .tagsdiv .newtag {
+ width: 120px;
+}
+
+.press-this #content {
+ margin: 5px 0;
+ padding: 0 5px;
+ border: 0 none;
+ height: 340px;
+ font-family: Consolas, Monaco, monospace;
+ font-size: 13px;
+ line-height: 19px;
+ background: transparent;
+}
+
+/* Submit */
+.press-this #publishing-actions .spinner {
+ display: inline;
+ vertical-align: middle;
+}
+
+/* =Media Queries
+-------------------------------------------------------------- */
+
+/* Reset responsive styles in Press This */
+@media screen and ( max-width: 782px ) {
+ .press-this ul.category-tabs li.tabs {
+ padding: 3px 5px 5px; /* Reset tabs in Press This to standard size */
+ }
+
+ .press-this a.wp-switch-editor {
+ font: 13px/19px "Open Sans", sans-serif;
+ margin: 5px 0 0 5px;
+ padding: 3px 8px 4px;
+ }
+
+ .press-this #wp-content-media-buttons a {
+ padding: 0;
+ line-height: normal;
+ height: auto;
+ }
+
+ .press-this #wp-content-editor-tools {
+ padding: 0;
+ top: 3px;
+ }
+
+ .press-this .category-tabs {
+ margin-top: 0;
+ }
+
+ .press-this .tagsdiv .newtag {
+ width: 120px;
+ padding: 3px 5px;
+ margin-bottom: 0;
+ }
+
+ .press-this .tagchecklist {
+ padding: 0;
+ margin-bottom: 0;
+ }
+
+ .press-this .wp_themeSkin a.mceButton {
+ width: 20px;
+ height: 20px;
+ }
+
+ .press-this .wp_themeSkin .mceButton .mceIcon {
+ margin: 0;
+ }
+
+ .press-this #poststuff h3,
+ .press-this .metabox-holder h3 {
+ padding: 7px 12px;
+ }
+
+ .press-this input[type=checkbox],
+ .press-this input[type=radio] {
+ height: 16px;
+ width: 16px;
+ }
+
+ .press-this input[type=checkbox]:checked:before {
+ width: 16px;
+ font: normal 21px/1 'dashicons';
+ margin: -3px 0 0 -4px;
+ }
+
+ .press-this input[type=radio]:checked:before {
+ font: normal 21px/1 'dashicons';
+ width: 6px;
+ height: 6px;
+ margin: 4px;
+ }
+
+ .press-this ul.categorychecklist ul,
+ .press-this ul.categorychecklist li {
+ margin-top: 0;
+ margin-bottom: 0;
+ }
+
+ .press-this div.quicktags-toolbar input {
+ padding: 2px 4px;
+ }
+
+ .press-this textarea,
+ .press-this input {
+ font-size: 14px;
+ }
+
+ .press-this .tagchecklist span {
+ font-size: 13px;
+ line-height: 1.8em;
+ }
+}
diff --git a/sources/wp-admin/css/revisions-rtl.css b/sources/wp-admin/css/revisions-rtl.css
new file mode 100644
index 0000000..d870006
--- /dev/null
+++ b/sources/wp-admin/css/revisions-rtl.css
@@ -0,0 +1,571 @@
+/*------------------------------------------------------------------------------
+ 11.2 - Post Revisions
+------------------------------------------------------------------------------*/
+.revisions-control-frame,
+.revisions-diff-frame {
+ position: relative;
+}
+
+.revisions-controls {
+ padding-top: 40px;
+ height: 100px;
+ z-index: 1;
+}
+
+.revisions-controls input[type="checkbox"] {
+ position: relative;
+ top: -1px;
+ vertical-align: text-bottom;
+}
+
+.revisions.pinned .revisions-controls {
+ position: fixed;
+ top: 0;
+ height: 82px;
+ background: #fff;
+ -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.1);
+ box-shadow: 0 1px 3px rgba(0,0,0,0.1);
+}
+
+.revisions-tickmarks {
+ position: relative;
+ margin: 0 auto;
+ height: 0.7em;
+ top: 7px;
+ max-width: 70%;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ background-color: #fff;
+}
+
+.revisions-tickmarks > div {
+ position: absolute;
+ height: 100%;
+ border-right: 1px solid #aaa;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}
+
+.revisions-tickmarks > div:first-child {
+ border-width: 0;
+}
+
+.comparing-two-revisions .revisions-controls {
+ height: 140px;
+}
+
+.comparing-two-revisions.pinned .revisions-controls {
+ height: 124px;
+}
+
+.revisions .diff-error {
+ position: absolute;
+ text-align: center;
+ margin: 0 auto;
+ width: 100%;
+ display: none;
+}
+
+.revisions.diff-error .diff-error {
+ display: block;
+}
+
+.revisions .loading-indicator {
+ position: fixed;
+ vertical-align: middle;
+ opacity: 0;
+ width: 100%;
+ top: 50%;
+ margin-right: -90px;
+ -webkit-transition: opacity 0.5s;
+ transition: opacity 0.5s;
+ filter: alpha(opacity=0); /* ie8 and earlier */
+}
+
+body.folded .revisions .loading-indicator {
+ margin-right: -32px;
+}
+
+.revisions .loading-indicator span.spinner {
+ display: block;
+ margin: 0 auto;
+ float: none;
+}
+
+.revisions.loading .loading-indicator {
+ opacity: 1;
+ filter: alpha(opacity=100); /* ie8 and earlier */
+}
+
+.revisions .diff {
+ -webkit-transition: opacity 0.5s;
+ transition: opacity 0.5s;
+}
+
+.revisions.loading .diff {
+ opacity: 0.5;
+ filter: alpha(opacity=50); /* ie8 and earlier */
+}
+
+.revisions.diff-error .diff {
+ visibility: hidden;
+}
+
+.revisions-meta {
+ margin-top: 20px;
+ background-color: #fff;
+ -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.1);
+ box-shadow: 0 1px 3px rgba(0,0,0,0.1);
+}
+
+.revisions.pinned .revisions-meta {
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+.revision-toggle-compare-mode {
+ position: absolute;
+ top: 0;
+ left: 0;
+}
+
+.comparing-two-revisions .revisions-previous,
+.comparing-two-revisions .revisions-next,
+.revisions-meta .diff-meta-to strong {
+ display: none;
+}
+
+.revisions-controls .author-card .date {
+ color: #777;
+}
+
+.revisions-controls .author-card.autosave {
+ color: #d54e21;
+}
+
+.revisions-controls .author-card .author-name {
+ font-weight: bold;
+}
+
+.comparing-two-revisions .diff-meta-to strong {
+ display: block;
+}
+
+.revisions.pinned .revisions-buttons {
+ padding: 0 11px;
+}
+
+.revisions-previous,
+.revisions-next {
+ position: relative;
+ z-index: 1;
+}
+
+.revisions-previous {
+ float: right;
+}
+
+.revisions-next {
+ float: left;
+}
+
+.revisions-controls .wp-slider {
+ max-width: 70%;
+ margin: 0 auto;
+ top: -3px;
+}
+
+.revisions-diff {
+ padding: 15px;
+ background-color: #fff;
+ -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.1);
+ box-shadow: 0 1px 3px rgba(0,0,0,0.1);
+}
+
+.revisions-diff h3:first-child {
+ margin-top: 0;
+}
+
+/* Revision meta box */
+.post-revisions li img,
+#revisions-meta-restored img {
+ vertical-align: middle;
+}
+
+table.diff tbody tr td:nth-child(2) {
+ width: 4%;
+}
+
+table.diff {
+ table-layout: fixed;
+ width: 100%;
+ white-space: pre-wrap;
+}
+
+table.diff col.content {
+ width: auto;
+}
+
+table.diff col.content.diffsplit {
+ width: 48%;
+}
+
+table.diff col.diffsplit.middle {
+ width: auto;
+}
+
+table.diff col.ltype {
+ width: 30px;
+}
+
+table.diff tr {
+ background-color: transparent;
+}
+
+table.diff td,
+table.diff th {
+ font-family: Consolas, Monaco, monospace;
+ font-size: 14px;
+ line-height: 1.618;
+ padding: .5em;
+ vertical-align: top;
+ word-wrap: break-word;
+}
+
+table.diff td h1,
+table.diff td h2,
+table.diff td h3,
+table.diff td h4,
+table.diff td h5,
+table.diff td h6 {
+ margin: 0;
+}
+
+table.diff .diff-deletedline del,
+table.diff .diff-addedline ins {
+ text-decoration: none;
+}
+
+table.diff .diff-deletedline {
+ background-color: #ffe9e9;
+}
+
+table.diff .diff-deletedline del {
+ background-color: #faa;
+}
+
+table.diff .diff-addedline {
+ background-color: #e9ffe9;
+}
+
+table.diff .diff-addedline ins {
+ background-color: #afa;
+}
+
+.diff-meta {
+ padding: 5px;
+ clear: both;
+ min-height: 32px;
+}
+
+.diff-title strong {
+ line-height: 32px;
+ min-width: 60px;
+ text-align: left;
+ float: right;
+ margin-left: 5px;
+}
+
+.revisions-controls .author-card .author-info {
+ font-size: 12px;
+ line-height: 16px;
+}
+
+.revisions-controls .author-card .avatar,
+.revisions-controls .author-card .author-info {
+ float: right;
+ margin-right: 6px;
+ margin-left: 6px;
+}
+
+.revisions-controls .author-card .byline {
+ display: block;
+ font-size: 12px;
+}
+
+.revisions-controls .author-card .avatar {
+ vertical-align: middle;
+}
+
+.diff-meta input.restore-revision {
+ float: left;
+ margin-right: 6px;
+ margin-left: 6px;
+ margin-top: 4px;
+}
+
+.diff-meta-from {
+ display: none;
+}
+
+.comparing-two-revisions .diff-meta-from {
+ display: block;
+}
+
+.revisions-tooltip {
+ position: absolute;
+ bottom: 105px;
+ margin-left: 0;
+ margin-right: -69px;
+ z-index: 0;
+ max-width: 350px;
+ min-width: 130px;
+ padding: 8px 4px;
+ display: none;
+ opacity: 0;
+}
+
+.revisions-tooltip.flipped {
+ margin-right: 0;
+ margin-left: -70px;
+}
+
+.revisions.pinned .revisions-tooltip {
+ display: none !important;
+}
+
+.comparing-two-revisions .revisions-tooltip {
+ bottom: 145px;
+}
+
+.revisions-tooltip-arrow {
+ width: 70px;
+ height: 15px;
+ overflow: hidden;
+ position: absolute;
+ right: 0;
+ margin-right: 35px;
+ bottom: -15px;
+}
+
+.revisions-tooltip.flipped .revisions-tooltip-arrow {
+ margin-right: 0;
+ margin-left: 35px;
+ right: auto;
+ left: 0;
+}
+
+.revisions-tooltip-arrow > span {
+ content: "";
+ position: absolute;
+ right: 20px;
+ top: -20px;
+ width: 25px;
+ height: 25px;
+ -webkit-transform: rotate(45deg);
+ -ms-transform: rotate(45deg);
+ transform: rotate(45deg);
+}
+
+.revisions-tooltip.flipped .revisions-tooltip-arrow > span {
+ right: auto;
+ left: 20px;
+}
+
+.ie8 .revisions-tooltip-arrow > span {
+ right: 15px;
+ top: -25px;
+ -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476)";
+}
+
+.ie8 .revisions-tooltip.flipped .revisions-tooltip-arrow > span {
+ left: 25px;
+}
+
+.revisions-tooltip,
+.revisions-tooltip-arrow > span {
+ border: 1px solid #d7d7d7;
+ background-color: #fff;
+}
+
+.revisions-tooltip {
+ display: none;
+}
+
+.arrow {
+ width: 70px;
+ height: 16px;
+ overflow: hidden;
+ position: absolute;
+ right: 0;
+ margin-right: -35px;
+ bottom: 90px;
+ z-index: 10000;
+}
+
+.arrow::after {
+ z-index: 9999;
+ background-color: #fff;
+ -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.1);
+ box-shadow: 0 1px 3px rgba(0,0,0,0.1);
+}
+
+.arrow.top {
+ top: -16px;
+ bottom: auto;
+}
+
+.arrow.left {
+ right: 20%;
+}
+
+.arrow:after {
+ content: "";
+ position: absolute;
+ right: 20px;
+ top: -20px;
+ width: 25px;
+ height: 25px;
+ -webkit-transform: rotate(45deg);
+ -ms-transform: rotate(45deg);
+ transform: rotate(45deg);
+}
+
+.revisions-tooltip,
+.revisions-tooltip-arrow:after {
+ border-width: 1px;
+ border-style: solid;
+}
+
+div.revisions-controls > .wp-slider > .ui-slider-handle {
+ margin-right: -10px;
+}
+
+.rtl div.revisions-controls > .wp-slider > .ui-slider-handle {
+ margin-left: -10px;
+}
+
+ /* jQuery UI Slider */
+.wp-slider.ui-slider {
+ position: relative;
+ border: 1px solid #d7d7d7;
+ text-align: right;
+ cursor: pointer;
+}
+
+.wp-slider .ui-slider-handle {
+ -webkit-border-radius: 50%;
+ border-radius: 50%;
+ height: 18px;
+ margin-top: -3px;
+ outline: none;
+ position: absolute;
+ width: 18px;
+ z-index: 2;
+}
+
+.wp-slider .ui-slider-handle,
+.wp-slider .ui-slider-handle.ui-state-hover,
+.wp-slider .ui-slider-handle.focus {
+ background: #2ea2cc;
+ border: 1px solid #0074a2;
+ -webkit-box-shadow: inset 0 1px 0 #78c8e6, 0 1px 0 rgba(0,0,0,.15);
+ box-shadow: inset 0 1px 0 #78c8e6, 0 1px 0 rgba(0,0,0,.15);
+}
+
+.wp-slider .ui-slider-handle:before {
+ background: none;
+ position: absolute;
+ top: 0;
+ right: 0;
+ color: #fff;
+ content: "\f229";
+ font: normal 18px/1 'dashicons';
+ speak: none;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+.wp-slider .ui-slider-handle.from-handle:before,
+.wp-slider .ui-slider-handle.to-handle:before {
+ font-size: 20px !important;
+ margin: -1px -1px 0 0;
+}
+
+.wp-slider .ui-slider-handle.from-handle:before {
+ content: '\f139';
+}
+
+.wp-slider .ui-slider-handle.to-handle:before {
+ content: '\f141';
+}
+
+.rtl .wp-slider .ui-slider-handle.from-handle:before {
+ content: '\f141';
+}
+
+.rtl .wp-slider .ui-slider-handle.to-handle:before {
+ content: '\f139';
+ left: -1px;
+}
+
+.wp-slider .ui-slider-range {
+ position: absolute;
+ font-size: .7em;
+ display: block;
+ border: 0;
+ background-color: transparent;
+ background-image: none;
+}
+
+.wp-slider.ui-slider-horizontal {
+ height: .7em;
+}
+
+.wp-slider.ui-slider-horizontal .ui-slider-handle {
+ top: -.25em;
+ margin-right: -.6em;
+}
+
+.wp-slider.ui-slider-horizontal .ui-slider-range {
+ top: 0;
+ height: 100%;
+}
+
+.wp-slider.ui-slider-horizontal .ui-slider-range-min {
+ right: 0;
+}
+
+.wp-slider.ui-slider-horizontal .ui-slider-range-max {
+ left: 0;
+}
+
+/* =Media Queries
+-------------------------------------------------------------- */
+
+/**
+ * HiDPI Displays
+ */
+@media print,
+ (-o-min-device-pixel-ratio: 5/4),
+ (-webkit-min-device-pixel-ratio: 1.25),
+ (min-resolution: 120dpi) {
+ .revision-tick.completed-false {
+ background-image: url(../images/spinner-2x.gif);
+ }
+}
+
+@media screen and ( max-width: 782px ) {
+ #diff-next-revision,
+ #diff-previous-revision {
+ margin-top: -1em;
+ }
+
+ table.diff {
+ -ms-word-break: break-all;
+ word-break: break-all;
+ word-wrap: break-word;
+ }
+}
diff --git a/sources/wp-admin/css/revisions.css b/sources/wp-admin/css/revisions.css
new file mode 100644
index 0000000..0263674
--- /dev/null
+++ b/sources/wp-admin/css/revisions.css
@@ -0,0 +1,571 @@
+/*------------------------------------------------------------------------------
+ 11.2 - Post Revisions
+------------------------------------------------------------------------------*/
+.revisions-control-frame,
+.revisions-diff-frame {
+ position: relative;
+}
+
+.revisions-controls {
+ padding-top: 40px;
+ height: 100px;
+ z-index: 1;
+}
+
+.revisions-controls input[type="checkbox"] {
+ position: relative;
+ top: -1px;
+ vertical-align: text-bottom;
+}
+
+.revisions.pinned .revisions-controls {
+ position: fixed;
+ top: 0;
+ height: 82px;
+ background: #fff;
+ -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.1);
+ box-shadow: 0 1px 3px rgba(0,0,0,0.1);
+}
+
+.revisions-tickmarks {
+ position: relative;
+ margin: 0 auto;
+ height: 0.7em;
+ top: 7px;
+ max-width: 70%;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ background-color: #fff;
+}
+
+.revisions-tickmarks > div {
+ position: absolute;
+ height: 100%;
+ border-left: 1px solid #aaa;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}
+
+.revisions-tickmarks > div:first-child {
+ border-width: 0;
+}
+
+.comparing-two-revisions .revisions-controls {
+ height: 140px;
+}
+
+.comparing-two-revisions.pinned .revisions-controls {
+ height: 124px;
+}
+
+.revisions .diff-error {
+ position: absolute;
+ text-align: center;
+ margin: 0 auto;
+ width: 100%;
+ display: none;
+}
+
+.revisions.diff-error .diff-error {
+ display: block;
+}
+
+.revisions .loading-indicator {
+ position: fixed;
+ vertical-align: middle;
+ opacity: 0;
+ width: 100%;
+ top: 50%;
+ margin-left: -90px;
+ -webkit-transition: opacity 0.5s;
+ transition: opacity 0.5s;
+ filter: alpha(opacity=0); /* ie8 and earlier */
+}
+
+body.folded .revisions .loading-indicator {
+ margin-left: -32px;
+}
+
+.revisions .loading-indicator span.spinner {
+ display: block;
+ margin: 0 auto;
+ float: none;
+}
+
+.revisions.loading .loading-indicator {
+ opacity: 1;
+ filter: alpha(opacity=100); /* ie8 and earlier */
+}
+
+.revisions .diff {
+ -webkit-transition: opacity 0.5s;
+ transition: opacity 0.5s;
+}
+
+.revisions.loading .diff {
+ opacity: 0.5;
+ filter: alpha(opacity=50); /* ie8 and earlier */
+}
+
+.revisions.diff-error .diff {
+ visibility: hidden;
+}
+
+.revisions-meta {
+ margin-top: 20px;
+ background-color: #fff;
+ -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.1);
+ box-shadow: 0 1px 3px rgba(0,0,0,0.1);
+}
+
+.revisions.pinned .revisions-meta {
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+.revision-toggle-compare-mode {
+ position: absolute;
+ top: 0;
+ right: 0;
+}
+
+.comparing-two-revisions .revisions-previous,
+.comparing-two-revisions .revisions-next,
+.revisions-meta .diff-meta-to strong {
+ display: none;
+}
+
+.revisions-controls .author-card .date {
+ color: #777;
+}
+
+.revisions-controls .author-card.autosave {
+ color: #d54e21;
+}
+
+.revisions-controls .author-card .author-name {
+ font-weight: bold;
+}
+
+.comparing-two-revisions .diff-meta-to strong {
+ display: block;
+}
+
+.revisions.pinned .revisions-buttons {
+ padding: 0 11px;
+}
+
+.revisions-previous,
+.revisions-next {
+ position: relative;
+ z-index: 1;
+}
+
+.revisions-previous {
+ float: left;
+}
+
+.revisions-next {
+ float: right;
+}
+
+.revisions-controls .wp-slider {
+ max-width: 70%;
+ margin: 0 auto;
+ top: -3px;
+}
+
+.revisions-diff {
+ padding: 15px;
+ background-color: #fff;
+ -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.1);
+ box-shadow: 0 1px 3px rgba(0,0,0,0.1);
+}
+
+.revisions-diff h3:first-child {
+ margin-top: 0;
+}
+
+/* Revision meta box */
+.post-revisions li img,
+#revisions-meta-restored img {
+ vertical-align: middle;
+}
+
+table.diff tbody tr td:nth-child(2) {
+ width: 4%;
+}
+
+table.diff {
+ table-layout: fixed;
+ width: 100%;
+ white-space: pre-wrap;
+}
+
+table.diff col.content {
+ width: auto;
+}
+
+table.diff col.content.diffsplit {
+ width: 48%;
+}
+
+table.diff col.diffsplit.middle {
+ width: auto;
+}
+
+table.diff col.ltype {
+ width: 30px;
+}
+
+table.diff tr {
+ background-color: transparent;
+}
+
+table.diff td,
+table.diff th {
+ font-family: Consolas, Monaco, monospace;
+ font-size: 14px;
+ line-height: 1.618;
+ padding: .5em;
+ vertical-align: top;
+ word-wrap: break-word;
+}
+
+table.diff td h1,
+table.diff td h2,
+table.diff td h3,
+table.diff td h4,
+table.diff td h5,
+table.diff td h6 {
+ margin: 0;
+}
+
+table.diff .diff-deletedline del,
+table.diff .diff-addedline ins {
+ text-decoration: none;
+}
+
+table.diff .diff-deletedline {
+ background-color: #ffe9e9;
+}
+
+table.diff .diff-deletedline del {
+ background-color: #faa;
+}
+
+table.diff .diff-addedline {
+ background-color: #e9ffe9;
+}
+
+table.diff .diff-addedline ins {
+ background-color: #afa;
+}
+
+.diff-meta {
+ padding: 5px;
+ clear: both;
+ min-height: 32px;
+}
+
+.diff-title strong {
+ line-height: 32px;
+ min-width: 60px;
+ text-align: right;
+ float: left;
+ margin-right: 5px;
+}
+
+.revisions-controls .author-card .author-info {
+ font-size: 12px;
+ line-height: 16px;
+}
+
+.revisions-controls .author-card .avatar,
+.revisions-controls .author-card .author-info {
+ float: left;
+ margin-left: 6px;
+ margin-right: 6px;
+}
+
+.revisions-controls .author-card .byline {
+ display: block;
+ font-size: 12px;
+}
+
+.revisions-controls .author-card .avatar {
+ vertical-align: middle;
+}
+
+.diff-meta input.restore-revision {
+ float: right;
+ margin-left: 6px;
+ margin-right: 6px;
+ margin-top: 4px;
+}
+
+.diff-meta-from {
+ display: none;
+}
+
+.comparing-two-revisions .diff-meta-from {
+ display: block;
+}
+
+.revisions-tooltip {
+ position: absolute;
+ bottom: 105px;
+ margin-right: 0;
+ margin-left: -69px;
+ z-index: 0;
+ max-width: 350px;
+ min-width: 130px;
+ padding: 8px 4px;
+ display: none;
+ opacity: 0;
+}
+
+.revisions-tooltip.flipped {
+ margin-left: 0;
+ margin-right: -70px;
+}
+
+.revisions.pinned .revisions-tooltip {
+ display: none !important;
+}
+
+.comparing-two-revisions .revisions-tooltip {
+ bottom: 145px;
+}
+
+.revisions-tooltip-arrow {
+ width: 70px;
+ height: 15px;
+ overflow: hidden;
+ position: absolute;
+ left: 0;
+ margin-left: 35px;
+ bottom: -15px;
+}
+
+.revisions-tooltip.flipped .revisions-tooltip-arrow {
+ margin-left: 0;
+ margin-right: 35px;
+ left: auto;
+ right: 0;
+}
+
+.revisions-tooltip-arrow > span {
+ content: "";
+ position: absolute;
+ left: 20px;
+ top: -20px;
+ width: 25px;
+ height: 25px;
+ -webkit-transform: rotate(45deg);
+ -ms-transform: rotate(45deg);
+ transform: rotate(45deg);
+}
+
+.revisions-tooltip.flipped .revisions-tooltip-arrow > span {
+ left: auto;
+ right: 20px;
+}
+
+.ie8 .revisions-tooltip-arrow > span {
+ left: 15px;
+ top: -25px;
+ -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476)";
+}
+
+.ie8 .revisions-tooltip.flipped .revisions-tooltip-arrow > span {
+ right: 25px;
+}
+
+.revisions-tooltip,
+.revisions-tooltip-arrow > span {
+ border: 1px solid #d7d7d7;
+ background-color: #fff;
+}
+
+.revisions-tooltip {
+ display: none;
+}
+
+.arrow {
+ width: 70px;
+ height: 16px;
+ overflow: hidden;
+ position: absolute;
+ left: 0;
+ margin-left: -35px;
+ bottom: 90px;
+ z-index: 10000;
+}
+
+.arrow::after {
+ z-index: 9999;
+ background-color: #fff;
+ -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.1);
+ box-shadow: 0 1px 3px rgba(0,0,0,0.1);
+}
+
+.arrow.top {
+ top: -16px;
+ bottom: auto;
+}
+
+.arrow.left {
+ left: 20%;
+}
+
+.arrow:after {
+ content: "";
+ position: absolute;
+ left: 20px;
+ top: -20px;
+ width: 25px;
+ height: 25px;
+ -webkit-transform: rotate(45deg);
+ -ms-transform: rotate(45deg);
+ transform: rotate(45deg);
+}
+
+.revisions-tooltip,
+.revisions-tooltip-arrow:after {
+ border-width: 1px;
+ border-style: solid;
+}
+
+div.revisions-controls > .wp-slider > .ui-slider-handle {
+ margin-left: -10px;
+}
+
+.rtl div.revisions-controls > .wp-slider > .ui-slider-handle {
+ margin-right: -10px;
+}
+
+ /* jQuery UI Slider */
+.wp-slider.ui-slider {
+ position: relative;
+ border: 1px solid #d7d7d7;
+ text-align: left;
+ cursor: pointer;
+}
+
+.wp-slider .ui-slider-handle {
+ -webkit-border-radius: 50%;
+ border-radius: 50%;
+ height: 18px;
+ margin-top: -3px;
+ outline: none;
+ position: absolute;
+ width: 18px;
+ z-index: 2;
+}
+
+.wp-slider .ui-slider-handle,
+.wp-slider .ui-slider-handle.ui-state-hover,
+.wp-slider .ui-slider-handle.focus {
+ background: #2ea2cc;
+ border: 1px solid #0074a2;
+ -webkit-box-shadow: inset 0 1px 0 #78c8e6, 0 1px 0 rgba(0,0,0,.15);
+ box-shadow: inset 0 1px 0 #78c8e6, 0 1px 0 rgba(0,0,0,.15);
+}
+
+.wp-slider .ui-slider-handle:before {
+ background: none;
+ position: absolute;
+ top: 0;
+ left: 0;
+ color: #fff;
+ content: "\f229";
+ font: normal 18px/1 'dashicons';
+ speak: none;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+.wp-slider .ui-slider-handle.from-handle:before,
+.wp-slider .ui-slider-handle.to-handle:before {
+ font-size: 20px !important;
+ margin: -1px 0 0 -1px;
+}
+
+.wp-slider .ui-slider-handle.from-handle:before {
+ content: '\f139';
+}
+
+.wp-slider .ui-slider-handle.to-handle:before {
+ content: '\f141';
+}
+
+.rtl .wp-slider .ui-slider-handle.from-handle:before {
+ content: '\f141';
+}
+
+.rtl .wp-slider .ui-slider-handle.to-handle:before {
+ content: '\f139';
+ right: -1px;
+}
+
+.wp-slider .ui-slider-range {
+ position: absolute;
+ font-size: .7em;
+ display: block;
+ border: 0;
+ background-color: transparent;
+ background-image: none;
+}
+
+.wp-slider.ui-slider-horizontal {
+ height: .7em;
+}
+
+.wp-slider.ui-slider-horizontal .ui-slider-handle {
+ top: -.25em;
+ margin-left: -.6em;
+}
+
+.wp-slider.ui-slider-horizontal .ui-slider-range {
+ top: 0;
+ height: 100%;
+}
+
+.wp-slider.ui-slider-horizontal .ui-slider-range-min {
+ left: 0;
+}
+
+.wp-slider.ui-slider-horizontal .ui-slider-range-max {
+ right: 0;
+}
+
+/* =Media Queries
+-------------------------------------------------------------- */
+
+/**
+ * HiDPI Displays
+ */
+@media print,
+ (-o-min-device-pixel-ratio: 5/4),
+ (-webkit-min-device-pixel-ratio: 1.25),
+ (min-resolution: 120dpi) {
+ .revision-tick.completed-false {
+ background-image: url(../images/spinner-2x.gif);
+ }
+}
+
+@media screen and ( max-width: 782px ) {
+ #diff-next-revision,
+ #diff-previous-revision {
+ margin-top: -1em;
+ }
+
+ table.diff {
+ -ms-word-break: break-all;
+ word-break: break-all;
+ word-wrap: break-word;
+ }
+}
diff --git a/sources/wp-admin/css/themes-rtl.css b/sources/wp-admin/css/themes-rtl.css
new file mode 100644
index 0000000..5ae8f35
--- /dev/null
+++ b/sources/wp-admin/css/themes-rtl.css
@@ -0,0 +1,1902 @@
+/*------------------------------------------------------------------------------
+ 16.0 - Themes
+------------------------------------------------------------------------------*/
+
+
+/*------------------------------------------------------------------------------
+ 16.1 - Manage Themes
+------------------------------------------------------------------------------*/
+
+.theme-browser .themes {
+ clear: both;
+ padding: 0 0 100px;
+}
+
+.themes-php .wrap h2 {
+ float: right;
+ margin-bottom: 15px;
+}
+
+.network-admin.themes-php .wrap h2 {
+ margin-bottom: 0;
+}
+
+.themes-php .wrap h2 .button {
+ margin-right: 20px;
+}
+
+.themes-php .wrap .theme-count,
+.theme-navigation .theme-count {
+ color: #fff;
+ -webkit-border-radius: 30px;
+ border-radius: 30px;
+ background: #777;
+ font-size: 14px;
+ padding: 4px 10px;
+ font-weight: 600;
+ margin-right: 5px;
+ margin-left: 20px;
+ position: relative;
+ top: -3px;
+}
+
+.theme-navigation a {
+ text-decoration:none;
+}
+
+/* Position admin messages */
+.themes-php div.updated,
+.themes-php div.error {
+ margin: 0 0 20px 0;
+ clear: both;
+}
+
+.themes-php div.updated a {
+ text-decoration: underline;
+}
+
+/**
+ * Main theme element
+ * (has flexible margins)
+ */
+.theme-browser .theme {
+ cursor: pointer;
+ float: right;
+ margin: 0 0 4% 4%;
+ position: relative;
+ width: 30.6%;
+ border: 1px solid #dedede;
+ -webkit-box-shadow: 0 1px 1px -1px rgba(0,0,0,0.1);
+ box-shadow: 0 1px 1px -1px rgba(0,0,0,0.1);
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}
+
+.ie8 .theme-browser .theme {
+ width: 30%;
+ margin: 0 0 4% 3%;
+}
+
+.theme-browser .theme:nth-child(3n) {
+ margin-left: 0;
+}
+
+.theme-browser .theme:hover,
+.theme-browser .theme:focus {
+ cursor: pointer;
+}
+
+.theme-browser .theme .theme-name {
+ font-size: 15px;
+ font-weight: 600;
+ height: 18px;
+ margin: 0;
+ padding: 15px;
+ -webkit-box-shadow: inset 0 1px 0 rgba(0,0,0,0.1);
+ box-shadow: inset 0 1px 0 rgba(0,0,0,0.1);
+ overflow: hidden;
+ white-space: nowrap;
+ text-overflow: ellipsis;
+ background: #fff;
+ background: rgba(255,255,255,0.65);
+}
+
+/* Activate and Customize buttons, shown on hover and focus */
+.theme-browser .theme .theme-actions {
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
+ opacity: 0;
+ -webkit-transition: opacity 0.1s ease-in-out;
+ transition: opacity 0.1s ease-in-out;
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ height: 38px;
+ padding: 9px 10px 0 10px;
+ background: rgba(244, 244, 244, 0.7);
+ border-right: 1px solid rgba(0,0,0,0.05);
+}
+
+.theme-browser .theme:hover .theme-actions,
+.theme-browser .theme.focus .theme-actions,
+.theme-browser .theme:focus .theme-actions {
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
+ opacity: 1;
+}
+
+.theme-browser .theme .theme-actions .button-primary {
+ margin-left: 3px;
+}
+
+.theme-browser .theme .theme-actions .button-secondary {
+ float: none;
+ margin-right: 3px;
+}
+
+/**
+ * Theme Screenshot
+ *
+ * Has a fixed aspect ratio of 1.5 to 1 regardless of screenshot size
+ * It is also responsive.
+ */
+.theme-browser .theme .theme-screenshot {
+ display: block;
+ overflow: hidden;
+ position: relative;
+ -webkit-transition: opacity 0.2s ease-in-out;
+ transition: opacity 0.2s ease-in-out;
+}
+
+.theme-browser .theme .theme-screenshot:after {
+ content: '';
+ display: block;
+ padding-top: 66.66666%; /* using a 3/2 aspect ratio */
+}
+
+.theme-browser .theme .theme-screenshot img {
+ height: auto;
+ position: absolute;
+ right: 0;
+ top: 0;
+ width: 100%;
+ -webkit-transform: translateZ( 0 ); /* Prevents rendering bugs in Chrome */
+ -webkit-transition: opacity 0.2s ease-in-out; /* Prevents rendering bugs in Chrome */
+ transition: opacity 0.2s ease-in-out;
+}
+
+.theme-browser .theme:hover .theme-screenshot,
+.theme-browser .theme:focus .theme-screenshot {
+ background: #fff;
+}
+
+.theme-browser.rendered .theme:hover .theme-screenshot img,
+.theme-browser.rendered .theme:focus .theme-screenshot img {
+ opacity: 0.4;
+}
+
+.theme-browser .theme .more-details {
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
+ opacity: 0;
+ position: absolute;
+ top: 35%;
+ left: 25%;
+ right: 25%;
+ background: #222;
+ background: rgba(0,0,0,0.7);
+ color: #fff;
+ font-size: 15px;
+ text-shadow: 0 1px 0 rgba(0,0,0,0.6);
+ -webkit-font-smoothing: antialiased;
+ font-weight: 600;
+ padding: 15px 12px;
+ text-align: center;
+ -webkit-border-radius: 3px;
+ border-radius: 3px;
+ -webkit-transition: opacity 0.1s ease-in-out;
+ transition: opacity 0.1s ease-in-out;
+}
+.theme-browser .theme:focus {
+ outline: 1px dotted #222;
+}
+
+.theme-browser .theme:focus .more-details {
+ opacity: 1;
+}
+/* Current theme needs to have its action always on view */
+.theme-browser .theme.active:focus .theme-actions {
+ display: block;
+}
+
+.theme-browser.rendered .theme:hover .more-details,
+.theme-browser.rendered .theme:focus .more-details {
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
+ opacity: 1;
+}
+
+/**
+ * Displays a theme update notice
+ * when an update is available.
+ */
+.theme-browser .theme .theme-update,
+.theme-browser .theme .theme-installed {
+ background: #d54e21;
+ background: rgba(213, 78, 33, 0.95);
+ color: #fff;
+ display: block;
+ font-size: 13px;
+ font-weight: 400;
+ height: 48px;
+ line-height: 48px;
+ padding: 0 10px;
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ border-bottom: 1px solid rgba(0,0,0,0.25);
+ overflow: hidden;
+}
+
+.theme-browser .theme .theme-update:before,
+.theme-browser .theme .theme-installed:before {
+ content: '\f463';
+ display: inline-block;
+ font: normal 20px/1 'dashicons';
+ margin: 0 0 0 6px;
+ opacity: 0.8;
+ position: relative;
+ top: 5px;
+ speak: none;
+ -webkit-font-smoothing: antialiased;
+}
+
+
+/**
+ * The currently active theme
+ */
+.theme-browser .theme.active .theme-name {
+ background: #2f2f2f;
+ color: #fff;
+ padding-left: 110px;
+ font-weight: 300;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.5);
+ box-shadow: inset 0 1px 1px rgba(0,0,0,0.5);
+}
+
+.theme-browser .theme.active .theme-name span {
+ font-weight: 600;
+}
+
+.theme-browser .theme.active .theme-actions {
+ background: rgba(49,49,49,0.7);
+ border-right: none;
+ opacity: 1;
+}
+
+.theme-browser .theme.active .theme-actions .button-primary {
+ margin-left: 0;
+}
+
+.theme-browser .theme .theme-author {
+ background: #222;
+ color: #eee;
+ display: none;
+ font-size: 14px;
+ margin: 0 10px;
+ padding: 5px 10px;
+ position: absolute;
+ bottom: 56px;
+}
+
+.theme-browser .theme.display-author .theme-author {
+ display: block;
+}
+
+.theme-browser .theme.display-author .theme-author a {
+ color: inherit;
+ text-decoration: none;
+}
+
+/**
+ * Add new theme
+ */
+.theme-browser .theme.add-new-theme {
+ border: none;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+.theme-browser .theme.add-new-theme a {
+ color: #999;
+ text-decoration: none;
+ display: block;
+ position: relative;
+ z-index: 1;
+}
+
+.theme-browser .theme.add-new-theme:after {
+ display: block;
+ content: '';
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
+ opacity: 1;
+ background: transparent;
+ background: rgba(0, 0, 0, 0);
+ position: absolute;
+ top: 0;
+ right: 0;
+ left: 0;
+ bottom: 0;
+ padding: 10% 0 0 0;
+ text-shadow: none;
+ border: 5px dashed #d5d2ca;
+ border: 5px dashed rgba(0, 0, 0, 0.1);
+ -webkit-transition: opacity 0.2s ease-in-out;
+ transition: opacity 0.2s ease-in-out;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}
+
+.theme-browser .theme.add-new-theme span:after {
+ background: #e5e5e5;
+ background: rgba(153, 153, 153, 0.1);
+ -webkit-border-radius: 50%;
+ border-radius: 50%;
+ display: inline-block;
+ content: '\f132';
+ -webkit-font-smoothing: antialiased;
+ font: normal 74px/115px 'dashicons';
+ width: 100px;
+ height: 100px;
+ vertical-align: middle;
+ text-align: center;
+ color: rgb(153, 153, 153);
+ position: absolute;
+ top: 30%;
+ right: 50%;
+ margin-right: -50px;
+ text-indent: -4px;
+ padding: 0;
+ text-shadow: none;
+ z-index:4;
+}
+
+.rtl .theme-browser .theme.add-new-theme span:after {
+ text-indent: 4px;
+}
+
+.theme-browser .theme.add-new-theme:hover .theme-screenshot,
+.theme-browser .theme.add-new-theme:focus .theme-screenshot {
+ background: none;
+}
+
+.theme-browser .theme.add-new-theme:hover span:after,
+.theme-browser .theme.add-new-theme:focus span:after {
+ background: #fff;
+ color: #0074a2;
+}
+
+.theme-browser .theme.add-new-theme:hover:after,
+.theme-browser .theme.add-new-theme:focus:after {
+ border-color: transparent;
+ color: #fff;
+ background: #0074a2;
+ content: '';
+}
+
+.theme-browser .theme.add-new-theme .theme-name {
+ background: none;
+ text-align: center;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ font-weight: 400;
+ position: relative;
+ top: 0;
+ margin-top: -10%;
+ margin-bottom: 10%;
+}
+
+.theme-browser .theme.add-new-theme:hover .theme-name,
+.theme-browser .theme.add-new-theme:focus .theme-name {
+ color: #fff;
+ z-index: 2;
+}
+
+/*
+ * The search form
+ */
+.themes-php .theme-search {
+ position: relative;
+ top: -2px;
+ right: 20px;
+ font-size: 16px;
+ font-weight: 300;
+ line-height: 1.5;
+ width: 280px;
+}
+
+/**
+ * Theme Overlay
+ * Shown when clicking a theme
+ */
+.theme-overlay .theme-backdrop {
+ position: absolute;
+ right: -20px;
+ left: 0;
+ top: 0;
+ bottom: 0;
+ background: #f1f1f1;
+ background: rgba( 238, 238, 238, 0.9 );
+ z-index: 10;
+}
+
+body.theme-overlay-open {
+ overflow: hidden;
+}
+
+.theme-overlay .theme-header {
+ position: absolute;
+ top: 0;
+ right: 0;
+ left: 0;
+ height: 48px;
+ border-bottom: 1px solid #ddd;
+}
+
+.theme-overlay .theme-header .close {
+ cursor: pointer;
+ height: 48px;
+ width: 50px;
+ text-align: center;
+ float: left;
+ border: 0;
+ border-right: 1px solid #ddd;
+ background-color: transparent;
+}
+
+.theme-overlay .theme-header .close:hover:before,
+.theme-overlay .theme-header .close:focus:before {
+ color: #fff;
+}
+
+.theme-overlay .theme-header .close:before {
+ font: normal 30px/50px 'dashicons' !important;
+ color: #777;
+ display: inline-block;
+ content: '\f335';
+ font-weight: 300;
+}
+
+/* Left and right navigation */
+.theme-overlay .theme-header .right,
+.theme-overlay .theme-header .left {
+ cursor: pointer;
+ color: #777;
+ background-color: transparent;
+ height: 48px;
+ width: 54px;
+ float: right;
+ text-align: center;
+ border: 0;
+ border-left: 1px solid #ddd;
+}
+
+.theme-overlay .theme-header .close:hover,
+.theme-overlay .theme-header .right:hover,
+.theme-overlay .theme-header .left:hover,
+.theme-overlay .theme-header .close:focus,
+.theme-overlay .theme-header .right:focus,
+.theme-overlay .theme-header .left:focus {
+ background: #0074a2;
+ color: #fff;
+}
+
+.theme-overlay .theme-header .left.disabled,
+.theme-overlay .theme-header .right.disabled,
+.theme-overlay .theme-header .left.disabled:hover,
+.theme-overlay .theme-header .right.disabled:hover {
+ color: #ccc;
+ background: inherit;
+ cursor: inherit;
+}
+
+.theme-overlay .theme-header .right:before,
+.theme-overlay .theme-header .left:before {
+ font: normal 20px/50px 'dashicons' !important;
+ display: inline;
+ font-weight: 300;
+}
+
+.theme-overlay .theme-header .left:before {
+ content: '\f340';
+}
+
+.theme-overlay .theme-header .right:before {
+ content: '\f344';
+}
+
+.rtl .theme-overlay .theme-header .left:before {
+ content: '\f345';
+}
+
+.rtl .theme-overlay .theme-header .right:before {
+ content: '\f341';
+}
+
+.theme-overlay .theme-wrap {
+ clear: both;
+ position: fixed;
+ top: 9%;
+ right: 190px;
+ left: 30px;
+ bottom: 3%;
+ background: #fff;
+ -webkit-box-shadow: 0 1px 20px 5px rgba(0, 0, 0, 0.1);
+ box-shadow: 0 1px 20px 5px rgba(0, 0, 0, 0.1);
+ z-index: 20;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}
+
+.theme-overlay .theme-wrap:after {
+ content: ".";
+ display: block;
+ height: 0;
+ clear: both;
+ visibility: hidden;
+}
+
+body.folded .theme-overlay .theme-wrap {
+ right: 70px;
+}
+
+.theme-overlay .theme-about {
+ position: absolute;
+ top: 49px;
+ bottom: 57px;
+ right: 0;
+ left: 0;
+ overflow: auto;
+ padding: 2% 4%;
+}
+.theme-overlay .theme-about:after {
+ content: ".";
+ display: block;
+ height: 0;
+ clear: both;
+ visibility: hidden;
+}
+
+.theme-overlay .theme-actions {
+ position: absolute;
+ text-align: center;
+ bottom: 0;
+ right: 0;
+ left: 0;
+ padding: 10px 25px 5px;
+ background: #f3f3f3;
+ z-index: 30;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ border-top: 1px solid #eee;
+}
+
+.ie8 .theme-overlay .theme-actions {
+ border: 1px solid #eee;
+}
+
+.theme-overlay .theme-actions a {
+ margin-left: 5px;
+ margin-bottom: 5px;
+}
+
+.theme-overlay .theme-actions .delete-theme {
+ color: #a00;
+ position: absolute;
+ left: 10px;
+ bottom: 5px;
+ text-decoration: none;
+ border-color: transparent;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ background: transparent;
+}
+
+.theme-overlay .theme-actions .delete-theme:hover,
+.theme-overlay .theme-actions .delete-theme:focus {
+ background: #d54e21;
+ color: #fff;
+ border-color: #d54e21;
+}
+
+.theme-overlay .theme-actions .active-theme,
+.theme-overlay.active .theme-actions .inactive-theme {
+ display: none;
+}
+
+.theme-overlay .theme-actions .inactive-theme,
+.theme-overlay.active .theme-actions .active-theme {
+ display: block;
+}
+
+/**
+ * Theme Screenshots gallery
+ */
+.theme-overlay .theme-screenshots {
+ float: right;
+ margin: 0 0 0 30px;
+ width: 55%;
+ max-width: 880px;
+ text-align: center;
+}
+
+/* First screenshot, shown big */
+.theme-overlay .screenshot {
+ border: 1px solid #fff;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ overflow: hidden;
+ position: relative;
+ -webkit-box-shadow: 0 0 0 1px rgba(0,0,0,0.2);
+ box-shadow: 0 0 0 1px rgba(0,0,0,0.2);
+}
+
+.theme-overlay .screenshot:after {
+ content: '';
+ display: block;
+ padding-top: 75%; /* using a 4/3 aspect ratio */
+}
+
+.theme-overlay .screenshot img {
+ height: auto;
+ position: absolute;
+ right: 0;
+ top: 0;
+ width: 100%;
+}
+/* Handles old 300px screenshots */
+.theme-overlay.small-screenshot .theme-screenshots {
+ position: absolute;
+ width: 302px;
+}
+.theme-overlay.small-screenshot .theme-info {
+ margin-right: 350px;
+ width: auto;
+}
+
+/* Other screenshots, shown small and square */
+.theme-overlay .screenshot.thumb {
+ background: #ccc;
+ border: 1px solid #eee;
+ float: none;
+ display: inline-block;
+ margin: 10px 5px 0;
+ width: 140px;
+ height: 80px;
+ cursor: pointer;
+}
+
+.theme-overlay .screenshot.thumb:after {
+ content: '';
+ display: block;
+ padding-top: 100%; /* using a 1/1 aspect ratio */
+}
+
+.theme-overlay .screenshot.thumb img {
+ cursor: pointer;
+ height: auto;
+ position: absolute;
+ right: 0;
+ top: 0;
+ width: 100%;
+ height: auto;
+}
+
+.theme-overlay .screenshot.selected {
+ background: transparent;
+ border: 2px solid #2ea2cc;
+}
+
+.theme-overlay .screenshot.selected img {
+ opacity: 0.8;
+}
+
+/* No screenshot placeholder */
+.theme-browser .theme .theme-screenshot.blank,
+.theme-overlay .screenshot.blank {
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYGWO8d+/efwYkoKioiMRjYGBC4WHhUK6A8T8QIJt8//59ZC493AAAQssKpBK4F5AAAAAASUVORK5CYII=);
+}
+
+/**
+ * Theme heading information
+ */
+.theme-overlay .theme-info {
+ width: 40%;
+ float: right;
+}
+
+.theme-overlay .current-label {
+ background: #333;
+ color: #fff;
+ font-size: 11px;
+ display: inline-block;
+ padding: 2px 8px;
+ -webkit-border-radius: 2px;
+ border-radius: 2px;
+ margin: 0 0 -10px;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
+
+.theme-overlay .theme-name {
+ color: #222;
+ font-size: 32px;
+ font-weight: 100;
+ margin: 10px 0 0;
+ line-height: 1.3;
+}
+
+.theme-overlay .theme-version {
+ color: #999;
+ font-size: 13px;
+ font-weight: 400;
+ float: none;
+ display: inline-block;
+ margin-right: 10px;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
+
+.theme-overlay .theme-author {
+ color: #686868;
+ font-size: 16px;
+ font-weight: 400;
+ margin: 15px 0 25px;
+}
+
+.theme-overlay .theme-author a {
+ text-decoration: none;
+}
+
+.theme-overlay .theme-description {
+ color: #555;
+ font-size: 15px;
+ font-weight: 400;
+ line-height: 1.5;
+ margin: 30px 0 0 0;
+}
+
+.theme-overlay .theme-tags {
+ border-top: 3px solid #eee;
+ color: #888;
+ font-size: 13px;
+ font-weight: 400;
+ margin: 30px 0 0 0;
+ padding-top: 20px;
+}
+
+.theme-overlay .theme-tags span {
+ color: #444;
+ font-weight: bold;
+ margin-left: 5px;
+}
+
+/* Theme Updates info */
+.theme-overlay .theme-update-message {
+ background: #fef7f1;
+ border: 1px solid #eee;
+ border-right: 4px solid #d54e21;
+ -webkit-border-radius: 3px;
+ border-radius: 3px;
+ padding: 5px 20px 10px;
+}
+
+.theme-overlay .theme-update {
+ color: #222;
+ font-size: 18px;
+ display: inline-block;
+ line-height: 40px;
+ margin: 0;
+}
+
+.theme-overlay .parent-theme {
+ background: #f7fcfe;
+ border: 1px solid #eee;
+ border-right: 4px solid #2ea2cc;
+ font-size: 14px;
+ font-weight: normal;
+ margin-top: 30px;
+ padding: 10px 20px 10px 10px;
+}
+
+.theme-overlay .parent-theme strong {
+ font-weight: 700;
+}
+
+/**
+ * Single Theme Mode
+ * Displays detailed view inline when a user has no switch capabilities
+ */
+.single-theme .theme-overlay .theme-backdrop,
+.single-theme .theme-overlay .theme-header,
+.single-theme .theme {
+ display: none;
+}
+
+.single-theme .theme-overlay .theme-wrap {
+ clear: both;
+ min-height: 330px;
+ position: relative;
+ right: auto;
+ left: auto;
+ top: auto;
+ bottom: auto;
+}
+
+.single-theme .theme-overlay .theme-about {
+ padding: 30px 30px 70px;
+ position: static;
+}
+
+.single-theme .theme-overlay .theme-actions {
+ position: absolute;
+}
+
+/**
+ * Basic Responsive structure...
+ *
+ * Shuffles theme columns around based on screen width
+ */
+
+@media only screen and (min-width: 2000px) {
+ #wpwrap .theme-browser .theme {
+ width: 17.6%;
+ margin: 0 0 3% 3%;
+ }
+
+ #wpwrap .theme-browser .theme:nth-child(3n),
+ #wpwrap .theme-browser .theme:nth-child(4n) {
+ margin-left: 3%;
+ }
+
+ #wpwrap .theme-browser .theme:nth-child(5n) {
+ margin-left: 0;
+ }
+}
+
+@media only screen and (min-width: 1680px) {
+ .theme-overlay .theme-wrap {
+ width: 1450px;
+ margin: 0 auto;
+ }
+}
+
+/* Maximum screenshot width reaches 440px */
+@media only screen and (min-width: 1640px) {
+ .theme-browser .theme {
+ width: 22.7%;
+ margin: 0 0 3% 3%;
+ }
+ .theme-browser .theme .theme-screenshot:after {
+ padding-top: 75%; /* using a 4/3 aspect ratio */
+ }
+
+ .theme-browser .theme:nth-child(3n) {
+ margin-left: 3%;
+ }
+
+ .theme-browser .theme:nth-child(4n) {
+ margin-left: 0;
+ }
+}
+/* Maximum screenshot width reaches 440px */
+@media only screen and (max-width: 1120px) {
+ .theme-browser .theme {
+ width: 47.5%;
+ margin-left: 0;
+ }
+
+ .theme-browser .theme:nth-child(even) {
+ margin-left: 0;
+ }
+
+ .theme-browser .theme:nth-child(odd) {
+ margin-left: 5%;
+ }
+}
+
+/* Admin menu is folded */
+@media only screen and (max-width: 900px) {
+ .theme-overlay .theme-wrap {
+ right: 65px;
+ }
+}
+
+@media only screen and (max-width: 780px) {
+ body.folded .theme-overlay .theme-wrap,
+ .theme-overlay .theme-wrap {
+ top: 0; /* The adminmenu isn't fixed on mobile, so this can use the full viewport height */
+ left: 0;
+ bottom: 0;
+ right: 0;
+ padding: 70px 20px 20px;
+ border: none;
+ z-index: 500; /* should overlap #wpadminbar, which is 500 on mobile. */
+ position: fixed;
+ }
+
+ .theme-browser .theme.active .theme-name span {
+ /* Hide the "Active: " label on smaller screens. */
+ display: none;
+ }
+
+ .theme-overlay .theme-screenshots {
+ width: 40%;
+ }
+
+ .theme-overlay .theme-info {
+ width: 50%;
+ }
+ .single-theme .theme-wrap {
+ padding: 10px;
+ }
+
+ .theme-browser .theme .theme-actions {
+ padding: 5px 10px 4px 10px;
+ }
+
+ .theme-overlay.small-screenshot .theme-screenshots {
+ position: static;
+ float: none;
+ max-width: 302px;
+ }
+
+ .theme-overlay.small-screenshot .theme-info {
+ margin-right: 0;
+ width: auto;
+ }
+
+ .theme:not(.active):hover .theme-actions,
+ .theme:not(.active):focus .theme-actions,
+ .theme:hover .more-details,
+ .theme:focus .more-details {
+ display: none;
+ }
+
+ .theme-browser.rendered .theme:hover .theme-screenshot img,
+ .theme-browser.rendered .theme:focus .theme-screenshot img {
+ opacity: 1.0;
+ }
+}
+
+@media only screen and (max-width: 480px) {
+ .theme-browser .theme {
+ width: 100%;
+ margin-left: 0;
+ }
+
+ .theme-browser .theme:nth-child(2n),
+ .theme-browser .theme:nth-child(3n) {
+ margin-left: 0;
+ }
+}
+
+@media only screen and (max-width: 650px) {
+ .theme-overlay .theme-update,
+ .theme-overlay .theme-description {
+ margin-right: 0;
+ }
+
+ .theme-overlay .theme-actions .delete-theme {
+ position: relative;
+ left: auto;
+ bottom: auto;
+ }
+
+ .theme-overlay .theme-actions .inactive-theme {
+ display: inline;
+ }
+
+ .theme-overlay .theme-screenshots {
+ width: 100%;
+ float: none;
+ }
+
+ .theme-overlay .theme-info {
+ width: 100%;
+ }
+
+ .theme-overlay .theme-author {
+ margin: 5px 0 15px 0;
+ }
+
+ .theme-overlay .current-label {
+ margin-top: 10px;
+ font-size: 13px;
+ }
+
+ .themes-php .wrap h2 {
+ width: 100%;
+ }
+
+ .themes-php .theme-search {
+ float: none;
+ clear: both;
+ right: 0;
+ top: 0;
+ left: 0;
+ margin: 10px 0;
+ width: 100%;
+ }
+
+ .theme-browser .theme.add-new-theme span:after {
+ font: normal 60px/90px 'dashicons';
+ width: 80px;
+ height: 80px;
+ top: 30%;
+ right: 50%;
+ text-indent: 0;
+ margin-right: -40px;
+ }
+
+ .single-theme .theme-wrap {
+ margin: 0 -10px 0 -12px;
+ padding: 10px;
+ }
+ .single-theme .theme-overlay .theme-about {
+ padding: 10px;
+ overflow: visible;
+ }
+ .single-theme .current-label {
+ display: none;
+ }
+ .single-theme .theme-overlay .theme-actions {
+ position: static;
+ }
+}
+
+.broken-themes {
+ clear: both;
+}
+
+.broken-themes table {
+ text-align: right;
+ width: 50%;
+ border-spacing: 3px;
+ padding: 3px;
+}
+
+
+/*------------------------------------------------------------------------------
+ 16.2 - Install Themes
+------------------------------------------------------------------------------*/
+
+/* Already installed theme */
+.theme-browser .theme .theme-installed {
+ background: #0074a2;
+}
+.theme-browser .theme .theme-installed:before {
+ content: '\f147';
+}
+.theme-browser .theme.is-installed .theme-actions .button-primary {
+ display: none !important;
+}
+
+.theme-navigation {
+ background: #fff;
+ -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
+ box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ color: #555;
+ display: inline-block;
+ font-size: 13px;
+ margin: 20px 0 30px;
+ padding: 0 20px;
+ position: relative;
+ width: 100%;
+}
+.theme-install-php a.upload,
+.theme-install-php a.browse-themes {
+ cursor: pointer;
+}
+.theme-install-php a.browse-themes,
+.theme-install-php.show-upload-theme a.upload {
+ display: none;
+}
+.theme-install-php.show-upload-theme a.browse-themes {
+ display: inline;
+}
+.upload-theme {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ display: none;
+ margin: 0px 0 0;
+ padding: 0;
+ width: 100%;
+ overflow: hidden;
+ position: relative;
+ top: 10px;
+}
+body.show-upload-theme .upload-theme {
+ display: block;
+}
+.upload-theme .wp-upload-form {
+ background: #fafafa;
+ border: 1px solid #e5e5e5;
+ padding: 30px;
+ margin: 30px auto;
+ max-width: 380px;
+}
+.upload-theme .install-help {
+ color: #999;
+ font-size: 18px;
+ font-style: normal;
+ margin: 0;
+ padding: 40px 0 0;
+ text-align: center;
+}
+body.show-upload-theme .upload-theme + .theme-navigation,
+body.show-upload-theme .upload-theme + .theme-navigation + .theme-browser {
+ display: none;
+}
+.theme-navigation .theme-count {
+ margin-right: 0;
+ position: absolute;
+ top: 12px;
+}
+.theme-count + .theme-section {
+ margin-right: 60px;
+}
+.theme-section,
+.theme-filter {
+ border-bottom: 4px solid #fff;
+ color: #666;
+ cursor: pointer;
+ display: inline-block;
+ margin: 0 10px;
+ padding: 15px 0;
+}
+.theme-section.current,
+.theme-filter.current {
+ border-bottom: 4px solid #666;
+ color: #222;
+}
+.theme-top-filters {
+ display: inline-block;
+}
+.theme-navigation .more-filters {
+ color: #666;
+ cursor: pointer;
+ display: inline-block;
+ margin: 0 10px;
+ padding: 4px 6px;
+}
+body.more-filters-opened .more-filters,
+body.more-filters-opened .more-filters:before {
+ background: #777;
+ -webkit-border-radius: 2px;
+ border-radius: 2px;
+ border: none;
+ color: #fff;
+}
+
+body.more-filters-opened .more-filters:hover,
+body.more-filters-opened .more-filters:focus,
+body.more-filters-opened .more-filters:hover:before,
+body.more-filters-opened .more-filters:focus:before {
+ background: rgb(46, 162, 204);
+}
+
+.theme-install-php .theme-search {
+ position: absolute;
+ left: 10px;
+ top: 9px;
+ font-size: 16px;
+ font-weight: 300;
+ line-height: 1.5;
+ width: 280px;
+}
+.more-filters:before {
+ color: #777;
+ text-align: center;
+ margin: 0 0 0 5px;
+ content: "\f111";
+ display: inline-block;
+ width: 16px;
+ height: 16px;
+ -webkit-font-smoothing: antialiased;
+ font-size: 16px;
+ line-height: 1;
+ font-family: "dashicons";
+ text-decoration: inherit;
+ font-weight: normal;
+ font-style: normal;
+ vertical-align: top;
+ -webkit-transition: color .1s ease-in 0;
+ transition: color .1s ease-in 0;
+ text-align: center;
+}
+.more-filters.current:before {
+ color: #fff;
+}
+.more-filters-container {
+ display: none;
+ padding: 20px;
+ border-top: 1px solid #eee;
+ margin: 0 -20px;
+ background: #fafafa;
+}
+body.more-filters-opened .more-filters-container {
+ display: block;
+ overflow: hidden;
+}
+body.more-filters-opened .theme-section.current {
+ border-bottom: none;
+}
+body.more-filters-opened .theme-browser,
+body.more-filters-opened.filters-applied.loading-themes .theme-browser {
+ display: none;
+}
+body.more-filters-opened.filters-applied .theme-browser {
+ display: block;
+}
+.more-filters-container .filters-group {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ float: right;
+ width: 19%;
+ background: #fff;
+ margin: 0 0 0 1%;
+ border: 1px solid #e5e5e5;
+ -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
+ box-shadow: 0 1px 1px rgba(0,0,0,0.04);
+ padding: 10px;
+}
+.more-filters-container .wide-filters-group {
+ width: 38%;
+}
+.more-filters-container .feature-name {
+ margin: 0;
+ position: relative;
+}
+.more-filters-container ol {
+ list-style-type: none;
+ margin: 20px 0 0;
+ font-size: 12px;
+}
+.more-filters-container li {
+ display: inline-block;
+ vertical-align: top;
+ list-style-type: none;
+ margin: 5px 0;
+ padding-left: 25px;
+ width: 160px;
+}
+.theme-navigation .more-filters-container .apply-filters {
+ margin: 0 0 20px;
+}
+.theme-navigation .more-filters-container .clear-filters {
+ display: none;
+ margin: 0 10px 20px 0;
+}
+.more-filters-container .apply-filters span {
+ display: inline-block;
+ font-size: 12px;
+ text-indent: 10px;
+ opacity: 0.8;
+}
+.more-filters-container .filtering-by {
+ display: none;
+ margin: 0;
+}
+.more-filters-container .filtering-by > span {
+ font-weight: 600;
+}
+.more-filters-container .filtering-by .tags {
+ display: inline;
+}
+.more-filters-container .filtering-by .tag {
+ background: #fff;
+ border: 1px solid #e5e5e5;
+ -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
+ box-shadow: 0 1px 1px rgba(0,0,0,0.04);
+ font-size: 11px;
+ margin: 0 5px;
+ padding: 4px 8px;
+}
+.more-filters-container .filtering-by a {
+ margin-right: 10px;
+}
+body.filters-applied .more-filters-container .filters-group,
+body.filters-applied .more-filters-container a.button,
+body.filters-applied .more-filters-container br {
+ display: none !important;
+}
+body.filters-applied .more-filters-container .filtering-by {
+ display: block;
+}
+body.filters-applied .more-filters-container {
+ padding: 20px;
+}
+p.no-themes {
+ color: #999;
+ font-size: 18px;
+ font-style: normal;
+ margin: 0;
+ padding: 0;
+ text-align: center;
+ display: none;
+}
+body.no-results p.no-themes {
+ display: block;
+}
+body.show-upload-theme p.no-themes {
+ display: none !important;
+}
+
+
+.theme-install-php .add-new-theme {
+ display: none !important;
+}
+
+@media only screen and (max-width: 1120px) {
+ .theme-install-php .theme-search {
+ margin: 20px 0;
+ position: static;
+ width: 100%;
+ }
+ .more-filters-container {
+ border-bottom: 1px solid #eee;
+ }
+ .upload-theme .wp-upload-form {
+ margin: 20px 0;
+ max-width: 100%;
+ }
+ .upload-theme .install-help {
+ font-size: 15px;
+ padding: 20px 0 0;
+ text-align: right;
+ }
+ .more-filters-container .filters-group {
+ margin-bottom: 0;
+ margin-top: 5px;
+ width: 100%;
+ }
+ .more-filters-container .filters-group li {
+ margin: 10px 0;
+ }
+}
+
+@media only screen and (max-width: 782px) {
+ .more-filters-container .filters-group {
+ width: 100%;
+ }
+ .more-filters-container .filters-group li {
+ width: 100%;
+ }
+}
+
+.rating {
+ margin: 30px 0;
+}
+.rating span:before {
+ color: #e6b800;
+ content: "\f154";
+ display: inline-block;
+ -webkit-font-smoothing: antialiased;
+ font: normal 20px/1 'dashicons';
+ vertical-align: top;
+}
+/* Half stars */
+.rating-10 span.one:before,
+.rating-30 span.two:before,
+.rating-50 span.three:before,
+.rating-70 span.four:before,
+.rating-90 span.five:before {
+ content: "\f459";
+}
+/* Full stars */
+.rating-20 span.one:before {
+ content: "\f155";
+}
+.rating-30 span.one:before,
+.rating-40 span.one:before,
+.rating-40 span.two:before {
+ content: "\f155";
+}
+.rating-50 span.one:before,
+.rating-50 span.two:before,
+.rating-60 span.one:before,
+.rating-60 span.two:before,
+.rating-60 span.three:before {
+ content: "\f155";
+}
+.rating-70 span.one:before,
+.rating-70 span.two:before,
+.rating-70 span.three:before,
+.rating-80 span.one:before,
+.rating-80 span.two:before,
+.rating-80 span.three:before,
+.rating-80 span.four:before {
+ content: "\f155";
+}
+.rating-90 span.one:before,
+.rating-90 span.two:before,
+.rating-90 span.three:before,
+.rating-90 span.four:before,
+.rating-100 span.one:before,
+.rating-100 span.two:before,
+.rating-100 span.three:before,
+.rating-100 span.four:before,
+.rating-100 span.five:before {
+ content: "\f155";
+}
+.rating .ratings {
+ display: inline;
+ margin-right: 10px;
+ line-height: 20px;
+ color: #999;
+}
+.loading-themes .theme-browser,
+.error .theme-browser {
+ display: none;
+}
+.loading-themes .spinner {
+ display: block;
+ margin: 40px auto 0;
+ float: none;
+}
+
+/*------------------------------------------------------------------------------
+ 16.3 - Custom Header Screen
+------------------------------------------------------------------------------*/
+
+.appearance_page_custom-header #headimg {
+ border: 1px solid #DFDFDF;
+ overflow: hidden;
+ width: 100%;
+}
+
+.appearance_page_custom-header #upload-form p label {
+ font-size: 12px;
+}
+
+.appearance_page_custom-header .available-headers .default-header {
+ float: right;
+ margin: 0 0 20px 20px;
+}
+
+.appearance_page_custom-header .random-header {
+ clear: both;
+ margin: 0 0 20px 20px;
+ vertical-align: middle;
+}
+
+.appearance_page_custom-header .available-headers label input,
+.appearance_page_custom-header .random-header label input {
+ margin-left: 10px;
+}
+
+.appearance_page_custom-header .available-headers label img {
+ vertical-align: middle;
+}
+
+
+/*------------------------------------------------------------------------------
+ 16.4 - Custom Background Screen
+------------------------------------------------------------------------------*/
+
+div#custom-background-image {
+ min-height: 100px;
+ border: 1px solid #dfdfdf;
+}
+
+div#custom-background-image img {
+ max-width: 400px;
+ max-height: 300px;
+}
+
+/*------------------------------------------------------------------------------
+ 23.0 - Full Overlay w/ Sidebar
+------------------------------------------------------------------------------*/
+
+body.full-overlay-active {
+ overflow: hidden;
+}
+
+.wp-full-overlay {
+ background: transparent;
+ z-index: 500000;
+ position: fixed;
+ overflow: visible;
+ top: 0;
+ bottom: 0;
+ right: 0;
+ left: 0;
+ height: 100%;
+ min-width: 0;
+}
+
+.wp-full-overlay-sidebar {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ position: fixed;
+ width: 300px;
+ height: 100%;
+ top: 0;
+ bottom: 0;
+ right: 0;
+ padding: 0;
+ margin: 0;
+ z-index: 10;
+ overflow: auto;
+ background: #eee;
+ border-left: none;
+}
+
+.wp-full-overlay.collapsed .wp-full-overlay-sidebar {
+ overflow: visible;
+}
+
+.wp-full-overlay.collapsed,
+.wp-full-overlay.expanded .wp-full-overlay-sidebar {
+ margin-right: 0 !important;
+}
+
+.wp-full-overlay.expanded {
+ margin-right: 300px;
+}
+
+.wp-full-overlay.collapsed .wp-full-overlay-sidebar {
+ margin-right: -300px;
+}
+
+.wp-full-overlay-sidebar:after {
+ content: '';
+ display: block;
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ left: 0;
+ width: 3px;
+ z-index: 1000;
+}
+
+.wp-full-overlay-main {
+ position: absolute;
+ right: 0;
+ left: 0;
+ top: 0;
+ bottom: 0;
+ height: 100%;
+}
+
+.wp-full-overlay-sidebar .wp-full-overlay-header {
+ position: absolute;
+ right: 0;
+ left: 0;
+ height: 45px;
+ padding: 0 15px;
+ line-height: 45px;
+ z-index: 10;
+ margin: 0;
+ border-top: none;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+.wp-full-overlay-sidebar .wp-full-overlay-header a.back {
+ margin-top: 9px;
+}
+
+.wp-full-overlay-sidebar .wp-full-overlay-footer {
+ bottom: 0;
+ border-bottom: none;
+ border-top: none;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+.wp-full-overlay-sidebar .wp-full-overlay-sidebar-content {
+ position: absolute;
+ top: 45px;
+ bottom: 45px;
+ right: 0;
+ left: 0;
+ overflow: auto;
+}
+
+/* Close Link */
+.wp-full-overlay .close-full-overlay {
+ text-decoration: none;
+}
+
+/* Collapse Button */
+.wp-full-overlay a.collapse-sidebar {
+ position: absolute;
+ bottom: 12px;
+ right: 0;
+ z-index: 50;
+ display: block;
+ width: 19px;
+ height: 19px;
+ margin-right: 15px;
+ padding: 0;
+ -webkit-border-radius: 50%;
+ border-radius: 50%;
+ color: #777;
+ text-decoration: none;
+}
+
+.wp-full-overlay a.collapse-sidebar:hover {
+ color: #0074a2;
+}
+
+.wp-full-overlay.collapsed .collapse-sidebar {
+ position: absolute;
+ right: 100%;
+}
+
+.wp-full-overlay .collapse-sidebar-arrow {
+ position: static;
+ margin-top: 0;
+ margin-right: 0;
+ display: block;
+ width: auto;
+ height: auto;
+ background: none;
+}
+
+.wp-full-overlay .collapse-sidebar-arrow:before {
+ -webkit-border-radius: 50%;
+ border-radius: 50%;
+ float: right;
+ content: "\f148";
+ background: #eee;
+ font: normal 20px/1 'dashicons';
+ speak: none;
+ display: block;
+ padding: 0;
+ text-indent: 0;
+ text-align: center;
+ position: relative;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ text-decoration: none !important;
+}
+
+.wp-full-overlay.collapsed .collapse-sidebar-arrow:before,
+.rtl .wp-full-overlay .collapse-sidebar-arrow:before {
+ -webkit-transform: rotate(180deg);
+ -ms-transform: rotate(180deg);
+ transform: rotate(180deg);
+}
+
+.rtl .wp-full-overlay.collapsed .collapse-sidebar-arrow:before {
+ -webkit-transform: none;
+ -ms-transform: none;
+ transform: none;
+}
+
+.wp-full-overlay.collapsed .collapse-sidebar-arrow {
+ background-position: -1px -109px;
+}
+
+.wp-full-overlay .collapse-sidebar-label {
+ position: absolute;
+ right: 100%;
+ line-height: 20px;
+ margin-right: 10px;
+}
+
+.wp-full-overlay.collapsed .collapse-sidebar-label {
+ display: none;
+}
+
+.wp-full-overlay .theme-navigation {
+ padding: 10px 20px;
+ position: absolute;
+ bottom: 10px;
+ text-align: right;
+}
+.wp-full-overlay .theme-navigation .next-theme {
+ float: left;
+}
+.wp-full-overlay.no-navigation .theme-navigation {
+ display: none;
+}
+
+/* Animations */
+.wp-full-overlay,
+.wp-full-overlay-sidebar,
+.wp-full-overlay .collapse-sidebar,
+.wp-full-overlay-main {
+ -webkit-transition-property: right, left, top, bottom, width, margin;
+ transition-property: right, left, top, bottom, width, margin;
+ -webkit-transition-duration: 0.2s;
+ transition-duration: 0.2s;
+}
+
+/*------------------------------------------------------------------------------
+ 24.0 - Customize Loader
+------------------------------------------------------------------------------*/
+
+.no-customize-support .hide-if-no-customize,
+.customize-support .hide-if-customize,
+.no-customize-support.wp-core-ui .hide-if-no-customize,
+.no-customize-support .wp-core-ui .hide-if-no-customize,
+.customize-support.wp-core-ui .hide-if-customize,
+.customize-support .wp-core-ui .hide-if-customize {
+ display: none;
+}
+
+#customize-container {
+ display: none;
+ background: #fff;
+ z-index: 500000;
+ position: fixed;
+ overflow: visible;
+ top: 0;
+ bottom: 0;
+ right: 0;
+ left: 0;
+ height: 100%;
+}
+
+.customize-active #customize-container {
+ display: block;
+}
+
+.customize-loading #customize-container iframe {
+ opacity: 0;
+}
+
+.customize-loading #customize-container {
+ background: #fff url(../images/spinner.gif) no-repeat fixed center center;
+ -webkit-background-size: 20px 20px;
+ background-size: 20px 20px;
+}
+
+#customize-container iframe,
+.theme-install-overlay iframe {
+ height: 100%;
+ width: 100%;
+ z-index: 20;
+ -webkit-transition: opacity 0.3s;
+ transition: opacity 0.3s;
+}
+
+#customize-container .collapse-sidebar {
+ bottom: 16px;
+}
+
+#customize-controls {
+ margin-top: 0;
+}
+
+.theme-install-overlay {
+ display: none;
+}
+
+.theme-install-overlay.single-theme {
+ display: block;
+}
+
+.install-theme-info {
+ display: none;
+ padding: 10px 20px 60px;
+}
+
+.single-theme .install-theme-info {
+ padding-top: 15px;
+}
+
+.theme-install-overlay .install-theme-info {
+ display: block;
+}
+
+.install-theme-info .theme-install {
+ float: left;
+ margin-top: 18px;
+}
+
+.install-theme-info .theme-name {
+ font-size: 16px;
+ line-height: 24px;
+ margin-bottom: 0;
+ margin-top: 0;
+}
+
+.install-theme-info .theme-screenshot {
+ margin-top: 15px;
+ width: 258px;
+ border: 1px solid #ccc;
+}
+
+.install-theme-info .theme-details {
+ overflow: hidden;
+}
+
+.theme-details .theme-version {
+ margin: 15px 0;
+ float: right;
+}
+
+.theme-details .star-rating {
+ margin: 7px 0;
+ float: left;
+}
+
+.theme-details .theme-description {
+ float: right;
+ color: #777;
+ line-height: 20px;
+ max-width: 100%;
+}
+
+.theme-install-overlay .wp-full-overlay-header {
+ margin-top: 9px;
+}
+
+.theme-install-overlay .wp-full-overlay-header .theme-install {
+ float: left;
+ /* For when .theme-install is a span rather than a.button-primary (already installed theme) */
+ line-height: 26px;
+}
+
+.theme-install-overlay .wp-full-overlay-sidebar {
+ background: #EEE;
+ border-left: 1px solid #DDD;
+}
+
+.theme-install-overlay .wp-full-overlay-main {
+ background: #fff url(../images/spinner.gif) no-repeat center center;
+ -webkit-background-size: 20px 20px;
+ background-size: 20px 20px;
+}
+
+/* =Media Queries
+-------------------------------------------------------------- */
+
+/**
+ * HiDPI Displays
+ */
+@media print,
+ (-o-min-device-pixel-ratio: 5/4),
+ (-webkit-min-device-pixel-ratio: 1.25),
+ (min-resolution: 120dpi) {
+ .wp-full-overlay .collapse-sidebar-arrow {
+ background-image: url(../images/arrows-2x.png);
+ -webkit-background-size: 15px 123px;
+ background-size: 15px 123px;
+ }
+
+ .customize-loading #customize-container,
+ .theme-install-overlay .wp-full-overlay-main {
+ background-image: url(../images/spinner-2x.gif);
+ }
+}
+
+@media screen and ( max-width: 782px ) {
+ .available-theme .action-links .delete-theme {
+ float: none;
+ margin: 0;
+ padding: 0;
+ clear: both;
+ }
+
+ .available-theme .action-links .delete-theme a {
+ padding: 0;
+ }
+}
diff --git a/sources/wp-admin/css/themes.css b/sources/wp-admin/css/themes.css
new file mode 100644
index 0000000..13076cb
--- /dev/null
+++ b/sources/wp-admin/css/themes.css
@@ -0,0 +1,1902 @@
+/*------------------------------------------------------------------------------
+ 16.0 - Themes
+------------------------------------------------------------------------------*/
+
+
+/*------------------------------------------------------------------------------
+ 16.1 - Manage Themes
+------------------------------------------------------------------------------*/
+
+.theme-browser .themes {
+ clear: both;
+ padding: 0 0 100px;
+}
+
+.themes-php .wrap h2 {
+ float: left;
+ margin-bottom: 15px;
+}
+
+.network-admin.themes-php .wrap h2 {
+ margin-bottom: 0;
+}
+
+.themes-php .wrap h2 .button {
+ margin-left: 20px;
+}
+
+.themes-php .wrap .theme-count,
+.theme-navigation .theme-count {
+ color: #fff;
+ -webkit-border-radius: 30px;
+ border-radius: 30px;
+ background: #777;
+ font-size: 14px;
+ padding: 4px 10px;
+ font-weight: 600;
+ margin-left: 5px;
+ margin-right: 20px;
+ position: relative;
+ top: -3px;
+}
+
+.theme-navigation a {
+ text-decoration:none;
+}
+
+/* Position admin messages */
+.themes-php div.updated,
+.themes-php div.error {
+ margin: 0 0 20px 0;
+ clear: both;
+}
+
+.themes-php div.updated a {
+ text-decoration: underline;
+}
+
+/**
+ * Main theme element
+ * (has flexible margins)
+ */
+.theme-browser .theme {
+ cursor: pointer;
+ float: left;
+ margin: 0 4% 4% 0;
+ position: relative;
+ width: 30.6%;
+ border: 1px solid #dedede;
+ -webkit-box-shadow: 0 1px 1px -1px rgba(0,0,0,0.1);
+ box-shadow: 0 1px 1px -1px rgba(0,0,0,0.1);
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}
+
+.ie8 .theme-browser .theme {
+ width: 30%;
+ margin: 0 3% 4% 0;
+}
+
+.theme-browser .theme:nth-child(3n) {
+ margin-right: 0;
+}
+
+.theme-browser .theme:hover,
+.theme-browser .theme:focus {
+ cursor: pointer;
+}
+
+.theme-browser .theme .theme-name {
+ font-size: 15px;
+ font-weight: 600;
+ height: 18px;
+ margin: 0;
+ padding: 15px;
+ -webkit-box-shadow: inset 0 1px 0 rgba(0,0,0,0.1);
+ box-shadow: inset 0 1px 0 rgba(0,0,0,0.1);
+ overflow: hidden;
+ white-space: nowrap;
+ text-overflow: ellipsis;
+ background: #fff;
+ background: rgba(255,255,255,0.65);
+}
+
+/* Activate and Customize buttons, shown on hover and focus */
+.theme-browser .theme .theme-actions {
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
+ opacity: 0;
+ -webkit-transition: opacity 0.1s ease-in-out;
+ transition: opacity 0.1s ease-in-out;
+ position: absolute;
+ bottom: 0;
+ right: 0;
+ height: 38px;
+ padding: 9px 10px 0 10px;
+ background: rgba(244, 244, 244, 0.7);
+ border-left: 1px solid rgba(0,0,0,0.05);
+}
+
+.theme-browser .theme:hover .theme-actions,
+.theme-browser .theme.focus .theme-actions,
+.theme-browser .theme:focus .theme-actions {
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
+ opacity: 1;
+}
+
+.theme-browser .theme .theme-actions .button-primary {
+ margin-right: 3px;
+}
+
+.theme-browser .theme .theme-actions .button-secondary {
+ float: none;
+ margin-left: 3px;
+}
+
+/**
+ * Theme Screenshot
+ *
+ * Has a fixed aspect ratio of 1.5 to 1 regardless of screenshot size
+ * It is also responsive.
+ */
+.theme-browser .theme .theme-screenshot {
+ display: block;
+ overflow: hidden;
+ position: relative;
+ -webkit-transition: opacity 0.2s ease-in-out;
+ transition: opacity 0.2s ease-in-out;
+}
+
+.theme-browser .theme .theme-screenshot:after {
+ content: '';
+ display: block;
+ padding-top: 66.66666%; /* using a 3/2 aspect ratio */
+}
+
+.theme-browser .theme .theme-screenshot img {
+ height: auto;
+ position: absolute;
+ left: 0;
+ top: 0;
+ width: 100%;
+ -webkit-transform: translateZ( 0 ); /* Prevents rendering bugs in Chrome */
+ -webkit-transition: opacity 0.2s ease-in-out; /* Prevents rendering bugs in Chrome */
+ transition: opacity 0.2s ease-in-out;
+}
+
+.theme-browser .theme:hover .theme-screenshot,
+.theme-browser .theme:focus .theme-screenshot {
+ background: #fff;
+}
+
+.theme-browser.rendered .theme:hover .theme-screenshot img,
+.theme-browser.rendered .theme:focus .theme-screenshot img {
+ opacity: 0.4;
+}
+
+.theme-browser .theme .more-details {
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
+ opacity: 0;
+ position: absolute;
+ top: 35%;
+ right: 25%;
+ left: 25%;
+ background: #222;
+ background: rgba(0,0,0,0.7);
+ color: #fff;
+ font-size: 15px;
+ text-shadow: 0 1px 0 rgba(0,0,0,0.6);
+ -webkit-font-smoothing: antialiased;
+ font-weight: 600;
+ padding: 15px 12px;
+ text-align: center;
+ -webkit-border-radius: 3px;
+ border-radius: 3px;
+ -webkit-transition: opacity 0.1s ease-in-out;
+ transition: opacity 0.1s ease-in-out;
+}
+.theme-browser .theme:focus {
+ outline: 1px dotted #222;
+}
+
+.theme-browser .theme:focus .more-details {
+ opacity: 1;
+}
+/* Current theme needs to have its action always on view */
+.theme-browser .theme.active:focus .theme-actions {
+ display: block;
+}
+
+.theme-browser.rendered .theme:hover .more-details,
+.theme-browser.rendered .theme:focus .more-details {
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
+ opacity: 1;
+}
+
+/**
+ * Displays a theme update notice
+ * when an update is available.
+ */
+.theme-browser .theme .theme-update,
+.theme-browser .theme .theme-installed {
+ background: #d54e21;
+ background: rgba(213, 78, 33, 0.95);
+ color: #fff;
+ display: block;
+ font-size: 13px;
+ font-weight: 400;
+ height: 48px;
+ line-height: 48px;
+ padding: 0 10px;
+ position: absolute;
+ top: 0;
+ right: 0;
+ left: 0;
+ border-bottom: 1px solid rgba(0,0,0,0.25);
+ overflow: hidden;
+}
+
+.theme-browser .theme .theme-update:before,
+.theme-browser .theme .theme-installed:before {
+ content: '\f463';
+ display: inline-block;
+ font: normal 20px/1 'dashicons';
+ margin: 0 6px 0 0;
+ opacity: 0.8;
+ position: relative;
+ top: 5px;
+ speak: none;
+ -webkit-font-smoothing: antialiased;
+}
+
+
+/**
+ * The currently active theme
+ */
+.theme-browser .theme.active .theme-name {
+ background: #2f2f2f;
+ color: #fff;
+ padding-right: 110px;
+ font-weight: 300;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.5);
+ box-shadow: inset 0 1px 1px rgba(0,0,0,0.5);
+}
+
+.theme-browser .theme.active .theme-name span {
+ font-weight: 600;
+}
+
+.theme-browser .theme.active .theme-actions {
+ background: rgba(49,49,49,0.7);
+ border-left: none;
+ opacity: 1;
+}
+
+.theme-browser .theme.active .theme-actions .button-primary {
+ margin-right: 0;
+}
+
+.theme-browser .theme .theme-author {
+ background: #222;
+ color: #eee;
+ display: none;
+ font-size: 14px;
+ margin: 0 10px;
+ padding: 5px 10px;
+ position: absolute;
+ bottom: 56px;
+}
+
+.theme-browser .theme.display-author .theme-author {
+ display: block;
+}
+
+.theme-browser .theme.display-author .theme-author a {
+ color: inherit;
+ text-decoration: none;
+}
+
+/**
+ * Add new theme
+ */
+.theme-browser .theme.add-new-theme {
+ border: none;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+.theme-browser .theme.add-new-theme a {
+ color: #999;
+ text-decoration: none;
+ display: block;
+ position: relative;
+ z-index: 1;
+}
+
+.theme-browser .theme.add-new-theme:after {
+ display: block;
+ content: '';
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
+ opacity: 1;
+ background: transparent;
+ background: rgba(0, 0, 0, 0);
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ padding: 10% 0 0 0;
+ text-shadow: none;
+ border: 5px dashed #d5d2ca;
+ border: 5px dashed rgba(0, 0, 0, 0.1);
+ -webkit-transition: opacity 0.2s ease-in-out;
+ transition: opacity 0.2s ease-in-out;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}
+
+.theme-browser .theme.add-new-theme span:after {
+ background: #e5e5e5;
+ background: rgba(153, 153, 153, 0.1);
+ -webkit-border-radius: 50%;
+ border-radius: 50%;
+ display: inline-block;
+ content: '\f132';
+ -webkit-font-smoothing: antialiased;
+ font: normal 74px/115px 'dashicons';
+ width: 100px;
+ height: 100px;
+ vertical-align: middle;
+ text-align: center;
+ color: rgb(153, 153, 153);
+ position: absolute;
+ top: 30%;
+ left: 50%;
+ margin-left: -50px;
+ text-indent: -4px;
+ padding: 0;
+ text-shadow: none;
+ z-index:4;
+}
+
+.rtl .theme-browser .theme.add-new-theme span:after {
+ text-indent: 4px;
+}
+
+.theme-browser .theme.add-new-theme:hover .theme-screenshot,
+.theme-browser .theme.add-new-theme:focus .theme-screenshot {
+ background: none;
+}
+
+.theme-browser .theme.add-new-theme:hover span:after,
+.theme-browser .theme.add-new-theme:focus span:after {
+ background: #fff;
+ color: #0074a2;
+}
+
+.theme-browser .theme.add-new-theme:hover:after,
+.theme-browser .theme.add-new-theme:focus:after {
+ border-color: transparent;
+ color: #fff;
+ background: #0074a2;
+ content: '';
+}
+
+.theme-browser .theme.add-new-theme .theme-name {
+ background: none;
+ text-align: center;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ font-weight: 400;
+ position: relative;
+ top: 0;
+ margin-top: -10%;
+ margin-bottom: 10%;
+}
+
+.theme-browser .theme.add-new-theme:hover .theme-name,
+.theme-browser .theme.add-new-theme:focus .theme-name {
+ color: #fff;
+ z-index: 2;
+}
+
+/*
+ * The search form
+ */
+.themes-php .theme-search {
+ position: relative;
+ top: -2px;
+ left: 20px;
+ font-size: 16px;
+ font-weight: 300;
+ line-height: 1.5;
+ width: 280px;
+}
+
+/**
+ * Theme Overlay
+ * Shown when clicking a theme
+ */
+.theme-overlay .theme-backdrop {
+ position: absolute;
+ left: -20px;
+ right: 0;
+ top: 0;
+ bottom: 0;
+ background: #f1f1f1;
+ background: rgba( 238, 238, 238, 0.9 );
+ z-index: 10;
+}
+
+body.theme-overlay-open {
+ overflow: hidden;
+}
+
+.theme-overlay .theme-header {
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ height: 48px;
+ border-bottom: 1px solid #ddd;
+}
+
+.theme-overlay .theme-header .close {
+ cursor: pointer;
+ height: 48px;
+ width: 50px;
+ text-align: center;
+ float: right;
+ border: 0;
+ border-left: 1px solid #ddd;
+ background-color: transparent;
+}
+
+.theme-overlay .theme-header .close:hover:before,
+.theme-overlay .theme-header .close:focus:before {
+ color: #fff;
+}
+
+.theme-overlay .theme-header .close:before {
+ font: normal 30px/50px 'dashicons' !important;
+ color: #777;
+ display: inline-block;
+ content: '\f335';
+ font-weight: 300;
+}
+
+/* Left and right navigation */
+.theme-overlay .theme-header .right,
+.theme-overlay .theme-header .left {
+ cursor: pointer;
+ color: #777;
+ background-color: transparent;
+ height: 48px;
+ width: 54px;
+ float: left;
+ text-align: center;
+ border: 0;
+ border-right: 1px solid #ddd;
+}
+
+.theme-overlay .theme-header .close:hover,
+.theme-overlay .theme-header .right:hover,
+.theme-overlay .theme-header .left:hover,
+.theme-overlay .theme-header .close:focus,
+.theme-overlay .theme-header .right:focus,
+.theme-overlay .theme-header .left:focus {
+ background: #0074a2;
+ color: #fff;
+}
+
+.theme-overlay .theme-header .left.disabled,
+.theme-overlay .theme-header .right.disabled,
+.theme-overlay .theme-header .left.disabled:hover,
+.theme-overlay .theme-header .right.disabled:hover {
+ color: #ccc;
+ background: inherit;
+ cursor: inherit;
+}
+
+.theme-overlay .theme-header .right:before,
+.theme-overlay .theme-header .left:before {
+ font: normal 20px/50px 'dashicons' !important;
+ display: inline;
+ font-weight: 300;
+}
+
+.theme-overlay .theme-header .left:before {
+ content: '\f340';
+}
+
+.theme-overlay .theme-header .right:before {
+ content: '\f344';
+}
+
+.rtl .theme-overlay .theme-header .left:before {
+ content: '\f345';
+}
+
+.rtl .theme-overlay .theme-header .right:before {
+ content: '\f341';
+}
+
+.theme-overlay .theme-wrap {
+ clear: both;
+ position: fixed;
+ top: 9%;
+ left: 190px;
+ right: 30px;
+ bottom: 3%;
+ background: #fff;
+ -webkit-box-shadow: 0 1px 20px 5px rgba(0, 0, 0, 0.1);
+ box-shadow: 0 1px 20px 5px rgba(0, 0, 0, 0.1);
+ z-index: 20;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}
+
+.theme-overlay .theme-wrap:after {
+ content: ".";
+ display: block;
+ height: 0;
+ clear: both;
+ visibility: hidden;
+}
+
+body.folded .theme-overlay .theme-wrap {
+ left: 70px;
+}
+
+.theme-overlay .theme-about {
+ position: absolute;
+ top: 49px;
+ bottom: 57px;
+ left: 0;
+ right: 0;
+ overflow: auto;
+ padding: 2% 4%;
+}
+.theme-overlay .theme-about:after {
+ content: ".";
+ display: block;
+ height: 0;
+ clear: both;
+ visibility: hidden;
+}
+
+.theme-overlay .theme-actions {
+ position: absolute;
+ text-align: center;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ padding: 10px 25px 5px;
+ background: #f3f3f3;
+ z-index: 30;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ border-top: 1px solid #eee;
+}
+
+.ie8 .theme-overlay .theme-actions {
+ border: 1px solid #eee;
+}
+
+.theme-overlay .theme-actions a {
+ margin-right: 5px;
+ margin-bottom: 5px;
+}
+
+.theme-overlay .theme-actions .delete-theme {
+ color: #a00;
+ position: absolute;
+ right: 10px;
+ bottom: 5px;
+ text-decoration: none;
+ border-color: transparent;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ background: transparent;
+}
+
+.theme-overlay .theme-actions .delete-theme:hover,
+.theme-overlay .theme-actions .delete-theme:focus {
+ background: #d54e21;
+ color: #fff;
+ border-color: #d54e21;
+}
+
+.theme-overlay .theme-actions .active-theme,
+.theme-overlay.active .theme-actions .inactive-theme {
+ display: none;
+}
+
+.theme-overlay .theme-actions .inactive-theme,
+.theme-overlay.active .theme-actions .active-theme {
+ display: block;
+}
+
+/**
+ * Theme Screenshots gallery
+ */
+.theme-overlay .theme-screenshots {
+ float: left;
+ margin: 0 30px 0 0;
+ width: 55%;
+ max-width: 880px;
+ text-align: center;
+}
+
+/* First screenshot, shown big */
+.theme-overlay .screenshot {
+ border: 1px solid #fff;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ overflow: hidden;
+ position: relative;
+ -webkit-box-shadow: 0 0 0 1px rgba(0,0,0,0.2);
+ box-shadow: 0 0 0 1px rgba(0,0,0,0.2);
+}
+
+.theme-overlay .screenshot:after {
+ content: '';
+ display: block;
+ padding-top: 75%; /* using a 4/3 aspect ratio */
+}
+
+.theme-overlay .screenshot img {
+ height: auto;
+ position: absolute;
+ left: 0;
+ top: 0;
+ width: 100%;
+}
+/* Handles old 300px screenshots */
+.theme-overlay.small-screenshot .theme-screenshots {
+ position: absolute;
+ width: 302px;
+}
+.theme-overlay.small-screenshot .theme-info {
+ margin-left: 350px;
+ width: auto;
+}
+
+/* Other screenshots, shown small and square */
+.theme-overlay .screenshot.thumb {
+ background: #ccc;
+ border: 1px solid #eee;
+ float: none;
+ display: inline-block;
+ margin: 10px 5px 0;
+ width: 140px;
+ height: 80px;
+ cursor: pointer;
+}
+
+.theme-overlay .screenshot.thumb:after {
+ content: '';
+ display: block;
+ padding-top: 100%; /* using a 1/1 aspect ratio */
+}
+
+.theme-overlay .screenshot.thumb img {
+ cursor: pointer;
+ height: auto;
+ position: absolute;
+ left: 0;
+ top: 0;
+ width: 100%;
+ height: auto;
+}
+
+.theme-overlay .screenshot.selected {
+ background: transparent;
+ border: 2px solid #2ea2cc;
+}
+
+.theme-overlay .screenshot.selected img {
+ opacity: 0.8;
+}
+
+/* No screenshot placeholder */
+.theme-browser .theme .theme-screenshot.blank,
+.theme-overlay .screenshot.blank {
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYGWO8d+/efwYkoKioiMRjYGBC4WHhUK6A8T8QIJt8//59ZC493AAAQssKpBK4F5AAAAAASUVORK5CYII=);
+}
+
+/**
+ * Theme heading information
+ */
+.theme-overlay .theme-info {
+ width: 40%;
+ float: left;
+}
+
+.theme-overlay .current-label {
+ background: #333;
+ color: #fff;
+ font-size: 11px;
+ display: inline-block;
+ padding: 2px 8px;
+ -webkit-border-radius: 2px;
+ border-radius: 2px;
+ margin: 0 0 -10px;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
+
+.theme-overlay .theme-name {
+ color: #222;
+ font-size: 32px;
+ font-weight: 100;
+ margin: 10px 0 0;
+ line-height: 1.3;
+}
+
+.theme-overlay .theme-version {
+ color: #999;
+ font-size: 13px;
+ font-weight: 400;
+ float: none;
+ display: inline-block;
+ margin-left: 10px;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
+
+.theme-overlay .theme-author {
+ color: #686868;
+ font-size: 16px;
+ font-weight: 400;
+ margin: 15px 0 25px;
+}
+
+.theme-overlay .theme-author a {
+ text-decoration: none;
+}
+
+.theme-overlay .theme-description {
+ color: #555;
+ font-size: 15px;
+ font-weight: 400;
+ line-height: 1.5;
+ margin: 30px 0 0 0;
+}
+
+.theme-overlay .theme-tags {
+ border-top: 3px solid #eee;
+ color: #888;
+ font-size: 13px;
+ font-weight: 400;
+ margin: 30px 0 0 0;
+ padding-top: 20px;
+}
+
+.theme-overlay .theme-tags span {
+ color: #444;
+ font-weight: bold;
+ margin-right: 5px;
+}
+
+/* Theme Updates info */
+.theme-overlay .theme-update-message {
+ background: #fef7f1;
+ border: 1px solid #eee;
+ border-left: 4px solid #d54e21;
+ -webkit-border-radius: 3px;
+ border-radius: 3px;
+ padding: 5px 20px 10px;
+}
+
+.theme-overlay .theme-update {
+ color: #222;
+ font-size: 18px;
+ display: inline-block;
+ line-height: 40px;
+ margin: 0;
+}
+
+.theme-overlay .parent-theme {
+ background: #f7fcfe;
+ border: 1px solid #eee;
+ border-left: 4px solid #2ea2cc;
+ font-size: 14px;
+ font-weight: normal;
+ margin-top: 30px;
+ padding: 10px 10px 10px 20px;
+}
+
+.theme-overlay .parent-theme strong {
+ font-weight: 700;
+}
+
+/**
+ * Single Theme Mode
+ * Displays detailed view inline when a user has no switch capabilities
+ */
+.single-theme .theme-overlay .theme-backdrop,
+.single-theme .theme-overlay .theme-header,
+.single-theme .theme {
+ display: none;
+}
+
+.single-theme .theme-overlay .theme-wrap {
+ clear: both;
+ min-height: 330px;
+ position: relative;
+ left: auto;
+ right: auto;
+ top: auto;
+ bottom: auto;
+}
+
+.single-theme .theme-overlay .theme-about {
+ padding: 30px 30px 70px;
+ position: static;
+}
+
+.single-theme .theme-overlay .theme-actions {
+ position: absolute;
+}
+
+/**
+ * Basic Responsive structure...
+ *
+ * Shuffles theme columns around based on screen width
+ */
+
+@media only screen and (min-width: 2000px) {
+ #wpwrap .theme-browser .theme {
+ width: 17.6%;
+ margin: 0 3% 3% 0;
+ }
+
+ #wpwrap .theme-browser .theme:nth-child(3n),
+ #wpwrap .theme-browser .theme:nth-child(4n) {
+ margin-right: 3%;
+ }
+
+ #wpwrap .theme-browser .theme:nth-child(5n) {
+ margin-right: 0;
+ }
+}
+
+@media only screen and (min-width: 1680px) {
+ .theme-overlay .theme-wrap {
+ width: 1450px;
+ margin: 0 auto;
+ }
+}
+
+/* Maximum screenshot width reaches 440px */
+@media only screen and (min-width: 1640px) {
+ .theme-browser .theme {
+ width: 22.7%;
+ margin: 0 3% 3% 0;
+ }
+ .theme-browser .theme .theme-screenshot:after {
+ padding-top: 75%; /* using a 4/3 aspect ratio */
+ }
+
+ .theme-browser .theme:nth-child(3n) {
+ margin-right: 3%;
+ }
+
+ .theme-browser .theme:nth-child(4n) {
+ margin-right: 0;
+ }
+}
+/* Maximum screenshot width reaches 440px */
+@media only screen and (max-width: 1120px) {
+ .theme-browser .theme {
+ width: 47.5%;
+ margin-right: 0;
+ }
+
+ .theme-browser .theme:nth-child(even) {
+ margin-right: 0;
+ }
+
+ .theme-browser .theme:nth-child(odd) {
+ margin-right: 5%;
+ }
+}
+
+/* Admin menu is folded */
+@media only screen and (max-width: 900px) {
+ .theme-overlay .theme-wrap {
+ left: 65px;
+ }
+}
+
+@media only screen and (max-width: 780px) {
+ body.folded .theme-overlay .theme-wrap,
+ .theme-overlay .theme-wrap {
+ top: 0; /* The adminmenu isn't fixed on mobile, so this can use the full viewport height */
+ right: 0;
+ bottom: 0;
+ left: 0;
+ padding: 70px 20px 20px;
+ border: none;
+ z-index: 500; /* should overlap #wpadminbar, which is 500 on mobile. */
+ position: fixed;
+ }
+
+ .theme-browser .theme.active .theme-name span {
+ /* Hide the "Active: " label on smaller screens. */
+ display: none;
+ }
+
+ .theme-overlay .theme-screenshots {
+ width: 40%;
+ }
+
+ .theme-overlay .theme-info {
+ width: 50%;
+ }
+ .single-theme .theme-wrap {
+ padding: 10px;
+ }
+
+ .theme-browser .theme .theme-actions {
+ padding: 5px 10px 4px 10px;
+ }
+
+ .theme-overlay.small-screenshot .theme-screenshots {
+ position: static;
+ float: none;
+ max-width: 302px;
+ }
+
+ .theme-overlay.small-screenshot .theme-info {
+ margin-left: 0;
+ width: auto;
+ }
+
+ .theme:not(.active):hover .theme-actions,
+ .theme:not(.active):focus .theme-actions,
+ .theme:hover .more-details,
+ .theme:focus .more-details {
+ display: none;
+ }
+
+ .theme-browser.rendered .theme:hover .theme-screenshot img,
+ .theme-browser.rendered .theme:focus .theme-screenshot img {
+ opacity: 1.0;
+ }
+}
+
+@media only screen and (max-width: 480px) {
+ .theme-browser .theme {
+ width: 100%;
+ margin-right: 0;
+ }
+
+ .theme-browser .theme:nth-child(2n),
+ .theme-browser .theme:nth-child(3n) {
+ margin-right: 0;
+ }
+}
+
+@media only screen and (max-width: 650px) {
+ .theme-overlay .theme-update,
+ .theme-overlay .theme-description {
+ margin-left: 0;
+ }
+
+ .theme-overlay .theme-actions .delete-theme {
+ position: relative;
+ right: auto;
+ bottom: auto;
+ }
+
+ .theme-overlay .theme-actions .inactive-theme {
+ display: inline;
+ }
+
+ .theme-overlay .theme-screenshots {
+ width: 100%;
+ float: none;
+ }
+
+ .theme-overlay .theme-info {
+ width: 100%;
+ }
+
+ .theme-overlay .theme-author {
+ margin: 5px 0 15px 0;
+ }
+
+ .theme-overlay .current-label {
+ margin-top: 10px;
+ font-size: 13px;
+ }
+
+ .themes-php .wrap h2 {
+ width: 100%;
+ }
+
+ .themes-php .theme-search {
+ float: none;
+ clear: both;
+ left: 0;
+ top: 0;
+ right: 0;
+ margin: 10px 0;
+ width: 100%;
+ }
+
+ .theme-browser .theme.add-new-theme span:after {
+ font: normal 60px/90px 'dashicons';
+ width: 80px;
+ height: 80px;
+ top: 30%;
+ left: 50%;
+ text-indent: 0;
+ margin-left: -40px;
+ }
+
+ .single-theme .theme-wrap {
+ margin: 0 -12px 0 -10px;
+ padding: 10px;
+ }
+ .single-theme .theme-overlay .theme-about {
+ padding: 10px;
+ overflow: visible;
+ }
+ .single-theme .current-label {
+ display: none;
+ }
+ .single-theme .theme-overlay .theme-actions {
+ position: static;
+ }
+}
+
+.broken-themes {
+ clear: both;
+}
+
+.broken-themes table {
+ text-align: left;
+ width: 50%;
+ border-spacing: 3px;
+ padding: 3px;
+}
+
+
+/*------------------------------------------------------------------------------
+ 16.2 - Install Themes
+------------------------------------------------------------------------------*/
+
+/* Already installed theme */
+.theme-browser .theme .theme-installed {
+ background: #0074a2;
+}
+.theme-browser .theme .theme-installed:before {
+ content: '\f147';
+}
+.theme-browser .theme.is-installed .theme-actions .button-primary {
+ display: none !important;
+}
+
+.theme-navigation {
+ background: #fff;
+ -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
+ box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ color: #555;
+ display: inline-block;
+ font-size: 13px;
+ margin: 20px 0 30px;
+ padding: 0 20px;
+ position: relative;
+ width: 100%;
+}
+.theme-install-php a.upload,
+.theme-install-php a.browse-themes {
+ cursor: pointer;
+}
+.theme-install-php a.browse-themes,
+.theme-install-php.show-upload-theme a.upload {
+ display: none;
+}
+.theme-install-php.show-upload-theme a.browse-themes {
+ display: inline;
+}
+.upload-theme {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ display: none;
+ margin: 0px 0 0;
+ padding: 0;
+ width: 100%;
+ overflow: hidden;
+ position: relative;
+ top: 10px;
+}
+body.show-upload-theme .upload-theme {
+ display: block;
+}
+.upload-theme .wp-upload-form {
+ background: #fafafa;
+ border: 1px solid #e5e5e5;
+ padding: 30px;
+ margin: 30px auto;
+ max-width: 380px;
+}
+.upload-theme .install-help {
+ color: #999;
+ font-size: 18px;
+ font-style: normal;
+ margin: 0;
+ padding: 40px 0 0;
+ text-align: center;
+}
+body.show-upload-theme .upload-theme + .theme-navigation,
+body.show-upload-theme .upload-theme + .theme-navigation + .theme-browser {
+ display: none;
+}
+.theme-navigation .theme-count {
+ margin-left: 0;
+ position: absolute;
+ top: 12px;
+}
+.theme-count + .theme-section {
+ margin-left: 60px;
+}
+.theme-section,
+.theme-filter {
+ border-bottom: 4px solid #fff;
+ color: #666;
+ cursor: pointer;
+ display: inline-block;
+ margin: 0 10px;
+ padding: 15px 0;
+}
+.theme-section.current,
+.theme-filter.current {
+ border-bottom: 4px solid #666;
+ color: #222;
+}
+.theme-top-filters {
+ display: inline-block;
+}
+.theme-navigation .more-filters {
+ color: #666;
+ cursor: pointer;
+ display: inline-block;
+ margin: 0 10px;
+ padding: 4px 6px;
+}
+body.more-filters-opened .more-filters,
+body.more-filters-opened .more-filters:before {
+ background: #777;
+ -webkit-border-radius: 2px;
+ border-radius: 2px;
+ border: none;
+ color: #fff;
+}
+
+body.more-filters-opened .more-filters:hover,
+body.more-filters-opened .more-filters:focus,
+body.more-filters-opened .more-filters:hover:before,
+body.more-filters-opened .more-filters:focus:before {
+ background: rgb(46, 162, 204);
+}
+
+.theme-install-php .theme-search {
+ position: absolute;
+ right: 10px;
+ top: 9px;
+ font-size: 16px;
+ font-weight: 300;
+ line-height: 1.5;
+ width: 280px;
+}
+.more-filters:before {
+ color: #777;
+ text-align: center;
+ margin: 0 5px 0 0;
+ content: "\f111";
+ display: inline-block;
+ width: 16px;
+ height: 16px;
+ -webkit-font-smoothing: antialiased;
+ font-size: 16px;
+ line-height: 1;
+ font-family: "dashicons";
+ text-decoration: inherit;
+ font-weight: normal;
+ font-style: normal;
+ vertical-align: top;
+ -webkit-transition: color .1s ease-in 0;
+ transition: color .1s ease-in 0;
+ text-align: center;
+}
+.more-filters.current:before {
+ color: #fff;
+}
+.more-filters-container {
+ display: none;
+ padding: 20px;
+ border-top: 1px solid #eee;
+ margin: 0 -20px;
+ background: #fafafa;
+}
+body.more-filters-opened .more-filters-container {
+ display: block;
+ overflow: hidden;
+}
+body.more-filters-opened .theme-section.current {
+ border-bottom: none;
+}
+body.more-filters-opened .theme-browser,
+body.more-filters-opened.filters-applied.loading-themes .theme-browser {
+ display: none;
+}
+body.more-filters-opened.filters-applied .theme-browser {
+ display: block;
+}
+.more-filters-container .filters-group {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ float: left;
+ width: 19%;
+ background: #fff;
+ margin: 0 1% 0 0;
+ border: 1px solid #e5e5e5;
+ -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
+ box-shadow: 0 1px 1px rgba(0,0,0,0.04);
+ padding: 10px;
+}
+.more-filters-container .wide-filters-group {
+ width: 38%;
+}
+.more-filters-container .feature-name {
+ margin: 0;
+ position: relative;
+}
+.more-filters-container ol {
+ list-style-type: none;
+ margin: 20px 0 0;
+ font-size: 12px;
+}
+.more-filters-container li {
+ display: inline-block;
+ vertical-align: top;
+ list-style-type: none;
+ margin: 5px 0;
+ padding-right: 25px;
+ width: 160px;
+}
+.theme-navigation .more-filters-container .apply-filters {
+ margin: 0 0 20px;
+}
+.theme-navigation .more-filters-container .clear-filters {
+ display: none;
+ margin: 0 0 20px 10px;
+}
+.more-filters-container .apply-filters span {
+ display: inline-block;
+ font-size: 12px;
+ text-indent: 10px;
+ opacity: 0.8;
+}
+.more-filters-container .filtering-by {
+ display: none;
+ margin: 0;
+}
+.more-filters-container .filtering-by > span {
+ font-weight: 600;
+}
+.more-filters-container .filtering-by .tags {
+ display: inline;
+}
+.more-filters-container .filtering-by .tag {
+ background: #fff;
+ border: 1px solid #e5e5e5;
+ -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
+ box-shadow: 0 1px 1px rgba(0,0,0,0.04);
+ font-size: 11px;
+ margin: 0 5px;
+ padding: 4px 8px;
+}
+.more-filters-container .filtering-by a {
+ margin-left: 10px;
+}
+body.filters-applied .more-filters-container .filters-group,
+body.filters-applied .more-filters-container a.button,
+body.filters-applied .more-filters-container br {
+ display: none !important;
+}
+body.filters-applied .more-filters-container .filtering-by {
+ display: block;
+}
+body.filters-applied .more-filters-container {
+ padding: 20px;
+}
+p.no-themes {
+ color: #999;
+ font-size: 18px;
+ font-style: normal;
+ margin: 0;
+ padding: 0;
+ text-align: center;
+ display: none;
+}
+body.no-results p.no-themes {
+ display: block;
+}
+body.show-upload-theme p.no-themes {
+ display: none !important;
+}
+
+
+.theme-install-php .add-new-theme {
+ display: none !important;
+}
+
+@media only screen and (max-width: 1120px) {
+ .theme-install-php .theme-search {
+ margin: 20px 0;
+ position: static;
+ width: 100%;
+ }
+ .more-filters-container {
+ border-bottom: 1px solid #eee;
+ }
+ .upload-theme .wp-upload-form {
+ margin: 20px 0;
+ max-width: 100%;
+ }
+ .upload-theme .install-help {
+ font-size: 15px;
+ padding: 20px 0 0;
+ text-align: left;
+ }
+ .more-filters-container .filters-group {
+ margin-bottom: 0;
+ margin-top: 5px;
+ width: 100%;
+ }
+ .more-filters-container .filters-group li {
+ margin: 10px 0;
+ }
+}
+
+@media only screen and (max-width: 782px) {
+ .more-filters-container .filters-group {
+ width: 100%;
+ }
+ .more-filters-container .filters-group li {
+ width: 100%;
+ }
+}
+
+.rating {
+ margin: 30px 0;
+}
+.rating span:before {
+ color: #e6b800;
+ content: "\f154";
+ display: inline-block;
+ -webkit-font-smoothing: antialiased;
+ font: normal 20px/1 'dashicons';
+ vertical-align: top;
+}
+/* Half stars */
+.rating-10 span.one:before,
+.rating-30 span.two:before,
+.rating-50 span.three:before,
+.rating-70 span.four:before,
+.rating-90 span.five:before {
+ content: "\f459";
+}
+/* Full stars */
+.rating-20 span.one:before {
+ content: "\f155";
+}
+.rating-30 span.one:before,
+.rating-40 span.one:before,
+.rating-40 span.two:before {
+ content: "\f155";
+}
+.rating-50 span.one:before,
+.rating-50 span.two:before,
+.rating-60 span.one:before,
+.rating-60 span.two:before,
+.rating-60 span.three:before {
+ content: "\f155";
+}
+.rating-70 span.one:before,
+.rating-70 span.two:before,
+.rating-70 span.three:before,
+.rating-80 span.one:before,
+.rating-80 span.two:before,
+.rating-80 span.three:before,
+.rating-80 span.four:before {
+ content: "\f155";
+}
+.rating-90 span.one:before,
+.rating-90 span.two:before,
+.rating-90 span.three:before,
+.rating-90 span.four:before,
+.rating-100 span.one:before,
+.rating-100 span.two:before,
+.rating-100 span.three:before,
+.rating-100 span.four:before,
+.rating-100 span.five:before {
+ content: "\f155";
+}
+.rating .ratings {
+ display: inline;
+ margin-left: 10px;
+ line-height: 20px;
+ color: #999;
+}
+.loading-themes .theme-browser,
+.error .theme-browser {
+ display: none;
+}
+.loading-themes .spinner {
+ display: block;
+ margin: 40px auto 0;
+ float: none;
+}
+
+/*------------------------------------------------------------------------------
+ 16.3 - Custom Header Screen
+------------------------------------------------------------------------------*/
+
+.appearance_page_custom-header #headimg {
+ border: 1px solid #DFDFDF;
+ overflow: hidden;
+ width: 100%;
+}
+
+.appearance_page_custom-header #upload-form p label {
+ font-size: 12px;
+}
+
+.appearance_page_custom-header .available-headers .default-header {
+ float: left;
+ margin: 0 20px 20px 0;
+}
+
+.appearance_page_custom-header .random-header {
+ clear: both;
+ margin: 0 20px 20px 0;
+ vertical-align: middle;
+}
+
+.appearance_page_custom-header .available-headers label input,
+.appearance_page_custom-header .random-header label input {
+ margin-right: 10px;
+}
+
+.appearance_page_custom-header .available-headers label img {
+ vertical-align: middle;
+}
+
+
+/*------------------------------------------------------------------------------
+ 16.4 - Custom Background Screen
+------------------------------------------------------------------------------*/
+
+div#custom-background-image {
+ min-height: 100px;
+ border: 1px solid #dfdfdf;
+}
+
+div#custom-background-image img {
+ max-width: 400px;
+ max-height: 300px;
+}
+
+/*------------------------------------------------------------------------------
+ 23.0 - Full Overlay w/ Sidebar
+------------------------------------------------------------------------------*/
+
+body.full-overlay-active {
+ overflow: hidden;
+}
+
+.wp-full-overlay {
+ background: transparent;
+ z-index: 500000;
+ position: fixed;
+ overflow: visible;
+ top: 0;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ height: 100%;
+ min-width: 0;
+}
+
+.wp-full-overlay-sidebar {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ position: fixed;
+ width: 300px;
+ height: 100%;
+ top: 0;
+ bottom: 0;
+ left: 0;
+ padding: 0;
+ margin: 0;
+ z-index: 10;
+ overflow: auto;
+ background: #eee;
+ border-right: none;
+}
+
+.wp-full-overlay.collapsed .wp-full-overlay-sidebar {
+ overflow: visible;
+}
+
+.wp-full-overlay.collapsed,
+.wp-full-overlay.expanded .wp-full-overlay-sidebar {
+ margin-left: 0 !important;
+}
+
+.wp-full-overlay.expanded {
+ margin-left: 300px;
+}
+
+.wp-full-overlay.collapsed .wp-full-overlay-sidebar {
+ margin-left: -300px;
+}
+
+.wp-full-overlay-sidebar:after {
+ content: '';
+ display: block;
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ right: 0;
+ width: 3px;
+ z-index: 1000;
+}
+
+.wp-full-overlay-main {
+ position: absolute;
+ left: 0;
+ right: 0;
+ top: 0;
+ bottom: 0;
+ height: 100%;
+}
+
+.wp-full-overlay-sidebar .wp-full-overlay-header {
+ position: absolute;
+ left: 0;
+ right: 0;
+ height: 45px;
+ padding: 0 15px;
+ line-height: 45px;
+ z-index: 10;
+ margin: 0;
+ border-top: none;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+.wp-full-overlay-sidebar .wp-full-overlay-header a.back {
+ margin-top: 9px;
+}
+
+.wp-full-overlay-sidebar .wp-full-overlay-footer {
+ bottom: 0;
+ border-bottom: none;
+ border-top: none;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+.wp-full-overlay-sidebar .wp-full-overlay-sidebar-content {
+ position: absolute;
+ top: 45px;
+ bottom: 45px;
+ left: 0;
+ right: 0;
+ overflow: auto;
+}
+
+/* Close Link */
+.wp-full-overlay .close-full-overlay {
+ text-decoration: none;
+}
+
+/* Collapse Button */
+.wp-full-overlay a.collapse-sidebar {
+ position: absolute;
+ bottom: 12px;
+ left: 0;
+ z-index: 50;
+ display: block;
+ width: 19px;
+ height: 19px;
+ margin-left: 15px;
+ padding: 0;
+ -webkit-border-radius: 50%;
+ border-radius: 50%;
+ color: #777;
+ text-decoration: none;
+}
+
+.wp-full-overlay a.collapse-sidebar:hover {
+ color: #0074a2;
+}
+
+.wp-full-overlay.collapsed .collapse-sidebar {
+ position: absolute;
+ left: 100%;
+}
+
+.wp-full-overlay .collapse-sidebar-arrow {
+ position: static;
+ margin-top: 0;
+ margin-left: 0;
+ display: block;
+ width: auto;
+ height: auto;
+ background: none;
+}
+
+.wp-full-overlay .collapse-sidebar-arrow:before {
+ -webkit-border-radius: 50%;
+ border-radius: 50%;
+ float: left;
+ content: "\f148";
+ background: #eee;
+ font: normal 20px/1 'dashicons';
+ speak: none;
+ display: block;
+ padding: 0;
+ text-indent: 0;
+ text-align: center;
+ position: relative;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ text-decoration: none !important;
+}
+
+.wp-full-overlay.collapsed .collapse-sidebar-arrow:before,
+.rtl .wp-full-overlay .collapse-sidebar-arrow:before {
+ -webkit-transform: rotate(180deg);
+ -ms-transform: rotate(180deg);
+ transform: rotate(180deg);
+}
+
+.rtl .wp-full-overlay.collapsed .collapse-sidebar-arrow:before {
+ -webkit-transform: none;
+ -ms-transform: none;
+ transform: none;
+}
+
+.wp-full-overlay.collapsed .collapse-sidebar-arrow {
+ background-position: -1px -109px;
+}
+
+.wp-full-overlay .collapse-sidebar-label {
+ position: absolute;
+ left: 100%;
+ line-height: 20px;
+ margin-left: 10px;
+}
+
+.wp-full-overlay.collapsed .collapse-sidebar-label {
+ display: none;
+}
+
+.wp-full-overlay .theme-navigation {
+ padding: 10px 20px;
+ position: absolute;
+ bottom: 10px;
+ text-align: left;
+}
+.wp-full-overlay .theme-navigation .next-theme {
+ float: right;
+}
+.wp-full-overlay.no-navigation .theme-navigation {
+ display: none;
+}
+
+/* Animations */
+.wp-full-overlay,
+.wp-full-overlay-sidebar,
+.wp-full-overlay .collapse-sidebar,
+.wp-full-overlay-main {
+ -webkit-transition-property: left, right, top, bottom, width, margin;
+ transition-property: left, right, top, bottom, width, margin;
+ -webkit-transition-duration: 0.2s;
+ transition-duration: 0.2s;
+}
+
+/*------------------------------------------------------------------------------
+ 24.0 - Customize Loader
+------------------------------------------------------------------------------*/
+
+.no-customize-support .hide-if-no-customize,
+.customize-support .hide-if-customize,
+.no-customize-support.wp-core-ui .hide-if-no-customize,
+.no-customize-support .wp-core-ui .hide-if-no-customize,
+.customize-support.wp-core-ui .hide-if-customize,
+.customize-support .wp-core-ui .hide-if-customize {
+ display: none;
+}
+
+#customize-container {
+ display: none;
+ background: #fff;
+ z-index: 500000;
+ position: fixed;
+ overflow: visible;
+ top: 0;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ height: 100%;
+}
+
+.customize-active #customize-container {
+ display: block;
+}
+
+.customize-loading #customize-container iframe {
+ opacity: 0;
+}
+
+.customize-loading #customize-container {
+ background: #fff url(../images/spinner.gif) no-repeat fixed center center;
+ -webkit-background-size: 20px 20px;
+ background-size: 20px 20px;
+}
+
+#customize-container iframe,
+.theme-install-overlay iframe {
+ height: 100%;
+ width: 100%;
+ z-index: 20;
+ -webkit-transition: opacity 0.3s;
+ transition: opacity 0.3s;
+}
+
+#customize-container .collapse-sidebar {
+ bottom: 16px;
+}
+
+#customize-controls {
+ margin-top: 0;
+}
+
+.theme-install-overlay {
+ display: none;
+}
+
+.theme-install-overlay.single-theme {
+ display: block;
+}
+
+.install-theme-info {
+ display: none;
+ padding: 10px 20px 60px;
+}
+
+.single-theme .install-theme-info {
+ padding-top: 15px;
+}
+
+.theme-install-overlay .install-theme-info {
+ display: block;
+}
+
+.install-theme-info .theme-install {
+ float: right;
+ margin-top: 18px;
+}
+
+.install-theme-info .theme-name {
+ font-size: 16px;
+ line-height: 24px;
+ margin-bottom: 0;
+ margin-top: 0;
+}
+
+.install-theme-info .theme-screenshot {
+ margin-top: 15px;
+ width: 258px;
+ border: 1px solid #ccc;
+}
+
+.install-theme-info .theme-details {
+ overflow: hidden;
+}
+
+.theme-details .theme-version {
+ margin: 15px 0;
+ float: left;
+}
+
+.theme-details .star-rating {
+ margin: 7px 0;
+ float: right;
+}
+
+.theme-details .theme-description {
+ float: left;
+ color: #777;
+ line-height: 20px;
+ max-width: 100%;
+}
+
+.theme-install-overlay .wp-full-overlay-header {
+ margin-top: 9px;
+}
+
+.theme-install-overlay .wp-full-overlay-header .theme-install {
+ float: right;
+ /* For when .theme-install is a span rather than a.button-primary (already installed theme) */
+ line-height: 26px;
+}
+
+.theme-install-overlay .wp-full-overlay-sidebar {
+ background: #EEE;
+ border-right: 1px solid #DDD;
+}
+
+.theme-install-overlay .wp-full-overlay-main {
+ background: #fff url(../images/spinner.gif) no-repeat center center;
+ -webkit-background-size: 20px 20px;
+ background-size: 20px 20px;
+}
+
+/* =Media Queries
+-------------------------------------------------------------- */
+
+/**
+ * HiDPI Displays
+ */
+@media print,
+ (-o-min-device-pixel-ratio: 5/4),
+ (-webkit-min-device-pixel-ratio: 1.25),
+ (min-resolution: 120dpi) {
+ .wp-full-overlay .collapse-sidebar-arrow {
+ background-image: url(../images/arrows-2x.png);
+ -webkit-background-size: 15px 123px;
+ background-size: 15px 123px;
+ }
+
+ .customize-loading #customize-container,
+ .theme-install-overlay .wp-full-overlay-main {
+ background-image: url(../images/spinner-2x.gif);
+ }
+}
+
+@media screen and ( max-width: 782px ) {
+ .available-theme .action-links .delete-theme {
+ float: none;
+ margin: 0;
+ padding: 0;
+ clear: both;
+ }
+
+ .available-theme .action-links .delete-theme a {
+ padding: 0;
+ }
+}
diff --git a/sources/wp-admin/css/widgets-rtl.css b/sources/wp-admin/css/widgets-rtl.css
new file mode 100644
index 0000000..be4d9c3
--- /dev/null
+++ b/sources/wp-admin/css/widgets-rtl.css
@@ -0,0 +1,574 @@
+/* General Widgets Styles */
+
+.widget {
+ margin: 0 auto 10px;
+ position: relative;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}
+
+.widget-top {
+ font-size: 13px;
+ font-weight: 600;
+ background: #f7f7f7;
+}
+
+.widget-top a.widget-action,
+.widget-top a.widget-action:hover {
+ text-decoration: none;
+}
+
+.widget-title h4 {
+ margin: 0;
+ padding: 15px;
+ line-height: 1;
+ overflow: hidden;
+ white-space: nowrap;
+ text-overflow: ellipsis;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
+
+.widgets-holder-wrap .widget-inside {
+ border-top: none;
+ padding: 1px 15px 15px 15px;
+ line-height: 16px;
+}
+
+.in-widget-title,
+#widgets-right a.widget-control-edit,
+#available-widgets .widget-description {
+ color: #666;
+}
+
+.deleting .widget-title,
+.deleting .widget-top a.widget-action:after {
+ color: #aaa;
+}
+
+/* Widget Dragging Helpers */
+.widget.ui-draggable-dragging {
+ min-width: 100%;
+}
+
+.widget.ui-sortable-helper {
+ opacity: 0.8;
+}
+
+.widget-placeholder {
+ border: 1px dashed #bbb;
+ margin: 0 auto 10px;
+ height: 45px;
+ width: 100%;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}
+
+#widgets-right .widget-placeholder {
+ margin-top: 0;
+}
+
+#widgets-right .closed .widget-placeholder {
+ height: 0;
+ border: 0;
+ margin-top: -10px;
+}
+
+/* Widget Sidebars */
+.sidebar-name {
+ position: relative;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}
+
+.sidebar-name-arrow {
+ position: absolute;
+ top: 0;
+ left: 0;
+ bottom: 0;
+}
+
+.js .sidebar-name {
+ cursor: pointer;
+}
+
+.sidebar-name h3 {
+ margin: 0;
+ padding: 8px 10px;
+ overflow: hidden;
+ white-space: nowrap;
+}
+
+.widgets-holder-wrap .description {
+ padding: 0 0 15px;
+ margin: 0;
+ font-style: normal;
+ color: #777;
+}
+
+#widgets-right .widgets-holder-wrap .description {
+ padding-right: 7px;
+ padding-left: 7px;
+}
+
+/* Widgets 2-col Layout */
+div.widget-liquid-left {
+ margin: 0;
+ width: 38%;
+ float: right;
+}
+
+div.widget-liquid-right {
+ float: left;
+ width: 58%;
+}
+
+/* Widgets Left - Available Widgets */
+
+div#widgets-left {
+ padding-top: 12px;
+}
+
+div#widgets-left .closed .sidebar-name,
+div#widgets-left .inactive-sidebar.closed .sidebar-name {
+ margin-bottom: 10px;
+}
+
+div#widgets-left .sidebar-name h3 {
+ padding: 10px 0;
+ margin: 0 0 0 10px;
+}
+
+div#widgets-left .sidebar-name .sidebar-name-arrow:before {
+ left: 0;
+ top: 4px;
+ padding: 4px 4px 4px 6px;
+}
+
+#widgets-left #available-widgets,
+div#widgets-left .widget-holder {
+ background: transparent;
+ border: none;
+}
+
+#widgets-left .widgets-holder-wrap {
+ border: none;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+#available-widgets .widget-action {
+ display: none;
+}
+
+#available-widgets .widget {
+ margin: 0;
+}
+
+#available-widgets .widget:nth-child(odd) {
+ clear: both;
+}
+
+#available-widgets .widget .widget-description {
+ display: block;
+ padding: 10px 15px;
+ font-size: 12px;
+}
+
+#available-widgets #widget-list {
+ position: relative;
+}
+
+/* Inactive Sidebars */
+#widgets-left .inactive-sidebar {
+ clear: both;
+ width: 100%;
+ background: transparent;
+ padding: 0;
+ margin: 0 0 20px 0;
+ border: none;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+#widgets-left .inactive-sidebar.first {
+ margin-top: 40px;
+}
+
+/* Not sure what this is for... */
+div#widgets-left .inactive-sidebar .widget.expanded {
+ right: auto;
+}
+
+.widget-title-action {
+ float: left;
+ position: relative;
+}
+
+div#widgets-left .inactive-sidebar .widgets-sortables {
+ min-height: 42px;
+ padding: 0;
+ background: transparent;
+ margin: 0;
+ position: relative;
+}
+
+/* Widgets Right */
+
+div#widgets-right:after {
+ content: ".";
+ display: block;
+ height: 0;
+ clear: both;
+ visibility: hidden;
+}
+
+div#widgets-right .sidebars-column-1,
+div#widgets-right .sidebars-column-2 {
+ max-width: 450px;
+}
+
+div#widgets-right .widgets-holder-wrap {
+ margin: 10px 0 0 0;
+}
+
+div#widgets-right .sidebar-description {
+ min-height: 20px;
+ margin-top: -5px;
+}
+
+div#widgets-right .sidebar-name h3 {
+ padding: 15px 7px;
+}
+
+div#widgets-right .sidebar-name .sidebar-name-arrow:before {
+ left: 0;
+ top: 4px;
+}
+
+div#widgets-right .widget-top {
+ padding: 0;
+}
+
+div#widgets-right .widgets-sortables {
+ padding: 0 8px;
+ margin-bottom: 9px;
+ position: relative;
+ min-height: 123px;
+}
+
+div#widgets-right .closed .widgets-sortables {
+ min-height: 0;
+ margin-bottom: 0;
+}
+
+.sidebar-name .spinner {
+ margin: -5px 5px;
+ float: none;
+}
+
+/* Dragging a widget over a closed sidebar */
+#widgets-right .widgets-holder-wrap.widget-hover {
+ border-color: #777;
+ -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.3);
+ box-shadow: 0 1px 2px rgba(0,0,0,0.3);
+}
+
+/* Accessibility Mode */
+.widgets_access #widgets-left .widget .widget-top {
+ cursor: auto;
+}
+
+.widgets_access #wpwrap .widgets-holder-wrap.closed .sidebar-description,
+.widgets_access #wpwrap .widgets-holder-wrap.closed .widget,
+.widgets_access #wpwrap .widget-control-edit {
+ display: block;
+}
+
+.widgets_access #widgets-left .widget .widget-top:hover,
+.widgets_access #widgets-right .widget .widget-top:hover {
+ border-color: #ddd;
+}
+
+#available-widgets .widget-control-edit .edit,
+#widgets-left .inactive-sidebar .widget-control-edit .add,
+#widgets-right .widget-control-edit .add {
+ display: none;
+}
+
+.widget-control-edit {
+ display: block;
+ color: #666;
+ background: #EEE;
+ padding: 0 15px;
+ line-height: 43px;
+ border-right: 1px solid #DDD;
+}
+
+#widgets-left .widget-control-edit:hover,
+#widgets-right .widget-control-edit:hover {
+ color: #fff;
+ background: #444;
+ border-right: 0;
+ outline: 1px solid #444;
+}
+
+.widgets-holder-wrap .sidebar-name,
+.widgets-holder-wrap .sidebar-description {
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
+
+.editwidget {
+ margin: 0 auto;
+}
+
+.editwidget .widget-inside {
+ display: block;
+ padding: 0 15px;
+}
+
+.editwidget .widget-control-actions {
+ margin-top: 20px;
+}
+
+.js .widgets-holder-wrap.closed .widget,
+.js .widgets-holder-wrap.closed .sidebar-description,
+.js .closed br.clear {
+ display: none;
+}
+
+/* Hide Widget Settings by Default */
+.widget-inside,
+.widget-description {
+ display: none;
+}
+
+.widget-inside {
+ background: #fff;
+}
+
+/* Dragging widgets over the available widget area show's a "Deactivate" message */
+#removing-widget {
+ display: none;
+ font-weight: normal;
+ padding-right: 15px;
+ font-size: 12px;
+ line-height: 1;
+ color: black;
+}
+
+.js #removing-widget {
+ color: #2ea2cc;
+}
+
+.widget-control-noform,
+#access-off,
+.widgets_access .widget-action,
+.widgets_access .sidebar-name-arrow,
+.widgets_access #access-on,
+.widgets_access .widget-holder .description,
+.no-js .widget-holder .description {
+ display: none;
+}
+
+.widgets_access .widget-holder,
+.widgets_access #widget-list {
+ padding-top: 10px;
+}
+
+.widgets_access #access-off {
+ display: inline;
+}
+
+.widgets_access .sidebar-name,
+.widgets_access .widget .widget-top {
+ cursor: default;
+}
+
+
+/* Widgets Area Chooser */
+.widget-liquid-left #widgets-left.chooser #available-widgets .widget,
+.widget-liquid-left #widgets-left.chooser .inactive-sidebar {
+ -webkit-transition: opacity 0.1s linear;
+ transition: opacity 0.1s linear;
+}
+
+.widget-liquid-left #widgets-left.chooser #available-widgets .widget,
+.widget-liquid-left #widgets-left.chooser .inactive-sidebar {
+ /* -webkit-filter: blur(1px); */
+ opacity: 0.2;
+ pointer-events: none;
+}
+
+.widget-liquid-left #widgets-left.chooser #available-widgets .widget-in-question {
+ /* -webkit-filter: none; */
+ opacity: 1;
+ pointer-events: auto;
+}
+
+.widgets-chooser ul,
+#widgets-left .widget-in-question .widget-top,
+#available-widgets .widget-top:hover,
+div#widgets-right .widget-top:hover,
+#widgets-left .widget-top:hover {
+ border-color: #999;
+ -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.1);
+ box-shadow: 0 1px 2px rgba(0,0,0,0.1);
+}
+
+.widgets-chooser ul.widgets-chooser-sidebars {
+ margin: 0;
+ list-style-type: none;
+ max-height: 300px;
+ overflow: auto;
+}
+
+.widgets-chooser {
+ display: none;
+}
+
+.widgets-chooser ul {
+ border: 1px solid #ccc;
+}
+
+.widgets-chooser li {
+ padding: 10px 35px 10px 15px;
+ border-bottom: 1px solid #ccc;
+ background: #fff;
+ margin: 0;
+ cursor: pointer;
+ outline: none;
+ position: relative;
+ -webkit-transition: background 0.2s ease-in-out;
+ transition: background 0.2s ease-in-out;
+}
+
+.widgets-chooser li:hover,
+.widgets-chooser li:focus {
+ background: rgba(255,255,255,0.7);
+}
+
+.widgets-chooser li:focus:before {
+ content: '\f147';
+ display: block;
+ -webkit-font-smoothing: antialiased;
+ font: normal 26px/1 'dashicons';
+ color: #999;
+ position: absolute;
+ top: 7px;
+ right: 5px;
+}
+
+.widgets-chooser li:last-child {
+ border: none;
+}
+
+.widgets-chooser li.widgets-chooser-selected {
+ background: #2ea2cc;
+ color: #fff;
+}
+
+.widgets-chooser li.widgets-chooser-selected:before,
+.widgets-chooser li.widgets-chooser-selected:focus:before {
+ content: '\f147';
+ display: block;
+ -webkit-font-smoothing: antialiased;
+ font: normal 26px/1 'dashicons';
+ color: #fff;
+ position: absolute;
+ top: 7px;
+ right: 5px;
+}
+
+.widgets-chooser .widgets-chooser-actions {
+ padding: 10px 0 12px 0;
+ text-align: center;
+}
+
+.widgets-chooser button {
+ margin-left: 5px;
+}
+
+#available-widgets .widget .widget-top {
+ cursor: pointer;
+}
+
+/* =Media Queries
+-------------------------------------------------------------- */
+
+@media screen and (max-width: 480px) {
+ div.widget-liquid-left {
+ width: 100%;
+ float: none;
+ border-left: none;
+ padding-left: 0;
+ }
+
+ #widgets-left .sidebar-name {
+ margin-left: 0;
+ }
+
+ #widgets-left #available-widgets .widget-top {
+ margin-left: 0;
+ }
+
+ #widgets-left .inactive-sidebar .widgets-sortables {
+ margin-left: 0;
+ }
+
+ div.widget-liquid-right {
+ width: 100%;
+ float: none;
+ }
+
+ div.widget {
+ margin: 0 auto 10px !important;
+ max-width: 480px;
+ }
+}
+
+@media screen and (max-width: 320px) {
+ div.widget {
+ max-width: 320px;
+ }
+}
+
+@media only screen and (min-width: 1250px) {
+ #widgets-left #available-widgets .widget {
+ width: 49%;
+ float: right;
+ }
+
+ .widget.ui-draggable-dragging {
+ min-width: 49%;
+ }
+
+ #widgets-left #available-widgets .widget:nth-child(even) {
+ float: left;
+ }
+
+ #widgets-right .sidebars-column-1,
+ #widgets-right .sidebars-column-2 {
+ float: right;
+ width: 49%;
+ }
+
+ #widgets-right .sidebars-column-1 {
+ margin-left: 2%;
+ }
+
+ #widgets-right.single-sidebar .sidebars-column-1,
+ #widgets-right.single-sidebar .sidebars-column-2 {
+ float: none;
+ width: 100%;
+ margin: 0;
+ }
+}
diff --git a/sources/wp-admin/css/widgets.css b/sources/wp-admin/css/widgets.css
new file mode 100644
index 0000000..75014f6
--- /dev/null
+++ b/sources/wp-admin/css/widgets.css
@@ -0,0 +1,574 @@
+/* General Widgets Styles */
+
+.widget {
+ margin: 0 auto 10px;
+ position: relative;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}
+
+.widget-top {
+ font-size: 13px;
+ font-weight: 600;
+ background: #f7f7f7;
+}
+
+.widget-top a.widget-action,
+.widget-top a.widget-action:hover {
+ text-decoration: none;
+}
+
+.widget-title h4 {
+ margin: 0;
+ padding: 15px;
+ line-height: 1;
+ overflow: hidden;
+ white-space: nowrap;
+ text-overflow: ellipsis;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
+
+.widgets-holder-wrap .widget-inside {
+ border-top: none;
+ padding: 1px 15px 15px 15px;
+ line-height: 16px;
+}
+
+.in-widget-title,
+#widgets-right a.widget-control-edit,
+#available-widgets .widget-description {
+ color: #666;
+}
+
+.deleting .widget-title,
+.deleting .widget-top a.widget-action:after {
+ color: #aaa;
+}
+
+/* Widget Dragging Helpers */
+.widget.ui-draggable-dragging {
+ min-width: 100%;
+}
+
+.widget.ui-sortable-helper {
+ opacity: 0.8;
+}
+
+.widget-placeholder {
+ border: 1px dashed #bbb;
+ margin: 0 auto 10px;
+ height: 45px;
+ width: 100%;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}
+
+#widgets-right .widget-placeholder {
+ margin-top: 0;
+}
+
+#widgets-right .closed .widget-placeholder {
+ height: 0;
+ border: 0;
+ margin-top: -10px;
+}
+
+/* Widget Sidebars */
+.sidebar-name {
+ position: relative;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}
+
+.sidebar-name-arrow {
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+}
+
+.js .sidebar-name {
+ cursor: pointer;
+}
+
+.sidebar-name h3 {
+ margin: 0;
+ padding: 8px 10px;
+ overflow: hidden;
+ white-space: nowrap;
+}
+
+.widgets-holder-wrap .description {
+ padding: 0 0 15px;
+ margin: 0;
+ font-style: normal;
+ color: #777;
+}
+
+#widgets-right .widgets-holder-wrap .description {
+ padding-left: 7px;
+ padding-right: 7px;
+}
+
+/* Widgets 2-col Layout */
+div.widget-liquid-left {
+ margin: 0;
+ width: 38%;
+ float: left;
+}
+
+div.widget-liquid-right {
+ float: right;
+ width: 58%;
+}
+
+/* Widgets Left - Available Widgets */
+
+div#widgets-left {
+ padding-top: 12px;
+}
+
+div#widgets-left .closed .sidebar-name,
+div#widgets-left .inactive-sidebar.closed .sidebar-name {
+ margin-bottom: 10px;
+}
+
+div#widgets-left .sidebar-name h3 {
+ padding: 10px 0;
+ margin: 0 10px 0 0;
+}
+
+div#widgets-left .sidebar-name .sidebar-name-arrow:before {
+ right: 0;
+ top: 4px;
+ padding: 4px 6px 4px 4px;
+}
+
+#widgets-left #available-widgets,
+div#widgets-left .widget-holder {
+ background: transparent;
+ border: none;
+}
+
+#widgets-left .widgets-holder-wrap {
+ border: none;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+#available-widgets .widget-action {
+ display: none;
+}
+
+#available-widgets .widget {
+ margin: 0;
+}
+
+#available-widgets .widget:nth-child(odd) {
+ clear: both;
+}
+
+#available-widgets .widget .widget-description {
+ display: block;
+ padding: 10px 15px;
+ font-size: 12px;
+}
+
+#available-widgets #widget-list {
+ position: relative;
+}
+
+/* Inactive Sidebars */
+#widgets-left .inactive-sidebar {
+ clear: both;
+ width: 100%;
+ background: transparent;
+ padding: 0;
+ margin: 0 0 20px 0;
+ border: none;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+#widgets-left .inactive-sidebar.first {
+ margin-top: 40px;
+}
+
+/* Not sure what this is for... */
+div#widgets-left .inactive-sidebar .widget.expanded {
+ left: auto;
+}
+
+.widget-title-action {
+ float: right;
+ position: relative;
+}
+
+div#widgets-left .inactive-sidebar .widgets-sortables {
+ min-height: 42px;
+ padding: 0;
+ background: transparent;
+ margin: 0;
+ position: relative;
+}
+
+/* Widgets Right */
+
+div#widgets-right:after {
+ content: ".";
+ display: block;
+ height: 0;
+ clear: both;
+ visibility: hidden;
+}
+
+div#widgets-right .sidebars-column-1,
+div#widgets-right .sidebars-column-2 {
+ max-width: 450px;
+}
+
+div#widgets-right .widgets-holder-wrap {
+ margin: 10px 0 0 0;
+}
+
+div#widgets-right .sidebar-description {
+ min-height: 20px;
+ margin-top: -5px;
+}
+
+div#widgets-right .sidebar-name h3 {
+ padding: 15px 7px;
+}
+
+div#widgets-right .sidebar-name .sidebar-name-arrow:before {
+ right: 0;
+ top: 4px;
+}
+
+div#widgets-right .widget-top {
+ padding: 0;
+}
+
+div#widgets-right .widgets-sortables {
+ padding: 0 8px;
+ margin-bottom: 9px;
+ position: relative;
+ min-height: 123px;
+}
+
+div#widgets-right .closed .widgets-sortables {
+ min-height: 0;
+ margin-bottom: 0;
+}
+
+.sidebar-name .spinner {
+ margin: -5px 5px;
+ float: none;
+}
+
+/* Dragging a widget over a closed sidebar */
+#widgets-right .widgets-holder-wrap.widget-hover {
+ border-color: #777;
+ -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.3);
+ box-shadow: 0 1px 2px rgba(0,0,0,0.3);
+}
+
+/* Accessibility Mode */
+.widgets_access #widgets-left .widget .widget-top {
+ cursor: auto;
+}
+
+.widgets_access #wpwrap .widgets-holder-wrap.closed .sidebar-description,
+.widgets_access #wpwrap .widgets-holder-wrap.closed .widget,
+.widgets_access #wpwrap .widget-control-edit {
+ display: block;
+}
+
+.widgets_access #widgets-left .widget .widget-top:hover,
+.widgets_access #widgets-right .widget .widget-top:hover {
+ border-color: #ddd;
+}
+
+#available-widgets .widget-control-edit .edit,
+#widgets-left .inactive-sidebar .widget-control-edit .add,
+#widgets-right .widget-control-edit .add {
+ display: none;
+}
+
+.widget-control-edit {
+ display: block;
+ color: #666;
+ background: #EEE;
+ padding: 0 15px;
+ line-height: 43px;
+ border-left: 1px solid #DDD;
+}
+
+#widgets-left .widget-control-edit:hover,
+#widgets-right .widget-control-edit:hover {
+ color: #fff;
+ background: #444;
+ border-left: 0;
+ outline: 1px solid #444;
+}
+
+.widgets-holder-wrap .sidebar-name,
+.widgets-holder-wrap .sidebar-description {
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
+
+.editwidget {
+ margin: 0 auto;
+}
+
+.editwidget .widget-inside {
+ display: block;
+ padding: 0 15px;
+}
+
+.editwidget .widget-control-actions {
+ margin-top: 20px;
+}
+
+.js .widgets-holder-wrap.closed .widget,
+.js .widgets-holder-wrap.closed .sidebar-description,
+.js .closed br.clear {
+ display: none;
+}
+
+/* Hide Widget Settings by Default */
+.widget-inside,
+.widget-description {
+ display: none;
+}
+
+.widget-inside {
+ background: #fff;
+}
+
+/* Dragging widgets over the available widget area show's a "Deactivate" message */
+#removing-widget {
+ display: none;
+ font-weight: normal;
+ padding-left: 15px;
+ font-size: 12px;
+ line-height: 1;
+ color: black;
+}
+
+.js #removing-widget {
+ color: #2ea2cc;
+}
+
+.widget-control-noform,
+#access-off,
+.widgets_access .widget-action,
+.widgets_access .sidebar-name-arrow,
+.widgets_access #access-on,
+.widgets_access .widget-holder .description,
+.no-js .widget-holder .description {
+ display: none;
+}
+
+.widgets_access .widget-holder,
+.widgets_access #widget-list {
+ padding-top: 10px;
+}
+
+.widgets_access #access-off {
+ display: inline;
+}
+
+.widgets_access .sidebar-name,
+.widgets_access .widget .widget-top {
+ cursor: default;
+}
+
+
+/* Widgets Area Chooser */
+.widget-liquid-left #widgets-left.chooser #available-widgets .widget,
+.widget-liquid-left #widgets-left.chooser .inactive-sidebar {
+ -webkit-transition: opacity 0.1s linear;
+ transition: opacity 0.1s linear;
+}
+
+.widget-liquid-left #widgets-left.chooser #available-widgets .widget,
+.widget-liquid-left #widgets-left.chooser .inactive-sidebar {
+ /* -webkit-filter: blur(1px); */
+ opacity: 0.2;
+ pointer-events: none;
+}
+
+.widget-liquid-left #widgets-left.chooser #available-widgets .widget-in-question {
+ /* -webkit-filter: none; */
+ opacity: 1;
+ pointer-events: auto;
+}
+
+.widgets-chooser ul,
+#widgets-left .widget-in-question .widget-top,
+#available-widgets .widget-top:hover,
+div#widgets-right .widget-top:hover,
+#widgets-left .widget-top:hover {
+ border-color: #999;
+ -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.1);
+ box-shadow: 0 1px 2px rgba(0,0,0,0.1);
+}
+
+.widgets-chooser ul.widgets-chooser-sidebars {
+ margin: 0;
+ list-style-type: none;
+ max-height: 300px;
+ overflow: auto;
+}
+
+.widgets-chooser {
+ display: none;
+}
+
+.widgets-chooser ul {
+ border: 1px solid #ccc;
+}
+
+.widgets-chooser li {
+ padding: 10px 15px 10px 35px;
+ border-bottom: 1px solid #ccc;
+ background: #fff;
+ margin: 0;
+ cursor: pointer;
+ outline: none;
+ position: relative;
+ -webkit-transition: background 0.2s ease-in-out;
+ transition: background 0.2s ease-in-out;
+}
+
+.widgets-chooser li:hover,
+.widgets-chooser li:focus {
+ background: rgba(255,255,255,0.7);
+}
+
+.widgets-chooser li:focus:before {
+ content: '\f147';
+ display: block;
+ -webkit-font-smoothing: antialiased;
+ font: normal 26px/1 'dashicons';
+ color: #999;
+ position: absolute;
+ top: 7px;
+ left: 5px;
+}
+
+.widgets-chooser li:last-child {
+ border: none;
+}
+
+.widgets-chooser li.widgets-chooser-selected {
+ background: #2ea2cc;
+ color: #fff;
+}
+
+.widgets-chooser li.widgets-chooser-selected:before,
+.widgets-chooser li.widgets-chooser-selected:focus:before {
+ content: '\f147';
+ display: block;
+ -webkit-font-smoothing: antialiased;
+ font: normal 26px/1 'dashicons';
+ color: #fff;
+ position: absolute;
+ top: 7px;
+ left: 5px;
+}
+
+.widgets-chooser .widgets-chooser-actions {
+ padding: 10px 0 12px 0;
+ text-align: center;
+}
+
+.widgets-chooser button {
+ margin-right: 5px;
+}
+
+#available-widgets .widget .widget-top {
+ cursor: pointer;
+}
+
+/* =Media Queries
+-------------------------------------------------------------- */
+
+@media screen and (max-width: 480px) {
+ div.widget-liquid-left {
+ width: 100%;
+ float: none;
+ border-right: none;
+ padding-right: 0;
+ }
+
+ #widgets-left .sidebar-name {
+ margin-right: 0;
+ }
+
+ #widgets-left #available-widgets .widget-top {
+ margin-right: 0;
+ }
+
+ #widgets-left .inactive-sidebar .widgets-sortables {
+ margin-right: 0;
+ }
+
+ div.widget-liquid-right {
+ width: 100%;
+ float: none;
+ }
+
+ div.widget {
+ margin: 0 auto 10px !important;
+ max-width: 480px;
+ }
+}
+
+@media screen and (max-width: 320px) {
+ div.widget {
+ max-width: 320px;
+ }
+}
+
+@media only screen and (min-width: 1250px) {
+ #widgets-left #available-widgets .widget {
+ width: 49%;
+ float: left;
+ }
+
+ .widget.ui-draggable-dragging {
+ min-width: 49%;
+ }
+
+ #widgets-left #available-widgets .widget:nth-child(even) {
+ float: right;
+ }
+
+ #widgets-right .sidebars-column-1,
+ #widgets-right .sidebars-column-2 {
+ float: left;
+ width: 49%;
+ }
+
+ #widgets-right .sidebars-column-1 {
+ margin-right: 2%;
+ }
+
+ #widgets-right.single-sidebar .sidebars-column-1,
+ #widgets-right.single-sidebar .sidebars-column-2 {
+ float: none;
+ width: 100%;
+ margin: 0;
+ }
+}
diff --git a/sources/wp-admin/css/wp-admin-rtl.css b/sources/wp-admin/css/wp-admin-rtl.css
index 5221a04..c45d5b1 100644
--- a/sources/wp-admin/css/wp-admin-rtl.css
+++ b/sources/wp-admin/css/wp-admin-rtl.css
@@ -1,2895 +1,14 @@
-/*------------------------------------------------------------------------------
-
-
-Hello, this is the RTL version of the main WordPress admin CSS file.
-All the important stuff is in here.
-
-
-TABLE OF CONTENTS:
-------------------
- 1.0 - Text Elements
- 2.0 - Forms
- 3.0 - Actions
- 4.0 - Notifications
- 5.0 - TinyMCE
- 6.0 - Admin Header
- 6.1 - Screen Options Tabs
- 7.0 - Main Navigation
- 8.0 - Layout Blocks
- 9.0 - Dashboard
-10.0 - List Posts
- 10.1 - Inline Editing
-11.0 - Write/Edit Post Screen
- 11.1 - Custom Fields
- 11.2 - Post Revisions
- 11.3 - Featured Images
- 11.4 - Post formats
-12.0 - Categories
-13.0 - Tags
-14.0 - Media Screen
- 14.1 - Media Uploader
- 14.2 - Image Editor
-15.0 - Comments Screen
-16.0 - Themes
- 16.1 - Custom Header
- 16.2 - Custom Background
- 16.3 - Tabbed Admin Screen Interface
-17.0 - Plugins
-18.0 - Users
-19.0 - Tools
-20.0 - Settings
-21.0 - Admin Footer
-22.0 - About Pages
-23.0 - Misc
-24.0 - Dead
-25.0 - TinyMCE tweaks
-26.0 - Full Overlay w/ Sidebar
-27.0 - Customize Loader
-28.0 - Nav Menus
-29.0 - HiDPI
-
-
-------------------------------------------------------------------------------*/
-
-
-/*------------------------------------------------------------------------------
- 1.0 - Text Styles
-------------------------------------------------------------------------------*/
-
-ol {
- margin-left: 0;
- margin-right: 2em;
-}
-
-.code, code {
- font-family: monospace;
- direction: ltr;
-}
-
-.quicktags, .search {
- font: 12px Tahoma, Arial, sans-serif;
-}
-
-.icon32 {
- float: right;
- margin-right: 0;
- margin-left: 8px;
-}
-
-.icon16 {
- float: right;
- margin-right: -8px;
- margin-left: 0;
-}
-
-.howto {
- font-style: normal;
- font-family: Tahoma, Arial, sans-serif;
-}
-
-p.install-help {
- font-style: normal;
-}
-
-
-/*------------------------------------------------------------------------------
- 2.0 - Forms
-------------------------------------------------------------------------------*/
-
-#doaction,
-#doaction2,
-#post-query-submit {
- margin-right: 0;
- margin-left: 8px;
-}
-
-#timezone_string option {
- margin-left: 0;
- margin-right: 1em;
-}
-
-#pass-strength-result {
- float: right;
- margin: 13px 1px 5px 5px;
-}
-
-p.search-box {
- float: left;
-}
-
-.search-box input[name="s"],
-#search-plugins input[name="s"],
-.tagsdiv .newtag {
- float: right;
- margin-right: 0;
- margin-left: 4px;
-}
-
-input[type=password] {
- direction: ltr;
-}
-
-input[type="text"].ui-autocomplete-loading {
- background: transparent url('../images/loading.gif') no-repeat left center;
-}
-
-ul#add-to-blog-users {
- margin: 0 14px 0 0;
-}
-
-.ui-autocomplete li {
- text-align: right;
-}
-
-/*------------------------------------------------------------------------------
- 3.0 - Actions
-------------------------------------------------------------------------------*/
-
-#delete-action {
- float: right;
-}
-
-#publishing-action {
- float: left;
- text-align: left;
-}
-
-#publishing-action .spinner {
- float: right;
-}
-
-#post-body .misc-pub-section {
- border-right: 0;
- border-left-width: 1px;
- border-left-style: solid;
-}
-
-#post-body .misc-pub-section-last {
- border-left: 0;
-}
-
-#minor-publishing-actions {
- padding: 10px 8px 2px 10px;
- text-align: left;
-}
-
-#save-post {
- float: right;
-}
-
-.preview {
- float: left;
-}
-
-#sticky-span {
- margin-left: 0;
- margin-right: 18px;
-}
-
-.side-info ul {
- padding-left: 0;
- padding-right: 18px;
-}
-
-td.action-links,
-th.action-links {
- text-align: left;
-}
-
-
-/*------------------------------------------------------------------------------
- 4.0 - Notifications
-------------------------------------------------------------------------------*/
-
-form.upgrade .hint {
- font-style: normal;
-}
-
-#ajax-response.alignleft {
- margin-left: 0;
- margin-right: 2em;
-}
-
-
-/*------------------------------------------------------------------------------
- 5.0 - TinyMCE
-------------------------------------------------------------------------------*/
-
-#quicktags {
- background-position: right top;
-}
-
-#ed_reply_toolbar input {
- margin: 1px 1px 1px 2px;
-}
-
-/*------------------------------------------------------------------------------
- 6.0 - Admin Header
-------------------------------------------------------------------------------*/
-#wphead {
- height: 32px;
- margin-left: 15px;
- margin-right: 2px;
-}
-
-#header-logo {
- float: right;
-}
-
-#wphead h1 {
- float: right;
-}
-
-/*------------------------------------------------------------------------------
- 6.1 - Screen Options Tabs
-------------------------------------------------------------------------------*/
-
-#screen-meta-links {
- margin-right: 0;
- margin-left: 24px;
-}
-
-#screen-meta {
- margin-right: 5px;
- margin-left: 15px;
-}
-
-#screen-options-link-wrap,
-#contextual-help-link-wrap {
- float: left;
- margin-left: 0;
- margin-right: 6px;
-}
-
-#screen-meta-links a.show-settings {
- padding-right: 6px;
- padding-left: 16px;
-}
-
-.toggle-arrow {
- background-position: top right;
-}
-.toggle-arrow-active {
- background-position: bottom right;
-}
-
-.metabox-prefs label {
- padding-right: 0;
- padding-left: 15px;
-}
-
-.metabox-prefs label input {
- margin-right: 2px;
- margin-left: 5px;
-}
-
-/*------------------------------------------------------------------------------
- 6.2 - Help Menu
-------------------------------------------------------------------------------*/
-
-#contextual-help-wrap {
- margin-left: 0;
- margin-right: -4px;
-}
-
-#contextual-help-back {
- left: 170px;
- right: 150px;
-}
-
-#contextual-help-wrap.no-sidebar #contextual-help-back {
- left: 0;
- right: 150px;
-
- border-right-width: 1px;
- border-left-width: 0;
- -webkit-border-bottom-right-radius: 0;
- border-bottom-right-radius: 0;
- -webkit-border-bottom-left-radius: 2px;
- border-bottom-left-radius: 2px;
-}
-
-.contextual-help-tabs {
- float: right;
-}
-
-.contextual-help-tabs a {
- padding-left: 5px;
- padding-right: 12px;
-}
-
-.contextual-help-tabs .active {
- margin-right: 0;
- margin-left: -1px;
-}
-
-.contextual-help-tabs .active,
-.contextual-help-tabs-wrap {
- border-left: 0;
- border-right-width: 1px;
-}
-
-.help-tab-content {
- margin-right: 0;
- margin-left: 22px;
-}
-
-.help-tab-content li {
- margin-left: 0;
- margin-right: 18px;
-}
-
-.contextual-help-sidebar {
- float: left;
- padding-right: 12px;
- padding-left: 8px;
-}
-
-/*------------------------------------------------------------------------------
- 7.0 - Main Navigation (Right Menu) (RTL: Left Menu)
-------------------------------------------------------------------------------*/
-
-.folded #wpcontent {
- margin-left: 0;
- margin-right: 52px;
-}
-
-.folded.wp-admin #wpfooter {
- margin-left: 15px;
- margin-right: 52px;
-}
-
-#adminmenuback,
-#adminmenuwrap {
- border-width: 0 0 0 1px;
-}
-
-#adminmenushadow {
- right: auto;
- left: 0;
-}
-
-#adminmenu li .wp-submenu {
- left: auto;
- right: 146px;
-}
-
-
-.folded #adminmenu .wp-submenu.sub-open,
-.folded #adminmenu .opensub .wp-submenu,
-.folded #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,
-.folded #adminmenu .wp-has-current-submenu.opensub .wp-submenu,
-.folded #adminmenu a.menu-top:focus + .wp-submenu,
-.folded #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu,
-.no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu {
- left: auto;
- right: 32px;
-}
-
-#adminmenu div.wp-menu-image,
-.folded #adminmenu div.wp-menu-image {
- float: right;
- width: 30px;
-}
-
-#adminmenu .wp-submenu a,
-#adminmenu li li a,
-.folded #adminmenu .wp-not-current-submenu li a {
- padding-left: 0;
- padding-right: 12px;
-}
-
-#adminmenu .wp-not-current-submenu li a {
- padding-left: 0;
- padding-right: 18px;
-}
-
-.wp-menu-arrow {
- right: 0;
-
- -moz-transform: translate( -139px );
- -webkit-transform: translate( -139px );
- -o-transform: translate( -139px );
- -ms-transform: translate( -139px );
- transform: translate( -139px );
-}
-
-.ie8 .wp-menu-arrow {
- right: -20px;
-}
-
-#adminmenu .wp-menu-arrow div {
- left: -8px;
- width: 16px;
-}
-
-#adminmenu li.wp-not-current-submenu .wp-menu-arrow {
- -moz-transform: translate( -138px );
- -webkit-transform: translate( -138px );
- -o-transform: translate( -138px );
- -ms-transform: translate( -138px );
- transform: translate( -138px );
-}
-
-.folded #adminmenu li .wp-menu-arrow {
- -moz-transform: translate( -26px );
- -webkit-transform: translate( -26px );
- -o-transform: translate( -26px );
- -ms-transform: translate( -26px );
- transform: translate( -26px );
-}
-
-#adminmenu .wp-not-current-submenu .wp-menu-arrow div {
- border-style: solid solid none none;
- border-width: 1px 1px 0 0;
-}
-
-#adminmenu .wp-menu-image img {
- padding: 7px 7px 0 0;
-}
-
-#adminmenu .wp-submenu .wp-submenu-head {
- padding: 5px 10px 5px 4px;
- -webkit-border-top-right-radius: 0;
- -webkit-border-top-left-radius: 3px;
- border-top-right-radius: 0;
- border-top-left-radius: 3px;
-}
-
-.folded #adminmenu li.wp-has-current-submenu .wp-submenu {
- border-width: 1px;
- border-style: solid;
- -webkit-border-bottom-right-radius: 0;
- -webkit-border-bottom-left-radius: 3px;
- -webkit-border-top-right-radius: 0;
- -webkit-border-top-left-radius: 3px;
- border-bottom-right-radius: 0;
- border-bottom-left-radius: 3px;
- border-top-right-radius: 0;
- border-top-left-radius: 3px;
-}
-
-#adminmenu .awaiting-mod,
-#adminmenu span.update-plugins,
-#sidemenu li a span.update-plugins {
- font-family: Tahoma, Arial, sans-serif;
- margin-left: 0;
- margin-right: 7px;
-}
-
-#collapse-button {
- float: right;
-}
-
-/* Auto-folding of the admin menu */
-@media only screen and (max-width: 900px) {
- .auto-fold #wpcontent {
- margin-left: 0;
- margin-right: 52px;
- }
-
- .auto-fold.wp-admin #wpfooter {
- margin-left: 15px;
- margin-right: 52px;
- }
-
- .auto-fold #adminmenu div.wp-menu-image {
- float: right;
- width: 30px;
- }
-
- .auto-fold #adminmenu .wp-submenu.sub-open,
- .auto-fold #adminmenu .opensub .wp-submenu,
- .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,
- .auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu,
- .auto-fold #adminmenu a.menu-top:focus + .wp-submenu,
- .auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu,
- .no-js.auto-fold #adminmenu .wp-has-submenu:hover .wp-submenu {
- left: auto;
- right: 32px;
- }
-
- .auto-fold #adminmenu .wp-not-current-submenu li a {
- padding-left: 0;
- padding-right: 12px;
- }
-
- .auto-fold #adminmenu li .wp-menu-arrow {
- -moz-transform: translate( -27px );
- -webkit-transform: translate( -27px );
- -o-transform: translate( -27px );
- -ms-transform: translate( -27px );
- transform: translate( -27px );
- }
-
- .auto-fold #adminmenu li.wp-has-current-submenu .wp-submenu {
- border-width: 1px;
- border-style: solid;
- -webkit-border-bottom-right-radius: 0;
- -webkit-border-bottom-left-radius: 3px;
- -webkit-border-top-right-radius: 0;
- -webkit-border-top-left-radius: 3px;
- border-bottom-right-radius: 0;
- border-bottom-left-radius: 3px;
- border-top-right-radius: 0;
- border-top-left-radius: 3px;
- }
-}
-
-/* List table styles */
-.post-com-count-wrapper {
- font-family: Tahoma, Arial, sans-serif;
-}
-
-.post-com-count {
- background-image: url('../images/bubble_bg-rtl.gif');
-}
-
-.column-response .post-com-count {
- float: right;
- margin-right: 0;
- margin-left: 5px;
-}
-
-.response-links {
- float: right;
-}
-
-
-/*------------------------------------------------------------------------------
- 8.0 - Layout Blocks
-------------------------------------------------------------------------------*/
-
-.widefat th {
- font-family: Tahoma, Arial, sans-serif;
-}
-
-.postbox-container {
- float: right;
-}
-
-#post-body-content {
- float: right;
-}
-
-#poststuff #post-body.columns-2 {
- margin-left: 300px;
- margin-right: 0;
-}
-
-#post-body.columns-2 #postbox-container-1 {
- float: left;
- margin-left: -300px;
- margin-right: 0;
-}
-
-@media only screen and (max-width: 850px) {
- #wpbody-content #post-body.columns-2 #postbox-container-1 {
- margin-left: 0;
- }
-}
-
-.postbox .handlediv {
- float: left;
-}
-
-/*------------------------------------------------------------------------------
- 9.0 - Dashboard
-------------------------------------------------------------------------------*/
-
-#the-comment-list p.comment-author img {
- float: right;
- margin-right: 0;
- margin-left: 8px;
-}
-
-/* Browser Nag */
-#dashboard_browser_nag p.browser-update-nag.has-browser-icon {
- padding-right: 0;
- padding-left: 125px;
-}
-
-/* Welcome Panel */
-.welcome-panel .welcome-panel-close {
- right: auto;
- left: 10px;
-}
-
-.welcome-panel .welcome-panel-close:before {
- left: auto;
- right: -12px;
-}
-
-.welcome-panel-content {
- margin-left: 0;
- margin-right: 13px;
-}
-
-.welcome-panel .welcome-panel-column {
- float: right;
-}
-
-.welcome-panel .welcome-panel-column ul {
- margin-right: 0;
- margin-left: 1em;
-}
-
-.welcome-panel .welcome-panel-column li {
- padding-left: 0;
- padding-right: 2px;
-}
-
-.welcome-panel .welcome-add-page {
- background-position: right 2px;
-}
-
-.welcome-panel .welcome-edit-page {
- background-position: right -90px;
-}
-
-.welcome-panel .welcome-learn-more {
- background-position: right -136px;
-}
-
-.welcome-panel .welcome-comments {
- background-position: right -182px;
-}
-
-.welcome-panel .welcome-view-site {
- background-position: right -274px;
-}
-
-.welcome-panel .welcome-widgets-menus {
- background-position: right -229px;
- line-height: 14px;
-}
-
-.welcome-panel .welcome-write-blog {
- background-position: right -44px;
-}
-
-.welcome-panel .welcome-icon {
- padding: 2px 32px 8px 0;
-}
-
-@media screen and (max-width: 870px) {
- .welcome-panel .welcome-panel-column li {
- margin-right: 0;
- margin-left: 13px;
- }
-
- .welcome-panel .welcome-icon {
- padding-right: 25px;
- padding-left: 0;
- }
-}
-
-/*------------------------------------------------------------------------------
- 10.0 - List Posts (/Pages/etc)
-------------------------------------------------------------------------------*/
-
-.fixed .column-comments {
- text-align: right;
-}
-
-.fixed .column-comments .vers {
- padding-left: 0;
- padding-right: 3px;
-}
-
-.fixed .column-comments a {
- float: right;
-}
-
-.fixed .column-menus {
- text-align: right;
-}
-
-.sorting-indicator {
- margin-left: 0;
- margin-right: 7px;
-}
-
-tr.wp-locked .locked-indicator {
- margin: -2px 6px 0 0;
-}
-
-th.sortable a span,
-th.sorted a span {
- float: right;
-}
-
-/* Bulk Actions */
-
-.tablenav-pages a {
- margin-right: 0;
- margin-left: 1px;
-}
-.tablenav-pages .next-page {
- margin-left: 0;
- margin-right: 2px;
-}
-
-.tablenav a.button-secondary {
- margin: 3px 0 0 8px;
-}
-
-.tablenav .tablenav-pages {
- float: left;
-}
-
-.tablenav .displaying-num {
- margin-right: 0;
- margin-left: 10px;
- font-family: Tahoma, Arial, sans-serif;
- font-style: normal;
-}
-
-.tablenav .actions {
- padding: 2px 0 0 8px;
-}
-
-.tablenav .actions select {
- float: right;
- margin-right: 0;
- margin-left: 6px;
-}
-
-.tablenav .delete {
- margin-right: 0;
- margin-left: 20px;
-}
-
-.view-switch {
- float: left;
-}
-
-.filter {
- float: right;
- margin: -5px 10px 0 0;
-}
-
-.filter .subsubsub {
- margin-left: 0;
- margin-right: -10px;
-}
-
-#posts-filter fieldset {
- float: right;
- margin: 0 0 1em 1.5ex;
-}
-
-#posts-filter fieldset legend {
- padding: 0 1px .2em 0;
-}
-
-/*------------------------------------------------------------------------------
- 10.1 - Inline Editing
-------------------------------------------------------------------------------*/
-
-#wpbody-content .inline-edit-row fieldset {
- float: right;
-}
-
-#wpbody-content .quick-edit-row-page fieldset.inline-edit-col-right .inline-edit-col {
- border-width: 0 1px 0 0;
-}
-
-#wpbody-content .bulk-edit-row .inline-edit-col-bottom {
- float: left;
-}
-
-.inline-edit-row fieldset label span.title {
- float: right;
-}
-
-.inline-edit-row fieldset label span.input-text-wrap {
- margin-left: 0;
- margin-right: 5em;
-}
-
-.quick-edit-row-post fieldset.inline-edit-col-right label span.title {
- padding-right: 0;
- padding-left: 0.5em;
-}
-
-#wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child {
- margin-right: 0;
- margin-left: 0.5em
-}
-
-/* Styling */
-
-.inline-edit-row fieldset span.title,
-.inline-edit-row fieldset span.checkbox-title {
- font-family: Tahoma, Arial, sans-serif;
- font-style: normal;
-}
-
-.inline-edit-row fieldset .inline-edit-date {
- float: right;
-}
-
-.inline-edit-row fieldset ul.cat-checklist label,
-.inline-edit-row #bulk-titles div {
- font-family: Tahoma, Arial, sans-serif;
-}
-
-.quick-edit-row-post fieldset label.inline-edit-status {
- float: right;
-}
-
-#bulk-titles div a {
- float: right;
- margin: 3px -2px 0 3px;
- overflow: hidden;
- text-indent: -9999px;
-}
-
-
-/*------------------------------------------------------------------------------
- 11.0 - Write/Edit Post Screen
-------------------------------------------------------------------------------*/
-
-#save-action .spinner,
-#show-comments a,
-#show-comments .spinner {
- float: right;
-}
-
-#titlediv #title-prompt-text,
-#wp-fullscreen-title-prompt-text {
- right: 0;
-}
-
-#sample-permalink {
- direction: ltr;
-}
-
-#sample-permalink #editable-post-name {
- unicode-bidi: embed;
-}
-
-#wp-fullscreen-title-prompt-text {
- left: auto;
- right: 0;
-}
-
-#wp-fullscreen-save .spinner,
-#wp-fullscreen-save .fs-saved {
- float: left;
-}
-
-#edit-slug-box .cancel {
- margin-right: 0;
- margin-left: 10px;
-}
-
-.postarea h3 label {
- float: right;
-}
-
-.submitbox .submit {
- text-align: right;
-}
-
-.inside-submitbox #post_status {
- margin: 2px -2px 2px 0;
-}
-
-.submitbox .submit input {
- margin-right: 0;
- margin-left: 4px;
-}
-
-#normal-sortables .postbox .submit {
- float: left;
-}
-
-.taxonomy div.tabs-panel {
- margin: 0 125px 0 5px;
-}
-
-#side-sortables .comments-box thead th,
-#normal-sortables .comments-box thead th {
- font-style: normal;
-}
-
-#commentsdiv .spinner {
- padding-left: 0;
- padding-right: 5px;
-}
-
-#post-body .add-menu-item-tabs li.tabs {
- border-width: 1px 1px 1px 0;
- margin-right: 0;
- margin-left: -1px;
-}
-
-/* Global classes */
-
-#post-body .tagsdiv #newtag {
- margin-right: 0;
- margin-left: 5px;
-}
-
-.autosave-info {
- padding: 2px 2px 2px 15px;
- text-align: left;
-}
-
-#post-body .wp_themeSkin .mceStatusbar a.mceResize {
- background: transparent url('../images/resize-rtl.gif') no-repeat scroll left bottom;
- cursor: sw-resize;
-}
-
-.curtime #timestamp {
- background-position: right top;
- padding-left: 0;
- padding-right: 18px;
-}
-
-.compat-attachment-fields th {
- padding-right: 0;
- padding-left: 10px;
-}
-
-#post-lock-dialog .post-locked-message a.button {
- margin-right: 0;
- margin-left: 10px;
-}
-
-#post-lock-dialog .post-locked-avatar {
- float: right;
- margin: 0 0 20px 20px;
-}
-
-#post-lock-dialog .locked-saving img {
- float: right;
- margin-right: 0;
- margin-left: 3px;
-}
-
-
-/*------------------------------------------------------------------------------
- 11.1 - Custom Fields
-------------------------------------------------------------------------------*/
-
-/* No RTL for now, this space intentionally left blank */
-
-/*------------------------------------------------------------------------------
- 11.2 - Post Revisions
-------------------------------------------------------------------------------*/
-.wp-slider .ui-slider-handle.from-handle:before,
-.wp-slider .ui-slider-handle.to-handle:before {
- height: 8px;
- width: 7px;
-}
-
-.wp-slider .ui-slider-handle.from-handle:before {
- background-position: -5px -10px;
- left: 6px;
-}
-
-.wp-slider .ui-slider-handle.to-handle:before {
- background-position: -4px -29px;
- left: 6px;
-}
-
-.revision-toggle-compare-mode {
- right: auto;
- left: 0;
-}
-
-.revisions .loading-indicator {
- margin-right: -90px;
-}
-
-body.folded .revisions .loading-indicator {
- margin-right: -32px;
-}
-
-.revisions-next {
- float: left;
-}
-
-.revisions-previous {
- float: right;
-}
-
-.diff-title strong {
- text-align: left;
- float: right;
- margin-right: 0;
- margin-left: 5px;
-}
-
-.revisions-controls .author-card .avatar,
-.revisions-controls .author-card .author-info {
- float: right;
-}
-
-.diff-meta input.restore-revision {
- float: left;
-}
-
-.diff-col-title-added,
-.diff-col-title-removed {
- text-align: right;
- float: right;
-}
-
-.revisions-tooltip {
- margin-left: 0;
- margin-right: -69px;
-}
-
-.revisions-tooltip.flipped {
- margin-right: 0;
- margin-left: -70px;
-}
-
-.ie8 .revisions-tooltip {
- margin-right: -75px;
-}
-
-.ie8 .revisions-tooltip.flipped {
- margin-left: -63px;
-}
-
-.revisions-tooltip-arrow {
- right: 0;
- margin-left: 0;
- margin-right: 35px;
-}
-
-.revisions-tooltip.flipped .revisions-tooltip-arrow {
- margin-right: 0;
- margin-left: 35px;
- right: auto;
- left: 0;
-}
-
-.revisions-tooltip-arrow > span {
- left: auto;
- right: 20px;
-}
-
-.revisions-tooltip.flipped .revisions-tooltip-arrow > span {
- right: auto;
- left: 20px;
-}
-
-.ie8 .revisions-tooltip-arrow > span {
- right: 21px;
-}
-
-.revisions-tickmarks > div {
- float: right;
- border-width: 0 0 0 1px;
-}
-
-/*------------------------------------------------------------------------------
- 11.3 - Featured Images
-------------------------------------------------------------------------------*/
-
-#select-featured-image a {
- float: right;
-}
-
-/*------------------------------------------------------------------------------
- 11.4 - Post formats
-------------------------------------------------------------------------------*/
-
-a.post-state-format {
- margin-right: 0;
- margin-left: 5px;
-}
-
-label.post-format-icon {
- margin-left: 0;
- margin-right: 5px;
- padding-left: 0px;
- padding-right: 21px;
-}
-
-.post-format-icon.post-format-standard {
- background-position: 100% 0;
-}
-
-.post-format-icon.post-format-image {
- background-position: 100% -32px;
-}
-
-.post-format-icon.post-format-gallery {
- background-position: 100% -64px;
-}
-
-.post-format-icon.post-format-audio {
- background-position: 100% -96px;
-}
-
-.post-format-icon.post-format-video {
- background-position: 100% -128px;
-}
-
-.post-format-icon.post-format-chat {
- background-position: 100% -160px;
-}
-
-.post-format-icon.post-format-status {
- background-position: 100% -192px;
-}
-
-.post-format-icon.post-format-aside {
- background-position: 100% -224px;
-}
-
-.post-format-icon.post-format-quote {
- background-position: 100% -256px;
-}
-
-.post-format-icon.post-format-link {
- background-position: 100% -288px;
-}
-
-/*------------------------------------------------------------------------------
- 12.0 - Categories
-------------------------------------------------------------------------------*/
-
-.category-adder {
- margin-left: 0;
- margin-right: 120px;
-}
-
-#post-body ul.add-menu-item-tabs {
- float: right;
- text-align: left;
- /* Negative margin for the sake of those without JS: all tabs display */
- margin: 0 5px 0 -120px;
-}
-
-#post-body ul.add-menu-item-tabs li.tabs {
- -webkit-border-top-left-radius: 0;
- -webkit-border-top-right-radius: 3px;
- -webkit-border-bottom-left-radius: 0;
- -webkit-border-bottom-right-radius: 3px;
- border-top-left-radius: 0;
- border-top-right-radius: 3px;
- border-bottom-left-radius: 0;
- border-bottom-right-radius: 3px;
-}
-
-#front-page-warning,
-#front-static-pages ul,
-ul.export-filters,
-.inline-editor ul.cat-checklist ul,
-.categorydiv ul.categorychecklist ul,
-.customlinkdiv ul.categorychecklist ul,
-.posttypediv ul.categorychecklist ul,
-.taxonomydiv ul.categorychecklist ul {
- margin-left: 0;
- margin-right: 18px;
-}
-
-#post-body .add-menu-item-tabs li.tabs {
- border-style: solid solid solid none;
- border-width: 1px 1px 1px 0;
- margin-right: 0;
- margin-left: -1px;
-}
-
-p.help,
-p.description,
-span.description,
-.form-wrap p {
- font-style: normal;
- font-family: Tahoma, Arial, sans-serif;
-}
-
-/*------------------------------------------------------------------------------
- 13.0 - Tags
-------------------------------------------------------------------------------*/
-
-.taghint {
- margin: 15px 12px -24px 0;
-}
-
-#poststuff .tagsdiv .howto {
- margin: 0 8px 6px 0;
-}
-
-.ac_results li {
- text-align: right;
-}
-
-.links-table th {
- text-align: right;
-}
-
-/*------------------------------------------------------------------------------
- 14.0 - Media Screen
-------------------------------------------------------------------------------*/
-
-#wpbody-content .describe th {
- text-align: right;
-
-}
-
-.describe .media-item-info .A1B1 {
- padding: 0 10px 0 0;
-}
-
-.media-upload-form td label {
- margin-left: 6px;
- margin-right: 2px;
-}
-
-.media-upload-form .align .field label {
- padding: 0 23px 0 0;
- margin: 0 3px 0 1em;
-}
-
-.media-upload-form tr.image-size label {
- margin: 0 5px 0 0;
-}
-
-#wpbody-content .describe p.help {
- padding: 0 5px 0 0;
-}
-
-.media-item .edit-attachment,
-.media-item .error-div a.dismiss,
-.describe-toggle-on,
-.describe-toggle-off {
- float: left;
- margin-right: 0;
- margin-left: 15px;
-}
-
-.media-item .error-div a.dismiss {
- padding: 0 15px 0 0;
-}
-
-.media-item .error-div {
- padding-left: 0;
- padding-right: 10px;
-}
-
-.media-item .pinkynail {
- float: right;
-}
-
-.media-item .describe td {
- padding: 0 0 8px 8px;
-}
-
-.media-item .progress {
- float: left;
- margin: 6px 0 0 10px;
-}
-
-/*------------------------------------------------------------------------------
- 14.1 - Media Uploader
-------------------------------------------------------------------------------*/
-
-#find-posts-input {
- float: right;
-}
-
-#find-posts-search {
- float: right;
- margin-right: 3px;
- margin-left: 4px;
-}
-
-.find-box-search .spinner {
- left: auto;
- right: 115px;
-}
-
-#find-posts-response .found-radio {
- padding: 5px 8px 0 0;
-}
-
-.find-box-search label {
- padding-right: 0;
- padding-left: 6px;
-}
-
-.find-box #resize-se {
- right: auto;
- left: 1px;
-}
-
-form.upgrade .hint {
- font-style: normal;
-}
-
-
-/*------------------------------------------------------------------------------
- 14.2 - Image Editor
-------------------------------------------------------------------------------*/
-
-.wp_attachment_image .button,
-.A1B1 .button {
- float: right;
-}
-
-.wp_attachment_image .spinner,
-.A1B1 .spinner {
- float: right;
-}
-
-.imgedit-menu div {
- float: right;
-}
-
-.imgedit-crop {
- margin: 0;
-}
-
-.imgedit-rleft,
-.imgedit-flipv,
-.imgedit-undo {
- margin: 0 8px 0 3px;
-}
-
-.imgedit-rright,
-.imgedit-fliph,
-.imgedit-redo {
- margin: 0 3px;
-}
-
-.imgedit-applyto img {
- margin: 0 0 0 8px;
-}
-
-.imgedit-help {
- font-style: normal;
-}
-
-.imgedit-submit-btn {
- margin-left: 0;
- margin-right: 20px;
-}
-
-
-/*------------------------------------------------------------------------------
- 15.0 - Comments Screen
-------------------------------------------------------------------------------*/
-
-.form-table th {
- text-align: right;
-}
-
-.form-table input.tog {
- margin-right: 0;
- margin-left: 2px;
- float: right;
-}
-
-.form-table table.color-palette {
- float: right;
-}
-
-/* reply to comments */
-
-#replysubmit .spinner,
-.inline-edit-save .spinner {
- float: left;
-}
-
-#replysubmit .button {
- margin-right: 0;
- margin-left: 5px;
-}
-
-#edithead .inside {
- float: right;
- padding: 3px 5px 2px 0;
-}
-
-.comment-ays th {
- border-right-style: none;
- border-left-style: solid;
- border-right-width: 0;
- border-left-width: 1px;
-}
-
-.spam-undo-inside .avatar,
-.trash-undo-inside .avatar {
- margin-left: 8px;
-}
-
-#comment-status-radio input {
- margin: 2px 0 5px 3px;
-}
-
-/*------------------------------------------------------------------------------
- 16.0 - Themes
-------------------------------------------------------------------------------*/
-
-h3.available-themes {
- float: right;
-}
-
-.available-theme {
- margin-right: 0;
- margin-left: 10px;
- padding: 20px 0 20px 20px;
-}
-
-#current-theme .theme-info li,
-.theme-options li,
-.available-theme .action-links li {
- float: right;
- padding-right: 0;
- padding-left: 10px;
- margin-right: 0;
- margin-left: 10px;
- border-right: none;
- border-left: 1px solid #dfdfdf;
-}
-
-.available-theme .action-links li {
- padding-left: 8px;
- margin-left: 8px;
-}
-
-.ie8 .available-theme .action-links li {
- padding-left: 7px;
- margin-left: 7px;
-}
-
-#current-theme .theme-info li:last-child,
-.theme-options li:last-child,
-.available-theme .action-links li:last-child {
- padding-left: 0;
- margin-right: 0;
- border-left: 0;
-}
-
-.available-theme .action-links .delete-theme {
- float: left;
- margin-left: 0;
- margin-right: 8px;
-}
-
-.available-theme .action-links p {
- float: right;
-}
-
-#current-theme.has-screenshot {
- padding-left: 0;
- padding-right: 330px;
-}
-
-#current-theme h4 span {
- margin-left: 0;
- margin-right: 20px;
-}
-
-#current-theme img {
- float: right;
- width: 300px;
- margin-left: 0;
- margin-right: -330px;
-}
-
-.theme-options .load-customize {
- margin-right: 0;
- margin-left: 30px;
- float: right;
-}
-
-.theme-options span {
- float: right;
- margin-right: 0;
- margin-left: 10px;
-}
-
-.theme-options ul {
- float: right;
-}
-
-/* Allow for three-up on 1024px wide screens, e.g. tablets */
-@media only screen and (max-width: 1200px) {
- #current-theme.has-screenshot {
- padding-right: 270px;
- }
-
- #current-theme img {
- margin-right: -270px;
- width: 240px;
- }
-}
-
-#broken-themes {
- text-align: right;
-}
-
-/*------------------------------------------------------------------------------
- 16.1 - Custom Header Screen
-------------------------------------------------------------------------------*/
-
-.appearance_page_custom-header .available-headers .default-header {
- float: right;
- margin: 0 0 20px 20px;
-}
-
-.appearance_page_custom-header .random-header {
- margin: 0 0 20px 20px;
-}
-
-.appearance_page_custom-header .available-headers label input,
-.appearance_page_custom-header .random-header label input {
- margin-right: 0;
- margin-left: 10px;
-}
-
-/*------------------------------------------------------------------------------
- 16.2 - Custom Background Screen
-------------------------------------------------------------------------------*/
-
-/* No RTL for now, this space intentionally left blank */
-
-
-/*------------------------------------------------------------------------------
- 16.3 - Tabbed Admin Screen Interface (Experimental)
-------------------------------------------------------------------------------*/
-
-.nav-tab {
- margin: 0 0 -1px 6px;
-}
-
-h2 .nav-tab {
- font-family: Tahoma, Arial, sans-serif;
-}
-
-
-/*------------------------------------------------------------------------------
- 17.0 - Plugins
-------------------------------------------------------------------------------*/
-
-.plugins .desc ul,
-.plugins .desc ol {
- margin: 0 2em 0 0;
-}
-
-#wpbody-content .plugins .plugin-title, #wpbody-content .plugins .theme-title {
- padding-right: 0;
- padding-left: 12px;
-}
-
-
-/*------------------------------------------------------------------------------
- 18.0 - Users
-------------------------------------------------------------------------------*/
-
-#profile-page .form-table #rich_editing {
- margin-right: 0;
- margin-left: 5px
-}
-
-#profile-page #pass1,
-#profile-page #pass2,
-#profile-page #user_login {
- direction: ltr;
-}
-
-#your-profile legend {
- font-family: Tahoma, Arial, sans-serif;
-}
-
-/*------------------------------------------------------------------------------
- 19.0 - Tools
-------------------------------------------------------------------------------*/
-
-.pressthis a span {
- background-position: right 5px;
- padding: 8px 27px 8px 11px;
-}
-
-.pressthis a:after {
- right: auto;
- left: 10px;
- background: transparent;
- transform: skew(-20deg) rotate(-6deg);
- -webkit-transform: skew(-20deg) rotate(-6deg);
- -moz-transform: skew(-20deg) rotate(-6deg);
-}
-
-
-.pressthis a:hover:after {
- transform: skew(-20deg) rotate(-9deg);
- -webkit-transform: skew(-20deg) rotate(-9deg);
- -moz-transform: skew(-20deg) rotate(-9deg);
-}
-
-/*------------------------------------------------------------------------------
- 20.0 - Settings
-------------------------------------------------------------------------------*/
-
-#utc-time, #local-time {
- padding-left: 0;
- padding-right: 25px;
- font-style: normal;
- font-family: Tahoma, Arial, sans-serif;
-}
-
-#permalink_structure {
- float: right;
-}
-
-.options-permalink-php code {
- unicode-bidi: embed;
-}
-
-.options-permalink-php #rules {
- direction: ltr;
-}
-
-/*------------------------------------------------------------------------------
- 21.0 - Admin Footer
-------------------------------------------------------------------------------*/
-
-#wpfooter {
- margin-left: 20px;
-}
-
-#wpcontent,
-#wpfooter {
- margin-right: 165px;
-}
-
-/*------------------------------------------------------------------------------
- 22.0 - About Pages
-------------------------------------------------------------------------------*/
-
-.wrap.about-wrap {
- margin-left: 40px;
- margin-right: 20px;
-}
-
-.about-wrap h1,
-.about-text {
- margin-right: 0;
- margin-left: 200px;
-}
-
-.about-wrap h2.nav-tab-wrapper {
- padding-left: 0px;
- padding-right: 6px;
-}
-
-.about-wrap .wp-badge {
- right: auto;
- left: 0;
-}
-
-.about-wrap h2 .nav-tab {
- margin-right: 0;
- margin-left: 3px;
-}
-
-.about-wrap .changelog li {
- margin-left: 0;
- margin-right: 3em;
-}
-
-.about-wrap .three-col-images .last-feature {
- float: left;
-}
-
-.about-wrap .three-col-images .first-feature {
- float: right;
-}
-
-.about-wrap .feature-section.two-col div,
-.about-wrap .feature-section.three-col div {
- margin-right: 0;
- margin-left: 4.999999999%;
- float: right;
-}
-
-.about-wrap .feature-section.col .last-feature {
- margin-left: 0;
-}
-
-.about-wrap .feature-section div p img {
- float: left;
- margin-left: 0;
- margin-right: 10px;
-}
-
-.about-wrap li.wp-person,
-.about-wrap li.wp-person img.gravatar {
- float: right;
- margin-right: 0;
- margin-left: 10px;
-}
-
-
-/*------------------------------------------------------------------------------
- 23.0 - Misc
-------------------------------------------------------------------------------*/
-
-#template div {
- margin-right: 0;
- margin-left: 190px;
-}
-
-.column-author img, .column-username img {
- float: right;
- margin-right: 0;
- margin-left: 10px;
-}
-
-.tagchecklist {
- margin-left: 0;
- margin-right: 14px;
-}
-
-.tagchecklist strong {
- margin-left: 0;
- margin-right: -8px;
-}
-
-.tagchecklist span {
- margin-right: 0;
- margin-left: 25px;
- float: right;
-
-}
-.tagchecklist span a {
- margin: 4px -10px 0 0;
- float: right;
-}
-
-#poststuff h2 {
- clear: right;
-}
-
-#poststuff h3,
-.metabox-holder h3 {
- font-family: Tahoma, Arial, sans-serif;
-}
-
-.tool-box .title {
- font-family: Tahoma, Arial, sans-serif;
-}
-
-#sidemenu {
- margin: -30px 315px 0 15px;
- float: left;
- padding-left: 0;
- padding-right: 10px;
-}
-#sidemenu a {
- float: right;
-}
-
-table .vers,
-table .column-visible,
-table .column-rating {
- text-align: right;
-}
-
-.screen-meta-toggle {
- right: auto;
- left: 15px;
-}
-
-.screen-reader-text,
-.screen-reader-text span,
-.ui-helper-hidden-accessible {
- left: auto;
- right: -1000em;
-}
-
-.screen-reader-shortcut:focus {
- left: auto;
- right: 6px;
-}
-
-/*------------------------------------------------------------------------------
- 24.0 - Dead
-------------------------------------------------------------------------------*/
-
-/* - Not used anywhere in WordPress - verify and then deprecate
-------------------------------------------------------------------------------*/
-
-/* No RTL for now, this space intentionally left blank */
-
-
-/* - Only used once or twice in all of WP - deprecate for global style
-------------------------------------------------------------------------------*/
-
-* html #template div {margin-left: 0;}
-
-/* - Used - but could/should be deprecated with a CSS reset
-------------------------------------------------------------------------------*/
-/* No RTL for now, this space intentionally left blank */
-
-
-/*------------------------------------------------------------------------------
- 25.0 - TinyMCE tweaks
- Small tweaks for until tinymce css files are proprely RTLized
-------------------------------------------------------------------------------*/
-#editorcontainer .wp_themeSkin .mceStatusbar {
- padding-left: 0;
- padding-right: 5px;
-}
-
-#editorcontainer .wp_themeSkin .mceStatusbar div {
- float: right;
-}
-
-#editorcontainer .wp_themeSkin .mceStatusbar a.mceResize {
- float: left;
-}
-
-#content-resize-handle {
- background: transparent url('../images/resize-rtl.gif') no-repeat scroll left bottom;
- right: auto;
- left: 2px;
- cursor: sw-resize;
-}
-
-/*------------------------------------------------------------------------------
- 26.0 - Full Overlay w/ Sidebar
-------------------------------------------------------------------------------*/
-.wp-full-overlay .wp-full-overlay-sidebar {
- margin: 0;
- left: auto;
- right: 0;
- border-right: 0;
- border-left: 1px solid rgba( 0, 0, 0, 0.2 );
-}
-
-.wp-full-overlay-sidebar:after {
- right: auto;
- left: 0;
- box-shadow: inset 5px 0 4px -4px rgba(0, 0, 0, 0.1);
-}
-
-.wp-full-overlay.collapsed,
-.wp-full-overlay.expanded .wp-full-overlay-sidebar {
- margin-right: 0 !important;
-}
-
-.wp-full-overlay.expanded {
- margin-right: 300px;
- margin-left: 0;
-}
-
-.wp-full-overlay.collapsed .wp-full-overlay-sidebar {
- margin-right: -300px;
- margin-left: 0;
-}
-
-/* Collapse Button */
-.wp-full-overlay a.collapse-sidebar {
- left: auto;
- right: 0;
- margin-left: 0;
- margin-right: 15px;
-}
-
-.wp-full-overlay.collapsed .collapse-sidebar {
- right: 100%;
-}
-
-.wp-full-overlay .collapse-sidebar-arrow {
- margin-right: 2px;
- margin-left: 0;
- background: transparent url('../images/arrows.png') no-repeat 1px -108px;
-}
-
-.wp-full-overlay.collapsed .collapse-sidebar-arrow {
- background-position: 0 -72px;
-}
-
-.wp-full-overlay .collapse-sidebar-label {
- right: 100%;
- left: auto;
- margin-right: 10px;
- margin-left: 0;
-}
-
-/*------------------------------------------------------------------------------
- 27.0 - Customize Loader
-------------------------------------------------------------------------------*/
-.install-theme-info .theme-install {
- float: left;
-}
-
-/* MERGED */
-
-/* global */
-
-/* 2 column liquid layout */
-
-#wpcontent {
- margin-left: 0;
- margin-right: 165px;
-}
-
-#wpbody-content {
- float: right;
-}
-
-#adminmenuwrap {
- float: right;
-}
-
-#adminmenu {
- clear: right;
-}
-
-/* inner 2 column liquid layout */
-.inner-sidebar {
- float: left;
- clear: left;
-}
-
-.has-right-sidebar #post-body {
- float: right;
- clear: right;
- margin-right: 0;
- margin-left: -340px;
-}
-
-.has-right-sidebar #post-body-content {
- margin-right: 0;
- margin-left: 300px;
-}
-
-/* 2 columns main area */
-
-#col-right {
- float: left;
- clear: left;
-}
-
-/* utility classes*/
-.alignleft {
- float: right;
-}
-
-.alignright {
- float: left;
-}
-
-.textleft {
- text-align: right;
-}
-
-.textright {
- text-align: left;
-}
-
-/* styles for use by people extending the WordPress interface */
-
-body,
-td,
-textarea,
-input,
-select {
- font-family: Tahoma, Arial, sans-serif;
-}
-
-ul.ul-disc,
-ul.ul-square,
-ol.ol-decimal {
- margin-left: 0;
- margin-right: 1.8em;
-}
-
-.subsubsub {
- float: right;
-}
-
-.widefat thead th:first-of-type {
- -webkit-border-top-left-radius: 0;
- -webkit-border-top-right-radius: 3px;
- border-top-left-radius: 0;
- border-top-right-radius: 3px;
-}
-
-.widefat thead th:last-of-type {
- -webkit-border-top-right-radius: 0;
- -webkit-border-top-left-radius: 3px;
- border-top-right-radius: 0;
- border-top-left-radius: 3px;
-}
-.widefat tfoot th:first-of-type {
- -webkit-border-bottom-left-radius: 0;
- -webkit-border-bottom-right-radius: 3px;
- border-bottom-left-radius: 0;
- border-bottom-right-radius: 3px;
-}
-.widefat tfoot th:last-of-type {
- -webkit-border-bottom-right-radius: 0;
- -webkit-border-bottom-left-radius: 3px;
- border-bottom-right-radius: 0;
- border-bottom-left-radius: 3px;
-}
-
-.widefat th {
- text-align: right;
-}
-
-.widefat th input {
- margin: 0 8px 0 0;
-}
-
-.wrap {
- margin-right: 0;
- margin-left: 15px;
-}
-
-.wrap h2,
-.subtitle {
- font-family: Tahoma, Arial, sans-serif;
-}
-
-.wrap h2 {
- padding-right: 0;
- padding-left: 15px;
-}
-
-.subtitle {
- padding-left: 0;
- padding-right: 25px;
-}
-
-.wrap .add-new-h2 {
- font-family: Tahoma, Arial, sans-serif;
- margin-left: 0;
- margin-right: 4px;
-}
-
-.wrap h2.long-header {
- padding-left: 0;
-}
-
-/* dashboard */
-#dashboard-widgets-wrap .has-sidebar {
- margin-right: 0;
- margin-left: -51%;
-}
-
-#dashboard-widgets-wrap .has-sidebar .has-sidebar-content {
- margin-right: 0;
- margin-left: 51%;
-}
-
-.view-all {
- right: auto;
- left: 0;
-}
-
-#dashboard_right_now p.sub,
-#dashboard-widgets h4,
-a.rsswidget,
-#dashboard_plugins h4,
-#dashboard_plugins h5,
-#dashboard_recent_comments .comment-meta .approve,
-#dashboard_right_now td.b,
-#dashboard_right_now .versions a {
- font-family: Tahoma, Arial, sans-serif;
-}
-
-#dashboard_right_now p.sub {
- left:auto;
- right:15px;
-}
-
-#dashboard_right_now td.b {
- padding-right: 0;
- padding-left: 6px;
- text-align: left;
-}
-
-#dashboard_right_now .t {
- padding-right: 0;
- padding-left: 12px;
-}
-
-#dashboard_right_now .table_content {
- float:right;
-}
-
-#dashboard_right_now .table_discussion {
- float:left;
-}
-
-#dashboard_right_now a.button {
- float: left;
- clear: left;
-}
-
-#dashboard_plugins .inside span {
- padding-left: 0;
- padding-right: 5px;
-}
-
-#dashboard-widgets h3 .postbox-title-action {
- right: auto;
- left: 10px;
-}
-
-.js #dashboard-widgets h3 .postbox-title-action {
- right: auto;
- left: 30px;
-}
-
-#the-comment-list .pingback {
- padding-left: 0 !important;
- padding-right: 9px !important;
-}
-
-/* Recent Comments */
-#the-comment-list .comment-item {
- padding: 1em 70px 1em 10px;
-}
-
-#the-comment-list .comment-item .avatar {
- float: right;
- margin-left: 0;
- margin-right: -60px;
-}
-
-/* Feeds */
-.rss-widget cite {
- text-align: left;
-}
-
-.rss-widget span.rss-date {
- font-family: Tahoma, Arial, sans-serif;
- margin-left: 0;
- margin-right: 3px;
-}
-
-/* QuickPress */
-#dashboard-widgets #dashboard_quick_press form p.submit input {
- float: right;
-}
-
-#dashboard-widgets #dashboard_quick_press form p.submit #save-post {
- margin: 0 1px 0 0.7em;
-}
-
-#dashboard-widgets #dashboard_quick_press form p.submit #publish {
- float: left;
-}
-
-#dashboard-widgets #dashboard_quick_press form p.submit .spinner {
- margin: 4px 0 0 6px;
-}
-
-/* Recent Drafts */
-#dashboard_recent_drafts h4 abbr {
- font-family: Tahoma, Arial, sans-serif;
- margin-left:0;
- margin-right: 3px;
-}
-
-/* login */
-body.login {
- font-family: Tahoma, Arial, sans-serif;
-}
-
-.login form {
- margin-right: 8px;
- margin-left: 0;
-}
-
-.login form .forgetmenot {
- float: right;
-}
-
-.login form .submit {
- float: left;
-}
-
-#login form .submit input {
- font-family: Tahoma, Arial, sans-serif;
-}
-
-.login #nav,
-.login #backtoblog {
- margin: 0 16px 0 0;
-}
-
-#login_error,
-.login .message {
- margin: 0 8px 16px 0;
-}
-
-.login #user_pass,
-.login #user_login,
-.login #user_email {
- margin-left: 6px;
- margin-right: 0;
- direction: ltr;
-}
-
-.login h1 a {
- text-decoration: none;
-}
-
-.login .button-primary {
- float: left;
-}
-
-/* nav-menu */
-#nav-menus-frame {
- margin-right: 300px;
- margin-left: 0;
-}
-
-#wpbody-content #menu-settings-column {
- margin-right: -300px;
- margin-left: 0;
- float: right;
-}
-
-.menu-location-menus select {
- float: right;
-}
-
-.locations-row-links {
- float: right;
- margin: 4px 6px 0 0;
-}
-
-.locations-add-menu-link {
- direction: rtl;
-}
-
-.locations-edit-menu-link {
- border-left: 1px solid #CCCCCC;
- border-right: 0;
- padding-left: 6px;
- padding-right: 0;
- float: right;
-}
-
-/* Menu Container */
-#menu-management-liquid {
- float: right;
-}
-
-#menu-management {
- margin-left: 20px;
- margin-right: 0;
-}
-
-.post-body-plain {
- padding: 10px 0 0 10px;
-}
-
-/* Menu Tabs */
-
-#menu-management .nav-tabs-arrow-left {
- right: 0;
- left:auto;
-}
-
-#menu-management .nav-tabs-arrow-right {
- left: 0;
- right:auto;
- text-align: left;
- font-family: Tahoma, Arial, sans-serif;
-}
-
-#menu-management .nav-tabs {
- padding-right: 20px;
- padding-left: 10px;
-}
-
-.js #menu-management .nav-tabs {
- float: right;
- margin-right: 0px;
- margin-left: -400px;
-}
-
-#select-nav-menu-container {
- text-align: left;
-}
-
-#wpbody .open-label {
- float:right;
-}
-
-#wpbody .open-label span {
- padding-left: 10px;
- padding-right:0;
-}
-
-.js .input-with-default-title {
- font-style: normal;
- font-weight: bold;
-}
-
-/* Add Menu Item Boxes */
-.postbox .howto input,
-.accordion-container .howto input {
- float: left;
-}
-
-#nav-menu-theme-locations .button-controls {
- text-align: left;
-}
-
-/* Button Primary Actions */
-
-.meta-sep,
-.submitcancel {
- float: right;
-}
-
-#cancel-save {
- margin-left: 0;
- margin-right: 20px;
-}
-
-.button.right, .button-secondary.right, .button-primary.right {
- float: left;
-}
-
-/* Button Secondary Actions */
-.list-controls {
- float: right;
-}
-.add-to-menu {
- float: left;
-}
-
-/* Custom Links */
-#add-custom-link label span {
- float: right;
- padding-left: 5px;
- padding-right: 0;
-}
-
-.nav-menus-php .howto span {
- float: right;
-}
-
-.list li .menu-item-title input {
- margin-left: 3px;
- margin-right: 0;
-}
-
-/* Nav Menu */
-.menu-item-handle {
- padding-right: 10px;
- padding-left: 0;
-}
-.menu-item-edit-active .menu-item-handle {
- -webkit-border-bottom-left-radius: 0;
- -webkit-border-bottom-right-radius: 0;
- border-bottom-left-radius: 0;
- border-bottom-right-radius: 0;
-}
-.menu-item-handle .item-title {
- margin-left:13em;
- margin-right:0;
- overflow: hidden;
-}
-.menu-item-handle .item-edit {
- right: auto;
- left: -20px;
-}
-
-.menu-item-handle .menu-item-title {
- float: right;
-}
-
-.menu-item-settings .field-move a,
-.menu-item-settings .field-move span {
- float: right;
- margin-left: 4px;
-}
-
-/* WARNING: The factor of 30px is hardcoded into the nav-menus javascript. */
-.menu-item-depth-0 { margin-right: 0px; margin-left:0;}
-.menu-item-depth-1 { margin-right: 30px; margin-left:0;}
-.menu-item-depth-2 { margin-right: 60px; margin-left:0;}
-.menu-item-depth-3 { margin-right: 90px; margin-left:0;}
-.menu-item-depth-4 { margin-right: 120px; margin-left:0;}
-.menu-item-depth-5 { margin-right: 150px; margin-left:0;}
-.menu-item-depth-6 { margin-right: 180px; margin-left:0;}
-.menu-item-depth-7 { margin-right: 210px; margin-left:0;}
-.menu-item-depth-8 { margin-right: 240px; margin-left:0;}
-.menu-item-depth-9 { margin-right: 270px; margin-left:0;}
-.menu-item-depth-10 { margin-right: 300px; margin-left:0;}
-.menu-item-depth-11 { margin-right: 330px; margin-left:0;}
-
-.menu-item-depth-0 .menu-item-transport { margin-right: 0px; margin-left:0;}
-.menu-item-depth-1 .menu-item-transport { margin-right: -30px; margin-left:0;}
-.menu-item-depth-2 .menu-item-transport { margin-right: -60px; margin-left:0;}
-.menu-item-depth-3 .menu-item-transport { margin-right: -90px; margin-left:0;}
-.menu-item-depth-4 .menu-item-transport { margin-right: -120px; margin-left:0;}
-.menu-item-depth-5 .menu-item-transport { margin-right: -150px; margin-left:0;}
-.menu-item-depth-6 .menu-item-transport { margin-right: -180px; margin-left:0;}
-.menu-item-depth-7 .menu-item-transport { margin-right: -210px; margin-left:0;}
-.menu-item-depth-8 .menu-item-transport { margin-right: -240px; margin-left:0;}
-.menu-item-depth-9 .menu-item-transport { margin-right: -270px; margin-left:0;}
-.menu-item-depth-10 .menu-item-transport { margin-right: -300px; margin-left:0;}
-.menu-item-depth-11 .menu-item-transport { margin-right: -330px; margin-left:0;}
-
-/* Menu item controls */
-.item-type {
- padding-left: 10px;
- padding-right:0;
-}
-
-.item-controls {
- left: 20px;
- right: auto;
-}
-
-.item-controls .item-order {
- padding-left: 10px;
- padding-right: 0;
-}
-
-.item-edit {
- left: -20px;
- right:auto;
- -webkit-border-bottom-right-radius: 3px;
- -webkit-border-bottom-left-radius: 0;
- border-bottom-right-radius: 3px;
- border-bottom-left-radius: 0;
-}
-
-/* Menu editing */
-.menu-item-settings {
- padding: 10px 10px 10px 0;
- border-width: 0 1px 1px 1px;
-}
-
-#custom-menu-item-url {
- direction: ltr;
-}
-
-.link-to-original {
- font-style: normal;
- font-weight: bold;
-}
-
-.link-to-original a {
- padding-right: 4px;
- padding-left:0;
-}
-
-.menu-item-settings .description-thin,
-.menu-item-settings .description-wide {
- margin-left: 10px;
- margin-right:0;
- float: right;
-}
-
-/* Major/minor publishing actions (classes) */
-.major-publishing-actions .publishing-action {
- text-align: left;
- float: left;
-}
-
-.major-publishing-actions .delete-action {
- text-align: right;
- float: right;
- padding-left: 15px;
- padding-right:0;
-}
-
-.menu-name-label {
- margin-left: 15px;
- margin-right:0;
-}
-
-/* Star ratings */
-div.star-holder {
- background: url('../images/stars-rtl.png?ver=20121108') repeat-x bottom right;
-}
-div.star-holder .star-rating {
- background: url('../images/stars-rtl.png?ver=20121108') repeat-x top right;
- float: right;
-}
-
-#plugin-information .wrap {
- margin: 4px 15px 0 0;
-}
-
-#plugin-information ul#sidemenu {
- left: auto;
- right: 0;
-}
-
-#plugin-information .fyi {
- float: right;
-}
-
-#plugin-information #section-screenshots li p {
- padding-left: 0;
- padding-right: 20px;
-}
-
-#plugin-information .updated,
-#plugin-information .error {
- clear: none;
- direction: rtl;
-}
-
-#plugin-information #section-holder .section {
- direction: ltr;
-}
-
-/* Editor/Main Column */
-.posting {
- margin-left: 212px;
- margin-right: 0;
- position: relative;
-}
-
-h3.tb {
- margin-left: 0;
- margin-right: 5px;
-}
-
-#publish {
- float: left;
-}
-
-.postbox .handlediv {
- float: left;
-}
-
-.actions li {
- float: right;
- margin-right: 0;
- margin-left: 10px;
-}
-
-#extra-fields .actions {
- margin: -23px 0 0 -7px;
-}
-
-/* Photo Styles */
-#img_container a {
- float: right;
-}
-
-#category-add input,
-#category-add select {
- font-family: Tahoma, Arial, sans-serif;
-}
-
-/* Tags */
-#tagsdiv #newtag {
- margin-right: 0;
- margin-left: 5px;
-}
-
-#tagadd {
- margin-left: 0;
- margin-right: 3px;
-}
-
-#tagchecklist span {
- margin-left: .5em;
- margin-right: 10px;
- float: right;
-}
-#tagchecklist span a {
- margin: 6px -9px 0 0;
- float: right;
-}
-
-.submit input,
-.button,
-.button-primary,
-.button-secondary,
-#postcustomstuff .submit input {
- font-family: Tahoma, Arial, sans-serif;
-}
-
-.ac_results li {
- text-align: right;
-}
-
-#TB_ajaxContent #options {
- right: auto;
- left: 25px;
-}
-
-#TB_closeAjaxWindow {
- float: left;
-}
-
-#TB_ajaxWindowTitle {
- float: right;
-}
-
-#post_status {
- margin-left: 0;
- margin-right: 10px;
-}
-
-/* theme-editor, plugin-editor */
-#templateside {
- float: left;
-}
-
-#template textarea,
-#docs-list {
- direction: ltr;
-}
-
-/* theme-install */
-.theme-details .theme-version {
- float: right;
-}
-
-.theme-details .star-holder {
- float: left;
-}
-
-.feature-filter .feature-group {
- float: right;
-}
-
-.feature-filter .feature-group li {
- padding-right: 0;
- padding-left: 25px;
-}
-
-/* widgets */
-/* 2 column liquid layout */
-div.widget-liquid-left {
- float: right;
- clear: right;
- margin-right: 0;
- margin-left: -325px;
-}
-
-div#widgets-left {
- margin-right: 5px;
- margin-left: 325px;
-}
-
-div.widget-liquid-right {
- float: left;
- clear: left;
-}
-
-.inactive-sidebar .widget {
- float: right;
-}
-
-div.sidebar-name h3 {
- font-family: Tahoma, Arial, sans-serif;
-}
-
-#widget-list .widget {
- float: right;
-}
-
-.inactive-sidebar .widget-placeholder {
- float: right;
-}
-
-.widget-top .widget-title-action {
- float: left;
-}
-
-.widget-control-edit {
- padding: 0 0 0 8px;
-}
-
-.sidebar-name-arrow {
- float: left;
-}
-
-/* Press This */
-.press-this-sidebar {
- float: left;
-}
-
-.press-this #header-logo,
-.press-this #wphead h1 {
- float: right;
-}
-
-/* RTL */
-.ltr {
- direction: ltr;
-}
-
-.control-section .accordion-section-title {
- font-family: Tahoma, Arial, sans-serif;
-}
-
-.js .accordion-section-title:after {
- right: auto;
- left: 20px;
-}
-
-/*------------------------------------------------------------------------------
- 28.0 - Nav Menus
-------------------------------------------------------------------------------*/
-.nav-menus-php .major-publishing-actions .publishing-action {
- float: left;
-}
-
-.menu-settings dd {
- float: right;
-}
-
-.manage-menus span {
- float: right;
-}
-
-.manage-menus select {
- float: right;
- margin-right: 0;
- margin-left: 6px;
-}
-
-.manage-menus .submit-btn {
- float: right;
-}
-
-.manage-menus .selected-menu {
- float: right;
- margin: 5px 0 0 6px;
-}
-
-.nav-menus-php .add-new-menu-action {
- float: right;
- margin: 4px 6px 0 0;
-}
-
-.nav-menus-php .meta-sep,
-.nav-menus-php .submitdelete,
-.nav-menus-php .submitcancel {
- float: right;
-}
-
-.is-submenu {
- float: right;
- margin-right: 8px;
-}
-
-/*------------------------------------------------------------------------------
- 29.0 - HiDPI
-------------------------------------------------------------------------------*/
-@media print,
- (-o-min-device-pixel-ratio: 5/4),
- (-webkit-min-device-pixel-ratio: 1.25),
- (min-resolution: 120dpi) {
- .post-com-count {
- background-image: url('../images/bubble_bg-rtl-2x.gif');
- background-size: 18px 100px;
- }
-
- #content-resize-handle, #post-body .wp_themeSkin .mceStatusbar a.mceResize {
- background: transparent url('../images/resize-rtl-2x.gif') no-repeat scroll right bottom;
- background-size: 11px 11px;
- }
-
- .wp-full-overlay .collapse-sidebar-arrow {
- background-image: url('../images/arrows-2x.png');
- background-size: 15px 123px;
- }
-
- div.star-holder {
- background: url('../images/stars-rtl-2x.png?ver=20121108') repeat-x bottom right;
- background-size: 21px 37px;
- }
-
- div.star-holder .star-rating {
- background: url('../images/stars-rtl-2x.png?ver=20121108') repeat-x top right;
- background-size: 21px 37px;
- }
-
- #post-body .wp_themeSkin .mceStatusbar a.mceResize,
- #content-resize-handle {
- background: transparent url('../images/resize-rtl-2x.gif') no-repeat scroll left bottom;
- }
-
- .wp-slider .ui-slider-handle:before {
- background-image: url(../images/arrows-pr-2x.png);
- background-size: 16px 102px;
- }
-
-}
-
-/* =Localized CSS
--------------------------------------------------------------- */
-
-/* he_IL: Remove Tahoma from the font stack. Arial is best for Hebrew. */
-body.locale-he-il,
-.locale-he-il .quicktags, .locale-he-il .search,
-.locale-he-il .howto,
-.locale-he-il #adminmenu .awaiting-mod,
-.locale-he-il #adminmenu span.update-plugins,
-.locale-he-il #sidemenu li a span.update-plugins,
-.locale-he-il .post-com-count-wrapper,
-.locale-he-il .widefat th,
-.locale-he-il .tablenav .displaying-num,
-.locale-he-il .inline-edit-row fieldset span.title,
-.locale-he-il .inline-edit-row fieldset span.checkbox-title,
-.locale-he-il .inline-edit-row fieldset ul.cat-checklist label,
-.locale-he-il .inline-edit-row #bulk-titles div,
-.locale-he-il p.help,
-.locale-he-il p.description,
-.locale-he-il span.description,
-.locale-he-il .form-wrap p,
-.locale-he-il h2 .nav-tab,
-.locale-he-il #your-profile legend,
-.locale-he-il #utc-time, .locale-he-il #local-time,
-.locale-he-il #poststuff h3,
-.locale-he-il .metabox-holder h3,
-.locale-he-il .tool-box .title,
-.locale-he-il td,
-.locale-he-il textarea,
-.locale-he-il input,
-.locale-he-il select,
-.locale-he-il .wrap h2,
-.locale-he-il .subtitle,
-.locale-he-il .wrap .add-new-h2,
-.locale-he-il #dashboard_right_now p.sub,
-.locale-he-il #dashboard-widgets h4,
-.locale-he-il a.rsswidget,
-.locale-he-il #dashboard_plugins h4,
-.locale-he-il #dashboard_plugins h5,
-.locale-he-il #dashboard_recent_comments .comment-meta .approve,
-.locale-he-il #dashboard_right_now td.b,
-.locale-he-il #dashboard_right_now .versions a,
-.locale-he-il .rss-widget span.rss-date,
-.locale-he-il #dashboard_recent_drafts h4 abbr,
-body.login.locale-he-il,
-.locale-he-il #login form .submit input,
-.locale-he-il #menu-management .nav-tabs-arrow-right,
-.locale-he-il #category-add input,
-.locale-he-il #category-add select,
-.locale-he-il .submit input,
-.locale-he-il .button,
-.locale-he-il .button-primary,
-.locale-he-il .button-secondary,
-.locale-he-il #postcustomstuff .submit input,
-.locale-he-il div.sidebar-name h3 {
- font-family: Arial, sans-serif;
-}
-
-/* he_IL: Have be bold rather than italic. */
-.locale-he-il em {
- font-style: normal;
- font-weight: bold;
-}
+@import url(common-rtl.css);
+@import url(forms-rtl.css);
+@import url(admin-menu-rtl.css);
+@import url(dashboard-rtl.css);
+@import url(list-tables-rtl.css);
+@import url(edit-rtl.css);
+@import url(revisions-rtl.css);
+@import url(media-rtl.css);
+@import url(themes-rtl.css);
+@import url(press-this-rtl.css);
+@import url(about-rtl.css);
+@import url(nav-menus-rtl.css);
+@import url(widgets-rtl.css);
+@import url(l10n-rtl.css);
diff --git a/sources/wp-admin/css/wp-admin-rtl.min.css b/sources/wp-admin/css/wp-admin-rtl.min.css
index 4da46f6..25e9fbb 100644
--- a/sources/wp-admin/css/wp-admin-rtl.min.css
+++ b/sources/wp-admin/css/wp-admin-rtl.min.css
@@ -1 +1 @@
-ol{margin-left:0;margin-right:2em}.code,code{font-family:monospace;direction:ltr}.quicktags,.search{font:12px Tahoma,Arial,sans-serif}.icon32{float:right;margin-right:0;margin-left:8px}.icon16{float:right;margin-right:-8px;margin-left:0}.howto{font-style:normal;font-family:Tahoma,Arial,sans-serif}p.install-help{font-style:normal}#doaction,#doaction2,#post-query-submit{margin-right:0;margin-left:8px}#timezone_string option{margin-left:0;margin-right:1em}#pass-strength-result{float:right;margin:13px 1px 5px 5px}p.search-box{float:left}.search-box input[name="s"],#search-plugins input[name="s"],.tagsdiv .newtag{float:right;margin-right:0;margin-left:4px}input[type=password]{direction:ltr}input[type=text].ui-autocomplete-loading{background:transparent url(../images/loading.gif) no-repeat left center}ul#add-to-blog-users{margin:0 14px 0 0}.ui-autocomplete li{text-align:right}#delete-action{float:right}#publishing-action{float:left;text-align:left}#publishing-action .spinner{float:right}#post-body .misc-pub-section{border-right:0;border-left-width:1px;border-left-style:solid}#post-body .misc-pub-section-last{border-left:0}#minor-publishing-actions{padding:10px 8px 2px 10px;text-align:left}#save-post{float:right}.preview{float:left}#sticky-span{margin-left:0;margin-right:18px}.side-info ul{padding-left:0;padding-right:18px}td.action-links,th.action-links{text-align:left}form.upgrade .hint{font-style:normal}#ajax-response.alignleft{margin-left:0;margin-right:2em}#quicktags{background-position:right top}#ed_reply_toolbar input{margin:1px 1px 1px 2px}#wphead{height:32px;margin-left:15px;margin-right:2px}#header-logo{float:right}#wphead h1{float:right}#screen-meta-links{margin-right:0;margin-left:24px}#screen-meta{margin-right:5px;margin-left:15px}#screen-options-link-wrap,#contextual-help-link-wrap{float:left;margin-left:0;margin-right:6px}#screen-meta-links a.show-settings{padding-right:6px;padding-left:16px}.toggle-arrow{background-position:top right}.toggle-arrow-active{background-position:bottom right}.metabox-prefs label{padding-right:0;padding-left:15px}.metabox-prefs label input{margin-right:2px;margin-left:5px}#contextual-help-wrap{margin-left:0;margin-right:-4px}#contextual-help-back{left:170px;right:150px}#contextual-help-wrap.no-sidebar #contextual-help-back{left:0;right:150px;border-right-width:1px;border-left-width:0;-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;-webkit-border-bottom-left-radius:2px;border-bottom-left-radius:2px}.contextual-help-tabs{float:right}.contextual-help-tabs a{padding-left:5px;padding-right:12px}.contextual-help-tabs .active{margin-right:0;margin-left:-1px}.contextual-help-tabs .active,.contextual-help-tabs-wrap{border-left:0;border-right-width:1px}.help-tab-content{margin-right:0;margin-left:22px}.help-tab-content li{margin-left:0;margin-right:18px}.contextual-help-sidebar{float:left;padding-right:12px;padding-left:8px}.folded #wpcontent{margin-left:0;margin-right:52px}.folded.wp-admin #wpfooter{margin-left:15px;margin-right:52px}#adminmenuback,#adminmenuwrap{border-width:0 0 0 1px}#adminmenushadow{right:auto;left:0}#adminmenu li .wp-submenu{left:auto;right:146px}.folded #adminmenu .wp-submenu.sub-open,.folded #adminmenu .opensub .wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,.folded #adminmenu .wp-has-current-submenu.opensub .wp-submenu,.folded #adminmenu a.menu-top:focus+.wp-submenu,.folded #adminmenu .wp-has-current-submenu a.menu-top:focus+.wp-submenu,.no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu{left:auto;right:32px}#adminmenu div.wp-menu-image,.folded #adminmenu div.wp-menu-image{float:right;width:30px}#adminmenu .wp-submenu a,#adminmenu li li a,.folded #adminmenu .wp-not-current-submenu li a{padding-left:0;padding-right:12px}#adminmenu .wp-not-current-submenu li a{padding-left:0;padding-right:18px}.wp-menu-arrow{right:0;-moz-transform:translate(-139px);-webkit-transform:translate(-139px);-o-transform:translate(-139px);-ms-transform:translate(-139px);transform:translate(-139px)}.ie8 .wp-menu-arrow{right:-20px}#adminmenu .wp-menu-arrow div{left:-8px;width:16px}#adminmenu li.wp-not-current-submenu .wp-menu-arrow{-moz-transform:translate(-138px);-webkit-transform:translate(-138px);-o-transform:translate(-138px);-ms-transform:translate(-138px);transform:translate(-138px)}.folded #adminmenu li .wp-menu-arrow{-moz-transform:translate(-26px);-webkit-transform:translate(-26px);-o-transform:translate(-26px);-ms-transform:translate(-26px);transform:translate(-26px)}#adminmenu .wp-not-current-submenu .wp-menu-arrow div{border-style:solid solid none none;border-width:1px 1px 0 0}#adminmenu .wp-menu-image img{padding:7px 7px 0 0}#adminmenu .wp-submenu .wp-submenu-head{padding:5px 10px 5px 4px;-webkit-border-top-right-radius:0;-webkit-border-top-left-radius:3px;border-top-right-radius:0;border-top-left-radius:3px}.folded #adminmenu li.wp-has-current-submenu .wp-submenu{border-width:1px;border-style:solid;-webkit-border-bottom-right-radius:0;-webkit-border-bottom-left-radius:3px;-webkit-border-top-right-radius:0;-webkit-border-top-left-radius:3px;border-bottom-right-radius:0;border-bottom-left-radius:3px;border-top-right-radius:0;border-top-left-radius:3px}#adminmenu .awaiting-mod,#adminmenu span.update-plugins,#sidemenu li a span.update-plugins{font-family:Tahoma,Arial,sans-serif;margin-left:0;margin-right:7px}#collapse-button{float:right}@media only screen and (max-width:900px){.auto-fold #wpcontent{margin-left:0;margin-right:52px}.auto-fold.wp-admin #wpfooter{margin-left:15px;margin-right:52px}.auto-fold #adminmenu div.wp-menu-image{float:right;width:30px}.auto-fold #adminmenu .wp-submenu.sub-open,.auto-fold #adminmenu .opensub .wp-submenu,.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,.auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu,.auto-fold #adminmenu a.menu-top:focus+.wp-submenu,.auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus+.wp-submenu,.no-js.auto-fold #adminmenu .wp-has-submenu:hover .wp-submenu{left:auto;right:32px}.auto-fold #adminmenu .wp-not-current-submenu li a{padding-left:0;padding-right:12px}.auto-fold #adminmenu li .wp-menu-arrow{-moz-transform:translate(-27px);-webkit-transform:translate(-27px);-o-transform:translate(-27px);-ms-transform:translate(-27px);transform:translate(-27px)}.auto-fold #adminmenu li.wp-has-current-submenu .wp-submenu{border-width:1px;border-style:solid;-webkit-border-bottom-right-radius:0;-webkit-border-bottom-left-radius:3px;-webkit-border-top-right-radius:0;-webkit-border-top-left-radius:3px;border-bottom-right-radius:0;border-bottom-left-radius:3px;border-top-right-radius:0;border-top-left-radius:3px}}.post-com-count-wrapper{font-family:Tahoma,Arial,sans-serif}.post-com-count{background-image:url(../images/bubble_bg-rtl.gif)}.column-response .post-com-count{float:right;margin-right:0;margin-left:5px}.response-links{float:right}.widefat th{font-family:Tahoma,Arial,sans-serif}.postbox-container{float:right}#post-body-content{float:right}#poststuff #post-body.columns-2{margin-left:300px;margin-right:0}#post-body.columns-2 #postbox-container-1{float:left;margin-left:-300px;margin-right:0}@media only screen and (max-width:850px){#wpbody-content #post-body.columns-2 #postbox-container-1{margin-left:0}}.postbox .handlediv{float:left}#the-comment-list p.comment-author img{float:right;margin-right:0;margin-left:8px}#dashboard_browser_nag p.browser-update-nag.has-browser-icon{padding-right:0;padding-left:125px}.welcome-panel .welcome-panel-close{right:auto;left:10px}.welcome-panel .welcome-panel-close:before{left:auto;right:-12px}.welcome-panel-content{margin-left:0;margin-right:13px}.welcome-panel .welcome-panel-column{float:right}.welcome-panel .welcome-panel-column ul{margin-right:0;margin-left:1em}.welcome-panel .welcome-panel-column li{padding-left:0;padding-right:2px}.welcome-panel .welcome-add-page{background-position:right 2px}.welcome-panel .welcome-edit-page{background-position:right -90px}.welcome-panel .welcome-learn-more{background-position:right -136px}.welcome-panel .welcome-comments{background-position:right -182px}.welcome-panel .welcome-view-site{background-position:right -274px}.welcome-panel .welcome-widgets-menus{background-position:right -229px;line-height:14px}.welcome-panel .welcome-write-blog{background-position:right -44px}.welcome-panel .welcome-icon{padding:2px 32px 8px 0}@media screen and (max-width:870px){.welcome-panel .welcome-panel-column li{margin-right:0;margin-left:13px}.welcome-panel .welcome-icon{padding-right:25px;padding-left:0}}.fixed .column-comments{text-align:right}.fixed .column-comments .vers{padding-left:0;padding-right:3px}.fixed .column-comments a{float:right}.fixed .column-menus{text-align:right}.sorting-indicator{margin-left:0;margin-right:7px}tr.wp-locked .locked-indicator{margin:-2px 6px 0 0}th.sortable a span,th.sorted a span{float:right}.tablenav-pages a{margin-right:0;margin-left:1px}.tablenav-pages .next-page{margin-left:0;margin-right:2px}.tablenav a.button-secondary{margin:3px 0 0 8px}.tablenav .tablenav-pages{float:left}.tablenav .displaying-num{margin-right:0;margin-left:10px;font-family:Tahoma,Arial,sans-serif;font-style:normal}.tablenav .actions{padding:2px 0 0 8px}.tablenav .actions select{float:right;margin-right:0;margin-left:6px}.tablenav .delete{margin-right:0;margin-left:20px}.view-switch{float:left}.filter{float:right;margin:-5px 10px 0 0}.filter .subsubsub{margin-left:0;margin-right:-10px}#posts-filter fieldset{float:right;margin:0 0 1em 1.5ex}#posts-filter fieldset legend{padding:0 1px .2em 0}#wpbody-content .inline-edit-row fieldset{float:right}#wpbody-content .quick-edit-row-page fieldset.inline-edit-col-right .inline-edit-col{border-width:0 1px 0 0}#wpbody-content .bulk-edit-row .inline-edit-col-bottom{float:left}.inline-edit-row fieldset label span.title{float:right}.inline-edit-row fieldset label span.input-text-wrap{margin-left:0;margin-right:5em}.quick-edit-row-post fieldset.inline-edit-col-right label span.title{padding-right:0;padding-left:.5em}#wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child{margin-right:0;margin-left:.5em}.inline-edit-row fieldset span.title,.inline-edit-row fieldset span.checkbox-title{font-family:Tahoma,Arial,sans-serif;font-style:normal}.inline-edit-row fieldset .inline-edit-date{float:right}.inline-edit-row fieldset ul.cat-checklist label,.inline-edit-row #bulk-titles div{font-family:Tahoma,Arial,sans-serif}.quick-edit-row-post fieldset label.inline-edit-status{float:right}#bulk-titles div a{float:right;margin:3px -2px 0 3px;overflow:hidden;text-indent:-9999px}#save-action .spinner,#show-comments a,#show-comments .spinner{float:right}#titlediv #title-prompt-text,#wp-fullscreen-title-prompt-text{right:0}#sample-permalink{direction:ltr}#sample-permalink #editable-post-name{unicode-bidi:embed}#wp-fullscreen-title-prompt-text{left:auto;right:0}#wp-fullscreen-save .spinner,#wp-fullscreen-save .fs-saved{float:left}#edit-slug-box .cancel{margin-right:0;margin-left:10px}.postarea h3 label{float:right}.submitbox .submit{text-align:right}.inside-submitbox #post_status{margin:2px -2px 2px 0}.submitbox .submit input{margin-right:0;margin-left:4px}#normal-sortables .postbox .submit{float:left}.taxonomy div.tabs-panel{margin:0 125px 0 5px}#side-sortables .comments-box thead th,#normal-sortables .comments-box thead th{font-style:normal}#commentsdiv .spinner{padding-left:0;padding-right:5px}#post-body .add-menu-item-tabs li.tabs{border-width:1px 1px 1px 0;margin-right:0;margin-left:-1px}#post-body .tagsdiv #newtag{margin-right:0;margin-left:5px}.autosave-info{padding:2px 2px 2px 15px;text-align:left}#post-body .wp_themeSkin .mceStatusbar a.mceResize{background:transparent url(../images/resize-rtl.gif) no-repeat scroll left bottom;cursor:sw-resize}.curtime #timestamp{background-position:right top;padding-left:0;padding-right:18px}.compat-attachment-fields th{padding-right:0;padding-left:10px}#post-lock-dialog .post-locked-message a.button{margin-right:0;margin-left:10px}#post-lock-dialog .post-locked-avatar{float:right;margin:0 0 20px 20px}#post-lock-dialog .locked-saving img{float:right;margin-right:0;margin-left:3px}.wp-slider .ui-slider-handle.from-handle:before,.wp-slider .ui-slider-handle.to-handle:before{height:8px;width:7px}.wp-slider .ui-slider-handle.from-handle:before{background-position:-5px -10px;left:6px}.wp-slider .ui-slider-handle.to-handle:before{background-position:-4px -29px;left:6px}.revision-toggle-compare-mode{right:auto;left:0}.revisions .loading-indicator{margin-right:-90px}body.folded .revisions .loading-indicator{margin-right:-32px}.revisions-next{float:left}.revisions-previous{float:right}.diff-title strong{text-align:left;float:right;margin-right:0;margin-left:5px}.revisions-controls .author-card .avatar,.revisions-controls .author-card .author-info{float:right}.diff-meta input.restore-revision{float:left}.diff-col-title-added,.diff-col-title-removed{text-align:right;float:right}.revisions-tooltip{margin-left:0;margin-right:-69px}.revisions-tooltip.flipped{margin-right:0;margin-left:-70px}.ie8 .revisions-tooltip{margin-right:-75px}.ie8 .revisions-tooltip.flipped{margin-left:-63px}.revisions-tooltip-arrow{right:0;margin-left:0;margin-right:35px}.revisions-tooltip.flipped .revisions-tooltip-arrow{margin-right:0;margin-left:35px;right:auto;left:0}.revisions-tooltip-arrow>span{left:auto;right:20px}.revisions-tooltip.flipped .revisions-tooltip-arrow>span{right:auto;left:20px}.ie8 .revisions-tooltip-arrow>span{right:21px}.revisions-tickmarks>div{float:right;border-width:0 0 0 1px}#select-featured-image a{float:right}a.post-state-format{margin-right:0;margin-left:5px}label.post-format-icon{margin-left:0;margin-right:5px;padding-left:0;padding-right:21px}.post-format-icon.post-format-standard{background-position:100% 0}.post-format-icon.post-format-image{background-position:100% -32px}.post-format-icon.post-format-gallery{background-position:100% -64px}.post-format-icon.post-format-audio{background-position:100% -96px}.post-format-icon.post-format-video{background-position:100% -128px}.post-format-icon.post-format-chat{background-position:100% -160px}.post-format-icon.post-format-status{background-position:100% -192px}.post-format-icon.post-format-aside{background-position:100% -224px}.post-format-icon.post-format-quote{background-position:100% -256px}.post-format-icon.post-format-link{background-position:100% -288px}.category-adder{margin-left:0;margin-right:120px}#post-body ul.add-menu-item-tabs{float:right;text-align:left;margin:0 5px 0 -120px}#post-body ul.add-menu-item-tabs li.tabs{-webkit-border-top-left-radius:0;-webkit-border-top-right-radius:3px;-webkit-border-bottom-left-radius:0;-webkit-border-bottom-right-radius:3px;border-top-left-radius:0;border-top-right-radius:3px;border-bottom-left-radius:0;border-bottom-right-radius:3px}#front-page-warning,#front-static-pages ul,ul.export-filters,.inline-editor ul.cat-checklist ul,.categorydiv ul.categorychecklist ul,.customlinkdiv ul.categorychecklist ul,.posttypediv ul.categorychecklist ul,.taxonomydiv ul.categorychecklist ul{margin-left:0;margin-right:18px}#post-body .add-menu-item-tabs li.tabs{border-style:solid solid solid none;border-width:1px 1px 1px 0;margin-right:0;margin-left:-1px}p.help,p.description,span.description,.form-wrap p{font-style:normal;font-family:Tahoma,Arial,sans-serif}.taghint{margin:15px 12px -24px 0}#poststuff .tagsdiv .howto{margin:0 8px 6px 0}.ac_results li{text-align:right}.links-table th{text-align:right}#wpbody-content .describe th{text-align:right}.describe .media-item-info .A1B1{padding:0 10px 0 0}.media-upload-form td label{margin-left:6px;margin-right:2px}.media-upload-form .align .field label{padding:0 23px 0 0;margin:0 3px 0 1em}.media-upload-form tr.image-size label{margin:0 5px 0 0}#wpbody-content .describe p.help{padding:0 5px 0 0}.media-item .edit-attachment,.media-item .error-div a.dismiss,.describe-toggle-on,.describe-toggle-off{float:left;margin-right:0;margin-left:15px}.media-item .error-div a.dismiss{padding:0 15px 0 0}.media-item .error-div{padding-left:0;padding-right:10px}.media-item .pinkynail{float:right}.media-item .describe td{padding:0 0 8px 8px}.media-item .progress{float:left;margin:6px 0 0 10px}#find-posts-input{float:right}#find-posts-search{float:right;margin-right:3px;margin-left:4px}.find-box-search .spinner{left:auto;right:115px}#find-posts-response .found-radio{padding:5px 8px 0 0}.find-box-search label{padding-right:0;padding-left:6px}.find-box #resize-se{right:auto;left:1px}form.upgrade .hint{font-style:normal}.wp_attachment_image .button,.A1B1 .button{float:right}.wp_attachment_image .spinner,.A1B1 .spinner{float:right}.imgedit-menu div{float:right}.imgedit-crop{margin:0}.imgedit-rleft,.imgedit-flipv,.imgedit-undo{margin:0 8px 0 3px}.imgedit-rright,.imgedit-fliph,.imgedit-redo{margin:0 3px}.imgedit-applyto img{margin:0 0 0 8px}.imgedit-help{font-style:normal}.imgedit-submit-btn{margin-left:0;margin-right:20px}.form-table th{text-align:right}.form-table input.tog{margin-right:0;margin-left:2px;float:right}.form-table table.color-palette{float:right}#replysubmit .spinner,.inline-edit-save .spinner{float:left}#replysubmit .button{margin-right:0;margin-left:5px}#edithead .inside{float:right;padding:3px 5px 2px 0}.comment-ays th{border-right-style:none;border-left-style:solid;border-right-width:0;border-left-width:1px}.spam-undo-inside .avatar,.trash-undo-inside .avatar{margin-left:8px}#comment-status-radio input{margin:2px 0 5px 3px}h3.available-themes{float:right}.available-theme{margin-right:0;margin-left:10px;padding:20px 0 20px 20px}#current-theme .theme-info li,.theme-options li,.available-theme .action-links li{float:right;padding-right:0;padding-left:10px;margin-right:0;margin-left:10px;border-right:0;border-left:1px solid #dfdfdf}.available-theme .action-links li{padding-left:8px;margin-left:8px}.ie8 .available-theme .action-links li{padding-left:7px;margin-left:7px}#current-theme .theme-info li:last-child,.theme-options li:last-child,.available-theme .action-links li:last-child{padding-left:0;margin-right:0;border-left:0}.available-theme .action-links .delete-theme{float:left;margin-left:0;margin-right:8px}.available-theme .action-links p{float:right}#current-theme.has-screenshot{padding-left:0;padding-right:330px}#current-theme h4 span{margin-left:0;margin-right:20px}#current-theme img{float:right;width:300px;margin-left:0;margin-right:-330px}.theme-options .load-customize{margin-right:0;margin-left:30px;float:right}.theme-options span{float:right;margin-right:0;margin-left:10px}.theme-options ul{float:right}@media only screen and (max-width:1200px){#current-theme.has-screenshot{padding-right:270px}#current-theme img{margin-right:-270px;width:240px}}#broken-themes{text-align:right}.appearance_page_custom-header .available-headers .default-header{float:right;margin:0 0 20px 20px}.appearance_page_custom-header .random-header{margin:0 0 20px 20px}.appearance_page_custom-header .available-headers label input,.appearance_page_custom-header .random-header label input{margin-right:0;margin-left:10px}.nav-tab{margin:0 0 -1px 6px}h2 .nav-tab{font-family:Tahoma,Arial,sans-serif}.plugins .desc ul,.plugins .desc ol{margin:0 2em 0 0}#wpbody-content .plugins .plugin-title,#wpbody-content .plugins .theme-title{padding-right:0;padding-left:12px}#profile-page .form-table #rich_editing{margin-right:0;margin-left:5px}#profile-page #pass1,#profile-page #pass2,#profile-page #user_login{direction:ltr}#your-profile legend{font-family:Tahoma,Arial,sans-serif}.pressthis a span{background-position:right 5px;padding:8px 27px 8px 11px}.pressthis a:after{right:auto;left:10px;background:transparent;transform:skew(-20deg) rotate(-6deg);-webkit-transform:skew(-20deg) rotate(-6deg);-moz-transform:skew(-20deg) rotate(-6deg)}.pressthis a:hover:after{transform:skew(-20deg) rotate(-9deg);-webkit-transform:skew(-20deg) rotate(-9deg);-moz-transform:skew(-20deg) rotate(-9deg)}#utc-time,#local-time{padding-left:0;padding-right:25px;font-style:normal;font-family:Tahoma,Arial,sans-serif}#permalink_structure{float:right}.options-permalink-php code{unicode-bidi:embed}.options-permalink-php #rules{direction:ltr}#wpfooter{margin-left:20px}#wpcontent,#wpfooter{margin-right:165px}.wrap.about-wrap{margin-left:40px;margin-right:20px}.about-wrap h1,.about-text{margin-right:0;margin-left:200px}.about-wrap h2.nav-tab-wrapper{padding-left:0;padding-right:6px}.about-wrap .wp-badge{right:auto;left:0}.about-wrap h2 .nav-tab{margin-right:0;margin-left:3px}.about-wrap .changelog li{margin-left:0;margin-right:3em}.about-wrap .three-col-images .last-feature{float:left}.about-wrap .three-col-images .first-feature{float:right}.about-wrap .feature-section.two-col div,.about-wrap .feature-section.three-col div{margin-right:0;margin-left:4.999999999%;float:right}.about-wrap .feature-section.col .last-feature{margin-left:0}.about-wrap .feature-section div p img{float:left;margin-left:0;margin-right:10px}.about-wrap li.wp-person,.about-wrap li.wp-person img.gravatar{float:right;margin-right:0;margin-left:10px}#template div{margin-right:0;margin-left:190px}.column-author img,.column-username img{float:right;margin-right:0;margin-left:10px}.tagchecklist{margin-left:0;margin-right:14px}.tagchecklist strong{margin-left:0;margin-right:-8px}.tagchecklist span{margin-right:0;margin-left:25px;float:right}.tagchecklist span a{margin:4px -10px 0 0;float:right}#poststuff h2{clear:right}#poststuff h3,.metabox-holder h3{font-family:Tahoma,Arial,sans-serif}.tool-box .title{font-family:Tahoma,Arial,sans-serif}#sidemenu{margin:-30px 315px 0 15px;float:left;padding-left:0;padding-right:10px}#sidemenu a{float:right}table .vers,table .column-visible,table .column-rating{text-align:right}.screen-meta-toggle{right:auto;left:15px}.screen-reader-text,.screen-reader-text span,.ui-helper-hidden-accessible{left:auto;right:-1000em}.screen-reader-shortcut:focus{left:auto;right:6px}* html #template div{margin-left:0}#editorcontainer .wp_themeSkin .mceStatusbar{padding-left:0;padding-right:5px}#editorcontainer .wp_themeSkin .mceStatusbar div{float:right}#editorcontainer .wp_themeSkin .mceStatusbar a.mceResize{float:left}#content-resize-handle{background:transparent url(../images/resize-rtl.gif) no-repeat scroll left bottom;right:auto;left:2px;cursor:sw-resize}.wp-full-overlay .wp-full-overlay-sidebar{margin:0;left:auto;right:0;border-right:0;border-left:1px solid rgba(0,0,0,.2)}.wp-full-overlay-sidebar:after{right:auto;left:0;box-shadow:inset 5px 0 4px -4px rgba(0,0,0,.1)}.wp-full-overlay.collapsed,.wp-full-overlay.expanded .wp-full-overlay-sidebar{margin-right:0!important}.wp-full-overlay.expanded{margin-right:300px;margin-left:0}.wp-full-overlay.collapsed .wp-full-overlay-sidebar{margin-right:-300px;margin-left:0}.wp-full-overlay a.collapse-sidebar{left:auto;right:0;margin-left:0;margin-right:15px}.wp-full-overlay.collapsed .collapse-sidebar{right:100%}.wp-full-overlay .collapse-sidebar-arrow{margin-right:2px;margin-left:0;background:transparent url(../images/arrows.png) no-repeat 1px -108px}.wp-full-overlay.collapsed .collapse-sidebar-arrow{background-position:0 -72px}.wp-full-overlay .collapse-sidebar-label{right:100%;left:auto;margin-right:10px;margin-left:0}.install-theme-info .theme-install{float:left}#wpcontent{margin-left:0;margin-right:165px}#wpbody-content{float:right}#adminmenuwrap{float:right}#adminmenu{clear:right}.inner-sidebar{float:left;clear:left}.has-right-sidebar #post-body{float:right;clear:right;margin-right:0;margin-left:-340px}.has-right-sidebar #post-body-content{margin-right:0;margin-left:300px}#col-right{float:left;clear:left}.alignleft{float:right}.alignright{float:left}.textleft{text-align:right}.textright{text-align:left}body,td,textarea,input,select{font-family:Tahoma,Arial,sans-serif}ul.ul-disc,ul.ul-square,ol.ol-decimal{margin-left:0;margin-right:1.8em}.subsubsub{float:right}.widefat thead th:first-of-type{-webkit-border-top-left-radius:0;-webkit-border-top-right-radius:3px;border-top-left-radius:0;border-top-right-radius:3px}.widefat thead th:last-of-type{-webkit-border-top-right-radius:0;-webkit-border-top-left-radius:3px;border-top-right-radius:0;border-top-left-radius:3px}.widefat tfoot th:first-of-type{-webkit-border-bottom-left-radius:0;-webkit-border-bottom-right-radius:3px;border-bottom-left-radius:0;border-bottom-right-radius:3px}.widefat tfoot th:last-of-type{-webkit-border-bottom-right-radius:0;-webkit-border-bottom-left-radius:3px;border-bottom-right-radius:0;border-bottom-left-radius:3px}.widefat th{text-align:right}.widefat th input{margin:0 8px 0 0}.wrap{margin-right:0;margin-left:15px}.wrap h2,.subtitle{font-family:Tahoma,Arial,sans-serif}.wrap h2{padding-right:0;padding-left:15px}.subtitle{padding-left:0;padding-right:25px}.wrap .add-new-h2{font-family:Tahoma,Arial,sans-serif;margin-left:0;margin-right:4px}.wrap h2.long-header{padding-left:0}#dashboard-widgets-wrap .has-sidebar{margin-right:0;margin-left:-51%}#dashboard-widgets-wrap .has-sidebar .has-sidebar-content{margin-right:0;margin-left:51%}.view-all{right:auto;left:0}#dashboard_right_now p.sub,#dashboard-widgets h4,a.rsswidget,#dashboard_plugins h4,#dashboard_plugins h5,#dashboard_recent_comments .comment-meta .approve,#dashboard_right_now td.b,#dashboard_right_now .versions a{font-family:Tahoma,Arial,sans-serif}#dashboard_right_now p.sub{left:auto;right:15px}#dashboard_right_now td.b{padding-right:0;padding-left:6px;text-align:left}#dashboard_right_now .t{padding-right:0;padding-left:12px}#dashboard_right_now .table_content{float:right}#dashboard_right_now .table_discussion{float:left}#dashboard_right_now a.button{float:left;clear:left}#dashboard_plugins .inside span{padding-left:0;padding-right:5px}#dashboard-widgets h3 .postbox-title-action{right:auto;left:10px}.js #dashboard-widgets h3 .postbox-title-action{right:auto;left:30px}#the-comment-list .pingback{padding-left:0!important;padding-right:9px!important}#the-comment-list .comment-item{padding:1em 70px 1em 10px}#the-comment-list .comment-item .avatar{float:right;margin-left:0;margin-right:-60px}.rss-widget cite{text-align:left}.rss-widget span.rss-date{font-family:Tahoma,Arial,sans-serif;margin-left:0;margin-right:3px}#dashboard-widgets #dashboard_quick_press form p.submit input{float:right}#dashboard-widgets #dashboard_quick_press form p.submit #save-post{margin:0 1px 0 .7em}#dashboard-widgets #dashboard_quick_press form p.submit #publish{float:left}#dashboard-widgets #dashboard_quick_press form p.submit .spinner{margin:4px 0 0 6px}#dashboard_recent_drafts h4 abbr{font-family:Tahoma,Arial,sans-serif;margin-left:0;margin-right:3px}body.login{font-family:Tahoma,Arial,sans-serif}.login form{margin-right:8px;margin-left:0}.login form .forgetmenot{float:right}.login form .submit{float:left}#login form .submit input{font-family:Tahoma,Arial,sans-serif}.login #nav,.login #backtoblog{margin:0 16px 0 0}#login_error,.login .message{margin:0 8px 16px 0}.login #user_pass,.login #user_login,.login #user_email{margin-left:6px;margin-right:0;direction:ltr}.login h1 a{text-decoration:none}.login .button-primary{float:left}#nav-menus-frame{margin-right:300px;margin-left:0}#wpbody-content #menu-settings-column{margin-right:-300px;margin-left:0;float:right}.menu-location-menus select{float:right}.locations-row-links{float:right;margin:4px 6px 0 0}.locations-add-menu-link{direction:rtl}.locations-edit-menu-link{border-left:1px solid #CCC;border-right:0;padding-left:6px;padding-right:0;float:right}#menu-management-liquid{float:right}#menu-management{margin-left:20px;margin-right:0}.post-body-plain{padding:10px 0 0 10px}#menu-management .nav-tabs-arrow-left{right:0;left:auto}#menu-management .nav-tabs-arrow-right{left:0;right:auto;text-align:left;font-family:Tahoma,Arial,sans-serif}#menu-management .nav-tabs{padding-right:20px;padding-left:10px}.js #menu-management .nav-tabs{float:right;margin-right:0;margin-left:-400px}#select-nav-menu-container{text-align:left}#wpbody .open-label{float:right}#wpbody .open-label span{padding-left:10px;padding-right:0}.js .input-with-default-title{font-style:normal;font-weight:700}.postbox .howto input,.accordion-container .howto input{float:left}#nav-menu-theme-locations .button-controls{text-align:left}.meta-sep,.submitcancel{float:right}#cancel-save{margin-left:0;margin-right:20px}.button.right,.button-secondary.right,.button-primary.right{float:left}.list-controls{float:right}.add-to-menu{float:left}#add-custom-link label span{float:right;padding-left:5px;padding-right:0}.nav-menus-php .howto span{float:right}.list li .menu-item-title input{margin-left:3px;margin-right:0}.menu-item-handle{padding-right:10px;padding-left:0}.menu-item-edit-active .menu-item-handle{-webkit-border-bottom-left-radius:0;-webkit-border-bottom-right-radius:0;border-bottom-left-radius:0;border-bottom-right-radius:0}.menu-item-handle .item-title{margin-left:13em;margin-right:0;overflow:hidden}.menu-item-handle .item-edit{right:auto;left:-20px}.menu-item-handle .menu-item-title{float:right}.menu-item-settings .field-move a,.menu-item-settings .field-move span{float:right;margin-left:4px}.menu-item-depth-0{margin-right:0;margin-left:0}.menu-item-depth-1{margin-right:30px;margin-left:0}.menu-item-depth-2{margin-right:60px;margin-left:0}.menu-item-depth-3{margin-right:90px;margin-left:0}.menu-item-depth-4{margin-right:120px;margin-left:0}.menu-item-depth-5{margin-right:150px;margin-left:0}.menu-item-depth-6{margin-right:180px;margin-left:0}.menu-item-depth-7{margin-right:210px;margin-left:0}.menu-item-depth-8{margin-right:240px;margin-left:0}.menu-item-depth-9{margin-right:270px;margin-left:0}.menu-item-depth-10{margin-right:300px;margin-left:0}.menu-item-depth-11{margin-right:330px;margin-left:0}.menu-item-depth-0 .menu-item-transport{margin-right:0;margin-left:0}.menu-item-depth-1 .menu-item-transport{margin-right:-30px;margin-left:0}.menu-item-depth-2 .menu-item-transport{margin-right:-60px;margin-left:0}.menu-item-depth-3 .menu-item-transport{margin-right:-90px;margin-left:0}.menu-item-depth-4 .menu-item-transport{margin-right:-120px;margin-left:0}.menu-item-depth-5 .menu-item-transport{margin-right:-150px;margin-left:0}.menu-item-depth-6 .menu-item-transport{margin-right:-180px;margin-left:0}.menu-item-depth-7 .menu-item-transport{margin-right:-210px;margin-left:0}.menu-item-depth-8 .menu-item-transport{margin-right:-240px;margin-left:0}.menu-item-depth-9 .menu-item-transport{margin-right:-270px;margin-left:0}.menu-item-depth-10 .menu-item-transport{margin-right:-300px;margin-left:0}.menu-item-depth-11 .menu-item-transport{margin-right:-330px;margin-left:0}.item-type{padding-left:10px;padding-right:0}.item-controls{left:20px;right:auto}.item-controls .item-order{padding-left:10px;padding-right:0}.item-edit{left:-20px;right:auto;-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:0;border-bottom-right-radius:3px;border-bottom-left-radius:0}.menu-item-settings{padding:10px 10px 10px 0;border-width:0 1px 1px}#custom-menu-item-url{direction:ltr}.link-to-original{font-style:normal;font-weight:700}.link-to-original a{padding-right:4px;padding-left:0}.menu-item-settings .description-thin,.menu-item-settings .description-wide{margin-left:10px;margin-right:0;float:right}.major-publishing-actions .publishing-action{text-align:left;float:left}.major-publishing-actions .delete-action{text-align:right;float:right;padding-left:15px;padding-right:0}.menu-name-label{margin-left:15px;margin-right:0}div.star-holder{background:url(../images/stars-rtl.png?ver=20121108) repeat-x bottom right}div.star-holder .star-rating{background:url(../images/stars-rtl.png?ver=20121108) repeat-x top right;float:right}#plugin-information .wrap{margin:4px 15px 0 0}#plugin-information ul#sidemenu{left:auto;right:0}#plugin-information .fyi{float:right}#plugin-information #section-screenshots li p{padding-left:0;padding-right:20px}#plugin-information .updated,#plugin-information .error{clear:none;direction:rtl}#plugin-information #section-holder .section{direction:ltr}.posting{margin-left:212px;margin-right:0;position:relative}h3.tb{margin-left:0;margin-right:5px}#publish{float:left}.postbox .handlediv{float:left}.actions li{float:right;margin-right:0;margin-left:10px}#extra-fields .actions{margin:-23px 0 0 -7px}#img_container a{float:right}#category-add input,#category-add select{font-family:Tahoma,Arial,sans-serif}#tagsdiv #newtag{margin-right:0;margin-left:5px}#tagadd{margin-left:0;margin-right:3px}#tagchecklist span{margin-left:.5em;margin-right:10px;float:right}#tagchecklist span a{margin:6px -9px 0 0;float:right}.submit input,.button,.button-primary,.button-secondary,#postcustomstuff .submit input{font-family:Tahoma,Arial,sans-serif}.ac_results li{text-align:right}#TB_ajaxContent #options{right:auto;left:25px}#TB_closeAjaxWindow{float:left}#TB_ajaxWindowTitle{float:right}#post_status{margin-left:0;margin-right:10px}#templateside{float:left}#template textarea,#docs-list{direction:ltr}.theme-details .theme-version{float:right}.theme-details .star-holder{float:left}.feature-filter .feature-group{float:right}.feature-filter .feature-group li{padding-right:0;padding-left:25px}div.widget-liquid-left{float:right;clear:right;margin-right:0;margin-left:-325px}div#widgets-left{margin-right:5px;margin-left:325px}div.widget-liquid-right{float:left;clear:left}.inactive-sidebar .widget{float:right}div.sidebar-name h3{font-family:Tahoma,Arial,sans-serif}#widget-list .widget{float:right}.inactive-sidebar .widget-placeholder{float:right}.widget-top .widget-title-action{float:left}.widget-control-edit{padding:0 0 0 8px}.sidebar-name-arrow{float:left}.press-this-sidebar{float:left}.press-this #header-logo,.press-this #wphead h1{float:right}.ltr{direction:ltr}.control-section .accordion-section-title{font-family:Tahoma,Arial,sans-serif}.js .accordion-section-title:after{right:auto;left:20px}.nav-menus-php .major-publishing-actions .publishing-action{float:left}.menu-settings dd{float:right}.manage-menus span{float:right}.manage-menus select{float:right;margin-right:0;margin-left:6px}.manage-menus .submit-btn{float:right}.manage-menus .selected-menu{float:right;margin:5px 0 0 6px}.nav-menus-php .add-new-menu-action{float:right;margin:4px 6px 0 0}.nav-menus-php .meta-sep,.nav-menus-php .submitdelete,.nav-menus-php .submitcancel{float:right}.is-submenu{float:right;margin-right:8px}@media print,(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.post-com-count{background-image:url(../images/bubble_bg-rtl-2x.gif);background-size:18px 100px}#content-resize-handle,#post-body .wp_themeSkin .mceStatusbar a.mceResize{background:transparent url(../images/resize-rtl-2x.gif) no-repeat scroll right bottom;background-size:11px 11px}.wp-full-overlay .collapse-sidebar-arrow{background-image:url(../images/arrows-2x.png);background-size:15px 123px}div.star-holder{background:url(../images/stars-rtl-2x.png?ver=20121108) repeat-x bottom right;background-size:21px 37px}div.star-holder .star-rating{background:url(../images/stars-rtl-2x.png?ver=20121108) repeat-x top right;background-size:21px 37px}#post-body .wp_themeSkin .mceStatusbar a.mceResize,#content-resize-handle{background:transparent url(../images/resize-rtl-2x.gif) no-repeat scroll left bottom}.wp-slider .ui-slider-handle:before{background-image:url(../images/arrows-pr-2x.png);background-size:16px 102px}}body.locale-he-il,.locale-he-il .quicktags,.locale-he-il .search,.locale-he-il .howto,.locale-he-il #adminmenu .awaiting-mod,.locale-he-il #adminmenu span.update-plugins,.locale-he-il #sidemenu li a span.update-plugins,.locale-he-il .post-com-count-wrapper,.locale-he-il .widefat th,.locale-he-il .tablenav .displaying-num,.locale-he-il .inline-edit-row fieldset span.title,.locale-he-il .inline-edit-row fieldset span.checkbox-title,.locale-he-il .inline-edit-row fieldset ul.cat-checklist label,.locale-he-il .inline-edit-row #bulk-titles div,.locale-he-il p.help,.locale-he-il p.description,.locale-he-il span.description,.locale-he-il .form-wrap p,.locale-he-il h2 .nav-tab,.locale-he-il #your-profile legend,.locale-he-il #utc-time,.locale-he-il #local-time,.locale-he-il #poststuff h3,.locale-he-il .metabox-holder h3,.locale-he-il .tool-box .title,.locale-he-il td,.locale-he-il textarea,.locale-he-il input,.locale-he-il select,.locale-he-il .wrap h2,.locale-he-il .subtitle,.locale-he-il .wrap .add-new-h2,.locale-he-il #dashboard_right_now p.sub,.locale-he-il #dashboard-widgets h4,.locale-he-il a.rsswidget,.locale-he-il #dashboard_plugins h4,.locale-he-il #dashboard_plugins h5,.locale-he-il #dashboard_recent_comments .comment-meta .approve,.locale-he-il #dashboard_right_now td.b,.locale-he-il #dashboard_right_now .versions a,.locale-he-il .rss-widget span.rss-date,.locale-he-il #dashboard_recent_drafts h4 abbr,body.login.locale-he-il,.locale-he-il #login form .submit input,.locale-he-il #menu-management .nav-tabs-arrow-right,.locale-he-il #category-add input,.locale-he-il #category-add select,.locale-he-il .submit input,.locale-he-il .button,.locale-he-il .button-primary,.locale-he-il .button-secondary,.locale-he-il #postcustomstuff .submit input,.locale-he-il div.sidebar-name h3{font-family:Arial,sans-serif}.locale-he-il em{font-style:normal;font-weight:700}
\ No newline at end of file
+#wpwrap{height:auto;min-height:100%;width:100%;position:relative;-webkit-font-smoothing:subpixel-antialiased}#wpcontent{height:100%}#wpcontent,#wpfooter{margin-right:180px}.folded #wpcontent,.folded #wpfooter{margin-right:56px}#wpbody-content{padding-bottom:65px;float:right;width:100%;overflow:visible!important}.inner-sidebar{float:left;clear:left;display:none;width:281px;position:relative}.columns-2 .inner-sidebar{margin-left:auto;width:286px;display:block}.columns-2 .inner-sidebar #side-sortables,.inner-sidebar #side-sortables{min-height:300px;width:280px;padding:0}.has-right-sidebar .inner-sidebar{display:block}.has-right-sidebar #post-body{float:right;clear:right;width:100%;margin-left:-2000px}.has-right-sidebar #post-body-content{margin-left:300px;float:none;width:auto}#col-container,#col-left,#col-right{overflow:hidden;padding:0;margin:0}#col-left{width:35%}#col-right{float:left;clear:left;width:65%}.col-wrap{padding:0 7px}.alignleft{float:right}.alignright{float:left}.textleft{text-align:right}.textright{text-align:left}.clear{clear:both}.screen-reader-text,.screen-reader-text span,.ui-helper-hidden-accessible{position:absolute;margin:-1px;padding:0;height:1px;width:1px;overflow:hidden;clip:rect(0 0 0 0);border:0}.screen-reader-shortcut{position:absolute;top:-1000em}.screen-reader-shortcut:focus{right:6px;top:-25px;height:auto;width:auto;display:block;font-size:14px;font-weight:600;padding:15px 23px 14px;background:#f1f1f1;color:#21759b;z-index:100000;line-height:normal;-webkit-box-shadow:0 0 2px 2px rgba(0,0,0,.6);box-shadow:0 0 2px 2px rgba(0,0,0,.6);text-decoration:none;outline:0}.hidden,.js .closed .inside,.js .hide-if-js,.js .wp-core-ui .hide-if-js,.js.wp-core-ui .hide-if-js,.no-js .hide-if-no-js,.no-js .wp-core-ui .hide-if-no-js,.no-js.wp-core-ui .hide-if-no-js{display:none}#menu-management .menu-edit,#menu-settings-column .accordion-container,.feature-filter,.imgedit-group,.manage-menus,.menu-item-handle,.popular-tags,.stuffbox,.widget-inside,.widget-top,.widgets-holder-wrap,.wp-editor-container,p.popular-tags,table.widefat{border:1px solid #e5e5e5;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.04);box-shadow:0 1px 1px rgba(0,0,0,.04)}.feature-filter,.imgedit-group,.popular-tags,.stuffbox,.widgets-holder-wrap,.wp-editor-container,p.popular-tags,table.widefat{background:#fff}body,html{height:100%;margin:0;padding:0}html{background:#f1f1f1}body{color:#444;font-family:"Open Sans",sans-serif;font-size:13px;line-height:1.4em;min-width:600px}body.iframe{min-width:0;padding-top:1px}iframe,img{border:0}td{font-family:inherit;font-size:inherit;font-weight:inherit;line-height:inherit}a{color:#0074a2;-webkit-transition-property:border,background,color;transition-property:border,background,color;-webkit-transition-duration:.05s;transition-duration:.05s;-webkit-transition-timing-function:ease-in-out;transition-timing-function:ease-in-out}a,div{outline:0}a:active,a:hover{color:#2ea2cc}a:focus{color:#124964}a:active,a:focus{outline:thin dotted}#adminmenu a:active,#adminmenu a:focus,.screen-reader-text:focus{outline:0}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}p{font-size:13px;line-height:1.5;margin:1em 0}blockquote{margin:1em}dd,li{margin-bottom:6px}h1,h2,h3,h4,h5,h6{display:block;font-weight:600}h1{font-size:2em;margin:.67em 0}h2{color:#222;font-size:1.5em;margin:.83em 0;font-weight:400}h3{color:#222;font-size:1.3em;margin:1em 0}h4{font-size:1em;margin:1.33em 0}h5{font-size:.83em;margin:1.67em 0}h6{font-size:.67em;margin:2.33em 0}ol,ul{padding:0}ul{list-style:none}ol{list-style-type:decimal;margin-right:2em}ul.ul-disc{list-style:disc outside}ul.ul-square{list-style:square outside}ol.ol-decimal{list-style:decimal outside}ol.ol-decimal,ul.ul-disc,ul.ul-square{margin-right:1.8em}ol.ol-decimal>li,ul.ul-disc>li,ul.ul-square>li{margin:0 0 .5em}.ltr{direction:ltr}.code,code{font-family:Consolas,Monaco,monospace;direction:ltr}code,kbd{padding:3px 5px 2px;margin:0 1px;background:#eaeaea;background:rgba(0,0,0,.07);font-size:13px}.subsubsub{list-style:none;margin:8px 0 0;padding:0;font-size:13px;float:right;color:#666}.subsubsub a{line-height:2;padding:.2em;text-decoration:none}.subsubsub a .count,.subsubsub a.current .count{color:#999;font-weight:400}.subsubsub a.current{font-weight:600;border:0}.subsubsub li{display:inline-block;margin:0;padding:0;white-space:nowrap}.widefat{border-spacing:0;width:100%;clear:both;margin:0}.widefat *{word-wrap:break-word}.widefat a{text-decoration:none}.widefat td,.widefat th{padding:8px 10px}.widefat thead th{border-bottom:1px solid #e1e1e1}.widefat tfoot th{border-top:1px solid #e1e1e1;border-bottom:0}.widefat .no-items td{border-bottom-width:0}.widefat td{vertical-align:top}.widefat td,.widefat td ol,.widefat td p,.widefat td ul{font-size:13px;line-height:1.5em}.widefat th{text-align:right;line-height:1.3em;font-size:14px}.widefat th input{margin:0 8px 0 0;padding:0;vertical-align:text-top}.widefat .check-column{width:2.2em;padding:6px 0 25px;vertical-align:top}.widefat th input[type=checkbox]{margin-top:-1px}.widefat.media .check-column{padding-top:8px}.widefat tbody th.check-column,.widefat tfoot th.check-column,.widefat thead th.check-column{padding:11px 3px 0 0}.widefat thead th.check-column{padding-top:10px}.update-php div.error,.update-php div.updated{margin-right:0}.no-js .widefat tfoot .check-column input,.no-js .widefat thead .check-column input{display:none}.column-comments,.column-links,.column-posts,.widefat .num{text-align:center}.widefat th#comments{vertical-align:middle}.wrap{margin:10px 2px 0 20px}div.error,div.updated{margin:5px 15px 2px}div.error p,div.updated p{margin:.5em 0;padding:2px}.media-upload-form div.error,.wrap div.error,.wrap div.updated{margin:5px 0 15px}div.updated{border-right:4px solid #7ad03a;padding:1px 12px;background-color:#fff;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}div.error{border-right:4px solid #dd3d36;background:#fff;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1);padding:1px 12px}.attention{color:#2ea2cc}.subtitle,.wrap h2{font-weight:400;margin:0}.wrap h2{font-size:23px;font-weight:400;padding:9px 0 4px 15px;line-height:29px}.subtitle{color:#777;font-size:14px;padding-right:25px}.wrap .add-new-h2,.wrap .add-new-h2:active{margin-right:4px;padding:4px 8px;position:relative;top:-3px;text-decoration:none;border:0;-webkit-border-radius:2px;border-radius:2px;background:#e0e0e0;text-shadow:none;font-weight:600;font-size:13px}.wrap .add-new-h2:hover{background:#2ea2cc;color:#fff}.wrap h2.long-header{padding-left:0}.wp-dialog{background-color:#fff}.sorthelper{background-color:#ccf3fa}.ac_match,.subsubsub a.current{color:#000}.alt,.alternate{background-color:#f9f9f9}.bar{background-color:#e8e8e8;border-left-color:#99d}.media-upload-form label.form-help,td.help{color:#9a9a9a}.highlight{background-color:#e4f2fd;color:#000}.wp-ui-primary{color:#fff;background-color:#333}.wp-ui-text-primary{color:#333}.wp-ui-highlight{color:#fff;background-color:#1e8cbe}.wp-ui-text-highlight{color:#1e8cbe}.wp-ui-notification{color:#fff;background-color:#d54e21}.wp-ui-text-notification{color:#d54e21}.wp-ui-text-icon{color:#999}#nav-menu-footer,#nav-menu-header,#your-profile #rich_editing,.checkbox,.control-section .accordion-section-title,.menu-item-handle,.postbox h3,.side-info,.sidebar-name,.stuffbox h3,.widefat tfoot th,.widefat thead th,.widget .widget-top,h3.dashboard-widget-title,h3.dashboard-widget-title small,h3.dashboard-widget-title span{line-height:1.4em}.menu-item-handle,.widget .widget-top{background:#fafafa;color:#222}#namediv h3,#submitdiv h3,.postbox h3{border-bottom:1px solid #eee}.quicktags,.search{background-color:#ccc;color:#000;font-size:12px}.icon32{display:none}#bulk-titles div a:before,#welcome-panel.welcome-panel .welcome-panel-close::before,.tagchecklist span a:before{background:0 0;color:#bbb;content:'\f153';display:block!important;font:400 16px/1 dashicons;speak:none;height:20px;margin:2px 0;text-align:center;width:20px;-webkit-font-smoothing:antialiased!important}#bulk-titles div a:hover:before,#welcome-panel.welcome-panel .welcome-panel-close:hover:before,.tagchecklist span a:hover:before{color:#c00}.key-labels label{line-height:24px}b,strong{font-weight:600}.pre{white-space:pre-wrap;word-wrap:break-word}.howto{color:#666;font-style:italic;display:block}p.install-help{margin:8px 0;font-style:italic}.no-break{white-space:nowrap}hr{border:0;border-top:1px solid #ddd;border-bottom:1px solid #fafafa}#all-plugins-table .plugins a.delete,#media-items a.delete,#media-items a.delete-permanently,#nav-menu-footer .menu-delete,#search-plugins-table .plugins a.delete,.plugins a.delete,.row-actions span.delete a,.row-actions span.spam a,.row-actions span.trash a,.submitbox .submitdelete{color:#a00}#all-plugins-table .plugins a.delete:hover,#media-items a.delete-permanently:hover,#media-items a.delete:hover,#nav-menu-footer .menu-delete:hover,#search-plugins-table .plugins a.delete:hover,.file-error,.plugins a.delete:hover,.row-actions .delete a:hover,.row-actions .spam a:hover,.row-actions .trash a:hover,.submitbox .submitdelete:hover,.widget-control-remove:hover,abbr.required{color:red;text-decoration:none;border:0}#major-publishing-actions{padding:10px;clear:both;border-top:1px solid #ddd;background:#f5f5f5}#delete-action{line-height:28px;vertical-align:middle;text-align:right;float:right}#publishing-action{text-align:left;float:left;line-height:23px}#publishing-action .spinner{float:right}#misc-publishing-actions{padding:6px 0 0}.misc-pub-section{padding:6px 10px 8px}#minor-publishing-actions{padding:10px 10px 0;text-align:left}#save-post{float:right}.preview{float:left}#sticky-span{margin-right:18px}.side-info{margin:0;padding:4px;font-size:11px}.side-info h5{padding-bottom:7px;font-size:14px;margin:12px 2px 5px;border-bottom:1px solid #dadada}.side-info ul{margin:0;padding-right:18px;list-style:square;color:#666}.approve,.unapproved .unapprove{display:none}.spam .approve,.trash .approve,.unapproved .approve{display:inline}td.action-links,th.action-links{text-align:left}#update-nag,.update-nag{display:inline-block;line-height:19px;padding:11px 15px;font-size:14px;text-align:right;margin:25px 2px 0 20px;background-color:#fff;border-right:4px solid #ffba00;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}.update-message{color:#000}.update-php .spinner{float:none;margin:-4px 0}#ajax-loading,.ajax-feedback,.ajax-loading,.imgedit-wait-spin,.list-ajax-loading{visibility:hidden}#ajax-response.alignleft{margin-right:2em}#adminmenu a,#catlist a,#sidemenu a,#taglist a{text-decoration:none}#contextual-help-wrap,#screen-options-wrap{margin:0;padding:8px 20px 12px;position:relative}#contextual-help-wrap{overflow:auto;margin-right:0!important}#screen-meta .screen-reader-text{visibility:hidden}#screen-meta-links{margin:0 0 0 20px}#screen-meta-links a{padding:3px 16px 3px 6px}#screen-meta-links a:focus{outline:0}#screen-meta{display:none;margin:0 0 -1px 20px;position:relative;background-color:#fff;border:1px solid #ddd;border-top:0;-webkit-box-shadow:0 1px 0 rgba(0,0,0,.025);box-shadow:0 1px 0 rgba(0,0,0,.025)}#contextual-help-link-wrap,#screen-options-link-wrap{float:left;height:28px;margin:0 6px 0 0;border:1px solid #ddd;border-top:0;background:#fff;-webkit-box-shadow:0 1px 1px -1px rgba(0,0,0,.1);box-shadow:0 1px 1px -1px rgba(0,0,0,.1)}#screen-meta-links .screen-meta-toggle{position:relative;top:0}#screen-meta-links a{color:#777}#screen-meta-links a:active,#screen-meta-links a:focus,#screen-meta-links a:hover{color:#333}#screen-meta-links a:focus{border-color:#aaa;-webkit-box-shadow:0 2px 3px rgba(0,0,0,.15);box-shadow:0 2px 3px rgba(0,0,0,.15)}#screen-meta-links a.show-settings{display:block;font-size:13px;height:22px;line-height:22px;text-decoration:none;z-index:1}#screen-meta-links a:after{left:0;content:'\f140';font:400 20px/1 dashicons;speak:none;display:inline-block;padding:0 0 0 5px;bottom:2px;position:relative;vertical-align:bottom;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important;color:#bbb}#screen-meta-links a.screen-meta-active:after{content:'\f142'}#screen-meta-links a.show-settings:hover{text-decoration:none}.toggle-arrow{background-repeat:no-repeat;background-position:top right;background-color:transparent;height:22px;line-height:22px;display:block}.toggle-arrow-active{background-position:bottom right}#contextual-help-wrap h5,#screen-options-wrap h5{margin:8px 0;font-size:13px}.metabox-prefs label{display:inline-block;padding-left:15px;line-height:30px}.metabox-prefs label input[type=checkbox]{margin-top:-4px;margin-left:6px}.metabox-prefs label input{margin:0 2px 0 5px}.metabox-prefs .columns-prefs label input{margin:0 2px}.metabox-prefs label a{display:none}#contextual-help-wrap{padding:0}#contextual-help-columns{position:relative}#contextual-help-back{position:absolute;top:0;bottom:0;right:150px;left:170px;border:1px solid #e1e1e1;border-top:0;border-bottom:0;background:#f6fbfd}#contextual-help-wrap.no-sidebar #contextual-help-back{left:0;border-left-width:0;-webkit-border-bottom-left-radius:2px;border-bottom-left-radius:2px}.contextual-help-tabs{float:right;width:150px;margin:0}.contextual-help-tabs ul{margin:1em 0}.contextual-help-tabs li{margin-bottom:0;list-style-type:none;border-style:solid;border-width:0 2px 0 0;border-color:transparent}.contextual-help-tabs a{display:block;padding:5px 12px 5px 5px;line-height:18px;text-decoration:none;border:1px solid transparent;border-left:0;border-right:0}.contextual-help-tabs a:hover{color:#333}.contextual-help-tabs .active{padding:0;margin:0 0 0 -1px;border-right:2px solid #2ea2cc;background:#f6fbfd;-webkit-box-shadow:0 2px 0 rgba(0,0,0,.02),0 1px 0 rgba(0,0,0,.02);box-shadow:0 2px 0 rgba(0,0,0,.02),0 1px 0 rgba(0,0,0,.02)}.contextual-help-tabs .active a{border-color:#e1e1e1;color:#333}.contextual-help-tabs-wrap{padding:0 20px;overflow:auto}.help-tab-content{display:none;margin:0 0 12px 22px;line-height:1.6em}.help-tab-content.active{display:block}.help-tab-content ul li{list-style-type:disc;margin-right:18px}.contextual-help-sidebar{width:150px;float:left;padding:0 12px 0 8px;overflow:auto}html.wp-toolbar{padding-top:32px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.narrow{width:70%;margin-bottom:40px}.narrow p{line-height:150%}.widefat td,.widefat th{overflow:hidden;color:#555}.widefat th{font-weight:400}.widefat tfoot tr th,.widefat thead tr th{color:#333}.widefat td p{margin:2px 0 .8em}.widefat ol,.widefat p,.widefat ul{color:#333}.widefat .column-comment p{margin:.6em 0}.postbox-container{float:right}.postbox-container .meta-box-sortables{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#wpbody-content .metabox-holder{padding-top:10px}.metabox-holder .postbox-container .empty-container{border:3px dashed #bbb;height:250px}.columns-2 #postbox-container-3 .empty-container,.columns-2 #postbox-container-4 .empty-container,.columns-3 #postbox-container-4 .empty-container,.metabox-holder.columns-1 .postbox-container .empty-container{border:0 none;height:0;min-height:0}#post-body-content{width:100%;min-width:463px;float:right}#post-body.columns-2 #postbox-container-1{float:left;margin-left:-300px;width:280px}#post-body.columns-2 #side-sortables{min-height:250px}@media only screen and (max-width:799px){#wpbody-content .metabox-holder .postbox-container .empty-container{border:0 none;height:0;min-height:0}}.js .postbox .hndle{cursor:move}.hndle a{font-size:11px;font-weight:400}.postbox .handlediv{float:left;width:27px;height:30px}.js .postbox .handlediv{cursor:pointer}.sortable-placeholder{border:1px dashed #bbb;margin-bottom:20px}.postbox,.stuffbox{margin-bottom:20px;padding:0;line-height:1}.postbox h3,.stuffbox h3{margin-top:1px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.js .postbox h3,.js .widget .widget-top{cursor:move}.postbox .inside,.stuffbox .inside{padding:0 12px 12px;line-height:1.4em;font-size:13px}.postbox .inside{margin:11px 0;position:relative}.postbox .inside>p:last-child,.rss-widget ul li:last-child{margin-bottom:1px!important}.postbox.closed h3{border:0;-webkit-box-shadow:none;box-shadow:none}.postbox table.form-table{margin-bottom:0}.postbox table.widefat{-webkit-box-shadow:none;box-shadow:none}.temp-border{border:1px dotted #ccc}.columns-prefs label{padding:0 5px}#adminmenu .wp-submenu li.current,#adminmenu .wp-submenu li.current a,#adminmenu .wp-submenu li.current a:hover,#dashboard_right_now .versions .b,#ed_reply_toolbar #ed_reply_strong,#pass-strength-result.short,#pass-strength-result.strong,#post-status-display,#post-visibility-display,.feature-filter .feature-name,.item-controls .item-order a,.media-item .percent,.plugins .name{font-weight:600}#wpfooter{position:absolute;bottom:0;right:0;left:0;padding:10px 0;margin-left:20px;color:#777}#wpfooter p{font-size:13px;margin:0;line-height:20px}#footer-thankyou{font-style:italic}#wpfooter a{text-decoration:none}#wpfooter a:hover{text-decoration:underline}.nav-tab{border:1px solid #ccc;border-bottom:0;background:#e4e4e4;color:#555;font-size:12px;line-height:16px;display:inline-block;padding:4px 14px 6px;text-decoration:none;margin:-4px 0 -1px 4px}.nav-tab:hover{background-color:#fff;color:#464646}.nav-tab-active,.nav-tab-active:hover{border-bottom:1px solid #f1f1f1;background:#f1f1f1;color:#000}h2.nav-tab-wrapper,h3.nav-tab-wrapper{border-bottom:1px solid #ccc;padding-bottom:0;padding-right:10px}h2 .nav-tab{padding:6px 10px;font-weight:700;font-size:15px;line-height:24px}.spinner{background:url(../images/spinner.gif) no-repeat;-webkit-background-size:20px 20px;background-size:20px 20px;display:none;float:left;opacity:.7;filter:alpha(opacity=70);width:20px;height:20px;margin:2px 5px 0}#template div{margin-left:190px}.metabox-holder h3{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}#templateside ul li a{text-decoration:none}#sidemenu{margin:-30px 315px 0 15px;list-style:none;position:relative;float:left;padding-right:10px;font-size:12px}#sidemenu a{padding:0 7px;display:block;float:right;line-height:28px;border-top:1px solid #f9f9f9;border-bottom:1px solid #dfdfdf;background-color:#f9f9f9;-webkit-transition:none;transition:none}#sidemenu li{display:inline;line-height:200%;list-style:none;text-align:center;white-space:nowrap;margin:0;padding:0}#sidemenu a.current{font-weight:400;padding-right:6px;padding-left:6px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;border:1px solid #dfdfdf;border-bottom-color:#f1f1f1;background-color:#f1f1f1;color:#000}.plugin-install #description,.plugin-install-network #description{width:60%}table .column-rating,table .column-visible,table .vers{text-align:right}.error-message{color:red;font-weight:600}body.iframe{height:98%}.lp-show-latest p{display:none}.lp-show-latest .lp-error p,.lp-show-latest p:last-child{display:block}td.media-icon{text-align:center;width:80px;padding-top:8px;padding-bottom:8px}td.media-icon img{max-width:80px;max-height:60px}#howto{font-size:11px;margin:0 5px;display:block}.importers td{padding-left:14px}.importers{font-size:16px;width:auto}#post-body #post-body-content #namediv h3{margin-top:0}#namediv h3 label{vertical-align:baseline}#namediv table{width:100%}#namediv td.first{width:10px;white-space:nowrap}#namediv input{width:98%}#namediv p{margin:10px 0}#submitdiv h3{margin-bottom:0!important}.zerosize{height:0;width:0;margin:0;border:0;padding:0;overflow:hidden;position:absolute}br.clear{height:2px;line-height:2px}.checkbox{border:0;margin:0;padding:0}fieldset{border:0;padding:0;margin:0}.post-categories{display:inline;margin:0;padding:0}.post-categories li{display:inline}div.star-holder{position:relative;height:17px;width:100px;background:url(../images/stars.png?ver=20121108) repeat-x bottom right}div.star-holder .star-rating{background:url(../images/stars.png?ver=20121108) repeat-x top right;height:17px;float:right}.star-rating{white-space:nowrap}.star-rating .star{display:inline-block;width:20px;height:20px;-webkit-font-smoothing:antialiased;font-size:20px;line-height:1;font-family:dashicons;text-decoration:inherit;font-weight:400;font-style:normal;vertical-align:top;-webkit-transition:color .1s ease-in 0;transition:color .1s ease-in 0;text-align:center;color:#0074a2}.star-rating .star-full:before{content:'\f155'}.star-rating .star-half:before{content:'\f459'}.rtl .star-rating .star-half{-webkit-transform:rotateY(180deg);-ms-transform:rotateY(180deg);transform:rotateY(180deg)}.star-rating .star-empty:before{content:'\f154'}div.action-links{font-weight:400;margin:6px 0 0}#plugin-information{background:#fcfcfc;position:fixed;top:0;left:0;bottom:0;right:0;height:auto;padding:0}#plugin-information-title{padding:0 20px 0 76px;font-size:22px;font-weight:600;line-height:56px;top:0;left:0;right:0;height:56px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}#plugin-information-tabs{padding:0 16px;position:absolute;top:56px;left:0;right:0;height:36px;z-index:1}#plugin-information-tabs a{position:relative;float:right;padding:8px 10px 9px;margin:0;height:18px;line-height:18px;font-size:14px;text-decoration:none;-webkit-transition:none;transition:none}#plugin-information-tabs a.current{margin:-1px -1px 0;background:#fff;border:1px solid #ddd;border-bottom:0;color:#333}#plugin-information-tabs a:active,#plugin-information-tabs a:focus{outline:0}#plugin-information-content{background:#fff;border-top:1px solid #ddd;border-bottom:1px solid #ddd;position:absolute;top:90px;left:0;bottom:58px;right:0}#section-holder{margin:0;padding:10px 26px;position:absolute;top:0;left:250px;bottom:0;right:0;overflow:auto}#section-holder .updated{margin:16px 0}#plugin-information .fyi{background:#f3f3f3;border-right:1px solid #ddd;color:#666;padding:16px;position:absolute;top:0;left:0;bottom:0;width:217px;overflow:auto}#plugin-information .fyi strong{color:#464646}#plugin-information .fyi h3{font-weight:700;text-transform:uppercase;font-size:12px;color:#666;margin:24px 0 8px}#plugin-information .fyi h2{font-size:.9em;margin-bottom:0;margin-left:0}#plugin-information .fyi ul{padding:0;margin:0;list-style:none}#plugin-information .fyi li{margin:0 0 10px}#plugin-information-footer{padding:15px 16px;position:absolute;left:0;bottom:0;right:0;height:28px}#plugin-information .section ol,#plugin-information .section ul{list-style-type:disc;margin-right:24px}#plugin-information .section,#plugin-information .section p{font-size:14px;line-height:1.7}#plugin-information #section-screenshots ol{list-style:none;margin:0}#plugin-information #section-screenshots li img{vertical-align:text-top;margin-top:16px;max-width:100%;width:auto;height:auto;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.3);box-shadow:0 1px 2px rgba(0,0,0,.3)}#plugin-information #section-screenshots li p{font-style:italic;padding-right:20px}#plugin-information pre{padding:7px;overflow:auto;border:1px solid #ccc}.plugin-version-author-uri{font-size:13px}@media screen and (max-width:782px){#plugin-information-content{overflow:auto;bottom:58px}#plugin-information .fyi{border:1px solid #ddd;position:static;width:auto;margin:26px 26px 16px}#section-holder{position:static}#plugin-information .fyi h3,#plugin-information .fyi small{display:none}#plugin-information-footer{padding:12px 16px 0;height:46px}}body.import-php #TB_window,body.index-php #TB_window,body.plugin-install-php #TB_window,body.plugins-php #TB_window,body.update-core-php #TB_window{background:#fcfcfc url( ../images/spinner.gif ) no-repeat center}@media print,(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){body.import-php #TB_window,body.index-php #TB_window,body.plugin-install-php #TB_window,body.plugins-php #TB_window,body.update-core-php #TB_window{background:#fcfcfc url( ../images/spinner-2x.gif ) no-repeat center;-webkit-background-size:20px 20px;background-size:20px 20px}}body.import-php #TB_title,body.index-php #TB_title,body.plugin-install-php #TB_title,body.plugins-php #TB_title,body.update-core-php #TB_title{float:right;height:1px}body.import-php #TB_ajaxWindowTitle,body.index-php #TB_ajaxWindowTitle,body.plugin-install-php #TB_ajaxWindowTitle,body.plugins-php #TB_ajaxWindowTitle,body.update-core-php #TB_ajaxWindowTitle{display:none}body.import-php .tb-close-icon,body.index-php .tb-close-icon,body.plugin-install-php .tb-close-icon,body.plugins-php .tb-close-icon,body.update-core-php .tb-close-icon{line-height:48px;width:48px;height:48px}body.import-php .tb-close-icon:before,body.index-php .tb-close-icon:before,body.plugin-install-php .tb-close-icon:before,body.plugins-php .tb-close-icon:before,body.update-core-php .tb-close-icon:before{line-height:48px}img{border:0}#wphead{border-bottom:1px solid #dfdfdf}#wphead h1 a{color:#464646}.js .meta-box-sortables .postbox:hover .handlediv{margin-left:0!important}.js .meta-box-sortables .postbox .handlediv:before,.js .sidebar-name .sidebar-name-arrow:before{left:12px;font:400 20px/1 dashicons;speak:none;display:inline-block;padding:8px 10px;top:0;position:relative;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important}.js #widgets-left .sidebar-name .sidebar-name-arrow{display:none}.js #widgets-left .sidebar-name:hover .sidebar-name-arrow,.js #widgets-left .widgets-holder-wrap.closed .sidebar-name .sidebar-name-arrow{display:block}.js .meta-box-sortables .postbox .handlediv:before,.js .sidebar-name .sidebar-name-arrow:before{content:'\f142'}.js .meta-box-sortables .postbox.closed .handlediv:before,.js .widgets-holder-wrap.closed .sidebar-name-arrow:before{content:'\f140'}.error a{text-decoration:underline}.updated a{text-decoration:none;padding-bottom:2px}#photo-add-url-div input[type=text]{width:300px}.alignleft h3{margin:0}#template textarea{font-family:Consolas,Monaco,monospace;font-size:13px;width:97%;background:#f9f9f9;outline:0}#docs-list,#template textarea{direction:ltr}#template p{width:97%}#templateside{float:left;width:190px;word-wrap:break-word}#postcustomstuff p.submit,#templateside h3{margin:0}#templateside h4{margin:1em 0 0}#templateside ol,#templateside ul{margin:.5em 0;padding:0}#templateside li{margin:4px 0}#templateside a,.theme-editor-php .highlight{display:block;padding:3px 12px 3px 3px;text-decoration:none}.theme-editor-php .highlight{margin:-3px -12px -3px 3px}#templateside .highlight{border:0;font-weight:700}.nonessential{color:#666;font-size:11px;font-style:italic;padding-right:12px}#documentation{margin-top:10px}#documentation label{line-height:22px;vertical-align:baseline;font-weight:600}.fileedit-sub{padding:10px 0 8px;line-height:180%}.accordion-section-title:after,.control-section .accordion-section-title:after,.nav-menus-php .item-edit:before,.widget-top a.widget-action:after{left:0;content:'\f140';border:0;background:0 0;font:400 20px/1 dashicons;speak:none;display:block;padding:0;text-indent:0;text-align:center;position:relative;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important}.accordion-section-title:after,.handlediv,.item-edit,.sidebar-name-arrow,.widget-action{color:#aaa}.accordion-section-title:hover:after,.handlediv:hover,.item-edit:hover,.sidebar-name:hover .sidebar-name-arrow,.widget-action:hover{color:#777}.widget-top a.widget-action:after{padding:12px 12px 0}.nav-menus-php .item-edit:before{line-height:2.1}.accordion-section-title:after,.control-section .accordion-section-title:after{float:left;left:20px;top:-2px}#customize-info.open .accordion-section-title:after,.control-section.open .accordion-section-title:after,.nav-menus-php .menu-item-edit-active .item-edit:before{content:'\f142'}.ui-draggable,.ui-sortable{-ms-touch-action:none;touch-action:none}.menu.ui-sortable,.meta-box-sortables.ui-sortable,.widgets-holder-wrap .ui-draggable,.widgets-holder-wrap .ui-sortable{-ms-touch-action:auto;touch-action:auto}.menu.ui-sortable .menu-item-handle,.meta-box-sortables.ui-sortable .hndle{-ms-touch-action:none;touch-action:none}.accordion-section{border-bottom:1px solid #dfdfdf;margin:0}.accordion-section.open .accordion-section-content,.no-js .accordion-section .accordion-section-content{display:block}.accordion-section.open:hover{border-bottom-color:#dfdfdf}.accordion-section-content{display:none;padding:10px 20px 15px;overflow:hidden;background:#fff}.accordion-section-title{margin:0;padding:12px 15px 15px;position:relative;border-right:1px solid #dfdfdf;border-left:1px solid #dfdfdf;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.js .accordion-section-title{cursor:pointer}.js .accordion-section-title:after{position:absolute;top:12px;left:10px;z-index:1}.accordion-section-title:focus{outline:0}.accordion-section-title:focus:after,.accordion-section-title:hover:after{border-color:#aaa transparent}.cannot-expand .accordion-section-title{cursor:auto}.cannot-expand .accordion-section-title:after{display:none}.control-section .accordion-section-title{border-right:0;border-left:0;padding:10px 14px 11px 10px;line-height:21px;background:#fff}.control-section .accordion-section-title:after{top:11px}.js .control-section .accordion-section-title:focus,.js .control-section .accordion-section-title:hover,.js .control-section.open .accordion-section-title,.js .control-section:hover .accordion-section-title{color:#222;background:#f5f5f5}.control-section.open .accordion-section-title{border-bottom:1px solid #dfdfdf}@media only screen and (min-width:769px){#col-left{width:35%}#col-right{width:65%}}@media only screen and (max-width:860px){#col-left{width:35%}#col-right{width:65%}}@media only screen and (min-width:980px){#col-left{width:35%}#col-right{width:65%}}@media only screen and (max-width:768px){#col-left,#col-right{width:100%}}@media print,(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){div.star-holder,div.star-holder .star-rating{background:url(../images/stars-2x.png?ver=20121108) repeat-x bottom right;-webkit-background-size:21px 37px;background-size:21px 37px}.spinner{background-image:url(../images/spinner-2x.gif)}#bulk-titles div a,#bulk-titles div a:hover,#screen-meta-links a.show-settings,.curtime #timestamp,.meta-box-sortables .postbox:hover .handlediv,.sidebar-name-arrow,.sidebar-name:hover .sidebar-name-arrow,.tagchecklist span a,.tagchecklist span a:hover,.widget-top a.widget-action,.widget-top a.widget-action:hover{background:none!important}}@-ms-viewport{width:device-width}@media screen and (max-width:782px){html.wp-toolbar{padding-top:46px}body{min-width:240px;overflow-x:hidden}body *{-webkit-tap-highlight-color:rgba(0,0,0,0)!important}#wpwrap{background:#f0f0f0}#wpcontent{position:relative;margin-right:0;padding-right:10px}#wpbody-content{padding-bottom:100px}.wrap{margin-left:12px;margin-right:0}.col-wrap{padding:0}#collapse-menu,#screen-meta,#screen-meta-links,.post-format-select{display:none!important}.wrap .add-new-h2,.wrap .add-new-h2:active{padding:10px 15px;font-size:14px}.wp-color-result{height:auto;padding-right:45px}.wp-color-result:after{font-size:14px;height:auto;padding:6px 14px}.media-upload-form div.error,.wrap div.error,.wrap div.updated{margin:20px 0 10px;padding:5px 10px;font-size:14px;line-height:175%}.wrap .icon32+h2{margin-top:-2px}.wp-responsive-open #wpbody{left:-190px}.postbox{font-size:14px}.metabox-holder h3{padding:12px}.postbox .handlediv{margin-top:3px}.subsubsub{font-size:16px;text-align:center;margin-bottom:15px}#templateside{float:none;width:auto}#templateside li{margin:0}#templateside li a{display:block;padding:5px}#templateside .highlight{padding:5px;margin-right:-5px;margin-top:-5px}#template div{float:none;margin:0;width:auto}#template textarea{width:100%}.fileedit-sub .alignright{margin-top:15px}#comments-form .checkforspam,#wpfooter{display:none}}@media screen and (max-width:600px){#wpwrap.wp-responsive-open{overflow-x:hidden}html.wp-toolbar{padding-top:0}#wpbody{padding-top:46px}div#post-body.metabox-holder.columns-1{overflow-x:hidden}}input,input[type=email],input[type=number],input[type=password],input[type=search],input[type=text],input[type=url],textarea{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=email],input[type=url]{direction:ltr}input[type=checkbox],input[type=radio]{border:1px solid #bbb;background:#fff;color:#555;clear:none;cursor:pointer;display:inline-block;line-height:0;height:16px;margin:-4px 0 0 4px;outline:0;padding:0!important;text-align:center;vertical-align:middle;width:16px;min-width:16px;-webkit-appearance:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);-webkit-transition:.05s border-color ease-in-out;transition:.05s border-color ease-in-out}input[type=radio]:checked+label:before{color:#888}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:#2ea2cc}.wp-admin p input[type=checkbox],.wp-admin p input[type=radio],td>input[type=checkbox]{margin-top:0}.wp-admin p label input[type=checkbox]{margin-top:-4px}.wp-admin p label input[type=radio]{margin-top:-2px}input[type=radio]{-webkit-border-radius:50%;border-radius:50%;margin-left:4px;line-height:10px}input[type=checkbox]:checked:before,input[type=radio]:checked:before{float:right;display:inline-block;vertical-align:middle;width:16px;font:400 21px/1 dashicons;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}input[type=checkbox]:checked:before{content:'\f147';margin:-3px -4px 0 0;color:#1e8cbe}input[type=radio]:checked:before{content:'\2022';text-indent:-9999px;-webkit-border-radius:50px;border-radius:50px;font-size:24px;width:6px;height:6px;margin:4px;line-height:16px;background-color:#1e8cbe}input.readonly,textarea.readonly{background-color:#ddd}@-moz-document url-prefix(){.form-table input.tog,input[type=checkbox],input[type=radio]{margin-bottom:-1px}}input[type=search]{-webkit-appearance:textfield}input[type=search]::-webkit-search-decoration{display:none}.ie8 input[type=password]{font-family:sans-serif}button,input,select,textarea{font-family:inherit;font-size:inherit;font-weight:inherit}input,select,textarea{font-size:14px;padding:3px 5px;line-height:15px;-webkit-border-radius:0;border-radius:0}textarea{overflow:auto;padding:2px 6px;line-height:1.4}input[type=email],input[type=number],input[type=password],input[type=search],input[type=text],input[type=url],select,textarea{outline:0}.wp-admin input[type=file]{padding:3px 0}label{cursor:pointer}input,select{margin:1px;padding:3px 5px}input.code{padding-top:6px}textarea.code{line-height:1.4;padding:4px 6px 1px}input[type=email],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],select,textarea{border:1px solid #ddd;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.07);box-shadow:inset 0 1px 2px rgba(0,0,0,.07);background-color:#fff;color:#333;-webkit-transition:.05s border-color ease-in-out;transition:.05s border-color ease-in-out}select[disabled]{color:#7f7f7f}input[type=checkbox]:focus,input[type=email]:focus,input[type=number]:focus,input[type=password]:focus,input[type=radio]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,select:focus,textarea:focus{border-color:#5b9dd9;-webkit-box-shadow:0 0 2px rgba(30,140,190,.8);box-shadow:0 0 2px rgba(30,140,190,.8)}input[readonly]{background-color:#eee}.wp-core-ui :-moz-placeholder,:-moz-placeholder{color:#a9a9a9}.form-invalid{background-color:#ffebe8!important}.form-invalid input,.form-invalid select{border-color:#c00!important}.form-input-tip{color:#666}input.disabled,input:disabled,textarea.disabled,textarea:disabled{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.04);box-shadow:inset 0 1px 2px rgba(0,0,0,.04);border-color:rgba(222,222,222,.75);background:rgba(255,255,255,.5);color:rgba(51,51,51,.5)}input[type=checkbox]:disabled,input[type=checkbox]:disabled:checked:before,input[type=radio]:disabled,input[type=radio]:disabled:checked:before{opacity:.7}.wp-admin select{padding:2px;line-height:28px;height:28px;vertical-align:middle}.wp-admin .button-cancel{padding:0 5px;line-height:2}.meta-box-sortables select{max-width:100%}.wp-admin select[multiple]{height:auto}.submit{padding:1.5em 0;margin:5px 0;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;border:0}form p.submit a.cancel:hover{text-decoration:none}p.submit{text-align:right;max-width:100%;margin-top:20px;padding-top:10px}.textright p.submit{border:0;text-align:left}table.form-table+input+input+p.submit,table.form-table+input+p.submit,table.form-table+p.submit{border-top:0;padding-top:0}#major-publishing-actions input,#minor-publishing-actions .preview,#minor-publishing-actions input{text-align:center}input.all-options,textarea.all-options{width:250px}input.large-text,textarea.large-text{width:99%}#adduser .form-field input,input.regular-text{width:25em}input.small-text{width:50px;padding:1px 6px}input[type=number].small-text{width:65px}#doaction,#doaction2,#post-query-submit{margin:1px 0 0 8px}.tablenav #changeit,.tablenav #clear-recent-list,.tablenav #delete_all{margin-top:1px}.tablenav .actions select{float:right;margin-left:6px;max-width:200px}.ie8 .tablenav .actions select{width:155px}.ie8 .tablenav .actions select#cat{width:200px}#timezone_string option{margin-right:1em}#upload-form label{color:#777}#your-profile label+a,fieldset label,label{vertical-align:middle}#misc-publishing-actions label,.options-media-php label[for*="_size_"]{vertical-align:baseline}#misc-publishing-actions label[for=post_status]:before{content:'\f173';display:inline-block;font:400 20px/1 dashicons;speak:none;right:-1px;padding:0 0 0 5px;position:relative;top:0;text-decoration:none!important;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#pass-strength-result{background-color:#eee;border:1px solid #ddd;float:right;margin:13px 1px 5px 5px;padding:3px 5px;text-align:center;width:200px;display:none}#pass-strength-result.short{background-color:#ffa0a0;border-color:#f04040}#pass-strength-result.bad{background-color:#ffb78c;border-color:#ff853c}#pass-strength-result.good{background-color:#ffec8b;border-color:#fc0}#pass-strength-result.strong{background-color:#c3ff88;border-color:#8dff1c}.indicator-hint{padding-top:8px}p.search-box{float:left;margin:0}.network-admin.themes-php p.search-box{clear:right}#search-plugins input[name="s"],.search-box input[name="s"],.tagsdiv .newtag{float:right;height:28px;margin:0 0 0 4px}input[type=text].ui-autocomplete-loading{background:transparent url(../images/loading.gif) no-repeat left center;visibility:visible}ul#add-to-blog-users{margin:0 14px 0 0}.ui-autocomplete-input.open{-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0}.ui-autocomplete{padding:0;margin:0;list-style:none;position:absolute;z-index:10000;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;border:1px solid #aaa;background-color:#efefef}.ui-autocomplete li{margin-bottom:0;white-space:nowrap;text-align:right}.ui-autocomplete li a{display:block;height:100%;padding:4px 10px;color:#444}.ui-autocomplete li a.ui-state-focus{background-color:#ddd;cursor:pointer}.form-table{border-collapse:collapse;margin-top:.5em;width:100%;clear:both}.form-table,.form-table td,.form-table td p,.form-table th,.form-wrap label{font-size:14px}.form-table td{margin-bottom:9px;padding:15px 10px;line-height:1.3;vertical-align:middle}.form-table th,.form-wrap label{color:#222;font-weight:400;text-shadow:none;vertical-align:baseline}.form-table th{vertical-align:top;text-align:right;padding:20px 0 20px 10px;width:200px;line-height:1.3;font-weight:600}.form-table th.th-full{width:auto;font-weight:400}.form-table td p{margin-top:4px;margin-bottom:0}.form-table td fieldset label{margin:.25em 0 .5em!important;display:inline-block}.form-table td fieldset label,.form-table td fieldset li,.form-table td fieldset p{line-height:1.4em}.form-table input.tog,.form-table input[type=radio]{margin-top:-4px;margin-left:4px;float:none}.form-table .pre{padding:8px;margin:0}table.form-table td .updated{font-size:13px}#profile-page .form-table textarea{width:500px;margin-bottom:6px}#profile-page .form-table #rich_editing{margin-left:5px}#your-profile legend{font-size:22px}#display_name{width:15em}#createuser .form-field input{width:25em}.color-option{display:inline-block;width:24%;padding:5px 15px 15px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin-bottom:3px}.color-option.selected,.color-option:hover{background:#ddd}.color-palette{width:100%;border-spacing:0;border-collapse:collapse}.color-palette td{height:20px;padding:0;border:0}.color-option{cursor:pointer}.tool-box .title{margin:8px 0;font-size:18px;font-weight:400;line-height:24px}.pressthis{margin:20px 0}.pressthis a,.pressthis a:active,.pressthis a:focus,.pressthis a:hover{display:inline-block;position:relative;cursor:move;color:#333;background:#e6e6e6;-webkit-border-radius:5px;border-radius:5px;border:1px solid #b4b4b4;font-style:normal;line-height:16px;font-size:14px;text-decoration:none}.pressthis a:active{outline:0}.pressthis a:hover:after{-webkit-transform:skew(20deg) rotate(9deg);-ms-transform:skew(20deg) rotate(9deg);transform:skew(20deg) rotate(9deg);-webkit-box-shadow:0 10px 8px rgba(0,0,0,.7);box-shadow:0 10px 8px rgba(0,0,0,.7)}.pressthis a span{display:inline-block;margin:0;padding:0 9px 8px 12px}.pressthis a span:before{color:#777;font:400 20px/1 dashicons;content:'\f157';position:relative;display:inline-block;top:4px;margin-left:4px}.pressthis a:after{content:'';width:70%;height:55%;z-index:-1;position:absolute;left:10px;bottom:9px;background:0 0;-webkit-transform:skew(20deg) rotate(6deg);-ms-transform:skew(20deg) rotate(6deg);transform:skew(20deg) rotate(6deg);-webkit-box-shadow:0 10px 8px rgba(0,0,0,.6);box-shadow:0 10px 8px rgba(0,0,0,.6)}#local-time,#utc-time{padding-right:25px;font-style:italic}.defaultavatarpicker .avatar{margin:2px 0;vertical-align:middle}.options-general-php .spinner{float:none;margin:-3px 3px}@media screen and (max-width:782px){textarea{-webkit-appearance:none}input[type=number],input[type=password],input[type=search],input[type=text]{-webkit-appearance:none;padding:6px 10px}input.code{padding-bottom:5px;padding-top:10px}.widefat th input[type=checkbox],input[type=checkbox]{-webkit-appearance:none;padding:10px}.widefat th input[type=checkbox]{margin-bottom:8px}.widefat th input[type=checkbox]:before,input[type=checkbox]:checked:before{font:400 30px/1 Dashicons;margin:-3px -5px}input[type=checkbox],input[type=radio]{height:25px;width:25px}.wp-admin p input[type=checkbox],.wp-admin p input[type=radio]{margin-top:-3px}input[type=radio]:checked:before{vertical-align:middle;width:9px;height:9px;margin:7px;line-height:16px}.wp-upload-form input[type=submit]{margin-top:10px}#wpbody select{height:36px;font-size:16px}.wp-admin .button-cancel{padding:0;font-size:14px}#createuser .form-field input{width:100%}.form-table{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.form-table td,.form-table th{display:block;width:auto;vertical-align:middle}.form-table .color-palette td{display:table-cell;width:15px}.form-table table.color-palette{margin-left:10px}input,textarea{font-size:16px}#profile-page .form-table textarea,.form-table span.description,.form-table td input[type=password],.form-table td input[type=text],.form-table td select,.form-table td textarea{width:100%;font-size:16px;line-height:1.5;padding:7px 10px;display:block;max-width:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.form-table input[type=text].small-text,input[type=number].small-text,input[type=password].small-text,input[type=search].small-text,input[type=text].small-text{width:auto;max-width:55px;display:inline;padding:3px 6px;margin:0 3px}#pass-strength-result{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:8px}p.search-box{float:none;position:absolute;bottom:0;width:98%;height:90px;margin-bottom:20px}p.search-box input[name="s"]{height:auto;float:none;width:100%;margin-bottom:10px;vertical-align:middle;-webkit-appearance:none}p.search-box input[type=submit]{margin-bottom:10px}.form-table span.description{padding:4px 0 0;line-height:1.4em}.form-table th{padding-top:10px;padding-bottom:0;border-bottom:0}.form-table td{padding-top:8px;padding-right:0}.form-table input.regular-text{width:100%}.form-table label{font-size:14px}.form-table fieldset label{display:block}#utc-time{margin-top:10px}#local-time,#utc-time{display:block;float:none;padding:0;line-height:2}}@media only screen and (max-width:768px){.form-field input,.form-field textarea{width:99%}.form-wrap .form-field{padding:0}#profile-page .form-table textarea{max-width:400px;width:auto}}@media screen and (max-width:600px){.color-option{width:49%}}#adminmenu,#adminmenu .wp-submenu,#adminmenuback,#adminmenuwrap{width:160px;background-color:#222}#adminmenuback{position:absolute;top:0;bottom:0;z-index:-1}#adminmenu{clear:right;margin:12px 0 0;padding:0;list-style:none}.folded #adminmenu,.folded #adminmenu li.menu-top,.folded #adminmenuback,.folded #adminmenuwrap{width:36px}.icon16{height:18px;width:18px;padding:6px;margin:-6px -8px 0 0;float:right}.icon16:before{color:#999;font:400 20px/1 dashicons;speak:none;padding:6px 0;height:34px;width:20px;display:inline-block;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}.icon16.icon-dashboard:before{content:'\f226'}.icon16.icon-post:before{content:'\f109'}.icon16.icon-media:before{content:'\f104'}.icon16.icon-links:before{content:'\f103'}.icon16.icon-page:before{content:'\f105'}.icon16.icon-comments:before{content:'\f101';margin-top:1px}.icon16.icon-appearance:before{content:'\f100'}.icon16.icon-plugins:before{content:'\f106'}.icon16.icon-users:before{content:'\f110'}.icon16.icon-tools:before{content:'\f107'}.icon16.icon-settings:before{content:'\f108'}.icon16.icon-site:before{content:'\f112'}.icon16.icon-generic:before{content:'\f111'}.icon16.icon-appearance,.icon16.icon-comments,.icon16.icon-dashboard,.icon16.icon-generic,.icon16.icon-links,.icon16.icon-media,.icon16.icon-page,.icon16.icon-plugins,.icon16.icon-post,.icon16.icon-settings,.icon16.icon-site,.icon16.icon-tools,.icon16.icon-users,.menu-icon-appearance div.wp-menu-image,.menu-icon-comments div.wp-menu-image,.menu-icon-dashboard div.wp-menu-image,.menu-icon-generic div.wp-menu-image,.menu-icon-links div.wp-menu-image,.menu-icon-media div.wp-menu-image,.menu-icon-page div.wp-menu-image,.menu-icon-plugins div.wp-menu-image,.menu-icon-post div.wp-menu-image,.menu-icon-settings div.wp-menu-image,.menu-icon-site div.wp-menu-image,.menu-icon-tools div.wp-menu-image,.menu-icon-users div.wp-menu-image{background-image:none!important}#adminmenuwrap{position:relative;float:right}#adminmenu *{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#adminmenu li{margin:0;padding:0;cursor:pointer}#adminmenu a{display:block;line-height:18px;padding:2px 5px;color:#eee}#adminmenu .wp-submenu a{color:#bbb}#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover{background:0 0}#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu a:hover,#adminmenu li.menu-top>a:focus{color:#2ea2cc}#adminmenu li.menu-top{border:0;min-height:34px;position:relative}#adminmenu .wp-submenu{list-style:none;position:absolute;top:-1000em;right:160px;overflow:visible;word-wrap:break-word}#adminmenu .wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu,.folded #adminmenu a.wp-has-current-submenu:focus+.wp-submenu{padding:7px 0 8px;z-index:9999;background-color:#333;-webkit-box-shadow:0 3px 5px rgba(0,0,0,.2);box-shadow:0 3px 5px rgba(0,0,0,.2)}#adminmenu a.menu-top:focus+.wp-submenu,.js #adminmenu .opensub .wp-submenu,.js #adminmenu .sub-open,.no-js li.wp-has-submenu:hover .wp-submenu{top:-1px}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu .wp-submenu.sub-open,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu,.no-js li.wp-has-current-submenu:hover .wp-submenu{position:relative;z-index:3;top:auto;right:auto;left:auto;bottom:auto;border:0 none;margin-top:0;-webkit-box-shadow:none;box-shadow:none;background-color:#333}#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{position:relative;background-color:#111}.folded #adminmenu li.menu-top:hover,.folded #adminmenu li.opensub>a.menu-top,.folded #adminmenu li>a.menu-top:focus{z-index:10000}#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu .wp-menu-arrow,#adminmenu .wp-menu-arrow div,#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,.folded #adminmenu li.current.menu-top,.folded #adminmenu li.wp-has-current-submenu{background:#0074a2;color:#fff}.folded #adminmenu .opensub .wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,.folded #adminmenu .wp-has-current-submenu a.menu-top:focus+.wp-submenu,.folded #adminmenu .wp-has-current-submenu.opensub .wp-submenu,.folded #adminmenu .wp-submenu.sub-open,.folded #adminmenu a.menu-top:focus+.wp-submenu,.no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu{top:0;right:36px}.folded #adminmenu .wp-has-current-submenu .wp-submenu,.folded #adminmenu a.wp-has-current-submenu:focus+.wp-submenu{position:absolute;top:-1000em}#adminmenu .wp-not-current-submenu .wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu{min-width:160px;width:auto}#adminmenu .wp-submenu a{font-size:13px;line-height:1.2;margin:0;padding:6px 0}#adminmenu .opensub .wp-submenu li.current a,#adminmenu .wp-submenu li.current,#adminmenu .wp-submenu li.current a,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a{color:#fff}#adminmenu .wp-not-current-submenu li>a,.folded #adminmenu .wp-has-current-submenu li>a{padding-left:16px;padding-right:14px;-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}#adminmenu .wp-has-current-submenu ul>li>a,.folded #adminmenu li.menu-top .wp-submenu>li>a{padding:6px 12px}#adminmenu .wp-submenu-head,#adminmenu a.menu-top{font-size:14px;font-weight:400;line-height:18px;padding:0}#adminmenu .wp-submenu-head,.folded #adminmenu .wp-menu-name{display:none}.folded #adminmenu .wp-submenu-head{display:block}#adminmenu .wp-submenu li{padding:0;margin:0;overflow:hidden}#adminmenu .wp-menu-image img{padding:9px 0 0;opacity:.6;filter:alpha(opacity=60)}#adminmenu div.wp-menu-name{padding:8px 0}#adminmenu div.wp-menu-image{float:right;width:36px;height:34px;margin:0;text-align:center}#adminmenu div.wp-menu-image.svg{background-repeat:no-repeat;background-position:center;-webkit-background-size:20px auto;background-size:20px auto}div.wp-menu-image:before{color:#999;padding:7px 0;-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}#adminmenu div.wp-menu-image:before{color:#999}#adminmenu .current div.wp-menu-image:before,#adminmenu .wp-has-current-submenu div.wp-menu-image:before,#adminmenu a.current:hover div.wp-menu-image:before,#adminmenu a.wp-has-current-submenu:hover div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu:hover div.wp-menu-image:before{color:#fff}#adminmenu li:hover div.wp-menu-image:before{color:#2ea2cc}.folded #adminmenu div.wp-menu-image{width:35px;height:30px;position:absolute;z-index:25}.folded #adminmenu a.menu-top{height:34px}.no-font-face #adminmenu .wp-menu-image{display:none}.no-font-face #adminmenu div.wp-menu-name{padding:8px 12px}.no-font-face.auto-fold #adminmenu .wp-menu-name{margin-right:0}.sticky-menu #adminmenuwrap{position:fixed;z-index:9999}.wp-menu-arrow{display:none!important}ul#adminmenu a.wp-has-current-submenu{position:relative}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{left:0;border:solid 8px transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none;border-left-color:#f1f1f1;top:50%;margin-top:-8px}.folded ul#adminmenu li:hover a.wp-has-current-submenu:after{display:none}.folded ul#adminmenu a.wp-has-current-submenu:after,.folded ul#adminmenu>li a.current:after{border-width:4px;margin-top:-4px}#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after{left:0;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none;border-width:8px;top:10px;z-index:10000}.folded ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after{border-width:4px;margin-top:-4px;top:18px}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after{border-left-color:#333}#adminmenu li.menu-top:hover .wp-menu-image img,#adminmenu li.wp-has-current-submenu .wp-menu-image img{opacity:1;filter:alpha(opacity=100)}#adminmenu li.wp-menu-separator{height:5px;padding:0;margin:0 0 6px;cursor:inherit}#adminmenu div.separator{height:2px;padding:0}#adminmenu .wp-submenu .wp-submenu-head{color:#fff;font-weight:400;font-size:14px;padding:8px 11px 8px 4px;margin:-7px 0 4px}#adminmenu li.current,.folded #adminmenu li.wp-menu-open{border:0 none}#adminmenu .awaiting-mod,#adminmenu .update-plugins,#sidemenu li a span.update-plugins{display:inline-block;background-color:#d54e21;color:#fff;font-size:9px;line-height:17px;font-weight:600;margin:1px 2px 0 0;vertical-align:top;-webkit-border-radius:10px;border-radius:10px;z-index:26}#adminmenu li .awaiting-mod span,#adminmenu li span.update-plugins span,#sidemenu li a span.update-plugins span{display:block;padding:0 6px}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod{background-color:#2ea2cc;color:#fff}#adminmenu li span.count-0,#sidemenu li a .count-0{display:none}#collapse-menu{font-size:13px;line-height:34px;margin-top:10px;color:#aaa;-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}#collapse-menu:hover,#collapse-menu:hover #collapse-button div:after{color:#2ea2cc}.folded #collapse-menu span{display:none}#collapse-button,#collapse-button div{width:15px;height:15px}#collapse-button{float:right;height:15px;margin:10px 11px 10px 8px;width:15px;-webkit-border-radius:10px;border-radius:10px}#wpwrap #collapse-button div{padding:0}#collapse-button div:after{content:'\f148';display:block;line-height:15px;right:-3px;top:-3px;color:#aaa;font:400 20px/1 dashicons!important;speak:none;margin:0 auto;padding:0!important;position:relative;text-align:center;width:20px;-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.folded #collapse-button div:after,.rtl #collapse-button div:after{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.rtl.folded #collapse-button div:after{-webkit-transform:none;-ms-transform:none;transform:none}li#wp-admin-bar-menu-toggle{display:none}@media only screen and (max-width:900px){.auto-fold #wpcontent,.auto-fold #wpfooter{margin-right:56px}.auto-fold #adminmenu,.auto-fold #adminmenu li.menu-top,.auto-fold #adminmenuback,.auto-fold #adminmenuwrap{width:36px}.auto-fold #adminmenu .opensub .wp-submenu,.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,.auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus+.wp-submenu,.auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu,.auto-fold #adminmenu .wp-submenu.sub-open,.auto-fold #adminmenu a.menu-top:focus+.wp-submenu{top:0;right:36px}.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu,.auto-fold #adminmenu a.wp-has-current-submenu:focus+.wp-submenu{position:absolute;top:-1000em;margin-left:-1px;padding:7px 0 8px;z-index:9999}.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu{min-width:150px;width:auto}.auto-fold #adminmenu .wp-has-current-submenu li>a{padding-left:16px;padding-right:14px}.auto-fold #adminmenu li.menu-top .wp-submenu>li>a{padding-right:12px}.auto-fold #adminmenu .wp-menu-name{display:none}.auto-fold #adminmenu .wp-submenu-head{display:block}.auto-fold #adminmenu div.wp-menu-image{height:30px;width:34px;position:absolute;z-index:25}.auto-fold #adminmenu a.menu-top{height:34px}.auto-fold #adminmenu li.wp-menu-open{border:0 none}.auto-fold #adminmenu .wp-has-current-submenu.menu-top-last{margin-bottom:0}.auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after{display:none}.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after{border-width:4px;margin-top:-4px;top:16px}.auto-fold ul#adminmenu a.wp-has-current-submenu:after,.auto-fold ul#adminmenu>li a.current:after{border-width:4px;margin-top:-4px}.auto-fold #adminmenu li.menu-top:hover,.auto-fold #adminmenu li.opensub>a.menu-top,.auto-fold #adminmenu li>a.menu-top:focus{z-index:10000}.auto-fold #collapse-menu span{display:none}.auto-fold #collapse-button div{background:0 0}.auto-fold #collapse-button div:after{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.rtl.auto-fold #collapse-button div:after{-webkit-transform:none;-ms-transform:none;transform:none}}@media screen and (max-width:782px){.auto-fold #wpcontent{position:relative;margin-right:0;padding-right:10px}.sticky-menu #adminmenuwrap{position:relative;z-index:auto;top:0}.auto-fold #adminmenu,.auto-fold #adminmenuback,.auto-fold #adminmenuwrap{position:absolute;width:190px;z-index:100}.auto-fold #adminmenuback,.auto-fold #adminmenuwrap{display:none}.auto-fold .wp-responsive-open #adminmenuback,.auto-fold .wp-responsive-open #adminmenuwrap{display:block}.auto-fold #adminmenu li.menu-top{width:100%}.auto-fold #adminmenu li a{font-size:16px;padding:5px}.auto-fold #adminmenu li.menu-top .wp-submenu>li>a{padding:10px 20px 10px 10px}.auto-fold #adminmenu .wp-menu-name{display:block;margin-right:35px}.auto-fold ul#adminmenu a.wp-has-current-submenu:after,.auto-fold ul#adminmenu>li.current>a.current:after{border-width:8px;margin-top:-8px}.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after{display:none}#adminmenu .wp-submenu{position:relative;display:none}.auto-fold #adminmenu .selected .wp-submenu,.auto-fold #adminmenu .wp-menu-open .wp-submenu{position:relative;display:block;top:0;right:-1px;-webkit-box-shadow:none;box-shadow:none}.auto-fold #adminmenu .opensub .wp-submenu,.auto-fold #adminmenu .selected .wp-submenu:after,.auto-fold #adminmenu .wp-menu-open .wp-submenu:after{display:none}.auto-fold #adminmenu .selected .wp-submenu,.auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after{display:block}.auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus+.wp-submenu,.auto-fold #adminmenu a.menu-top:focus+.wp-submenu{position:relative;right:-1px;left:0;top:0}#adminmenu .wp-submenu .wp-submenu-head{display:none}#wp-responsive-toggle{position:fixed;top:5px;right:4px;padding-left:10px;z-index:99999;border:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#wpadminbar #wp-admin-bar-menu-toggle a{display:block;padding:0;overflow:hidden;outline:0;text-decoration:none;border:1px solid transparent;background:0 0;height:44px;margin-right:-1px}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:#333}li#wp-admin-bar-menu-toggle{display:block}#wpadminbar #wp-admin-bar-menu-toggle a:hover{border:1px solid transparent}#wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before{content:'\f228';display:inline-block;float:right;font:400 40px/45px Dashicons;vertical-align:middle;outline:0;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;height:44px;width:50px;padding:0;border:0;text-align:center;text-decoration:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}}@media screen and (max-width:600px){#adminmenuback,#adminmenuwrap{display:none}.wp-responsive-open #adminmenuback,.wp-responsive-open #adminmenuwrap{display:block}.auto-fold #adminmenu{top:46px}}#wpbody-content #dashboard-widgets.columns-1 .postbox-container{width:100%}#wpbody-content #dashboard-widgets.columns-2 .postbox-container{width:49.5%}#wpbody-content #dashboard-widgets.columns-2 #postbox-container-2,#wpbody-content #dashboard-widgets.columns-2 #postbox-container-3,#wpbody-content #dashboard-widgets.columns-2 #postbox-container-4{float:left;width:50.5%}#wpbody-content #dashboard-widgets.columns-3 .postbox-container{width:33.5%}#wpbody-content #dashboard-widgets.columns-3 #postbox-container-1{width:33%}#wpbody-content #dashboard-widgets.columns-3 #postbox-container-3,#wpbody-content #dashboard-widgets.columns-3 #postbox-container-4{float:left}#dashboard-widgets .postbox-container,#wpbody-content #dashboard-widgets.columns-4 .postbox-container{width:25%}#dashboard-widgets-wrap .columns-3 #postbox-container-4 .empty-container{border:0!important}.ie8 #wpbody-content #dashboard-widgets .postbox-container{width:49.5%}.ie8 #wpbody-content #dashboard-widgets #postbox-container-2,.ie8 #wpbody-content #dashboard-widgets #postbox-container-3,.ie8 #wpbody-content #dashboard-widgets #postbox-container-4{float:left;width:50.5%}.ie8 #dashboard-widgets #postbox-container-3 .empty-container,.ie8 #dashboard-widgets #postbox-container-4 .empty-container{border:0 none;height:0;min-height:0}#dashboard-widgets-wrap{overflow:hidden;margin:0 -8px}#dashboard-widgets .postbox .inside{margin-bottom:0}#dashboard-widgets .meta-box-sortables{margin:0 8px;min-height:100px}h3.dashboard-widget-title,h3.dashboard-widget-title small,h3.dashboard-widget-title span{color:#333}h3.dashboard-widget-title small a{color:#d7d7d7}h3.dashboard-widget-title small a:hover{color:#fff}#the-comment-list td.comment p.comment-author{margin-top:0;margin-right:0}#the-comment-list p.comment-author img{float:right;margin-left:8px}#the-comment-list p.comment-author strong a{border:0}#the-comment-list td{vertical-align:top}#the-comment-list td.comment{word-wrap:break-word}#the-comment-list td.comment img{max-width:100%}.welcome-panel{position:relative;overflow:auto;margin:16px 0;padding:23px 10px 0;border:1px solid #e5e5e5;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.04);box-shadow:0 1px 1px rgba(0,0,0,.04);background:#fff;font-size:13px;line-height:2.1em}.welcome-panel h3{margin:0;font-size:21px;font-weight:400;line-height:1.2}.welcome-panel h4{margin:1.33em 0 0;font-size:16px}.welcome-panel li{font-size:14px}.welcome-panel p{color:#777}.welcome-panel a{text-decoration:none}.welcome-panel .about-description{font-size:16px;margin:0}.welcome-panel .welcome-panel-close{position:absolute;top:5px;left:10px;padding:20px 3px 0 15px;font-size:13px;text-decoration:none;line-height:1}#welcome-panel.welcome-panel .welcome-panel-close::before{position:absolute;right:-18px;margin-top:-2px;-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}.wp-core-ui .welcome-panel .button.button-hero{margin:15px 0 3px}.welcome-panel-content{margin-right:13px;max-width:1500px}.welcome-panel .welcome-panel-column-container{clear:both;overflow:hidden;position:relative}.welcome-panel .welcome-panel-column{width:32%;min-width:200px;float:right}.ie8 .welcome-panel .welcome-panel-column{min-width:230px}.welcome-panel .welcome-panel-column:first-child{width:36%}.welcome-panel-column p.hide-if-no-customize{margin-top:10px}.welcome-panel-column p{margin-top:7px;color:#464646}.welcome-panel .welcome-icon{display:block;padding:0 0 8px;background:transparent!important}.welcome-panel .welcome-icon:before{color:#888;font:400 20px/1 dashicons;speak:none;display:inline-block;padding:0 0 0 10px;top:-1px;position:relative;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important;vertical-align:top}.welcome-panel .welcome-edit-page:before,.welcome-panel .welcome-write-blog:before{content:'\f119';top:-3px}.welcome-panel .welcome-add-page:before{content:'\f132'}.welcome-panel .welcome-view-site:before{content:'\f115';top:-2px}.welcome-panel .welcome-widgets-menus:before{content:'\f116';top:-2px}.welcome-panel .welcome-comments:before{content:'\f117';top:-1px}.welcome-panel .welcome-learn-more:before{content:'\f118';top:-1px}.welcome-panel .welcome-widgets-menus{line-height:16px}.welcome-panel .welcome-panel-column ul{margin:.8em 0 1em 1em}.welcome-panel .welcome-panel-column li{line-height:16px;list-style-type:none}#dashboard_primary .inside{margin:0;padding:0}#dashboard_primary .dashboard-widget-control-form,#dashboard_primary .widget-loading{padding:12px 12px 0}body #dashboard-widgets .postbox form .submit{margin:0}.dashboard-widget-control-form{overflow:hidden}.dashboard-widget-control-form p{margin-top:0}div.dashboard-widget-error{background-color:#c43}div.dashboard-widget-notice{background-color:#cfe1ef}.rssSummary{color:#777;margin-top:4px}#dashboard_primary .rss-widget{border-bottom:1px solid #eee;font-size:13px;padding:8px 12px 10px}#dashboard_primary .rss-widget:last-child{border-bottom:0;padding-bottom:8px}#dashboard_primary .rss-widget a{font-weight:400}#dashboard_primary .rss-widget span,#dashboard_primary .rss-widget span.rss-date{color:#777}#dashboard_primary .rss-widget span.rss-date{margin-right:12px}#dashboard_primary .rss-widget ul li{margin-bottom:8px}#dashboard_right_now ul{margin:0;overflow:hidden}#dashboard_right_now li{width:50%;float:right;margin-bottom:10px}#dashboard_right_now .inside{overflow:hidden;padding:0}#dashboard_right_now .main{overflow:hidden;padding:0 12px 11px}#dashboard_right_now .main p{margin:0}#dashboard_right_now #wp-version-message .button{clear:left;float:left;position:relative;top:-5px}.mu-storage{overflow:hidden}#dashboard-widgets h4.mu-storage{margin-bottom:10px}#dashboard_right_now li a:before,#dashboard_right_now li span:before{color:#888}#dashboard_right_now .sub{color:#777;background:#f5f5f5;border-top:1px solid #eee;padding:10px 12px 6px}#dashboard_right_now .sub h4{color:#555}#dashboard_right_now .sub p{margin:0 0 1em}#dashboard_right_now .warning a:before,#dashboard_right_now .warning span:before{color:#d54e21}#dashboard_right_now li a:before,#dashboard_right_now li span:before{content:'\f159';font:400 20px/1 dashicons;speak:none;display:block;float:right;margin:0 0 0 5px;padding:0;text-indent:0;text-align:center;position:relative;-webkit-font-smoothing:antialiased;text-decoration:none!important}#dashboard_right_now .page-count a:before,#dashboard_right_now .page-count span:before{content:'\f105'}#dashboard_right_now .post-count a:before,#dashboard_right_now .post-count span:before{content:'\f109'}#dashboard_right_now .comment-count a:before{content:'\f101'}#dashboard_right_now .comment-mod-count a:before{content:'\f125'}#dashboard_right_now .storage-count a:before{content:'\f104'}#dashboard_right_now .storage-count.warning a:before{content:'\f153'}#dashboard_quick_press .inside{margin:0;padding:0}#dashboard_quick_press div.updated{margin-bottom:10px;border:1px solid #eee;border-width:1px 0 1px 1px}#dashboard_quick_press form{overflow:hidden;margin:12px}#dashboard_quick_press .drafts,#dashboard_quick_press .easy-blogging{padding:10px 0 0}input#save-post{float:right}form.initial-form.quickpress-open label.prompt{font-style:normal}form.initial-form.quickpress-open input#title{height:auto}#dashboard_quick_press input,#dashboard_quick_press textarea{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:0}#dashboard_quick_press textarea{resize:vertical}#description-wrap{margin-top:12px}#title-wrap #title-prompt-text,.textarea-wrap #content-prompt-text{color:#777}.input-text-wrap,.textarea-wrap{position:relative}.input-text-wrap .prompt,.textarea-wrap .prompt{position:absolute}.textarea-wrap #content-prompt-text{font-size:1.1em;padding:7px 8px}.textarea-wrap textarea#content{margin:0 0 8px;padding:6px 7px}#quick-press textarea#content{min-height:90px;max-height:1300px;resize:none}.js #dashboard_quick_press .drafts{border-top:1px solid #eee}#dashboard_quick_press .drafts abbr{border:0}#dashboard_quick_press .drafts h4{margin:0 12px 8px;font-weight:400}#dashboard_quick_press .drafts .view-all{float:left;margin:0 0 0 12px}#dashboard_primary a.rsswidget{font-weight:400}#dashboard_quick_press .drafts ul{margin:0 12px}#dashboard_quick_press .drafts li{margin-bottom:1em}#dashboard_quick_press .drafts li time{color:#777}#dashboard_quick_press .drafts p{margin:0;word-wrap:break-word}#dashboard_quick_press .draft-title{overflow:hidden}#dashboard_quick_press .draft-title a,#dashboard_quick_press .draft-title time{float:right;margin:0 0 0 5px}#dashboard-widgets #dashboard_activity h4{margin:0 12px 8px 0;font-weight:400}#dashboard-widgets #dashboard_activity h4.comment-meta{margin:0}#dashboard_activity h4.comment-meta{margin-bottom:4px}#dashboard_activity ul{padding:0 12px}#dashboard_activity .comment-meta span.approve:before{content:'\f227';font:20px/.5 dashicons;margin-right:12px;vertical-align:middle;position:relative;top:-1px;margin-left:2px}#dashboard_activity .inside{padding:0;margin:0}#dashboard_activity .no-activity{overflow:hidden;padding:0 12px 12px;text-align:center}#dashboard_activity .no-activity p{color:#999;font-size:16px}#dashboard_activity .no-activity .smiley{margin-top:0}#dashboard_activity .no-activity .smiley:before{content:'\f328';font:400 120px/1 dashicons;speak:none;display:block;margin:0 0 0 5px;padding:0;text-indent:0;text-align:center;position:relative;-webkit-font-smoothing:antialiased;text-decoration:none!important}#dashboard_activity .subsubsub{float:none;border-top:1px solid #eee;margin-top:0;padding:8px 12px 4px}#future-posts ul,#published-posts ul{clear:both;margin-bottom:0}#future-posts li,#published-posts li{overflow:hidden;margin-bottom:8px}#future-posts ul span,#published-posts ul span{color:#777;float:right;margin-left:8px;min-width:150px}.activity-block{border-bottom:1px solid #eee;overflow:hidden;padding:8px 0 4px}.activity-block:last-child{border-bottom:0}.activity-block .subsubsub li{color:#ddd}#activity-widget #the-comment-list div.undo,#activity-widget #the-comment-list tr.undo{background:0 0;padding:6px 0}#activity-widget #the-comment-list .alt,#activity-widget #the-comment-list .alternate{background:0 0}#activity-widget #the-comment-list .comment-item{background:#fafafa;padding:12px;position:relative}#activity-widget #the-comment-list img{position:absolute;right:13px;top:13px}#activity-widget #the-comment-list .dashboard-comment-wrap{padding-right:63px}#activity-widget #the-comment-list .dashboard-comment-wrap blockquote{margin:1em 0}#activity-widget #the-comment-list .comment-item h4{font-size:13px;color:#999}#activity-widget #the-comment-list .comment-item p.row-actions{margin:4px 0 0}#activity-widget #the-comment-list .comment-item:first-child{border-top:1px solid #eee}#activity-widget #the-comment-list .unapproved{background-color:#fef7f1}#activity-widget #the-comment-list .unapproved:before{content:"";display:block;position:absolute;right:0;top:0;bottom:0;background:#d54e21;width:4px}#activity-widget #the-comment-list .spam-undo-inside .avatar,#activity-widget #the-comment-list .trash-undo-inside .avatar{margin-left:20px;position:relative;top:0}#dashboard-widgets #dashboard_browser_nag.postbox .inside{margin:10px}.edit-box{display:none}h3:hover .edit-box{display:inline}#dashboard-widgets form .input-text-wrap input,#dashboard-widgets form .textarea-wrap textarea{width:100%}#dashboard-widgets .postbox form .submit{float:none;margin:.5em 0 0;padding:0;border:0}#dashboard-widgets-wrap #dashboard-widgets .postbox form .submit #publish{min-width:0}#dashboard-widgets a{text-decoration:none}#dashboard-widgets h3 a{text-decoration:underline}#dashboard-widgets h3 .postbox-title-action{position:absolute;left:10px;padding:0;top:5px}.js #dashboard-widgets h3 .postbox-title-action{left:33px}#dashboard-widgets h4{color:#222;font-weight:400;font-size:14px;margin:0 0 .2em;padding:0}#dashboard_plugins h5{font-size:14px}#latest-comments #the-comment-list{position:relative}#activity-widget #the-comment-list .comment{-webkit-box-shadow:inset 0 1px 0 rgba(0,0,0,.06);box-shadow:inset 0 1px 0 rgba(0,0,0,.06)}#activity-widget .comments #the-comment-list .alt{background-color:transparent}#activity-widget #latest-comments #the-comment-list .comment-item{padding:1em 12px}#latest-comments #the-comment-list .pingback{padding-right:12px!important}#latest-comments #the-comment-list .comment-item:first-child{border-top:0}#latest-comments #the-comment-list .comment-item h4{line-height:1.5em;margin-top:0;color:#666}#latest-comments #the-comment-list .comment-item h4 cite{font-style:normal;font-weight:400}#latest-comments #the-comment-list .comment-item blockquote,#latest-comments #the-comment-list .comment-item blockquote p{margin:0;padding:0;display:inline}#latest-comments #the-comment-list .comment-item p.row-actions{margin:3px 0 0;padding:0;font-size:13px}#title-wrap label{cursor:text}#title-wrap #title{padding:2px 6px;font-size:1.3em;line-height:100%;outline:0}#title-wrap #title-prompt-text{font-size:1.1em;padding:5px 8px}.rss-widget ul{margin:0;padding:0;list-style:none}a.rsswidget{font-size:14px;font-weight:600;line-height:1.7em}.rss-widget ul li{line-height:1.5em;margin-bottom:12px}.rss-widget span.rss-date{color:#999;font-size:13px;margin-right:3px}.rss-widget cite{display:block;text-align:left;margin:0 0 1em;padding:0}.rss-widget cite:before{content:'\2014'}.dashboard-comment-wrap{overflow:hidden;word-wrap:break-word}#dashboard_browser_nag a.update-browser-link{font-size:1.2em;font-weight:600}#dashboard_browser_nag a{text-decoration:underline}#dashboard_browser_nag p.browser-update-nag.has-browser-icon{padding-left:125px}#dashboard_browser_nag .browser-icon{margin-top:-35px}#dashboard_browser_nag.postbox.browser-insecure{background-color:#ac1b1b;border-color:#ac1b1b}#dashboard_browser_nag.postbox{background-color:#e29808;background-image:none;border-color:#edc048;color:#fff;-webkit-box-shadow:none;box-shadow:none}#dashboard_browser_nag.postbox.browser-insecure h3{border-bottom-color:#cd5a5a;color:#fff}#dashboard_browser_nag.postbox h3{border-bottom-color:#f6e2ac;background:transparent none;color:#fff;-webkit-box-shadow:none;box-shadow:none}#dashboard_browser_nag a{color:#fff}#dashboard_browser_nag h3.hndle{border:0;font-weight:600;font-size:20px;padding-top:10px}.postbox#dashboard_browser_nag p a.dismiss{font-size:14px}.postbox#dashboard_browser_nag a,.postbox#dashboard_browser_nag p,.postbox#dashboard_browser_nag p.browser-update-nag{font-size:16px}@media only screen and (max-width:799px){#wpbody-content #dashboard-widgets .postbox-container{width:100%}}@media only screen and (min-width:800px) and (max-width:1499px){#wpbody-content #dashboard-widgets .postbox-container{width:49.5%}#wpbody-content #dashboard-widgets #postbox-container-2,#wpbody-content #dashboard-widgets #postbox-container-3,#wpbody-content #dashboard-widgets #postbox-container-4{float:left;width:50.5%}#dashboard-widgets #postbox-container-3 .empty-container,#dashboard-widgets #postbox-container-4 .empty-container{border:0 none;height:0;min-height:0}#wpbody #wpbody-content #dashboard-widgets.columns-1 .postbox-container{width:100%}#wpbody #wpbody-content .metabox-holder.columns-1 .postbox-container .empty-container{border:0 none;height:0;min-height:0}.index-php .columns-prefs,.index-php .screen-layout{display:block}.columns-prefs .columns-prefs-3,.columns-prefs .columns-prefs-4{display:none}}@media only screen and (min-width:1500px) and (max-width:1800px){#wpbody-content #dashboard-widgets .postbox-container{width:33.5%}#wpbody-content #dashboard-widgets #postbox-container-1{width:33%}#wpbody-content #dashboard-widgets #postbox-container-3,#wpbody-content #dashboard-widgets #postbox-container-4{float:left}#dashboard-widgets #postbox-container-4 .empty-container{border:0 none;height:0;min-height:0}}@media screen and (max-width:870px){.welcome-panel .welcome-panel-column,.welcome-panel .welcome-panel-column:first-child{display:block;float:none;width:100%}.welcome-panel .welcome-panel-column li{display:inline-block;margin-left:13px}.welcome-panel .welcome-panel-column ul{margin:.4em 0 0}}@media screen and (max-width:782px){#dashboard_recent_comments #the-comment-list .comment-item .avatar{height:30px;width:30px;margin:4px 0 5px 10px}}@media screen and (max-width:600px){.welcome-panel .welcome-panel-close{overflow:hidden;text-indent:100%;white-space:nowrap;width:20px;height:20px;left:0;padding:5px}#welcome-panel.welcome-panel .welcome-panel-close::before{font-size:20px;margin:0}}.post-com-count-wrapper{min-width:22px}.post-com-count{background:0 0;height:1.3em;line-height:1.1em;display:block;text-decoration:none;padding:0 0 6px;cursor:pointer;background-position:center -80px;background-repeat:no-repeat;color:#fff}.post-com-count:after{content:"";display:block;width:0;height:0;margin-right:8px;border-top:5px solid #bbb;border-left:5px solid transparent}.post-com-count span{font-size:11px;font-weight:600;height:1.4em;line-height:1.4em;min-width:.7em;padding:0 6px;display:inline-block;-webkit-border-radius:5px;border-radius:5px;background-color:#bbb;color:#fff}.post-com-count:hover{background-position:center -3px}.post-com-count:hover span{background-color:#2ea2cc}.post-com-count:hover:after{border-top:5px solid #2ea2cc}strong .post-com-count{background-position:center -55px}strong .post-com-count span{background-color:#0074a2}strong .post-com-count:after{border-top:5px solid #0074a2}.column-response .post-com-count{float:right;margin-left:5px;text-align:center}.response-links{float:right}.commentlist li{padding:1em 1em .2em;margin:0;border-bottom:1px solid #ccc}.commentlist li li{border-bottom:0;padding:0}.commentlist p{padding:0;margin:0 0 .8em}#submitted-on,.submitted-on{color:#777}#replyrow td{padding:2px}#replysubmit{margin:0;padding:0 5px 3px;text-align:center}#replysubmit .spinner{padding:2px 0 0;vertical-align:top;float:left}#replysubmit .button{margin-left:5px}#replysubmit .error{color:red;line-height:21px;text-align:center}#replyrow h5{margin:.2em 0 0;padding:0 5px;line-height:1.4em;font-size:1em}#edithead .inside{float:right;padding:3px 5px 2px 0;margin:0;text-align:center}#edithead .inside input{width:180px}#edithead label{padding:2px 0}#replycontainer{padding:5px}#replycontent{height:120px;-webkit-box-shadow:none;box-shadow:none}#replyerror{border-color:#ddd;background-color:#f9f9f9}.commentlist .avatar{vertical-align:text-top}#the-comment-list .attachment-80x60{padding:4px 8px}#the-comment-list div.undo,#the-comment-list tr.undo{background-color:#f4f4f4}#the-comment-list .unapproved td,#the-comment-list .unapproved th{background-color:#fef7f1}#the-comment-list .unapproved th.check-column{border-right:4px solid #d54e21}#the-comment-list .unapproved th.check-column input{margin-right:4px}#the-comment-list .approve a{color:#006505}#the-comment-list .unapprove a{color:#d98500}#the-comment-list td,#the-comment-list th{-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.1);box-shadow:inset 0 -1px 0 rgba(0,0,0,.1)}#the-comment-list tr:last-child td,#the-comment-list tr:last-child th{-webkit-box-shadow:none;box-shadow:none}#the-comment-list tr.unapproved+tr.approved td,#the-comment-list tr.unapproved+tr.approved th{border-top:1px solid rgba(0,0,0,.03)}.vim-current,.vim-current td,.vim-current th{background-color:#e4f2fd!important}th .comment-grey-bubble{height:16px;width:16px}th .comment-grey-bubble:before{content:'\f101';font:400 20px/.5 dashicons;speak:none;display:inline-block;padding:0;top:4px;right:-4px;position:relative;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important;color:#444}table.fixed{table-layout:fixed}.fixed .column-rating,.fixed .column-visible{width:8%}.fixed .column-author,.fixed .column-date,.fixed .column-format,.fixed .column-links,.fixed .column-parent,.fixed .column-posts{width:10%}.fixed .column-comment .comment-author{display:none}.fixed .column-categories,.fixed .column-rel,.fixed .column-response,.fixed .column-role,.fixed .column-tags{width:15%}.fixed .column-slug{width:25%}.fixed .column-locations{width:35%}.fixed .column-comments{width:4em;padding:8px 0;text-align:right}.fixed .column-comments .vers{padding-right:3px}.fixed .column-comments a{float:right}.fixed .column-icon{width:80px}.wp-list-table a{-webkit-transition:none;transition:none}#the-list tr:last-child td,#the-list tr:last-child th{border-bottom:0!important;-webkit-box-shadow:none;box-shadow:none}#comments-form .fixed .column-author{width:20%}#commentsdiv.postbox .inside{margin:0;padding:0}#commentsdiv .inside .row-actions{line-height:18px}#commentsdiv .inside .column-author{width:25%}#commentsdiv .column-comment p{margin:.6em 0;padding:0}#commentsdiv #replyrow td{padding:0}#commentsdiv p{padding:8px 10px;margin:0}#commentsdiv .comments-box{border:0 none}#commentsdiv .comments-box thead th{background:0 0;padding:0 7px 4px;font-style:italic}#commentsdiv .comments-box tr:last-child td{border-bottom:0 none}#commentsdiv .spinner{padding-right:5px}.sorting-indicator{display:none;width:10px;height:4px;margin-top:8px;margin-right:7px}.sorting-indicator:before{background:0 0;content:'\f142';font:400 20px/1 dashicons;speak:none;display:inline-block;padding:0;top:-4px;right:-8px;line-height:10px;position:relative;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important;color:#444}.column-comments .sorting-indicator:before{top:0;right:-10px}th.desc:hover span.sorting-indicator:before,th.sorted.asc .sorting-indicator:before{content:'\f142'}th.asc:hover span.sorting-indicator:before,th.sorted.desc .sorting-indicator:before{content:'\f140'}tr.wp-locked .locked-indicator{margin-right:6px;height:20px;width:16px}tr.wp-locked .locked-indicator:before{color:#888;content:'\f160';display:inline-block;float:right;font:400 20px/1 dashicons;speak:none;vertical-align:middle;margin-right:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}tr.wp-locked .check-column input[type=checkbox],tr.wp-locked .check-column label,tr.wp-locked .row-actions .inline,tr.wp-locked .row-actions .trash{display:none}tr .locked-info{height:0;opacity:0}tr.wp-locked .locked-info{margin-top:8px;height:auto;opacity:1}.locked-text{vertical-align:top}tr.locked-info,tr.wp-locked .locked-info{-webkit-transition:height 1s,opacity .5s;transition:height 1s,opacity .5s}.fixed .column-comments .sorting-indicator{margin-top:3px}#menu-locations-wrap .widefat{width:60%}.widefat th.sortable,.widefat th.sorted{padding:0}th.sortable a,th.sorted a{display:block;overflow:hidden;padding:7px 10px 8px 7px}th.manage-column a,th.sortable a:active,th.sortable a:focus,th.sortable a:hover{color:#333}th.sortable a:focus{background:#e1e1e1}.fixed .column-comments.sortable a,.fixed .column-comments.sorted a{padding:8px 0}th.sortable a span,th.sorted a span{float:right;cursor:pointer}th.desc:hover span.sorting-indicator,th.sorted.asc .sorting-indicator{display:block;background-position:0 0}th.asc:hover span.sorting-indicator,th.sorted.desc .sorting-indicator{display:block;background-position:-7px 0}.tablenav-pages a{font-weight:600;margin-left:1px;padding:0 2px}.tablenav-pages .current-page{padding-top:0;text-align:center}.tablenav-pages .next-page{margin-right:2px}.tablenav a.button-secondary{display:block;margin:3px 0 0 8px}.tablenav{clear:both;height:30px;margin:6px 0 4px;vertical-align:middle}.tablenav.themes{max-width:98%}.tablenav .tablenav-pages{float:left;display:block;cursor:default;height:30px;color:#555;line-height:30px;font-size:12px}.tablenav .no-pages,.tablenav .one-page .pagination-links{display:none}.tablenav .tablenav-pages a,.tablenav-pages span.current{text-decoration:none;padding:3px 6px}.tablenav .tablenav-pages a{padding:0 10px 3px;background:#eee;background:rgba(0,0,0,.05);font-size:16px;font-weight:400}.tablenav .tablenav-pages a:focus,.tablenav .tablenav-pages a:hover{color:#fff;background:#2ea2cc}.tablenav .tablenav-pages a.disabled,.tablenav .tablenav-pages a.disabled:active,.tablenav .tablenav-pages a.disabled:focus,.tablenav .tablenav-pages a.disabled:hover{color:#aaa;background:#eee;background:rgba(0,0,0,.05)}.tablenav .displaying-num{margin-left:2px;color:#777;font-size:12px;font-style:italic}.tablenav .actions{overflow:hidden;padding:2px 0 0 8px}.tablenav .delete{margin-left:20px}.tablenav .dots{border-color:transparent}.tablenav .next,.tablenav .prev{border-color:transparent;color:#0074a2}.tablenav .next:hover,.tablenav .prev:hover{border-color:transparent;color:#2ea2cc}.view-switch{float:left;margin:5px 8px 0 16px}.view-switch img{display:none}.view-switch a{text-decoration:none}.view-switch>a{display:inline-block;width:18px;height:18px}.view-switch>a:before{color:#bbb;content:'\f163';display:inline-block;float:right;font:400 20px/1 dashicons;speak:none;vertical-align:middle;margin-right:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.view-switch a:hover:before{color:#727272}.view-switch a.current:before{color:#0074a2}.view-switch>a+a:before{margin-right:5px;content:'\f164'}.filter{float:right;margin:-5px 10px 0 0}.filter .subsubsub{margin-right:-10px;margin-top:13px}.screen-per-page{width:4em}#posts-filter fieldset{float:right;margin:0 0 1em 1.5ex;padding:0}#posts-filter fieldset legend{padding:0 1px .2em 0}p.pagenav{margin:0;display:inline}.pagenav span{font-weight:600;margin:0 6px}.row-title{font-size:14px!important;font-weight:600}.column-comment .comment-author{margin-bottom:.6em}.column-author img,.column-comment .comment-author img,.column-username img{float:right;margin-left:10px;margin-top:1px}.row-actions{color:#ddd;font-size:13px;visibility:hidden;padding:2px 0 0}.mobile .row-actions,.row-actions.visible,div.comment-item:hover .row-actions,tr:hover .row-actions{visibility:visible}.row-actions-visible{padding:2px 0 0}#wpbody-content .inline-edit-row fieldset{font-size:12px;float:right;margin:0;padding:0;width:100%}#wpbody-content .inline-edit-row fieldset .inline-edit-col,tr.inline-edit-row td{padding:0 .5em}#wpbody-content .quick-edit-row-page fieldset.inline-edit-col-right .inline-edit-col{border-width:0 1px 0 0;border-style:none none none solid}#wpbody-content .quick-edit-row-post .inline-edit-col-left{width:40%}#wpbody-content .quick-edit-row-post .inline-edit-col-right{width:39%}#wpbody-content .inline-edit-row-post .inline-edit-col-center{width:20%}#wpbody-content .quick-edit-row-page .inline-edit-col-left{width:50%}#wpbody-content .bulk-edit-row-post .inline-edit-col-right,#wpbody-content .quick-edit-row-page .inline-edit-col-right{width:49%}#wpbody-content .bulk-edit-row .inline-edit-col-left{width:30%}#wpbody-content .bulk-edit-row-page .inline-edit-col-right{width:69%}#wpbody-content .bulk-edit-row .inline-edit-col-bottom{float:left;width:69%}#wpbody-content .inline-edit-row-page .inline-edit-col-right{margin-top:27px}.inline-edit-row fieldset .inline-edit-group{clear:both}.inline-edit-row fieldset .inline-edit-group:after{content:".";display:block;height:0;clear:both;visibility:hidden}.inline-edit-row p.submit{clear:both;padding:.5em;margin:.5em 0 0}.inline-edit-row span.error{line-height:22px;margin:0 15px;padding:3px 5px}.inline-edit-row h4{margin:.2em 0;padding:0;line-height:23px}.inline-edit-row fieldset span.checkbox-title,.inline-edit-row fieldset span.title{margin:0;padding:0}.inline-edit-row fieldset label,.inline-edit-row fieldset span.inline-edit-categories-label{display:block;margin:.2em 0}.inline-edit-row fieldset label.inline-edit-tags{margin-top:0}.inline-edit-row fieldset label.inline-edit-tags span.title{margin:.2em 0;width:auto}.inline-edit-row fieldset label span.title{display:block;float:right;width:5em}.inline-edit-row fieldset label span.input-text-wrap{display:block;margin-right:5em}.quick-edit-row-post fieldset.inline-edit-col-right label span.title{width:auto;padding-left:.5em}.inline-edit-row .input-text-wrap input[type=text]{width:100%}.inline-edit-row fieldset label input[type=checkbox]{vertical-align:text-bottom}.inline-edit-row fieldset label textarea{width:100%;height:4em}#wpbody-content .bulk-edit-row fieldset .inline-edit-group label{max-width:50%}#wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child{margin-left:.5em}.inline-edit-col-right .input-text-wrap input.inline-edit-menu-order-input{width:6em}.inline-edit-save .spinner{padding:4px 10px 0;vertical-align:top;float:left}.inline-edit-row h4{text-transform:uppercase}.inline-edit-row fieldset span.checkbox-title,.inline-edit-row fieldset span.title{font-style:italic;line-height:1.8em}.inline-edit-row fieldset .inline-edit-date{float:right}.inline-edit-row fieldset input[name=hh],.inline-edit-row fieldset input[name=jj],.inline-edit-row fieldset input[name=mn]{font-size:12px;width:2.1em}.inline-edit-row fieldset input[name=aa]{font-size:12px;width:3.5em}.inline-edit-row fieldset label input.inline-edit-password-input{width:8em}ul.cat-checklist{height:12em;border:solid 1px #ddd;overflow-y:scroll;padding:0 5px;margin:0;background-color:#fff}#bulk-titles{display:block;height:12em;border:1px solid #ddd;overflow-y:scroll;padding:0 5px;margin:0 0 5px}.inline-edit-row fieldset ul.cat-checklist input,.inline-edit-row fieldset ul.cat-checklist li{margin:0;position:relative}.inline-edit-row #bulk-titles div,.inline-edit-row fieldset ul.cat-checklist label{font-style:normal;font-size:11px}.inline-edit-row fieldset label input.inline-edit-menu-order-input{width:3em}.inline-edit-row fieldset label input.inline-edit-slug-input{width:75%}.inline-edit-row #post_parent,.inline-edit-row select[name=page_template]{max-width:80%}.ie8 .inline-edit-row #post_parent,.ie8 .inline-edit-row select[name=page_template]{width:250px}.quick-edit-row-post fieldset label.inline-edit-status{float:right}#bulk-titles{line-height:140%}#bulk-titles div{margin:.2em .3em}#bulk-titles div a{cursor:pointer;display:block;float:right;height:18px;margin:0 -2px 0 3px;overflow:hidden;position:relative;width:20px}#bulk-titles div a:before{position:relative;top:-3px}.plugins tbody,.plugins tbody th.check-column{padding:8px 2px 0 0}.plugins tbody th.check-column input[type=checkbox]{margin-top:4px}#update-plugins-table tbody td p{margin-top:0}#update-plugins-table tbody td p strong{font-size:14px}.plugins .inactive th.check-column,.plugins tfoot th.check-column,.plugins thead th.check-column{padding-right:6px}#update-plugins-table tfoot th.check-column,#update-plugins-table thead th.check-column{padding-top:11px}.plugins,.plugins td,.plugins th{color:#000}.plugins tr{background:#fff}.plugins p{margin:0 4px;padding:0}.plugins .desc p{margin:0 0 8px}.plugins td.desc{line-height:1.5em}.plugins .desc ol,.plugins .desc ul{margin:0 2em 0 0}.plugins .desc ul{list-style-type:disc}.plugins .row-actions{font-size:13px}.plugins .active td,.plugins .active th,.plugins .inactive td,.plugins .inactive th{padding:10px 9px}.plugins .active td,.plugins .active th{background-color:#f7fcfe}.plugins .update td,.plugins .update th{border-bottom:0}.plugin-update-tr td{border-top:0}.plugin-install #the-list td,.plugins .active td,.plugins .active th,.plugins .inactive td,.plugins .inactive th,.upgrade .plugins td,.upgrade .plugins th{-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.1);box-shadow:inset 0 -1px 0 rgba(0,0,0,.1)}.plugins tr.active+tr.inactive td,.plugins tr.active+tr.inactive th,.plugins tr.active.plugin-update-tr+tr.inactive td,.plugins tr.active.plugin-update-tr+tr.inactive th{border-top:1px solid rgba(0,0,0,.03);-webkit-box-shadow:inset 0 1px 0 rgba(0,0,0,.02),inset 0 -1px 0 #e1e1e1;box-shadow:inset 0 1px 0 rgba(0,0,0,.02),inset 0 -1px 0 #e1e1e1}.plugins .update td,.plugins .update th,.plugins tr.active+tr.inactive.update td,.plugins tr.active+tr.inactive.update th,.upgrade .plugins tr:last-of-type td,.upgrade .plugins tr:last-of-type th{-webkit-box-shadow:none;box-shadow:none}.plugins .active.update td,.plugins .active.update th,tr.active.update+tr.plugin-update-tr .plugin-update{background-color:#fef7f1}.plugins .active th.check-column{border-right:4px solid #2ea2cc}.plugins .active.update th.check-column,.plugins .active.update+.plugin-update-tr .plugin-update{border-right:4px solid #d54e21}#wpbody-content .plugins .plugin-title,#wpbody-content .plugins .theme-title{padding-left:12px;white-space:nowrap}.plugins .inactive .plugin-title strong{font-weight:400}.plugins .row-actions,.plugins .second{padding:0 0 5px}.plugins .update .row-actions,.plugins .update .second{padding-bottom:0}.plugins-php .widefat tfoot td,.plugins-php .widefat tfoot th{border-top-style:solid;border-top-width:1px}.plugin-update-tr .update-message{font-size:13px;font-weight:400;padding:6px 12px;margin:0 31px 8px 10px;background-color:#f7f7f7;background-color:rgba(0,0,0,.03)}.plugin-update-tr .update-message:before{color:#d54e21;content:'\f463';display:inline-block;font:400 20px/1 dashicons;speak:none;margin:0 -2px 0 8px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;vertical-align:top}.plugins .plugin-update{padding:0;border:0;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.1);box-shadow:inset 0 -1px 0 rgba(0,0,0,.1)}tr.active+tr.plugin-update-tr .plugin-update{background-color:#f7fcfe}tr.active+tr.plugin-update-tr .plugin-update .update-message{background-color:#fcf3ef}.plugin-install-php h4{margin:2.5em 0 8px}.wp-list-table .site-deleted{background:#ff8573}.wp-list-table .site-spammed{background:#faafaa}.wp-list-table .site-archived{background:#ffebe8}.wp-list-table .site-mature{background:#fecac2}@media screen and (max-width:782px){.tablenav{height:auto}.tablenav.top{margin:0}.tablenav.bottom{position:relative;margin-top:15px}.tablenav br{display:none}.tablenav br.clear{display:block}.tablenav.top .actions,.tablenav.top .displaying-num,.view-switch{display:none}.tablenav.bottom .displaying-num{position:absolute;left:0;top:10px;font-size:14px}.tablenav-pages{width:100%;text-align:center;margin:0 0 25px}.tablenav.bottom .tablenav-pages{margin-top:25px}.tablenav.top .tablenav-pages.one-page{display:none}.tablenav.bottom .tablenav-pages.one-page{margin:15px 0 0;height:0}.tablenav-pages .pagination-links .paging-input{font-size:18px}.tablenav-pages .pagination-links a{padding:8px 20px 11px;font-size:18px;background:rgba(0,0,0,.05)}.tablenav-pages .pagination-links .current-page{padding:10px;font-size:14px}.form-wrap>p{display:none}.comment-count{font-size:14px}.column-categories,.column-tags,.fixed .column-author,.fixed .column-date,.media .column-parent,.sites .column-registered,.sites .column-users,.tags .column-description,.users .column-email,.users .column-name{display:none}.fixed .column-comment .comment-author{display:block}.column-title{width:85%}.fixed .column-comments,.widefat .check-column{width:35px}.widefat tfoot .check-column,.widefat thead .check-column{padding:10px 0}.widefat *{word-wrap:normal}#wpbody-content .bulk-edit-row .inline-edit-col-bottom,#wpbody-content .bulk-edit-row .inline-edit-col-left,#wpbody-content .bulk-edit-row-page .inline-edit-col-right,#wpbody-content .bulk-edit-row-post .inline-edit-col-right,#wpbody-content .inline-edit-row-post .inline-edit-col-center,#wpbody-content .quick-edit-row-page .inline-edit-col-left,#wpbody-content .quick-edit-row-page .inline-edit-col-right,#wpbody-content .quick-edit-row-post .inline-edit-col-left,#wpbody-content .quick-edit-row-post .inline-edit-col-right{float:none;width:100%}#wpbody-content .bulk-edit-row fieldset .inline-edit-col label,#wpbody-content .bulk-edit-row fieldset .inline-edit-group label,#wpbody-content .quick-edit-row fieldset .inline-edit-col label,#wpbody-content .quick-edit-row fieldset .inline-edit-group label{max-width:none;float:none;margin-bottom:5px}#wpbody .bulk-edit-row fieldset select{display:block;width:100%;max-width:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.inline-edit-row #bulk-titles div,.inline-edit-row fieldset ul.cat-checklist label{font-size:16px}.inline-edit-row fieldset label span.title{float:none}.inline-edit-row fieldset label.inline-edit-tags{padding:0 .5em}.inline-edit-row fieldset .inline-edit-col label.inline-edit-tags{padding:0}.inline-edit-row fieldset label span.input-text-wrap{margin-right:0}.inline-edit-row fieldset input[name=hh],.inline-edit-row fieldset input[name=jj],.inline-edit-row fieldset input[name=mn]{width:3em}.inline-edit-row fieldset input[name=aa]{width:4.5em}#bulk-titles div{margin:.8em .3em}#bulk-titles div a{height:22px}.tags .column-posts{width:50px}.tags .column-slug{width:30%}.comments .column-response,.users .column-role{width:35%}.sites .column-blogname{width:55%}#wpbody-content #update-themes-table .plugin-title{width:auto}.link-manager-php #posts-filter{margin-top:25px}.link-manager-php .tablenav.bottom{overflow:hidden}.wp-list-table.plugins{position:relative;margin-top:35px;margin-bottom:50px}#wpbody-content .wp-list-table.plugins tfoot .column-description,.wp-list-table.plugins th#description,.wp-list-table.plugins thead .column-description{display:none}#wpbody-content .wp-list-table.plugins,#wpbody-content .wp-list-table.plugins .column-description,#wpbody-content .wp-list-table.plugins .manage-column.column-name,#wpbody-content .wp-list-table.plugins .plugin-title,#wpbody-content .wp-list-table.plugins .plugin-update,#wpbody-content .wp-list-table.plugins .theme-title,#wpbody-content .wp-list-table.plugins tbody,#wpbody-content .wp-list-table.plugins thead,#wpbody-content .wp-list-table.plugins tr{display:block;width:auto}.wp-list-table.plugins tfoot,.wp-list-table.plugins thead{position:absolute;top:-35px;right:0;left:0;width:auto;height:35px}.wp-list-table.plugins tfoot{bottom:-35px;top:auto}.active,.inactive{padding-top:0}.wp-list-table.plugins .plugin-title,.wp-list-table.plugins .theme-title{padding-top:13px;padding-bottom:4px}.plugins tr.active+tr.inactive td,.plugins tr.active+tr.inactive th.check-column,.wp-list-table.plugins .plugin-title,.wp-list-table.plugins .theme-title,.wp-list-table.plugins tbody th{-webkit-box-shadow:none;box-shadow:none}.plugins tbody{padding:1px 0 0}.plugins tr.active+tr.inactive td.column-description{-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.1);box-shadow:inset 0 -1px 0 rgba(0,0,0,.1)}.plugins tr.active+tr.inactive td,.plugins tr.active+tr.inactive th.check-column{border-top:0}.wp-list-table.plugins .column-description{padding-top:0}.wp-list-table.plugins .column-description,.wp-list-table.plugins .manage-column.column-name,.wp-list-table.plugins .plugin-title,.wp-list-table.plugins .theme-title{padding-left:12px;padding-right:46px}.wp-list-table.plugins tr{position:relative}.wp-list-table.plugins th.check-column,.wp-list-table.plugins tr.update th.check-column{position:absolute;height:auto;top:0;bottom:0;right:0;padding-right:2px;padding-top:18px}.wp-list-table.plugins tfoot th.check-column,.wp-list-table.plugins thead th.check-column{padding-right:3px;padding-top:11px;background:0 0}.widefat tbody th.check-column input[type=checkbox]{margin-top:-3px;margin-right:8px}.wp-list-table.plugins .active .check-column input,.wp-list-table.plugins .update .check-column input{margin-right:5px}.wp-list-table.plugins tfoot .check-column input,.wp-list-table.plugins thead .check-column input{margin-top:-6px}.wp-list-table.plugins .active th.check-column{background:0 0}.wp-list-table.plugins .plugin-title strong,.wp-list-table.plugins .theme-title strong{font-size:1.4em;line-height:1.6em}table.plugin-install .column-description,table.plugin-install .column-name,table.plugin-install .column-rating,table.plugin-install .column-version{display:block;width:auto}table.plugin-install th.column-description,table.plugin-install th.column-name,table.plugin-install th.column-rating,table.plugin-install th.column-version{display:none}table.plugin-install td.column-name strong{font-size:1.4em;line-height:1.6em}table.plugin-install #the-list td{-webkit-box-shadow:none;box-shadow:none}table.plugin-install #the-list tr{display:block;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.1);box-shadow:inset 0 -1px 0 rgba(0,0,0,.1)}}#poststuff{padding-top:10px;min-width:763px}#poststuff #post-body{padding:0}#poststuff .postbox-container{width:100%}#poststuff #post-body.columns-2{margin-left:300px}#show-comments{overflow:hidden}#save-action .spinner,#show-comments .spinner,#show-comments a{float:right}#lost-connection-notice .spinner{display:block;float:right;margin:0 0 0 5px}#titlediv{position:relative;margin-bottom:10px}#titlediv label{cursor:text}#titlediv div.inside{margin:0}#poststuff #titlewrap{border:0;padding:0}#titlediv #title{padding:3px 8px;font-size:1.7em;line-height:100%;height:1.7em;width:100%;outline:0;margin:0;background-color:#fff}#titlediv #title-prompt-text{color:#777;position:absolute;font-size:1.7em;padding:11px 10px}#wp-fullscreen-save .fs-saved{color:#999;float:left;margin-top:4px}#poststuff .inside-submitbox,#side-sortables .inside-submitbox{margin:0 3px;font-size:11px}input#link_description,input#link_url{width:98%}#pending{background:0 none;border:0 none;padding:0;font-size:11px;margin-top:-1px}#edit-slug-box{line-height:24px;min-height:25px;margin-top:5px;padding:0 10px;color:#666}#edit-slug-box .cancel{margin-left:10px;font-size:11px}#editable-post-name-full{display:none}#editable-post-name{background-color:#fffbcc}#editable-post-name input{font-size:13px;height:22px;margin:0;width:16em}.postarea h3 label{float:right}.submitbox .submit{text-align:right;padding:12px 10px 10px;font-size:11px;background-color:#464646;color:#ccc}.submitbox .submitdelete{text-decoration:none;padding:1px 2px}#normal-sortables .submitbox .submitdelete:hover{color:#000;background-color:red;border-bottom-color:red}.submitbox .submit a:hover{text-decoration:underline}.submitbox .submit input{margin-bottom:8px;margin-left:4px;padding:6px}.inside-submitbox #post_status{margin:2px -2px 2px 0}#post-status-select{margin-top:3px}#post-body #normal-sortables{min-height:50px}.postbox{position:relative;min-width:255px;border:1px solid #e5e5e5;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.04);box-shadow:0 1px 1px rgba(0,0,0,.04);background:#fff}#trackback_url{width:99%}#normal-sortables .postbox .submit{background:transparent none;border:0 none;float:left;padding:0 12px;margin:0}.category-add input[type=text],.category-add select{width:100%;max-width:260px;vertical-align:baseline}#side-sortables .category-add input[type=text],#side-sortables .category-add select{margin:0 0 1em}#side-sortables .add-menu-item-tabs li,.wp-tab-bar li,ul.category-tabs li{display:inline;line-height:1.35em}.no-js .category-tabs li.hide-if-no-js{display:none}#side-sortables .add-menu-item-tabs a,.category-tabs a,.wp-tab-bar a{text-decoration:none}#post-body ul.add-menu-item-tabs li.tabs a,#post-body ul.category-tabs li.tabs a,#side-sortables .add-menu-item-tabs .tabs a,#side-sortables .category-tabs .tabs a,.wp-tab-bar .wp-tab-active a{color:#333}.category-tabs{margin:8px 0 5px}#category-adder h4{margin:10px 0}#side-sortables .add-menu-item-tabs,.wp-tab-bar{margin-bottom:3px}#normal-sortables .postbox #replyrow .submit{float:none;margin:0;padding:0 7px 5px}#side-sortables .submitbox .submit .preview,#side-sortables .submitbox .submit a.preview:hover,#side-sortables .submitbox .submit input{border:0 none}#side-sortables .inside-submitbox .insidebox,.stuffbox .insidebox{margin:11px 0}ul.add-menu-item-tabs,ul.category-tabs,ul.wp-tab-bar{margin-top:12px}ul.add-menu-item-tabs li,ul.category-tabs li{border:solid 1px transparent;position:relative}.wp-tab-active,ul.add-menu-item-tabs li.tabs,ul.category-tabs li.tabs{border:1px solid #dfdfdf;border-bottom-color:#fdfdfd;background-color:#fdfdfd}ul.add-menu-item-tabs li,ul.category-tabs li,ul.wp-tab-bar li{padding:3px 5px 5px}#postimagediv .inside img{max-width:100%;height:auto}form#tags-filter{position:relative}td.plugin-title strong,td.post-title strong{display:block;margin-bottom:.2em;font-size:14px}td.plugin-title p,td.post-title p{margin:6px 0}.ui-tabs-hide,.wp-hidden-children .wp-hidden-child{display:none}#post-body .tagsdiv #newtag{margin-left:5px;width:16em}#side-sortables input#post_password{width:94%}#side-sortables .tagsdiv #newtag{width:68%}#post-status-info{width:100%;border-spacing:0;border:1px solid #e5e5e5;border-top:0;background-color:#f7f7f7;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.04);box-shadow:0 1px 1px rgba(0,0,0,.04)}#post-status-info td{font-size:12px}.autosave-info{padding:2px;text-align:left}#editorcontent #post-status-info{border:0}#content-resize-handle{background:transparent url(../images/resize.gif) no-repeat scroll left bottom;width:12px;cursor:row-resize}.rtl #content-resize-handle{background:transparent url(../images/resize-rtl.gif) no-repeat scroll right bottom}#wp-word-count{display:block;padding:2px 10px}#timestampdiv select{height:21px;line-height:14px;padding:0;vertical-align:top;font-size:12px}#aa,#hh,#jj,#mn{padding:1px;font-size:12px}#hh,#jj,#mn{width:2em}#aa{width:3.4em}.curtime #timestamp{padding:2px 0 1px;display:inline!important;height:auto!important}#misc-publishing-actions label[for=post_status]:before,#post-body #visibility:before,#post-body .misc-pub-revisions:before,.curtime #timestamp:before,span.wp-media-buttons-icon:before{color:#888}#post-body #visibility:before,#post-body .misc-pub-revisions:before,.curtime #timestamp:before{font:400 20px/1 dashicons;speak:none;display:inline-block;padding:0 0 0 2px;top:0;right:-1px;position:relative;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important}#post-body #visibility:before{content:'\f177'}.curtime #timestamp:before{content:'\f145';top:-1px}#post-body .misc-pub-revisions:before{content:'\f321'}#timestampdiv{padding-top:5px;line-height:23px}#timestampdiv p{margin:8px 0 6px}#timestampdiv input{border-width:1px;border-style:solid}.notification-dialog{position:fixed;top:30%;right:50%;width:450px;margin-right:-225px;background:#fff;-webkit-box-shadow:0 3px 6px rgba(0,0,0,.3);box-shadow:0 3px 6px rgba(0,0,0,.3);line-height:1.5;z-index:1000005}.notification-dialog-background{position:fixed;top:0;right:0;left:0;bottom:0;background:#000;opacity:.7;filter:alpha(opacity=70);z-index:1000000}#post-lock-dialog .post-locked-message,#post-lock-dialog .post-taken-over{margin:25px}#post-lock-dialog .post-locked-message a.button{margin-left:10px}#post-lock-dialog .post-locked-avatar{float:right;margin:0 0 20px 20px}#post-lock-dialog .wp-tab-first{outline:0}#post-lock-dialog .locked-saving img{float:right;margin-left:3px}#post-lock-dialog.saved .locked-saved,#post-lock-dialog.saving .locked-saving{display:inline}#excerpt,.attachmentlinks{margin:0;height:4em;width:98%}.tagchecklist{margin-right:14px;font-size:12px;overflow:auto}.tagchecklist br{display:none}.tagchecklist strong{margin-right:-8px;position:absolute}.tagchecklist span{margin-left:25px;display:block;float:right;font-size:13px;line-height:1.8em;white-space:nowrap;cursor:default}.tagchecklist span a{margin:1px -17px 0 0;cursor:pointer;width:20px;height:20px;display:block;float:right;text-indent:0;overflow:hidden;position:absolute}#poststuff h2{margin-top:20px;font-size:1.5em;margin-bottom:15px;padding:0 0 3px;clear:right}#poststuff h3{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}#poststuff .inside{margin:6px 0 0}#poststuff .inside #page_template,#poststuff .inside #parent_id{max-width:100%}#poststuff .inside label.deleted,#poststuff .inside label.spam{color:red}#poststuff .inside label.waiting{color:orange}#poststuff .inside label.approved{color:green}.ie8 #poststuff .inside #page_template,.ie8 #poststuff .inside #parent_id{width:250px}#post-visibility-select{line-height:1.5em;margin-top:3px}#poststuff #submitdiv .inside{margin:0;padding:0}.edit-form-section{margin-bottom:20px}#postcustomstuff thead th{padding:5px 8px 8px;background-color:#f1f1f1}#postcustom #postcustomstuff .submit{border:0 none;float:none;padding:0 8px 8px}#side-sortables #postcustom #postcustomstuff .submit{margin:0;padding:0}#side-sortables #postcustom #postcustomstuff #the-list textarea{height:85px}#side-sortables #postcustom #postcustomstuff td.left input,#side-sortables #postcustom #postcustomstuff td.left select,#side-sortables #postcustomstuff #newmetaleft a{margin:3px 3px 0}#postcustomstuff table{margin:0;width:100%;border:1px solid #dfdfdf;border-spacing:0;background-color:#f9f9f9}#postcustomstuff tr{vertical-align:top}#postcustomstuff table input,#postcustomstuff table select,#postcustomstuff table textarea{width:96%;margin:8px}#side-sortables #postcustomstuff table input,#side-sortables #postcustomstuff table select,#side-sortables #postcustomstuff table textarea{margin:3px}#postcustomstuff td.left,#postcustomstuff th.left{width:38%}#postcustomstuff .submit input{margin:0;width:auto}#postcustomstuff #newmetaleft a{display:inline-block;margin:0 8px 8px;text-decoration:none}.no-js #postcustomstuff #enternew{display:none}#post-body-content .compat-attachment-fields{margin-bottom:20px}.compat-attachment-fields th{padding-top:5px;padding-left:10px}#select-featured-image{padding:4px 0;overflow:hidden}#select-featured-image img{max-width:100%;height:auto;margin-bottom:10px}#select-featured-image a{float:right;clear:both}#select-featured-image .remove{display:none;margin-top:10px}.js #select-featured-image.has-featured-image .remove{display:inline-block}.no-js #select-featured-image .choose{display:none}.post-state-format{overflow:hidden;display:inline-block;vertical-align:middle;height:20px;width:20px;margin-left:5px;margin-top:-4px}.post-state-format:before{display:block;height:20px;width:20px;font:400 20px/1 dashicons!important;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.post-format-icon:before,.post-state-format:before{color:#ddd;-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}a.post-format-icon:hover:before,a.post-state-format:hover:before{color:#2ea2cc}#post-formats-select{line-height:2em}#post-formats-select .post-format-icon:before{top:5px}input.post-format{margin-top:1px}label.post-format-icon{margin-right:0;padding:2px 0}.post-format-icon:before{position:relative;display:inline-block;margin-left:7px;font:400 20px/1 dashicons;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.post-format-icon.post-format-standard:before,.post-state-format.post-format-standard:before,a.post-state-format.format-standard:before{content:'\f109'}.post-format-icon.post-format-image:before,.post-state-format.post-format-image:before,a.post-state-format.format-image:before{content:'\f128'}.post-format-icon.post-format-gallery:before,.post-state-format.post-format-gallery:before,a.post-state-format.format-gallery:before{content:'\f161'}.post-format-icon.post-format-audio:before,.post-state-format.post-format-audio:before,a.post-state-format.format-audio:before{content:'\f127'}.post-format-icon.post-format-video:before,.post-state-format.post-format-video:before,a.post-state-format.format-video:before{content:'\f126'}.post-format-icon.post-format-chat:before,.post-state-format.post-format-chat:before,a.post-state-format.format-chat:before{content:'\f125'}.post-format-icon.post-format-status:before,.post-state-format.post-format-status:before,a.post-state-format.format-status:before{content:'\f130'}.post-format-icon.post-format-aside:before,.post-state-format.post-format-aside:before,a.post-state-format.format-aside:before{content:'\f123'}.post-format-icon.post-format-quote:before,.post-state-format.post-format-quote:before,a.post-state-format.format-quote:before{content:'\f122'}.post-format-icon.post-format-link:before,.post-state-format.post-format-link:before,a.post-state-format.format-link:before{content:'\f103'}.category-adder{margin-right:120px;padding:4px 0}.category-adder h4{margin:0 0 8px}#side-sortables .category-adder{margin:0}.categorydiv div.tabs-panel,.customlinkdiv div.tabs-panel,.posttypediv div.tabs-panel,.taxonomydiv div.tabs-panel,.wp-tab-panel{min-height:42px;max-height:200px;overflow:auto;padding:0 .9em;border:solid 1px #dfdfdf;background-color:#fdfdfd}div.tabs-panel-active{display:block}div.tabs-panel-inactive{display:none}#front-page-warning,#front-static-pages ul,.categorydiv ul.categorychecklist ul,.customlinkdiv ul.categorychecklist ul,.inline-editor ul.cat-checklist ul,.posttypediv ul.categorychecklist ul,.taxonomydiv ul.categorychecklist ul,ul.export-filters{margin-right:18px}ul.categorychecklist li{margin:0;padding:0;line-height:22px;word-wrap:break-word}.categorydiv .tabs-panel,.customlinkdiv .tabs-panel,.posttypediv .tabs-panel,.taxonomydiv .tabs-panel{border-width:3px;border-style:solid}.form-wrap label{display:block;padding:2px;font-size:12px}.form-field input,.form-field textarea{border-style:solid;border-width:1px;width:95%}.form-wrap p,p.description{margin:2px 0 5px;color:#666}.form-wrap p,p.description,p.help,span.description{font-size:13px;font-style:italic}.form-wrap .form-field{margin:0 0 10px;padding:8px 0}.form-wrap .form-field #parent{max-width:100%}.col-wrap h3{margin:12px 0;font-size:1.1em}.col-wrap p.submit{margin-top:-10px}.tagsdiv{margin-top:-8px}#poststuff .taghint{color:#aaa;margin:15px 12px -24px 0}#poststuff .tagsdiv .howto{margin:0 0 6px}.ajaxtag .newtag{position:relative}.tagsdiv .newtag{width:180px}.tagsdiv .the-tags{display:block;height:60px;margin:0 auto;overflow:auto;width:260px}#post-body-content .tagsdiv .the-tags{margin:0 5px}.taghint{color:#aaa;margin:-17px 7px 0 0;visibility:hidden}input.newtag~div.taghint{visibility:visible}input.newtag:focus~div.taghint{visibility:hidden}p.popular-tags{border:0;line-height:2em;max-width:1000px;padding:8px 12px 12px;text-align:justify}p.popular-tags a{padding:0 3px}.tagcloud{width:97%;margin:0 0 40px;text-align:justify}.tagcloud h3{margin:2px 0 12px}.ac_results{padding:0;margin:0;list-style:none;position:absolute;z-index:10000;display:none;border:1px solid gray;background-color:#fff}.wp-customizer .ac_results{z-index:500000}.ac_results li{padding:2px 5px;white-space:nowrap;color:#101010;text-align:right}.ac_over{background-color:#f0f0b8;cursor:pointer}.ac_match{text-decoration:underline}.comment-php .wp-editor-area{height:200px}.comment-ays{margin-bottom:0;border-bottom-style:solid;border-bottom-width:1px}.comment-ays .alt{background-color:transparent}.spam-undo-inside,.trash-undo-inside{margin:1px 0 1px 8px;line-height:16px}.spam-undo-inside .avatar,.trash-undo-inside .avatar{height:20px;width:20px;margin-left:8px;vertical-align:middle}.stuffbox .editcomment{clear:none}#comment-status-radio p{margin:3px 0 5px}#comment-status-radio input{margin:2px 0 5px 3px;vertical-align:middle}#comment-status-radio label{padding:5px 0}table.links-table{width:100%;border-spacing:0}.links-table th{font-weight:400;text-align:right;vertical-align:top;min-width:80px;width:20%;word-wrap:break-word}.links-table td,.links-table th{padding:5px 0}.links-table td label{margin-left:8px}.links-table td input[type=text],.links-table td textarea{width:100%}.links-table #link_rel{max-width:280px}@media print,(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){#content-resize-handle,#post-body .wp_themeSkin .mceStatusbar a.mceResize{background:transparent url(../images/resize-2x.gif) no-repeat scroll left bottom;-webkit-background-size:11px 11px;background-size:11px 11px}.rtl #content-resize-handle,.rtl #post-body .wp_themeSkin .mceStatusbar a.mceResize{background:transparent url(../images/resize-rtl-2x.gif) no-repeat scroll left bottom}}@media only screen and (max-width:850px){#poststuff{min-width:0}#wpbody-content #poststuff #post-body{margin:0}#wpbody-content #post-body.columns-2 #postbox-container-1{margin-left:0;width:100%}#poststuff #postbox-container-1 #side-sortables:empty,#poststuff #postbox-container-1 .empty-container{border:0 none;height:0;min-height:0}#poststuff #post-body.columns-2 #side-sortables{min-height:0}.columns-prefs,.screen-layout{display:none}}@media screen and (max-width:782px){#post-body-content{min-width:0}#titlediv #title-prompt-text{padding:10px}#poststuff h3{padding:12px}.post-format-options{padding-left:0}.post-format-options a{margin-left:5px;margin-bottom:5px;min-width:52px}.post-format-options .post-format-title{font-size:11px}.post-format-options a div{height:28px;width:28px}.post-format-options a div:before{font-size:26px!important}#post-visibility-select{line-height:280%}.wp-core-ui .save-post-visibility,.wp-core-ui .save-timestamp{vertical-align:middle;margin-left:15px}.timestamp-wrap select#mm{display:block;width:100%;margin-bottom:10px}.timestamp-wrap #aa,.timestamp-wrap #hh,.timestamp-wrap #jj,.timestamp-wrap #mn{padding:12px 3px;font-size:14px;margin-bottom:5px;width:auto;text-align:center}ul.category-tabs{margin:30px 0 15px}ul.category-tabs li.tabs{padding:15px}ul.categorychecklist li{margin-bottom:15px}ul.categorychecklist ul{margin-top:15px}.category-add input[type=text],.category-add select{max-width:none;margin-bottom:15px}.tagsdiv .newtag{width:100%;height:auto;margin-bottom:15px}.tagchecklist{margin:25px 10px}.tagchecklist span{font-size:16px;line-height:120%}#commentstatusdiv p{line-height:2.8}.mceToolbar *{white-space:normal!important}.mceToolbar td,.mceToolbar tr{float:right!important}.wp_themeSkin a.mceButton{width:30px;height:30px}.wp_themeSkin .mceButton .mceIcon{margin-top:5px;margin-right:5px}.wp_themeSkin .mceSplitButton{margin-top:1px}.wp_themeSkin .mceSplitButton td a.mceAction{padding-top:6px;padding-bottom:6px;padding-right:6px;padding-left:3px}.wp_themeSkin .mceSplitButton td a.mceOpen,.wp_themeSkin .mceSplitButtonEnabled:hover td a.mceOpen{padding-top:6px;padding-bottom:6px;background-position:1px 6px}.wp_themeSkin table.mceListBox{margin:5px}div.quicktags-toolbar input{padding:10px 20px}#wp-content-editor-tools{overflow:hidden;padding:20px 0 1px 15px;top:1px}a.wp-switch-editor{font-size:16px;line-height:1em;margin:3px 7px 0 0;padding:12px 15px}#wp-content-media-buttons a{font-size:16px;line-height:37px;height:39px;padding:0 15px 0 20px}.wp-media-buttons span.jetpack-contact-form-icon,.wp-media-buttons span.wp-media-buttons-icon{width:22px!important;margin-top:-3px!important;margin-right:-5px!important}.wp-media-buttons #insert-jetpack-contact-form span.jetpack-contact-form-icon:before,.wp-media-buttons .add_media span.wp-media-buttons-icon:before{font-size:20px!important}#content_wp_fullscreen{display:none}.misc-pub-section{padding:20px 10px}.misc-pub-section>a{float:left;font-size:16px}#delete-action,#publishing-action{line-height:47px}.comment-ays{border-bottom:0}.links-table #link_rel{max-width:none}.links-table td,.links-table th{padding:10px 0}}@media only screen and (max-width:500px){#wp-content-media-buttons a{font-size:14px;padding:0 10px}}.revisions-control-frame,.revisions-diff-frame{position:relative}.revisions-controls{padding-top:40px;height:100px;z-index:1}.revisions-controls input[type=checkbox]{position:relative;top:-1px;vertical-align:text-bottom}.revisions.pinned .revisions-controls{position:fixed;top:0;height:82px;background:#fff;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.1);box-shadow:0 1px 3px rgba(0,0,0,.1)}.revisions-tickmarks{position:relative;margin:0 auto;height:.7em;top:7px;max-width:70%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;background-color:#fff}.revisions-tickmarks>div{position:absolute;height:100%;border-right:1px solid #aaa;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.revisions-tickmarks>div:first-child{border-width:0}.comparing-two-revisions .revisions-controls{height:140px}.comparing-two-revisions.pinned .revisions-controls{height:124px}.revisions .diff-error{position:absolute;text-align:center;margin:0 auto;width:100%;display:none}.revisions.diff-error .diff-error{display:block}.revisions .loading-indicator{position:fixed;vertical-align:middle;opacity:0;width:100%;top:50%;margin-right:-90px;-webkit-transition:opacity .5s;transition:opacity .5s;filter:alpha(opacity=0)}body.folded .revisions .loading-indicator{margin-right:-32px}.revisions .loading-indicator span.spinner{display:block;margin:0 auto;float:none}.revisions.loading .loading-indicator{opacity:1;filter:alpha(opacity=100)}.revisions .diff{-webkit-transition:opacity .5s;transition:opacity .5s}.revisions.loading .diff{opacity:.5;filter:alpha(opacity=50)}.revisions.diff-error .diff{visibility:hidden}.revisions-meta{margin-top:20px;background-color:#fff;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.1);box-shadow:0 1px 3px rgba(0,0,0,.1)}.revisions.pinned .revisions-meta{-webkit-box-shadow:none;box-shadow:none}.revision-toggle-compare-mode{position:absolute;top:0;left:0}.comparing-two-revisions .revisions-next,.comparing-two-revisions .revisions-previous,.revisions-meta .diff-meta-to strong{display:none}.revisions-controls .author-card .date{color:#777}.revisions-controls .author-card.autosave{color:#d54e21}.revisions-controls .author-card .author-name{font-weight:700}.comparing-two-revisions .diff-meta-to strong{display:block}.revisions.pinned .revisions-buttons{padding:0 11px}.revisions-next,.revisions-previous{position:relative;z-index:1}.revisions-previous{float:right}.revisions-next{float:left}.revisions-controls .wp-slider{max-width:70%;margin:0 auto;top:-3px}.revisions-diff{padding:15px;background-color:#fff;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.1);box-shadow:0 1px 3px rgba(0,0,0,.1)}.revisions-diff h3:first-child{margin-top:0}#revisions-meta-restored img,.post-revisions li img{vertical-align:middle}table.diff tbody tr td:nth-child(2){width:4%}table.diff{table-layout:fixed;width:100%;white-space:pre-wrap}table.diff col.content{width:auto}table.diff col.content.diffsplit{width:48%}table.diff col.diffsplit.middle{width:auto}table.diff col.ltype{width:30px}table.diff tr{background-color:transparent}table.diff td,table.diff th{font-family:Consolas,Monaco,monospace;font-size:14px;line-height:1.618;padding:.5em;vertical-align:top;word-wrap:break-word}table.diff td h1,table.diff td h2,table.diff td h3,table.diff td h4,table.diff td h5,table.diff td h6{margin:0}table.diff .diff-addedline ins,table.diff .diff-deletedline del{text-decoration:none}table.diff .diff-deletedline{background-color:#ffe9e9}table.diff .diff-deletedline del{background-color:#faa}table.diff .diff-addedline{background-color:#e9ffe9}table.diff .diff-addedline ins{background-color:#afa}.diff-meta{padding:5px;clear:both;min-height:32px}.diff-title strong{line-height:32px;min-width:60px;text-align:left;float:right;margin-left:5px}.revisions-controls .author-card .author-info{font-size:12px;line-height:16px}.revisions-controls .author-card .author-info,.revisions-controls .author-card .avatar{float:right;margin-right:6px;margin-left:6px}.revisions-controls .author-card .byline{display:block;font-size:12px}.revisions-controls .author-card .avatar{vertical-align:middle}.diff-meta input.restore-revision{float:left;margin-right:6px;margin-left:6px;margin-top:4px}.diff-meta-from{display:none}.comparing-two-revisions .diff-meta-from{display:block}.revisions-tooltip{position:absolute;bottom:105px;margin-left:0;margin-right:-69px;z-index:0;max-width:350px;min-width:130px;padding:8px 4px;opacity:0}.revisions-tooltip.flipped{margin-right:0;margin-left:-70px}.revisions.pinned .revisions-tooltip{display:none!important}.comparing-two-revisions .revisions-tooltip{bottom:145px}.revisions-tooltip-arrow{width:70px;height:15px;overflow:hidden;position:absolute;right:0;margin-right:35px;bottom:-15px}.revisions-tooltip.flipped .revisions-tooltip-arrow{margin-right:0;margin-left:35px;right:auto;left:0}.revisions-tooltip-arrow>span{content:"";position:absolute;right:20px;top:-20px;width:25px;height:25px;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.revisions-tooltip.flipped .revisions-tooltip-arrow>span{right:auto;left:20px}.ie8 .revisions-tooltip-arrow>span{right:15px;top:-25px;-ms-filter:"progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476)"}.ie8 .revisions-tooltip.flipped .revisions-tooltip-arrow>span{left:25px}.revisions-tooltip,.revisions-tooltip-arrow>span{border:1px solid #d7d7d7;background-color:#fff}.revisions-tooltip{display:none}.arrow{width:70px;height:16px;overflow:hidden;position:absolute;right:0;margin-right:-35px;bottom:90px;z-index:10000}.arrow::after{z-index:9999;background-color:#fff;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.1);box-shadow:0 1px 3px rgba(0,0,0,.1)}.arrow.top{top:-16px;bottom:auto}.arrow.left{right:20%}.arrow:after{content:"";position:absolute;right:20px;top:-20px;width:25px;height:25px;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.revisions-tooltip,.revisions-tooltip-arrow:after{border-width:1px;border-style:solid}div.revisions-controls>.wp-slider>.ui-slider-handle{margin-right:-10px}.rtl div.revisions-controls>.wp-slider>.ui-slider-handle{margin-left:-10px}.wp-slider.ui-slider{position:relative;border:1px solid #d7d7d7;text-align:right;cursor:pointer}.wp-slider .ui-slider-handle{-webkit-border-radius:50%;border-radius:50%;height:18px;margin-top:-3px;outline:0;position:absolute;width:18px;z-index:2}.wp-slider .ui-slider-handle,.wp-slider .ui-slider-handle.focus,.wp-slider .ui-slider-handle.ui-state-hover{background:#2ea2cc;border:1px solid #0074a2;-webkit-box-shadow:inset 0 1px 0 #78c8e6,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #78c8e6,0 1px 0 rgba(0,0,0,.15)}.wp-slider .ui-slider-handle:before{background:0 0;position:absolute;top:0;right:0;color:#fff;content:"\f229";font:400 18px/1 dashicons;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.wp-slider .ui-slider-handle.from-handle:before,.wp-slider .ui-slider-handle.to-handle:before{font-size:20px!important;margin:-1px -1px 0 0}.wp-slider .ui-slider-handle.from-handle:before{content:'\f139'}.rtl .wp-slider .ui-slider-handle.from-handle:before,.wp-slider .ui-slider-handle.to-handle:before{content:'\f141'}.rtl .wp-slider .ui-slider-handle.to-handle:before{content:'\f139';left:-1px}.wp-slider .ui-slider-range{position:absolute;font-size:.7em;display:block;border:0;background-color:transparent;background-image:none}.wp-slider.ui-slider-horizontal{height:.7em}.wp-slider.ui-slider-horizontal .ui-slider-handle{top:-.25em;margin-right:-.6em}.wp-slider.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.wp-slider.ui-slider-horizontal .ui-slider-range-min{right:0}.wp-slider.ui-slider-horizontal .ui-slider-range-max{left:0}@media print,(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.revision-tick.completed-false{background-image:url(../images/spinner-2x.gif)}}@media screen and (max-width:782px){#diff-next-revision,#diff-previous-revision{margin-top:-1em}table.diff{-ms-word-break:break-all;word-break:break-all;word-wrap:break-word}}.media-item .describe{border-collapse:collapse;width:100%;border-top:1px solid #dfdfdf;clear:both;cursor:default}.media-item.media-blank .describe{border:0}.media-item .describe th{vertical-align:top;text-align:right;padding:5px 10px 10px;width:140px}.media-item .describe .align th{padding-top:0}.media-item .media-item-info tr{background-color:transparent}.media-item .describe td{padding:0 0 8px 8px;vertical-align:top}.media-item thead.media-item-info td{padding:4px 10px 0}.media-item .media-item-info .A1B1{padding:0 10px 0 0}.media-item td.savesend{padding-bottom:15px}.media-item .thumbnail{max-height:128px;max-width:128px}#wpbody-content #async-upload-wrap a{display:none}.media-upload-form{margin-top:20px}.media-upload-form td label{margin-left:6px;margin-right:2px}.media-upload-form .align .field label{display:inline;padding:0 23px 0 0;margin:0 3px 0 1em;font-weight:600}.media-upload-form tr.image-size label{margin:0 5px 0 0;font-weight:600}.media-upload-form th.label label{font-weight:600;margin:.5em;font-size:13px}.media-upload-form th.label label span{padding:0 5px}.media-item .describe input[type=text],.media-item .describe textarea{width:460px}.media-item .describe p.help{margin:0;padding:0 5px 0 0}.describe-toggle-off,.describe-toggle-on,.media-item .edit-attachment{display:block;line-height:36px;float:left}.media-item .describe-toggle-off,.media-item.open .describe-toggle-on{display:none}.media-item.open .describe-toggle-off{display:block}#media-items .media-item{border-bottom:1px solid #dfdfdf;min-height:36px;position:relative;width:100%}#media-items{width:623px}.media-new-php #media-items{margin:1em 0}#media-items:empty{border:0 none}.media-item .filename{line-height:36px;overflow:hidden}.media-item .pinkynail{float:right;margin:2px 0 0 10px;max-width:40px;max-height:32px}.media-item .startclosed,.media-item .startopen{display:none}.media-item .original{position:relative;height:34px}.media-item .progress{float:left;height:22px;margin:7px 0 0;width:200px;line-height:2em;padding:0;overflow:hidden;margin-bottom:2px;-webkit-border-radius:22px;border-radius:22px;background:#ddd;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.media-item .bar{z-index:9;width:0;height:100%;margin-top:-22px;-webkit-border-radius:22px;border-radius:22px;background-color:#0074a2;-webkit-box-shadow:inset 0 0 2px rgba(0,0,0,.3);box-shadow:inset 0 0 2px rgba(0,0,0,.3)}.media-item .progress .percent{z-index:10;position:relative;width:200px;padding:0;color:#fff;text-align:center;line-height:22px;font-weight:400;text-shadow:0 1px 2px rgba(0,0,0,.2)}.upload-php .fixed .column-parent{width:15%}.js .html-uploader #plupload-upload-ui{display:none}.js .html-uploader #html-upload-ui{display:block}.media-upload-form .media-item.error{margin:0;padding:0}.media-item .error-div,.media-upload-form .media-item.error p{line-height:16px;margin:5px 10px;padding:0}.media-item .error-div a.dismiss{display:block;float:left;margin:5px 15px 0 4px}.find-box{background-color:#fff;-webkit-box-shadow:0 3px 6px rgba(0,0,0,.3);box-shadow:0 3px 6px rgba(0,0,0,.3);width:600px;overflow:hidden;margin-right:-300px;position:fixed;top:30px;bottom:30px;right:50%;z-index:100105}.find-box-head{background:#fcfcfc;border-bottom:1px solid #dfdfdf;height:36px;font-size:18px;font-weight:600;line-height:36px;padding:0 16px 0 36px;position:absolute;top:0;right:0;left:0}.find-box-inside{overflow:auto;padding:16px;background-color:#fff;position:absolute;top:37px;bottom:45px;overflow-y:scroll;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.find-box-search{padding-bottom:16px}.find-box-search .spinner{float:none;right:125px;position:absolute;top:18px}#find-posts-input,#find-posts-search{float:right}#find-posts-input{width:140px;height:28px;margin:0 0 0 4px}.widefat .found-radio{padding-left:0;width:16px}#find-posts-close{width:36px;height:36px;position:absolute;top:0;left:0;cursor:pointer;text-align:center;color:#666}#find-posts-close:hover{color:#2ea2cc}#find-posts-close:before{font:400 20px/36px dashicons;vertical-align:top;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:'\f158'}.find-box-buttons{padding:8px 16px;background:#fcfcfc;border-top:1px solid #dfdfdf;position:absolute;bottom:0;right:0;left:0}@media screen and (max-width:782px){.find-box-inside{bottom:57px}}@media screen and (max-width:660px){.find-box{top:0;bottom:0;right:0;left:0;margin:0;width:100%}}.ui-find-overlay{position:fixed;top:0;right:0;left:0;bottom:0;background:#000;opacity:.7;filter:alpha(opacity=70);z-index:100100}ul#dismissed-updates{display:none}form.upgrade{margin-top:8px}form.upgrade .hint{font-style:italic;font-size:85%;margin:-.5em 0 2em 0}#poststuff .inside .the-tagcloud{margin:5px 0 10px;padding:8px;border:1px solid #ddd;line-height:1.8em;word-spacing:3px;-webkit-border-radius:6px;border-radius:6px}.drag-drop #drag-drop-area{border:4px dashed #bbb;height:200px}.drag-drop .drag-drop-inside{margin:70px auto 0;width:250px}.drag-drop-inside p{color:#aaa;font-size:14px;margin:5px 0;display:none}.drag-drop .drag-drop-inside p{text-align:center}.drag-drop-inside p.drag-drop-info{font-size:20px}.drag-drop .drag-drop-inside p,.drag-drop-inside p.drag-drop-buttons{display:block}.drag-drop.drag-over #drag-drop-area{border-color:#83b4d8}#plupload-upload-ui{position:relative}.wp_attachment_details label[for=content]{font-size:13px;line-height:1.5;margin:1em 0}.wp_attachment_details #attachment_caption{height:4em}.describe .image-editor{vertical-align:top}.imgedit-wrap{position:relative}.imgedit-settings p{margin:8px 0 0}.describe .imgedit-wrap .imgedit-settings{padding:0 5px}.wp_attachment_holder div.updated{margin-top:0}.wp_attachment_holder .imgedit-wrap>div{height:auto;overflow:hidden}.wp_attachment_holder .imgedit-wrap .imgedit-panel-content{padding-left:16px;width:auto;overflow:hidden}.wp_attachment_holder .imgedit-wrap .imgedit-settings{float:left;width:250px}.imgedit-settings input{margin-top:0;vertical-align:middle}.imgedit-wait{position:absolute;top:0;background:#fff url(../images/spinner.gif) no-repeat center;-webkit-background-size:20px 20px;background-size:20px 20px;opacity:.7;filter:alpha(opacity=70);width:100%;height:500px;display:none}.no-float{float:none}.imgedit-settings .disabled,.media-disabled{color:grey}.A1B1,.wp_attachment_image{overflow:hidden}.A1B1 .button,.wp_attachment_image .button{float:right}.no-js .wp_attachment_image .button{display:none}.A1B1 .spinner,.wp_attachment_image .spinner{float:right;padding:0 0 4px;vertical-align:bottom}.imgedit-menu{margin:0 0 12px;min-width:300px}.imgedit-menu div{float:right;width:32px;border:1px solid #d5d5d5;background:#f1f1f1;margin:0 0 0 8px;height:32px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-align:center;line-height:28px;color:#777;cursor:pointer}.imgedit-menu div:before{font:400 20px/1 dashicons;speak:none;vertical-align:middle}.imgedit-menu div:hover{border-color:#c1c1c1;background-color:#eaeaea;color:#333}.imgedit-menu div.disabled{border-color:#ccc;background-color:#ddd;color:#777;filter:alpha(opacity=50);opacity:.5;cursor:default}.imgedit-crop:before{content:'\f165'}.imgedit-rleft:before{content:'\f166'}.imgedit-rright:before{content:'\f167'}.imgedit-flipv:before{content:'\f168'}.imgedit-fliph:before{content:'\f169'}.imgedit-undo:before{content:'\f171'}.imgedit-redo:before{content:'\f172'}.imgedit-crop-wrap{position:relative}.imgedit-crop{margin:0 0 0 8px}.imgedit-rleft{margin:0 3px}.imgedit-rright{margin:0 3px 0 8px}.imgedit-flipv{margin:0 3px}.imgedit-fliph{margin:0 3px 0 8px}.imgedit-undo{margin:0 3px}.imgedit-redo{margin:0 3px 0 8px}.imgedit-applyto img{margin:0 0 0 8px}.imgedit-group-top{margin:5px 0}#poststuff .imgedit-group-top h3{padding:0}.imgedit-group-top h3 a{text-decoration:none}.imgedit-applyto .imgedit-label{padding:2px 0 0;display:block}.imgedit-help{display:none;font-style:italic}a.imgedit-help-toggle{text-decoration:none}.form-table td.imgedit-response{padding:0}.imgedit-submit{margin:8px 0}.imgedit-submit-btn{margin-right:20px}.imgedit-wrap .nowrap{white-space:nowrap}span.imgedit-scale-warn{color:red;font-size:20px;font-style:normal;visibility:hidden;vertical-align:middle}.imgedit-group{margin-bottom:8px;padding:2px 10px}audio,video{display:inline-block;max-width:100%}.mejs-container{width:100%}@media print,(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.imgedit-wait{background-image:url(../images/spinner-2x.gif)}}@media screen and (max-width:782px){.wp_attachment_details label[for=content]{font-size:14px;line-height:1.5em}}.theme-browser .themes{clear:both;padding:0 0 100px}.themes-php .wrap h2{float:right;margin-bottom:15px}.network-admin.themes-php .wrap h2{margin-bottom:0}.themes-php .wrap h2 .button{margin-right:20px}.theme-navigation .theme-count,.themes-php .wrap .theme-count{color:#fff;-webkit-border-radius:30px;border-radius:30px;background:#777;font-size:14px;padding:4px 10px;font-weight:600;margin-right:5px;margin-left:20px;position:relative;top:-3px}.theme-navigation a{text-decoration:none}.themes-php div.error,.themes-php div.updated{margin:0 0 20px;clear:both}.themes-php div.updated a{text-decoration:underline}.theme-browser .theme{cursor:pointer;float:right;margin:0 0 4% 4%;position:relative;width:30.6%;border:1px solid #dedede;-webkit-box-shadow:0 1px 1px -1px rgba(0,0,0,.1);box-shadow:0 1px 1px -1px rgba(0,0,0,.1);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.ie8 .theme-browser .theme{width:30%;margin:0 0 4% 3%}.theme-browser .theme:nth-child(3n){margin-left:0}.theme-browser .theme:focus,.theme-browser .theme:hover{cursor:pointer}.theme-browser .theme .theme-name{font-size:15px;font-weight:600;height:18px;margin:0;padding:15px;-webkit-box-shadow:inset 0 1px 0 rgba(0,0,0,.1);box-shadow:inset 0 1px 0 rgba(0,0,0,.1);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;background:#fff;background:rgba(255,255,255,.65)}.theme-browser .theme .theme-actions{-ms-filter:"alpha(Opacity=0)";opacity:0;-webkit-transition:opacity .1s ease-in-out;transition:opacity .1s ease-in-out;position:absolute;bottom:0;left:0;height:38px;padding:9px 10px 0;background:rgba(244,244,244,.7);border-right:1px solid rgba(0,0,0,.05)}.theme-browser .theme.focus .theme-actions,.theme-browser .theme:focus .theme-actions,.theme-browser .theme:hover .theme-actions{-ms-filter:"alpha(Opacity=100)";opacity:1}.theme-browser .theme .theme-actions .button-primary{margin-left:3px}.theme-browser .theme .theme-actions .button-secondary{float:none;margin-right:3px}.theme-browser .theme .theme-screenshot{display:block;overflow:hidden;position:relative;-webkit-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out}.theme-browser .theme .theme-screenshot:after{content:'';display:block;padding-top:66.66666%}.theme-browser .theme .theme-screenshot img{height:auto;position:absolute;right:0;top:0;width:100%;-webkit-transform:translateZ(0);-webkit-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out}.theme-browser .theme:focus .theme-screenshot,.theme-browser .theme:hover .theme-screenshot{background:#fff}.theme-browser.rendered .theme:focus .theme-screenshot img,.theme-browser.rendered .theme:hover .theme-screenshot img{opacity:.4}.theme-browser .theme .more-details{-ms-filter:"alpha(Opacity=0)";opacity:0;position:absolute;top:35%;left:25%;right:25%;background:#222;background:rgba(0,0,0,.7);color:#fff;font-size:15px;text-shadow:0 1px 0 rgba(0,0,0,.6);-webkit-font-smoothing:antialiased;font-weight:600;padding:15px 12px;text-align:center;-webkit-border-radius:3px;border-radius:3px;-webkit-transition:opacity .1s ease-in-out;transition:opacity .1s ease-in-out}.theme-browser .theme:focus{outline:1px dotted #222}.theme-browser .theme:focus .more-details{opacity:1}.theme-browser .theme.active:focus .theme-actions{display:block}.theme-browser.rendered .theme:focus .more-details,.theme-browser.rendered .theme:hover .more-details{-ms-filter:"alpha(Opacity=100)";opacity:1}.theme-browser .theme .theme-installed,.theme-browser .theme .theme-update{background:#d54e21;background:rgba(213,78,33,.95);color:#fff;display:block;font-size:13px;font-weight:400;height:48px;line-height:48px;padding:0 10px;position:absolute;top:0;left:0;right:0;border-bottom:1px solid rgba(0,0,0,.25);overflow:hidden}.theme-browser .theme .theme-installed:before,.theme-browser .theme .theme-update:before{content:'\f463';display:inline-block;font:400 20px/1 dashicons;margin:0 0 0 6px;opacity:.8;position:relative;top:5px;speak:none;-webkit-font-smoothing:antialiased}.theme-browser .theme.active .theme-name{background:#2f2f2f;color:#fff;padding-left:110px;font-weight:300;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.5);box-shadow:inset 0 1px 1px rgba(0,0,0,.5)}.theme-browser .theme.active .theme-name span{font-weight:600}.theme-browser .theme.active .theme-actions{background:rgba(49,49,49,.7);border-right:0;opacity:1}.theme-browser .theme.active .theme-actions .button-primary{margin-left:0}.theme-browser .theme .theme-author{background:#222;color:#eee;display:none;font-size:14px;margin:0 10px;padding:5px 10px;position:absolute;bottom:56px}.theme-browser .theme.display-author .theme-author{display:block}.theme-browser .theme.display-author .theme-author a{color:inherit;text-decoration:none}.theme-browser .theme.add-new-theme{border:0;-webkit-box-shadow:none;box-shadow:none}.theme-browser .theme.add-new-theme a{color:#999;text-decoration:none;display:block;position:relative;z-index:1}.theme-browser .theme.add-new-theme:after{display:block;content:'';-ms-filter:"alpha(Opacity=100)";opacity:1;background:0 0;background:rgba(0,0,0,0);position:absolute;top:0;right:0;left:0;bottom:0;padding:10% 0 0;text-shadow:none;border:5px dashed #d5d2ca;border:5px dashed rgba(0,0,0,.1);-webkit-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.theme-browser .theme.add-new-theme span:after{background:#e5e5e5;background:rgba(153,153,153,.1);-webkit-border-radius:50%;border-radius:50%;display:inline-block;content:'\f132';-webkit-font-smoothing:antialiased;font:400 74px/115px dashicons;width:100px;height:100px;vertical-align:middle;text-align:center;color:#999;position:absolute;top:30%;right:50%;margin-right:-50px;text-indent:-4px;padding:0;text-shadow:none;z-index:4}.rtl .theme-browser .theme.add-new-theme span:after{text-indent:4px}.theme-browser .theme.add-new-theme:focus .theme-screenshot,.theme-browser .theme.add-new-theme:hover .theme-screenshot{background:0 0}.theme-browser .theme.add-new-theme:focus span:after,.theme-browser .theme.add-new-theme:hover span:after{background:#fff;color:#0074a2}.theme-browser .theme.add-new-theme:focus:after,.theme-browser .theme.add-new-theme:hover:after{border-color:transparent;color:#fff;background:#0074a2;content:''}.theme-browser .theme.add-new-theme .theme-name{background:0 0;text-align:center;-webkit-box-shadow:none;box-shadow:none;font-weight:400;position:relative;top:0;margin-top:-10%;margin-bottom:10%}.theme-browser .theme.add-new-theme:focus .theme-name,.theme-browser .theme.add-new-theme:hover .theme-name{color:#fff;z-index:2}.themes-php .theme-search{position:relative;top:-2px;right:20px;font-size:16px;font-weight:300;line-height:1.5;width:280px}.theme-overlay .theme-backdrop{position:absolute;right:-20px;left:0;top:0;bottom:0;background:#f1f1f1;background:rgba(238,238,238,.9);z-index:10}body.theme-overlay-open{overflow:hidden}.theme-overlay .theme-header{position:absolute;top:0;right:0;left:0;height:48px;border-bottom:1px solid #ddd}.theme-overlay .theme-header .close{cursor:pointer;height:48px;width:50px;text-align:center;float:left;border:0;border-right:1px solid #ddd;background-color:transparent}.theme-overlay .theme-header .close:focus:before,.theme-overlay .theme-header .close:hover:before{color:#fff}.theme-overlay .theme-header .close:before{font:400 30px/50px dashicons!important;color:#777;display:inline-block;content:'\f335';font-weight:300}.theme-overlay .theme-header .left,.theme-overlay .theme-header .right{cursor:pointer;color:#777;background-color:transparent;height:48px;width:54px;float:right;text-align:center;border:0;border-left:1px solid #ddd}.theme-overlay .theme-header .close:focus,.theme-overlay .theme-header .close:hover,.theme-overlay .theme-header .left:focus,.theme-overlay .theme-header .left:hover,.theme-overlay .theme-header .right:focus,.theme-overlay .theme-header .right:hover{background:#0074a2;color:#fff}.theme-overlay .theme-header .left.disabled,.theme-overlay .theme-header .left.disabled:hover,.theme-overlay .theme-header .right.disabled,.theme-overlay .theme-header .right.disabled:hover{color:#ccc;background:inherit;cursor:inherit}.theme-overlay .theme-header .left:before,.theme-overlay .theme-header .right:before{font:400 20px/50px dashicons!important;display:inline;font-weight:300}.theme-overlay .theme-header .left:before{content:'\f340'}.theme-overlay .theme-header .right:before{content:'\f344'}.rtl .theme-overlay .theme-header .left:before{content:'\f345'}.rtl .theme-overlay .theme-header .right:before{content:'\f341'}.theme-overlay .theme-wrap{clear:both;position:fixed;top:9%;right:190px;left:30px;bottom:3%;background:#fff;-webkit-box-shadow:0 1px 20px 5px rgba(0,0,0,.1);box-shadow:0 1px 20px 5px rgba(0,0,0,.1);z-index:20;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.theme-overlay .theme-wrap:after{content:".";display:block;height:0;clear:both;visibility:hidden}body.folded .theme-overlay .theme-wrap{right:70px}.theme-overlay .theme-about{position:absolute;top:49px;bottom:57px;right:0;left:0;overflow:auto;padding:2% 4%}.theme-overlay .theme-about:after{content:".";display:block;height:0;clear:both;visibility:hidden}.theme-overlay .theme-actions{position:absolute;text-align:center;bottom:0;right:0;left:0;padding:10px 25px 5px;background:#f3f3f3;z-index:30;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border-top:1px solid #eee}.ie8 .theme-overlay .theme-actions{border:1px solid #eee}.theme-overlay .theme-actions a{margin-left:5px;margin-bottom:5px}.theme-overlay .theme-actions .delete-theme{color:#a00;position:absolute;left:10px;bottom:5px;text-decoration:none;border-color:transparent;-webkit-box-shadow:none;box-shadow:none;background:0 0}.theme-overlay .theme-actions .delete-theme:focus,.theme-overlay .theme-actions .delete-theme:hover{background:#d54e21;color:#fff;border-color:#d54e21}.theme-overlay .theme-actions .active-theme,.theme-overlay.active .theme-actions .inactive-theme{display:none}.theme-overlay .theme-actions .inactive-theme,.theme-overlay.active .theme-actions .active-theme{display:block}.theme-overlay .theme-screenshots{float:right;margin:0 0 0 30px;width:55%;max-width:880px;text-align:center}.theme-overlay .screenshot{border:1px solid #fff;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;overflow:hidden;position:relative;-webkit-box-shadow:0 0 0 1px rgba(0,0,0,.2);box-shadow:0 0 0 1px rgba(0,0,0,.2)}.theme-overlay .screenshot:after{content:'';display:block;padding-top:75%}.theme-overlay .screenshot img{height:auto;position:absolute;right:0;top:0;width:100%}.theme-overlay.small-screenshot .theme-screenshots{position:absolute;width:302px}.theme-overlay.small-screenshot .theme-info{margin-right:350px;width:auto}.theme-overlay .screenshot.thumb{background:#ccc;border:1px solid #eee;float:none;display:inline-block;margin:10px 5px 0;width:140px;height:80px;cursor:pointer}.theme-overlay .screenshot.thumb:after{content:'';display:block;padding-top:100%}.theme-overlay .screenshot.thumb img{cursor:pointer;position:absolute;right:0;top:0;width:100%;height:auto}.theme-overlay .screenshot.selected{background:0 0;border:2px solid #2ea2cc}.theme-overlay .screenshot.selected img{opacity:.8}.theme-browser .theme .theme-screenshot.blank,.theme-overlay .screenshot.blank{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYGWO8d+/efwYkoKioiMRjYGBC4WHhUK6A8T8QIJt8//59ZC493AAAQssKpBK4F5AAAAAASUVORK5CYII=)}.theme-overlay .theme-info{width:40%;float:right}.theme-overlay .current-label{background:#333;color:#fff;font-size:11px;display:inline-block;padding:2px 8px;-webkit-border-radius:2px;border-radius:2px;margin:0 0 -10px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.theme-overlay .theme-name{color:#222;font-size:32px;font-weight:100;margin:10px 0 0;line-height:1.3}.theme-overlay .theme-version{color:#999;font-size:13px;font-weight:400;float:none;display:inline-block;margin-right:10px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.theme-overlay .theme-author{color:#686868;font-size:16px;font-weight:400;margin:15px 0 25px}.theme-overlay .theme-author a{text-decoration:none}.theme-overlay .theme-description{color:#555;font-size:15px;font-weight:400;line-height:1.5;margin:30px 0 0}.theme-overlay .theme-tags{border-top:3px solid #eee;color:#888;font-size:13px;font-weight:400;margin:30px 0 0;padding-top:20px}.theme-overlay .theme-tags span{color:#444;font-weight:700;margin-left:5px}.theme-overlay .theme-update-message{background:#fef7f1;border:1px solid #eee;border-right:4px solid #d54e21;-webkit-border-radius:3px;border-radius:3px;padding:5px 20px 10px}.theme-overlay .theme-update{color:#222;font-size:18px;display:inline-block;line-height:40px;margin:0}.theme-overlay .parent-theme{background:#f7fcfe;border:1px solid #eee;border-right:4px solid #2ea2cc;font-size:14px;font-weight:400;margin-top:30px;padding:10px 20px 10px 10px}.theme-overlay .parent-theme strong{font-weight:700}.single-theme .theme,.single-theme .theme-overlay .theme-backdrop,.single-theme .theme-overlay .theme-header{display:none}.single-theme .theme-overlay .theme-wrap{clear:both;min-height:330px;position:relative;right:auto;left:auto;top:auto;bottom:auto}.single-theme .theme-overlay .theme-about{padding:30px 30px 70px;position:static}.single-theme .theme-overlay .theme-actions{position:absolute}@media only screen and (min-width:2000px){#wpwrap .theme-browser .theme{width:17.6%;margin:0 0 3% 3%}#wpwrap .theme-browser .theme:nth-child(3n),#wpwrap .theme-browser .theme:nth-child(4n){margin-left:3%}#wpwrap .theme-browser .theme:nth-child(5n){margin-left:0}}@media only screen and (min-width:1680px){.theme-overlay .theme-wrap{width:1450px;margin:0 auto}}@media only screen and (min-width:1640px){.theme-browser .theme{width:22.7%;margin:0 0 3% 3%}.theme-browser .theme .theme-screenshot:after{padding-top:75%}.theme-browser .theme:nth-child(3n){margin-left:3%}.theme-browser .theme:nth-child(4n){margin-left:0}}@media only screen and (max-width:1120px){.theme-browser .theme{width:47.5%;margin-left:0}.theme-browser .theme:nth-child(even){margin-left:0}.theme-browser .theme:nth-child(odd){margin-left:5%}}@media only screen and (max-width:900px){.theme-overlay .theme-wrap{right:65px}}@media only screen and (max-width:780px){.theme-overlay .theme-wrap,body.folded .theme-overlay .theme-wrap{top:0;left:0;bottom:0;right:0;padding:70px 20px 20px;border:0;z-index:500;position:fixed}.theme-browser .theme.active .theme-name span{display:none}.theme-overlay .theme-screenshots{width:40%}.theme-overlay .theme-info{width:50%}.single-theme .theme-wrap{padding:10px}.theme-browser .theme .theme-actions{padding:5px 10px 4px}.theme-overlay.small-screenshot .theme-screenshots{position:static;float:none;max-width:302px}.theme-overlay.small-screenshot .theme-info{margin-right:0;width:auto}.theme:focus .more-details,.theme:hover .more-details,.theme:not(.active):focus .theme-actions,.theme:not(.active):hover .theme-actions{display:none}.theme-browser.rendered .theme:focus .theme-screenshot img,.theme-browser.rendered .theme:hover .theme-screenshot img{opacity:1}}@media only screen and (max-width:480px){.theme-browser .theme{width:100%;margin-left:0}.theme-browser .theme:nth-child(2n),.theme-browser .theme:nth-child(3n){margin-left:0}}@media only screen and (max-width:650px){.theme-overlay .theme-description,.theme-overlay .theme-update{margin-right:0}.theme-overlay .theme-actions .delete-theme{position:relative;left:auto;bottom:auto}.theme-overlay .theme-actions .inactive-theme{display:inline}.theme-overlay .theme-screenshots{width:100%;float:none}.theme-overlay .theme-info{width:100%}.theme-overlay .theme-author{margin:5px 0 15px}.theme-overlay .current-label{margin-top:10px;font-size:13px}.themes-php .wrap h2{width:100%}.themes-php .theme-search{float:none;clear:both;right:0;top:0;left:0;margin:10px 0;width:100%}.theme-browser .theme.add-new-theme span:after{font:400 60px/90px dashicons;width:80px;height:80px;top:30%;right:50%;text-indent:0;margin-right:-40px}.single-theme .theme-wrap{margin:0 -10px 0 -12px;padding:10px}.single-theme .theme-overlay .theme-about{padding:10px;overflow:visible}.single-theme .current-label{display:none}.single-theme .theme-overlay .theme-actions{position:static}}.broken-themes{clear:both}.broken-themes table{text-align:right;width:50%;border-spacing:3px;padding:3px}.theme-browser .theme .theme-installed{background:#0074a2}.theme-browser .theme .theme-installed:before{content:'\f147'}.theme-browser .theme.is-installed .theme-actions .button-primary{display:none!important}.theme-navigation{background:#fff;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;color:#555;display:inline-block;font-size:13px;margin:20px 0 30px;padding:0 20px;position:relative;width:100%}.theme-install-php a.browse-themes,.theme-install-php a.upload{cursor:pointer}.theme-install-php a.browse-themes,.theme-install-php.show-upload-theme a.upload{display:none}.theme-install-php.show-upload-theme a.browse-themes{display:inline}.upload-theme{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:none;margin:0;padding:0;width:100%;overflow:hidden;position:relative;top:10px}body.show-upload-theme .upload-theme{display:block}.upload-theme .wp-upload-form{background:#fafafa;border:1px solid #e5e5e5;padding:30px;margin:30px auto;max-width:380px}.upload-theme .install-help{color:#999;font-size:18px;font-style:normal;margin:0;padding:40px 0 0;text-align:center}body.show-upload-theme .upload-theme+.theme-navigation,body.show-upload-theme .upload-theme+.theme-navigation+.theme-browser{display:none}.theme-navigation .theme-count{margin-right:0;position:absolute;top:12px}.theme-count+.theme-section{margin-right:60px}.theme-filter,.theme-section{border-bottom:4px solid #fff;color:#666;cursor:pointer;display:inline-block;margin:0 10px;padding:15px 0}.theme-filter.current,.theme-section.current{border-bottom:4px solid #666;color:#222}.theme-top-filters{display:inline-block}.theme-navigation .more-filters{color:#666;cursor:pointer;display:inline-block;margin:0 10px;padding:4px 6px}body.more-filters-opened .more-filters,body.more-filters-opened .more-filters:before{background:#777;-webkit-border-radius:2px;border-radius:2px;border:0;color:#fff}body.more-filters-opened .more-filters:focus,body.more-filters-opened .more-filters:focus:before,body.more-filters-opened .more-filters:hover,body.more-filters-opened .more-filters:hover:before{background:#2ea2cc}.theme-install-php .theme-search{position:absolute;left:10px;top:9px;font-size:16px;font-weight:300;line-height:1.5;width:280px}.more-filters:before{color:#777;margin:0 0 0 5px;content:"\f111";display:inline-block;width:16px;height:16px;-webkit-font-smoothing:antialiased;font-size:16px;line-height:1;font-family:dashicons;text-decoration:inherit;font-weight:400;font-style:normal;vertical-align:top;-webkit-transition:color .1s ease-in 0;transition:color .1s ease-in 0;text-align:center}.more-filters.current:before{color:#fff}.more-filters-container{display:none;padding:20px;border-top:1px solid #eee;margin:0 -20px;background:#fafafa}body.more-filters-opened .more-filters-container{display:block;overflow:hidden}body.more-filters-opened .theme-section.current{border-bottom:0}body.more-filters-opened .theme-browser,body.more-filters-opened.filters-applied.loading-themes .theme-browser{display:none}body.more-filters-opened.filters-applied .theme-browser{display:block}.more-filters-container .filters-group{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:right;width:19%;background:#fff;margin:0 0 0 1%;border:1px solid #e5e5e5;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.04);box-shadow:0 1px 1px rgba(0,0,0,.04);padding:10px}.more-filters-container .wide-filters-group{width:38%}.more-filters-container .feature-name{margin:0;position:relative}.more-filters-container ol{list-style-type:none;margin:20px 0 0;font-size:12px}.more-filters-container li{display:inline-block;vertical-align:top;list-style-type:none;margin:5px 0;padding-left:25px;width:160px}.theme-navigation .more-filters-container .apply-filters{margin:0 0 20px}.theme-navigation .more-filters-container .clear-filters{display:none;margin:0 10px 20px 0}.more-filters-container .apply-filters span{display:inline-block;font-size:12px;text-indent:10px;opacity:.8}.more-filters-container .filtering-by{display:none;margin:0}.more-filters-container .filtering-by>span{font-weight:600}.more-filters-container .filtering-by .tags{display:inline}.more-filters-container .filtering-by .tag{background:#fff;border:1px solid #e5e5e5;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.04);box-shadow:0 1px 1px rgba(0,0,0,.04);font-size:11px;margin:0 5px;padding:4px 8px}.more-filters-container .filtering-by a{margin-right:10px}body.filters-applied .more-filters-container .filters-group,body.filters-applied .more-filters-container a.button,body.filters-applied .more-filters-container br{display:none!important}body.filters-applied .more-filters-container .filtering-by{display:block}body.filters-applied .more-filters-container{padding:20px}p.no-themes{color:#999;font-size:18px;font-style:normal;margin:0;padding:0;text-align:center;display:none}body.no-results p.no-themes{display:block}.theme-install-php .add-new-theme,body.show-upload-theme p.no-themes{display:none!important}@media only screen and (max-width:1120px){.theme-install-php .theme-search{margin:20px 0;position:static;width:100%}.more-filters-container{border-bottom:1px solid #eee}.upload-theme .wp-upload-form{margin:20px 0;max-width:100%}.upload-theme .install-help{font-size:15px;padding:20px 0 0;text-align:right}.more-filters-container .filters-group{margin-bottom:0;margin-top:5px;width:100%}.more-filters-container .filters-group li{margin:10px 0}}@media only screen and (max-width:782px){.more-filters-container .filters-group,.more-filters-container .filters-group li{width:100%}}.rating{margin:30px 0}.rating span:before{color:#e6b800;content:"\f154";display:inline-block;-webkit-font-smoothing:antialiased;font:400 20px/1 dashicons;vertical-align:top}.rating-10 span.one:before,.rating-30 span.two:before,.rating-50 span.three:before,.rating-70 span.four:before,.rating-90 span.five:before{content:"\f459"}.rating-100 span.five:before,.rating-100 span.four:before,.rating-100 span.one:before,.rating-100 span.three:before,.rating-100 span.two:before,.rating-20 span.one:before,.rating-30 span.one:before,.rating-40 span.one:before,.rating-40 span.two:before,.rating-50 span.one:before,.rating-50 span.two:before,.rating-60 span.one:before,.rating-60 span.three:before,.rating-60 span.two:before,.rating-70 span.one:before,.rating-70 span.three:before,.rating-70 span.two:before,.rating-80 span.four:before,.rating-80 span.one:before,.rating-80 span.three:before,.rating-80 span.two:before,.rating-90 span.four:before,.rating-90 span.one:before,.rating-90 span.three:before,.rating-90 span.two:before{content:"\f155"}.rating .ratings{display:inline;margin-right:10px;line-height:20px;color:#999}.error .theme-browser,.loading-themes .theme-browser{display:none}.loading-themes .spinner{display:block;margin:40px auto 0;float:none}.appearance_page_custom-header #headimg{border:1px solid #DFDFDF;overflow:hidden;width:100%}.appearance_page_custom-header #upload-form p label{font-size:12px}.appearance_page_custom-header .available-headers .default-header{float:right;margin:0 0 20px 20px}.appearance_page_custom-header .random-header{clear:both;margin:0 0 20px 20px;vertical-align:middle}.appearance_page_custom-header .available-headers label input,.appearance_page_custom-header .random-header label input{margin-left:10px}.appearance_page_custom-header .available-headers label img{vertical-align:middle}div#custom-background-image{min-height:100px;border:1px solid #dfdfdf}div#custom-background-image img{max-width:400px;max-height:300px}body.full-overlay-active{overflow:hidden}.wp-full-overlay{background:0 0;z-index:500000;position:fixed;overflow:visible;top:0;bottom:0;right:0;left:0;height:100%;min-width:0}.wp-full-overlay-sidebar{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;position:fixed;width:300px;height:100%;top:0;bottom:0;right:0;padding:0;margin:0;z-index:10;overflow:auto;background:#eee;border-left:0}.wp-full-overlay.collapsed .wp-full-overlay-sidebar{overflow:visible}.wp-full-overlay.collapsed,.wp-full-overlay.expanded .wp-full-overlay-sidebar{margin-right:0!important}.wp-full-overlay.expanded{margin-right:300px}.wp-full-overlay.collapsed .wp-full-overlay-sidebar{margin-right:-300px}.wp-full-overlay-sidebar:after{content:'';display:block;position:absolute;top:0;bottom:0;left:0;width:3px;z-index:1000}.wp-full-overlay-main{position:absolute;right:0;left:0;top:0;bottom:0;height:100%}.wp-full-overlay-sidebar .wp-full-overlay-header{position:absolute;right:0;left:0;height:45px;padding:0 15px;line-height:45px;z-index:10;margin:0;border-top:0;-webkit-box-shadow:none;box-shadow:none}.wp-full-overlay-sidebar .wp-full-overlay-header a.back{margin-top:9px}.wp-full-overlay-sidebar .wp-full-overlay-footer{bottom:0;border-bottom:0;border-top:0;-webkit-box-shadow:none;box-shadow:none}.wp-full-overlay-sidebar .wp-full-overlay-sidebar-content{position:absolute;top:45px;bottom:45px;right:0;left:0;overflow:auto}.wp-full-overlay .close-full-overlay{text-decoration:none}.wp-full-overlay a.collapse-sidebar{position:absolute;bottom:12px;right:0;z-index:50;display:block;width:19px;height:19px;margin-right:15px;padding:0;-webkit-border-radius:50%;border-radius:50%;color:#777;text-decoration:none}.wp-full-overlay a.collapse-sidebar:hover{color:#0074a2}.wp-full-overlay.collapsed .collapse-sidebar{position:absolute;right:100%}.wp-full-overlay .collapse-sidebar-arrow{position:static;margin-top:0;margin-right:0;display:block;width:auto;height:auto;background:0 0}.wp-full-overlay .collapse-sidebar-arrow:before{-webkit-border-radius:50%;border-radius:50%;float:right;content:"\f148";background:#eee;font:400 20px/1 dashicons;speak:none;display:block;padding:0;text-indent:0;text-align:center;position:relative;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important}.rtl .wp-full-overlay .collapse-sidebar-arrow:before,.wp-full-overlay.collapsed .collapse-sidebar-arrow:before{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.rtl .wp-full-overlay.collapsed .collapse-sidebar-arrow:before{-webkit-transform:none;-ms-transform:none;transform:none}.wp-full-overlay.collapsed .collapse-sidebar-arrow{background-position:-1px -109px}.wp-full-overlay .collapse-sidebar-label{position:absolute;right:100%;line-height:20px;margin-right:10px}.wp-full-overlay.collapsed .collapse-sidebar-label{display:none}.wp-full-overlay .theme-navigation{padding:10px 20px;position:absolute;bottom:10px;text-align:right}.wp-full-overlay .theme-navigation .next-theme{float:left}.wp-full-overlay.no-navigation .theme-navigation{display:none}.wp-full-overlay,.wp-full-overlay .collapse-sidebar,.wp-full-overlay-main,.wp-full-overlay-sidebar{-webkit-transition-property:right,left,top,bottom,width,margin;transition-property:right,left,top,bottom,width,margin;-webkit-transition-duration:.2s;transition-duration:.2s}.customize-support .hide-if-customize,.customize-support .wp-core-ui .hide-if-customize,.customize-support.wp-core-ui .hide-if-customize,.no-customize-support .hide-if-no-customize,.no-customize-support .wp-core-ui .hide-if-no-customize,.no-customize-support.wp-core-ui .hide-if-no-customize{display:none}#customize-container{display:none;background:#fff;z-index:500000;position:fixed;overflow:visible;top:0;bottom:0;right:0;left:0;height:100%}.customize-active #customize-container{display:block}.customize-loading #customize-container iframe{opacity:0}.customize-loading #customize-container{background:#fff url(../images/spinner.gif) no-repeat fixed center center;-webkit-background-size:20px 20px;background-size:20px 20px}#customize-container iframe,.theme-install-overlay iframe{height:100%;width:100%;z-index:20;-webkit-transition:opacity .3s;transition:opacity .3s}#customize-container .collapse-sidebar{bottom:16px}#customize-controls{margin-top:0}.theme-install-overlay{display:none}.theme-install-overlay.single-theme{display:block}.install-theme-info{display:none;padding:10px 20px 60px}.single-theme .install-theme-info{padding-top:15px}.theme-install-overlay .install-theme-info{display:block}.install-theme-info .theme-install{float:left;margin-top:18px}.install-theme-info .theme-name{font-size:16px;line-height:24px;margin-bottom:0;margin-top:0}.install-theme-info .theme-screenshot{margin-top:15px;width:258px;border:1px solid #ccc}.install-theme-info .theme-details{overflow:hidden}.theme-details .theme-version{margin:15px 0;float:right}.theme-details .star-rating{margin:7px 0;float:left}.theme-details .theme-description{float:right;color:#777;line-height:20px;max-width:100%}.theme-install-overlay .wp-full-overlay-header{margin-top:9px}.theme-install-overlay .wp-full-overlay-header .theme-install{float:left;line-height:26px}.theme-install-overlay .wp-full-overlay-sidebar{background:#EEE;border-left:1px solid #DDD}.theme-install-overlay .wp-full-overlay-main{background:#fff url(../images/spinner.gif) no-repeat center center;-webkit-background-size:20px 20px;background-size:20px 20px}@media print,(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.wp-full-overlay .collapse-sidebar-arrow{background-image:url(../images/arrows-2x.png);-webkit-background-size:15px 123px;background-size:15px 123px}.customize-loading #customize-container,.theme-install-overlay .wp-full-overlay-main{background-image:url(../images/spinner-2x.gif)}}@media screen and (max-width:782px){.available-theme .action-links .delete-theme{float:none;margin:0;padding:0;clear:both}.available-theme .action-links .delete-theme a{padding:0}}.press-this #message{border-right:4px solid #7ad03a;padding:1px 12px;background-color:#fff;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}.press-this #side-sortables .category-tabs li{display:inline;line-height:1.35em}body.press-this ul.category-tabs li.tabs a{color:#333}.press-this #content-resize-handle{bottom:2px}body.press-this{color:#333;margin:0;padding:0;min-width:708px;min-height:400px}.press-this #titlediv #title{font-size:1.4em}.press-this #site-heading:before{top:3px;position:relative;display:inline-block;font:400 18px/1 dashicons;speak:none;color:#727272;content:'\f120';-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.press-this #wphead{height:32px;margin-right:0;margin-left:0;margin-bottom:5px}.press-this #header-logo{float:right;margin:7px 7px 0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.press-this #wphead h1{font-weight:400;font-size:16px;line-height:32px;margin:0;float:right}.press-this #wphead h1 a{text-decoration:none}.press-this #wphead h1 a:hover{text-decoration:underline}.press-this #message{margin:10px 0}.press-this .posting{margin-left:250px}.press-this-sidebar{float:left;width:240px;padding-top:10px}.press-this #title{margin-right:0;margin-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.press-this .tagchecklist{margin-top:8px}.press-this #titlediv{margin:0}.press-this #wp-content-wrap #wp-content-editor-tools{padding:0;top:3px;overflow:hidden}.press-this .wp-media-buttons{cursor:default;padding:8px 8px 6px}.press-this #wp-content-wrap #wp-content-media-buttons a{padding:0;line-height:normal;height:auto;font-size:16px}.press-this #wp-content-wrap .mce-toolbar .mce-btn-group .mce-btn{margin:0 1px}.press-this #wp-content-wrap .mce-toolbar .mce-btn button{padding:2px 3px}.press-this #wp-content-wrap .quicktags-toolbar,.press-this #wp-content-wrap div.mce-toolbar-grp{padding-left:3px}.press-this .howto{margin-top:2px;margin-bottom:3px;font-size:12px;font-style:italic;display:block}.press-this #wp-content-editor-container{clear:none}.press-this #poststuff .inside{margin-top:18px}.press-this .category-tabs{margin-bottom:3px}.press-this #poststuff{margin:0 8px;padding:0}.press-this #photo-add-url-div input[type=text]{width:220px}#poststuff #editor-toolbar{height:30px}.posting{margin-left:212px;position:relative}.press-this .inner-sidebar{width:200px}.press-this .inner-sidebar .sleeve{padding-top:5px}.press-this #submitdiv p{margin:0;padding:6px}.press-this #submitdiv #publishing-actions{border-bottom:1px solid #dfdfdf}.press-this #publish{float:left}.press-this #poststuff h2,.press-this #poststuff h3{font-size:14px;line-height:1}.press-this #categorydiv h3,.press-this #tagsdiv-post_tag h3{cursor:pointer}.press-this #submitdiv h3{cursor:default}h3.tb{font-weight:600;font-size:12px;margin-right:5px}.press-this .postbox,.press-this .stuffbox{margin-bottom:10px;min-width:0}.press-this #submitdiv:hover .handlediv{background:0 0}.tbtitle{font-size:1.7em;outline:0;padding:3px 4px;border:1px solid #dfdfdf}.press-this .actions{float:left;margin:-19px 0 0}.press-this #extra-fields .actions{margin:-32px 0 0 -7px}.press-this .actions li{float:right;list-style:none;margin-left:10px}#extra-fields .button{margin-left:5px}#photo_saving{margin:0 8px 8px;vertical-align:middle}#img_container_container{overflow:auto}#extra-fields{margin-top:10px;position:relative}#extra-fields h2{margin:12px}#waiting{margin-top:10px;overflow:hidden}#waiting span{float:left;margin:0 5px 0 0}#waiting .spinner{display:block}#extra-fields .postbox{margin-bottom:5px}#extra-fields .titlewrap{padding:0;overflow:auto;height:120px}#img_container a{float:right;overflow:hidden}#img_container a,#img_container img{width:68px;height:68px}#img_container img{border:0;background-color:#f4f4f4;cursor:pointer}#img_container a,#img_container a:link,#img_container a:visited{border:1px solid #ccc;display:block;position:relative}#img_container a:active,#img_container a:hover{border-color:#000;z-index:1000;border-width:1px}#embed-code{width:100%;height:98px}.press-this .categorydiv div.tabs-panel{height:100px}.press-this .tagsdiv .newtag{width:120px}.press-this #content{margin:5px 0;padding:0 5px;border:0 none;height:340px;font-family:Consolas,Monaco,monospace;font-size:13px;line-height:19px;background:0 0}.press-this #publishing-actions .spinner{display:inline;vertical-align:middle}@media screen and (max-width:782px){.press-this ul.category-tabs li.tabs{padding:3px 5px 5px}.press-this a.wp-switch-editor{font:13px/19px "Open Sans",sans-serif;margin:5px 5px 0 0;padding:3px 8px 4px}.press-this #wp-content-media-buttons a{padding:0;line-height:normal;height:auto}.press-this #wp-content-editor-tools{padding:0;top:3px}.press-this .category-tabs{margin-top:0}.press-this .tagsdiv .newtag{width:120px;padding:3px 5px;margin-bottom:0}.press-this .tagchecklist{padding:0;margin-bottom:0}.press-this .wp_themeSkin a.mceButton{width:20px;height:20px}.press-this .wp_themeSkin .mceButton .mceIcon{margin:0}.press-this #poststuff h3,.press-this .metabox-holder h3{padding:7px 12px}.press-this input[type=checkbox],.press-this input[type=radio]{height:16px;width:16px}.press-this input[type=checkbox]:checked:before{width:16px;font:400 21px/1 dashicons;margin:-3px -4px 0 0}.press-this input[type=radio]:checked:before{font:400 21px/1 dashicons;width:6px;height:6px;margin:4px}.press-this ul.categorychecklist li,.press-this ul.categorychecklist ul{margin-top:0;margin-bottom:0}.press-this div.quicktags-toolbar input{padding:2px 4px}.press-this input,.press-this textarea{font-size:14px}.press-this .tagchecklist span{font-size:13px;line-height:1.8em}}.about-wrap{position:relative;margin:25px 20px 0 40px;max-width:1050px;font-size:15px}.about-wrap div.error,.about-wrap div.updated{display:none!important}.about-wrap hr{border:0;height:0;margin:0;border-top:1px solid rgba(0,0,0,.1)}.about-wrap img{margin:0;max-width:100%;vertical-align:middle}.about-wrap p{line-height:1.6em;font-size:14px}.about-wrap h1{margin:.2em 0 0 200px;color:#333;line-height:1.2em;font-size:2.8em;font-weight:400}.about-wrap h4{color:#222}.about-wrap .about-text,.about-wrap li.wp-person a.web,.about-wrap p.about-description{font-weight:400;line-height:1.6em;font-size:19px}.about-description{margin-top:1.4em}.about-text{margin:1em 0 1em 200px;min-height:60px;color:#777;font-size:24px}.about-wrap .changelog h2.about-headline-callout{margin:1.1em 0 .2em;font-size:2.4em;font-weight:300;line-height:1.3;text-align:center}.about-wrap h3{margin:1em 0 .6em;font-size:1.5em;line-height:1.5em}.customize h3{margin-top:1.75em;text-align:center}.about-wrap .feature-section h4{margin:1.4em 0 .6em;font-size:1.2em}.about-wrap .feature-section p{margin-top:.6em}.about-wrap code,.about-wrap ol li p{font-size:14px}.about-wrap .button.button-large{padding:8px 20px 10px!important;height:46px!important;font-size:14px;line-height:28px!important}.about-wrap .about-overview-img{margin:0}.about-wrap .point-releases{margin-top:5px;border-bottom:1px solid #dfdfdf}.about-wrap .changelog.point-releases h3{padding-top:35px}.about-wrap .changelog.point-releases h3:first-child{padding-top:7px}.wp-badge{background:#0074a2 url(../images/w-logo-white.png?ver=20131202) no-repeat;background:#0074a2,url(../images/wordpress-logo-white.svg?ver=20131110) no-repeat;background-position:center 24px;-webkit-background-size:85px 85px;background-size:85px 85px;color:#78c8e6;font-size:14px;text-align:center;font-weight:600;margin:5px 0 0;padding-top:120px;height:40px;display:inline-block;width:150px;text-rendering:optimizeLegibility;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.2);box-shadow:0 1px 3px rgba(0,0,0,.2)}.about-wrap .wp-badge{position:absolute;top:0;left:0}.about-wrap h2.nav-tab-wrapper{padding-right:6px}.about-wrap h2 .nav-tab{padding:4px 15px 6px;margin:0 0 -1px 3px;font-size:18px;vertical-align:top;border-width:1px}.about-overview{margin-top:40px;text-align:center}.about-overview .wp-video{margin:0 auto}.changelog .wp-playlist .wp-playlist-current-item img{height:64px;width:auto;max-width:100%}.about-wrap .feature-section{margin-top:40px;padding-bottom:20px}.about-wrap .feature-section.two-col>div{position:relative;width:47.5%;margin-left:4.999999999%;float:right}.about-wrap .feature-section.three-col>div{position:relative;width:29.95%;margin-left:4.999999999%;float:right}.about-wrap .feature-section.col .last-feature{margin-left:0}.about-wrap .under-the-hood .feature-section{margin-top:0}.about-wrap .changelog .feature-section{overflow:hidden}.about-wrap .feature-section.two-col div p{margin-left:3%}.about-wrap .feature-section div p img{float:left;margin-right:10px;max-width:20%}.about-wrap .changelog li{list-style-type:disc;margin-right:3em}.about-wrap .return-to-dashboard{margin:30px -5px 0 0;font-size:14px;font-weight:700}.about-wrap .return-to-dashboard a{text-decoration:none;padding:0 5px}.about-wrap h4.wp-people-group{margin-top:2.6em;font-size:16px}.about-wrap ul.wp-people-group{overflow:hidden;padding:0 5px;margin:0 -5px 0 -15px}.about-wrap ul.compact{margin-bottom:0}.about-wrap li.wp-person{float:right;margin-left:10px}.about-wrap li.wp-person img.gravatar{float:right;margin:0 0 10px 10px;padding:2px;width:60px;height:60px}.about-wrap ul.compact li.wp-person img.gravatar{width:30px;height:30px}.about-wrap li.wp-person{height:70px;width:280px;padding-bottom:15px}.about-wrap ul.compact li.wp-person{height:auto;width:180px;padding-bottom:0;margin-bottom:0}.about-wrap #wp-people-group-validators+p.wp-credits-list{margin-top:0}.about-wrap li.wp-person a.web{display:block;margin:6px 0 2px;font-size:16px;text-decoration:none}.about-wrap p.wp-credits-list a{white-space:nowrap}.freedoms-php .about-wrap ol{margin:40px 60px}.freedoms-php .about-wrap ol li{list-style-type:decimal;font-weight:700}.freedoms-php .about-wrap ol p{font-weight:400;margin:.6em 0}@media screen and (max-width:782px){.about-wrap .feature-section.one-col>div,.about-wrap .feature-section.three-col>div,.about-wrap .feature-section.two-col>div{width:100%;margin:0 0 40px;padding:0 0 40px;float:none;border-bottom:1px solid rgba(0,0,0,.1)}.about-wrap .feature-section.col>div.last-feature,.about-wrap .under-the-hood .feature-section>div{margin:0;padding:0;border-bottom:0}}@media only screen and (max-width:500px){.about-wrap{margin-left:20px;margin-right:10px}.about-text,.about-wrap h1{margin-left:0}.about-text{margin-bottom:.25em}.about-wrap .wp-badge{position:relative;margin-bottom:1.5em;width:100%}.about-wrap .feature-section.three-col div{width:100%;float:none}.about-wrap .three-col.about-updates .col-1{padding:0;float:none}.about-wrap .three-col.about-updates .col-2{margin:0 0 20px;width:100%;float:none}}.no-js #message{display:block}ul.add-menu-item-tabs li{padding:3px 8px 3px 5px}.accordion-section ul.add-menu-item-tabs,.accordion-section ul.category-tabs,.accordion-section ul.wp-tab-bar{margin:0}.accordion-section .categorychecklist{margin:13px 0}#nav-menu-meta .accordion-section-content{padding:18px 13px}#nav-menu-meta .button-controls{margin-bottom:0}#nav-menus-frame{margin-right:300px;margin-top:23px}#wpbody-content #menu-settings-column{display:inline;width:281px;margin-right:-300px;clear:both;float:right;padding-top:0}#menu-settings-column .inside{clear:both;margin:10px 0 0}.metabox-holder-disabled .accordion-section-content,.metabox-holder-disabled .accordion-section-title,.metabox-holder-disabled .postbox{opacity:.5;filter:alpha(opacity=50)}.metabox-holder-disabled .button-controls .select-all{display:none}#wpbody{position:relative}.blank-slate .menu-name{height:2em}.blank-slate .menu-settings{border:0;margin-top:0;padding-top:0;overflow:hidden}.is-submenu{color:#999;font-style:italic;font-weight:400;margin-right:4px}.manage-menus{margin-top:23px;padding:10px;overflow:hidden;background:#fbfbfb}.manage-menus select{float:right;margin-left:6px}.manage-menus .selected-menu{float:right;margin:5px 0 0 6px}.manage-menus .submit-btn{float:right;margin-top:1px}.menu-edit p{margin:.3em 0 .6em}.menu-edit #post-body-content h3{margin:1em 0 10px}.menu-settings{border-top:1px solid #eee;margin-top:2em}.menu-settings dl{margin:0 0 10px;overflow:hidden;padding-right:18%}.menu-settings dd{float:right;margin:0;width:100%}.menu-settings dt{float:right;clear:both;width:21.951%;padding:3px 0 0;margin-right:-21.951%}.menu-settings label{vertical-align:baseline}.menu-edit .checkbox-input{margin-top:4px}.theme-location-set{color:#999;font-size:11px}#menu-management-liquid{float:right;min-width:100%;margin-top:3px}#menu-management{position:relative;margin-left:20px;margin-top:-3px;width:100%;background:#f5f5f5}#menu-management .menu-edit{margin-bottom:20px}.nav-menus-php #post-body{padding:0 10px 10px;border-top:1px solid #fff;border-bottom:1px solid #dfdfdf;background:#fff}#nav-menu-footer,#nav-menu-header{padding:0 10px}#nav-menu-header{border-bottom:1px solid #dfdfdf;margin-bottom:0}#nav-menu-header .menu-name-label{margin-top:4px}.nav-menus-php #post-body div.error,.nav-menus-php #post-body div.updated{margin:0}.nav-menus-php #post-body-content{position:relative;float:none}#menu-management .menu-add-new abbr{font-weight:600}#select-nav-menu-container{text-align:left;padding:0 10px 3px;margin-bottom:5px}#select-nav-menu{width:100px;display:inline}#menu-name-label{margin-top:-2px}.widefat td.menu-location-menus{padding-bottom:5px}.menu-location-menus select{float:right}#locations-nav-menu-wrapper{padding:5px 0}.locations-nav-menu-select select{float:right;width:160px;margin-left:5px}.locations-row-links{float:right;margin:6px 6px 0 0}.locations-add-menu-link,.locations-edit-menu-link{margin:0 3px}.locations-edit-menu-link{padding-left:3px;border-left:1px solid #ccc}#wpbody .open-label{display:block;float:right}#wpbody .open-label span{padding-left:10px}.js .input-with-default-title{color:#aaa;font-style:italic}#menu-management .inside{padding:0 10px}.accordion-container .howto input,.postbox .howto input{width:180px;float:left}.accordion-container .outer-border{margin:0}.customlinkdiv .howto input{width:180px}.customlinkdiv p{margin-top:0}#nav-menu-theme-locations .howto select{width:100%}#nav-menu-theme-locations .button-controls{text-align:left}.add-menu-item-view-all{height:400px}#menu-container .submit{margin:0 0 10px;padding:0}.nav-menus-php .add-new-menu-action{float:right;margin:6px 6px 0 0;line-height:15px}.nav-menus-php .meta-sep,.nav-menus-php .submitcancel,.nav-menus-php .submitdelete{display:block;float:right;margin:6px 0;line-height:15px}.meta-sep{padding:0 2px}#cancel-save{text-decoration:underline;font-size:12px;margin-right:20px;margin-top:5px}.button-primary.right,.button-secondary.right,.button.right{float:left}.list-controls{float:right;margin-top:5px}.add-to-menu{float:left}.postbox .spinner{display:none;vertical-align:middle}.button-controls{clear:both;margin:10px 0}.hide-all,.show-all{cursor:pointer}.hide-all{display:none}#menu-name{width:270px}#manage-menu .inside{padding:0}#available-links dt{display:block}#add-custom-link .howto{font-size:12px}#add-custom-link label span{display:block;float:right;margin-top:5px;padding-left:5px}.menu-item-textbox{width:180px}.nav-menus-php .howto span{margin-top:6px;display:block;float:right}.quick-search{width:190px}.nav-menus-php .list-wrap{display:none;clear:both;margin-bottom:10px}.nav-menus-php .postbox p.submit{margin-bottom:0}.nav-menus-php .list li{display:none;margin:0;margin-bottom:5px}.nav-menus-php .list li .menu-item-title{cursor:pointer;display:block}.nav-menus-php .list li .menu-item-title input{margin-left:3px;margin-top:-3px}.menu-item-title input[type=checkbox]{display:inline-block;margin-top:-4px}#menu-container .inside{padding-bottom:10px}.menu{padding-top:1em}#menu-to-edit{margin:0;padding:.1em 0}.menu ul{width:100%}.menu li{margin-bottom:0;position:relative}.menu-item-bar{clear:both;line-height:1.5em;position:relative;margin:9px 0 0}.menu-item-bar .menu-item-handle{border:1px solid #dfdfdf;position:relative;padding:10px 15px;height:auto;width:382px;line-height:30px;overflow:hidden;word-wrap:break-word}.menu-item-bar .menu-item-handle:hover{border-color:#999}#menu-to-edit .menu-item-invalid .menu-item-handle{background:#f6c9cc;border-color:#f1acb1}.no-js .menu-item-edit-active .item-edit{display:none}.js .menu-item-handle{cursor:move}.menu li.deleting .menu-item-handle{background-image:none;background-color:#f66}.menu-item-handle .item-title{font-size:13px;font-weight:600;line-height:20px;display:block;margin-left:13em}li.menu-item.ui-sortable-helper dl{margin-top:0}li.menu-item.ui-sortable-helper .menu-item-transport dl{margin-top:13px}.menu .sortable-placeholder{height:35px;width:410px;margin-top:13px}.menu-item-depth-0{margin-right:0}.menu-item-depth-1{margin-right:30px}.menu-item-depth-2{margin-right:60px}.menu-item-depth-3{margin-right:90px}.menu-item-depth-4{margin-right:120px}.menu-item-depth-5{margin-right:150px}.menu-item-depth-6{margin-right:180px}.menu-item-depth-7{margin-right:210px}.menu-item-depth-8{margin-right:240px}.menu-item-depth-9{margin-right:270px}.menu-item-depth-10{margin-right:300px}.menu-item-depth-11{margin-right:330px}.menu-item-depth-0 .menu-item-transport{margin-right:0}.menu-item-depth-1 .menu-item-transport{margin-right:-30px}.menu-item-depth-2 .menu-item-transport{margin-right:-60px}.menu-item-depth-3 .menu-item-transport{margin-right:-90px}.menu-item-depth-4 .menu-item-transport{margin-right:-120px}.menu-item-depth-5 .menu-item-transport{margin-right:-150px}.menu-item-depth-6 .menu-item-transport{margin-right:-180px}.menu-item-depth-7 .menu-item-transport{margin-right:-210px}.menu-item-depth-8 .menu-item-transport{margin-right:-240px}.menu-item-depth-9 .menu-item-transport{margin-right:-270px}.menu-item-depth-10 .menu-item-transport{margin-right:-300px}.menu-item-depth-11 .menu-item-transport{margin-right:-330px}body.menu-max-depth-0{min-width:950px!important}body.menu-max-depth-1{min-width:980px!important}body.menu-max-depth-2{min-width:1010px!important}body.menu-max-depth-3{min-width:1040px!important}body.menu-max-depth-4{min-width:1070px!important}body.menu-max-depth-5{min-width:1100px!important}body.menu-max-depth-6{min-width:1130px!important}body.menu-max-depth-7{min-width:1160px!important}body.menu-max-depth-8{min-width:1190px!important}body.menu-max-depth-9{min-width:1220px!important}body.menu-max-depth-10{min-width:1250px!important}body.menu-max-depth-11{min-width:1280px!important}.item-type{color:#777;font-size:12px;padding:12px 10px;line-height:18px;display:block}.item-controls{font-size:12px;position:absolute;left:20px;top:-1px}.item-controls a{text-decoration:none}.item-controls a:hover{cursor:pointer}.item-controls .item-order{padding-left:10px}.nav-menus-php .item-edit{position:absolute;left:-20px;top:0;display:block;width:30px;height:40px;margin-left:0!important;text-indent:100%;outline:0;overflow:hidden;white-space:nowrap}.menu-instructions-inactive{display:none}.menu-item-settings{display:block;width:402px;padding:10px 10px 10px 0;position:relative;z-index:10;border:1px solid #e5e5e5;border-top:0;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.04);box-shadow:0 1px 1px rgba(0,0,0,.04)}.menu-item-settings .field-move a{display:none;margin:0 2px}.menu-item-edit-active .menu-item-settings{display:block}.menu-item-edit-inactive .menu-item-settings{display:none}.add-menu-item-pagelinks{margin:.5em auto;text-align:center}.link-to-original{display:block;margin:0 0 10px;padding:3px 5px 5px;border:1px solid #dfdfdf;color:#777;font-size:12px;font-style:italic}.link-to-original a{padding-right:4px;font-style:normal}.hidden-field{display:none}.menu-item-settings .description-thin,.menu-item-settings .description-wide{margin-left:10px;float:right}.description-thin{width:190px;height:40px}.description-wide{width:390px}.menu-item-actions{padding-top:15px}#cancel-save{cursor:pointer}.nav-menus-php .major-publishing-actions{clear:both;padding:3px 0 6px}.nav-menus-php .major-publishing-actions .publishing-action{text-align:left;float:left;line-height:23px;margin:4px 0 1px}.nav-menus-php .blank-slate .menu-settings{display:none}.nav-menus-php .delete-action{float:right;margin-top:2px}.nav-menus-php .submitbox .submitcancel{border-bottom:1px solid #0074a2;padding:1px 2px;color:#0074a2;text-decoration:none}.nav-menus-php .submitbox .submitcancel:hover{background:#0074a2;color:#fff}.nav-menus-php .major-publishing-actions .form-invalid{padding-right:4px;margin-right:-4px}#menu-item-name-wrap:after,#menu-item-url-wrap:after,#menu-name-label:after,#menu-settings-column .inside:after,#nav-menus-frame:after,.nav-menus-php #post-body-content:after,.nav-menus-php .button-controls:after,.nav-menus-php .major-publishing-actions:after,.nav-menus-php .menu-item-settings:after{clear:both;content:".";display:block;height:0;visibility:hidden}#menu-item-name-wrap,#menu-item-url-wrap,#nav-menus-frame,.button-controls{display:block}@media screen and (max-width:782px){body.nav-menus-php{min-width:0!important}#nav-menus-frame{margin-right:0;float:none;width:100%}#wpbody-content #menu-settings-column{display:block;width:100%;float:none;margin-right:0}#side-sortables .add-menu-item-tabs{margin:15px 0 14px}ul.add-menu-item-tabs li.tabs{padding:13px 15px 14px}.nav-menus-php .item-controls .item-type{margin-top:2px}.nav-menus-php .customlinkdiv .howto input{width:65%}.nav-menus-php .quick-search{width:85%}#menu-management-liquid{margin-top:25px}.nav-menus-php .menu-name-label.howto span{margin-top:13px}.menu-name-label #menu-name{margin-top:4px}.nav-menus-php .major-publishing-actions .publishing-action{margin-top:6px}.nav-menus-php .delete-action{font-size:14px;line-height:50px;margin-top:12px}.description-wide,.menu-item-bar .menu-item-handle,.menu-item-settings{width:auto}.menu-item-settings{padding:10px}.menu-item-settings .description-thin,.menu-item-settings .description-wide{width:100%;height:auto}.menu-item-settings input{width:100%}.menu-settings dl{padding-right:0}.menu-settings dd{float:none;width:100%;margin-bottom:15px}.menu-settings dt{float:none;width:auto;margin-right:0;margin-bottom:15px}}@media only screen and (max-width:768px){#menu-locations-wrap .widefat{width:100%}}.widget{margin:0 auto 10px;position:relative;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.widget-top{font-size:13px;font-weight:600;background:#f7f7f7}.widget-top a.widget-action,.widget-top a.widget-action:hover{text-decoration:none}.widget-title h4{margin:0;padding:15px;line-height:1;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.widgets-holder-wrap .widget-inside{border-top:0;padding:1px 15px 15px;line-height:16px}#available-widgets .widget-description,#widgets-right a.widget-control-edit,.in-widget-title{color:#666}.deleting .widget-title,.deleting .widget-top a.widget-action:after{color:#aaa}.widget.ui-draggable-dragging{min-width:100%}.widget.ui-sortable-helper{opacity:.8}.widget-placeholder{border:1px dashed #bbb;margin:0 auto 10px;height:45px;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#widgets-right .widget-placeholder{margin-top:0}#widgets-right .closed .widget-placeholder{height:0;border:0;margin-top:-10px}.sidebar-name{position:relative;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.sidebar-name-arrow{position:absolute;top:0;left:0;bottom:0}.js .sidebar-name{cursor:pointer}.sidebar-name h3{margin:0;padding:8px 10px;overflow:hidden;white-space:nowrap}.widgets-holder-wrap .description{padding:0 0 15px;margin:0;font-style:normal;color:#777}#widgets-right .widgets-holder-wrap .description{padding-right:7px;padding-left:7px}div.widget-liquid-left{margin:0;width:38%;float:right}div.widget-liquid-right{float:left;width:58%}div#widgets-left{padding-top:12px}div#widgets-left .closed .sidebar-name,div#widgets-left .inactive-sidebar.closed .sidebar-name{margin-bottom:10px}div#widgets-left .sidebar-name h3{padding:10px 0;margin:0 0 0 10px}div#widgets-left .sidebar-name .sidebar-name-arrow:before{left:0;top:4px;padding:4px 4px 4px 6px}#widgets-left #available-widgets,div#widgets-left .widget-holder{background:0 0;border:0}#widgets-left .widgets-holder-wrap{border:0;-webkit-box-shadow:none;box-shadow:none}#available-widgets .widget-action{display:none}#available-widgets .widget{margin:0}#available-widgets .widget:nth-child(odd){clear:both}#available-widgets .widget .widget-description{display:block;padding:10px 15px;font-size:12px}#available-widgets #widget-list{position:relative}#widgets-left .inactive-sidebar{clear:both;width:100%;background:0 0;padding:0;margin:0 0 20px;border:0;-webkit-box-shadow:none;box-shadow:none}#widgets-left .inactive-sidebar.first{margin-top:40px}div#widgets-left .inactive-sidebar .widget.expanded{right:auto}.widget-title-action{float:left;position:relative}div#widgets-left .inactive-sidebar .widgets-sortables{min-height:42px;padding:0;background:0 0;margin:0;position:relative}div#widgets-right:after{content:".";display:block;height:0;clear:both;visibility:hidden}div#widgets-right .sidebars-column-1,div#widgets-right .sidebars-column-2{max-width:450px}div#widgets-right .widgets-holder-wrap{margin:10px 0 0}div#widgets-right .sidebar-description{min-height:20px;margin-top:-5px}div#widgets-right .sidebar-name h3{padding:15px 7px}div#widgets-right .sidebar-name .sidebar-name-arrow:before{left:0;top:4px}div#widgets-right .widget-top{padding:0}div#widgets-right .widgets-sortables{padding:0 8px;margin-bottom:9px;position:relative;min-height:123px}div#widgets-right .closed .widgets-sortables{min-height:0;margin-bottom:0}.sidebar-name .spinner{margin:-5px 5px;float:none}#widgets-right .widgets-holder-wrap.widget-hover{border-color:#777;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.3);box-shadow:0 1px 2px rgba(0,0,0,.3)}.widgets_access #widgets-left .widget .widget-top{cursor:auto}.widgets_access #wpwrap .widget-control-edit,.widgets_access #wpwrap .widgets-holder-wrap.closed .sidebar-description,.widgets_access #wpwrap .widgets-holder-wrap.closed .widget{display:block}.widgets_access #widgets-left .widget .widget-top:hover,.widgets_access #widgets-right .widget .widget-top:hover{border-color:#ddd}#available-widgets .widget-control-edit .edit,#widgets-left .inactive-sidebar .widget-control-edit .add,#widgets-right .widget-control-edit .add{display:none}.widget-control-edit{display:block;color:#666;background:#EEE;padding:0 15px;line-height:43px;border-right:1px solid #DDD}#widgets-left .widget-control-edit:hover,#widgets-right .widget-control-edit:hover{color:#fff;background:#444;border-right:0;outline:1px solid #444}.widgets-holder-wrap .sidebar-description,.widgets-holder-wrap .sidebar-name{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.editwidget{margin:0 auto}.editwidget .widget-inside{display:block;padding:0 15px}.editwidget .widget-control-actions{margin-top:20px}.js .closed br.clear,.js .widgets-holder-wrap.closed .sidebar-description,.js .widgets-holder-wrap.closed .widget,.widget-description,.widget-inside{display:none}.widget-inside{background:#fff}#removing-widget{display:none;font-weight:400;padding-right:15px;font-size:12px;line-height:1;color:#000}.js #removing-widget{color:#2ea2cc}#access-off,.no-js .widget-holder .description,.widget-control-noform,.widgets_access #access-on,.widgets_access .sidebar-name-arrow,.widgets_access .widget-action,.widgets_access .widget-holder .description{display:none}.widgets_access #widget-list,.widgets_access .widget-holder{padding-top:10px}.widgets_access #access-off{display:inline}.widgets_access .sidebar-name,.widgets_access .widget .widget-top{cursor:default}.widget-liquid-left #widgets-left.chooser #available-widgets .widget,.widget-liquid-left #widgets-left.chooser .inactive-sidebar{-webkit-transition:opacity .1s linear;transition:opacity .1s linear;opacity:.2;pointer-events:none}.widget-liquid-left #widgets-left.chooser #available-widgets .widget-in-question{opacity:1;pointer-events:auto}#available-widgets .widget-top:hover,#widgets-left .widget-in-question .widget-top,#widgets-left .widget-top:hover,.widgets-chooser ul,div#widgets-right .widget-top:hover{border-color:#999;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.1);box-shadow:0 1px 2px rgba(0,0,0,.1)}.widgets-chooser ul.widgets-chooser-sidebars{margin:0;list-style-type:none;max-height:300px;overflow:auto}.widgets-chooser{display:none}.widgets-chooser ul{border:1px solid #ccc}.widgets-chooser li{padding:10px 35px 10px 15px;border-bottom:1px solid #ccc;background:#fff;margin:0;cursor:pointer;outline:0;position:relative;-webkit-transition:background .2s ease-in-out;transition:background .2s ease-in-out}.widgets-chooser li:focus,.widgets-chooser li:hover{background:rgba(255,255,255,.7)}.widgets-chooser li:focus:before{content:'\f147';display:block;-webkit-font-smoothing:antialiased;font:400 26px/1 dashicons;color:#999;position:absolute;top:7px;right:5px}.widgets-chooser li:last-child{border:0}.widgets-chooser li.widgets-chooser-selected{background:#2ea2cc;color:#fff}.widgets-chooser li.widgets-chooser-selected:before,.widgets-chooser li.widgets-chooser-selected:focus:before{content:'\f147';display:block;-webkit-font-smoothing:antialiased;font:400 26px/1 dashicons;color:#fff;position:absolute;top:7px;right:5px}.widgets-chooser .widgets-chooser-actions{padding:10px 0 12px;text-align:center}.widgets-chooser button{margin-left:5px}#available-widgets .widget .widget-top{cursor:pointer}@media screen and (max-width:480px){div.widget-liquid-left{width:100%;float:none;border-left:0;padding-left:0}#widgets-left #available-widgets .widget-top,#widgets-left .inactive-sidebar .widgets-sortables,#widgets-left .sidebar-name{margin-left:0}div.widget-liquid-right{width:100%;float:none}div.widget{margin:0 auto 10px!important;max-width:480px}}@media screen and (max-width:320px){div.widget{max-width:320px}}@media only screen and (min-width:1250px){#widgets-left #available-widgets .widget{width:49%;float:right}.widget.ui-draggable-dragging{min-width:49%}#widgets-left #available-widgets .widget:nth-child(even){float:left}#widgets-right .sidebars-column-1,#widgets-right .sidebars-column-2{float:right;width:49%}#widgets-right .sidebars-column-1{margin-left:2%}#widgets-right.single-sidebar .sidebars-column-1,#widgets-right.single-sidebar .sidebars-column-2{float:none;width:100%;margin:0}}body.rtl,body.rtl .press-this a.wp-switch-editor{font-family:Tahoma,Arial,sans-serif}body.locale-he-il,body.locale-he-il .press-this a.wp-switch-editor{font-family:Arial,sans-serif}.locale-he-il em{font-style:normal;font-weight:700}.locale-zh-cn #local-time,.locale-zh-cn #utc-time,.locale-zh-cn .form-wrap p,.locale-zh-cn .howto,.locale-zh-cn .inline-edit-row fieldset span.checkbox-title,.locale-zh-cn .inline-edit-row fieldset span.title,.locale-zh-cn .js .input-with-default-title,.locale-zh-cn .link-to-original,.locale-zh-cn .tablenav .displaying-num,.locale-zh-cn p.description,.locale-zh-cn p.help,.locale-zh-cn p.install-help,.locale-zh-cn span.description{font-style:normal}.locale-zh-cn .hdnle a{font-size:12px}.locale-zh-cn form.upgrade .hint{font-style:normal;font-size:100%}.locale-zh-cn #wp-fullscreen-tagline{font-family:KaiTi,"楷体",sans-serif}.locale-zh-cn #wp-fullscreen-modes a{font-size:12px}.locale-zh-cn #sort-buttons{font-size:1em!important}.locale-de-de .inline-edit-row fieldset label span.title{width:7em}.locale-de-de .inline-edit-row fieldset label span.input-text-wrap{margin-right:7em}.locale-de-de #customize-header-actions .button{padding:0 5px 1px}.locale-de-de #customize-header-actions .spinner{margin:16px 3px 0}.locale-ru-ru .inline-edit-row fieldset label span.title{width:8em}.locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap{margin-right:8em}.locale-ru-ru.post-php .tagsdiv .newtag{width:165px}.locale-ru-ru.press-this .posting{margin-left:277px}.locale-ru-ru .press-this-sidebar{width:265px}.locale-ru-ru #customize-header-actions .button{padding:0 5px 1px}.locale-ru-ru #customize-header-actions .spinner{margin:16px 3px 0}.locale-lt-lt .inline-edit-row fieldset label span.title{width:8em}.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap{margin-right:8em}
\ No newline at end of file
diff --git a/sources/wp-admin/css/wp-admin.css b/sources/wp-admin/css/wp-admin.css
index 2f5b5c7..b29af79 100644
--- a/sources/wp-admin/css/wp-admin.css
+++ b/sources/wp-admin/css/wp-admin.css
@@ -1,9424 +1,14 @@
-/*------------------------------------------------------------------------------
-
-
-Hello, this is the main WordPress admin CSS file.
-All the important stuff is in here.
-
-
-TABLE OF CONTENTS:
-------------------
- 1.0 - Text Elements
- 2.0 - Forms
- 3.0 - Actions
- 4.0 - Notifications
- 5.0 - TinyMCE
- 6.0 - Admin Header
- 6.1 - Screen Options Tabs
- 6.2 - Help Menu
- 7.0 - Main Navigation
- 8.0 - Layout Blocks
- 9.0 - Dashboard
-10.0 - List Posts
- 10.1 - Inline Editing
-11.0 - Write/Edit Post Screen
- 11.1 - Custom Fields
- 11.2 - Post Revisions
- 11.3 - Featured Images
- 11.4 - Post Format Selection
-12.0 - Categories
-13.0 - Tags
-14.0 - Media Screen
- 14.1 - Media Library
- 14.2 - Image Editor
-15.0 - Comments Screen
-16.0 - Themes
- 16.1 - Custom Header
- 16.2 - Custom Background
- 16.3 - Tabbed Admin Screen Interface
-17.0 - Plugins
-18.0 - Users
-19.0 - Tools
-20.0 - Settings
-21.0 - Admin Footer
-22.0 - About Pages
-23.0 - Full Overlay w/ Sidebar
-24.0 - Customize Loader
-25.0 - Misc
-
-------------------------------------------------------------------------*/
-
-/* 2 column liquid layout */
-#wpwrap {
- height: auto;
- min-height: 100%;
- width: 100%;
- position: relative;
-}
-
-#wpcontent {
- height: 100%;
-}
-
-#wpcontent,
-#wpfooter {
- margin-left: 165px;
-}
-
-.folded #wpcontent,
-.folded #wpfooter {
- margin-left: 52px;
-}
-
-#wpbody-content {
- padding-bottom: 65px;
- float: left;
- width: 100%;
-}
-
-#adminmenuback,
-#adminmenuwrap,
-#adminmenu,
-#adminmenu .wp-submenu {
- width: 145px;
-}
-
-#adminmenuback {
- position: absolute;
- top: 0;
- bottom: 0;
- z-index: -1;
-}
-
-#adminmenu {
- clear: left;
- margin: 0;
- padding: 0;
- list-style: none;
-}
-
-.folded #adminmenuback,
-.folded #adminmenuwrap,
-.folded #adminmenu,
-.folded #adminmenu li.menu-top {
- width: 32px;
-}
-
-/* inner 2 column liquid layout */
-
-.inner-sidebar {
- float: right;
- clear: right;
- display: none;
- width: 281px;
- position: relative;
-}
-
-.columns-2 .inner-sidebar {
- margin-right: auto;
- width: 286px;
- display: block;
-}
-
-.inner-sidebar #side-sortables,
-.columns-2 .inner-sidebar #side-sortables {
- min-height: 300px;
- width: 280px;
- padding: 0;
-}
-
-.has-right-sidebar .inner-sidebar {
- display: block;
-}
-
-.has-right-sidebar #post-body {
- float: left;
- clear: left;
- width: 100%;
- margin-right: -2000px;
-}
-
-.has-right-sidebar #post-body-content {
- margin-right: 300px;
- float: none;
- width: auto;
-}
-
-/* 2 columns main area */
-
-#col-container,
-#col-left,
-#col-right {
- overflow: hidden;
- padding: 0;
- margin: 0;
-}
-
-#col-left {
- width: 35%;
-}
-
-#col-right {
- float: right;
- clear: right;
- width: 65%;
-}
-
-.col-wrap {
- padding: 0 7px;
-}
-
-/* utility classes */
-.alignleft {
- float: left;
-}
-
-.alignright {
- float: right;
-}
-
-.textleft {
- text-align: left;
-}
-
-.textright {
- text-align: right;
-}
-
-.clear {
- clear: both;
-}
-
-/* Hide visually but not from screen readers */
-.screen-reader-text,
-.screen-reader-text span,
-.ui-helper-hidden-accessible {
- position: absolute;
- left: -1000em;
- top: -1000em;
- height: 1px;
- width: 1px;
- overflow: hidden;
-}
-
-.screen-reader-shortcut {
- position: absolute;
- top: -1000em;
-}
-
-.screen-reader-shortcut:focus {
- left: 6px;
- top: -21px;
- height: auto;
- width: auto;
- display: block;
- font-size: 14px;
- font-weight: bold;
- padding: 15px 23px 14px;
- background: #f1f1f1;
- color: #21759b;
- border-radius: 3px;
- z-index: 100000;
- line-height: normal;
- -webkit-box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
- box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
- text-decoration: none;
-}
-
-.hidden,
-.js .closed .inside,
-.js .hide-if-js,
-.no-js .hide-if-no-js,
-.js.wp-core-ui .hide-if-js,
-.js .wp-core-ui .hide-if-js,
-.no-js.wp-core-ui .hide-if-no-js,
-.no-js .wp-core-ui .hide-if-no-js {
- display: none;
-}
-
-/* include margin and padding in the width calculation of input and textarea */
-input[type="text"],
-input[type="password"],
-input[type="number"],
-input[type="search"],
-input[type="email"],
-input[type="url"],
-textarea {
- -moz-box-sizing: border-box;
- -webkit-box-sizing: border-box;
- -ms-box-sizing: border-box; /* ie8 only */
- box-sizing: border-box;
-}
-
-input[type="checkbox"],
-input[type="radio"] {
- vertical-align: text-top;
- padding: 0;
- margin: 1px 0 0;
-}
-
-input[type="search"] {
- -webkit-appearance: textfield;
-}
-
-input[type="search"]::-webkit-search-decoration {
- display: none;
-}
-
-/* general */
-html,
-body {
- height: 100%;
- margin: 0;
- padding: 0;
-}
-
-body {
- font-family: sans-serif;
- font-size: 12px;
- line-height: 1.4em;
- min-width: 600px;
-}
-
-body.iframe {
- min-width: 0;
- padding-top: 1px;
-}
-
-body.login {
- background: #fbfbfb;
- min-width: 0;
-}
-
-iframe,
-img {
- border: 0;
-}
-
-td,
-textarea,
-input,
-select,
-button {
- font-family: inherit;
- font-size: inherit;
- font-weight: inherit;
-}
-
-td,
-textarea {
- line-height: inherit;
-}
-
-input,
-select {
- line-height: 15px;
-}
-
-a,
-input[type="text"],
-input[type="password"],
-input[type="number"],
-input[type="search"],
-input[type="email"],
-input[type="url"],
-select,
-textarea,
-div {
- outline: 0;
-}
-
-a:focus,
-a:active {
- outline: thin dotted;
-}
-
-#adminmenu a:focus,
-#adminmenu a:active,
-.screen-reader-text:focus {
- outline: none;
-}
-
-blockquote,
-q {
- quotes: none;
-}
-
-blockquote:before,
-blockquote:after,
-q:before,
-q:after {
- content: '';
- content: none;
-}
-
-p {
- margin: 1em 0;
-}
-
-blockquote {
- margin: 1em;
-}
-
-label {
- cursor: pointer;
-}
-
-li,
-dd {
- margin-bottom: 6px;
-}
-
-textarea,
-input,
-select {
- margin: 1px;
- padding: 3px;
-}
-
-h1,
-h2,
-h3,
-h4,
-h5,
-h6 {
- display: block;
- font-weight: bold;
-}
-
-h1 {
- font-size: 2em;
- margin: .67em 0;
-}
-
-h2 {
- font-size: 1.5em;
- margin: .83em 0;
-}
-
-h3 {
- font-size: 1.17em;
- margin: 1em 0;
-}
-
-h4 {
- font-size: 1em;
- margin: 1.33em 0;
-}
-
-h5 {
- font-size: 0.83em;
- margin: 1.67em 0;
-}
-
-h6 {
- font-size: 0.67em;
- margin: 2.33em 0;
-}
-
-ul,
-ol {
- padding: 0;
-}
-
-ul {
- list-style: none;
-}
-
-ol {
- list-style-type: decimal;
- margin-left: 2em;
-}
-
-ul.ul-disc {
- list-style: disc outside;
-}
-
-ul.ul-square {
- list-style: square outside;
-}
-
-ol.ol-decimal {
- list-style: decimal outside;
-}
-
-ul.ul-disc,
-ul.ul-square,
-ol.ol-decimal {
- margin-left: 1.8em;
-}
-
-ul.ul-disc > li,
-ul.ul-square > li,
-ol.ol-decimal > li {
- margin: 0 0 0.5em;
-}
-
-.code,
-code {
- font-family: Consolas, Monaco, monospace;
-}
-
-kbd,
-code {
- padding: 1px 3px;
- margin: 0 1px;
- font-size: 11px;
-}
-
-.subsubsub {
- list-style: none;
- margin: 8px 0 5px;
- padding: 0;
- font-size: 12px;
- float: left;
-}
-
-.subsubsub a {
- line-height: 2;
- padding: .2em;
- text-decoration: none;
-}
-
-.subsubsub a .count,
-.subsubsub a.current .count {
- color: #999;
- font-weight: normal;
-}
-
-.subsubsub a.current {
- font-weight: bold;
- border: none;
-}
-
-.subsubsub li {
- display: inline-block;
- margin: 0;
- padding: 0;
- white-space: nowrap;
-}
-
-.widefat,
-div.updated,
-div.error,
-.wrap .add-new-h2,
-textarea,
-input[type="text"],
-input[type="password"],
-input[type="file"],
-input[type="email"],
-input[type="number"],
-input[type="search"],
-input[type="tel"],
-input[type="url"],
-select,
-.tablenav .tablenav-pages a,
-.tablenav-pages span.current,
-#titlediv #title,
-.postbox,
-#postcustomstuff table,
-#postcustomstuff input,
-#postcustomstuff textarea,
-.imgedit-menu div,
-.plugin-update-tr .update-message,
-#poststuff .inside .the-tagcloud,
-.login form,
-#login_error,
-.login .message,
-#menu-management .menu-edit,
-.nav-menus-php .list-container,
-.menu-item-handle,
-.link-to-original,
-.nav-menus-php .major-publishing-actions .form-invalid,
-.press-this #message,
-#TB_window,
-.tbtitle,
-.highlight,
-.feature-filter,
-#widget-list .widget-top,
-.editwidget .widget-inside {
- -webkit-border-radius: 3px;
- border-radius: 3px;
- border-width: 1px;
- border-style: solid;
-}
-
-/* .widefat - main style for tables */
-.widefat {
- border-spacing: 0;
- width: 100%;
- clear: both;
- margin: 0;
-}
-
-.widefat * {
- word-wrap: break-word;
-}
-
-.widefat a {
- text-decoration: none;
-}
-
-.widefat thead th:first-of-type {
- -webkit-border-top-left-radius: 3px;
- border-top-left-radius: 3px;
-}
-.widefat thead th:last-of-type {
- -webkit-border-top-right-radius: 3px;
- border-top-right-radius: 3px;
-}
-.widefat tfoot th:first-of-type {
- -webkit-border-bottom-left-radius: 3px;
- border-bottom-left-radius: 3px;
-}
-.widefat tfoot th:last-of-type {
- -webkit-border-bottom-right-radius: 3px;
- border-bottom-right-radius: 3px;
-}
-
-.widefat td,
-.widefat th {
- border-width: 1px 0;
- border-style: solid;
-}
-.widefat tfoot th {
- border-bottom: none;
-}
-
-.widefat .no-items td {
- border-bottom-width: 0;
-}
-
-.widefat td {
- font-size: 12px;
- padding: 4px 7px 2px;
- vertical-align: top;
-}
-
-.widefat td p,
-.widefat td ol,
-.widefat td ul {
- font-size: 12px;
-}
-
-.widefat th {
- padding: 7px 7px 8px;
- text-align: left;
- line-height: 1.3em;
- font-size: 14px;
-}
-
-.widefat th input {
- margin: 0 0 0 8px;
- padding: 0;
- vertical-align: text-top;
-}
-
-.widefat .check-column {
- width: 2.2em;
- padding: 6px 0 25px;
- vertical-align: top;
-}
-
-.widefat tbody th.check-column {
- padding: 9px 0 22px;
-}
-
-.widefat.media .check-column {
- padding-top: 8px;
-}
-
-.widefat thead .check-column,
-.widefat tfoot .check-column {
- padding: 10px 0 0;
-}
-
-.no-js .widefat thead .check-column input,
-.no-js .widefat tfoot .check-column input {
- display: none;
-}
-
-.widefat .num,
-.column-comments,
-.column-links,
-.column-posts {
- text-align: center;
-}
-
-.widefat th#comments {
- vertical-align: middle;
-}
-
-.wrap {
- margin: 4px 15px 0 0;
-}
-
-div.updated,
-div.error {
- padding: 0 0.6em;
- margin: 5px 15px 2px;
-}
-
-div.updated p,
-div.error p {
- margin: 0.5em 0;
- padding: 2px;
-}
-
-.wrap div.updated,
-.wrap div.error,
-.media-upload-form div.error {
- margin: 5px 0 15px;
-}
-
-.wrap h2,
-.subtitle {
- font-weight: normal;
- margin: 0;
- text-shadow: #fff 0 1px 0;
-}
-
-.wrap h2 {
- font-size: 23px;
- padding: 9px 15px 4px 0;
- line-height: 29px;
-}
-
-.subtitle {
- font-size: 14px;
- padding-left: 25px;
-}
-
-.wrap .add-new-h2 {
- font-family: sans-serif;
- margin-left: 4px;
- padding: 3px 8px;
- position: relative;
- top: -3px;
- text-decoration: none;
- font-size: 12px;
- border: 0 none;
-}
-
-.wrap h2.long-header {
- padding-right: 0;
-}
-
-html,
-.wp-dialog {
- background-color: #fff;
-}
-
-textarea,
-input[type="text"],
-input[type="password"],
-input[type="file"],
-input[type="email"],
-input[type="number"],
-input[type="search"],
-input[type="tel"],
-input[type="url"],
-select {
- background-color: #fff;
- color: #333;
-}
-
-select {
- color: #000;
-}
-
-select[disabled] {
- color: #7f7f7f;
-}
-
-select:focus {
- border-color: #aaa;
-}
-
-textarea:focus,
-input[type="text"]:focus,
-input[type="password"]:focus,
-input[type="file"]:focus,
-input[type="email"]:focus,
-input[type="number"]:focus,
-input[type="search"]:focus,
-input[type="tel"]:focus,
-input[type="url"]:focus,
-select:focus {
- -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
- box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
-}
-
-input[readonly] {
- background-color: #eee;
-}
-
-:-moz-placeholder,
-.wp-core-ui :-moz-placeholder {
- color: #a9a9a9;
-}
-
-/*------------------------------------------------------------------------------
- 1.0 - Text Styles
-------------------------------------------------------------------------------*/
-
-div.sidebar-name h3,
-#menu-management .nav-tab,
-#dashboard_plugins h5,
-a.rsswidget,
-#dashboard_right_now td.b,
-#dashboard-widgets h4,
-.tool-box .title,
-#poststuff h3,
-.metabox-holder h3,
-.pressthis a,
-#your-profile legend,
-.inline-edit-row fieldset span.title,
-.inline-edit-row fieldset span.checkbox-title,
-.tablenav .displaying-num,
-.widefat th,
-.quicktags,
-.search {
- font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
-}
-
-h2 .nav-tab,
-.wrap h2,
-.subtitle,
-.login form .input {
- font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif;
-}
-
-.quicktags,
-.search {
- font-size: 12px;
-}
-
-.icon32 {
- float: left;
- height: 34px;
- margin: 7px 8px 0 0;
- width: 36px;
-}
-
-.icon16 {
- height: 18px;
- width: 18px;
- padding: 6px 6px;
- margin: -6px 0 0 -8px;
- float: left;
-}
-
-.key-labels label {
- line-height: 24px;
-}
-
-.pre {
- /* https://developer.mozilla.org/en-US/docs/CSS/white-space */
- white-space: pre-wrap; /* css-3 */
- word-wrap: break-word; /* IE 5.5 - 7 */
-}
-
-.howto {
- font-style: italic;
- display: block;
- font-family: sans-serif;
-}
-
-p.install-help {
- margin: 8px 0;
- font-style: italic;
-}
-
-.no-break {
- white-space: nowrap;
-}
-
-/*------------------------------------------------------------------------------
- 2.0 - Forms
-------------------------------------------------------------------------------*/
-
-
-.wp-admin select {
- padding: 2px;
- height: 2em;
-}
-
-.wp-admin select[multiple] {
- height: auto;
-}
-
-.submit {
- padding: 1.5em 0;
- margin: 5px 0;
- -webkit-border-bottom-left-radius: 3px;
- -webkit-border-bottom-right-radius: 3px;
- border-bottom-left-radius: 3px;
- border-bottom-right-radius: 3px;
-}
-
-form p.submit a.cancel:hover {
- text-decoration: none;
-}
-
-#minor-publishing-actions input,
-#major-publishing-actions input,
-#minor-publishing-actions .preview {
- text-align: center;
-}
-
-textarea.all-options,
-input.all-options {
- width: 250px;
-}
-
-input.large-text,
-textarea.large-text {
- width: 99%;
-}
-
-input.regular-text,
-#adduser .form-field input {
- width: 25em;
-}
-
-input.small-text {
- width: 50px;
-}
-
-input[type="number"].small-text {
- width: 60px;
-}
-
-#doaction,
-#doaction2,
-#post-query-submit {
- margin: 1px 8px 0 0;
-}
-
-.tablenav #changeit,
-.tablenav #delete_all,
-.tablenav #clear-recent-list {
- margin-top: 1px;
-}
-
-.tablenav .actions select {
- float: left;
- margin-right: 6px;
- max-width: 200px;
-}
-
-.ie8 .tablenav .actions select {
- width: 155px;
-}
-
-.ie8 .tablenav .actions select#cat {
- width: 200px;
-}
-
-#timezone_string option {
- margin-left: 1em;
-}
-
-label,
-#your-profile label + a {
- vertical-align: middle;
-}
-
-#misc-publishing-actions label {
- vertical-align: baseline;
-}
-
-#pass-strength-result {
- border-style: solid;
- border-width: 1px;
- float: left;
- margin: 13px 5px 5px 1px;
- padding: 3px 5px;
- text-align: center;
- width: 200px;
- display: none;
-}
-.indicator-hint {
- padding-top: 8px;
-}
-
-p.search-box {
- float: right;
- margin: 0;
-}
-
-.search-box input[name="s"],
-#search-plugins input[name="s"],
-.tagsdiv .newtag {
- float: left;
- height: 2em;
- margin: 0 4px 0 0;
-}
-
-input[type="text"].ui-autocomplete-loading {
- background: transparent url('../images/loading.gif') no-repeat right center;
- visibility: visible;
-}
-
-ul#add-to-blog-users {
- margin: 0 0 0 14px;
-}
-
-.ui-autocomplete-input.open {
- border-bottom-right-radius: 0;
- border-bottom-left-radius: 0;
-}
-
-.ui-autocomplete {
- padding: 0;
- margin: 0;
- list-style: none;
- position: absolute;
- z-index: 10000;
- border-bottom-right-radius: 3px;
- border-bottom-left-radius: 3px;
- border-width: 1px;
- border-style: solid;
-}
-
-.ui-autocomplete li {
- margin-bottom: 0;
- white-space: nowrap;
- text-align: left;
-}
-
-.ui-autocomplete li a {
- display: block;
- height: 100%;
- padding: 4px 10px;
-}
-
-.ui-autocomplete li a.ui-state-focus {
- cursor: pointer;
-}
-
-/*------------------------------------------------------------------------------
- 3.0 - Actions
-------------------------------------------------------------------------------*/
-
-#major-publishing-actions {
- padding: 10px 10px 8px;
- clear: both;
- border-top: 1px solid #f5f5f5;
- margin-top: -2px;
-}
-
-#delete-action {
- line-height: 25px;
- vertical-align: middle;
- text-align: left;
- float: left;
-}
-
-#publishing-action {
- text-align: right;
- float: right;
- line-height: 23px;
-}
-
-#publishing-action .spinner {
- float: left;
-}
-
-#misc-publishing-actions {
- padding: 6px 0 0;
-}
-
-.misc-pub-section {
- padding: 6px 10px 8px;
- border-width: 1px 0;
- border-style: solid;
-}
-
-.misc-pub-section:first-child {
- border-top-width: 0;
-}
-
-.misc-pub-section-last {
- border-bottom-width: 0;
-}
-
-#minor-publishing-actions {
- padding: 10px 10px 2px 8px;
- text-align: right;
-}
-
-#minor-publishing {
- border-bottom-width: 1px;
- border-bottom-style: solid;
- -webkit-box-shadow: 0 1px 0 #fff;
- box-shadow: 0 1px 0 #fff;
-}
-
-#save-post {
- float: left;
-}
-
-.preview {
- float: right;
-}
-
-#sticky-span {
- margin-left: 18px;
-}
-
-.side-info {
- margin: 0;
- padding: 4px;
- font-size: 11px;
-}
-
-.side-info h5 {
- padding-bottom: 7px;
- font-size: 14px;
- margin: 12px 2px 5px;
- border-bottom-width: 1px;
- border-bottom-style: solid;
-}
-
-.side-info ul {
- margin: 0;
- padding-left: 18px;
- list-style: square;
-}
-
-.approve,
-.unapproved .unapprove {
- display: none;
-}
-
-.unapproved .approve,
-.spam .approve,
-.trash .approve {
- display: inline;
-}
-
-td.action-links,
-th.action-links {
- text-align: right;
-}
-
-
-/*------------------------------------------------------------------------------
- 4.0 - Notifications
-------------------------------------------------------------------------------*/
-
-#update-nag,
-.update-nag {
- line-height: 19px;
- padding: 5px 0;
- font-size: 12px;
- text-align: center;
- margin: -1px 15px 0 5px;
- border-width: 1px;
- border-style: solid;
- -webkit-border-bottom-right-radius: 3px;
- -webkit-border-bottom-left-radius: 3px;
- border-bottom-right-radius: 3px;
- border-bottom-left-radius: 3px;
-}
-
-.plugins .plugin-update {
- padding: 0;
-}
-
-.plugin-update .update-message {
- margin: 0 10px 8px 31px;
- font-weight: bold;
-}
-
-ul#dismissed-updates {
- display: none;
-}
-
-form.upgrade {
- margin-top: 8px;
-}
-
-form.upgrade .hint {
- font-style: italic;
- font-size: 85%;
- margin: -0.5em 0 2em 0;
-}
-
-.update-php .spinner {
- float: none;
- margin: -4px 0;
-}
-
-#ajax-loading,
-.ajax-loading,
-.ajax-feedback,
-.imgedit-wait-spin,
-.list-ajax-loading { /* deprecated */
- visibility: hidden;
-}
-
-#ajax-response.alignleft {
- margin-left: 2em;
-}
-
-
-/*------------------------------------------------------------------------------
- 6.0 - Admin Header
-------------------------------------------------------------------------------*/
-#adminmenu a,
-#sidemenu a,
-#taglist a,
-#catlist a {
- text-decoration: none;
-}
-
-/*------------------------------------------------------------------------------
- 6.1 - Screen Options Tabs
-------------------------------------------------------------------------------*/
-
-#screen-options-wrap,
-#contextual-help-wrap {
- margin: 0;
- padding: 8px 20px 12px;
- position: relative;
-}
-
-#contextual-help-wrap {
- overflow: auto;
-}
-
-#screen-meta .screen-reader-text {
- visibility: hidden;
-}
-
-#screen-meta-links {
- margin: 0 24px 0 0;
-}
-
-#screen-meta-links a:focus {
- -webkit-box-shadow: 1px 1px 1px rgba(0,0,0,0.4);
- box-shadow: 1px 1px 1px rgba(0,0,0,0.4);
- outline: none;
-}
-
-/* screen options and help tabs revert */
-#screen-meta {
- display: none;
- position: relative;
- margin: 0 15px 0 5px;
- border-width: 0 1px 1px;
- border-style: none solid solid;
-}
-
-#screen-options-link-wrap,
-#contextual-help-link-wrap {
- float: right;
- height: 23px;
- padding: 0;
- margin: 0 0 0 6px;
- font-family: sans-serif;
-}
-
-#screen-options-link-wrap,
-#contextual-help-link-wrap,
-#screen-meta {
- -webkit-border-bottom-left-radius: 3px;
- -webkit-border-bottom-right-radius: 3px;
- border-bottom-left-radius: 3px;
- border-bottom-right-radius: 3px;
-}
-
-#screen-meta-links .screen-meta-toggle {
- position: relative;
- top: -1px;
-}
-
-#screen-meta-links a.show-settings {
- text-decoration: none;
- z-index: 1;
- padding: 1px 16px 0 6px;
- height: 22px;
- line-height: 22px;
- font-size: 12px;
- display: block;
- text-shadow: rgba(255,255,255,0.7) 0 1px 0;
-}
-
-#screen-meta-links a.show-settings:hover {
- text-decoration: none;
-}
-/* end screen options and help tabs */
-
-.toggle-arrow {
- background-repeat: no-repeat;
- background-position: top left;
- background-color: transparent;
- height: 22px;
- line-height: 22px;
- display: block;
-}
-
-.toggle-arrow-active {
- background-position: bottom left;
-}
-
-#screen-options-wrap h5,
-#contextual-help-wrap h5 {
- margin: 8px 0;
- font-size: 13px;
-}
-
-.metabox-prefs label {
- display: inline-block;
- padding-right: 15px;
- white-space: nowrap;
- line-height: 30px;
-}
-
-.metabox-prefs label input {
- margin: 0 5px 0 2px;
-}
-
-.metabox-prefs .columns-prefs label input {
- margin: 0 2px;
-}
-
-.metabox-prefs label a {
- display: none;
-}
-
-/*------------------------------------------------------------------------------
- 6.2 - Help Menu
-------------------------------------------------------------------------------*/
-
-#contextual-help-wrap {
- padding: 0;
- margin-left: -4px;
-}
-
-#contextual-help-columns {
- position: relative;
-}
-
-#contextual-help-back {
- position: absolute;
- top: 0;
- bottom: 0;
- left: 150px;
- right: 170px;
- border-width: 0 1px;
- border-style: solid;
-}
-
-#contextual-help-wrap.no-sidebar #contextual-help-back {
- right: 0;
-
- border-right-width: 0;
- -webkit-border-bottom-right-radius: 2px;
- border-bottom-right-radius: 2px;
-}
-
-.contextual-help-tabs {
- float: left;
- width: 150px;
- margin: 0;
-}
-
-.contextual-help-tabs ul {
- margin: 1em 0;
-}
-
-.contextual-help-tabs li {
- margin-bottom: 0;
- list-style-type: none;
- border-style: solid;
- border-width: 1px 0;
- border-color: transparent;
-}
-
-.contextual-help-tabs a {
- display: block;
- padding: 5px 5px 5px 12px;
- line-height: 18px;
- text-decoration: none;
-}
-
-.contextual-help-tabs .active {
- padding: 0;
- margin: 0 -1px 0 0;
- border-width: 1px 0 1px 1px;
- border-style: solid;
-}
-
-.contextual-help-tabs-wrap {
- padding: 0 20px;
- overflow: auto;
-}
-
-.help-tab-content {
- display: none;
- margin: 0 22px 12px 0;
- line-height: 1.6em;
-}
-
-.help-tab-content.active {
- display: block;
-}
-
-.help-tab-content ul li {
- list-style-type: disc;
- margin-left: 18px;
-}
-
-.contextual-help-sidebar {
- width: 150px;
- float: right;
- padding: 0 8px 0 12px;
- overflow: auto;
-}
-
-
-/*------------------------------------------------------------------------------
- 7.0 - Main Navigation (Left Menu)
-------------------------------------------------------------------------------*/
-
-#adminmenuback,
-#adminmenuwrap {
- border-width: 0 1px 0 0;
- border-style: solid;
-}
-
-#adminmenuwrap {
- position: relative;
- float: left;
-}
-
-#adminmenushadow {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- width: 6px;
- z-index: 20;
-}
-
-/* side admin menu */
-#adminmenu * {
- -webkit-user-select: none;
- -moz-user-select: none;
- user-select: none;
-}
-
-#adminmenu li {
- margin: 0;
- padding: 0;
- cursor: pointer;
-}
-
-#adminmenu a {
- display: block;
- line-height: 18px;
- padding: 2px 5px;
-}
-
-#adminmenu li.menu-top {
- min-height: 28px;
- position: relative;
-}
-
-#adminmenu .wp-submenu {
- list-style: none;
- padding: 4px 0;
- margin: 0;
- position: absolute;
- top: -1000em;
- left: 146px;
- z-index: 1000;
- overflow: visible;
- border-width: 1px;
- border-style: solid;
- -webkit-border-bottom-right-radius: 3px;
- -webkit-border-top-right-radius: 3px;
- border-bottom-right-radius: 3px;
- border-top-right-radius: 3px;
-}
-
-.js #adminmenu .sub-open,
-.js #adminmenu .opensub .wp-submenu,
-#adminmenu a.menu-top:focus + .wp-submenu,
-.no-js li.wp-has-submenu:hover .wp-submenu {
- top: -1px;
-}
-
-#adminmenu .wp-has-current-submenu .wp-submenu,
-.no-js li.wp-has-current-submenu:hover .wp-submenu,
-#adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
-#adminmenu .wp-has-current-submenu .wp-submenu.sub-open,
-#adminmenu .wp-has-current-submenu.opensub .wp-submenu {
- position: relative;
- z-index: 3;
- top: auto;
- left: auto;
- right: auto;
- bottom: auto;
- border: 0 none;
-
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-.folded #adminmenu .wp-submenu.sub-open,
-.folded #adminmenu .opensub .wp-submenu,
-.folded #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,
-.folded #adminmenu .wp-has-current-submenu.opensub .wp-submenu,
-.folded #adminmenu a.menu-top:focus + .wp-submenu,
-.folded #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu,
-.no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu {
- top: -1px;
- left: 32px;
-}
-
-.folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
-.folded #adminmenu .wp-has-current-submenu .wp-submenu {
- border-width: 1px;
- border-style: solid;
- position: absolute;
- top: -1000em;
-}
-
-#adminmenu .wp-submenu a {
- font-size: 12px;
- line-height: 18px;
- margin: 0;
- padding-left: 12px;
-}
-
-#adminmenu .wp-not-current-submenu li > a {
- padding-left: 16px;
-}
-
-#adminmenu .wp-has-current-submenu ul > li > a,
-.folded #adminmenu li.menu-top .wp-submenu > li > a {
- padding-left: 12px;
-}
-
-#adminmenu a.menu-top,
-#adminmenu .wp-submenu-head {
- font-size: 13px;
- font-weight: bold;
- line-height: 18px;
- padding: 0;
-}
-
-#adminmenu .wp-submenu-head,
-.folded #adminmenu .wp-menu-name {
- display: none;
-}
-
-.folded #adminmenu .wp-submenu-head {
- display: block;
-}
-
-#adminmenu .wp-submenu li {
- padding: 0;
- margin: 0;
- overflow: hidden;
-}
-
-#adminmenu a.menu-top {
- border-width: 1px 0;
- border-style: solid none;
-}
-
-#adminmenu .wp-menu-image img {
- padding: 7px 0 0 7px;
- opacity: 0.6;
- filter: alpha(opacity=60);
-}
-
-#adminmenu div.wp-menu-name {
- padding: 5px;
-}
-
-#adminmenu div.wp-menu-image {
- float: left;
- width: 28px;
- height: 28px;
-}
-
-.folded #adminmenu div.wp-menu-image {
- width: 32px;
- position: absolute;
- z-index: 25;
-}
-
-.folded #adminmenu a.menu-top {
- height: 28px;
-}
-
-.wp-menu-arrow {
- z-index: 25;
- position: absolute;
- right: 100%;
- margin: 0;
- height: 30px;
- width: 6px;
-
- -moz-transform: translate( 146px );
- -webkit-transform: translate( 146px );
- -o-transform: translate( 146px );
- -ms-transform: translate( 146px );
- transform: translate( 146px );
-}
-
-#adminmenu .wp-menu-arrow div {
- display: none;
- position: absolute;
- top: 7px;
- left: -1px;
- width: 14px;
- height: 15px;
-
- -moz-transform: matrix( -0.6, 1, 0.6, 1, 0, 0 );
- -webkit-transform: matrix( -0.6, 1, 0.6, 1, 0, 0 );
- -o-transform: matrix( -0.6, 1, 0.6, 1, 0, 0 );
- -ms-transform: matrix( -0.6, 1, 0.6, 1, 0, 0 );
- transform: matrix( -0.6, 1, 0.6, 1, 0, 0 );
-}
-
-#adminmenu li.wp-not-current-submenu .wp-menu-arrow {
- -moz-transform: translate( 145px );
- -webkit-transform: translate( 145px );
- -o-transform: translate( 145px );
- -ms-transform: translate( 145px );
- transform: translate( 145px );
- height: 28px;
- border-width: 1px 0;
- border-style: solid;
- top: 0;
-}
-
-.folded #adminmenu li .wp-menu-arrow {
- -moz-transform: translate( 32px );
- -webkit-transform: translate( 32px );
- -o-transform: translate( 32px );
- -ms-transform: translate( 32px );
- transform: translate( 32px );
-}
-
-#adminmenu li.current .wp-menu-arrow,
-#adminmenu li.wp-has-current-submenu .wp-menu-arrow,
-#adminmenu li.wp-has-current-submenu .wp-menu-arrow div,
-#adminmenu li.wp-has-submenu .wp-menu-arrow div,
-#adminmenu li.current .wp-menu-arrow div,
-.no-js #adminmenu li.wp-has-submenu:hover .wp-menu-arrow,
-#adminmenu li.wp-has-submenu.opensub .wp-menu-arrow,
-#adminmenu a.wp-has-submenu:focus .wp-menu-arrow,
-#adminmenu a:hover .wp-menu-arrow {
- display: block;
-}
-
-#adminmenu li.current .wp-menu-arrow,
-#adminmenu li.wp-menu-open .wp-menu-arrow {
- top: 0;
-}
-
-.no-js #adminmenu li.wp-has-submenu:hover .wp-menu-arrow,
-#adminmenu li.wp-has-submenu.opensub .wp-menu-arrow,
-#adminmenu a.wp-has-submenu:focus .wp-menu-arrow {
- z-index: 1001;
-}
-
-.ie8 #adminmenu li.menu-top:hover .wp-menu-arrow {
- display: none;
-}
-
-#adminmenu .wp-not-current-submenu .wp-menu-arrow div {
- width: 15px;
- top: 6px;
- border-width: 0 0 1px 1px;
- border-style: solid;
-}
-
-.wp-menu-arrow,
-.folded #adminmenu li .wp-menu-arrow div,
-.no-js #adminmenu li.wp-not-current-submenu:hover .wp-menu-arrow {
- display: none;
-}
-
-.folded #adminmenu li.current .wp-menu-arrow,
-.folded #adminmenu li.current .wp-menu-arrow div,
-.folded #adminmenu li.wp-has-current-submenu .wp-menu-arrow div,
-.folded #adminmenu li.wp-menu-open .wp-menu-arrow,
-.folded #adminmenu li a:focus .wp-menu-arrow {
- display: block;
-}
-
-#adminmenu li.menu-top:hover .wp-menu-image img,
-#adminmenu li.wp-has-current-submenu .wp-menu-image img {
- opacity: 1;
- filter: alpha(opacity=100);
-}
-
-#adminmenu li.wp-menu-separator {
- height: 3px;
- padding: 0;
- margin: 0;
- border-width: 1px 0;
- border-style: solid;
- cursor: inherit;
-}
-
-#adminmenu div.separator {
- height: 1px;
- padding: 0;
- border-width: 1px 0 0 0;
- border-style: solid;
-}
-
-#adminmenu .wp-submenu .wp-submenu-head {
- padding: 5px 4px 5px 10px;
- margin: -4px -1px 4px;
- border-width: 1px 0;
- border-style: solid;
- -webkit-border-top-right-radius: 3px;
- border-top-right-radius: 3px;
-}
-
-#adminmenu li.wp-menu-open {
- border-width: 0 0 1px;
- border-style: solid;
-}
-
-#adminmenu li.current,
-.folded #adminmenu li.wp-menu-open {
- border: 0 none;
-}
-
-.folded #adminmenu li.wp-has-current-submenu {
- margin-bottom: 1px;
-}
-
-.folded #adminmenu .wp-has-current-submenu.menu-top-last {
- margin-bottom: 0;
-}
-
-#adminmenu .awaiting-mod,
-#adminmenu span.update-plugins,
-#sidemenu li a span.update-plugins {
- position: absolute;
- font-family: sans-serif;
- font-size: 9px;
- line-height: 17px;
- font-weight: bold;
- margin-top: 1px;
- margin-left: 7px;
- -webkit-border-radius: 10px;
- border-radius: 10px;
- z-index: 26;
-}
-
-#adminmenu li .awaiting-mod span,
-#adminmenu li span.update-plugins span,
-#sidemenu li a span.update-plugins span {
- display: block;
- padding: 0 6px;
-}
-
-#adminmenu li span.count-0,
-#sidemenu li a .count-0 {
- display: none;
-}
-
-#collapse-menu {
- font-size: 12px;
- line-height: 34px;
- border-width: 1px 0 0;
- border-style: solid;
-}
-
-.folded #collapse-menu span {
- display: none;
-}
-
-#collapse-button,
-#collapse-button div {
- width: 15px;
- height: 15px;
-}
-
-#collapse-button {
- float: left;
- margin: 8px 6px;
- border-width: 1px;
- border-style: solid;
- -webkit-border-radius: 10px;
- border-radius: 10px;
-}
-
-/* Auto-folding of the admin menu */
-@media only screen and (max-width: 900px) {
- .auto-fold #wpcontent,
- .auto-fold #wpfooter {
- margin-left: 52px;
- }
-
- .auto-fold #adminmenuback,
- .auto-fold #adminmenuwrap,
- .auto-fold #adminmenu,
- .auto-fold #adminmenu li.menu-top {
- width: 32px;
- }
-
- .auto-fold #adminmenu .wp-submenu.sub-open,
- .auto-fold #adminmenu .opensub .wp-submenu,
- .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,
- .auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu,
- .auto-fold #adminmenu a.menu-top:focus + .wp-submenu,
- .auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu {
- top: -1px;
- left: 32px;
- }
-
- .auto-fold #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
- .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu {
- border-width: 1px;
- border-style: solid;
- position: absolute;
- top: -1000em;
- }
-
- .auto-fold #adminmenu li.menu-top .wp-submenu > li > a {
- padding-left: 12px;
- }
-
- .auto-fold #adminmenu .wp-menu-name {
- display: none;
- }
-
- .auto-fold #adminmenu .wp-submenu-head {
- display: block;
- }
-
- .auto-fold #adminmenu div.wp-menu-image {
- width: 32px;
- position: absolute;
- z-index: 25;
- }
-
- .auto-fold #adminmenu a.menu-top {
- height: 28px;
- }
-
- .auto-fold #adminmenu li .wp-menu-arrow {
- -moz-transform: translate( 32px );
- -webkit-transform: translate( 32px );
- -o-transform: translate( 32px );
- -ms-transform: translate( 32px );
- transform: translate( 32px );
- }
-
- .auto-fold #adminmenu li .wp-menu-arrow div {
- display: none;
- }
-
- .auto-fold #adminmenu li.current .wp-menu-arrow,
- .auto-fold #adminmenu li.current .wp-menu-arrow div,
- .auto-fold #adminmenu li.wp-has-current-submenu .wp-menu-arrow div,
- .auto-fold #adminmenu li.wp-menu-open .wp-menu-arrow,
- .auto-fold #adminmenu li a:focus .wp-menu-arrow {
- display: block;
- }
-
- .auto-fold #adminmenu li.wp-menu-open {
- border: 0 none;
- }
-
- .auto-fold #adminmenu li.wp-has-current-submenu {
- margin-bottom: 1px;
- }
-
- .auto-fold #adminmenu .wp-has-current-submenu.menu-top-last {
- margin-bottom: 0;
- }
-
- .auto-fold #collapse-menu span {
- display: none;
- }
-
-}
-
-/* List table styles */
-.post-com-count-wrapper {
- min-width: 22px;
- font-family: sans-serif;
-}
-
-.post-com-count {
- background-image: url('../images/bubble_bg.gif');
- height: 1.3em;
- line-height: 1.1em;
- display: block;
- text-decoration: none;
- padding: 0 0 6px;
- cursor: pointer;
- background-position: center -80px;
- background-repeat: no-repeat;
-}
-
-.post-com-count span {
- font-size: 11px;
- font-weight: bold;
- height: 1.4em;
- line-height: 1.4em;
- min-width: 0.7em;
- padding: 0 6px;
- display: inline-block;
- -webkit-border-radius: 5px;
- border-radius: 5px;
-}
-
-strong .post-com-count {
- background-position: center -55px;
-}
-
-.post-com-count:hover {
- background-position: center -3px;
-}
-
-.column-response .post-com-count {
- float: left;
- margin-right: 5px;
- text-align: center;
-}
-
-.response-links {
- float: left;
-}
-
-#the-comment-list .attachment-80x60 {
- padding: 4px 8px;
-}
-
-th .comment-grey-bubble {
- background-image: url('../images/comment-grey-bubble.png');
- background-repeat: no-repeat;
- height: 12px;
- width: 12px;
-}
-
-/*------------------------------------------------------------------------------
- 8.0 - Layout Blocks
-------------------------------------------------------------------------------*/
-
-html.wp-toolbar {
- padding-top: 28px;
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
-}
-
-.narrow {
- width: 70%;
- margin-bottom: 40px;
-}
-
-.narrow p {
- line-height: 150%;
-}
-
-.widefat th,
-.widefat td {
- overflow: hidden;
-}
-
-.widefat th {
- font-weight: normal;
-}
-
-.widefat td p {
- margin: 2px 0 0.8em;
-}
-
-.widefat .column-comment p {
- margin: 0.6em 0;
-}
-
-/* Screens with postboxes */
-.postbox-container {
- float: left;
-}
-
-#dashboard-widgets.columns-1 .postbox-container {
- width: 100%;
-}
-
-#dashboard-widgets.columns-2 .postbox-container {
- width: 49.5%;
-}
-
-#dashboard-widgets.columns-2 #postbox-container-2,
-#dashboard-widgets.columns-2 #postbox-container-3,
-#dashboard-widgets.columns-2 #postbox-container-4 {
- float: right;
- width: 50.5%;
-}
-
-#dashboard-widgets.columns-3 .postbox-container {
- width: 33.5%;
-}
-
-#dashboard-widgets.columns-3 #postbox-container-1 {
- width: 33%;
-}
-
-#dashboard-widgets.columns-3 #postbox-container-3,
-#dashboard-widgets.columns-3 #postbox-container-4 {
- float: right;
-}
-
-#dashboard-widgets.columns-4 .postbox-container {
- width: 25%;
-}
-
-.postbox-container .meta-box-sortables {
- -moz-box-sizing: border-box;
- -webkit-box-sizing: border-box;
- -ms-box-sizing: border-box;
- box-sizing: border-box;
-}
-
-.metabox-holder .postbox-container .empty-container {
- border: 3px dashed #CCCCCC;
- height: 250px;
-}
-
-.metabox-holder.columns-1 .postbox-container .empty-container,
-.columns-2 #postbox-container-3 .empty-container,
-.columns-2 #postbox-container-4 .empty-container,
-.columns-3 #postbox-container-4 .empty-container {
- border: 0 none;
- height: 0;
- min-height: 0;
-}
-
-#poststuff {
- padding-top: 10px;
-}
-
-#poststuff #post-body {
- padding: 0;
-}
-
-#post-body-content {
- width: 100%;
- float: left;
-}
-
-#poststuff .postbox-container {
- width: 100%;
-}
-
-#poststuff #post-body.columns-2 {
- margin-right: 300px;
-}
-
-#post-body.columns-2 #postbox-container-1 {
- float: right;
- margin-right: -300px;
- width: 280px;
-}
-
-#post-body.columns-2 #side-sortables {
- min-height: 250px;
-}
-
-/* one column on the dash */
-@media only screen and (max-width: 799px) {
- #wpbody-content #dashboard-widgets .postbox-container {
- width: 100%;
- }
-
- #wpbody-content .metabox-holder .postbox-container .empty-container {
- border: 0 none;
- height: 0;
- min-height: 0;
- }
-}
-
-/* two columns on the dash, but keep the setting if one is selected */
-@media only screen and (min-width: 800px) and (max-width: 1200px) {
- #wpbody-content #dashboard-widgets .postbox-container {
- width: 49.5%;
- }
-
- #wpbody-content #dashboard-widgets #postbox-container-2,
- #wpbody-content #dashboard-widgets #postbox-container-3,
- #wpbody-content #dashboard-widgets #postbox-container-4 {
- float: right;
- width: 50.5%;
- }
-
- #dashboard-widgets #postbox-container-3 .empty-container,
- #dashboard-widgets #postbox-container-4 .empty-container {
- border: 0 none;
- height: 0;
- min-height: 0;
- }
-
- #wpbody #wpbody-content #dashboard-widgets.columns-1 .postbox-container {
- width: 100%;
- }
-
- #wpbody #wpbody-content .metabox-holder.columns-1 .postbox-container .empty-container {
- border: 0 none;
- height: 0;
- min-height: 0;
- }
-
- /* show the radio buttons for column prefs only for one or two columns */
- .index-php .screen-layout,
- .index-php .columns-prefs {
- display: block;
- }
-
- .columns-prefs .columns-prefs-3,
- .columns-prefs .columns-prefs-4 {
- display: none;
- }
-}
-
-/* one column on the post write/edit screen */
-@media only screen and (max-width: 960px) {
- #wpbody-content #poststuff #post-body {
- margin: 0;
- }
-
- #wpbody-content #post-body.columns-2 #postbox-container-1 {
- margin-right: 0;
- width: 100%;
- }
-
- #poststuff #postbox-container-1 .empty-container,
- #poststuff #postbox-container-1 #side-sortables:empty {
- border: 0 none;
- height: 0;
- min-height: 0;
- }
-
- #poststuff #post-body.columns-2 #side-sortables {
- min-height: 0;
- }
-
- /* hide the radio buttons for column prefs */
- .screen-layout,
- .columns-prefs {
- display: none;
- }
-}
-
-.postbox .hndle {
- -webkit-border-top-left-radius: 3px;
- -webkit-border-top-right-radius: 3px;
- border-top-left-radius: 3px;
- border-top-right-radius: 3px;
-}
-
-.js .postbox .hndle {
- cursor: move;
-}
-
-.postbox.closed .hndle {
- -webkit-border-radius: 3px;
- border-radius: 3px;
-}
-
-.hndle a {
- font-size: 11px;
- font-weight: normal;
-}
-
-.postbox .handlediv {
- float: right;
- width: 27px;
- height: 30px;
-}
-
-.js .postbox .handlediv {
- cursor: pointer;
-}
-
-.sortable-placeholder {
- border-width: 1px;
- border-style: dashed;
- margin-bottom: 20px;
-}
-
-.widget,
-.postbox,
-.stuffbox {
- margin-bottom: 20px;
- padding: 0;
- border-width: 1px;
- border-style: solid;
- line-height: 1;
-}
-
-.widget .widget-top,
-.postbox h3,
-.stuffbox h3 {
- margin-top: 1px;
- border-bottom-width: 1px;
- border-bottom-style: solid;
- -webkit-user-select: none;
- -moz-user-select: none;
- user-select: none;
-}
-
-.js .widget .widget-top,
-.js .postbox h3 {
- cursor: move;
-}
-
-.postbox .inside,
-.stuffbox .inside {
- padding: 0 12px 0 10px;
- line-height: 1.4em;
-}
-
-.postbox .inside {
- margin: 10px 0;
- position: relative;
-}
-
-.postbox.closed h3 {
- border: none;
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-.postbox table.form-table {
- margin-bottom: 0;
-}
-
-.temp-border {
- border: 1px dotted #ccc;
-}
-
-.columns-prefs label {
- padding: 0 5px;
-}
-
-
-/*------------------------------------------------------------------------------
- 9.0 - Dashboard
-------------------------------------------------------------------------------*/
-
-#dashboard-widgets-wrap {
- margin: 0 -8px;
-}
-
-#wpbody-content .metabox-holder {
- padding-top: 10px;
-}
-
-#dashboard-widgets .meta-box-sortables {
- margin: 0 8px;
-}
-
-#dashboard_recent_comments div.undo {
- border-top-style: solid;
- border-top-width: 1px;
- margin: 0 -10px;
- padding: 3px 8px;
- font-size: 11px;
-}
-
-#the-comment-list td.comment p.comment-author {
- margin-top: 0;
- margin-left: 0;
-}
-
-#the-comment-list p.comment-author img {
- float: left;
- margin-right: 8px;
-}
-
-#the-comment-list p.comment-author strong a {
- border: none;
-}
-
-#the-comment-list td {
- vertical-align: top;
-}
-
-#the-comment-list td.comment {
- word-wrap: break-word;
-}
-
-/* Welcome Panel */
-.welcome-panel {
- position: relative;
- overflow: auto;
- margin: 20px 0;
- padding: 23px 10px 12px;
- border-width: 1px;
- border-style: solid;
- border-radius: 3px;
- font-size: 13px;
- line-height: 2.1em;
-}
-
-.welcome-panel h3 {
- margin: 0;
- font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif;
- font-size: 21px;
- font-weight: normal;
- line-height: 1.2;
-}
-.welcome-panel h4 {
- margin: 1.33em 0 0;
- font-size: 13px;
-}
-
-.welcome-panel .about-description {
- font-size: 16px;
- margin: 0;
-}
-
-.welcome-panel .welcome-panel-close {
- position: absolute;
- top: 5px;
- right: 10px;
- padding: 8px 3px;
- font-size: 13px;
- text-decoration: none;
- line-height: 1;
-}
-
-.welcome-panel .welcome-panel-close:before {
- content: ' ';
- position: absolute;
- left: -12px;
- width: 10px;
- height: 100%;
- background: url('../images/xit.gif') 0 17% no-repeat;
-}
-
-.welcome-panel .welcome-panel-close:hover:before {
- background-position: 100% 17%;
-}
-
-.wp-core-ui .welcome-panel .button.button-hero {
- margin: 15px 0 3px;
-}
-
-.welcome-panel-content {
- margin-left: 13px;
- max-width: 1500px;
-}
-
-.welcome-panel .welcome-panel-column-container {
- clear: both;
- overflow: hidden;
- position: relative;
-}
-
-.welcome-panel .welcome-panel-column {
- width: 32%;
- min-width: 200px;
- float: left;
-}
-
-.ie8 .welcome-panel .welcome-panel-column {
- min-width: 230px;
-}
-
-.welcome-panel .welcome-panel-column:first-child {
- width: 36%;
-}
-
-.welcome-panel-column p {
- margin-top: 7px;
-}
-
-.welcome-panel .welcome-icon {
- display: block;
- padding: 2px 0 8px 32px;
- background-image: url('../images/welcome-icons.png');
- background-repeat: no-repeat;
- background-size: 16px;
-}
-
-.welcome-panel .welcome-add-page {
- background-position: 0 2px;
-}
-
-.welcome-panel .welcome-edit-page {
- background-position: 0 -90px;
-}
-
-.welcome-panel .welcome-learn-more {
- background-position: 0 -136px;
-}
-
-.welcome-panel .welcome-comments {
- background-position: 0 -182px;
-}
-
-.welcome-panel .welcome-view-site {
- background-position: 0 -274px;
-}
-
-.welcome-panel .welcome-widgets-menus {
- background-position: 1px -229px;
- line-height: 14px;
-}
-
-.welcome-panel .welcome-write-blog {
- background-position: 0 -44px;
-}
-
-.welcome-panel .welcome-panel-column ul {
- margin: 0.8em 1em 1em 0;
-}
-
-.welcome-panel .welcome-panel-column li {
- line-height: 16px;
- list-style-type: none;
-}
-
-@media screen and (max-width: 870px) {
- .welcome-panel .welcome-panel-column,
- .welcome-panel .welcome-panel-column:first-child {
- display: block;
- float: none;
- width: 100%;
- }
-
- .welcome-panel .welcome-panel-column li {
- display: inline-block;
- margin-right: 13px;
- }
-
- .welcome-panel .welcome-panel-column ul {
- margin: 0.4em 0 0;
- }
-
- .welcome-panel .welcome-icon {
- padding-left: 25px;
- }
-}
-
-/*------------------------------------------------------------------------------
- 10.0 - List Posts (/Pages/etc)
-------------------------------------------------------------------------------*/
-
-table.fixed {
- table-layout: fixed;
-}
-
-.fixed .column-rating,
-.fixed .column-visible {
- width: 8%;
-}
-
-.fixed .column-posts,
-.fixed .column-date,
-.fixed .column-parent,
-.fixed .column-links,
-.fixed .column-author,
-.fixed .column-format {
- width: 10%;
-}
-
-.fixed .column-response,
-.fixed .column-categories,
-.fixed .column-tags,
-.fixed .column-rel,
-.fixed .column-role {
- width: 15%;
-}
-
-.fixed .column-slug {
- width: 25%;
-}
-
-.fixed .column-locations {
- width: 35%;
-}
-
-.fixed .column-comments {
- width: 4em;
- padding: 8px 0;
- text-align: left;
-}
-
-.fixed .column-comments .vers {
- padding-left: 3px;
-}
-
-.fixed .column-comments a {
- float: left;
-}
-
-.fixed .column-icon {
- width: 80px;
-}
-
-#comments-form .fixed .column-author {
- width: 20%;
-}
-
-#commentsdiv.postbox .inside {
- margin: 0;
- padding: 0;
-}
-
-#commentsdiv .inside .row-actions {
- line-height:18px;
-}
-
-#commentsdiv .inside .column-author {
- width: 25%;
-}
-
-#commentsdiv .column-comment p {
- margin: 0.6em 0;
- padding: 0;
-}
-
-#commentsdiv #replyrow td {
- padding: 0;
-}
-
-#commentsdiv p {
- padding: 8px 10px;
- margin: 0;
-}
-
-#commentsdiv #add-new-comment {
- border-width: 0 0 1px;
- border-style: none none solid;
-}
-
-#commentsdiv .comments-box {
- border: 0 none;
-}
-
-#commentsdiv .comments-box thead th {
- background: transparent;
- padding: 0 7px 4px;
- font-style: italic;
-}
-
-#commentsdiv .comments-box tr:last-child td {
- border-bottom: 0 none;
-}
-
-#commentsdiv .spinner {
- padding-left: 5px;
-}
-
-.sorting-indicator {
- display: none;
- width: 7px;
- height: 4px;
- margin-top: 8px;
- margin-left: 7px;
- background-image: url('../images/sort.gif');
- background-repeat: no-repeat;
-}
-
-tr.wp-locked .locked-indicator {
- background: url('../images/lock.png') no-repeat;
- margin: -2px 0 0 6px;
- height: 20px;
- width: 16px;
-}
-
-tr.wp-locked .check-column label,
-tr.wp-locked .check-column input[type="checkbox"],
-tr.wp-locked .row-actions .inline,
-tr.wp-locked .row-actions .trash {
- display: none;
-}
-
-tr .locked-info {
- height: 0;
- opacity: 0;
-}
-
-tr.wp-locked .locked-info {
- height: auto;
- opacity: 1;
-}
-
-tr.locked-info, tr.wp-locked .locked-info {
- -webkit-transition: height 1s, opacity 500ms;
- -moz-transition: height 1s, opacity 500ms;
- -ms-transition: height 1s, opacity 500ms;
- -o-transition: height 1s, opacity 500ms;
- transition: height 1s, opacity 500ms;
-}
-
-.fixed .column-comments .sorting-indicator {
- margin-top: 3px;
-}
-
-#menu-locations-wrap .widefat {
- width: 60%;
-}
-
-.widefat th.sortable,
-.widefat th.sorted {
- padding: 0;
-}
-
-th.sortable a,
-th.sorted a {
- display: block;
- overflow: hidden;
- padding: 7px 7px 8px;
-}
-
-.fixed .column-comments.sortable a,
-.fixed .column-comments.sorted a {
- padding: 8px 0;
-}
-
-th.sortable a span,
-th.sorted a span {
- float: left;
- cursor: pointer;
-}
-
-th.sorted.asc .sorting-indicator,
-th.desc:hover span.sorting-indicator {
- display: block;
- background-position: 0 0;
-}
-
-th.sorted.desc .sorting-indicator,
-th.asc:hover span.sorting-indicator {
- display: block;
- background-position: -7px 0;
-}
-
-/* Bulk Actions */
-.tablenav-pages a {
- border-bottom-style: solid;
- border-bottom-width: 2px;
- font-weight: bold;
- margin-right: 1px;
- padding: 0 2px;
-}
-.tablenav-pages .current-page {
- text-align: center;
-}
-.tablenav-pages .next-page {
- margin-left: 2px;
-}
-
-.tablenav a.button-secondary {
- display: block;
- margin: 3px 8px 0 0;
-}
-
-.tablenav {
- clear: both;
- height: 30px;
- margin: 6px 0 4px;
- vertical-align: middle;
-}
-
-.tablenav.themes {
- max-width: 98%;
-}
-
-.tablenav .tablenav-pages {
- float: right;
- display: block;
- cursor: default;
- height: 30px;
- line-height: 30px;
- font-size: 12px;
-}
-
-.tablenav .no-pages,
-.tablenav .one-page .pagination-links {
- display: none;
-}
-
-.tablenav .tablenav-pages a,
-.tablenav-pages span.current {
- text-decoration: none;
- padding: 3px 6px;
-}
-
-.tablenav .tablenav-pages a.disabled:hover ,
-.tablenav .tablenav-pages a.disabled:active {
- cursor: default;
-}
-
-.tablenav .displaying-num {
- margin-right: 10px;
- font-size: 12px;
- font-style: italic;
-}
-
-.tablenav .actions {
- overflow: hidden;
- padding: 2px 8px 0 0;
-}
-
-.tablenav .delete {
- margin-right: 20px;
-}
-
-.view-switch {
- float: right;
- margin: 6px 8px 0;
-}
-
-.view-switch a {
- text-decoration: none;
-}
-
-.filter {
- float: left;
- margin: -5px 0 0 10px;
-}
-
-.filter .subsubsub {
- margin-left: -10px;
- margin-top: 13px;
-}
-.screen-per-page {
- width: 4em;
-}
-
-#posts-filter fieldset {
- float: left;
- margin: 0 1.5ex 1em 0;
- padding: 0;
-}
-
-#posts-filter fieldset legend {
- padding: 0 0 .2em 1px;
-}
-
-
-/*------------------------------------------------------------------------------
- 10.1 - Inline Editing
-------------------------------------------------------------------------------*/
-
-/*
-.quick-edit* is for Quick Edit
-.bulk-edit* is for Bulk Edit
-.inline-edit* is for everything
-*/
-
-/* Layout */
-
-#wpbody-content .inline-edit-row fieldset {
- font-size: 12px;
- float: left;
- margin: 0;
- padding: 0;
- width: 100%;
-}
-
-tr.inline-edit-row td,
-#wpbody-content .inline-edit-row fieldset .inline-edit-col {
- padding: 0 0.5em;
-}
-
-#wpbody-content .quick-edit-row-page fieldset.inline-edit-col-right .inline-edit-col {
- border-width: 0 0 0 1px;
- border-style: none none none solid;
-}
-
-#wpbody-content .quick-edit-row-post .inline-edit-col-left {
- width: 40%;
-}
-
-#wpbody-content .quick-edit-row-post .inline-edit-col-right {
- width: 39%;
-}
-
-#wpbody-content .inline-edit-row-post .inline-edit-col-center {
- width: 20%;
-}
-
-#wpbody-content .quick-edit-row-page .inline-edit-col-left {
- width: 50%;
-}
-
-#wpbody-content .quick-edit-row-page .inline-edit-col-right,
-#wpbody-content .bulk-edit-row-post .inline-edit-col-right {
- width: 49%;
-}
-
-#wpbody-content .bulk-edit-row .inline-edit-col-left {
- width: 30%;
-}
-
-#wpbody-content .bulk-edit-row-page .inline-edit-col-right {
- width: 69%;
-}
-
-#wpbody-content .bulk-edit-row .inline-edit-col-bottom {
- float: right;
- width: 69%;
-}
-
-#wpbody-content .inline-edit-row-page .inline-edit-col-right {
- margin-top: 27px;
-}
-
-.inline-edit-row fieldset .inline-edit-group {
- clear: both;
-}
-
-.inline-edit-row fieldset .inline-edit-group:after {
- content: ".";
- display: block;
- height: 0;
- clear: both;
- visibility: hidden;
-}
-
-.inline-edit-row p.submit {
- clear: both;
- padding: 0.5em;
- margin: 0.5em 0 0;
-}
-
-.inline-edit-row span.error {
- line-height: 22px;
- margin: 0 15px;
- padding: 3px 5px;
-}
-
-/* Positioning */
-.inline-edit-row h4 {
- margin: .2em 0;
- padding: 0;
- line-height: 23px;
-}
-.inline-edit-row fieldset span.title,
-.inline-edit-row fieldset span.checkbox-title {
- margin: 0;
- padding: 0;
- line-height: 27px;
-}
-
-.inline-edit-row fieldset label,
-.inline-edit-row fieldset span.inline-edit-categories-label {
- display: block;
- margin: .2em 0;
-}
-
-.inline-edit-row fieldset label.inline-edit-tags {
- margin-top: 0;
-}
-
-.inline-edit-row fieldset label.inline-edit-tags span.title {
- margin: .2em 0;
- width: auto;
-}
-
-.inline-edit-row fieldset label span.title {
- display: block;
- float: left;
- width: 5em;
-}
-
-.inline-edit-row fieldset label span.input-text-wrap {
- display: block;
- margin-left: 5em;
-}
-
-.quick-edit-row-post fieldset.inline-edit-col-right label span.title {
- width: auto;
- padding-right: 0.5em;
-}
-
-.inline-edit-row .input-text-wrap input[type=text] {
- width: 100%;
-}
-
-.inline-edit-row fieldset label input[type=checkbox] {
- vertical-align: text-bottom;
-}
-
-.inline-edit-row fieldset label textarea {
- width: 100%;
- height: 4em;
-}
-
-#wpbody-content .bulk-edit-row fieldset .inline-edit-group label {
- max-width: 50%;
-}
-
-#wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child {
- margin-right: 0.5em
-}
-
-.inline-edit-col-right .input-text-wrap input.inline-edit-menu-order-input {
- width: 6em;
-}
-
-.inline-edit-save .spinner {
- padding: 4px 10px 0;
- vertical-align: top;
- float: right;
-}
-
-/* Styling */
-.inline-edit-row h4 {
- text-transform: uppercase;
-}
-
-.inline-edit-row fieldset span.title,
-.inline-edit-row fieldset span.checkbox-title {
- font-style: italic;
- line-height: 1.8em;
-}
-
-/* Specific Elements */
-.inline-edit-row fieldset input[type="text"],
-.inline-edit-row fieldset textarea {
- border-style: solid;
- border-width: 1px;
-}
-
-.inline-edit-row fieldset .inline-edit-date {
- float: left;
-}
-
-.inline-edit-row fieldset input[name=jj],
-.inline-edit-row fieldset input[name=hh],
-.inline-edit-row fieldset input[name=mn] {
- font-size: 12px;
- width: 2.1em;
-}
-
-.inline-edit-row fieldset input[name=aa] {
- font-size: 12px;
- width: 3.5em;
-}
-
-.inline-edit-row fieldset label input.inline-edit-password-input {
- width: 8em;
-}
-
-ul.cat-checklist {
- height: 12em;
- border-style: solid;
- border-width: 1px;
- overflow-y: scroll;
- padding: 0 5px;
- margin: 0;
-}
-
-#bulk-titles {
- display: block;
- height: 12em;
- border-style: solid;
- border-width: 1px;
- overflow-y: scroll;
- padding: 0 5px;
- margin: 0 0 5px;
-}
-
-.inline-edit-row fieldset ul.cat-checklist li,
-.inline-edit-row fieldset ul.cat-checklist input {
- margin: 0;
-}
-
-.inline-edit-row fieldset ul.cat-checklist label,
-.inline-edit-row #bulk-titles div {
- font-family: sans-serif;
- font-style: normal;
- font-size: 11px;
-}
-
-.inline-edit-row fieldset label input.inline-edit-menu-order-input {
- width: 3em;
-}
-
-.inline-edit-row fieldset label input.inline-edit-slug-input {
- width: 75%;
-}
-
-.quick-edit-row-post fieldset label.inline-edit-status {
- float: left;
-}
-
-#bulk-titles {
- line-height: 140%;
-}
-#bulk-titles div {
- margin: 0.2em 0.3em;
-}
-
-#bulk-titles div a {
- cursor: pointer;
- display: block;
- float: left;
- height: 10px;
- margin: 3px 3px 0 -2px;
- overflow: hidden;
- position: relative;
- text-indent: -9999px;
- width: 10px;
-}
-
-
-/*------------------------------------------------------------------------------
- 11.0 - Write/Edit Post Screen
-------------------------------------------------------------------------------*/
-
-#show-comments {
- overflow: hidden;
-}
-
-#save-action .spinner,
-#show-comments a,
-#show-comments .spinner {
- float: left;
-}
-
-#lost-connection-notice .spinner {
- display: block;
- float: left;
- margin: 0 5px 0 0;
-}
-
-.rtl #lost-connection-notice .spinner {
- float: right;
- margin: 0 0 0 5px;
-}
-
-#titlediv {
- position: relative;
- margin-bottom: 5px;
-}
-
-#titlediv label {
- cursor: text;
-}
-
-#titlediv div.inside {
- margin: 0;
-}
-
-#poststuff #titlewrap {
- border: 0;
- padding: 0;
-}
-
-#titlediv #title {
- padding: 3px 8px;
- font-size: 1.7em;
- line-height: 100%;
- height: 1.7em;
- width: 100%;
- outline: none;
- margin: 1px 0;
-}
-
-#titlediv #title-prompt-text,
-#wp-fullscreen-title-prompt-text {
- color: #bbb;
- position: absolute;
- font-size: 1.7em;
- padding: 11px 10px;
-}
-
-#wp-fullscreen-save .fs-saved {
- color: #999;
- float: right;
- margin-top: 4px;
-}
-
-#wp-fullscreen-title-prompt-text {
- padding: 11px;
-}
-
-#poststuff .inside-submitbox,
-#side-sortables .inside-submitbox {
- margin: 0 3px;
- font-size: 11px;
-}
-
-input#link_description,
-input#link_url {
- width: 98%;
-}
-
-#pending {
- background: 0 none;
- border: 0 none;
- padding: 0;
- font-size: 11px;
- margin-top: -1px;
-}
-
-#edit-slug-box {
- line-height: 24px;
- min-height: 25px; /* Yes, line-height + 1 */
- margin-top: 5px;
- padding-right: 6px;
-}
-
-#edit-slug-box .cancel {
- margin-right: 10px;
- font-size: 11px;
-}
-
-#editable-post-name-full {
- display: none;
-}
-
-#editable-post-name input {
- width: 16em;
-}
-
-.postarea h3 label {
- float: left;
-}
-
-.submitbox .submit {
- text-align: left;
- padding: 12px 10px 10px;
- font-size: 11px;
-}
-
-.submitbox .submitdelete {
- text-decoration: none;
- padding: 1px 2px;
-}
-
-.submitbox .submitdelete,
-.submitbox .submit a:hover {
- border-bottom-width: 1px;
- border-bottom-style: solid;
-}
-
-.submitbox .submit input {
- margin-bottom: 8px;
- margin-right: 4px;
- padding: 6px;
-}
-
-.inside-submitbox #post_status {
- margin: 2px 0 2px -2px;
-}
-
-#post-status-select {
- line-height: 2.5em;
- margin-top: 3px;
-}
-
-/* Post Screen */
-#post-body #normal-sortables {
- min-height: 50px;
-}
-
-.postbox {
- position: relative;
- min-width: 255px;
-}
-
-#trackback_url {
- width: 99%;
-}
-
-#normal-sortables .postbox .submit {
- background: transparent none;
- border: 0 none;
- float: right;
- padding: 0 12px;
- margin:0;
-}
-
-.category-add input[type="text"],
-.category-add select {
- width: 100%;
- max-width: 260px;
-}
-
-.press-this #side-sortables .category-tabs li,
-ul.category-tabs li,
-#side-sortables .add-menu-item-tabs li,
-.wp-tab-bar li {
- display: inline;
- line-height: 1.35em;
-}
-
-.no-js .category-tabs li.hide-if-no-js {
- display: none;
-}
-
-.category-tabs a,
-#side-sortables .add-menu-item-tabs a,
-.wp-tab-bar a {
- text-decoration: none;
-}
-
-.category-tabs {
- margin: 8px 0 3px;
-}
-
-#category-adder h4 {
- margin: 10px 0;
-}
-
-#side-sortables .add-menu-item-tabs,
-.wp-tab-bar {
- margin-bottom: 3px;
-}
-
-#normal-sortables .postbox #replyrow .submit {
- float: none;
- margin: 0;
- padding: 0 7px 5px;
-}
-
-#side-sortables .submitbox .submit input,
-#side-sortables .submitbox .submit .preview,
-#side-sortables .submitbox .submit a.preview:hover {
- border: 0 none;
-}
-
-#side-sortables .inside-submitbox .insidebox,
-.stuffbox .insidebox {
- margin: 11px 0;
-}
-
-ul.category-tabs,
-ul.add-menu-item-tabs,
-ul.wp-tab-bar {
- margin-top: 12px;
-}
-
-ul.category-tabs li {
- border-style: solid;
- border-width: 1px;
- position: relative;
-}
-
-ul.add-menu-item-tabs li.tabs,
-.wp-tab-active {
- border-style: solid solid none;
- border-width: 1px 1px 0;
-}
-
-#post-body .add-menu-item-tabs li.tabs {
- border-style: solid none solid solid;
- border-width: 1px 0 1px 1px;
- margin-right: -1px;
-}
-
-ul.category-tabs li,
-ul.add-menu-item-tabs li,
-ul.wp-tab-bar li {
- padding: 3px 5px 5px;
- -webkit-border-top-left-radius: 3px;
- -webkit-border-top-right-radius: 3px;
- border-top-left-radius: 3px;
- border-top-right-radius: 3px;
-}
-
-/* positioning etc. */
-form#tags-filter {
- position: relative;
-}
-
-/* Edit posts */
-td.post-title strong,
-td.plugin-title strong {
- display: block;
- margin-bottom: .2em;
-}
-
-td.post-title p,
-td.plugin-title p {
- margin: 6px 0;
-}
-
-/* Global classes */
-.wp-hidden-children .wp-hidden-child,
-.ui-tabs-hide {
- display: none;
-}
-
-.commentlist .avatar {
- vertical-align: text-top;
-}
-
-#post-body .tagsdiv #newtag {
- margin-right: 5px;
- width: 16em;
-}
-
-#side-sortables input#post_password {
- width: 94%
-}
-
-#side-sortables .tagsdiv #newtag {
- width: 68%;
-}
-
-#post-status-info {
- border-width: 0 1px 1px;
- border-style: none solid solid;
- width: 100%;
- -webkit-border-bottom-left-radius: 3px;
- -webkit-border-bottom-right-radius: 3px;
- border-bottom-left-radius: 3px;
- border-bottom-right-radius: 3px;
-}
-
-#post-status-info td {
- font-size: 12px;
-}
-
-.autosave-info {
- padding: 2px 15px;
- text-align: right;
-}
-
-#editorcontent #post-status-info {
- border: none;
-}
-
-#post-body .wp_themeSkin .mceStatusbar a.mceResize {
- display: block;
- background: transparent url('../images/resize.gif') no-repeat scroll right bottom;
- width: 12px;
- cursor: se-resize;
- margin: 0 1px;
- position: relative;
- top: -2px;
-}
-
-#post-body .postarea .wp_themeSkin .mceStatusbar a.mceResize {
- top: 20px;
-}
-
-#content-resize-handle {
- background: transparent url('../images/resize.gif') no-repeat scroll right bottom;
- width: 12px;
- cursor: se-resize;
- position: absolute;
- right: 2px;
- height: 19px;
-}
-
-.press-this #content-resize-handle {
- bottom: 2px;
-}
-
-.tmce-active #content-resize-handle {
- display: none;
-}
-
-#wp-word-count {
- display: block;
- padding: 2px 10px;
-}
-
-#timestampdiv select {
- height: 20px;
- line-height: 14px;
- padding: 0;
- vertical-align: top;
-}
-
-#aa, #jj, #hh, #mn {
- padding: 1px;
- font-size: 12px;
-}
-
-#jj, #hh, #mn {
- width: 2em;
-}
-
-#aa {
- width: 3.4em;
-}
-
-.curtime #timestamp {
- background-repeat: no-repeat;
- background-position: left center;
- padding: 2px 0 1px 20px;
-}
-
-#timestampdiv {
- padding-top: 5px;
- line-height: 23px;
-}
-
-#timestampdiv p {
- margin: 8px 0 6px;
-}
-
-#timestampdiv input {
- border-width: 1px;
- border-style: solid;
-}
-
-.notification-dialog {
- position: fixed;
- top: 30%;
- left: 50%;
- width: 450px;
- margin-left: -225px;
- background: #fff;
- line-height: 1.5;
- z-index: 1000005;
-}
-
-.notification-dialog-background {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: #000;
- opacity: 0.5;
- filter: alpha(opacity=50);
- z-index: 1000000;
-}
-
-#post-lock-dialog .post-locked-message,
-#post-lock-dialog .post-taken-over {
- margin: 25px;
-}
-
-#post-lock-dialog .post-locked-message a.button {
- margin-right: 10px;
-}
-
-#post-lock-dialog .post-locked-avatar {
- float: left;
- margin: 0 20px 20px 0;
-}
-
-#post-lock-dialog .wp-tab-first {
- outline: 0;
-}
-
-#post-lock-dialog .locked-saving img {
- float: left;
- margin-right: 3px;
-}
-
-#post-lock-dialog.saving .locked-saving,
-#post-lock-dialog.saved .locked-saved {
- display: inline;
-}
-
-/*------------------------------------------------------------------------------
- 11.1 - Custom Fields
-------------------------------------------------------------------------------*/
-
-#postcustomstuff thead th {
- padding: 5px 8px 8px;
-}
-
-#postcustom #postcustomstuff .submit {
- border: 0 none;
- float: none;
- padding: 0 8px 8px;
-}
-
-#side-sortables #postcustom #postcustomstuff .submit {
- margin: 0;
- padding: 0;
-}
-
-#side-sortables #postcustom #postcustomstuff #the-list textarea {
- height: 85px;
-}
-
-#side-sortables #postcustom #postcustomstuff td.left input,
-#side-sortables #postcustom #postcustomstuff td.left select,
-#side-sortables #postcustomstuff #newmetaleft a {
- margin: 3px 3px 0;
-}
-
-#postcustomstuff table {
- margin: 0;
- width: 100%;
- border-width: 1px;
- border-style: solid;
- border-spacing: 0;
-}
-
-#postcustomstuff tr {
- vertical-align: top;
-}
-
-#postcustomstuff table input,
-#postcustomstuff table select,
-#postcustomstuff table textarea {
- width: 96%;
- margin: 8px;
-}
-
-#side-sortables #postcustomstuff table input,
-#side-sortables #postcustomstuff table select,
-#side-sortables #postcustomstuff table textarea {
- margin: 3px;
-}
-
-#postcustomstuff th.left,
-#postcustomstuff td.left {
- width: 38%;
-}
-
-#postcustomstuff .submit input {
- margin: 0;
- width: auto;
-}
-
-#postcustomstuff #newmetaleft a {
- display: inline-block;
- margin: 0 8px 8px;
- text-decoration: none;
-}
-
-.no-js #postcustomstuff #enternew {
- display: none;
-}
-
-#post-body-content .compat-attachment-fields {
- margin-bottom: 20px;
-}
-
-.compat-attachment-fields th {
- padding-top: 5px;
- padding-right: 10px;
-}
-
-/*------------------------------------------------------------------------------
- 11.2 - Post Revisions
-------------------------------------------------------------------------------*/
-.revisions-control-frame,
-.revisions-diff-frame {
- position: relative;
-}
-
-.revisions-controls {
- padding-top: 40px;
- height: 100px;
- z-index: 1;
-}
-
-.revisions-controls input[type="checkbox"] {
- position: relative;
- top: -1px;
- vertical-align: text-bottom;
-}
-
-.revisions.pinned .revisions-controls {
- position: fixed;
- top: 0;
- padding-bottom: 10px;
-}
-
-.revisions-tickmarks {
- position: relative;
- margin: 0 auto;
- height: 0.8em;
- top: 7px;
- max-width: 70%;
- -moz-box-sizing: border-box;
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
-}
-
-.revisions-tickmarks > div {
- position: absolute;
- height: 100%;
- border-style: solid;
- border-width: 0 1px 0 0;
- -moz-box-sizing: border-box;
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
-}
-
-.revisions-tickmarks > div:first-child {
- border-width: 0;
-}
-
-.comparing-two-revisions .revisions-controls {
- height: 140px;
-}
-
-.revisions .diff-error {
- position: absolute;
- text-align: center;
- margin: 0 auto;
- width: 100%;
- display: none;
-}
-
-.revisions.diff-error .diff-error {
- display: block;
-}
-
-.revisions .loading-indicator {
- position: fixed;
- vertical-align: middle;
- opacity: 0;
- width: 100%;
- top: 50%;
- margin-left: -90px;
- -webkit-transition: opacity 0.5s;
- -moz-transition: opacity 0.5s;
- -ms-transition: opacity 0.5s;
- -o-transition: opacity 0.5s;
- transition: opacity 0.5s;
- filter: alpha(opacity=0); /* ie8 and earlier */
-}
-
-body.folded .revisions .loading-indicator {
- margin-left: -32px;
-}
-
-.revisions .loading-indicator span.spinner {
- display: block;
- margin: 0 auto;
- float: none;
-}
-
-.revisions.loading .loading-indicator {
- opacity: 1;
- filter: alpha(opacity=100); /* ie8 and earlier */
-}
-
-.revisions .diff {
- -webkit-transition: opacity 0.5s;
- -moz-transition: opacity 0.5s;
- -ms-transition: opacity 0.5s;
- -o-transition: opacity 0.5s;
- transition: opacity 0.5s;
-}
-
-.revisions.loading .diff {
- opacity: 0.5;
- filter: alpha(opacity=50); /* ie8 and earlier */
-}
-
-.revisions.diff-error .diff {
- visibility: hidden;
-}
-
-.revisions-meta {
- margin-top: 15px;
-}
-
-.revision-toggle-compare-mode {
- position: absolute;
- top: 0;
- right: 0;
-}
-
-.comparing-two-revisions .revisions-previous,
-.comparing-two-revisions .revisions-next,
-.revisions-meta .diff-meta-to strong {
- display: none;
-}
-
-.revisions-controls .author-card .date {
- color: #777;
-}
-
-.revisions-controls .author-card.autosave {
- color: #d54e21;
-}
-
-.revisions-controls .author-card .author-name {
- font-weight: bold;
-}
-
-.comparing-two-revisions .diff-meta-to strong {
- display: block;
-}
-
-.revisions-previous,
-.revisions-next {
- position: relative;
- z-index: 1;
-}
-
-.revisions-previous {
- float: left;
-}
-
-.revisions-next {
- float: right;
-}
-
-.revisions-controls .wp-slider {
- max-width: 70%;
- margin: 0 auto;
- top: -3px;
-}
-
-/* Revision meta box */
-.post-revisions li img,
-#revisions-meta-restored img {
- vertical-align: middle;
-}
-
-table.diff {
- table-layout: fixed;
- width: 100%;
- white-space: pre-wrap;
- word-wrap: break-word;
-}
-
-table.diff col.content {
- width: auto;
-}
-
-table.diff col.content.diffsplit {
- width: 48%;
-}
-
-table.diff col.diffsplit.middle {
- width: auto;
-}
-
-table.diff col.ltype {
- width: 30px;
-}
-
-table.diff tr {
- background-color: transparent;
-}
-
-table.diff td,
-table.diff th {
- padding: .5em;
- font-family: Consolas, Monaco, monospace;
-}
-
-table.diff .diff-deletedline del,
-table.diff .diff-addedline ins {
- text-decoration: none;
-}
-
-.diff-meta {
- -webkit-border-radius: 3px;
- border-radius: 3px;
- padding: 5px;
- clear: both;
- min-height: 32px;
-}
-
-.diff-title strong {
- line-height: 32px;
- min-width: 60px;
- text-align: right;
- float: left;
- margin-right: 5px;
-}
-
-.revisions-controls .author-card .avatar,
-.revisions-controls .author-card .author-info {
- float: left;
- margin-left: 6px;
- margin-right: 6px;
-}
-
-.revisions-controls .author-card .byline {
- display: block;
- font-size: 12px;
-}
-
-.revisions-controls .author-card .avatar {
- vertical-align: middle;
-}
-
-.diff-meta input.restore-revision {
- float: right;
- margin-left: 6px;
- margin-right: 6px;
- margin-top: 4px;
-}
-
-.diff-meta-from {
- display: none;
-}
-
-.comparing-two-revisions .diff-meta-from {
- display: block;
-}
-
-.revisions-tooltip {
- position: absolute;
- bottom: 105px;
- margin-right: 0;
- margin-left: -69px;
- z-index: 0;
- max-width: 350px;
- min-width: 130px;
- padding: 8px 4px;
- display: none;
- opacity: 0;
-}
-
-.revisions-tooltip.flipped {
- margin-left: 0;
- margin-right: -70px;
-}
-
-.revisions.pinned .revisions-tooltip {
- display: none !important;
-}
-
-.comparing-two-revisions .revisions-tooltip {
- bottom: 145px;
-}
-
-.revisions-tooltip-arrow {
- width: 70px;
- height: 15px;
- overflow: hidden;
- position: absolute;
- left: 0;
- margin-left: 35px;
- bottom: -15px;
-}
-
-.revisions-tooltip.flipped .revisions-tooltip-arrow {
- margin-left: 0;
- margin-right: 35px;
- left: auto;
- right: 0;
-}
-
-.revisions-tooltip-arrow > span {
- content: "";
- position: absolute;
- left: 20px;
- top: -20px;
- width: 25px;
- height: 25px;
- -webkit-transform: rotate(45deg);
- -moz-transform: rotate(45deg);
- -ms-transform: rotate(45deg);
- -o-transform: rotate(45deg);
- transform: rotate(45deg);
-}
-
-.revisions-tooltip.flipped .revisions-tooltip-arrow > span {
- left: auto;
- right: 20px;
-}
-
-.ie8 .revisions-tooltip-arrow > span {
- left: 15px;
- top: -25px;
- -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476)";
-}
-
-.ie8 .revisions-tooltip.flipped .revisions-tooltip-arrow > span {
- right: 25px;
-}
-
-.revisions-tooltip,
-.revisions-tooltip-arrow > span {
- border-width: 1px;
- border-style: solid;
-}
-
-div.revisions-controls > .wp-slider > .ui-slider-handle {
- margin-left: -10px;
-}
-
- /* jQuery UI Slider */
-.wp-slider.ui-slider {
- position: relative;
- border-width: 1px;
- border-style: solid;
- border-radius: 3px;
- text-align: left;
- cursor: pointer;
-}
-
-.wp-slider .ui-slider-handle {
- position: absolute;
- z-index: 2;
- margin-top: -3px;
- width: 19px;
- height: 19px;
- border-width: 1px;
- border-style: solid;
- border-radius: 50%;
-}
-
-.wp-slider .ui-slider-handle:before {
- content: "";
- position: absolute;
- top: 6px;
- left: 3px;
- height: 8px;
- width: 13px;
- background: url(../images/arrows-pr.png) no-repeat -2px -47px;
-}
-
-.wp-slider .ui-slider-handle.from-handle:before,
-.wp-slider .ui-slider-handle.to-handle:before {
- height: 8px;
- width: 7px;
-}
-
-.wp-slider .ui-slider-handle.from-handle:before {
- background-position: -5px -84px;
- left: 7px;
-}
-
-.wp-slider .ui-slider-handle.to-handle:before {
- background-position: -4px -65px;
- left: 5px;
-}
-
-.wp-slider .ui-slider-range {
- position: absolute;
- font-size: .7em;
- display: block;
- border: 0;
- background-color: transparent;
- background-image: none;
-}
-
-.wp-slider.ui-slider-horizontal {
- height: .8em;
-}
-
-.wp-slider.ui-slider-horizontal .ui-slider-handle {
- top: -.25em;
- margin-left: -.6em;
-}
-
-.wp-slider.ui-slider-horizontal .ui-slider-range {
- top: 0;
- height: 100%;
-}
-
-.wp-slider.ui-slider-horizontal .ui-slider-range-min {
- left: 0;
-}
-
-.wp-slider.ui-slider-horizontal .ui-slider-range-max {
- right: 0;
-}
-
-
-/*------------------------------------------------------------------------------
- 11.3 - Featured Images
-------------------------------------------------------------------------------*/
-
-#select-featured-image {
- padding: 4px 0;
- overflow: hidden;
-}
-
-#select-featured-image img {
- max-width: 100%;
- height: auto;
- margin-bottom: 10px;
-}
-
-#select-featured-image a {
- float: left;
- clear: both;
-}
-
-#select-featured-image .remove {
- display: none;
- margin-top: 10px;
-}
-
-.js #select-featured-image.has-featured-image .remove {
- display: inline-block;
-}
-
-.no-js #select-featured-image .choose {
- display: none;
-}
-
-/*------------------------------------------------------------------------------
- 11.4 - Post formats
-------------------------------------------------------------------------------*/
-
-a.post-state-format {
- overflow: hidden;
- display: inline-block;
- vertical-align: middle;
- height: 16px;
- width: 16px;
- margin-right: 5px;
- background-repeat: no-repeat;
- text-indent: -999em;
-}
-
-#post-formats-select {
- line-height: 2em;
-}
-
-label.post-format-icon {
- margin-left: 5px;
- padding: 2px 0 2px 21px;
-}
-
-.post-format-icon.post-format-standard {
- background-position: 0 0;
-}
-
-.post-format-icon.post-format-image {
- background-position: 0 -32px;
-}
-
-.post-format-icon.post-format-gallery {
- background-position: 0 -64px;
-}
-
-.post-format-icon.post-format-audio {
- background-position: 0 -96px;
-}
-
-.post-format-icon.post-format-video {
- background-position: 0 -128px;
-}
-
-.post-format-icon.post-format-chat {
- background-position: 0 -160px;
-}
-
-.post-format-icon.post-format-status {
- background-position: 0 -192px;
-}
-
-.post-format-icon.post-format-aside {
- background-position: 0 -224px;
-}
-
-.post-format-icon.post-format-quote {
- background-position: 0 -256px;
-}
-
-.post-format-icon.post-format-link {
- background-position: 0 -288px;
-}
-
-
-/*------------------------------------------------------------------------------
- 12.0 - Categories
-------------------------------------------------------------------------------*/
-
-.category-adder {
- margin-left: 120px;
- padding: 4px 0;
-}
-
-.category-adder h4 {
- margin: 0 0 8px;
-}
-
-#side-sortables .category-adder {
- margin: 0;
-}
-
-#post-body ul.add-menu-item-tabs {
- float: left;
- width: 120px;
- text-align: right;
- /* Negative margin for the sake of those without JS: all tabs display */
- margin: 0 -120px 0 5px;
- padding: 0;
-}
-
-#post-body ul.add-menu-item-tabs li {
- padding: 8px;
-}
-
-#post-body ul.add-menu-item-tabs li.tabs {
- -webkit-border-top-left-radius: 3px;
- -webkit-border-bottom-left-radius: 3px;
- border-top-left-radius: 3px;
- border-bottom-left-radius: 3px;
-}
-
-.wp-tab-panel,
-.categorydiv div.tabs-panel,
-.customlinkdiv div.tabs-panel,
-.posttypediv div.tabs-panel,
-.taxonomydiv div.tabs-panel {
- min-height: 42px;
- max-height: 200px;
- overflow: auto;
- padding: 0 0.9em;
- border-style: solid;
- border-width: 1px;
-}
-
-div.tabs-panel-active {
- display:block;
-}
-
-div.tabs-panel-inactive {
- display:none;
-}
-
-#front-page-warning,
-#front-static-pages ul,
-ul.export-filters,
-.inline-editor ul.cat-checklist ul,
-.categorydiv ul.categorychecklist ul,
-.customlinkdiv ul.categorychecklist ul,
-.posttypediv ul.categorychecklist ul,
-.taxonomydiv ul.categorychecklist ul {
- margin-left: 18px;
-}
-
-ul.categorychecklist li {
- margin: 0;
- padding: 0;
- line-height: 19px;
- word-wrap: break-word;
-}
-
-.categorydiv .tabs-panel,
-.customlinkdiv .tabs-panel,
-.posttypediv .tabs-panel,
-.taxonomydiv .tabs-panel {
- border-width: 3px;
- border-style: solid;
-}
-
-.form-wrap p,
-.form-wrap label {
- font-size: 11px;
-}
-
-.form-wrap label {
- display: block;
- padding: 2px;
- font-size: 12px;
-}
-
-.form-field input,
-.form-field textarea {
- border-style: solid;
- border-width: 1px;
- width: 95%;
-}
-
-p.description,
-.form-wrap p {
- margin: 2px 0 5px;
-}
-
-p.help,
-p.description,
-span.description,
-.form-wrap p {
- font-size: 12px;
- font-style: italic;
- font-family: sans-serif;
-}
-
-.form-wrap .form-field {
- margin: 0 0 10px;
- padding: 8px 0;
-}
-
-.form-wrap .form-field #parent {
- max-width: 100%;
-}
-
-.col-wrap h3 {
- margin: 12px 0;
- font-size: 1.1em;
-}
-
-.col-wrap p.submit {
- margin-top: -10px;
-}
-
-
-/*------------------------------------------------------------------------------
- 13.0 - Tags
-------------------------------------------------------------------------------*/
-
-#poststuff .taghint {
- color: #aaa;
- margin: 15px 0 -24px 12px;
-}
-
-#poststuff .tagsdiv .howto {
- margin: 0 0 6px 8px;
-}
-
-.ajaxtag .newtag {
- position: relative;
-}
-
-.tagsdiv .newtag {
- width: 180px;
-}
-
-.tagsdiv .the-tags {
- display: block;
- height: 60px;
- margin: 0 auto;
- overflow: auto;
- width: 260px;
-}
-
-#post-body-content .tagsdiv .the-tags {
- margin: 0 5px;
-}
-
-p.popular-tags {
- -webkit-border-radius: 8px;
- border-radius: 8px;
- border-width: 1px;
- border-style: solid;
- line-height: 2em;
- max-width: 1000px;
- padding: 8px 12px 12px;
- text-align: justify;
-}
-
-p.popular-tags a {
- padding: 0 3px;
-}
-
-.tagcloud {
- width: 97%;
- margin: 0 0 40px;
- text-align: justify;
-}
-
-.tagcloud h3 {
- margin: 2px 0 12px;
-}
-
-.ac_results {
- padding: 0;
- margin: 0;
- list-style: none;
- position: absolute;
- z-index: 10000;
- display: none;
- border-width: 1px;
- border-style: solid;
-}
-
-.ac_results li {
- padding: 2px 5px;
- white-space: nowrap;
- text-align: left;
-}
-
-.ac_over {
- cursor: pointer;
-}
-
-.ac_match {
- text-decoration: underline;
-}
-
-/* links tables */
-table.links-table {
- width: 100%;
-}
-
-.links-table th {
- font-weight: normal;
- text-align: left;
- vertical-align: top;
- min-width: 80px;
- width: 20%;
- word-wrap: break-word;
-}
-
-.links-table th,
-.links-table td {
- padding: 5px 0;
-}
-
-.links-table td label {
- margin-right: 8px;
-}
-
-.links-table td input[type="text"],
-.links-table td textarea {
- width: 100%;
-}
-
-.links-table #link_rel {
- max-width: 280px;
-}
-
-/*------------------------------------------------------------------------------
- 14.0 - Media Screen
-------------------------------------------------------------------------------*/
-
-.media-item .describe {
- border-collapse: collapse;
- width: 100%;
- border-top-style: solid;
- border-top-width: 1px;
- clear: both;
- cursor: default;
-}
-
-.media-item.media-blank .describe {
- border: 0;
-}
-
-.media-item .describe th {
- vertical-align: top;
- text-align: left;
- padding: 5px 10px 10px;
- width: 140px;
-}
-
-.media-item .describe .align th {
- padding-top: 0;
-}
-
-.media-item .media-item-info tr {
- background-color: transparent;
-}
-
-.media-item .describe td {
- padding: 0 8px 8px 0;
- vertical-align: top;
-}
-
-.media-item thead.media-item-info td {
- padding: 4px 10px 0;
-}
-
-.media-item .media-item-info .A1B1 {
- padding: 0 0 0 10px;
-}
-
-.media-item td.savesend {
- padding-bottom: 15px;
-}
-
-.media-item .thumbnail {
- max-height: 128px;
- max-width: 128px;
-}
-
-#wpbody-content #async-upload-wrap a {
- display: none;
-}
-
-.media-upload-form {
- margin-top: 20px;
-}
-
-.media-upload-form td label {
- margin-right: 6px;
- margin-left: 2px;
-}
-
-.media-upload-form .align .field label {
- display: inline;
- padding: 0 0 0 23px;
- margin: 0 1em 0 3px;
- font-weight: bold;
-}
-
-.media-upload-form tr.image-size label {
- margin: 0 0 0 5px;
- font-weight: bold;
-}
-
-.media-upload-form th.label label {
- font-weight: bold;
- margin: 0.5em;
- font-size: 13px;
-}
-
-.media-upload-form th.label label span {
- padding: 0 5px;
-}
-
-abbr.required {
- border: medium none;
- text-decoration: none;
-}
-
-.media-item .describe input[type="text"],
-.media-item .describe textarea {
- width: 460px;
-}
-
-.media-item .describe p.help {
- margin: 0;
- padding: 0 0 0 5px;
-}
-
-.media-item .edit-attachment,
-.describe-toggle-on,
-.describe-toggle-off {
- display: block;
- line-height: 36px;
- float: right;
- margin-right: 15px;
-}
-
-.media-item .describe-toggle-off,
-.media-item.open .describe-toggle-on {
- display: none;
-}
-
-.media-item.open .describe-toggle-off {
- display: block;
-}
-
-#media-items .media-item {
- border-style: solid;
- border-width: 1px;
- min-height: 36px;
- position: relative;
- margin-top: -1px;
- width: 100%;
-}
-
-#media-items {
- width: 623px;
-}
-
-.media-new-php #media-items {
- margin: 1em 0;
-}
-
-#media-items:empty {
- border: 0 none;
-}
-
-.media-item .filename {
- line-height: 36px;
- overflow: hidden;
- padding: 0 10px;
-}
-
-.media-item .error-div {
- padding-left: 10px;
-}
-
-.media-item .pinkynail {
- float: left;
- margin: 2px 2px 0;
- max-width: 40px;
- max-height: 32px;
-}
-
-.media-item .startopen,
-.media-item .startclosed {
- display: none;
-}
-
-.media-item .original {
- position: relative;
- height: 34px;
-}
-
-.media-item .progress {
- float: right;
- height: 22px;
- margin: 6px 10px 0 0;
- width: 200px;
- line-height: 2em;
- padding: 0;
- overflow: hidden;
- margin-bottom: 2px;
- border: 1px solid #d1d1d1;
- background: #f7f7f7;
- background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#f7f7f7));
- background-image: -webkit-linear-gradient(bottom, #fff, #f7f7f7);
- background-image: -moz-linear-gradient(bottom, #fff, #f7f7f7);
- background-image: -o-linear-gradient(bottom, #fff, #f7f7f7);
- background-image: linear-gradient(to top, #fff, #f7f7f7);
- -webkit-border-radius: 3px;
- border-radius: 3px;
- -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.1);
- box-shadow: inset 0 0 3px rgba(0,0,0,0.1);
-}
-
-.media-item .bar {
- z-index: 9;
- width: 0;
- height: 100%;
- margin-top: -24px;
- background-color: #8cc1e9;
- background-image: -webkit-gradient(linear, left bottom, left top, from(#72a7cf), to(#8cc1e9));
- background-image: -webkit-linear-gradient(bottom, #72a7cf, #8cc1e9);
- background-image: -moz-linear-gradient(bottom, #72a7cf, #8cc1e9);
- background-image: -o-linear-gradient(bottom, #72a7cf, #8cc1e9);
- background-image: linear-gradient(to top, #72a7cf, #8cc1e9);
- -webkit-border-radius: 3px;
- border-radius: 3px;
- -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.3);
- box-shadow: 0 0 3px rgba(0,0,0,0.3);
-}
-
-.media-item .progress .percent {
- z-index: 10;
- position: relative;
- width: 200px;
- padding: 0 8px;
- text-shadow: 0 1px 0 rgba(255,255,255,0.4);
- color: rgba(0,0,0,0.6);
-}
-
-.upload-php .fixed .column-parent {
- width: 15%;
-}
-
-.js .html-uploader #plupload-upload-ui {
- display: none;
-}
-
-.js .html-uploader #html-upload-ui {
- display: block;
-}
-
-.media-upload-form .media-item.error {
- margin: 0;
- padding: 0;
-}
-
-.media-upload-form .media-item.error p,
-.media-item .error-div {
- line-height: 16px;
- margin: 5px 10px;
- padding: 0;
-}
-
-.media-item .error-div a.dismiss {
- display: block;
- float: right;
- margin: 5px 4px 0 15px;
-}
-
-/*------------------------------------------------------------------------------
- 14.1 - Media Library
-------------------------------------------------------------------------------*/
-
-.find-box {
- width: 600px;
- height: 300px;
- overflow: hidden;
- padding: 33px 0 51px;
- position: absolute;
- z-index: 1000;
-}
-
-.find-box-head {
- cursor: move;
- font-weight: bold;
- height: 2em;
- line-height: 2em;
- padding: 1px 12px;
- position: absolute;
- top: 5px;
- width: 100%;
-}
-
-.find-box-inside {
- overflow: auto;
- padding: 6px;
- height: 100%;
-}
-
-.find-box-search {
- overflow: hidden;
- padding: 9px;
- position: relative;
-}
-
-.find-box-search .spinner {
- float: none;
- left: 125px;
- position: absolute;
- top: 9px;
-}
-
-#find-posts-input {
- float: left;
- width: 140px;
- height: 24px;
-}
-
-#find-posts-search {
- float: left;
- margin: 1px 4px 0 3px;
-}
-
-#find-posts-response {
- margin: 8px 0;
- padding: 0 1px 6px;
-}
-
-#find-posts-response table {
- width: 100%;
-}
-
-#find-posts-response .found-radio {
- padding: 3px 0 0 8px;
- width: 15px;
-}
-
-.find-box-buttons {
- padding: 8px;
- overflow: hidden;
-}
-
-.find-box #resize-se {
- position: absolute;
- right: 1px;
- bottom: 1px;
-}
-
-.ui-find-overlay {
- position: absolute;
- top: 0;
- left: 0;
- background-color: #000;
- opacity: 0.6;
- filter: alpha(opacity=60);
-}
-
-ul#dismissed-updates {
- display: none;
-}
-
-form.upgrade {
- margin-top: 8px;
-}
-
-form.upgrade .hint {
- font-style: italic;
- font-size: 85%;
- margin: -0.5em 0 2em 0;
-}
-
-#poststuff .inside .the-tagcloud {
- margin: 5px 0 10px;
- padding: 8px;
- border-width: 1px;
- border-style: solid;
- line-height: 1.8em;
- word-spacing: 3px;
- -webkit-border-radius: 6px;
- border-radius: 6px;
-}
-
-.drag-drop #drag-drop-area {
- border: 4px dashed #DDDDDD;
- height: 200px;
-}
-
-.drag-drop .drag-drop-inside {
- margin: 70px auto 0;
- width: 250px;
-}
-
-.drag-drop-inside p {
- color: #aaa;
- font-size: 14px;
- margin: 5px 0;
- display: none;
-}
-
-.drag-drop .drag-drop-inside p {
- text-align: center;
-}
-
-.drag-drop-inside p.drag-drop-info {
- font-size: 20px;
-}
-
-.drag-drop .drag-drop-inside p,
-.drag-drop-inside p.drag-drop-buttons {
- display: block;
-}
-
-/*
-#drag-drop-area:-moz-drag-over {
- border-color: #83b4d8;
-}
-borger color while dragging a file over the uploader drop area */
-.drag-drop.drag-over #drag-drop-area {
- border-color: #83b4d8;
-}
-
-#plupload-upload-ui {
- position: relative;
-}
-
-
-/*------------------------------------------------------------------------------
- 14.2 - Image Editor
-------------------------------------------------------------------------------*/
-
-.describe .image-editor {
- vertical-align: top;
-}
-
-.imgedit-wrap {
- position: relative;
-}
-
-.imgedit-settings p {
- margin: 8px 0;
-}
-
-.post-php .imgedit-wrap table {
- width: 100%;
-}
-
-.describe .imgedit-wrap table td,
-.wp_attachment_holder .imgedit-wrap table td {
- vertical-align: top;
- padding-top: 0;
-}
-
-.describe .imgedit-wrap table td.imgedit-settings {
- padding: 0 5px;
-}
-
-.wp_attachment_holder .imgedit-wrap table td.imgedit-settings {
- width: 250px;
-}
-
-td.imgedit-settings input {
- margin-top: 0;
- vertical-align: middle;
-}
-
-.imgedit-wait {
- position: absolute;
- top: 0;
- background: #fff url(../images/wpspin_light.gif) no-repeat scroll 22px 10px;
- background-size: 16px 16px;
- opacity: 0.7;
- filter: alpha(opacity=70);
- width: 100%;
- height: 500px;
- display: none;
-}
-
-.spinner {
- background: url(../images/wpspin_light.gif) no-repeat;
- background-size: 16px 16px;
- display: none;
- float: right;
- opacity: 0.7;
- filter: alpha(opacity=70);
- width: 16px;
- height: 16px;
- margin: 5px 5px 0;
-}
-
-.no-float {
- float: none;
-}
-
-.media-disabled,
-.imgedit-settings .disabled {
- color: grey;
-}
-
-.wp_attachment_image,
-.A1B1 {
- overflow: hidden;
-}
-
-.wp_attachment_image .button,
-.A1B1 .button {
- float: left;
-}
-
-.no-js .wp_attachment_image .button {
- display: none;
-}
-
-.wp_attachment_image .spinner,
-.A1B1 .spinner {
- float: left;
- padding: 0 4px 4px;
- vertical-align: bottom;
-}
-
-.imgedit-menu {
- margin: 0 0 12px;
- min-width: 300px;
-}
-
-.imgedit-menu div {
- float: left;
- width: 32px;
- height: 32px;
-}
-
-.imgedit-crop-wrap {
- position: relative;
-}
-
-.imgedit-crop {
- background: transparent url('../images/imgedit-icons.png') no-repeat scroll -9px -31px;
- margin: 0 8px 0 0;
-}
-
-.imgedit-crop.disabled:hover {
- background-position: -9px -31px;
-}
-
-.imgedit-crop:hover {
- background-position: -9px -1px;
-}
-
-.imgedit-rleft {
- background: transparent url('../images/imgedit-icons.png') no-repeat scroll -46px -31px;
- margin: 0 3px;
-}
-
-.imgedit-rleft.disabled:hover {
- background-position: -46px -31px;
-}
-
-.imgedit-rleft:hover {
- background-position: -46px -1px;
-}
-
-.imgedit-rright {
- background: transparent url('../images/imgedit-icons.png') no-repeat scroll -77px -31px;
- margin: 0 8px 0 3px;
-}
-
-.imgedit-rright.disabled:hover {
- background-position: -77px -31px;
-}
-
-.imgedit-rright:hover {
- background-position: -77px -1px;
-}
-
-.imgedit-flipv {
- background: transparent url('../images/imgedit-icons.png') no-repeat scroll -115px -31px;
- margin: 0 3px;
-}
-
-.imgedit-flipv.disabled:hover {
- background-position: -115px -31px;
-}
-
-.imgedit-flipv:hover {
- background-position: -115px -1px;
-}
-
-.imgedit-fliph {
- background: transparent url('../images/imgedit-icons.png') no-repeat scroll -147px -31px;
- margin: 0 8px 0 3px;
-}
-
-.imgedit-fliph.disabled:hover {
- background-position: -147px -31px;
-}
-
-.imgedit-fliph:hover {
- background-position: -147px -1px;
-}
-
-.imgedit-undo {
- background: transparent url('../images/imgedit-icons.png') no-repeat scroll -184px -31px;
- margin: 0 3px;
-}
-
-.imgedit-undo.disabled:hover {
- background-position: -184px -31px;
-}
-
-.imgedit-undo:hover {
- background-position: -184px -1px;
-}
-
-.imgedit-redo {
- background: transparent url('../images/imgedit-icons.png') no-repeat scroll -215px -31px;
- margin: 0 8px 0 3px;
-}
-
-.imgedit-redo.disabled:hover {
- background-position: -215px -31px;
-}
-
-.imgedit-redo:hover {
- background-position: -215px -1px;
-}
-
-.imgedit-applyto img {
- margin: 0 8px 0 0;
-}
-
-.imgedit-group-top {
- margin: 5px 0;
-}
-
-.imgedit-applyto .imgedit-label {
- padding: 2px 0 0;
- display: block;
-}
-
-.imgedit-help {
- display: none;
- font-style: italic;
- margin-bottom: 8px;
-}
-
-a.imgedit-help-toggle {
- text-decoration: none;
-}
-
-.form-table td.imgedit-response {
- padding: 0;
-}
-
-.imgedit-submit {
- margin: 8px 0;
-}
-
-.imgedit-submit-btn {
- margin-left: 20px;
-}
-
-.imgedit-wrap .nowrap {
- white-space: nowrap;
-}
-
-span.imgedit-scale-warn {
- color: red;
- font-size: 20px;
- font-style: normal;
- visibility: hidden;
- vertical-align: middle;
-}
-
-.imgedit-group {
- border-width: 1px;
- border-style: solid;
- -webkit-border-radius: 3px;
- border-radius: 3px;
- margin-bottom: 8px;
- padding: 2px 10px;
-}
-
-/*------------------------------------------------------------------------------
- 15.0 - Comments Screen
-------------------------------------------------------------------------------*/
-
-.form-table {
- border-collapse: collapse;
- margin-top: 0.5em;
- width: 100%;
- margin-bottom: -8px;
- clear: both;
-}
-
-.form-table td {
- margin-bottom: 9px;
- padding: 8px 10px;
- line-height: 20px;
- font-size: 12px;
-}
-
-.form-table th,
-.form-wrap label {
- font-weight: normal;
- text-shadow: #fff 0 1px 0;
-}
-
-.form-table th {
- vertical-align: top;
- text-align: left;
- padding: 10px;
- width: 200px;
-}
-
-.form-table th.th-full {
- width: auto;
-}
-
-.form-table div.color-option {
- display: block;
- clear: both;
- margin-top: 12px;
-}
-
-.form-table input.tog {
- margin-top: 2px;
- margin-right: 2px;
- float: left;
-}
-
-.form-table td p {
- margin-top: 4px;
-}
-
-.form-table table.color-palette {
- vertical-align: bottom;
- float: left;
- margin: -12px 3px 11px;
-}
-
-.form-table .color-palette td {
- border-width: 1px 1px 0;
- border-style: solid solid none;
- height: 10px;
- line-height: 20px;
- width: 10px;
-}
-
-.commentlist li {
- padding: 1em 1em .2em;
- margin: 0;
- border-bottom-width: 1px;
- border-bottom-style: solid;
-}
-
-.commentlist li li {
- border-bottom: 0;
- padding: 0;
-}
-
-.commentlist p {
- padding: 0;
- margin: 0 0 .8em;
-}
-
-/* reply to comments */
-#replyrow input {
- border-width: 1px;
- border-style: solid;
-}
-
-#replyrow td {
- padding: 2px;
-}
-
-#replysubmit {
- margin: 0;
- padding: 0 5px 3px;
- text-align: center;
-}
-
-#replysubmit .spinner {
- padding: 2px 0 0;
- vertical-align: top;
- float: right;
-}
-
-#replysubmit .button {
- margin-right: 5px;
-}
-
-#replysubmit .error {
- color: red;
- line-height: 21px;
- text-align: center;
-}
-
-#replyrow h5 {
- margin: .2em 0 0;
- padding: 0 5px;
- line-height: 1.4em;
- font-size: 1em;
-}
-
-#edithead .inside {
- float: left;
- padding: 3px 0 2px 5px;
- margin: 0;
- text-align: center;
-}
-
-#edithead .inside input {
- width: 180px;
-}
-
-#edithead label {
- padding: 2px 0;
-}
-
-#replycontainer {
- padding: 5px;
-}
-
-#replycontent {
- height: 120px;
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-.comment-php .wp-editor-area {
- height: 200px;
-}
-
-.comment-ays {
- margin-bottom: 0;
- border-style: solid;
- border-width: 1px;
-}
-
-.comment-ays th {
- border-right-style: solid;
- border-right-width: 1px;
-}
-
-.trash-undo-inside,
-.spam-undo-inside {
- margin: 1px 8px 1px 0;
- line-height: 16px;
-}
-
-.spam-undo-inside .avatar,
-.trash-undo-inside .avatar {
- height: 20px;
- width: 20px;
- margin-right: 8px;
- vertical-align: middle;
-}
-
-.stuffbox .editcomment {
- clear: none;
-}
-
-#comment-status-radio p {
- margin: 3px 0 5px;
-}
-
-#comment-status-radio input {
- margin: 2px 3px 5px 0;
- vertical-align: middle;
-}
-
-#comment-status-radio label {
- padding: 5px 0;
-}
-
-.commentlist .avatar {
- vertical-align: text-top;
-}
-
-
-/*------------------------------------------------------------------------------
- 16.0 - Themes
-------------------------------------------------------------------------------*/
-
-.theme-install-php .tablenav {
- height: auto;
-}
-
-.theme-install-php .spinner {
- margin-top: 9px;
-}
-
-h3.available-themes {
- margin: 0.3em 0 1em;
- float: left;
-}
-
-.available-theme {
- display: inline-block;
- margin-right: 10px;
- overflow: hidden;
- padding: 20px 20px 20px 0;
- vertical-align: top;
- width: 300px;
-}
-
-.available-theme .screenshot {
- width: 300px;
- height: 225px;
- display: block;
- border-width: 1px;
- border-style: solid;
- margin-bottom: 10px;
- overflow: hidden;
-}
-
-.available-theme img {
- width: 300px;
-}
-
-.available-theme h3 {
- margin: 15px 0 0;
-}
-
-.available-theme .theme-author {
- line-height: 18px;
-}
-
-.available-theme .action-links {
- margin-top: 10px;
- overflow: hidden;
-}
-
-.available-theme a.screenshot:focus {
- border-color: #777;
-}
-
-#current-theme .theme-info li,
-.theme-options li,
-.available-theme .action-links li {
- float: left;
- padding-right: 10px;
- margin-right: 10px;
- border-right: 1px solid #dfdfdf;
-}
-
-.available-theme .action-links li {
- padding-right: 8px;
- margin-right: 8px;
-}
-
-.ie8 .available-theme .action-links li {
- padding-right: 7px;
- margin-right: 7px;
-}
-
-#current-theme .theme-info li:last-child,
-.theme-options li:last-child,
-.available-theme .action-links li:last-child {
- padding-right: 0;
- margin-right: 0;
- border-right: 0;
-}
-
-.available-theme .action-links .delete-theme {
- float: right;
- margin-left: 8px;
- margin-right: 0;
-}
-
-.available-theme .action-links .delete-theme a {
- color: red;
- padding: 2px;
-}
-
-.available-theme .action-links .delete-theme a:hover {
- background: red;
- color: #fff;
- text-decoration: none;
-}
-
-.available-theme .action-links p {
- float: left;
-}
-
-#current-theme {
- margin: 20px 0 10px;
- padding: 0 0 20px;
- border-bottom-width: 1px;
- border-bottom-style: solid;
- overflow: hidden;
-}
-
-#current-theme.has-screenshot {
- padding-left: 330px;
-}
-
-#current-theme h3 {
- margin: 0;
- font-size: 12px;
- font-weight: normal;
- color: #999;
-}
-
-#current-theme h4 {
- margin: 3px 0 16px;
- font-size: 20px;
-}
-
-#current-theme h4 span {
- margin-left: 20px;
- font-size: 12px;
- font-weight: normal;
-}
-
-#current-theme a {
- border-bottom: none;
-}
-
-#current-theme .theme-info {
- margin: 1em 0;
- overflow: hidden;
-}
-
-#current-theme .theme-description {
- margin-top: 5px;
- max-width: 600px;
- line-height: 1.6em;
-}
-
-#current-theme img {
- float: left;
- width: 300px;
- margin-left: -330px;
-
- border-width: 1px;
- border-style: solid;
-}
-
-.theme-options {
- overflow: hidden;
- font-size: 14px;
- padding-bottom: 10px;
-}
-
-.theme-options .load-customize {
- margin-right: 30px;
- float: left;
-}
-
-.theme-options span {
- float: left;
- margin-right: 10px;
- text-transform: uppercase;
- font-size: 11px;
- line-height: 18px;
- color: #999;
-}
-
-.theme-options ul {
- float: left;
- margin: 0;
-}
-
-/* Allow for three-up in small windows when sidebar is collapsed */
-@media only screen and (max-width: 1200px) {
- .folded .available-theme,
- .folded .available-theme .screenshot {
- width: 300px;
- }
-
- .folded .available-theme .screenshot {
- height: 225px;
- }
-
- .folded #current-theme img {
- width: 300px;
- }
-
- .folded #current-theme.has-screenshot {
- padding-left: 330px;
- }
-
- .folded #current-theme img {
- margin-left: -330px;
- }
-}
-
-/* Adjust three-up display in smaller windows when sidebar is collapsed */
-@media only screen and (max-width: 1079px) {
- .folded .available-theme,
- .folded .available-theme .screenshot {
- width: 270px;
- }
-
- .folded .available-theme .screenshot {
- height: 203px;
- }
-
- .folded #current-theme img {
- width: 270px;
- }
-
- .folded #current-theme.has-screenshot {
- padding-left: 300px;
- }
-
- .folded #current-theme img {
- margin-left: -300px;
- }
-}
-
-/* Allow for three-up on 1024px wide screens, e.g. tablets */
-@media only screen and (max-width: 1200px) {
- .available-theme,
- .available-theme .screenshot,
- #current-theme img {
- width: 240px;
- }
-
- .available-theme .screenshot {
- height: 180px;
- }
-
- .available-theme img {
- width: 100%;
- }
-
- #current-theme.has-screenshot {
- padding-left: 270px;
- }
-
- #current-theme img {
- margin-left: -270px;
- }
-}
-
-#post-body ul.add-menu-item-tabs li.tabs a,
-#TB_window #TB_title a.tb-theme-preview-link,
-#TB_window #TB_title a.tb-theme-preview-link:visited {
- font-weight: bold;
- text-decoration: none;
-}
-
-#TB_window #TB_title {
- background-color: #222;
- color: #cfcfcf;
-}
-
-#broken-themes {
- text-align: left;
- width: 50%;
- border-spacing: 3px;
- padding: 3px;
-}
-
-.theme-install-php h4 {
- margin: 2.5em 0 8px;
-}
-
-
-/*------------------------------------------------------------------------------
- 16.1 - Custom Header Screen
-------------------------------------------------------------------------------*/
-
-.appearance_page_custom-header #headimg {
- border: 1px solid #DFDFDF;
- overflow: hidden;
- width: 100%;
-}
-
-.appearance_page_custom-header #upload-form p label {
- font-size: 12px;
-}
-
-.appearance_page_custom-header .available-headers .default-header {
- float: left;
- margin: 0 20px 20px 0;
-}
-
-.appearance_page_custom-header .random-header {
- clear: both;
- margin: 0 20px 20px 0;
- vertical-align: middle;
-}
-
-.appearance_page_custom-header .available-headers label input,
-.appearance_page_custom-header .random-header label input {
- margin-right: 10px;
-}
-
-.appearance_page_custom-header .available-headers label img {
- vertical-align: middle;
-}
-
-
-/*------------------------------------------------------------------------------
- 16.2 - Custom Background Screen
-------------------------------------------------------------------------------*/
-
-div#custom-background-image {
- min-height: 100px;
- border: 1px solid #dfdfdf;
-}
-
-div#custom-background-image img {
- max-width: 400px;
- max-height: 300px;
-}
-
-
-/*------------------------------------------------------------------------------
- 16.3 - Tabbed Admin Screen Interface (Experimental)
-------------------------------------------------------------------------------*/
-
-.nav-tab {
- border-style: solid;
- border-width: 1px 1px 0;
- color: #aaa;
- text-shadow: #fff 0 1px 0;
- font-size: 12px;
- line-height: 16px;
- display: inline-block;
- padding: 4px 14px 6px;
- text-decoration: none;
- margin: 0 6px -1px 0;
- -webkit-border-top-left-radius: 3px;
- -webkit-border-top-right-radius: 3px;
- border-top-left-radius: 3px;
- border-top-right-radius: 3px;
-}
-
-.nav-tab-active {
- border-width: 1px;
- color: #464646;
-}
-
-h2.nav-tab-wrapper, h3.nav-tab-wrapper {
- border-bottom-width: 1px;
- border-bottom-style: solid;
- padding-bottom: 0;
-}
-
-h2 .nav-tab {
- padding: 4px 10px 6px;
- font-weight: 200;
- font-size: 20px;
- line-height: 24px;
-
-}
-
-
-/*------------------------------------------------------------------------------
- 17.0 - Plugins
-------------------------------------------------------------------------------*/
-
-#dashboard_right_now .versions .b,
-#post-status-display,
-#post-visibility-display,
-#adminmenu .wp-submenu li.current,
-#adminmenu .wp-submenu li.current a,
-#adminmenu .wp-submenu li.current a:hover,
-.media-item .percent,
-.plugins .name,
-#pass-strength-result.strong,
-#pass-strength-result.short,
-#ed_reply_toolbar #ed_reply_strong,
-.item-controls .item-order a,
-.feature-filter .feature-name {
- font-weight: bold;
-}
-
-.plugins p {
- margin: 0 4px;
- padding: 0;
-}
-
-.plugins .desc p {
- margin: 0 0 8px;
-}
-
-.plugins td.desc {
- line-height: 1.5em;
-}
-
-.plugins .desc ul,
-.plugins .desc ol {
- margin: 0 0 0 2em;
-}
-
-.plugins .desc ul {
- list-style-type: disc;
-}
-
-.plugins .row-actions {
- padding: 0;
-}
-
-.plugins tbody th.check-column {
- padding: 7px 0;
-}
-
-.plugins .inactive td,
-.plugins .inactive th,
-.plugins .active td,
-.plugins .active th {
- border-top-style: solid;
- border-top-width: 1px;
- padding: 5px 7px 0;
-}
-
-.plugins .update th,
-.plugins .update td {
- border-bottom: 0;
-}
-.plugin-update-tr td {
- border-top: 0;
-}
-
-#wpbody-content .plugins .plugin-title,
-#wpbody-content .plugins .theme-title {
- padding-right: 12px;
- white-space:nowrap;
-}
-
-.plugins .second,
-.plugins .row-actions {
- padding: 0 0 5px;
-}
-
-.plugins .update .second,
-.plugins .update .row-actions {
- padding-bottom: 0;
-}
-
-.plugins-php .widefat tfoot th,
-.plugins-php .widefat tfoot td {
- border-top-style: solid;
- border-top-width: 1px;
-}
-
-.plugin-update-tr .update-message {
- margin: 5px;
- padding: 3px 5px;
-}
-
-.plugin-install-php h4 {
- margin: 2.5em 0 8px;
-}
-
-
-/*------------------------------------------------------------------------------
- 18.0 - Users
-------------------------------------------------------------------------------*/
-
-#profile-page .form-table textarea {
- width: 500px;
- margin-bottom: 6px;
-}
-
-#profile-page .form-table #rich_editing {
- margin-right: 5px
-}
-
-#your-profile legend {
- font-size: 22px;
-}
-
-#your-profile #rich_editing {
- border: none;
-}
-
-#display_name {
- width: 15em;
-}
-
-#createuser .form-field input {
- width: 25em;
-}
-
-/*------------------------------------------------------------------------------
- 19.0 - Tools
-------------------------------------------------------------------------------*/
-
-.pressthis {
- margin: 20px 0;
-}
-
-.pressthis a,
-.pressthis a:hover,
-.pressthis a:focus,
-.pressthis a:active {
- display: inline-block;
- position: relative;
- cursor: move;
- color: #333;
- background: #e6e6e6;
- background-image: -webkit-gradient(linear, left bottom, left top, color-stop(7%, #e6e6e6), color-stop(77%, #d8d8d8));
- background-image: -webkit-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%);
- background-image: -moz-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%);
- background-image: -o-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%);
- background-image: linear-gradient(to top, #e6e6e6 7%, #d8d8d8 77%);
- -webkit-border-radius: 5px;
- border-radius: 5px;
- border: 1px solid #b4b4b4;
- font-style: normal;
- line-height: 16px;
- font-size: 14px;
- text-decoration: none;
- text-shadow: 0 1px 0px #fff;
-}
-
-.pressthis a:active {
- outline: none;
-}
-
-.pressthis a:hover:after {
- -webkit-transform: skew(20deg) rotate(9deg);
- -moz-transform: skew(20deg) rotate(9deg);
- transform: skew(20deg) rotate(9deg);
- -webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7);
- box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7);
-}
-
-.pressthis a span {
- background: url(../images/press-this.png?v=20120502) no-repeat 0px 5px;
- background-size: 24px 20px;
- padding: 8px 11px 8px 27px;
- margin: 0 5px;
- display: inline-block;
-}
-
-.pressthis a:after {
- content: '';
- width: 70%;
- height: 55%;
- z-index: -1;
- position: absolute;
- right: 10px;
- bottom: 9px;
- background: transparent;
-
- -webkit-transform: skew(20deg) rotate(6deg);
- -moz-transform: skew(20deg) rotate(6deg);
- transform: skew(20deg) rotate(6deg);
- -webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6);
- box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6);
-}
-
-/*------------------------------------------------------------------------------
- 20.0 - Settings
-------------------------------------------------------------------------------*/
-
-#utc-time, #local-time {
- padding-left: 25px;
- font-style: italic;
- font-family: sans-serif;
-}
-
-.defaultavatarpicker .avatar {
- margin: 2px 0;
- vertical-align: middle;
-}
-
-.options-general-php .spinner {
- float: none;
- margin: -3px 3px;
-}
-
-/*------------------------------------------------------------------------------
- 21.0 - Admin Footer
-------------------------------------------------------------------------------*/
-
-#wpfooter {
- position: absolute;
- bottom: 0;
- left: 0;
- right: 0;
- padding: 10px 0;
- margin-right: 20px;
- border-top-width: 1px;
- border-top-style: solid;
-}
-
-#wpfooter p {
- margin: 0;
- line-height: 20px;
-}
-
-#wpfooter a {
- text-decoration: none;
-}
-
-#wpfooter a:hover {
- text-decoration: underline;
-}
-
-/*------------------------------------------------------------------------------
- 22.0 - About Pages
-------------------------------------------------------------------------------*/
-
-.about-wrap {
- position: relative;
- margin: 25px 40px 0 20px;
- max-width: 1050px; /* readability */
-
- font-size: 15px;
-}
-
-.about-wrap div.updated,
-.about-wrap div.error {
- display: none !important;
-}
-
-.about-wrap p.about-notice {
- background-color: #ffffe0;
- border: 1px solid #e6db55;
- margin: 5px 0 15px;
- padding: 0.4em 0.8em;
- border-radius: 3px;
- -webkit-border-radius: 3px;
-}
-
-
-/* Typography */
-
-.about-wrap p {
- line-height: 1.6em;
-}
-
-.about-wrap h1 {
- margin: 0.2em 200px 0 0;
- line-height: 1.2em;
- font-size: 2.8em;
- font-weight: 200;
-}
-
-.about-text,
-.about-description,
-.about-wrap li.wp-person a.web {
- font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif;
- font-weight: normal;
- line-height: 1.6em;
- font-size: 20px;
-}
-
-.about-description {
- margin-top: 1.4em;
-}
-
-.about-text {
- margin: 1em 200px 1.4em 0;
- min-height: 60px;
- font-size: 24px;
-}
-
-.about-wrap h3 {
- font-size: 1.5em;
- line-height: 1.5em;
- padding-top: 20px;
-}
-
-.about-wrap .feature-section {
- padding-bottom: 20px;
-}
-
-.about-wrap .feature-section h4 {
- margin-bottom: 0.6em;
-}
-
-.about-wrap .feature-section p {
- margin-top: 0.6em;
-}
-
-.about-wrap code {
- font-size: 14px;
-}
-
-/* Point Releases */
-
-.about-wrap .point-releases {
- margin-top: 5px;
-}
-
-.about-wrap .changelog.point-releases h3 {
- padding-top: 35px;
-}
-
-.about-wrap .changelog.point-releases h3:first-child {
- padding-top: 7px;
-}
-
-/* WordPress Version Badge */
-
-.wp-badge {
- padding-top: 142px;
- height: 50px;
- width: 173px;
- font-weight: bold;
- font-size: 14px;
- text-align: center;
- margin: 0 -5px;
- background: url('../images/wp-badge.png?ver=20111120') no-repeat;
-}
-
-.about-wrap .wp-badge {
- position: absolute;
- top: 0;
- right: 0;
-}
-
-/* Tabs */
-
-.about-wrap h2.nav-tab-wrapper {
- padding-left: 6px;
-}
-
-.about-wrap h2 .nav-tab {
- padding: 4px 10px 6px;
- margin: 0 3px -1px 0;
- font-size: 18px;
- vertical-align: top;
-}
-
-.about-wrap h2 .nav-tab-active {
- font-weight: bold;
- padding-top: 3px;
-}
-
-/* Changelog / Update screen */
-
-.about-wrap .feature-section.three-col img {
- margin: 0.5em 0 0.5em 5px;
- max-width: 100%;
- float: none;
-}
-
-.about-wrap .feature-section.col {
- margin-bottom: 0;
-}
-
-.about-wrap .feature-section.col h4 {
- margin: 0 0 0.6em 0;
-}
-
-.about-wrap .feature-section.two-col div {
- width: 47%;
- margin-right: 4.999999999%;
- float: left;
-}
-
-.about-wrap .feature-section.three-col div {
- width: 30%;
- margin-right: 4.999999999%;
- float: left;
-}
-
-.about-wrap .three-col.about-updates .col-1,
-.about-wrap .three-col.about-updates .col-3 {
- width: 37%;
- margin: 0;
-}
-
-.about-wrap .three-col.about-updates .col-2 {
- width: 16%;
- margin: 0 5%;
-}
-
-.about-wrap .feature-section.col .last-feature {
- margin-right: 0;
-}
-
-.about-wrap .three-col.about-updates img {
- margin: 0;
-}
-
-.about-wrap .changelog .feature-section {
- overflow: hidden;
-}
-
-.about-wrap .about-passwords {
- margin: 20px 0;
- padding: 1px 20px 10px;
- background-color: #f9f9f9;
-}
-
-.about-wrap .about-auto-update {
- text-align: center;
- background-color: #f9f9ef;
- clear: both;
- padding: 10px;
-}
-
-.about-wrap .about-auto-update.cool {
- background-color: #eff9ef;
-}
-
-.about-wrap .about-password-meter input {
- font-size: 250%;
- line-height: 1;
- width: 100%;
- display: block;
- padding: 5px;
-}
-
-.about-wrap .about-password-meter #pass-strength-result {
- display: block !important;
- font-size: 150%;
- font-weight: normal !important;
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- width: 100%;
- padding: 17px 0;
- margin-bottom: 15px;
-}
-
-.about-wrap .feature-section div p img {
- float: right;
- margin-left: 10px;
- max-width: 20%;
-}
-
-.about-wrap .changelog li {
- list-style-type: disc;
- margin-left: 3em;
-}
-
-
-/* Return to Dashboard Home link */
-
-.about-wrap .return-to-dashboard {
- margin: 30px 0 0 -5px;
- font-size: 14px;
- font-weight: bold;
-}
-
-.about-wrap .return-to-dashboard a {
- text-decoration: none;
- padding: 0 5px;
-}
-
-/* Credits */
-
-.about-wrap h4.wp-people-group {
- margin-top: 2.6em;
- font-size: 16px;
-}
-
-.about-wrap ul.wp-people-group {
- overflow: hidden;
- padding: 0 5px;
- margin: 0 -15px 0 -5px;
-}
-
-.about-wrap ul.compact {
- margin-bottom: 0
-}
-
-.about-wrap li.wp-person {
- float: left;
- margin-right: 10px;
-}
-
-.about-wrap li.wp-person img.gravatar {
- float: left;
- margin: 0 10px 10px 0;
- padding: 2px;
- width: 60px;
- height: 60px;
-}
-
-.about-wrap ul.compact li.wp-person img.gravatar {
- width: 30px;
- height: 30px;
-}
-
-.about-wrap li.wp-person {
- height: 70px;
- width: 280px;
- padding-bottom: 15px;
-}
-
-.about-wrap ul.compact li.wp-person {
- height: auto;
- width: 180px;
- padding-bottom: 0;
- margin-bottom: 0;
-}
-
-.about-wrap #wp-people-group-validators + p.wp-credits-list {
- margin-top: 0;
-}
-
-.about-wrap li.wp-person a.web {
- display: block;
- margin: 6px 0 2px;
- font-size: 16px;
- text-decoration: none;
-}
-
-.about-wrap p.wp-credits-list a {
- white-space: nowrap;
-}
-
-/* Freedoms */
-
-.freedoms-php .about-wrap ol {
- margin: 40px 60px;
-}
-
-.freedoms-php .about-wrap ol li {
- list-style-type: decimal;
- font-weight: bold;
-}
-
-.freedoms-php .about-wrap ol p {
- font-weight: normal;
- margin: 0.6em 0;
-}
-
-/*------------------------------------------------------------------------------
- 23.0 - Full Overlay w/ Sidebar
-------------------------------------------------------------------------------*/
-
-body.full-overlay-active {
- overflow: hidden;
-}
-
-.wp-full-overlay {
- background: #fff;
- z-index: 500000;
- position: fixed;
- overflow: visible;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- height: 100%;
- min-width: 0;
-}
-
-.wp-full-overlay-sidebar {
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
-
- position: fixed;
- width: 300px;
- height: 100%;
- top: 0;
- bottom: 0;
- left: 0;
- padding: 0;
- margin: 0;
- z-index: 10;
- overflow: auto;
- background: #f5f5f5;
- border-right: 1px solid rgba( 0, 0, 0, 0.2 );
-}
-
-.wp-full-overlay.collapsed .wp-full-overlay-sidebar {
- overflow: visible;
-}
-
-.wp-full-overlay.collapsed,
-.wp-full-overlay.expanded .wp-full-overlay-sidebar {
- margin-left: 0 !important;
-}
-
-.wp-full-overlay.expanded {
- margin-left: 300px;
-}
-
-.wp-full-overlay.collapsed .wp-full-overlay-sidebar {
- margin-left: -300px;
-}
-
-.wp-full-overlay-sidebar:after {
- content: '';
- display: block;
- position: absolute;
- top: 0;
- bottom: 0;
- right: 0;
- width: 3px;
- box-shadow: -5px 0 4px -4px rgba(0, 0, 0, 0.1) inset;
- z-index: 1000;
-}
-
-.wp-full-overlay-main {
- position: absolute;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- height: 100%;
-}
-
-.wp-full-overlay-sidebar .wp-full-overlay-header {
- position: absolute;
- left: 0;
- right: 0;
- height: 45px;
- padding: 0 20px;
- line-height: 45px;
- z-index: 10;
- margin: 0;
-}
-
-.wp-full-overlay-sidebar .wp-full-overlay-header {
- border-top: 0;
- border-bottom: 1px solid #fff;
- box-shadow: inset 0 -1px 0 0px #dfdfdf;
-}
-
-.wp-full-overlay-sidebar .wp-full-overlay-footer {
- bottom: 0;
- border-bottom: 0;
- border-top: 1px solid #dfdfdf;
- box-shadow: inset 0 1px 0 0px #fff;
-}
-
-.wp-full-overlay-sidebar .wp-full-overlay-sidebar-content {
- position: absolute;
- top: 45px;
- bottom: 45px;
- left: 0;
- right: 0;
- overflow: auto;
-}
-
-.wp-full-overlay-sidebar-content .accordion-section:first-child {
- border-top: 1px solid #fff;
-}
-
-/* Close Link */
-.wp-full-overlay .close-full-overlay {
- text-decoration: none;
-}
-
-/* Collapse Button */
-.wp-full-overlay a.collapse-sidebar {
- position: absolute;
- bottom: 12px;
- left: 0;
- z-index: 50;
- display: block;
- width: 19px;
- height: 19px;
- margin-left: 15px;
- padding: 0;
- border-radius: 50%;
- text-decoration: none;
-}
-
-.wp-full-overlay.collapsed .collapse-sidebar {
- position: absolute;
- left: 100%;
-}
-
-.wp-full-overlay .collapse-sidebar-arrow {
- position: absolute;
- margin-top: 2px;
- margin-left: 2px;
- display: block;
- width: 15px;
- height: 15px;
- background: transparent url('../images/arrows.png') no-repeat -1px -73px;
-}
-
-.wp-full-overlay.collapsed .collapse-sidebar-arrow {
- background-position: -1px -109px;
-}
-
-.wp-full-overlay .collapse-sidebar-label {
- position: absolute;
- left: 100%;
- color: #808080;
- line-height: 20px;
- margin-left: 10px;
-}
-
-.wp-full-overlay.collapsed .collapse-sidebar-label {
- display: none;
-}
-
-.wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-label {
- color: #666;
-}
-
-/* Animations */
-.wp-full-overlay,
-.wp-full-overlay-sidebar,
-.wp-full-overlay .collapse-sidebar,
-.wp-full-overlay-main {
- -webkit-transition-property: left, right, top, bottom, width, margin;
- -moz-transition-property: left, right, top, bottom, width, margin;
- -ms-transition-property: left, right, top, bottom, width, margin;
- -o-transition-property: left, right, top, bottom, width, margin;
- transition-property: left, right, top, bottom, width, margin;
-
- -webkit-transition-duration: 0.2s;
- -moz-transition-duration: 0.2s;
- -ms-transition-duration: 0.2s;
- -o-transition-duration: 0.2s;
- transition-duration: 0.2s;
-}
-
-
-/*------------------------------------------------------------------------------
- 24.0 - Customize Loader
-------------------------------------------------------------------------------*/
-
-.no-customize-support .hide-if-no-customize,
-.customize-support .hide-if-customize,
-.no-customize-support.wp-core-ui .hide-if-no-customize,
-.no-customize-support .wp-core-ui .hide-if-no-customize,
-.customize-support.wp-core-ui .hide-if-customize,
-.customize-support .wp-core-ui .hide-if-customize {
- display: none;
-}
-
-#customize-container {
- display: none;
- background: #fff;
- z-index: 500000;
- position: fixed;
- overflow: visible;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- height: 100%;
-}
-
-.customize-active #customize-container {
- display: block;
-}
-
-.customize-loading #customize-container iframe {
- opacity: 0;
-}
-
-.customize-loading #customize-container {
- background: #fff url("../images/wpspin_light.gif") no-repeat fixed center center;
- background-size: 16px 16px;
-}
-
-#customize-container iframe,
-#theme-installer iframe {
- height: 100%;
- width: 100%;
- z-index: 20;
-
- -webkit-transition: opacity 0.3s;
- -moz-transition: opacity 0.3s;
- -ms-transition: opacity 0.3s;
- -o-transition: opacity 0.3s;
- transition: opacity 0.3s;
-}
-
-#customize-container .collapse-sidebar {
- bottom: 16px;
-}
-
-#theme-installer {
- display: none;
-}
-
-#theme-installer.single-theme {
- display: block;
-}
-
-.install-theme-info {
- display: none;
- padding: 10px 20px 20px;
-}
-
-.single-theme .install-theme-info {
- padding-top: 15px;
-}
-
-#theme-installer .install-theme-info {
- display: block;
-}
-
-.install-theme-info .theme-install {
- float: right;
- margin-top: 18px;
-}
-
-.install-theme-info .theme-name {
- font-size: 16px;
- line-height: 24px;
- margin-bottom: 0;
-}
-
-.install-theme-info .theme-screenshot {
- margin-top: 15px;
- width: 258px;
- border: 1px solid #ccc;
-}
-
-.install-theme-info .theme-details {
- overflow: hidden;
-}
-
-.theme-details .theme-version {
- margin: 15px 0;
- float: left;
-}
-
-.theme-details .star-holder {
- margin: 14px 0;
- float: right;
-}
-
-.theme-details .theme-description {
- float: left;
- color: #777;
- line-height: 20px;
-}
-
-/*------------------------------------------------------------------------------
- 25.0 - Misc
-------------------------------------------------------------------------------*/
-
-#excerpt,
-.attachmentlinks {
- margin: 0;
- height: 4em;
- width: 98%;
-}
-
-#template div {
- margin-right: 190px;
-}
-
-p.pagenav {
- margin: 0;
- display: inline;
-}
-
-.pagenav span {
- font-weight: bold;
- margin: 0 6px;
-}
-
-.row-title {
- font-size: 13px !important;
- font-weight: bold;
-}
-
-.column-author img, .column-username img {
- float: left;
- margin-right: 10px;
- margin-top: 1px;
-}
-
-.row-actions {
- visibility: hidden;
- padding: 2px 0 0;
-}
-
-tr:hover .row-actions,
-.mobile .row-actions,
-.row-actions.visible,
-div.comment-item:hover .row-actions {
- visibility: visible;
-}
-
-/* deprecated */
-.row-actions-visible {
- padding: 2px 0 0;
-}
-
-.form-table .pre {
- padding: 8px;
- margin: 0;
-}
-
-table.form-table td .updated {
- font-size: 13px;
-}
-
-.tagchecklist {
- margin-left: 14px;
- font-size: 12px;
- overflow: auto;
-}
-.tagchecklist strong {
- margin-left: -8px;
- position: absolute;
-}
-.tagchecklist span {
- margin-right: 25px;
- display: block;
- float: left;
- font-size: 11px;
- line-height: 1.8em;
- white-space: nowrap;
- cursor: default;
-}
-.tagchecklist span a {
- margin: 4px 0 0 -10px;
- cursor: pointer;
- width: 10px;
- height: 10px;
- display: block;
- float: left;
- text-indent: -9999px;
- overflow: hidden;
- position: absolute;
-}
-
-#poststuff h2 {
- margin-top: 20px;
- font-size: 1.5em;
- margin-bottom: 15px;
- padding: 0 0 3px;
- clear: left;
-}
-
-#poststuff h3,
-.metabox-holder h3 {
- font-size: 15px;
- font-weight: normal;
- padding: 7px 10px;
- margin: 0;
- line-height: 1;
-}
-
-#poststuff .inside {
- margin: 6px 0 8px;
-}
-
-#poststuff .inside #parent_id,
-#poststuff .inside #page_template {
- max-width: 100%;
-}
-
-.inline-edit-row #post_parent,
-.inline-edit-row select[name="page_template"] {
- max-width: 80%;
-}
-
-.ie8 #poststuff .inside #parent_id,
-.ie8 #poststuff .inside #page_template,
-.ie8 .inline-edit-row #post_parent,
-.ie8 .inline-edit-row select[name="page_template"] {
- width: 250px;
-}
-
-#post-visibility-select {
- line-height: 1.5em;
- margin-top: 3px;
-}
-
-#poststuff #submitdiv .inside {
- margin: 0;
- padding: 0;
-}
-
-.edit-form-section {
- margin-bottom: 20px;
-}
-
-#templateside ul li a {
- text-decoration: none;
-}
-
-.tool-box .title {
- margin: 8px 0;
- font-size: 18px;
- font-weight: normal;
- line-height: 24px;
-}
-
-#sidemenu {
- margin: -30px 15px 0 315px;
- list-style: none;
- position: relative;
- float: right;
- padding-left: 10px;
- font-size: 12px;
-}
-
-#sidemenu a {
- padding: 0 7px;
- display: block;
- float: left;
- line-height: 28px;
- border-top-width: 1px;
- border-top-style: solid;
- border-bottom-width: 1px;
- border-bottom-style: solid;
-}
-
-#sidemenu li {
- display: inline;
- line-height: 200%;
- list-style: none;
- text-align: center;
- white-space: nowrap;
- margin: 0;
- padding: 0;
-}
-
-#sidemenu a.current {
- font-weight: normal;
- padding-left: 6px;
- padding-right: 6px;
- -webkit-border-top-left-radius: 3px;
- -webkit-border-top-right-radius: 3px;
- border-top-left-radius: 3px;
- border-top-right-radius: 3px;
- border-width: 1px;
- border-style: solid;
-}
-
-#sidemenu li a .count-0 {
- display: none;
-}
-
-.plugin-install #description,
-.plugin-install-network #description {
- width: 60%;
-}
-
-table .vers,
-table .column-visible,
-table .column-rating {
- text-align: left;
-}
-
-.error-message {
- color: red;
- font-weight: bold;
-}
-
-/* Scrollbar fix for bulk upgrade iframe */
-body.iframe {
- height: 98%;
-}
-
-/* Upgrader styles, Specific to Language Packs */
-.lp-show-latest p {
- display: none;
-}
-.lp-show-latest p:last-child,
-.lp-show-latest .lp-error p {
- display: block;
-}
-
-/* - Only used once or twice in all of WP - deprecate for global style
-------------------------------------------------------------------------------*/
-td.media-icon {
- text-align: center;
- width: 80px;
- padding-top: 8px;
- padding-bottom: 8px;
-}
-
-td.media-icon img {
- max-width: 80px;
- max-height: 60px;
-}
-
-#howto {
- font-size: 11px;
- margin: 0 5px;
- display: block;
-}
-
-.importers td {
- padding-right: 14px;
-}
-
-.importers {
- font-size: 16px;
- width: auto;
-}
-
-#namediv table {
- width: 100%;
-}
-
-#namediv td.first {
- width: 10px;
- white-space: nowrap;
-}
-
-#namediv input {
- width: 98%;
-}
-
-#namediv p {
- margin: 10px 0;
-}
-
-#submitdiv h3 {
- margin-bottom: 0 !important;
-}
-
-/* - Used - but could/should be deprecated with a CSS reset
-------------------------------------------------------------------------------*/
-.zerosize {
- height: 0;
- width: 0;
- margin: 0;
- border: 0;
- padding: 0;
- overflow: hidden;
- position: absolute;
-}
-
-br.clear {
- height: 2px;
- line-height: 2px;
-}
-
-.checkbox {
- border: none;
- margin: 0;
- padding: 0;
-}
-
-fieldset {
- border: 0;
- padding: 0;
- margin: 0;
-}
-
-.post-categories {
- display: inline;
- margin: 0;
- padding: 0;
-}
-
-.post-categories li {
- display: inline;
-}
-
-
-/*-----------------------------------------------------------------------------
- MERGED
--------------------------------------------------------------------------------*/
-
-/* dashboard */
-.edit-box {
- display: none;
-}
-
-h3:hover .edit-box {
- display: inline;
-}
-
-#dashboard-widgets form .input-text-wrap input {
- width: 100%;
-}
-
-#dashboard-widgets form .textarea-wrap textarea {
- width: 100%;
-}
-
-#dashboard-widgets .postbox form .submit {
- float: none;
- margin: .5em 0 0;
- padding: 0;
- border: none;
-}
-
-#dashboard-widgets-wrap #dashboard-widgets .postbox form .submit #publish {
- min-width: 0;
-}
-
-#dashboard-widgets a {
- text-decoration: none;
-}
-
-#dashboard-widgets h3 a {
- text-decoration: underline;
-}
-
-#dashboard-widgets h3 .postbox-title-action {
- position: absolute;
- right: 10px;
- padding: 0;
- top: 5px;
-}
-
-.js #dashboard-widgets h3 .postbox-title-action {
- right: 30px;
-}
-
-#dashboard-widgets h4 {
- font-weight: normal;
- font-size: 13px;
- margin: 0 0 .2em;
- padding: 0;
-}
-
-/* Right Now */
-#dashboard_right_now p.sub,
-#dashboard_right_now .table, #dashboard_right_now .versions {
- margin: -12px;
-}
-
-#dashboard_right_now .inside {
- font-size: 12px;
- padding-top: 20px;
-}
-
-#dashboard_right_now p.sub {
- padding: 5px 0 15px;
- color: #8f8f8f;
- font-size: 14px;
- position: absolute;
- top: -17px;
- left: 15px;
-}
-
-#dashboard_right_now .table {
- margin: 0;
- padding: 0;
- position: relative;
-}
-
-#dashboard_right_now .table_content {
- float: left;
- border-top-width: 1px;
- border-top-style: solid;
- width: 45%;
-}
-
-#dashboard_right_now .table_discussion {
- float: right;
- border-top-width: 1px;
- border-top-style: solid;
- width: 45%;
-}
-
-#dashboard_right_now table td {
- padding: 3px 0;
- white-space: nowrap;
-}
-
-#dashboard_right_now table tr.first td {
- border-top: none;
-}
-
-#dashboard_right_now td.b {
- padding-right: 6px;
- text-align: right;
- font-size: 14px;
- width: 1%;
-}
-
-#dashboard_right_now td.b a {
- font-size: 18px;
-}
-
-#dashboard_right_now td.b a:hover {
- color: #d54e21;
-}
-
-#dashboard_right_now .t {
- font-size: 12px;
- padding-right: 12px;
- padding-top: 6px;
- color: #777;
-}
-
-#dashboard_right_now .t a {
- white-space: nowrap;
-}
-
-#dashboard_right_now .spam {
- color: red;
-}
-
-#dashboard_right_now .waiting {
- color: #e66f00;
-}
-
-#dashboard_right_now .approved {
- color: green;
-}
-
-#dashboard_right_now .versions {
- padding: 6px 10px 12px;
- clear: both;
-}
-
-#dashboard_right_now a.button {
- float: right;
- clear: right;
- position: relative;
- top: -5px;
-}
-
-/* Recent Comments */
-#dashboard_recent_comments h3 {
- margin-bottom: 0;
-}
-
-#dashboard_recent_comments .inside {
- margin-top: 0;
-}
-
-#dashboard_recent_comments .comment-meta .approve {
- font-style: italic;
- font-family: sans-serif;
- font-size: 10px;
-}
-
-#dashboard_recent_comments .subsubsub {
- float: none;
- white-space: normal;
-}
-
-#the-comment-list {
- position: relative;
-}
-
-#the-comment-list .comment-item {
- padding: 1em 10px;
- border-top: 1px solid;
-}
-
-#the-comment-list .pingback {
- padding-left: 9px !important;
-}
-
-#the-comment-list .comment-item,
-#the-comment-list #replyrow {
- margin: 0 -10px;
-}
-
-#the-comment-list .comment-item:first-child {
- border-top: none;
-}
-
-#the-comment-list .comment-item .avatar {
- float: left;
- margin: 0 10px 5px 0;
-}
-
-#the-comment-list .comment-item h4 {
- line-height: 1.7em;
- margin-top: -0.4em;
- color: #777;
-}
-
-#the-comment-list .comment-item h4 cite {
- font-style: normal;
- font-weight: normal;
-}
-
-#the-comment-list .comment-item blockquote,
-#the-comment-list .comment-item blockquote p {
- margin: 0;
- padding: 0;
- display: inline;
-}
-
-#dashboard_recent_comments #the-comment-list .trackback blockquote,
-#dashboard_recent_comments #the-comment-list .pingback blockquote {
- display: block;
-}
-
-#the-comment-list .comment-item p.row-actions {
- margin: 3px 0 0;
- padding: 0;
- font-size: 12px;
-}
-
-/* QuickPress */
-.no-js #dashboard_quick_press {
- display: none;
-}
-
-#dashboard_quick_press .easy-blogging {
- padding: 0 8px;
- text-align: left;
-}
-
-#dashboard_quick_press .input-text-wrap {
- position: relative;
-}
-
-#dashboard_quick_press .prompt {
- color: #bbb;
- position: absolute;
-}
-
-#dashboard_quick_press div.updated {
- padding: 0 5px;
-}
-
-#title-wrap label,
-#tags-input-wrap label {
- cursor: text;
-}
-
-#title-wrap #title {
- padding: 2px 6px;
- font-size: 1.3em;
- line-height: 100%;
- outline: none;
-}
-
-#tags-input-wrap #tags-input {
- outline: none;
-}
-
-#title-wrap #title-prompt-text {
- font-size: 1.3em;
- padding: 5px 8px;
-}
-
-#tags-input-wrap #tags-input-prompt-text {
- font-size: 1em;
- padding: 4px 8px;
-}
-
-#dashboard_quick_press .input-text-wrap,
-#dashboard_quick_press .textarea-wrap {
- margin: 0 0 1em 0;
-}
-
-#dashboard_quick_press .wp-media-buttons {
- margin: 0 0 .2em 1px;
- padding: 0;
-}
-
-#dashboard_quick_press .wp-media-buttons a {
- color: #777;
-}
-
-#dashboard-widgets #dashboard_quick_press form p.submit input {
- float: left;
-}
-
-#dashboard-widgets #dashboard_quick_press form p.submit #save-post {
- margin: 0 0.7em 0 1px;
-}
-
-#dashboard-widgets #dashboard_quick_press form p.submit #publish {
- float: right;
-}
-
-#dashboard-widgets #dashboard_quick_press form p.submit .spinner {
- vertical-align: middle;
- margin: 4px 6px 0 0;
-}
-
-/* Recent Drafts */
-#dashboard_recent_drafts ul,
-#dashboard_recent_drafts p {
- margin: 0;
- padding: 0;
- word-wrap: break-word;
-}
-
-#dashboard_recent_drafts ul {
- list-style: none;
-}
-
-#dashboard_recent_drafts ul li {
- margin-bottom: 1em;
-}
-
-#dashboard_recent_drafts h4 {
- line-height: 1.7em;
- word-wrap: break-word;
-}
-
-#dashboard_recent_drafts h4 abbr {
- font-weight: normal;
- font-family: sans-serif;
- font-size: 12px;
- color: #999;
- margin-left: 3px;
-}
-
-/* Feeds */
-.rss-widget ul {
- margin: 0;
- padding: 0;
- list-style: none;
-}
-
-a.rsswidget {
- font-size: 13px;
- line-height: 1.7em;
-}
-
-.rss-widget ul li {
- line-height: 1.5em;
- margin-bottom: 12px;
-}
-
-.rss-widget span.rss-date {
- color: #999;
- font-size: 12px;
- margin-left: 3px;
-}
-
-.rss-widget cite {
- display: block;
- text-align: right;
- margin: 0 0 1em;
- padding: 0;
-}
-
-.rss-widget cite:before {
- content: '\2014';
-}
-
-/* Plugins */
-#dashboard_plugins h4 {
- line-height: 1.7em;
-}
-
-#dashboard_plugins h5 {
- font-weight: normal;
- font-size: 13px;
- margin: 0;
- display: inline;
- line-height: 1.4em;
-}
-
-#dashboard_plugins h5 a {
- line-height: 1.4em;
-}
-
-#dashboard_plugins .inside span {
- font-size: 12px;
- padding-left: 5px;
-}
-
-#dashboard_plugins p {
- margin: 0.3em 0 1.4em;
- line-height: 1.4em;
-}
-
-.dashboard-comment-wrap {
- overflow: hidden;
- word-wrap: break-word;
-}
-
-/* Browser Nag */
-#dashboard_browser_nag a.update-browser-link {
- font-size: 1.2em;
- font-weight: bold;
-}
-
-#dashboard_browser_nag a {
- text-decoration: underline;
-}
-
-#dashboard_browser_nag p.browser-update-nag.has-browser-icon {
- padding-right: 125px;
-}
-
-#dashboard_browser_nag .browser-icon {
- margin-top: -35px;
-}
-
-#dashboard_browser_nag.postbox.browser-insecure {
- background-color: #ac1b1b;
- border-color: #ac1b1b;
-}
-
-#dashboard_browser_nag.postbox {
- background-color: #e29808;
- background-image: none;
- border-color: #edc048;
- color: #fff;
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-#dashboard_browser_nag.postbox.browser-insecure h3 {
- border-bottom-color: #cd5a5a;
- color: #fff;
-}
-
-#dashboard_browser_nag.postbox h3 {
- border-bottom-color: #f6e2ac;
- text-shadow: none;
- background: transparent none;
- color: #fff;
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-#dashboard_browser_nag a {
- color: #fff;
-}
-
-#dashboard_browser_nag.browser-insecure a.browse-happy-link,
-#dashboard_browser_nag.browser-insecure a.update-browser-link {
- text-shadow: #871b15 0 1px 0;
-}
-
-#dashboard_browser_nag a.browse-happy-link,
-#dashboard_browser_nag a.update-browser-link {
- text-shadow: #d29a04 0 1px 0;
-}
-
-
-/* login */
-
-.login * {
- margin: 0;
- padding: 0;
-}
-
-.login form {
- margin-left: 8px;
- padding: 26px 24px 46px;
- font-weight: normal;
- background: #fff;
- border: 1px solid #e5e5e5;
- -webkit-box-shadow: rgba(200, 200, 200, 0.7) 0px 4px 10px -1px;
- box-shadow: rgba(200, 200, 200, 0.7) 0px 4px 10px -1px;
-}
-
-.login form .forgetmenot {
- font-weight: normal;
- float: left;
- margin-bottom: 0;
-}
-
-.login .button-primary {
- float: right;
-}
-
-#login form p {
- margin-bottom: 0;
-}
-
-#login form p.submit {
- padding: 0;
-}
-
-.login label {
- color: #777;
- font-size: 14px;
-}
-
-.login form .forgetmenot label {
- font-size: 12px;
- line-height: 19px;
-}
-
-.login h1 a {
- background-image: url('../images/wordpress-logo.png?ver=20120216');
- background-size: 274px 63px;
- background-position: top center;
- background-repeat: no-repeat;
- width: 326px;
- height: 67px;
- text-indent: -9999px;
- outline: none;
- overflow: hidden;
- padding-bottom: 15px;
- display: block;
-}
-
-#login {
- width: 320px;
- padding: 114px 0 0;
- margin: auto;
-}
-
-#login_error,
-.login .message {
- margin: 0 0 16px 8px;
- padding: 12px;
-}
-
-.login #nav,
-.login #backtoblog {
- text-shadow: #fff 0 1px 0;
- margin: 0 0 0 16px;
- padding: 16px 16px 0;
-}
-
-#backtoblog {
- padding: 12px 16px 0;
-}
-
-.login form .input,
-.login input[type="text"] {
- color: #555;
- font-weight: 200;
- font-size: 24px;
- line-height: 1;
- width: 100%;
- padding: 3px;
- margin-top: 2px;
- margin-right: 6px;
- margin-bottom: 16px;
- border: 1px solid #e5e5e5;
- background: #fbfbfb;
- outline: none;
- -webkit-box-shadow: inset 1px 1px 2px rgba(200, 200, 200, 0.2);
- box-shadow: inset 1px 1px 2px rgba(200, 200, 200, 0.2);
-}
-
-.login #pass-strength-result {
- width: 250px;
- font-weight: bold;
- border-style: solid;
- border-width: 1px;
- margin: 12px 0 6px;
- padding: 6px 5px;
- text-align: center;
-}
-
-.mobile #login {
- padding: 20px 0;
-}
-
-.mobile #login form,
-.mobile #login .message,
-.mobile #login_error {
- margin-left: 0;
-}
-
-.mobile #login #nav,
-.mobile #login #backtoblog {
- margin-left: 8px;
-}
-
-.mobile #login h1 a {
- width: auto;
-}
-
-body.interim-login {
- height: auto;
-}
-
-.interim-login #login {
- padding: 0;
- margin: 5px auto 20px;
-}
-
-.interim-login.login h1 a {
- width: auto;
-}
-
-.interim-login #login_error,
-.interim-login.login .message {
- margin: 0 0 16px;
-}
-
-.interim-login.login form {
- margin: 0;
-}
-
-/* ms */
-/* Dashboard: MS Specific Data */
-#dashboard_right_now p.musub {
- margin-top: 12px;
- border-top: 1px solid #ececec;
- padding-left: 16px;
- position: static;
-}
-
-.rtl #dashboard_right_now p.musub {
- padding-left: 0;
- padding-right: 16px;
-}
-
-#dashboard_right_now td.b a.musublink {
- font-size: 16px;
-}
-
-#dashboard_right_now div.musubtable {
- border-top: none;
-}
-
-#dashboard_right_now div.musubtable .t {
- white-space: normal;
-}
-
-/* Background Color for Site Status */
-.wp-list-table .site-deleted {
- background: #ff8573;
-}
-.wp-list-table .site-spammed {
- background: #faafaa;
-}
-.wp-list-table .site-archived {
- background: #ffebe8;
-}
-.wp-list-table .site-mature {
- background: #fecac2;
-}
-
-/* nav-menu */
-
-.no-js #message {
- display: block;
-}
-
-#nav-menu-meta ul.outer-border {
- -webkit-border-radius: 3px;
- border-radius: 3px;
-}
-
-.accordion-section ul.category-tabs,
-.accordion-section ul.add-menu-item-tabs,
-.accordion-section ul.wp-tab-bar {
- margin: 0;
-}
-
-.accordion-section .categorychecklist {
- margin: 13px 0;
-}
-
-#nav-menu-meta .accordion-section-content {
- padding: 18px 13px;
-}
-
-#nav-menu-meta .button-controls {
- margin-bottom: 0;
-}
-
-#nav-menus-frame {
- margin-left: 300px;
- margin-top: 23px;
-}
-
-#wpbody-content #menu-settings-column {
- display:inline;
- width:281px;
- margin-left: -300px;
- clear: both;
- float: left;
- padding-top: 0;
-}
-
-#menu-settings-column .inside {
- clear: both;
- margin: 10px 0 0;
-}
-
-.metabox-holder-disabled .postbox,
-.metabox-holder-disabled .accordion-section-content {
- opacity: 0.5;
- filter: alpha(opacity=50);
-}
-
-.metabox-holder-disabled .button-controls .select-all {
- display: none;
-}
-
-#wpbody {
- position: relative;
-}
-
-.blank-slate .menu-name {
- height: 2em;
-}
-
-.blank-slate .menu-settings {
- border: none;
- margin-top: 0;
- padding-top: 0;
- overflow: hidden;
-}
-
-.is-submenu {
- font-style: italic;
- font-weight: normal;
- margin-left: 4px;
-}
-
-.manage-menus {
- margin-top: 23px;
- padding: 10px;
- overflow: hidden;
- -webkit-border-radius: 3px;
- border-radius: 3px;
-}
-
-.manage-menus select {
- float: left;
- margin-right: 6px;
-}
-
-.manage-menus .selected-menu {
- float: left;
- margin: 5px 6px 0 0;
-}
-
-.manage-menus .submit-btn {
- float: left;
- margin-top: 1px;
-}
-
-.menu-edit p {
- margin: .3em 0 .6em;
-}
-
-.menu-edit #post-body-content h3 {
- margin: 0 0 10px;
-}
-
-.menu-settings {
- margin-top: 2em;
- overflow: hidden;
-}
-
-.menu-settings dl {
- margin: 0 0 10px;
- overflow: hidden;
- position: relative;
-}
-
-.menu-settings dd {
- float: left;
- margin: 0;
- width: 60%;
-}
-
-.menu-edit .checkbox-input {
- margin-top: 4px;
-}
-
-.theme-location-set {
- font-size: 11px;
-}
-
-/* Menu Container */
-#menu-management-liquid {
- float: left;
- min-width: 100%;
- margin-top: 3px;
-}
-
-#menu-management {
- position: relative;
- margin-right: 20px;
- margin-top: -3px;
- width: 100%;
-}
-
-#menu-management .menu-edit {
- margin-bottom: 20px;
-}
-
-.nav-menus-php #post-body {
- padding: 0 10px 10px;
- border-width: 1px 0;
- border-style: solid;
-}
-
-#nav-menu-header,
-#nav-menu-footer {
- padding: 0 10px;
-}
-
-#nav-menu-header {
- border-bottom: 1px solid;
- margin-bottom: 13px;
-}
-
-#nav-menu-header .menu-name-label {
- margin-top: 2px;
-}
-
-#nav-menu-footer {
- border-top: 1px solid;
-}
-
-.nav-menus-php #post-body div.updated,
-.nav-menus-php #post-body div.error {
- margin: 0;
-}
-
-.nav-menus-php #post-body-content {
- position: relative;
- float: none;
-}
-
-#menu-management .menu-add-new abbr {
- font-weight:bold;
-}
-
-#select-nav-menu-container {
- text-align: right;
- padding: 0 10px 3px 10px;
- margin-bottom: 5px;
-}
-
-#select-nav-menu {
- width: 100px;
- display: inline;
-}
-
-#menu-name-label {
- margin-top: -2px;
-}
-
-.widefat td.menu-location-menus {
- padding-bottom: 5px;
-}
-
-.menu-location-menus select {
- float: left;
-}
-
-#locations-nav-menu-wrapper {
- padding: 5px 0;
-}
-
-.locations-nav-menu-select select {
- float: left;
- width: 160px;
- margin-right: 5px;
-}
-
-.locations-row-links {
- float: left;
- margin: 6px 0 0 6px;
-}
-
-.locations-edit-menu-link,
-.locations-add-menu-link {
- margin: 0 3px;
-}
-
-.locations-edit-menu-link {
- padding-right: 3px;
- border-right: 1px solid #ccc;
-}
-
-#wpbody .open-label {
- display: block;
- float:left;
-}
-
-#wpbody .open-label span {
- padding-right: 10px;
-}
-
-.js .input-with-default-title {
- font-style: italic;
-}
-
-#menu-management .inside {
- padding: 0 10px;
-}
-
-/* Add Menu Item Boxes */
-.postbox .howto input,
-.accordion-container .howto input {
- width: 180px;
- float: right;
-}
-
-.accordion-container .outer-border {
- margin: 0;
-}
-
-#nav-menu-meta .accordion-container .top {
- border-top: 1px solid #dfdfdf;
-}
-
-#nav-menu-meta .accordion-container .accordion-section:first-child,
-#nav-menu-meta .accordion-container .accordion-section:first-child h3,
-#nav-menu-meta .accordion-container .top,
-#nav-menu-meta .accordion-container .top h3 {
- -webkit-border-top-right-radius: 3px;
- -webkit-border-top-left-radius: 3px;
- border-top-right-radius: 3px;
- border-top-left-radius: 3px;
-}
-
-#nav-menu-meta .accordion-container .accordion-section:last-child,
-#nav-menu-meta .accordion-container .accordion-section:last-child .accordion-section-content,
-#nav-menu-meta .accordion-container .bottom,
-#nav-menu-meta .accordion-container .bottom:not(.open) h3 {
- -webkit-border-bottom-right-radius: 3px;
- -webkit-border-bottom-left-radius: 3px;
- border-bottom-right-radius: 3px;
- border-bottom-left-radius: 3px;
-}
-
-.customlinkdiv .howto input {
- width: 180px;
-}
-
-.customlinkdiv p {
- margin-top: 0
-}
-
-#nav-menu-theme-locations .howto select {
- width: 100%;
-}
-
-#nav-menu-theme-locations .button-controls {
- text-align: right;
-}
-
-.add-menu-item-view-all {
- height: 400px;
-}
-
-/* Button Primary Actions */
-#menu-container .submit {
- margin: 0 0 10px;
- padding: 0;
-}
-
-.nav-menus-php .add-new-menu-action {
- float: left;
- margin: 6px 0 0 6px;
- line-height: 15px;
-}
-
-.nav-menus-php .meta-sep,
-.nav-menus-php .submitdelete,
-.nav-menus-php .submitcancel {
- display: block;
- float: left;
- margin: 4px 0;
- line-height: 15px;
-}
-
-.meta-sep {
- padding: 0 2px;
-}
-
-#cancel-save {
- text-decoration: underline;
- font-size: 12px;
- margin-left: 20px;
- margin-top: 5px;
-}
-
-.button.right, .button-secondary.right, .button-primary.right {
- float: right;
-}
-
-/* Button Secondary Actions */
-.list-controls {
- float: left;
- margin-top: 5px;
-}
-
-.add-to-menu {
- float: right;
-}
-
-.postbox .spinner {
- display: none;
- vertical-align: middle;
-}
-
-.button-controls {
- clear:both;
- margin: 10px 0;
-}
-
-.show-all,
-.hide-all {
- cursor: pointer;
-}
-
-.hide-all {
- display: none;
-}
-
-/* Create Menu */
-#menu-name {
- width: 270px;
-}
-
-#manage-menu .inside {
- padding: 0px 0px;
-}
-
-/* Custom Links */
-#available-links dt {
- display: block;
-}
-
-#add-custom-link .howto {
- font-size: 12px;
-}
-
-#add-custom-link label span {
- display: block;
- float: left;
- margin-top: 5px;
- padding-right: 5px;
-}
-
-.menu-item-textbox {
- width: 180px;
-}
-
-.nav-menus-php .howto span {
- margin-top: 4px;
- display: block;
- float: left;
-}
-
-/* Menu item types */
-.quick-search {
- width: 190px;
-}
-
-.nav-menus-php .list-wrap {
- display: none;
- clear: both;
- margin-bottom: 10px;
-}
-
-.nav-menus-php .list-container {
- max-height: 200px;
- overflow-y: auto;
- padding: 10px 10px 5px;
-}
-
-.nav-menus-php .postbox p.submit {
- margin-bottom: 0;
-}
-
-/* Listings */
-.nav-menus-php .list li {
- display: none;
- margin: 0;
- margin-bottom: 5px;
-}
-
-.nav-menus-php .list li .menu-item-title {
- cursor: pointer;
- display: block;
-}
-
-.nav-menus-php .list li .menu-item-title input {
- margin-right: 3px;
- margin-top: -3px;
-}
-
-/* Nav Menu */
-#menu-container .inside {
- padding-bottom: 10px;
-}
-
-.menu {
- padding-top:1em;
-}
-
-#menu-to-edit {
- margin: 0;
- padding: 0.1em 0;
-}
-
-.menu ul {
- width: 100%;
-}
-
-.menu li {
- margin-bottom: 0;
- position:relative;
-}
-
-.menu-item-bar {
- clear:both;
- line-height:1.5em;
- position:relative;
- margin: 9px 0 0;
-}
-
-.menu-item-handle {
- border: 1px solid #dfdfdf;
- position: relative;
- padding-left: 10px;
- height: auto;
- width: 400px;
- line-height: 35px;
- text-shadow: 0 1px 0 #FFFFFF;
- overflow: hidden;
- word-wrap: break-word;
-}
-
-#menu-to-edit .menu-item-invalid .menu-item-handle {
- background: #f6c9cc;
- background-image: -webkit-gradient(linear, left bottom, left top, from(#f6c9cc), to(#fdf8ff));
- background-image: -webkit-linear-gradient(bottom, #f6c9cc, #fdf8ff);
- background-image: -moz-linear-gradient(bottom, #f6c9cc, #fdf8ff);
- background-image: -o-linear-gradient(bottom, #f6c9cc, #fdf8ff);
- background-image: linear-gradient(to top, #f6c9cc, #fdf8ff);
-}
-
-.menu-item-edit-active .menu-item-handle {
- -webkit-border-bottom-right-radius: 0;
- -webkit-border-bottom-left-radius: 0;
- border-bottom-right-radius: 0;
- border-bottom-left-radius: 0;
-}
-
-.no-js .menu-item-edit-active .item-edit {
- display: none;
-}
-
-.js .menu-item-handle {
- cursor: move;
-}
-
-.menu li.deleting .menu-item-handle {
- background-image: none;
- text-shadow: 0 0 0;
-}
-
-.menu-item-handle .item-title {
- font-size: 12px;
- font-weight: bold;
- padding: 7px 0;
- line-height: 20px;
- min-height: 20px;
- display: block;
- margin-right: 13em;
-}
-
-/* Sortables */
-li.menu-item.ui-sortable-helper dl {
- margin-top: 0;
-}
-
-li.menu-item.ui-sortable-helper .menu-item-transport dl {
- margin-top: 13px;
-}
-
-.menu .sortable-placeholder {
- height: 35px;
- width: 410px;
- margin-top: 13px;
-}
-
-/* WARNING: The factor of 30px is hardcoded into the nav-menus javascript. */
-.menu-item-depth-0 { margin-left: 0px; }
-.menu-item-depth-1 { margin-left: 30px; }
-.menu-item-depth-2 { margin-left: 60px; }
-.menu-item-depth-3 { margin-left: 90px; }
-.menu-item-depth-4 { margin-left: 120px; }
-.menu-item-depth-5 { margin-left: 150px; }
-.menu-item-depth-6 { margin-left: 180px; }
-.menu-item-depth-7 { margin-left: 210px; }
-.menu-item-depth-8 { margin-left: 240px; }
-.menu-item-depth-9 { margin-left: 270px; }
-.menu-item-depth-10 { margin-left: 300px; }
-.menu-item-depth-11 { margin-left: 330px; }
-
-.menu-item-depth-0 .menu-item-transport { margin-left: 0px; }
-.menu-item-depth-1 .menu-item-transport { margin-left: -30px; }
-.menu-item-depth-2 .menu-item-transport { margin-left: -60px; }
-.menu-item-depth-3 .menu-item-transport { margin-left: -90px; }
-.menu-item-depth-4 .menu-item-transport { margin-left: -120px; }
-.menu-item-depth-5 .menu-item-transport { margin-left: -150px; }
-.menu-item-depth-6 .menu-item-transport { margin-left: -180px; }
-.menu-item-depth-7 .menu-item-transport { margin-left: -210px; }
-.menu-item-depth-8 .menu-item-transport { margin-left: -240px; }
-.menu-item-depth-9 .menu-item-transport { margin-left: -270px; }
-.menu-item-depth-10 .menu-item-transport { margin-left: -300px; }
-.menu-item-depth-11 .menu-item-transport { margin-left: -330px; }
-
-body.menu-max-depth-0 { min-width: 950px !important; }
-body.menu-max-depth-1 { min-width: 980px !important; }
-body.menu-max-depth-2 { min-width: 1010px !important; }
-body.menu-max-depth-3 { min-width: 1040px !important; }
-body.menu-max-depth-4 { min-width: 1070px !important; }
-body.menu-max-depth-5 { min-width: 1100px !important; }
-body.menu-max-depth-6 { min-width: 1130px !important; }
-body.menu-max-depth-7 { min-width: 1160px !important; }
-body.menu-max-depth-8 { min-width: 1190px !important; }
-body.menu-max-depth-9 { min-width: 1220px !important; }
-body.menu-max-depth-10 { min-width: 1250px !important; }
-body.menu-max-depth-11 { min-width: 1280px !important; }
-
-/* Menu item controls */
-.item-type {
- font-size: 12px;
- padding-right: 10px;
-}
-
-.item-controls {
- font-size: 12px;
- position: absolute;
- right: 20px;
- top: -1px;
-}
-
-.item-controls a {
- text-decoration: none;
-}
-
-.item-controls a:hover {
- cursor: pointer;
-}
-
-.item-controls .item-order {
- padding-right: 10px;
-}
-
-.nav-menus-php .item-edit {
- position: absolute;
- right: -20px;
- top: 0;
- display: block;
- width: 30px;
- height: 36px;
- overflow: hidden;
- text-indent:-999em;
- border-bottom: 1px solid;
- -webkit-border-bottom-left-radius: 3px;
- border-bottom-left-radius: 3px;
-}
-
-/* Menu editing */
-.menu-instructions-inactive {
- display: none;
-}
-
-.menu-item-settings {
- display: block;
- width: 400px;
- padding: 10px 0 10px 10px;
- border: solid;
- border-width: 0 1px 1px 1px;
- -webkit-border-bottom-right-radius: 3px;
- -webkit-border-bottom-left-radius: 3px;
- border-bottom-left-radius: 3px;
- border-bottom-right-radius: 3px;
-}
-
-.menu-item-settings .field-move a {
- display: none;
- margin: 0 2px;
-}
-
-.menu-item-edit-active .menu-item-settings {
- display: block;
-}
-
-.menu-item-edit-inactive .menu-item-settings {
- display: none;
-}
-
-.add-menu-item-pagelinks {
- margin: .5em auto;
- text-align: center;
-}
-
-.link-to-original {
- display: block;
- margin: 0 0 10px;
- padding: 3px 5px 5px;
- font-size: 12px;
- font-style: italic;
-}
-
-.link-to-original a {
- padding-left: 4px;
- font-style: normal;
-}
-
-.hidden-field {
- display: none;
-}
-
-.menu-item-settings .description-thin,
-.menu-item-settings .description-wide {
- margin-right: 10px;
- float: left;
-}
-
-.description-thin {
- width: 190px;
- height: 40px;
-}
-
-.description-wide {
- width: 390px;
-}
-
-.menu-item-actions {
- padding-top: 15px;
-}
-
-#cancel-save {
- cursor: pointer;
-}
-
-/* Major/minor publishing actions (classes) */
-.nav-menus-php .major-publishing-actions {
- clear: both;
- padding: 3px 0 5px;
-}
-
-.nav-menus-php .major-publishing-actions .publishing-action {
- text-align: right;
- float: right;
- line-height: 23px;
- margin: 2px 0 1px;
-}
-
-.nav-menus-php .blank-slate .menu-settings {
- display: none;
-}
-
-.nav-menus-php .delete-action {
- float: left;
- margin-top: 2px;
-}
-
-.nav-menus-php .submitbox .submitcancel {
- border-bottom: 1px solid;
- padding: 1px 2px;
- text-decoration: none;
-}
-
-.nav-menus-php .major-publishing-actions .form-invalid {
- padding-left: 4px;
- margin-left: -4px;
- border: 0 none;
-}
-
-/* Clearfix */
-#menu-item-name-wrap:after,
-#menu-item-url-wrap:after,
-#menu-name-label:after,
-#menu-settings-column .inside:after,
-#nav-menus-frame:after,
-.nav-menus-php #post-body-content:after,
-.nav-menus-php .button-controls:after,
-.nav-menus-php .major-publishing-actions:after,
-.nav-menus-php .menu-item-settings:after {
- clear: both;
- content: ".";
- display: block;
- height: 0;
- visibility: hidden;
-}
-
-#nav-menus-frame,
-.button-controls,
-#menu-item-url-wrap,
-#menu-item-name-wrap {
- display: block;
-}
-
-/* Star ratings */
-div.star-holder {
- position: relative;
- height: 17px;
- width: 100px;
- background: url('../images/stars.png?ver=20121108') repeat-x bottom left;
-}
-
-div.star-holder .star-rating {
- background: url('../images/stars.png?ver=20121108') repeat-x top left;
- height: 17px;
- float: left;
-}
-
-div.action-links {
- font-weight: normal;
- margin: 6px 0 0;
-}
-
-/* Header on thickbox */
-#plugin-information-header {
- margin: 0;
- padding: 0 5px;
- font-weight: bold;
- position: relative;
- border-bottom-width: 1px;
- border-bottom-style: solid;
- height: 2.5em;
-}
-#plugin-information ul#sidemenu {
- font-weight: normal;
- margin: 0 5px;
- position: absolute;
- left: 0;
- bottom: -1px;
-}
-
-/* Install sidemenu */
-#plugin-information p.action-button {
- width: 100%;
- padding-bottom: 0;
- margin-bottom: 0;
- margin-top: 10px;
- -webkit-border-top-left-radius: 3px;
- -webkit-border-bottom-left-radius: 3px;
- border-top-left-radius: 3px;
- border-bottom-left-radius: 3px;
-}
-
-#plugin-information .action-button a {
- text-align: center;
- font-weight: bold;
- text-decoration: none;
- display: block;
- line-height: 2em;
-}
-
-#plugin-information h2 {
- clear: none !important;
- margin-right: 200px;
-}
-
-#plugin-information .fyi {
- margin: 0 10px 50px;
- width: 210px;
-}
-
-#plugin-information .fyi h2 {
- font-size: 0.9em;
- margin-bottom: 0;
- margin-right: 0;
-}
-
-#plugin-information .fyi h2.mainheader {
- padding: 5px;
- -webkit-border-top-left-radius: 3px;
- border-top-left-radius: 3px;
-}
-
-#plugin-information .fyi ul {
- padding: 10px 5px 10px 7px;
- margin: 0;
- list-style: none;
- -webkit-border-bottom-left-radius: 3px;
- border-bottom-left-radius: 3px;
-}
-
-#plugin-information .fyi li {
- margin-right: 0;
-}
-
-#plugin-information #section-holder {
- padding: 10px;
-}
-
-#plugin-information .section ul,
-#plugin-information .section ol {
- margin-left: 16px;
- list-style-type: square;
- list-style-image: none;
-}
-
-#plugin-information #section-screenshots ol {
- list-style: none;
- margin: 0;
-}
-
-#plugin-information #section-screenshots li img {
- vertical-align: text-top;
- max-width: 100%;
- width: auto;
- height: auto;
-}
-
-#plugin-information #section-screenshots li p {
- font-style: italic;
- padding-left: 20px;
- padding-bottom: 2em;
-}
-
-#plugin-information #section-screenshots ol,
-#plugin-information .updated,
-#plugin-information pre {
- margin-right: 215px;
-}
-
-#plugin-information pre {
- padding: 7px;
- overflow: auto;
-}
-
-/* press-this */
-body.press-this {
- color: #333;
- margin: 0;
- padding: 0;
- min-width: 675px;
- min-height: 400px;
-}
-
-img {
- border: none;
-}
-
-/* Header */
-.press-this #wphead {
- height: 32px;
- margin-left: 0;
- margin-right: 0;
- margin-bottom: 5px;
-}
-
-.press-this #header-logo {
- float: left;
- margin: 7px 7px 0;
- -webkit-user-select: none;
- -moz-user-select: none;
- user-select: none;
-}
-
-.press-this #wphead h1 {
- font-weight: normal;
- font-size: 16px;
- line-height: 32px;
- margin: 0;
- float: left;
-}
-
-.press-this #wphead h1 a {
- text-decoration: none;
-}
-
-.press-this #wphead h1 a:hover {
- text-decoration: underline;
-}
-
-.press-this #message {
- margin: 10px 0;
-}
-
-.press-this-sidebar {
- float: right;
- width: 200px;
- padding-top: 10px;
-}
-
-.press-this #title {
- margin-left: 0;
- margin-right: 0;
- -moz-box-sizing: border-box;
- -webkit-box-sizing: border-box;
- -ms-box-sizing: border-box;
- box-sizing: border-box;
-}
-
-.press-this .tagchecklist span a {
- background: transparent url(../images/xit.gif) no-repeat 0 0;
-}
-
-.press-this #titlediv {
- margin: 0;
-}
-
-.press-this .wp-media-buttons {
- cursor: default;
- padding: 8px 8px 0;
-}
-
-.press-this .howto {
- margin-top: 2px;
- margin-bottom: 3px;
- font-size: 12px;
- font-style: italic;
- display: block;
-}
-
-/* Editor/Main Column */
-.press-this #poststuff {
- margin: 0 10px 10px;
- padding: 0;
-}
-
-.press-this #photo-add-url-div input[type="text"] {
- width: 220px;
-}
-
-#poststuff #editor-toolbar {
- height: 30px;
-}
-
-div.zerosize {
- border: 0 none;
- height: 0;
- margin: 0;
- overflow: hidden;
- padding: 0;
- width: 0;
-}
-
-.posting {
- margin-right: 212px;
- position: relative;
-}
-
-.press-this .inner-sidebar {
- width: 200px;
-}
-
-.press-this .inner-sidebar .sleeve {
- padding-top: 5px;
-}
-
-.press-this #submitdiv p {
- margin: 0;
- padding: 6px;
-}
-
-.press-this #submitdiv #publishing-actions {
- border-bottom: 1px solid #dfdfdf;
-}
-
-.press-this #publish {
- float: right;
-}
-
-.press-this #poststuff h2,
-.press-this #poststuff h3 {
- font-size: 14px;
- line-height: 1;
-}
-
-.press-this #tagsdiv-post_tag h3,
-.press-this #categorydiv h3 {
- cursor: pointer;
-}
-
-.press-this #submitdiv h3 {
- cursor: default;
-}
-
-h3.tb {
- text-shadow: 0 1px 0 #fff;
- font-weight: bold;
- font-size: 12px;
- margin-left: 5px;
-}
-
-#TB_window {
- border: 1px solid #333;
-}
-
-.press-this .postbox,
-.press-this .stuffbox {
- margin-bottom: 10px;
- min-width: 0;
-}
-
-.js .postbox:hover .handlediv,
-.js .stuffbox:hover .handlediv {
- background: transparent url(../images/arrows.png) no-repeat 6px 7px;
-}
-
-.press-this #submitdiv:hover .handlediv {
- background: none;
-}
-
-.tbtitle {
- font-size: 1.7em;
- outline: none;
- padding: 3px 4px;
- border-color: #dfdfdf;
-}
-
-.press-this .actions {
- float: right;
- margin: -19px 0 0;
-}
-
-.press-this #extra-fields .actions {
- margin: -32px -7px 0 0;
-}
-
-.press-this .actions li {
- float: left;
- list-style: none;
- margin-right: 10px;
-}
-
-#extra-fields .button {
- margin-right: 5px;
-}
-
-/* Photo Styles */
-#photo_saving {
- margin: 0 8px 8px;
- vertical-align: middle;
-}
-
-#img_container_container {
- overflow: auto;
-}
-
-#extra-fields {
- margin-top: 10px;
- position: relative;
-}
-
-#extra-fields h2 {
- margin: 12px;
-}
-
-#waiting {
- margin-top: 10px;
- overflow: hidden;
-}
-
-#waiting span {
- float: right;
- margin: 0 0 0 5px;
-}
-
-#waiting .spinner {
- display: block;
-}
-
-#extra-fields .postbox {
- margin-bottom: 5px;
-}
-
-#extra-fields .titlewrap {
- padding: 0;
- overflow: auto;
- height: 100px;
-}
-
-#img_container a {
- display: block;
- float: left;
- overflow: hidden;
-}
-
-#img_container img,
-#img_container a {
- width: 68px;
- height: 68px;
-}
-
-#img_container img {
- border: none;
- background-color: #f4f4f4;
- cursor: pointer;
-}
-
-#img_container a,
-#img_container a:link,
-#img_container a:visited {
- border: 1px solid #ccc;
- display: block;
- position: relative;
-}
-
-#img_container a:hover,
-#img_container a:active {
- border-color: #000;
- z-index: 1000;
- border-width: 2px;
- margin: -1px;
-}
-
-/* Video */
-#embed-code {
- width: 100%;
- height: 98px;
-}
-
-/* Categories */
-.press-this .categorydiv div.tabs-panel {
- height: 100px;
-}
-
-/* Tags */
-.press-this .tagsdiv .newtag {
- width: 120px;
-}
-
-.press-this #content {
- margin: 5px 0;
- padding: 0 5px;
- border: 0 none;
- height: 345px;
- font-family: Consolas, Monaco, monospace;
- font-size: 13px;
- line-height: 19px;
- background: transparent;
-}
-
-/* Submit */
-.press-this #publishing-actions .spinner {
- display: inline;
- vertical-align: middle;
-}
-
-#TB_ajaxContent #options {
- position: absolute;
- top: 20px;
- right: 25px;
- padding: 5px;
-}
-
-#TB_ajaxContent h3 {
- margin-bottom: .25em;
-}
-
-.error a {
- text-decoration: underline;
-}
-
-.updated a {
- text-decoration: none;
- padding-bottom: 2px;
-}
-
-/* tag hints */
-.taghint {
- color: #aaa;
- margin: -17px 0 0 7px;
- visibility: hidden;
-}
-
-input.newtag ~ div.taghint {
- visibility: visible;
-}
-
-input.newtag:focus ~ div.taghint {
- visibility: hidden;
-}
-
-#photo-add-url-div input[type="text"] {
- width: 300px;
-}
-
-/* theme-editor */
-.alignleft h3 {
- margin: 0;
-}
-
-h3 span {
- font-weight: normal;
-}
-
-#template textarea {
- font-family: Consolas, Monaco, monospace;
- font-size: 12px;
- width: 97%;
- background: #f9f9f9;
- outline: none;
-}
-
-#template p {
- width: 97%;
-}
-
-#templateside {
- float: right;
- width: 190px;
- word-wrap: break-word;
-}
-
-#templateside h3,
-#postcustomstuff p.submit {
- margin: 0;
-}
-
-#templateside h4 {
- margin: 1em 0 0;
-}
-
-#templateside ol,
-#templateside ul {
- margin: .5em;
- padding: 0;
-}
-
-#templateside li {
- margin: 4px 0;
-}
-
-#templateside ul li a span.highlight {
- display:block;
-}
-
-.nonessential {
- font-size: 11px;
- font-style: italic;
- padding-left: 12px;
-}
-
-.highlight {
- padding: 3px 3px 3px 12px;
- margin-left: -12px;
- font-weight: bold;
- border: 0 none;
-}
-
-#documentation {
- margin-top: 10px;
-}
-#documentation label {
- line-height: 22px;
- vertical-align: top;
- font-weight: bold;
-}
-
-.fileedit-sub {
- padding: 10px 0 8px;
- line-height: 180%;
-}
-
-#filter-box {
- clear: both;
-}
-
-.feature-filter {
- padding: 8px 12px 0;
-}
-
-.feature-filter .feature-group {
- float: left;
- margin: 5px 10px 10px;
-}
-
-.feature-filter .feature-group li {
- display: inline-block;
- vertical-align: top;
- list-style-type: none;
- padding-right: 25px;
- width: 150px;
-}
-
-.feature-container {
- width: 100%;
- overflow: auto;
- margin-bottom: 10px;
-}
-
-/* widgets */
-
-/* 2 column liquid layout */
-div.widget-liquid-left {
- float: left;
- clear: left;
- width: 100%;
- margin-right: -325px;
-}
-
-div#widgets-left {
- margin-left: 5px;
- margin-right: 325px;
-}
-
-div#widgets-right {
- width: 285px;
- margin: 0 auto;
-}
-
-div.widget-liquid-right {
- float: right;
- clear: right;
- width: 300px;
-}
-
-.widget-liquid-right .widget,
-.inactive-sidebar .widget,
-.widget-liquid-right .sidebar-description {
- width: 250px;
- margin: 0 auto 20px;
- overflow: hidden;
-}
-
-.widget-liquid-right .sidebar-description {
- margin-bottom: 10px;
-}
-
-.inactive-sidebar .widget {
- margin: 0 10px 20px;
- display: inline-block;
-}
-
-div.sidebar-name h3 {
- font-weight: normal;
- font-size: 15px;
- margin: 0;
- padding: 8px 10px;
- overflow: hidden;
- white-space: nowrap;
-}
-
-div.sidebar-name {
- font-size: 13px;
- border-width: 1px;
- border-style: solid;
- -webkit-border-top-right-radius: 3px;
- -webkit-border-top-left-radius: 3px;
- border-top-right-radius: 3px;
- border-top-left-radius: 3px;
-}
-
-.js .sidebar-name {
- cursor: pointer;
-}
-
-.js .closed .sidebar-name {
- -webkit-border-bottom-right-radius: 3px;
- -webkit-border-bottom-left-radius: 3px;
- border-bottom-right-radius: 3px;
- border-bottom-left-radius: 3px;
-}
-
-.widget-liquid-right .widgets-sortables,
-#widgets-left .widget-holder {
- border-width: 0 1px 1px;
- border-style: none solid solid;
- -webkit-border-bottom-right-radius: 3px;
- -webkit-border-bottom-left-radius: 3px;
- border-bottom-right-radius: 3px;
- border-bottom-left-radius: 3px;
-}
-
-.js .closed .widgets-sortables,
-.js .closed .widget-holder {
- display: none;
-}
-
-.widget-liquid-right .widgets-sortables {
- padding: 15px 0 0;
-}
-
-#available-widgets .widget-holder {
- padding: 7px 5px 0;
-}
-
-#available-widgets .widget {
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-
-.inactive-sidebar {
- padding: 5px 5px 0;
-}
-
-#widget-list .widget {
- width: 250px;
- margin: 0 10px 15px;
- border: 0 none;
- background: transparent;
- display: inline-block;
- vertical-align: top;
-}
-
-#widget-list .widget-description {
- padding: 5px 8px;
-}
-
-.widget-placeholder {
- border-width: 1px;
- border-style: dashed;
- margin: 0 auto 20px;
- height: 27px;
- width: 250px;
-}
-
-.inactive-sidebar .widget-placeholder {
- margin: 0 10px 20px;
- float: left;
-}
-
-div.widgets-holder-wrap {
- padding: 0;
- margin: 10px 0 20px;
-}
-
-#widgets-left #available-widgets {
- background-color: transparent;
- border: 0 none;
-}
-
-ul#widget-list {
- list-style: none;
- margin: 0;
- padding: 0;
- min-height: 100px;
-}
-
-.widget .widget-top {
- margin-bottom: -1px;
- font-size: 12px;
- font-weight: bold;
- height: 26px;
- overflow: hidden;
-}
-
-.widget-top .widget-title {
- padding: 7px 9px;
-}
-
-.widget-top .widget-title-action {
- float: right;
-}
-
-a.widget-action {
- display: block;
- width: 24px;
- height: 26px;
-}
-
-#available-widgets a.widget-action {
- display: none;
-}
-
-.widget-top a.widget-action {
- background: transparent url(../images/arrows.png) no-repeat 4px 6px;
-}
-
-.widget-top a.widget-action:hover {
- background: transparent url(../images/arrows-dark.png) no-repeat 4px 6px;
-}
-
-.widget .widget-inside,
-.widget .widget-description {
- padding: 12px 12px 10px;
- font-size: 12px;
- line-height: 16px;
-}
-
-.widget-inside,
-.widget-description {
- display: none;
-}
-
-#available-widgets .widget-description {
- display: block;
-}
-
-.widget .widget-inside p {
- margin: 0 0 1em;
- padding: 0;
-}
-
-.widget-title h4 {
- margin: 0;
- padding-bottom: 0.2em;
- line-height: 1;
- overflow: hidden;
- white-space: nowrap;
-}
-
-.widgets-sortables {
- min-height: 90px;
-}
-
-.widget-control-actions {
- margin-top: 8px;
-}
-
-.widget-control-actions a {
- text-decoration: none;
-}
-
-.widget-control-actions a:hover {
- text-decoration: underline;
-}
-
-.widget-control-actions div.alignleft {
- margin-top: 6px;
-}
-
-div#sidebar-info {
- padding: 0 1em;
- margin-bottom: 1em;
- font-size: 12px;
-}
-
-.widget-title a,
-.widget-title a:hover {
- text-decoration: none;
- border-bottom: none;
-}
-
-.widget-control-edit {
- display: block;
- font-size: 12px;
- font-weight: normal;
- line-height: 26px;
- padding: 0 8px 0 0;
-}
-
-a.widget-control-edit {
- text-decoration: none;
-}
-
-.widget-control-edit .add,
-.widget-control-edit .edit {
- display: none;
-}
-
-#available-widgets .widget-control-edit .add,
-#widgets-right .widget-control-edit .edit,
-.inactive-sidebar .widget-control-edit .edit {
- display: inline;
-}
-
-.editwidget {
- margin: 0 auto 15px;
-}
-
-.editwidget .widget-inside {
- display: block;
- padding: 10px;
-}
-
-.inactive p.description {
- margin: 5px 15px 10px;
-}
-
-#available-widgets p.description {
- margin: 0 12px 12px;
-}
-
-.widget-position {
- margin-top: 8px;
-}
-
-.inactive {
- padding-top: 2px;
-}
-
-.sidebar-name .spinner {
- float: none;
- margin: 0 3px -3px;
-}
-
-.sidebar-name-arrow {
- float: right;
- height: 29px;
- width: 26px;
-}
-
-.widget-title .in-widget-title {
- font-size: 12px;
- white-space: nowrap;
-}
-
-#removing-widget {
- display: none;
- font-weight: normal;
- padding-left: 15px;
- font-size: 12px;
- line-height: 1;
-}
-
-.widget-control-noform,
-#access-off,
-.widgets_access .widget-action,
-.widgets_access .sidebar-name-arrow,
-.widgets_access #access-on,
-.widgets_access .widget-holder .description {
- display: none;
-}
-
-.widgets_access .widget-holder,
-.widgets_access #widget-list {
- padding-top: 10px;
-}
-
-.widgets_access #access-off {
- display: inline;
-}
-
-.widgets_access #wpbody-content .widget-title-action,
-.widgets_access #wpbody-content .widget-control-edit,
-.widgets_access .closed .widgets-sortables,
-.widgets_access .closed .widget-holder {
- display: block;
-}
-
-.widgets_access .closed .sidebar-name {
- -webkit-border-bottom-right-radius: 0;
- -webkit-border-bottom-left-radius: 0;
- border-bottom-right-radius: 0;
- border-bottom-left-radius: 0;
-}
-
-.widgets_access .sidebar-name,
-.widgets_access .widget .widget-top {
- cursor: default;
-}
-
-/* Enable draggable on IE10 touch events until it's rolled into jQuery UI core */
-.ui-sortable,
-.ui-draggable {
- -ms-touch-action: none;
-}
-
-/* Accordion */
-
-.accordion-section {
- border-top: 1px solid #fff;
- border-bottom: 1px solid #dfdfdf;
- margin: 0;
-}
-
-.accordion-section:first-child {
- border-top: 1px solid #dfdfdf;
-}
-
-.accordion-section:last-child {
- box-shadow: 0 1px 0 0px #fff;
-}
-
-.accordion-section.open .accordion-section-content,
-.no-js .accordion-section .accordion-section-content {
- display: block;
-}
-
-.accordion-section.open:hover {
- border-bottom-color: #dfdfdf;
-}
-
-.accordion-section-content {
- display: none;
- padding: 10px 20px 15px;
- overflow: hidden;
- background: #fdfdfd;
- border-left: 1px solid #dfdfdf;
- border-right: 1px solid #dfdfdf;
-}
-
-.accordion-section-title {
- margin: 0;
- padding: 15px 20px;
- position: relative;
- border-left: 1px solid #dfdfdf;
- border-right: 1px solid #dfdfdf;
-
- -webkit-user-select: none;
- -moz-user-select: none;
- user-select: none;
-}
-
-.js .accordion-section-title {
- cursor: pointer;
-}
-
-.js .accordion-section-title:after {
- content: '';
- width: 0;
- height: 0;
- border-color: #ccc transparent;
- border-style: solid;
- border-width: 6px 6px 0;
- position: absolute;
- top: 25px;
- right: 20px;
- z-index: 1;
-}
-
-.accordion-section-title:focus {
- outline: none;
-}
-
-.accordion-section-title:hover:after,
-.accordion-section-title:focus:after {
- border-color: #aaa transparent;
-}
-
-.cannot-expand .accordion-section-title {
- cursor: auto;
-}
-
-.cannot-expand .accordion-section-title:after {
- display: none;
-}
-
-.control-section .accordion-section-title {
- padding: 10px 20px;
- color: #464646;
- font-size: 15px;
- font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
- font-weight: normal;
- text-shadow: 0 1px 0 #fff;
- background: #f5f5f5;
- background-image: -webkit-gradient(linear, left bottom, left top, from(#eee), to(#f5f5f5));
- background-image: -webkit-linear-gradient(bottom, #eee, #f5f5f5);
- background-image: -moz-linear-gradient(bottom, #eee, #f5f5f5);
- background-image: -o-linear-gradient(bottom, #eee, #f5f5f5);
- background-image: linear-gradient(to top, #eee, #f5f5f5);
-}
-
-.control-section .accordion-section-title:after {
- top: 15px;
-}
-
-.js .control-section:hover .accordion-section-title,
-.js .control-section .accordion-section-title:hover,
-.js .control-section.open .accordion-section-title,
-.js .control-section .accordion-section-title:focus {
- color: #000;
- background: #f9f9f9;
- background-image: -webkit-gradient(linear, left bottom, left top, from(#ececec), to(#f9f9f9));
- background-image: -webkit-linear-gradient(bottom, #ececec, #f9f9f9);
- background-image: -moz-linear-gradient(bottom, #ececec, #f9f9f9);
- background-image: -o-linear-gradient(bottom, #ececec, #f9f9f9);
- background-image: linear-gradient(to top, #ececec, #f9f9f9);
-}
-
-.control-section.open .accordion-section-title {
- border-bottom: 1px solid #dfdfdf;
-}
-
-/* =Media Queries
--------------------------------------------------------------- */
-
-@media only screen and (max-width: 768px) {
- /* categories */
- #col-left {
- width: 100%;
- }
-
- #col-right {
- width: 100%;
- }
-}
-
-@media only screen and (min-width: 769px) {
- /* categories */
- #col-left {
- width: 35%;
- }
-
- #col-right {
- width: 65%;
- }
-}
-
-@media only screen and (max-width: 860px) {
-
- /* categories */
- #col-left {
- width: 35%;
- }
-
- #col-right {
- width: 65%;
- }
-}
-
-@media only screen and (min-width: 980px) {
-
- /* categories */
- #col-left {
- width: 35%;
- }
-
- #col-right {
- width: 65%;
- }
-}
-
-@media only screen and (max-width: 768px) {
- /* categories */
- #col-left {
- width: 100%;
- }
-
- #col-right {
- width: 100%;
- }
-
- .form-field input,
- .form-field textarea {
- width: 99%;
- }
-
- .form-wrap .form-field {
- padding:0;
- }
-
- /* users */
- #profile-page .form-table textarea {
- max-width: 400px;
- width: auto;
- }
-}
-
-/**
- * HiDPI Displays
- */
-@media print,
- (-o-min-device-pixel-ratio: 5/4),
- (-webkit-min-device-pixel-ratio: 1.25),
- (min-resolution: 120dpi) {
-
- .press-this .tagchecklist span a {
- background-image: url('../images/xit-2x.gif');
- background-size: 20px auto;
- }
-
- .js .postbox:hover .handlediv,
- .js .stuffbox:hover .handlediv,
- .widget-top a.widget-action {
- background-image: url('../images/arrows-2x.png');
- background-size: 15px 123px;
- }
-
- .widget-top a.widget-action:hover {
- background-image: url('../images/arrows-dark-2x.png');
- background-size: 15px 123px;
- }
-
- .post-com-count {
- background-image: url('../images/bubble_bg-2x.gif');
- background-size: 18px 100px;
- }
-
- tr.wp-locked .locked-indicator {
- background-image: url('../images/lock-2x.png');
- background-size: 16px 16px;
- }
-
- th .comment-grey-bubble {
- background-image: url('../images/comment-grey-bubble-2x.png');
- background-size: 12px 12px;
- }
-
- .sorting-indicator {
- background-image: url('../images/sort-2x.gif?ver=20130102');
- background-size: 14px 4px;
- }
-
- #content-resize-handle,
- #post-body .wp_themeSkin .mceStatusbar a.mceResize {
- background: transparent url('../images/resize-2x.gif') no-repeat scroll right bottom;
- background-size: 11px 11px;
- }
-
- div.star-holder {
- background: url('../images/stars-2x.png?ver=20121108') repeat-x bottom left;
- background-size: 21px 37px;
- }
-
- div.star-holder .star-rating {
- background: url('../images/stars-2x.png?ver=20121108') repeat-x top left;
- background-size: 21px 37px;
- }
-
- .welcome-panel .welcome-panel-close:before {
- background-image: url('../images/xit-2x.gif');
- background-size: 20px auto;
- }
-
- .welcome-panel .welcome-icon {
- background-image: url('../images/welcome-icons-2x.png');
- }
-
- .login h1 a {
- background-image: url('../images/wordpress-logo-2x.png?ver=20120412');
- background-size: 274px 63px;
- }
-
- .wp-badge {
- background-image: url('../images/wp-badge-2x.png?ver=20120516');
- background-size: 173px 194px;
- }
-
- .wp-full-overlay .collapse-sidebar-arrow {
- background-image: url('../images/arrows-2x.png');
- background-size: 15px 123px;
- }
-
- .pressthis a span {
- background-image: url(../images/press-this-2x.png?v=20121105);
- }
-
- .imgedit-crop,
- .imgedit-rleft,
- .imgedit-rright,
- .imgedit-flipv,
- .imgedit-fliph,
- .imgedit-undo,
- .imgedit-redo {
- background-image: url('../images/imgedit-icons-2x.png');
- background-size: 260px 64px;
- }
-
- .spinner,
- .imgedit-wait,
- .customize-loading #customize-container {
- background-image: url(../images/wpspin_light-2x.gif);
- }
-
- .wp-slider .ui-slider-handle:before {
- background-image: url(../images/arrows-pr-2x.png);
- background-size: 16px 102px;
- }
-
-}
-
-/* =Localized CSS
--------------------------------------------------------------- */
-
-/* zh_CN: Remove italic properties. */
-.locale-zh-cn .howto,
-.locale-zh-cn .tablenav .displaying-num,
-.locale-zh-cn .js .input-with-default-title,
-.locale-zh-cn .link-to-original,
-.locale-zh-cn .inline-edit-row fieldset span.title,
-.locale-zh-cn .inline-edit-row fieldset span.checkbox-title,
-.locale-zh-cn #utc-time,
-.locale-zh-cn #local-time,
-.locale-zh-cn p.install-help,
-.locale-zh-cn p.help,
-.locale-zh-cn p.description,
-.locale-zh-cn span.description,
-.locale-zh-cn .form-wrap p {
- font-style: normal;
-}
-
-/* zh_CN: Enlarge dashboard widget 'Configure' link */
-.locale-zh-cn .hdnle a { font-size: 12px; }
-
-/* zn_CH: Enlarge font size, set font-size: normal */
-.locale-zh-cn form.upgrade .hint { font-style: normal; font-size: 100%; }
-
-/* Zn_CH: Distraction free writing.
- * More beautiful font for "Just write."
- * Larger text for HTML/Visual mode.
- */
-.locale-zh-cn #wp-fullscreen-tagline { font-family: KaiTi, "楷体", sans-serif; }
-.locale-zh-cn #wp-fullscreen-modes a { font-size: 12px; }
-
-/* zh_CN: Enlarge font-size. */
-.locale-zh-cn #sort-buttons { font-size: 1em !important; }
-
-/* ru_RU: Text needs more room to breathe. */
-.locale-ru-ru .inline-edit-row fieldset label span.title {
- width: auto; /* default 5em */
- min-width: 5em;
-}
-.locale-ru-ru.press-this .posting {
- margin-right: 257px; /* default 212px + 45px */
-}
-.locale-ru-ru.press-this #photo-add-url-div input[type="text"] {
- width: 255px; /* default 300px - 45px */
-}
-.locale-ru-ru.press-this #side-sortables {
- width: 245px; /* default 200px + 45px */
-}
-.locale-ru-ru #customize-header-actions .button {
- padding: 0 8px 1px; /* default 0 10px 1px; */
-}
-
-/* lt_LT: QuickEdit */
-.locale-lt-lt .inline-edit-row fieldset label span.title {
- width: 8em;
-}
-.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap {
- margin-left: 8em;
-}
+@import url(common.css);
+@import url(forms.css);
+@import url(admin-menu.css);
+@import url(dashboard.css);
+@import url(list-tables.css);
+@import url(edit.css);
+@import url(revisions.css);
+@import url(media.css);
+@import url(themes.css);
+@import url(press-this.css);
+@import url(about.css);
+@import url(nav-menus.css);
+@import url(widgets.css);
+@import url(l10n.css);
diff --git a/sources/wp-admin/css/wp-admin.min.css b/sources/wp-admin/css/wp-admin.min.css
index 40ffd2e..15ded2f 100644
--- a/sources/wp-admin/css/wp-admin.min.css
+++ b/sources/wp-admin/css/wp-admin.min.css
@@ -1 +1 @@
-#wpwrap{height:auto;min-height:100%;width:100%;position:relative}#wpcontent{height:100%}#wpcontent,#wpfooter{margin-left:165px}.folded #wpcontent,.folded #wpfooter{margin-left:52px}#wpbody-content{padding-bottom:65px;float:left;width:100%}#adminmenuback,#adminmenuwrap,#adminmenu,#adminmenu .wp-submenu{width:145px}#adminmenuback{position:absolute;top:0;bottom:0;z-index:-1}#adminmenu{clear:left;margin:0;padding:0;list-style:none}.folded #adminmenuback,.folded #adminmenuwrap,.folded #adminmenu,.folded #adminmenu li.menu-top{width:32px}.inner-sidebar{float:right;clear:right;display:none;width:281px;position:relative}.columns-2 .inner-sidebar{margin-right:auto;width:286px;display:block}.inner-sidebar #side-sortables,.columns-2 .inner-sidebar #side-sortables{min-height:300px;width:280px;padding:0}.has-right-sidebar .inner-sidebar{display:block}.has-right-sidebar #post-body{float:left;clear:left;width:100%;margin-right:-2000px}.has-right-sidebar #post-body-content{margin-right:300px;float:none;width:auto}#col-container,#col-left,#col-right{overflow:hidden;padding:0;margin:0}#col-left{width:35%}#col-right{float:right;clear:right;width:65%}.col-wrap{padding:0 7px}.alignleft{float:left}.alignright{float:right}.textleft{text-align:left}.textright{text-align:right}.clear{clear:both}.screen-reader-text,.screen-reader-text span,.ui-helper-hidden-accessible{position:absolute;left:-1000em;top:-1000em;height:1px;width:1px;overflow:hidden}.screen-reader-shortcut{position:absolute;top:-1000em}.screen-reader-shortcut:focus{left:6px;top:-21px;height:auto;width:auto;display:block;font-size:14px;font-weight:700;padding:15px 23px 14px;background:#f1f1f1;color:#21759b;border-radius:3px;z-index:100000;line-height:normal;-webkit-box-shadow:0 0 2px 2px rgba(0,0,0,.6);box-shadow:0 0 2px 2px rgba(0,0,0,.6);text-decoration:none}.hidden,.js .closed .inside,.js .hide-if-js,.no-js .hide-if-no-js,.js.wp-core-ui .hide-if-js,.js .wp-core-ui .hide-if-js,.no-js.wp-core-ui .hide-if-no-js,.no-js .wp-core-ui .hide-if-no-js{display:none}input[type=text],input[type=password],input[type=number],input[type=search],input[type=email],input[type=url],textarea{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{vertical-align:text-top;padding:0;margin:1px 0 0}input[type=search]{-webkit-appearance:textfield}input[type=search]::-webkit-search-decoration{display:none}html,body{height:100%;margin:0;padding:0}body{font-family:sans-serif;font-size:12px;line-height:1.4em;min-width:600px}body.iframe{min-width:0;padding-top:1px}body.login{background:#fbfbfb;min-width:0}iframe,img{border:0}td,textarea,input,select,button{font-family:inherit;font-size:inherit;font-weight:inherit}td,textarea{line-height:inherit}input,select{line-height:15px}a,input[type=text],input[type=password],input[type=number],input[type=search],input[type=email],input[type=url],select,textarea,div{outline:0}a:focus,a:active{outline:thin dotted}#adminmenu a:focus,#adminmenu a:active,.screen-reader-text:focus{outline:0}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}p{margin:1em 0}blockquote{margin:1em}label{cursor:pointer}li,dd{margin-bottom:6px}textarea,input,select{margin:1px;padding:3px}h1,h2,h3,h4,h5,h6{display:block;font-weight:700}h1{font-size:2em;margin:.67em 0}h2{font-size:1.5em;margin:.83em 0}h3{font-size:1.17em;margin:1em 0}h4{font-size:1em;margin:1.33em 0}h5{font-size:.83em;margin:1.67em 0}h6{font-size:.67em;margin:2.33em 0}ul,ol{padding:0}ul{list-style:none}ol{list-style-type:decimal;margin-left:2em}ul.ul-disc{list-style:disc outside}ul.ul-square{list-style:square outside}ol.ol-decimal{list-style:decimal outside}ul.ul-disc,ul.ul-square,ol.ol-decimal{margin-left:1.8em}ul.ul-disc>li,ul.ul-square>li,ol.ol-decimal>li{margin:0 0 .5em}.code,code{font-family:Consolas,Monaco,monospace}kbd,code{padding:1px 3px;margin:0 1px;font-size:11px}.subsubsub{list-style:none;margin:8px 0 5px;padding:0;font-size:12px;float:left}.subsubsub a{line-height:2;padding:.2em;text-decoration:none}.subsubsub a .count,.subsubsub a.current .count{color:#999;font-weight:400}.subsubsub a.current{font-weight:700;border:0}.subsubsub li{display:inline-block;margin:0;padding:0;white-space:nowrap}.widefat,div.updated,div.error,.wrap .add-new-h2,textarea,input[type=text],input[type=password],input[type=file],input[type=email],input[type=number],input[type=search],input[type=tel],input[type=url],select,.tablenav .tablenav-pages a,.tablenav-pages span.current,#titlediv #title,.postbox,#postcustomstuff table,#postcustomstuff input,#postcustomstuff textarea,.imgedit-menu div,.plugin-update-tr .update-message,#poststuff .inside .the-tagcloud,.login form,#login_error,.login .message,#menu-management .menu-edit,.nav-menus-php .list-container,.menu-item-handle,.link-to-original,.nav-menus-php .major-publishing-actions .form-invalid,.press-this #message,#TB_window,.tbtitle,.highlight,.feature-filter,#widget-list .widget-top,.editwidget .widget-inside{-webkit-border-radius:3px;border-radius:3px;border-width:1px;border-style:solid}.widefat{border-spacing:0;width:100%;clear:both;margin:0}.widefat *{word-wrap:break-word}.widefat a{text-decoration:none}.widefat thead th:first-of-type{-webkit-border-top-left-radius:3px;border-top-left-radius:3px}.widefat thead th:last-of-type{-webkit-border-top-right-radius:3px;border-top-right-radius:3px}.widefat tfoot th:first-of-type{-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px}.widefat tfoot th:last-of-type{-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px}.widefat td,.widefat th{border-width:1px 0;border-style:solid}.widefat tfoot th{border-bottom:0}.widefat .no-items td{border-bottom-width:0}.widefat td{font-size:12px;padding:4px 7px 2px;vertical-align:top}.widefat td p,.widefat td ol,.widefat td ul{font-size:12px}.widefat th{padding:7px 7px 8px;text-align:left;line-height:1.3em;font-size:14px}.widefat th input{margin:0 0 0 8px;padding:0;vertical-align:text-top}.widefat .check-column{width:2.2em;padding:6px 0 25px;vertical-align:top}.widefat tbody th.check-column{padding:9px 0 22px}.widefat.media .check-column{padding-top:8px}.widefat thead .check-column,.widefat tfoot .check-column{padding:10px 0 0}.no-js .widefat thead .check-column input,.no-js .widefat tfoot .check-column input{display:none}.widefat .num,.column-comments,.column-links,.column-posts{text-align:center}.widefat th#comments{vertical-align:middle}.wrap{margin:4px 15px 0 0}div.updated,div.error{padding:0 .6em;margin:5px 15px 2px}div.updated p,div.error p{margin:.5em 0;padding:2px}.wrap div.updated,.wrap div.error,.media-upload-form div.error{margin:5px 0 15px}.wrap h2,.subtitle{font-weight:400;margin:0;text-shadow:#fff 0 1px 0}.wrap h2{font-size:23px;padding:9px 15px 4px 0;line-height:29px}.subtitle{font-size:14px;padding-left:25px}.wrap .add-new-h2{font-family:sans-serif;margin-left:4px;padding:3px 8px;position:relative;top:-3px;text-decoration:none;font-size:12px;border:0 none}.wrap h2.long-header{padding-right:0}html,.wp-dialog{background-color:#fff}textarea,input[type=text],input[type=password],input[type=file],input[type=email],input[type=number],input[type=search],input[type=tel],input[type=url],select{background-color:#fff;color:#333}select{color:#000}select[disabled]{color:#7f7f7f}select:focus{border-color:#aaa}textarea:focus,input[type=text]:focus,input[type=password]:focus,input[type=file]:focus,input[type=email]:focus,input[type=number]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=url]:focus,select:focus{-webkit-box-shadow:1px 1px 2px rgba(0,0,0,.1);box-shadow:1px 1px 2px rgba(0,0,0,.1)}input[readonly]{background-color:#eee}:-moz-placeholder,.wp-core-ui :-moz-placeholder{color:#a9a9a9}div.sidebar-name h3,#menu-management .nav-tab,#dashboard_plugins h5,a.rsswidget,#dashboard_right_now td.b,#dashboard-widgets h4,.tool-box .title,#poststuff h3,.metabox-holder h3,.pressthis a,#your-profile legend,.inline-edit-row fieldset span.title,.inline-edit-row fieldset span.checkbox-title,.tablenav .displaying-num,.widefat th,.quicktags,.search{font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif}h2 .nav-tab,.wrap h2,.subtitle,.login form .input{font-family:HelveticaNeue-Light,"Helvetica Neue Light","Helvetica Neue",sans-serif}.quicktags,.search{font-size:12px}.icon32{float:left;height:34px;margin:7px 8px 0 0;width:36px}.icon16{height:18px;width:18px;padding:6px;margin:-6px 0 0 -8px;float:left}.key-labels label{line-height:24px}.pre{white-space:pre-wrap;word-wrap:break-word}.howto{font-style:italic;display:block;font-family:sans-serif}p.install-help{margin:8px 0;font-style:italic}.no-break{white-space:nowrap}.wp-admin select{padding:2px;height:2em}.wp-admin select[multiple]{height:auto}.submit{padding:1.5em 0;margin:5px 0;-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-left-radius:3px;border-bottom-right-radius:3px}form p.submit a.cancel:hover{text-decoration:none}#minor-publishing-actions input,#major-publishing-actions input,#minor-publishing-actions .preview{text-align:center}textarea.all-options,input.all-options{width:250px}input.large-text,textarea.large-text{width:99%}input.regular-text,#adduser .form-field input{width:25em}input.small-text{width:50px}input[type=number].small-text{width:60px}#doaction,#doaction2,#post-query-submit{margin:1px 8px 0 0}.tablenav #changeit,.tablenav #delete_all,.tablenav #clear-recent-list{margin-top:1px}.tablenav .actions select{float:left;margin-right:6px;max-width:200px}.ie8 .tablenav .actions select{width:155px}.ie8 .tablenav .actions select#cat{width:200px}#timezone_string option{margin-left:1em}label,#your-profile label+a{vertical-align:middle}#misc-publishing-actions label{vertical-align:baseline}#pass-strength-result{border-style:solid;border-width:1px;float:left;margin:13px 5px 5px 1px;padding:3px 5px;text-align:center;width:200px;display:none}.indicator-hint{padding-top:8px}p.search-box{float:right;margin:0}.search-box input[name="s"],#search-plugins input[name="s"],.tagsdiv .newtag{float:left;height:2em;margin:0 4px 0 0}input[type=text].ui-autocomplete-loading{background:transparent url(../images/loading.gif) no-repeat right center;visibility:visible}ul#add-to-blog-users{margin:0 0 0 14px}.ui-autocomplete-input.open{border-bottom-right-radius:0;border-bottom-left-radius:0}.ui-autocomplete{padding:0;margin:0;list-style:none;position:absolute;z-index:10000;border-bottom-right-radius:3px;border-bottom-left-radius:3px;border-width:1px;border-style:solid}.ui-autocomplete li{margin-bottom:0;white-space:nowrap;text-align:left}.ui-autocomplete li a{display:block;height:100%;padding:4px 10px}.ui-autocomplete li a.ui-state-focus{cursor:pointer}#major-publishing-actions{padding:10px 10px 8px;clear:both;border-top:1px solid #f5f5f5;margin-top:-2px}#delete-action{line-height:25px;vertical-align:middle;text-align:left;float:left}#publishing-action{text-align:right;float:right;line-height:23px}#publishing-action .spinner{float:left}#misc-publishing-actions{padding:6px 0 0}.misc-pub-section{padding:6px 10px 8px;border-width:1px 0;border-style:solid}.misc-pub-section:first-child{border-top-width:0}.misc-pub-section-last{border-bottom-width:0}#minor-publishing-actions{padding:10px 10px 2px 8px;text-align:right}#minor-publishing{border-bottom-width:1px;border-bottom-style:solid;-webkit-box-shadow:0 1px 0 #fff;box-shadow:0 1px 0 #fff}#save-post{float:left}.preview{float:right}#sticky-span{margin-left:18px}.side-info{margin:0;padding:4px;font-size:11px}.side-info h5{padding-bottom:7px;font-size:14px;margin:12px 2px 5px;border-bottom-width:1px;border-bottom-style:solid}.side-info ul{margin:0;padding-left:18px;list-style:square}.approve,.unapproved .unapprove{display:none}.unapproved .approve,.spam .approve,.trash .approve{display:inline}td.action-links,th.action-links{text-align:right}#update-nag,.update-nag{line-height:19px;padding:5px 0;font-size:12px;text-align:center;margin:-1px 15px 0 5px;border-width:1px;border-style:solid;-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.plugins .plugin-update{padding:0}.plugin-update .update-message{margin:0 10px 8px 31px;font-weight:700}ul#dismissed-updates{display:none}form.upgrade{margin-top:8px}form.upgrade .hint{font-style:italic;font-size:85%;margin:-.5em 0 2em 0}.update-php .spinner{float:none;margin:-4px 0}#ajax-loading,.ajax-loading,.ajax-feedback,.imgedit-wait-spin,.list-ajax-loading{visibility:hidden}#ajax-response.alignleft{margin-left:2em}#adminmenu a,#sidemenu a,#taglist a,#catlist a{text-decoration:none}#screen-options-wrap,#contextual-help-wrap{margin:0;padding:8px 20px 12px;position:relative}#contextual-help-wrap{overflow:auto}#screen-meta .screen-reader-text{visibility:hidden}#screen-meta-links{margin:0 24px 0 0}#screen-meta-links a:focus{-webkit-box-shadow:1px 1px 1px rgba(0,0,0,.4);box-shadow:1px 1px 1px rgba(0,0,0,.4);outline:0}#screen-meta{display:none;position:relative;margin:0 15px 0 5px;border-width:0 1px 1px;border-style:none solid solid}#screen-options-link-wrap,#contextual-help-link-wrap{float:right;height:23px;padding:0;margin:0 0 0 6px;font-family:sans-serif}#screen-options-link-wrap,#contextual-help-link-wrap,#screen-meta{-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-left-radius:3px;border-bottom-right-radius:3px}#screen-meta-links .screen-meta-toggle{position:relative;top:-1px}#screen-meta-links a.show-settings{text-decoration:none;z-index:1;padding:1px 16px 0 6px;height:22px;line-height:22px;font-size:12px;display:block;text-shadow:rgba(255,255,255,.7) 0 1px 0}#screen-meta-links a.show-settings:hover{text-decoration:none}.toggle-arrow{background-repeat:no-repeat;background-position:top left;background-color:transparent;height:22px;line-height:22px;display:block}.toggle-arrow-active{background-position:bottom left}#screen-options-wrap h5,#contextual-help-wrap h5{margin:8px 0;font-size:13px}.metabox-prefs label{display:inline-block;padding-right:15px;white-space:nowrap;line-height:30px}.metabox-prefs label input{margin:0 5px 0 2px}.metabox-prefs .columns-prefs label input{margin:0 2px}.metabox-prefs label a{display:none}#contextual-help-wrap{padding:0;margin-left:-4px}#contextual-help-columns{position:relative}#contextual-help-back{position:absolute;top:0;bottom:0;left:150px;right:170px;border-width:0 1px;border-style:solid}#contextual-help-wrap.no-sidebar #contextual-help-back{right:0;border-right-width:0;-webkit-border-bottom-right-radius:2px;border-bottom-right-radius:2px}.contextual-help-tabs{float:left;width:150px;margin:0}.contextual-help-tabs ul{margin:1em 0}.contextual-help-tabs li{margin-bottom:0;list-style-type:none;border-style:solid;border-width:1px 0;border-color:transparent}.contextual-help-tabs a{display:block;padding:5px 5px 5px 12px;line-height:18px;text-decoration:none}.contextual-help-tabs .active{padding:0;margin:0 -1px 0 0;border-width:1px 0 1px 1px;border-style:solid}.contextual-help-tabs-wrap{padding:0 20px;overflow:auto}.help-tab-content{display:none;margin:0 22px 12px 0;line-height:1.6em}.help-tab-content.active{display:block}.help-tab-content ul li{list-style-type:disc;margin-left:18px}.contextual-help-sidebar{width:150px;float:right;padding:0 8px 0 12px;overflow:auto}#adminmenuback,#adminmenuwrap{border-width:0 1px 0 0;border-style:solid}#adminmenuwrap{position:relative;float:left}#adminmenushadow{position:absolute;top:0;right:0;bottom:0;width:6px;z-index:20}#adminmenu *{-webkit-user-select:none;-moz-user-select:none;user-select:none}#adminmenu li{margin:0;padding:0;cursor:pointer}#adminmenu a{display:block;line-height:18px;padding:2px 5px}#adminmenu li.menu-top{min-height:28px;position:relative}#adminmenu .wp-submenu{list-style:none;padding:4px 0;margin:0;position:absolute;top:-1000em;left:146px;z-index:1000;overflow:visible;border-width:1px;border-style:solid;-webkit-border-bottom-right-radius:3px;-webkit-border-top-right-radius:3px;border-bottom-right-radius:3px;border-top-right-radius:3px}.js #adminmenu .sub-open,.js #adminmenu .opensub .wp-submenu,#adminmenu a.menu-top:focus+.wp-submenu,.no-js li.wp-has-submenu:hover .wp-submenu{top:-1px}#adminmenu .wp-has-current-submenu .wp-submenu,.no-js li.wp-has-current-submenu:hover .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu,#adminmenu .wp-has-current-submenu .wp-submenu.sub-open,#adminmenu .wp-has-current-submenu.opensub .wp-submenu{position:relative;z-index:3;top:auto;left:auto;right:auto;bottom:auto;border:0 none;-webkit-box-shadow:none;box-shadow:none}.folded #adminmenu .wp-submenu.sub-open,.folded #adminmenu .opensub .wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,.folded #adminmenu .wp-has-current-submenu.opensub .wp-submenu,.folded #adminmenu a.menu-top:focus+.wp-submenu,.folded #adminmenu .wp-has-current-submenu a.menu-top:focus+.wp-submenu,.no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu{top:-1px;left:32px}.folded #adminmenu a.wp-has-current-submenu:focus+.wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu{border-width:1px;border-style:solid;position:absolute;top:-1000em}#adminmenu .wp-submenu a{font-size:12px;line-height:18px;margin:0;padding-left:12px}#adminmenu .wp-not-current-submenu li>a{padding-left:16px}#adminmenu .wp-has-current-submenu ul>li>a,.folded #adminmenu li.menu-top .wp-submenu>li>a{padding-left:12px}#adminmenu a.menu-top,#adminmenu .wp-submenu-head{font-size:13px;font-weight:700;line-height:18px;padding:0}#adminmenu .wp-submenu-head,.folded #adminmenu .wp-menu-name{display:none}.folded #adminmenu .wp-submenu-head{display:block}#adminmenu .wp-submenu li{padding:0;margin:0;overflow:hidden}#adminmenu a.menu-top{border-width:1px 0;border-style:solid none}#adminmenu .wp-menu-image img{padding:7px 0 0 7px;opacity:.6;filter:alpha(opacity=60)}#adminmenu div.wp-menu-name{padding:5px}#adminmenu div.wp-menu-image{float:left;width:28px;height:28px}.folded #adminmenu div.wp-menu-image{width:32px;position:absolute;z-index:25}.folded #adminmenu a.menu-top{height:28px}.wp-menu-arrow{z-index:25;position:absolute;right:100%;margin:0;height:30px;width:6px;-moz-transform:translate(146px);-webkit-transform:translate(146px);-o-transform:translate(146px);-ms-transform:translate(146px);transform:translate(146px)}#adminmenu .wp-menu-arrow div{display:none;position:absolute;top:7px;left:-1px;width:14px;height:15px;-moz-transform:matrix(-.6,1,.6,1,0,0);-webkit-transform:matrix(-.6,1,.6,1,0,0);-o-transform:matrix(-.6,1,.6,1,0,0);-ms-transform:matrix(-.6,1,.6,1,0,0);transform:matrix(-.6,1,.6,1,0,0)}#adminmenu li.wp-not-current-submenu .wp-menu-arrow{-moz-transform:translate(145px);-webkit-transform:translate(145px);-o-transform:translate(145px);-ms-transform:translate(145px);transform:translate(145px);height:28px;border-width:1px 0;border-style:solid;top:0}.folded #adminmenu li .wp-menu-arrow{-moz-transform:translate(32px);-webkit-transform:translate(32px);-o-transform:translate(32px);-ms-transform:translate(32px);transform:translate(32px)}#adminmenu li.current .wp-menu-arrow,#adminmenu li.wp-has-current-submenu .wp-menu-arrow,#adminmenu li.wp-has-current-submenu .wp-menu-arrow div,#adminmenu li.wp-has-submenu .wp-menu-arrow div,#adminmenu li.current .wp-menu-arrow div,.no-js #adminmenu li.wp-has-submenu:hover .wp-menu-arrow,#adminmenu li.wp-has-submenu.opensub .wp-menu-arrow,#adminmenu a.wp-has-submenu:focus .wp-menu-arrow,#adminmenu a:hover .wp-menu-arrow{display:block}#adminmenu li.current .wp-menu-arrow,#adminmenu li.wp-menu-open .wp-menu-arrow{top:0}.no-js #adminmenu li.wp-has-submenu:hover .wp-menu-arrow,#adminmenu li.wp-has-submenu.opensub .wp-menu-arrow,#adminmenu a.wp-has-submenu:focus .wp-menu-arrow{z-index:1001}.ie8 #adminmenu li.menu-top:hover .wp-menu-arrow{display:none}#adminmenu .wp-not-current-submenu .wp-menu-arrow div{width:15px;top:6px;border-width:0 0 1px 1px;border-style:solid}.wp-menu-arrow,.folded #adminmenu li .wp-menu-arrow div,.no-js #adminmenu li.wp-not-current-submenu:hover .wp-menu-arrow{display:none}.folded #adminmenu li.current .wp-menu-arrow,.folded #adminmenu li.current .wp-menu-arrow div,.folded #adminmenu li.wp-has-current-submenu .wp-menu-arrow div,.folded #adminmenu li.wp-menu-open .wp-menu-arrow,.folded #adminmenu li a:focus .wp-menu-arrow{display:block}#adminmenu li.menu-top:hover .wp-menu-image img,#adminmenu li.wp-has-current-submenu .wp-menu-image img{opacity:1;filter:alpha(opacity=100)}#adminmenu li.wp-menu-separator{height:3px;padding:0;margin:0;border-width:1px 0;border-style:solid;cursor:inherit}#adminmenu div.separator{height:1px;padding:0;border-width:1px 0 0;border-style:solid}#adminmenu .wp-submenu .wp-submenu-head{padding:5px 4px 5px 10px;margin:-4px -1px 4px;border-width:1px 0;border-style:solid;-webkit-border-top-right-radius:3px;border-top-right-radius:3px}#adminmenu li.wp-menu-open{border-width:0 0 1px;border-style:solid}#adminmenu li.current,.folded #adminmenu li.wp-menu-open{border:0 none}.folded #adminmenu li.wp-has-current-submenu{margin-bottom:1px}.folded #adminmenu .wp-has-current-submenu.menu-top-last{margin-bottom:0}#adminmenu .awaiting-mod,#adminmenu span.update-plugins,#sidemenu li a span.update-plugins{position:absolute;font-family:sans-serif;font-size:9px;line-height:17px;font-weight:700;margin-top:1px;margin-left:7px;-webkit-border-radius:10px;border-radius:10px;z-index:26}#adminmenu li .awaiting-mod span,#adminmenu li span.update-plugins span,#sidemenu li a span.update-plugins span{display:block;padding:0 6px}#adminmenu li span.count-0,#sidemenu li a .count-0{display:none}#collapse-menu{font-size:12px;line-height:34px;border-width:1px 0 0;border-style:solid}.folded #collapse-menu span{display:none}#collapse-button,#collapse-button div{width:15px;height:15px}#collapse-button{float:left;margin:8px 6px;border-width:1px;border-style:solid;-webkit-border-radius:10px;border-radius:10px}@media only screen and (max-width:900px){.auto-fold #wpcontent,.auto-fold #wpfooter{margin-left:52px}.auto-fold #adminmenuback,.auto-fold #adminmenuwrap,.auto-fold #adminmenu,.auto-fold #adminmenu li.menu-top{width:32px}.auto-fold #adminmenu .wp-submenu.sub-open,.auto-fold #adminmenu .opensub .wp-submenu,.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,.auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu,.auto-fold #adminmenu a.menu-top:focus+.wp-submenu,.auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus+.wp-submenu{top:-1px;left:32px}.auto-fold #adminmenu a.wp-has-current-submenu:focus+.wp-submenu,.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu{border-width:1px;border-style:solid;position:absolute;top:-1000em}.auto-fold #adminmenu li.menu-top .wp-submenu>li>a{padding-left:12px}.auto-fold #adminmenu .wp-menu-name{display:none}.auto-fold #adminmenu .wp-submenu-head{display:block}.auto-fold #adminmenu div.wp-menu-image{width:32px;position:absolute;z-index:25}.auto-fold #adminmenu a.menu-top{height:28px}.auto-fold #adminmenu li .wp-menu-arrow{-moz-transform:translate(32px);-webkit-transform:translate(32px);-o-transform:translate(32px);-ms-transform:translate(32px);transform:translate(32px)}.auto-fold #adminmenu li .wp-menu-arrow div{display:none}.auto-fold #adminmenu li.current .wp-menu-arrow,.auto-fold #adminmenu li.current .wp-menu-arrow div,.auto-fold #adminmenu li.wp-has-current-submenu .wp-menu-arrow div,.auto-fold #adminmenu li.wp-menu-open .wp-menu-arrow,.auto-fold #adminmenu li a:focus .wp-menu-arrow{display:block}.auto-fold #adminmenu li.wp-menu-open{border:0 none}.auto-fold #adminmenu li.wp-has-current-submenu{margin-bottom:1px}.auto-fold #adminmenu .wp-has-current-submenu.menu-top-last{margin-bottom:0}.auto-fold #collapse-menu span{display:none}}.post-com-count-wrapper{min-width:22px;font-family:sans-serif}.post-com-count{background-image:url(../images/bubble_bg.gif);height:1.3em;line-height:1.1em;display:block;text-decoration:none;padding:0 0 6px;cursor:pointer;background-position:center -80px;background-repeat:no-repeat}.post-com-count span{font-size:11px;font-weight:700;height:1.4em;line-height:1.4em;min-width:.7em;padding:0 6px;display:inline-block;-webkit-border-radius:5px;border-radius:5px}strong .post-com-count{background-position:center -55px}.post-com-count:hover{background-position:center -3px}.column-response .post-com-count{float:left;margin-right:5px;text-align:center}.response-links{float:left}#the-comment-list .attachment-80x60{padding:4px 8px}th .comment-grey-bubble{background-image:url(../images/comment-grey-bubble.png);background-repeat:no-repeat;height:12px;width:12px}html.wp-toolbar{padding-top:28px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.narrow{width:70%;margin-bottom:40px}.narrow p{line-height:150%}.widefat th,.widefat td{overflow:hidden}.widefat th{font-weight:400}.widefat td p{margin:2px 0 .8em}.widefat .column-comment p{margin:.6em 0}.postbox-container{float:left}#dashboard-widgets.columns-1 .postbox-container{width:100%}#dashboard-widgets.columns-2 .postbox-container{width:49.5%}#dashboard-widgets.columns-2 #postbox-container-2,#dashboard-widgets.columns-2 #postbox-container-3,#dashboard-widgets.columns-2 #postbox-container-4{float:right;width:50.5%}#dashboard-widgets.columns-3 .postbox-container{width:33.5%}#dashboard-widgets.columns-3 #postbox-container-1{width:33%}#dashboard-widgets.columns-3 #postbox-container-3,#dashboard-widgets.columns-3 #postbox-container-4{float:right}#dashboard-widgets.columns-4 .postbox-container{width:25%}.postbox-container .meta-box-sortables{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.metabox-holder .postbox-container .empty-container{border:3px dashed #CCC;height:250px}.metabox-holder.columns-1 .postbox-container .empty-container,.columns-2 #postbox-container-3 .empty-container,.columns-2 #postbox-container-4 .empty-container,.columns-3 #postbox-container-4 .empty-container{border:0 none;height:0;min-height:0}#poststuff{padding-top:10px}#poststuff #post-body{padding:0}#post-body-content{width:100%;float:left}#poststuff .postbox-container{width:100%}#poststuff #post-body.columns-2{margin-right:300px}#post-body.columns-2 #postbox-container-1{float:right;margin-right:-300px;width:280px}#post-body.columns-2 #side-sortables{min-height:250px}@media only screen and (max-width:799px){#wpbody-content #dashboard-widgets .postbox-container{width:100%}#wpbody-content .metabox-holder .postbox-container .empty-container{border:0 none;height:0;min-height:0}}@media only screen and (min-width:800px) and (max-width:1200px){#wpbody-content #dashboard-widgets .postbox-container{width:49.5%}#wpbody-content #dashboard-widgets #postbox-container-2,#wpbody-content #dashboard-widgets #postbox-container-3,#wpbody-content #dashboard-widgets #postbox-container-4{float:right;width:50.5%}#dashboard-widgets #postbox-container-3 .empty-container,#dashboard-widgets #postbox-container-4 .empty-container{border:0 none;height:0;min-height:0}#wpbody #wpbody-content #dashboard-widgets.columns-1 .postbox-container{width:100%}#wpbody #wpbody-content .metabox-holder.columns-1 .postbox-container .empty-container{border:0 none;height:0;min-height:0}.index-php .screen-layout,.index-php .columns-prefs{display:block}.columns-prefs .columns-prefs-3,.columns-prefs .columns-prefs-4{display:none}}@media only screen and (max-width:960px){#wpbody-content #poststuff #post-body{margin:0}#wpbody-content #post-body.columns-2 #postbox-container-1{margin-right:0;width:100%}#poststuff #postbox-container-1 .empty-container,#poststuff #postbox-container-1 #side-sortables:empty{border:0 none;height:0;min-height:0}#poststuff #post-body.columns-2 #side-sortables{min-height:0}.screen-layout,.columns-prefs{display:none}}.postbox .hndle{-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px}.js .postbox .hndle{cursor:move}.postbox.closed .hndle{-webkit-border-radius:3px;border-radius:3px}.hndle a{font-size:11px;font-weight:400}.postbox .handlediv{float:right;width:27px;height:30px}.js .postbox .handlediv{cursor:pointer}.sortable-placeholder{border-width:1px;border-style:dashed;margin-bottom:20px}.widget,.postbox,.stuffbox{margin-bottom:20px;padding:0;border-width:1px;border-style:solid;line-height:1}.widget .widget-top,.postbox h3,.stuffbox h3{margin-top:1px;border-bottom-width:1px;border-bottom-style:solid;-webkit-user-select:none;-moz-user-select:none;user-select:none}.js .widget .widget-top,.js .postbox h3{cursor:move}.postbox .inside,.stuffbox .inside{padding:0 12px 0 10px;line-height:1.4em}.postbox .inside{margin:10px 0;position:relative}.postbox.closed h3{border:0;-webkit-box-shadow:none;box-shadow:none}.postbox table.form-table{margin-bottom:0}.temp-border{border:1px dotted #ccc}.columns-prefs label{padding:0 5px}#dashboard-widgets-wrap{margin:0 -8px}#wpbody-content .metabox-holder{padding-top:10px}#dashboard-widgets .meta-box-sortables{margin:0 8px}#dashboard_recent_comments div.undo{border-top-style:solid;border-top-width:1px;margin:0 -10px;padding:3px 8px;font-size:11px}#the-comment-list td.comment p.comment-author{margin-top:0;margin-left:0}#the-comment-list p.comment-author img{float:left;margin-right:8px}#the-comment-list p.comment-author strong a{border:0}#the-comment-list td{vertical-align:top}#the-comment-list td.comment{word-wrap:break-word}.welcome-panel{position:relative;overflow:auto;margin:20px 0;padding:23px 10px 12px;border-width:1px;border-style:solid;border-radius:3px;font-size:13px;line-height:2.1em}.welcome-panel h3{margin:0;font-family:HelveticaNeue-Light,"Helvetica Neue Light","Helvetica Neue",sans-serif;font-size:21px;font-weight:400;line-height:1.2}.welcome-panel h4{margin:1.33em 0 0;font-size:13px}.welcome-panel .about-description{font-size:16px;margin:0}.welcome-panel .welcome-panel-close{position:absolute;top:5px;right:10px;padding:8px 3px;font-size:13px;text-decoration:none;line-height:1}.welcome-panel .welcome-panel-close:before{content:' ';position:absolute;left:-12px;width:10px;height:100%;background:url(../images/xit.gif) 0 17% no-repeat}.welcome-panel .welcome-panel-close:hover:before{background-position:100% 17%}.wp-core-ui .welcome-panel .button.button-hero{margin:15px 0 3px}.welcome-panel-content{margin-left:13px;max-width:1500px}.welcome-panel .welcome-panel-column-container{clear:both;overflow:hidden;position:relative}.welcome-panel .welcome-panel-column{width:32%;min-width:200px;float:left}.ie8 .welcome-panel .welcome-panel-column{min-width:230px}.welcome-panel .welcome-panel-column:first-child{width:36%}.welcome-panel-column p{margin-top:7px}.welcome-panel .welcome-icon{display:block;padding:2px 0 8px 32px;background-image:url(../images/welcome-icons.png);background-repeat:no-repeat;background-size:16px}.welcome-panel .welcome-add-page{background-position:0 2px}.welcome-panel .welcome-edit-page{background-position:0 -90px}.welcome-panel .welcome-learn-more{background-position:0 -136px}.welcome-panel .welcome-comments{background-position:0 -182px}.welcome-panel .welcome-view-site{background-position:0 -274px}.welcome-panel .welcome-widgets-menus{background-position:1px -229px;line-height:14px}.welcome-panel .welcome-write-blog{background-position:0 -44px}.welcome-panel .welcome-panel-column ul{margin:.8em 1em 1em 0}.welcome-panel .welcome-panel-column li{line-height:16px;list-style-type:none}@media screen and (max-width:870px){.welcome-panel .welcome-panel-column,.welcome-panel .welcome-panel-column:first-child{display:block;float:none;width:100%}.welcome-panel .welcome-panel-column li{display:inline-block;margin-right:13px}.welcome-panel .welcome-panel-column ul{margin:.4em 0 0}.welcome-panel .welcome-icon{padding-left:25px}}table.fixed{table-layout:fixed}.fixed .column-rating,.fixed .column-visible{width:8%}.fixed .column-posts,.fixed .column-date,.fixed .column-parent,.fixed .column-links,.fixed .column-author,.fixed .column-format{width:10%}.fixed .column-response,.fixed .column-categories,.fixed .column-tags,.fixed .column-rel,.fixed .column-role{width:15%}.fixed .column-slug{width:25%}.fixed .column-locations{width:35%}.fixed .column-comments{width:4em;padding:8px 0;text-align:left}.fixed .column-comments .vers{padding-left:3px}.fixed .column-comments a{float:left}.fixed .column-icon{width:80px}#comments-form .fixed .column-author{width:20%}#commentsdiv.postbox .inside{margin:0;padding:0}#commentsdiv .inside .row-actions{line-height:18px}#commentsdiv .inside .column-author{width:25%}#commentsdiv .column-comment p{margin:.6em 0;padding:0}#commentsdiv #replyrow td{padding:0}#commentsdiv p{padding:8px 10px;margin:0}#commentsdiv #add-new-comment{border-width:0 0 1px;border-style:none none solid}#commentsdiv .comments-box{border:0 none}#commentsdiv .comments-box thead th{background:transparent;padding:0 7px 4px;font-style:italic}#commentsdiv .comments-box tr:last-child td{border-bottom:0 none}#commentsdiv .spinner{padding-left:5px}.sorting-indicator{display:none;width:7px;height:4px;margin-top:8px;margin-left:7px;background-image:url(../images/sort.gif);background-repeat:no-repeat}tr.wp-locked .locked-indicator{background:url(../images/lock.png) no-repeat;margin:-2px 0 0 6px;height:20px;width:16px}tr.wp-locked .check-column label,tr.wp-locked .check-column input[type=checkbox],tr.wp-locked .row-actions .inline,tr.wp-locked .row-actions .trash{display:none}tr .locked-info{height:0;opacity:0}tr.wp-locked .locked-info{height:auto;opacity:1}tr.locked-info,tr.wp-locked .locked-info{-webkit-transition:height 1s,opacity 500ms;-moz-transition:height 1s,opacity 500ms;-ms-transition:height 1s,opacity 500ms;-o-transition:height 1s,opacity 500ms;transition:height 1s,opacity 500ms}.fixed .column-comments .sorting-indicator{margin-top:3px}#menu-locations-wrap .widefat{width:60%}.widefat th.sortable,.widefat th.sorted{padding:0}th.sortable a,th.sorted a{display:block;overflow:hidden;padding:7px 7px 8px}.fixed .column-comments.sortable a,.fixed .column-comments.sorted a{padding:8px 0}th.sortable a span,th.sorted a span{float:left;cursor:pointer}th.sorted.asc .sorting-indicator,th.desc:hover span.sorting-indicator{display:block;background-position:0 0}th.sorted.desc .sorting-indicator,th.asc:hover span.sorting-indicator{display:block;background-position:-7px 0}.tablenav-pages a{border-bottom-style:solid;border-bottom-width:2px;font-weight:700;margin-right:1px;padding:0 2px}.tablenav-pages .current-page{text-align:center}.tablenav-pages .next-page{margin-left:2px}.tablenav a.button-secondary{display:block;margin:3px 8px 0 0}.tablenav{clear:both;height:30px;margin:6px 0 4px;vertical-align:middle}.tablenav.themes{max-width:98%}.tablenav .tablenav-pages{float:right;display:block;cursor:default;height:30px;line-height:30px;font-size:12px}.tablenav .no-pages,.tablenav .one-page .pagination-links{display:none}.tablenav .tablenav-pages a,.tablenav-pages span.current{text-decoration:none;padding:3px 6px}.tablenav .tablenav-pages a.disabled:hover,.tablenav .tablenav-pages a.disabled:active{cursor:default}.tablenav .displaying-num{margin-right:10px;font-size:12px;font-style:italic}.tablenav .actions{overflow:hidden;padding:2px 8px 0 0}.tablenav .delete{margin-right:20px}.view-switch{float:right;margin:6px 8px 0}.view-switch a{text-decoration:none}.filter{float:left;margin:-5px 0 0 10px}.filter .subsubsub{margin-left:-10px;margin-top:13px}.screen-per-page{width:4em}#posts-filter fieldset{float:left;margin:0 1.5ex 1em 0;padding:0}#posts-filter fieldset legend{padding:0 0 .2em 1px}#wpbody-content .inline-edit-row fieldset{font-size:12px;float:left;margin:0;padding:0;width:100%}tr.inline-edit-row td,#wpbody-content .inline-edit-row fieldset .inline-edit-col{padding:0 .5em}#wpbody-content .quick-edit-row-page fieldset.inline-edit-col-right .inline-edit-col{border-width:0 0 0 1px;border-style:none none none solid}#wpbody-content .quick-edit-row-post .inline-edit-col-left{width:40%}#wpbody-content .quick-edit-row-post .inline-edit-col-right{width:39%}#wpbody-content .inline-edit-row-post .inline-edit-col-center{width:20%}#wpbody-content .quick-edit-row-page .inline-edit-col-left{width:50%}#wpbody-content .quick-edit-row-page .inline-edit-col-right,#wpbody-content .bulk-edit-row-post .inline-edit-col-right{width:49%}#wpbody-content .bulk-edit-row .inline-edit-col-left{width:30%}#wpbody-content .bulk-edit-row-page .inline-edit-col-right{width:69%}#wpbody-content .bulk-edit-row .inline-edit-col-bottom{float:right;width:69%}#wpbody-content .inline-edit-row-page .inline-edit-col-right{margin-top:27px}.inline-edit-row fieldset .inline-edit-group{clear:both}.inline-edit-row fieldset .inline-edit-group:after{content:".";display:block;height:0;clear:both;visibility:hidden}.inline-edit-row p.submit{clear:both;padding:.5em;margin:.5em 0 0}.inline-edit-row span.error{line-height:22px;margin:0 15px;padding:3px 5px}.inline-edit-row h4{margin:.2em 0;padding:0;line-height:23px}.inline-edit-row fieldset span.title,.inline-edit-row fieldset span.checkbox-title{margin:0;padding:0;line-height:27px}.inline-edit-row fieldset label,.inline-edit-row fieldset span.inline-edit-categories-label{display:block;margin:.2em 0}.inline-edit-row fieldset label.inline-edit-tags{margin-top:0}.inline-edit-row fieldset label.inline-edit-tags span.title{margin:.2em 0;width:auto}.inline-edit-row fieldset label span.title{display:block;float:left;width:5em}.inline-edit-row fieldset label span.input-text-wrap{display:block;margin-left:5em}.quick-edit-row-post fieldset.inline-edit-col-right label span.title{width:auto;padding-right:.5em}.inline-edit-row .input-text-wrap input[type=text]{width:100%}.inline-edit-row fieldset label input[type=checkbox]{vertical-align:text-bottom}.inline-edit-row fieldset label textarea{width:100%;height:4em}#wpbody-content .bulk-edit-row fieldset .inline-edit-group label{max-width:50%}#wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child{margin-right:.5em}.inline-edit-col-right .input-text-wrap input.inline-edit-menu-order-input{width:6em}.inline-edit-save .spinner{padding:4px 10px 0;vertical-align:top;float:right}.inline-edit-row h4{text-transform:uppercase}.inline-edit-row fieldset span.title,.inline-edit-row fieldset span.checkbox-title{font-style:italic;line-height:1.8em}.inline-edit-row fieldset input[type=text],.inline-edit-row fieldset textarea{border-style:solid;border-width:1px}.inline-edit-row fieldset .inline-edit-date{float:left}.inline-edit-row fieldset input[name=jj],.inline-edit-row fieldset input[name=hh],.inline-edit-row fieldset input[name=mn]{font-size:12px;width:2.1em}.inline-edit-row fieldset input[name=aa]{font-size:12px;width:3.5em}.inline-edit-row fieldset label input.inline-edit-password-input{width:8em}ul.cat-checklist{height:12em;border-style:solid;border-width:1px;overflow-y:scroll;padding:0 5px;margin:0}#bulk-titles{display:block;height:12em;border-style:solid;border-width:1px;overflow-y:scroll;padding:0 5px;margin:0 0 5px}.inline-edit-row fieldset ul.cat-checklist li,.inline-edit-row fieldset ul.cat-checklist input{margin:0}.inline-edit-row fieldset ul.cat-checklist label,.inline-edit-row #bulk-titles div{font-family:sans-serif;font-style:normal;font-size:11px}.inline-edit-row fieldset label input.inline-edit-menu-order-input{width:3em}.inline-edit-row fieldset label input.inline-edit-slug-input{width:75%}.quick-edit-row-post fieldset label.inline-edit-status{float:left}#bulk-titles{line-height:140%}#bulk-titles div{margin:.2em .3em}#bulk-titles div a{cursor:pointer;display:block;float:left;height:10px;margin:3px 3px 0 -2px;overflow:hidden;position:relative;text-indent:-9999px;width:10px}#show-comments{overflow:hidden}#save-action .spinner,#show-comments a,#show-comments .spinner{float:left}#lost-connection-notice .spinner{display:block;float:left;margin:0 5px 0 0}.rtl #lost-connection-notice .spinner{float:right;margin:0 0 0 5px}#titlediv{position:relative;margin-bottom:5px}#titlediv label{cursor:text}#titlediv div.inside{margin:0}#poststuff #titlewrap{border:0;padding:0}#titlediv #title{padding:3px 8px;font-size:1.7em;line-height:100%;height:1.7em;width:100%;outline:0;margin:1px 0}#titlediv #title-prompt-text,#wp-fullscreen-title-prompt-text{color:#bbb;position:absolute;font-size:1.7em;padding:11px 10px}#wp-fullscreen-save .fs-saved{color:#999;float:right;margin-top:4px}#wp-fullscreen-title-prompt-text{padding:11px}#poststuff .inside-submitbox,#side-sortables .inside-submitbox{margin:0 3px;font-size:11px}input#link_description,input#link_url{width:98%}#pending{background:0 none;border:0 none;padding:0;font-size:11px;margin-top:-1px}#edit-slug-box{line-height:24px;min-height:25px;margin-top:5px;padding-right:6px}#edit-slug-box .cancel{margin-right:10px;font-size:11px}#editable-post-name-full{display:none}#editable-post-name input{width:16em}.postarea h3 label{float:left}.submitbox .submit{text-align:left;padding:12px 10px 10px;font-size:11px}.submitbox .submitdelete{text-decoration:none;padding:1px 2px}.submitbox .submitdelete,.submitbox .submit a:hover{border-bottom-width:1px;border-bottom-style:solid}.submitbox .submit input{margin-bottom:8px;margin-right:4px;padding:6px}.inside-submitbox #post_status{margin:2px 0 2px -2px}#post-status-select{line-height:2.5em;margin-top:3px}#post-body #normal-sortables{min-height:50px}.postbox{position:relative;min-width:255px}#trackback_url{width:99%}#normal-sortables .postbox .submit{background:transparent none;border:0 none;float:right;padding:0 12px;margin:0}.category-add input[type=text],.category-add select{width:100%;max-width:260px}.press-this #side-sortables .category-tabs li,ul.category-tabs li,#side-sortables .add-menu-item-tabs li,.wp-tab-bar li{display:inline;line-height:1.35em}.no-js .category-tabs li.hide-if-no-js{display:none}.category-tabs a,#side-sortables .add-menu-item-tabs a,.wp-tab-bar a{text-decoration:none}.category-tabs{margin:8px 0 3px}#category-adder h4{margin:10px 0}#side-sortables .add-menu-item-tabs,.wp-tab-bar{margin-bottom:3px}#normal-sortables .postbox #replyrow .submit{float:none;margin:0;padding:0 7px 5px}#side-sortables .submitbox .submit input,#side-sortables .submitbox .submit .preview,#side-sortables .submitbox .submit a.preview:hover{border:0 none}#side-sortables .inside-submitbox .insidebox,.stuffbox .insidebox{margin:11px 0}ul.category-tabs,ul.add-menu-item-tabs,ul.wp-tab-bar{margin-top:12px}ul.category-tabs li{border-style:solid;border-width:1px;position:relative}ul.add-menu-item-tabs li.tabs,.wp-tab-active{border-style:solid solid none;border-width:1px 1px 0}#post-body .add-menu-item-tabs li.tabs{border-style:solid none solid solid;border-width:1px 0 1px 1px;margin-right:-1px}ul.category-tabs li,ul.add-menu-item-tabs li,ul.wp-tab-bar li{padding:3px 5px 5px;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px}form#tags-filter{position:relative}td.post-title strong,td.plugin-title strong{display:block;margin-bottom:.2em}td.post-title p,td.plugin-title p{margin:6px 0}.wp-hidden-children .wp-hidden-child,.ui-tabs-hide{display:none}.commentlist .avatar{vertical-align:text-top}#post-body .tagsdiv #newtag{margin-right:5px;width:16em}#side-sortables input#post_password{width:94%}#side-sortables .tagsdiv #newtag{width:68%}#post-status-info{border-width:0 1px 1px;border-style:none solid solid;width:100%;-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-left-radius:3px;border-bottom-right-radius:3px}#post-status-info td{font-size:12px}.autosave-info{padding:2px 15px;text-align:right}#editorcontent #post-status-info{border:0}#post-body .wp_themeSkin .mceStatusbar a.mceResize{display:block;background:transparent url(../images/resize.gif) no-repeat scroll right bottom;width:12px;cursor:se-resize;margin:0 1px;position:relative;top:-2px}#post-body .postarea .wp_themeSkin .mceStatusbar a.mceResize{top:20px}#content-resize-handle{background:transparent url(../images/resize.gif) no-repeat scroll right bottom;width:12px;cursor:se-resize;position:absolute;right:2px;height:19px}.press-this #content-resize-handle{bottom:2px}.tmce-active #content-resize-handle{display:none}#wp-word-count{display:block;padding:2px 10px}#timestampdiv select{height:20px;line-height:14px;padding:0;vertical-align:top}#aa,#jj,#hh,#mn{padding:1px;font-size:12px}#jj,#hh,#mn{width:2em}#aa{width:3.4em}.curtime #timestamp{background-repeat:no-repeat;background-position:left center;padding:2px 0 1px 20px}#timestampdiv{padding-top:5px;line-height:23px}#timestampdiv p{margin:8px 0 6px}#timestampdiv input{border-width:1px;border-style:solid}.notification-dialog{position:fixed;top:30%;left:50%;width:450px;margin-left:-225px;background:#fff;line-height:1.5;z-index:1000005}.notification-dialog-background{position:fixed;top:0;left:0;right:0;bottom:0;background:#000;opacity:.5;filter:alpha(opacity=50);z-index:1000000}#post-lock-dialog .post-locked-message,#post-lock-dialog .post-taken-over{margin:25px}#post-lock-dialog .post-locked-message a.button{margin-right:10px}#post-lock-dialog .post-locked-avatar{float:left;margin:0 20px 20px 0}#post-lock-dialog .wp-tab-first{outline:0}#post-lock-dialog .locked-saving img{float:left;margin-right:3px}#post-lock-dialog.saving .locked-saving,#post-lock-dialog.saved .locked-saved{display:inline}#postcustomstuff thead th{padding:5px 8px 8px}#postcustom #postcustomstuff .submit{border:0 none;float:none;padding:0 8px 8px}#side-sortables #postcustom #postcustomstuff .submit{margin:0;padding:0}#side-sortables #postcustom #postcustomstuff #the-list textarea{height:85px}#side-sortables #postcustom #postcustomstuff td.left input,#side-sortables #postcustom #postcustomstuff td.left select,#side-sortables #postcustomstuff #newmetaleft a{margin:3px 3px 0}#postcustomstuff table{margin:0;width:100%;border-width:1px;border-style:solid;border-spacing:0}#postcustomstuff tr{vertical-align:top}#postcustomstuff table input,#postcustomstuff table select,#postcustomstuff table textarea{width:96%;margin:8px}#side-sortables #postcustomstuff table input,#side-sortables #postcustomstuff table select,#side-sortables #postcustomstuff table textarea{margin:3px}#postcustomstuff th.left,#postcustomstuff td.left{width:38%}#postcustomstuff .submit input{margin:0;width:auto}#postcustomstuff #newmetaleft a{display:inline-block;margin:0 8px 8px;text-decoration:none}.no-js #postcustomstuff #enternew{display:none}#post-body-content .compat-attachment-fields{margin-bottom:20px}.compat-attachment-fields th{padding-top:5px;padding-right:10px}.revisions-control-frame,.revisions-diff-frame{position:relative}.revisions-controls{padding-top:40px;height:100px;z-index:1}.revisions-controls input[type=checkbox]{position:relative;top:-1px;vertical-align:text-bottom}.revisions.pinned .revisions-controls{position:fixed;top:0;padding-bottom:10px}.revisions-tickmarks{position:relative;margin:0 auto;height:.8em;top:7px;max-width:70%;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.revisions-tickmarks>div{position:absolute;height:100%;border-style:solid;border-width:0 1px 0 0;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.revisions-tickmarks>div:first-child{border-width:0}.comparing-two-revisions .revisions-controls{height:140px}.revisions .diff-error{position:absolute;text-align:center;margin:0 auto;width:100%;display:none}.revisions.diff-error .diff-error{display:block}.revisions .loading-indicator{position:fixed;vertical-align:middle;opacity:0;width:100%;top:50%;margin-left:-90px;-webkit-transition:opacity .5s;-moz-transition:opacity .5s;-ms-transition:opacity .5s;-o-transition:opacity .5s;transition:opacity .5s;filter:alpha(opacity=0)}body.folded .revisions .loading-indicator{margin-left:-32px}.revisions .loading-indicator span.spinner{display:block;margin:0 auto;float:none}.revisions.loading .loading-indicator{opacity:1;filter:alpha(opacity=100)}.revisions .diff{-webkit-transition:opacity .5s;-moz-transition:opacity .5s;-ms-transition:opacity .5s;-o-transition:opacity .5s;transition:opacity .5s}.revisions.loading .diff{opacity:.5;filter:alpha(opacity=50)}.revisions.diff-error .diff{visibility:hidden}.revisions-meta{margin-top:15px}.revision-toggle-compare-mode{position:absolute;top:0;right:0}.comparing-two-revisions .revisions-previous,.comparing-two-revisions .revisions-next,.revisions-meta .diff-meta-to strong{display:none}.revisions-controls .author-card .date{color:#777}.revisions-controls .author-card.autosave{color:#d54e21}.revisions-controls .author-card .author-name{font-weight:700}.comparing-two-revisions .diff-meta-to strong{display:block}.revisions-previous,.revisions-next{position:relative;z-index:1}.revisions-previous{float:left}.revisions-next{float:right}.revisions-controls .wp-slider{max-width:70%;margin:0 auto;top:-3px}.post-revisions li img,#revisions-meta-restored img{vertical-align:middle}table.diff{table-layout:fixed;width:100%;white-space:pre-wrap;word-wrap:break-word}table.diff col.content{width:auto}table.diff col.content.diffsplit{width:48%}table.diff col.diffsplit.middle{width:auto}table.diff col.ltype{width:30px}table.diff tr{background-color:transparent}table.diff td,table.diff th{padding:.5em;font-family:Consolas,Monaco,monospace}table.diff .diff-deletedline del,table.diff .diff-addedline ins{text-decoration:none}.diff-meta{-webkit-border-radius:3px;border-radius:3px;padding:5px;clear:both;min-height:32px}.diff-title strong{line-height:32px;min-width:60px;text-align:right;float:left;margin-right:5px}.revisions-controls .author-card .avatar,.revisions-controls .author-card .author-info{float:left;margin-left:6px;margin-right:6px}.revisions-controls .author-card .byline{display:block;font-size:12px}.revisions-controls .author-card .avatar{vertical-align:middle}.diff-meta input.restore-revision{float:right;margin-left:6px;margin-right:6px;margin-top:4px}.diff-meta-from{display:none}.comparing-two-revisions .diff-meta-from{display:block}.revisions-tooltip{position:absolute;bottom:105px;margin-right:0;margin-left:-69px;z-index:0;max-width:350px;min-width:130px;padding:8px 4px;display:none;opacity:0}.revisions-tooltip.flipped{margin-left:0;margin-right:-70px}.revisions.pinned .revisions-tooltip{display:none!important}.comparing-two-revisions .revisions-tooltip{bottom:145px}.revisions-tooltip-arrow{width:70px;height:15px;overflow:hidden;position:absolute;left:0;margin-left:35px;bottom:-15px}.revisions-tooltip.flipped .revisions-tooltip-arrow{margin-left:0;margin-right:35px;left:auto;right:0}.revisions-tooltip-arrow>span{content:"";position:absolute;left:20px;top:-20px;width:25px;height:25px;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.revisions-tooltip.flipped .revisions-tooltip-arrow>span{left:auto;right:20px}.ie8 .revisions-tooltip-arrow>span{left:15px;top:-25px;-ms-filter:"progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476)"}.ie8 .revisions-tooltip.flipped .revisions-tooltip-arrow>span{right:25px}.revisions-tooltip,.revisions-tooltip-arrow>span{border-width:1px;border-style:solid}div.revisions-controls>.wp-slider>.ui-slider-handle{margin-left:-10px}.wp-slider.ui-slider{position:relative;border-width:1px;border-style:solid;border-radius:3px;text-align:left;cursor:pointer}.wp-slider .ui-slider-handle{position:absolute;z-index:2;margin-top:-3px;width:19px;height:19px;border-width:1px;border-style:solid;border-radius:50%}.wp-slider .ui-slider-handle:before{content:"";position:absolute;top:6px;left:3px;height:8px;width:13px;background:url(../images/arrows-pr.png) no-repeat -2px -47px}.wp-slider .ui-slider-handle.from-handle:before,.wp-slider .ui-slider-handle.to-handle:before{height:8px;width:7px}.wp-slider .ui-slider-handle.from-handle:before{background-position:-5px -84px;left:7px}.wp-slider .ui-slider-handle.to-handle:before{background-position:-4px -65px;left:5px}.wp-slider .ui-slider-range{position:absolute;font-size:.7em;display:block;border:0;background-color:transparent;background-image:none}.wp-slider.ui-slider-horizontal{height:.8em}.wp-slider.ui-slider-horizontal .ui-slider-handle{top:-.25em;margin-left:-.6em}.wp-slider.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.wp-slider.ui-slider-horizontal .ui-slider-range-min{left:0}.wp-slider.ui-slider-horizontal .ui-slider-range-max{right:0}#select-featured-image{padding:4px 0;overflow:hidden}#select-featured-image img{max-width:100%;height:auto;margin-bottom:10px}#select-featured-image a{float:left;clear:both}#select-featured-image .remove{display:none;margin-top:10px}.js #select-featured-image.has-featured-image .remove{display:inline-block}.no-js #select-featured-image .choose{display:none}a.post-state-format{overflow:hidden;display:inline-block;vertical-align:middle;height:16px;width:16px;margin-right:5px;background-repeat:no-repeat;text-indent:-999em}#post-formats-select{line-height:2em}label.post-format-icon{margin-left:5px;padding:2px 0 2px 21px}.post-format-icon.post-format-standard{background-position:0 0}.post-format-icon.post-format-image{background-position:0 -32px}.post-format-icon.post-format-gallery{background-position:0 -64px}.post-format-icon.post-format-audio{background-position:0 -96px}.post-format-icon.post-format-video{background-position:0 -128px}.post-format-icon.post-format-chat{background-position:0 -160px}.post-format-icon.post-format-status{background-position:0 -192px}.post-format-icon.post-format-aside{background-position:0 -224px}.post-format-icon.post-format-quote{background-position:0 -256px}.post-format-icon.post-format-link{background-position:0 -288px}.category-adder{margin-left:120px;padding:4px 0}.category-adder h4{margin:0 0 8px}#side-sortables .category-adder{margin:0}#post-body ul.add-menu-item-tabs{float:left;width:120px;text-align:right;margin:0 -120px 0 5px;padding:0}#post-body ul.add-menu-item-tabs li{padding:8px}#post-body ul.add-menu-item-tabs li.tabs{-webkit-border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-top-left-radius:3px;border-bottom-left-radius:3px}.wp-tab-panel,.categorydiv div.tabs-panel,.customlinkdiv div.tabs-panel,.posttypediv div.tabs-panel,.taxonomydiv div.tabs-panel{min-height:42px;max-height:200px;overflow:auto;padding:0 .9em;border-style:solid;border-width:1px}div.tabs-panel-active{display:block}div.tabs-panel-inactive{display:none}#front-page-warning,#front-static-pages ul,ul.export-filters,.inline-editor ul.cat-checklist ul,.categorydiv ul.categorychecklist ul,.customlinkdiv ul.categorychecklist ul,.posttypediv ul.categorychecklist ul,.taxonomydiv ul.categorychecklist ul{margin-left:18px}ul.categorychecklist li{margin:0;padding:0;line-height:19px;word-wrap:break-word}.categorydiv .tabs-panel,.customlinkdiv .tabs-panel,.posttypediv .tabs-panel,.taxonomydiv .tabs-panel{border-width:3px;border-style:solid}.form-wrap p,.form-wrap label{font-size:11px}.form-wrap label{display:block;padding:2px;font-size:12px}.form-field input,.form-field textarea{border-style:solid;border-width:1px;width:95%}p.description,.form-wrap p{margin:2px 0 5px}p.help,p.description,span.description,.form-wrap p{font-size:12px;font-style:italic;font-family:sans-serif}.form-wrap .form-field{margin:0 0 10px;padding:8px 0}.form-wrap .form-field #parent{max-width:100%}.col-wrap h3{margin:12px 0;font-size:1.1em}.col-wrap p.submit{margin-top:-10px}#poststuff .taghint{color:#aaa;margin:15px 0 -24px 12px}#poststuff .tagsdiv .howto{margin:0 0 6px 8px}.ajaxtag .newtag{position:relative}.tagsdiv .newtag{width:180px}.tagsdiv .the-tags{display:block;height:60px;margin:0 auto;overflow:auto;width:260px}#post-body-content .tagsdiv .the-tags{margin:0 5px}p.popular-tags{-webkit-border-radius:8px;border-radius:8px;border-width:1px;border-style:solid;line-height:2em;max-width:1000px;padding:8px 12px 12px;text-align:justify}p.popular-tags a{padding:0 3px}.tagcloud{width:97%;margin:0 0 40px;text-align:justify}.tagcloud h3{margin:2px 0 12px}.ac_results{padding:0;margin:0;list-style:none;position:absolute;z-index:10000;display:none;border-width:1px;border-style:solid}.ac_results li{padding:2px 5px;white-space:nowrap;text-align:left}.ac_over{cursor:pointer}.ac_match{text-decoration:underline}table.links-table{width:100%}.links-table th{font-weight:400;text-align:left;vertical-align:top;min-width:80px;width:20%;word-wrap:break-word}.links-table th,.links-table td{padding:5px 0}.links-table td label{margin-right:8px}.links-table td input[type=text],.links-table td textarea{width:100%}.links-table #link_rel{max-width:280px}.media-item .describe{border-collapse:collapse;width:100%;border-top-style:solid;border-top-width:1px;clear:both;cursor:default}.media-item.media-blank .describe{border:0}.media-item .describe th{vertical-align:top;text-align:left;padding:5px 10px 10px;width:140px}.media-item .describe .align th{padding-top:0}.media-item .media-item-info tr{background-color:transparent}.media-item .describe td{padding:0 8px 8px 0;vertical-align:top}.media-item thead.media-item-info td{padding:4px 10px 0}.media-item .media-item-info .A1B1{padding:0 0 0 10px}.media-item td.savesend{padding-bottom:15px}.media-item .thumbnail{max-height:128px;max-width:128px}#wpbody-content #async-upload-wrap a{display:none}.media-upload-form{margin-top:20px}.media-upload-form td label{margin-right:6px;margin-left:2px}.media-upload-form .align .field label{display:inline;padding:0 0 0 23px;margin:0 1em 0 3px;font-weight:700}.media-upload-form tr.image-size label{margin:0 0 0 5px;font-weight:700}.media-upload-form th.label label{font-weight:700;margin:.5em;font-size:13px}.media-upload-form th.label label span{padding:0 5px}abbr.required{border:medium none;text-decoration:none}.media-item .describe input[type=text],.media-item .describe textarea{width:460px}.media-item .describe p.help{margin:0;padding:0 0 0 5px}.media-item .edit-attachment,.describe-toggle-on,.describe-toggle-off{display:block;line-height:36px;float:right;margin-right:15px}.media-item .describe-toggle-off,.media-item.open .describe-toggle-on{display:none}.media-item.open .describe-toggle-off{display:block}#media-items .media-item{border-style:solid;border-width:1px;min-height:36px;position:relative;margin-top:-1px;width:100%}#media-items{width:623px}.media-new-php #media-items{margin:1em 0}#media-items:empty{border:0 none}.media-item .filename{line-height:36px;overflow:hidden;padding:0 10px}.media-item .error-div{padding-left:10px}.media-item .pinkynail{float:left;margin:2px 2px 0;max-width:40px;max-height:32px}.media-item .startopen,.media-item .startclosed{display:none}.media-item .original{position:relative;height:34px}.media-item .progress{float:right;height:22px;margin:6px 10px 0 0;width:200px;line-height:2em;padding:0;overflow:hidden;margin-bottom:2px;border:1px solid #d1d1d1;background:#f7f7f7;background-image:-webkit-gradient(linear,left bottom,left top,from(#fff),to(#f7f7f7));background-image:-webkit-linear-gradient(bottom,#fff,#f7f7f7);background-image:-moz-linear-gradient(bottom,#fff,#f7f7f7);background-image:-o-linear-gradient(bottom,#fff,#f7f7f7);background-image:linear-gradient(to top,#fff,#f7f7f7);-webkit-border-radius:3px;border-radius:3px;-webkit-box-shadow:inset 0 0 3px rgba(0,0,0,.1);box-shadow:inset 0 0 3px rgba(0,0,0,.1)}.media-item .bar{z-index:9;width:0;height:100%;margin-top:-24px;background-color:#8cc1e9;background-image:-webkit-gradient(linear,left bottom,left top,from(#72a7cf),to(#8cc1e9));background-image:-webkit-linear-gradient(bottom,#72a7cf,#8cc1e9);background-image:-moz-linear-gradient(bottom,#72a7cf,#8cc1e9);background-image:-o-linear-gradient(bottom,#72a7cf,#8cc1e9);background-image:linear-gradient(to top,#72a7cf,#8cc1e9);-webkit-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 0 3px rgba(0,0,0,.3);box-shadow:0 0 3px rgba(0,0,0,.3)}.media-item .progress .percent{z-index:10;position:relative;width:200px;padding:0 8px;text-shadow:0 1px 0 rgba(255,255,255,.4);color:rgba(0,0,0,.6)}.upload-php .fixed .column-parent{width:15%}.js .html-uploader #plupload-upload-ui{display:none}.js .html-uploader #html-upload-ui{display:block}.media-upload-form .media-item.error{margin:0;padding:0}.media-upload-form .media-item.error p,.media-item .error-div{line-height:16px;margin:5px 10px;padding:0}.media-item .error-div a.dismiss{display:block;float:right;margin:5px 4px 0 15px}.find-box{width:600px;height:300px;overflow:hidden;padding:33px 0 51px;position:absolute;z-index:1000}.find-box-head{cursor:move;font-weight:700;height:2em;line-height:2em;padding:1px 12px;position:absolute;top:5px;width:100%}.find-box-inside{overflow:auto;padding:6px;height:100%}.find-box-search{overflow:hidden;padding:9px;position:relative}.find-box-search .spinner{float:none;left:125px;position:absolute;top:9px}#find-posts-input{float:left;width:140px;height:24px}#find-posts-search{float:left;margin:1px 4px 0 3px}#find-posts-response{margin:8px 0;padding:0 1px 6px}#find-posts-response table{width:100%}#find-posts-response .found-radio{padding:3px 0 0 8px;width:15px}.find-box-buttons{padding:8px;overflow:hidden}.find-box #resize-se{position:absolute;right:1px;bottom:1px}.ui-find-overlay{position:absolute;top:0;left:0;background-color:#000;opacity:.6;filter:alpha(opacity=60)}ul#dismissed-updates{display:none}form.upgrade{margin-top:8px}form.upgrade .hint{font-style:italic;font-size:85%;margin:-.5em 0 2em 0}#poststuff .inside .the-tagcloud{margin:5px 0 10px;padding:8px;border-width:1px;border-style:solid;line-height:1.8em;word-spacing:3px;-webkit-border-radius:6px;border-radius:6px}.drag-drop #drag-drop-area{border:4px dashed #DDD;height:200px}.drag-drop .drag-drop-inside{margin:70px auto 0;width:250px}.drag-drop-inside p{color:#aaa;font-size:14px;margin:5px 0;display:none}.drag-drop .drag-drop-inside p{text-align:center}.drag-drop-inside p.drag-drop-info{font-size:20px}.drag-drop .drag-drop-inside p,.drag-drop-inside p.drag-drop-buttons{display:block}.drag-drop.drag-over #drag-drop-area{border-color:#83b4d8}#plupload-upload-ui{position:relative}.describe .image-editor{vertical-align:top}.imgedit-wrap{position:relative}.imgedit-settings p{margin:8px 0}.post-php .imgedit-wrap table{width:100%}.describe .imgedit-wrap table td,.wp_attachment_holder .imgedit-wrap table td{vertical-align:top;padding-top:0}.describe .imgedit-wrap table td.imgedit-settings{padding:0 5px}.wp_attachment_holder .imgedit-wrap table td.imgedit-settings{width:250px}td.imgedit-settings input{margin-top:0;vertical-align:middle}.imgedit-wait{position:absolute;top:0;background:#fff url(../images/wpspin_light.gif) no-repeat scroll 22px 10px;background-size:16px 16px;opacity:.7;filter:alpha(opacity=70);width:100%;height:500px;display:none}.spinner{background:url(../images/wpspin_light.gif) no-repeat;background-size:16px 16px;display:none;float:right;opacity:.7;filter:alpha(opacity=70);width:16px;height:16px;margin:5px 5px 0}.no-float{float:none}.media-disabled,.imgedit-settings .disabled{color:grey}.wp_attachment_image,.A1B1{overflow:hidden}.wp_attachment_image .button,.A1B1 .button{float:left}.no-js .wp_attachment_image .button{display:none}.wp_attachment_image .spinner,.A1B1 .spinner{float:left;padding:0 4px 4px;vertical-align:bottom}.imgedit-menu{margin:0 0 12px;min-width:300px}.imgedit-menu div{float:left;width:32px;height:32px}.imgedit-crop-wrap{position:relative}.imgedit-crop{background:transparent url(../images/imgedit-icons.png) no-repeat scroll -9px -31px;margin:0 8px 0 0}.imgedit-crop.disabled:hover{background-position:-9px -31px}.imgedit-crop:hover{background-position:-9px -1px}.imgedit-rleft{background:transparent url(../images/imgedit-icons.png) no-repeat scroll -46px -31px;margin:0 3px}.imgedit-rleft.disabled:hover{background-position:-46px -31px}.imgedit-rleft:hover{background-position:-46px -1px}.imgedit-rright{background:transparent url(../images/imgedit-icons.png) no-repeat scroll -77px -31px;margin:0 8px 0 3px}.imgedit-rright.disabled:hover{background-position:-77px -31px}.imgedit-rright:hover{background-position:-77px -1px}.imgedit-flipv{background:transparent url(../images/imgedit-icons.png) no-repeat scroll -115px -31px;margin:0 3px}.imgedit-flipv.disabled:hover{background-position:-115px -31px}.imgedit-flipv:hover{background-position:-115px -1px}.imgedit-fliph{background:transparent url(../images/imgedit-icons.png) no-repeat scroll -147px -31px;margin:0 8px 0 3px}.imgedit-fliph.disabled:hover{background-position:-147px -31px}.imgedit-fliph:hover{background-position:-147px -1px}.imgedit-undo{background:transparent url(../images/imgedit-icons.png) no-repeat scroll -184px -31px;margin:0 3px}.imgedit-undo.disabled:hover{background-position:-184px -31px}.imgedit-undo:hover{background-position:-184px -1px}.imgedit-redo{background:transparent url(../images/imgedit-icons.png) no-repeat scroll -215px -31px;margin:0 8px 0 3px}.imgedit-redo.disabled:hover{background-position:-215px -31px}.imgedit-redo:hover{background-position:-215px -1px}.imgedit-applyto img{margin:0 8px 0 0}.imgedit-group-top{margin:5px 0}.imgedit-applyto .imgedit-label{padding:2px 0 0;display:block}.imgedit-help{display:none;font-style:italic;margin-bottom:8px}a.imgedit-help-toggle{text-decoration:none}.form-table td.imgedit-response{padding:0}.imgedit-submit{margin:8px 0}.imgedit-submit-btn{margin-left:20px}.imgedit-wrap .nowrap{white-space:nowrap}span.imgedit-scale-warn{color:red;font-size:20px;font-style:normal;visibility:hidden;vertical-align:middle}.imgedit-group{border-width:1px;border-style:solid;-webkit-border-radius:3px;border-radius:3px;margin-bottom:8px;padding:2px 10px}.form-table{border-collapse:collapse;margin-top:.5em;width:100%;margin-bottom:-8px;clear:both}.form-table td{margin-bottom:9px;padding:8px 10px;line-height:20px;font-size:12px}.form-table th,.form-wrap label{font-weight:400;text-shadow:#fff 0 1px 0}.form-table th{vertical-align:top;text-align:left;padding:10px;width:200px}.form-table th.th-full{width:auto}.form-table div.color-option{display:block;clear:both;margin-top:12px}.form-table input.tog{margin-top:2px;margin-right:2px;float:left}.form-table td p{margin-top:4px}.form-table table.color-palette{vertical-align:bottom;float:left;margin:-12px 3px 11px}.form-table .color-palette td{border-width:1px 1px 0;border-style:solid solid none;height:10px;line-height:20px;width:10px}.commentlist li{padding:1em 1em .2em;margin:0;border-bottom-width:1px;border-bottom-style:solid}.commentlist li li{border-bottom:0;padding:0}.commentlist p{padding:0;margin:0 0 .8em}#replyrow input{border-width:1px;border-style:solid}#replyrow td{padding:2px}#replysubmit{margin:0;padding:0 5px 3px;text-align:center}#replysubmit .spinner{padding:2px 0 0;vertical-align:top;float:right}#replysubmit .button{margin-right:5px}#replysubmit .error{color:red;line-height:21px;text-align:center}#replyrow h5{margin:.2em 0 0;padding:0 5px;line-height:1.4em;font-size:1em}#edithead .inside{float:left;padding:3px 0 2px 5px;margin:0;text-align:center}#edithead .inside input{width:180px}#edithead label{padding:2px 0}#replycontainer{padding:5px}#replycontent{height:120px;-webkit-box-shadow:none;box-shadow:none}.comment-php .wp-editor-area{height:200px}.comment-ays{margin-bottom:0;border-style:solid;border-width:1px}.comment-ays th{border-right-style:solid;border-right-width:1px}.trash-undo-inside,.spam-undo-inside{margin:1px 8px 1px 0;line-height:16px}.spam-undo-inside .avatar,.trash-undo-inside .avatar{height:20px;width:20px;margin-right:8px;vertical-align:middle}.stuffbox .editcomment{clear:none}#comment-status-radio p{margin:3px 0 5px}#comment-status-radio input{margin:2px 3px 5px 0;vertical-align:middle}#comment-status-radio label{padding:5px 0}.commentlist .avatar{vertical-align:text-top}.theme-install-php .tablenav{height:auto}.theme-install-php .spinner{margin-top:9px}h3.available-themes{margin:.3em 0 1em;float:left}.available-theme{display:inline-block;margin-right:10px;overflow:hidden;padding:20px 20px 20px 0;vertical-align:top;width:300px}.available-theme .screenshot{width:300px;height:225px;display:block;border-width:1px;border-style:solid;margin-bottom:10px;overflow:hidden}.available-theme img{width:300px}.available-theme h3{margin:15px 0 0}.available-theme .theme-author{line-height:18px}.available-theme .action-links{margin-top:10px;overflow:hidden}.available-theme a.screenshot:focus{border-color:#777}#current-theme .theme-info li,.theme-options li,.available-theme .action-links li{float:left;padding-right:10px;margin-right:10px;border-right:1px solid #dfdfdf}.available-theme .action-links li{padding-right:8px;margin-right:8px}.ie8 .available-theme .action-links li{padding-right:7px;margin-right:7px}#current-theme .theme-info li:last-child,.theme-options li:last-child,.available-theme .action-links li:last-child{padding-right:0;margin-right:0;border-right:0}.available-theme .action-links .delete-theme{float:right;margin-left:8px;margin-right:0}.available-theme .action-links .delete-theme a{color:red;padding:2px}.available-theme .action-links .delete-theme a:hover{background:red;color:#fff;text-decoration:none}.available-theme .action-links p{float:left}#current-theme{margin:20px 0 10px;padding:0 0 20px;border-bottom-width:1px;border-bottom-style:solid;overflow:hidden}#current-theme.has-screenshot{padding-left:330px}#current-theme h3{margin:0;font-size:12px;font-weight:400;color:#999}#current-theme h4{margin:3px 0 16px;font-size:20px}#current-theme h4 span{margin-left:20px;font-size:12px;font-weight:400}#current-theme a{border-bottom:0}#current-theme .theme-info{margin:1em 0;overflow:hidden}#current-theme .theme-description{margin-top:5px;max-width:600px;line-height:1.6em}#current-theme img{float:left;width:300px;margin-left:-330px;border-width:1px;border-style:solid}.theme-options{overflow:hidden;font-size:14px;padding-bottom:10px}.theme-options .load-customize{margin-right:30px;float:left}.theme-options span{float:left;margin-right:10px;text-transform:uppercase;font-size:11px;line-height:18px;color:#999}.theme-options ul{float:left;margin:0}@media only screen and (max-width:1200px){.folded .available-theme,.folded .available-theme .screenshot{width:300px}.folded .available-theme .screenshot{height:225px}.folded #current-theme img{width:300px}.folded #current-theme.has-screenshot{padding-left:330px}.folded #current-theme img{margin-left:-330px}}@media only screen and (max-width:1079px){.folded .available-theme,.folded .available-theme .screenshot{width:270px}.folded .available-theme .screenshot{height:203px}.folded #current-theme img{width:270px}.folded #current-theme.has-screenshot{padding-left:300px}.folded #current-theme img{margin-left:-300px}}@media only screen and (max-width:1200px){.available-theme,.available-theme .screenshot,#current-theme img{width:240px}.available-theme .screenshot{height:180px}.available-theme img{width:100%}#current-theme.has-screenshot{padding-left:270px}#current-theme img{margin-left:-270px}}#post-body ul.add-menu-item-tabs li.tabs a,#TB_window #TB_title a.tb-theme-preview-link,#TB_window #TB_title a.tb-theme-preview-link:visited{font-weight:700;text-decoration:none}#TB_window #TB_title{background-color:#222;color:#cfcfcf}#broken-themes{text-align:left;width:50%;border-spacing:3px;padding:3px}.theme-install-php h4{margin:2.5em 0 8px}.appearance_page_custom-header #headimg{border:1px solid #DFDFDF;overflow:hidden;width:100%}.appearance_page_custom-header #upload-form p label{font-size:12px}.appearance_page_custom-header .available-headers .default-header{float:left;margin:0 20px 20px 0}.appearance_page_custom-header .random-header{clear:both;margin:0 20px 20px 0;vertical-align:middle}.appearance_page_custom-header .available-headers label input,.appearance_page_custom-header .random-header label input{margin-right:10px}.appearance_page_custom-header .available-headers label img{vertical-align:middle}div#custom-background-image{min-height:100px;border:1px solid #dfdfdf}div#custom-background-image img{max-width:400px;max-height:300px}.nav-tab{border-style:solid;border-width:1px 1px 0;color:#aaa;text-shadow:#fff 0 1px 0;font-size:12px;line-height:16px;display:inline-block;padding:4px 14px 6px;text-decoration:none;margin:0 6px -1px 0;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px}.nav-tab-active{border-width:1px;color:#464646}h2.nav-tab-wrapper,h3.nav-tab-wrapper{border-bottom-width:1px;border-bottom-style:solid;padding-bottom:0}h2 .nav-tab{padding:4px 10px 6px;font-weight:200;font-size:20px;line-height:24px}#dashboard_right_now .versions .b,#post-status-display,#post-visibility-display,#adminmenu .wp-submenu li.current,#adminmenu .wp-submenu li.current a,#adminmenu .wp-submenu li.current a:hover,.media-item .percent,.plugins .name,#pass-strength-result.strong,#pass-strength-result.short,#ed_reply_toolbar #ed_reply_strong,.item-controls .item-order a,.feature-filter .feature-name{font-weight:700}.plugins p{margin:0 4px;padding:0}.plugins .desc p{margin:0 0 8px}.plugins td.desc{line-height:1.5em}.plugins .desc ul,.plugins .desc ol{margin:0 0 0 2em}.plugins .desc ul{list-style-type:disc}.plugins .row-actions{padding:0}.plugins tbody th.check-column{padding:7px 0}.plugins .inactive td,.plugins .inactive th,.plugins .active td,.plugins .active th{border-top-style:solid;border-top-width:1px;padding:5px 7px 0}.plugins .update th,.plugins .update td{border-bottom:0}.plugin-update-tr td{border-top:0}#wpbody-content .plugins .plugin-title,#wpbody-content .plugins .theme-title{padding-right:12px;white-space:nowrap}.plugins .second,.plugins .row-actions{padding:0 0 5px}.plugins .update .second,.plugins .update .row-actions{padding-bottom:0}.plugins-php .widefat tfoot th,.plugins-php .widefat tfoot td{border-top-style:solid;border-top-width:1px}.plugin-update-tr .update-message{margin:5px;padding:3px 5px}.plugin-install-php h4{margin:2.5em 0 8px}#profile-page .form-table textarea{width:500px;margin-bottom:6px}#profile-page .form-table #rich_editing{margin-right:5px}#your-profile legend{font-size:22px}#your-profile #rich_editing{border:0}#display_name{width:15em}#createuser .form-field input{width:25em}.pressthis{margin:20px 0}.pressthis a,.pressthis a:hover,.pressthis a:focus,.pressthis a:active{display:inline-block;position:relative;cursor:move;color:#333;background:#e6e6e6;background-image:-webkit-gradient(linear,left bottom,left top,color-stop(7%,#e6e6e6),color-stop(77%,#d8d8d8));background-image:-webkit-linear-gradient(bottom,#e6e6e6 7%,#d8d8d8 77%);background-image:-moz-linear-gradient(bottom,#e6e6e6 7%,#d8d8d8 77%);background-image:-o-linear-gradient(bottom,#e6e6e6 7%,#d8d8d8 77%);background-image:linear-gradient(to top,#e6e6e6 7%,#d8d8d8 77%);-webkit-border-radius:5px;border-radius:5px;border:1px solid #b4b4b4;font-style:normal;line-height:16px;font-size:14px;text-decoration:none;text-shadow:0 1px 0 #fff}.pressthis a:active{outline:0}.pressthis a:hover:after{-webkit-transform:skew(20deg) rotate(9deg);-moz-transform:skew(20deg) rotate(9deg);transform:skew(20deg) rotate(9deg);-webkit-box-shadow:0 10px 8px rgba(0,0,0,.7);box-shadow:0 10px 8px rgba(0,0,0,.7)}.pressthis a span{background:url(../images/press-this.png?v=20120502) no-repeat 0 5px;background-size:24px 20px;padding:8px 11px 8px 27px;margin:0 5px;display:inline-block}.pressthis a:after{content:'';width:70%;height:55%;z-index:-1;position:absolute;right:10px;bottom:9px;background:transparent;-webkit-transform:skew(20deg) rotate(6deg);-moz-transform:skew(20deg) rotate(6deg);transform:skew(20deg) rotate(6deg);-webkit-box-shadow:0 10px 8px rgba(0,0,0,.6);box-shadow:0 10px 8px rgba(0,0,0,.6)}#utc-time,#local-time{padding-left:25px;font-style:italic;font-family:sans-serif}.defaultavatarpicker .avatar{margin:2px 0;vertical-align:middle}.options-general-php .spinner{float:none;margin:-3px 3px}#wpfooter{position:absolute;bottom:0;left:0;right:0;padding:10px 0;margin-right:20px;border-top-width:1px;border-top-style:solid}#wpfooter p{margin:0;line-height:20px}#wpfooter a{text-decoration:none}#wpfooter a:hover{text-decoration:underline}.about-wrap{position:relative;margin:25px 40px 0 20px;max-width:1050px;font-size:15px}.about-wrap div.updated,.about-wrap div.error{display:none!important}.about-wrap p.about-notice{background-color:#ffffe0;border:1px solid #e6db55;margin:5px 0 15px;padding:.4em .8em;border-radius:3px;-webkit-border-radius:3px}.about-wrap p{line-height:1.6em}.about-wrap h1{margin:.2em 200px 0 0;line-height:1.2em;font-size:2.8em;font-weight:200}.about-text,.about-description,.about-wrap li.wp-person a.web{font-family:HelveticaNeue-Light,"Helvetica Neue Light","Helvetica Neue",sans-serif;font-weight:400;line-height:1.6em;font-size:20px}.about-description{margin-top:1.4em}.about-text{margin:1em 200px 1.4em 0;min-height:60px;font-size:24px}.about-wrap h3{font-size:1.5em;line-height:1.5em;padding-top:20px}.about-wrap .feature-section{padding-bottom:20px}.about-wrap .feature-section h4{margin-bottom:.6em}.about-wrap .feature-section p{margin-top:.6em}.about-wrap code{font-size:14px}.about-wrap .point-releases{margin-top:5px}.about-wrap .changelog.point-releases h3{padding-top:35px}.about-wrap .changelog.point-releases h3:first-child{padding-top:7px}.wp-badge{padding-top:142px;height:50px;width:173px;font-weight:700;font-size:14px;text-align:center;margin:0 -5px;background:url(../images/wp-badge.png?ver=20111120) no-repeat}.about-wrap .wp-badge{position:absolute;top:0;right:0}.about-wrap h2.nav-tab-wrapper{padding-left:6px}.about-wrap h2 .nav-tab{padding:4px 10px 6px;margin:0 3px -1px 0;font-size:18px;vertical-align:top}.about-wrap h2 .nav-tab-active{font-weight:700;padding-top:3px}.about-wrap .feature-section.three-col img{margin:.5em 0 .5em 5px;max-width:100%;float:none}.about-wrap .feature-section.col{margin-bottom:0}.about-wrap .feature-section.col h4{margin:0 0 .6em}.about-wrap .feature-section.two-col div{width:47%;margin-right:4.999999999%;float:left}.about-wrap .feature-section.three-col div{width:30%;margin-right:4.999999999%;float:left}.about-wrap .three-col.about-updates .col-1,.about-wrap .three-col.about-updates .col-3{width:37%;margin:0}.about-wrap .three-col.about-updates .col-2{width:16%;margin:0 5%}.about-wrap .feature-section.col .last-feature{margin-right:0}.about-wrap .three-col.about-updates img{margin:0}.about-wrap .changelog .feature-section{overflow:hidden}.about-wrap .about-passwords{margin:20px 0;padding:1px 20px 10px;background-color:#f9f9f9}.about-wrap .about-auto-update{text-align:center;background-color:#f9f9ef;clear:both;padding:10px}.about-wrap .about-auto-update.cool{background-color:#eff9ef}.about-wrap .about-password-meter input{font-size:250%;line-height:1;width:100%;display:block;padding:5px}.about-wrap .about-password-meter #pass-strength-result{display:block!important;font-size:150%;font-weight:400!important;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;padding:17px 0;margin-bottom:15px}.about-wrap .feature-section div p img{float:right;margin-left:10px;max-width:20%}.about-wrap .changelog li{list-style-type:disc;margin-left:3em}.about-wrap .return-to-dashboard{margin:30px 0 0 -5px;font-size:14px;font-weight:700}.about-wrap .return-to-dashboard a{text-decoration:none;padding:0 5px}.about-wrap h4.wp-people-group{margin-top:2.6em;font-size:16px}.about-wrap ul.wp-people-group{overflow:hidden;padding:0 5px;margin:0 -15px 0 -5px}.about-wrap ul.compact{margin-bottom:0}.about-wrap li.wp-person{float:left;margin-right:10px}.about-wrap li.wp-person img.gravatar{float:left;margin:0 10px 10px 0;padding:2px;width:60px;height:60px}.about-wrap ul.compact li.wp-person img.gravatar{width:30px;height:30px}.about-wrap li.wp-person{height:70px;width:280px;padding-bottom:15px}.about-wrap ul.compact li.wp-person{height:auto;width:180px;padding-bottom:0;margin-bottom:0}.about-wrap #wp-people-group-validators+p.wp-credits-list{margin-top:0}.about-wrap li.wp-person a.web{display:block;margin:6px 0 2px;font-size:16px;text-decoration:none}.about-wrap p.wp-credits-list a{white-space:nowrap}.freedoms-php .about-wrap ol{margin:40px 60px}.freedoms-php .about-wrap ol li{list-style-type:decimal;font-weight:700}.freedoms-php .about-wrap ol p{font-weight:400;margin:.6em 0}body.full-overlay-active{overflow:hidden}.wp-full-overlay{background:#fff;z-index:500000;position:fixed;overflow:visible;top:0;bottom:0;left:0;right:0;height:100%;min-width:0}.wp-full-overlay-sidebar{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;position:fixed;width:300px;height:100%;top:0;bottom:0;left:0;padding:0;margin:0;z-index:10;overflow:auto;background:#f5f5f5;border-right:1px solid rgba(0,0,0,.2)}.wp-full-overlay.collapsed .wp-full-overlay-sidebar{overflow:visible}.wp-full-overlay.collapsed,.wp-full-overlay.expanded .wp-full-overlay-sidebar{margin-left:0!important}.wp-full-overlay.expanded{margin-left:300px}.wp-full-overlay.collapsed .wp-full-overlay-sidebar{margin-left:-300px}.wp-full-overlay-sidebar:after{content:'';display:block;position:absolute;top:0;bottom:0;right:0;width:3px;box-shadow:-5px 0 4px -4px rgba(0,0,0,.1) inset;z-index:1000}.wp-full-overlay-main{position:absolute;left:0;right:0;top:0;bottom:0;height:100%}.wp-full-overlay-sidebar .wp-full-overlay-header{position:absolute;left:0;right:0;height:45px;padding:0 20px;line-height:45px;z-index:10;margin:0}.wp-full-overlay-sidebar .wp-full-overlay-header{border-top:0;border-bottom:1px solid #fff;box-shadow:inset 0 -1px 0 0 #dfdfdf}.wp-full-overlay-sidebar .wp-full-overlay-footer{bottom:0;border-bottom:0;border-top:1px solid #dfdfdf;box-shadow:inset 0 1px 0 0 #fff}.wp-full-overlay-sidebar .wp-full-overlay-sidebar-content{position:absolute;top:45px;bottom:45px;left:0;right:0;overflow:auto}.wp-full-overlay-sidebar-content .accordion-section:first-child{border-top:1px solid #fff}.wp-full-overlay .close-full-overlay{text-decoration:none}.wp-full-overlay a.collapse-sidebar{position:absolute;bottom:12px;left:0;z-index:50;display:block;width:19px;height:19px;margin-left:15px;padding:0;border-radius:50%;text-decoration:none}.wp-full-overlay.collapsed .collapse-sidebar{position:absolute;left:100%}.wp-full-overlay .collapse-sidebar-arrow{position:absolute;margin-top:2px;margin-left:2px;display:block;width:15px;height:15px;background:transparent url(../images/arrows.png) no-repeat -1px -73px}.wp-full-overlay.collapsed .collapse-sidebar-arrow{background-position:-1px -109px}.wp-full-overlay .collapse-sidebar-label{position:absolute;left:100%;color:gray;line-height:20px;margin-left:10px}.wp-full-overlay.collapsed .collapse-sidebar-label{display:none}.wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-label{color:#666}.wp-full-overlay,.wp-full-overlay-sidebar,.wp-full-overlay .collapse-sidebar,.wp-full-overlay-main{-webkit-transition-property:left,right,top,bottom,width,margin;-moz-transition-property:left,right,top,bottom,width,margin;-ms-transition-property:left,right,top,bottom,width,margin;-o-transition-property:left,right,top,bottom,width,margin;transition-property:left,right,top,bottom,width,margin;-webkit-transition-duration:.2s;-moz-transition-duration:.2s;-ms-transition-duration:.2s;-o-transition-duration:.2s;transition-duration:.2s}.no-customize-support .hide-if-no-customize,.customize-support .hide-if-customize,.no-customize-support.wp-core-ui .hide-if-no-customize,.no-customize-support .wp-core-ui .hide-if-no-customize,.customize-support.wp-core-ui .hide-if-customize,.customize-support .wp-core-ui .hide-if-customize{display:none}#customize-container{display:none;background:#fff;z-index:500000;position:fixed;overflow:visible;top:0;bottom:0;left:0;right:0;height:100%}.customize-active #customize-container{display:block}.customize-loading #customize-container iframe{opacity:0}.customize-loading #customize-container{background:#fff url(../images/wpspin_light.gif) no-repeat fixed center center;background-size:16px 16px}#customize-container iframe,#theme-installer iframe{height:100%;width:100%;z-index:20;-webkit-transition:opacity .3s;-moz-transition:opacity .3s;-ms-transition:opacity .3s;-o-transition:opacity .3s;transition:opacity .3s}#customize-container .collapse-sidebar{bottom:16px}#theme-installer{display:none}#theme-installer.single-theme{display:block}.install-theme-info{display:none;padding:10px 20px 20px}.single-theme .install-theme-info{padding-top:15px}#theme-installer .install-theme-info{display:block}.install-theme-info .theme-install{float:right;margin-top:18px}.install-theme-info .theme-name{font-size:16px;line-height:24px;margin-bottom:0}.install-theme-info .theme-screenshot{margin-top:15px;width:258px;border:1px solid #ccc}.install-theme-info .theme-details{overflow:hidden}.theme-details .theme-version{margin:15px 0;float:left}.theme-details .star-holder{margin:14px 0;float:right}.theme-details .theme-description{float:left;color:#777;line-height:20px}#excerpt,.attachmentlinks{margin:0;height:4em;width:98%}#template div{margin-right:190px}p.pagenav{margin:0;display:inline}.pagenav span{font-weight:700;margin:0 6px}.row-title{font-size:13px!important;font-weight:700}.column-author img,.column-username img{float:left;margin-right:10px;margin-top:1px}.row-actions{visibility:hidden;padding:2px 0 0}tr:hover .row-actions,.mobile .row-actions,.row-actions.visible,div.comment-item:hover .row-actions{visibility:visible}.row-actions-visible{padding:2px 0 0}.form-table .pre{padding:8px;margin:0}table.form-table td .updated{font-size:13px}.tagchecklist{margin-left:14px;font-size:12px;overflow:auto}.tagchecklist strong{margin-left:-8px;position:absolute}.tagchecklist span{margin-right:25px;display:block;float:left;font-size:11px;line-height:1.8em;white-space:nowrap;cursor:default}.tagchecklist span a{margin:4px 0 0 -10px;cursor:pointer;width:10px;height:10px;display:block;float:left;text-indent:-9999px;overflow:hidden;position:absolute}#poststuff h2{margin-top:20px;font-size:1.5em;margin-bottom:15px;padding:0 0 3px;clear:left}#poststuff h3,.metabox-holder h3{font-size:15px;font-weight:400;padding:7px 10px;margin:0;line-height:1}#poststuff .inside{margin:6px 0 8px}#poststuff .inside #parent_id,#poststuff .inside #page_template{max-width:100%}.inline-edit-row #post_parent,.inline-edit-row select[name=page_template]{max-width:80%}.ie8 #poststuff .inside #parent_id,.ie8 #poststuff .inside #page_template,.ie8 .inline-edit-row #post_parent,.ie8 .inline-edit-row select[name=page_template]{width:250px}#post-visibility-select{line-height:1.5em;margin-top:3px}#poststuff #submitdiv .inside{margin:0;padding:0}.edit-form-section{margin-bottom:20px}#templateside ul li a{text-decoration:none}.tool-box .title{margin:8px 0;font-size:18px;font-weight:400;line-height:24px}#sidemenu{margin:-30px 15px 0 315px;list-style:none;position:relative;float:right;padding-left:10px;font-size:12px}#sidemenu a{padding:0 7px;display:block;float:left;line-height:28px;border-top-width:1px;border-top-style:solid;border-bottom-width:1px;border-bottom-style:solid}#sidemenu li{display:inline;line-height:200%;list-style:none;text-align:center;white-space:nowrap;margin:0;padding:0}#sidemenu a.current{font-weight:400;padding-left:6px;padding-right:6px;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px;border-width:1px;border-style:solid}#sidemenu li a .count-0{display:none}.plugin-install #description,.plugin-install-network #description{width:60%}table .vers,table .column-visible,table .column-rating{text-align:left}.error-message{color:red;font-weight:700}body.iframe{height:98%}.lp-show-latest p{display:none}.lp-show-latest p:last-child,.lp-show-latest .lp-error p{display:block}td.media-icon{text-align:center;width:80px;padding-top:8px;padding-bottom:8px}td.media-icon img{max-width:80px;max-height:60px}#howto{font-size:11px;margin:0 5px;display:block}.importers td{padding-right:14px}.importers{font-size:16px;width:auto}#namediv table{width:100%}#namediv td.first{width:10px;white-space:nowrap}#namediv input{width:98%}#namediv p{margin:10px 0}#submitdiv h3{margin-bottom:0!important}.zerosize{height:0;width:0;margin:0;border:0;padding:0;overflow:hidden;position:absolute}br.clear{height:2px;line-height:2px}.checkbox{border:0;margin:0;padding:0}fieldset{border:0;padding:0;margin:0}.post-categories{display:inline;margin:0;padding:0}.post-categories li{display:inline}.edit-box{display:none}h3:hover .edit-box{display:inline}#dashboard-widgets form .input-text-wrap input{width:100%}#dashboard-widgets form .textarea-wrap textarea{width:100%}#dashboard-widgets .postbox form .submit{float:none;margin:.5em 0 0;padding:0;border:0}#dashboard-widgets-wrap #dashboard-widgets .postbox form .submit #publish{min-width:0}#dashboard-widgets a{text-decoration:none}#dashboard-widgets h3 a{text-decoration:underline}#dashboard-widgets h3 .postbox-title-action{position:absolute;right:10px;padding:0;top:5px}.js #dashboard-widgets h3 .postbox-title-action{right:30px}#dashboard-widgets h4{font-weight:400;font-size:13px;margin:0 0 .2em;padding:0}#dashboard_right_now p.sub,#dashboard_right_now .table,#dashboard_right_now .versions{margin:-12px}#dashboard_right_now .inside{font-size:12px;padding-top:20px}#dashboard_right_now p.sub{padding:5px 0 15px;color:#8f8f8f;font-size:14px;position:absolute;top:-17px;left:15px}#dashboard_right_now .table{margin:0;padding:0;position:relative}#dashboard_right_now .table_content{float:left;border-top-width:1px;border-top-style:solid;width:45%}#dashboard_right_now .table_discussion{float:right;border-top-width:1px;border-top-style:solid;width:45%}#dashboard_right_now table td{padding:3px 0;white-space:nowrap}#dashboard_right_now table tr.first td{border-top:0}#dashboard_right_now td.b{padding-right:6px;text-align:right;font-size:14px;width:1%}#dashboard_right_now td.b a{font-size:18px}#dashboard_right_now td.b a:hover{color:#d54e21}#dashboard_right_now .t{font-size:12px;padding-right:12px;padding-top:6px;color:#777}#dashboard_right_now .t a{white-space:nowrap}#dashboard_right_now .spam{color:red}#dashboard_right_now .waiting{color:#e66f00}#dashboard_right_now .approved{color:green}#dashboard_right_now .versions{padding:6px 10px 12px;clear:both}#dashboard_right_now a.button{float:right;clear:right;position:relative;top:-5px}#dashboard_recent_comments h3{margin-bottom:0}#dashboard_recent_comments .inside{margin-top:0}#dashboard_recent_comments .comment-meta .approve{font-style:italic;font-family:sans-serif;font-size:10px}#dashboard_recent_comments .subsubsub{float:none;white-space:normal}#the-comment-list{position:relative}#the-comment-list .comment-item{padding:1em 10px;border-top:1px solid}#the-comment-list .pingback{padding-left:9px!important}#the-comment-list .comment-item,#the-comment-list #replyrow{margin:0 -10px}#the-comment-list .comment-item:first-child{border-top:0}#the-comment-list .comment-item .avatar{float:left;margin:0 10px 5px 0}#the-comment-list .comment-item h4{line-height:1.7em;margin-top:-.4em;color:#777}#the-comment-list .comment-item h4 cite{font-style:normal;font-weight:400}#the-comment-list .comment-item blockquote,#the-comment-list .comment-item blockquote p{margin:0;padding:0;display:inline}#dashboard_recent_comments #the-comment-list .trackback blockquote,#dashboard_recent_comments #the-comment-list .pingback blockquote{display:block}#the-comment-list .comment-item p.row-actions{margin:3px 0 0;padding:0;font-size:12px}.no-js #dashboard_quick_press{display:none}#dashboard_quick_press .easy-blogging{padding:0 8px;text-align:left}#dashboard_quick_press .input-text-wrap{position:relative}#dashboard_quick_press .prompt{color:#bbb;position:absolute}#dashboard_quick_press div.updated{padding:0 5px}#title-wrap label,#tags-input-wrap label{cursor:text}#title-wrap #title{padding:2px 6px;font-size:1.3em;line-height:100%;outline:0}#tags-input-wrap #tags-input{outline:0}#title-wrap #title-prompt-text{font-size:1.3em;padding:5px 8px}#tags-input-wrap #tags-input-prompt-text{font-size:1em;padding:4px 8px}#dashboard_quick_press .input-text-wrap,#dashboard_quick_press .textarea-wrap{margin:0 0 1em}#dashboard_quick_press .wp-media-buttons{margin:0 0 .2em 1px;padding:0}#dashboard_quick_press .wp-media-buttons a{color:#777}#dashboard-widgets #dashboard_quick_press form p.submit input{float:left}#dashboard-widgets #dashboard_quick_press form p.submit #save-post{margin:0 .7em 0 1px}#dashboard-widgets #dashboard_quick_press form p.submit #publish{float:right}#dashboard-widgets #dashboard_quick_press form p.submit .spinner{vertical-align:middle;margin:4px 6px 0 0}#dashboard_recent_drafts ul,#dashboard_recent_drafts p{margin:0;padding:0;word-wrap:break-word}#dashboard_recent_drafts ul{list-style:none}#dashboard_recent_drafts ul li{margin-bottom:1em}#dashboard_recent_drafts h4{line-height:1.7em;word-wrap:break-word}#dashboard_recent_drafts h4 abbr{font-weight:400;font-family:sans-serif;font-size:12px;color:#999;margin-left:3px}.rss-widget ul{margin:0;padding:0;list-style:none}a.rsswidget{font-size:13px;line-height:1.7em}.rss-widget ul li{line-height:1.5em;margin-bottom:12px}.rss-widget span.rss-date{color:#999;font-size:12px;margin-left:3px}.rss-widget cite{display:block;text-align:right;margin:0 0 1em;padding:0}.rss-widget cite:before{content:'\2014'}#dashboard_plugins h4{line-height:1.7em}#dashboard_plugins h5{font-weight:400;font-size:13px;margin:0;display:inline;line-height:1.4em}#dashboard_plugins h5 a{line-height:1.4em}#dashboard_plugins .inside span{font-size:12px;padding-left:5px}#dashboard_plugins p{margin:.3em 0 1.4em;line-height:1.4em}.dashboard-comment-wrap{overflow:hidden;word-wrap:break-word}#dashboard_browser_nag a.update-browser-link{font-size:1.2em;font-weight:700}#dashboard_browser_nag a{text-decoration:underline}#dashboard_browser_nag p.browser-update-nag.has-browser-icon{padding-right:125px}#dashboard_browser_nag .browser-icon{margin-top:-35px}#dashboard_browser_nag.postbox.browser-insecure{background-color:#ac1b1b;border-color:#ac1b1b}#dashboard_browser_nag.postbox{background-color:#e29808;background-image:none;border-color:#edc048;color:#fff;-webkit-box-shadow:none;box-shadow:none}#dashboard_browser_nag.postbox.browser-insecure h3{border-bottom-color:#cd5a5a;color:#fff}#dashboard_browser_nag.postbox h3{border-bottom-color:#f6e2ac;text-shadow:none;background:transparent none;color:#fff;-webkit-box-shadow:none;box-shadow:none}#dashboard_browser_nag a{color:#fff}#dashboard_browser_nag.browser-insecure a.browse-happy-link,#dashboard_browser_nag.browser-insecure a.update-browser-link{text-shadow:#871b15 0 1px 0}#dashboard_browser_nag a.browse-happy-link,#dashboard_browser_nag a.update-browser-link{text-shadow:#d29a04 0 1px 0}.login *{margin:0;padding:0}.login form{margin-left:8px;padding:26px 24px 46px;font-weight:400;background:#fff;border:1px solid #e5e5e5;-webkit-box-shadow:rgba(200,200,200,.7) 0 4px 10px -1px;box-shadow:rgba(200,200,200,.7) 0 4px 10px -1px}.login form .forgetmenot{font-weight:400;float:left;margin-bottom:0}.login .button-primary{float:right}#login form p{margin-bottom:0}#login form p.submit{padding:0}.login label{color:#777;font-size:14px}.login form .forgetmenot label{font-size:12px;line-height:19px}.login h1 a{background-image:url(../images/wordpress-logo.png?ver=20120216);background-size:274px 63px;background-position:top center;background-repeat:no-repeat;width:326px;height:67px;text-indent:-9999px;outline:0;overflow:hidden;padding-bottom:15px;display:block}#login{width:320px;padding:114px 0 0;margin:auto}#login_error,.login .message{margin:0 0 16px 8px;padding:12px}.login #nav,.login #backtoblog{text-shadow:#fff 0 1px 0;margin:0 0 0 16px;padding:16px 16px 0}#backtoblog{padding:12px 16px 0}.login form .input,.login input[type=text]{color:#555;font-weight:200;font-size:24px;line-height:1;width:100%;padding:3px;margin-top:2px;margin-right:6px;margin-bottom:16px;border:1px solid #e5e5e5;background:#fbfbfb;outline:0;-webkit-box-shadow:inset 1px 1px 2px rgba(200,200,200,.2);box-shadow:inset 1px 1px 2px rgba(200,200,200,.2)}.login #pass-strength-result{width:250px;font-weight:700;border-style:solid;border-width:1px;margin:12px 0 6px;padding:6px 5px;text-align:center}.mobile #login{padding:20px 0}.mobile #login form,.mobile #login .message,.mobile #login_error{margin-left:0}.mobile #login #nav,.mobile #login #backtoblog{margin-left:8px}.mobile #login h1 a{width:auto}body.interim-login{height:auto}.interim-login #login{padding:0;margin:5px auto 20px}.interim-login.login h1 a{width:auto}.interim-login #login_error,.interim-login.login .message{margin:0 0 16px}.interim-login.login form{margin:0}#dashboard_right_now p.musub{margin-top:12px;border-top:1px solid #ececec;padding-left:16px;position:static}.rtl #dashboard_right_now p.musub{padding-left:0;padding-right:16px}#dashboard_right_now td.b a.musublink{font-size:16px}#dashboard_right_now div.musubtable{border-top:0}#dashboard_right_now div.musubtable .t{white-space:normal}.wp-list-table .site-deleted{background:#ff8573}.wp-list-table .site-spammed{background:#faafaa}.wp-list-table .site-archived{background:#ffebe8}.wp-list-table .site-mature{background:#fecac2}.no-js #message{display:block}#nav-menu-meta ul.outer-border{-webkit-border-radius:3px;border-radius:3px}.accordion-section ul.category-tabs,.accordion-section ul.add-menu-item-tabs,.accordion-section ul.wp-tab-bar{margin:0}.accordion-section .categorychecklist{margin:13px 0}#nav-menu-meta .accordion-section-content{padding:18px 13px}#nav-menu-meta .button-controls{margin-bottom:0}#nav-menus-frame{margin-left:300px;margin-top:23px}#wpbody-content #menu-settings-column{display:inline;width:281px;margin-left:-300px;clear:both;float:left;padding-top:0}#menu-settings-column .inside{clear:both;margin:10px 0 0}.metabox-holder-disabled .postbox,.metabox-holder-disabled .accordion-section-content{opacity:.5;filter:alpha(opacity=50)}.metabox-holder-disabled .button-controls .select-all{display:none}#wpbody{position:relative}.blank-slate .menu-name{height:2em}.blank-slate .menu-settings{border:0;margin-top:0;padding-top:0;overflow:hidden}.is-submenu{font-style:italic;font-weight:400;margin-left:4px}.manage-menus{margin-top:23px;padding:10px;overflow:hidden;-webkit-border-radius:3px;border-radius:3px}.manage-menus select{float:left;margin-right:6px}.manage-menus .selected-menu{float:left;margin:5px 6px 0 0}.manage-menus .submit-btn{float:left;margin-top:1px}.menu-edit p{margin:.3em 0 .6em}.menu-edit #post-body-content h3{margin:0 0 10px}.menu-settings{margin-top:2em;overflow:hidden}.menu-settings dl{margin:0 0 10px;overflow:hidden;position:relative}.menu-settings dd{float:left;margin:0;width:60%}.menu-edit .checkbox-input{margin-top:4px}.theme-location-set{font-size:11px}#menu-management-liquid{float:left;min-width:100%;margin-top:3px}#menu-management{position:relative;margin-right:20px;margin-top:-3px;width:100%}#menu-management .menu-edit{margin-bottom:20px}.nav-menus-php #post-body{padding:0 10px 10px;border-width:1px 0;border-style:solid}#nav-menu-header,#nav-menu-footer{padding:0 10px}#nav-menu-header{border-bottom:1px solid;margin-bottom:13px}#nav-menu-header .menu-name-label{margin-top:2px}#nav-menu-footer{border-top:1px solid}.nav-menus-php #post-body div.updated,.nav-menus-php #post-body div.error{margin:0}.nav-menus-php #post-body-content{position:relative;float:none}#menu-management .menu-add-new abbr{font-weight:700}#select-nav-menu-container{text-align:right;padding:0 10px 3px;margin-bottom:5px}#select-nav-menu{width:100px;display:inline}#menu-name-label{margin-top:-2px}.widefat td.menu-location-menus{padding-bottom:5px}.menu-location-menus select{float:left}#locations-nav-menu-wrapper{padding:5px 0}.locations-nav-menu-select select{float:left;width:160px;margin-right:5px}.locations-row-links{float:left;margin:6px 0 0 6px}.locations-edit-menu-link,.locations-add-menu-link{margin:0 3px}.locations-edit-menu-link{padding-right:3px;border-right:1px solid #ccc}#wpbody .open-label{display:block;float:left}#wpbody .open-label span{padding-right:10px}.js .input-with-default-title{font-style:italic}#menu-management .inside{padding:0 10px}.postbox .howto input,.accordion-container .howto input{width:180px;float:right}.accordion-container .outer-border{margin:0}#nav-menu-meta .accordion-container .top{border-top:1px solid #dfdfdf}#nav-menu-meta .accordion-container .accordion-section:first-child,#nav-menu-meta .accordion-container .accordion-section:first-child h3,#nav-menu-meta .accordion-container .top,#nav-menu-meta .accordion-container .top h3{-webkit-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;border-top-right-radius:3px;border-top-left-radius:3px}#nav-menu-meta .accordion-container .accordion-section:last-child,#nav-menu-meta .accordion-container .accordion-section:last-child .accordion-section-content,#nav-menu-meta .accordion-container .bottom,#nav-menu-meta .accordion-container .bottom:not(.open) h3{-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.customlinkdiv .howto input{width:180px}.customlinkdiv p{margin-top:0}#nav-menu-theme-locations .howto select{width:100%}#nav-menu-theme-locations .button-controls{text-align:right}.add-menu-item-view-all{height:400px}#menu-container .submit{margin:0 0 10px;padding:0}.nav-menus-php .add-new-menu-action{float:left;margin:6px 0 0 6px;line-height:15px}.nav-menus-php .meta-sep,.nav-menus-php .submitdelete,.nav-menus-php .submitcancel{display:block;float:left;margin:4px 0;line-height:15px}.meta-sep{padding:0 2px}#cancel-save{text-decoration:underline;font-size:12px;margin-left:20px;margin-top:5px}.button.right,.button-secondary.right,.button-primary.right{float:right}.list-controls{float:left;margin-top:5px}.add-to-menu{float:right}.postbox .spinner{display:none;vertical-align:middle}.button-controls{clear:both;margin:10px 0}.show-all,.hide-all{cursor:pointer}.hide-all{display:none}#menu-name{width:270px}#manage-menu .inside{padding:0}#available-links dt{display:block}#add-custom-link .howto{font-size:12px}#add-custom-link label span{display:block;float:left;margin-top:5px;padding-right:5px}.menu-item-textbox{width:180px}.nav-menus-php .howto span{margin-top:4px;display:block;float:left}.quick-search{width:190px}.nav-menus-php .list-wrap{display:none;clear:both;margin-bottom:10px}.nav-menus-php .list-container{max-height:200px;overflow-y:auto;padding:10px 10px 5px}.nav-menus-php .postbox p.submit{margin-bottom:0}.nav-menus-php .list li{display:none;margin:0;margin-bottom:5px}.nav-menus-php .list li .menu-item-title{cursor:pointer;display:block}.nav-menus-php .list li .menu-item-title input{margin-right:3px;margin-top:-3px}#menu-container .inside{padding-bottom:10px}.menu{padding-top:1em}#menu-to-edit{margin:0;padding:.1em 0}.menu ul{width:100%}.menu li{margin-bottom:0;position:relative}.menu-item-bar{clear:both;line-height:1.5em;position:relative;margin:9px 0 0}.menu-item-handle{border:1px solid #dfdfdf;position:relative;padding-left:10px;height:auto;width:400px;line-height:35px;text-shadow:0 1px 0 #FFF;overflow:hidden;word-wrap:break-word}#menu-to-edit .menu-item-invalid .menu-item-handle{background:#f6c9cc;background-image:-webkit-gradient(linear,left bottom,left top,from(#f6c9cc),to(#fdf8ff));background-image:-webkit-linear-gradient(bottom,#f6c9cc,#fdf8ff);background-image:-moz-linear-gradient(bottom,#f6c9cc,#fdf8ff);background-image:-o-linear-gradient(bottom,#f6c9cc,#fdf8ff);background-image:linear-gradient(to top,#f6c9cc,#fdf8ff)}.menu-item-edit-active .menu-item-handle{-webkit-border-bottom-right-radius:0;-webkit-border-bottom-left-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.no-js .menu-item-edit-active .item-edit{display:none}.js .menu-item-handle{cursor:move}.menu li.deleting .menu-item-handle{background-image:none;text-shadow:0 0 0}.menu-item-handle .item-title{font-size:12px;font-weight:700;padding:7px 0;line-height:20px;min-height:20px;display:block;margin-right:13em}li.menu-item.ui-sortable-helper dl{margin-top:0}li.menu-item.ui-sortable-helper .menu-item-transport dl{margin-top:13px}.menu .sortable-placeholder{height:35px;width:410px;margin-top:13px}.menu-item-depth-0{margin-left:0}.menu-item-depth-1{margin-left:30px}.menu-item-depth-2{margin-left:60px}.menu-item-depth-3{margin-left:90px}.menu-item-depth-4{margin-left:120px}.menu-item-depth-5{margin-left:150px}.menu-item-depth-6{margin-left:180px}.menu-item-depth-7{margin-left:210px}.menu-item-depth-8{margin-left:240px}.menu-item-depth-9{margin-left:270px}.menu-item-depth-10{margin-left:300px}.menu-item-depth-11{margin-left:330px}.menu-item-depth-0 .menu-item-transport{margin-left:0}.menu-item-depth-1 .menu-item-transport{margin-left:-30px}.menu-item-depth-2 .menu-item-transport{margin-left:-60px}.menu-item-depth-3 .menu-item-transport{margin-left:-90px}.menu-item-depth-4 .menu-item-transport{margin-left:-120px}.menu-item-depth-5 .menu-item-transport{margin-left:-150px}.menu-item-depth-6 .menu-item-transport{margin-left:-180px}.menu-item-depth-7 .menu-item-transport{margin-left:-210px}.menu-item-depth-8 .menu-item-transport{margin-left:-240px}.menu-item-depth-9 .menu-item-transport{margin-left:-270px}.menu-item-depth-10 .menu-item-transport{margin-left:-300px}.menu-item-depth-11 .menu-item-transport{margin-left:-330px}body.menu-max-depth-0{min-width:950px!important}body.menu-max-depth-1{min-width:980px!important}body.menu-max-depth-2{min-width:1010px!important}body.menu-max-depth-3{min-width:1040px!important}body.menu-max-depth-4{min-width:1070px!important}body.menu-max-depth-5{min-width:1100px!important}body.menu-max-depth-6{min-width:1130px!important}body.menu-max-depth-7{min-width:1160px!important}body.menu-max-depth-8{min-width:1190px!important}body.menu-max-depth-9{min-width:1220px!important}body.menu-max-depth-10{min-width:1250px!important}body.menu-max-depth-11{min-width:1280px!important}.item-type{font-size:12px;padding-right:10px}.item-controls{font-size:12px;position:absolute;right:20px;top:-1px}.item-controls a{text-decoration:none}.item-controls a:hover{cursor:pointer}.item-controls .item-order{padding-right:10px}.nav-menus-php .item-edit{position:absolute;right:-20px;top:0;display:block;width:30px;height:36px;overflow:hidden;text-indent:-999em;border-bottom:1px solid;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px}.menu-instructions-inactive{display:none}.menu-item-settings{display:block;width:400px;padding:10px 0 10px 10px;border:solid;border-width:0 1px 1px;-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.menu-item-settings .field-move a{display:none;margin:0 2px}.menu-item-edit-active .menu-item-settings{display:block}.menu-item-edit-inactive .menu-item-settings{display:none}.add-menu-item-pagelinks{margin:.5em auto;text-align:center}.link-to-original{display:block;margin:0 0 10px;padding:3px 5px 5px;font-size:12px;font-style:italic}.link-to-original a{padding-left:4px;font-style:normal}.hidden-field{display:none}.menu-item-settings .description-thin,.menu-item-settings .description-wide{margin-right:10px;float:left}.description-thin{width:190px;height:40px}.description-wide{width:390px}.menu-item-actions{padding-top:15px}#cancel-save{cursor:pointer}.nav-menus-php .major-publishing-actions{clear:both;padding:3px 0 5px}.nav-menus-php .major-publishing-actions .publishing-action{text-align:right;float:right;line-height:23px;margin:2px 0 1px}.nav-menus-php .blank-slate .menu-settings{display:none}.nav-menus-php .delete-action{float:left;margin-top:2px}.nav-menus-php .submitbox .submitcancel{border-bottom:1px solid;padding:1px 2px;text-decoration:none}.nav-menus-php .major-publishing-actions .form-invalid{padding-left:4px;margin-left:-4px;border:0 none}#menu-item-name-wrap:after,#menu-item-url-wrap:after,#menu-name-label:after,#menu-settings-column .inside:after,#nav-menus-frame:after,.nav-menus-php #post-body-content:after,.nav-menus-php .button-controls:after,.nav-menus-php .major-publishing-actions:after,.nav-menus-php .menu-item-settings:after{clear:both;content:".";display:block;height:0;visibility:hidden}#nav-menus-frame,.button-controls,#menu-item-url-wrap,#menu-item-name-wrap{display:block}div.star-holder{position:relative;height:17px;width:100px;background:url(../images/stars.png?ver=20121108) repeat-x bottom left}div.star-holder .star-rating{background:url(../images/stars.png?ver=20121108) repeat-x top left;height:17px;float:left}div.action-links{font-weight:400;margin:6px 0 0}#plugin-information-header{margin:0;padding:0 5px;font-weight:700;position:relative;border-bottom-width:1px;border-bottom-style:solid;height:2.5em}#plugin-information ul#sidemenu{font-weight:400;margin:0 5px;position:absolute;left:0;bottom:-1px}#plugin-information p.action-button{width:100%;padding-bottom:0;margin-bottom:0;margin-top:10px;-webkit-border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-top-left-radius:3px;border-bottom-left-radius:3px}#plugin-information .action-button a{text-align:center;font-weight:700;text-decoration:none;display:block;line-height:2em}#plugin-information h2{clear:none!important;margin-right:200px}#plugin-information .fyi{margin:0 10px 50px;width:210px}#plugin-information .fyi h2{font-size:.9em;margin-bottom:0;margin-right:0}#plugin-information .fyi h2.mainheader{padding:5px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px}#plugin-information .fyi ul{padding:10px 5px 10px 7px;margin:0;list-style:none;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px}#plugin-information .fyi li{margin-right:0}#plugin-information #section-holder{padding:10px}#plugin-information .section ul,#plugin-information .section ol{margin-left:16px;list-style-type:square;list-style-image:none}#plugin-information #section-screenshots ol{list-style:none;margin:0}#plugin-information #section-screenshots li img{vertical-align:text-top;max-width:100%;width:auto;height:auto}#plugin-information #section-screenshots li p{font-style:italic;padding-left:20px;padding-bottom:2em}#plugin-information #section-screenshots ol,#plugin-information .updated,#plugin-information pre{margin-right:215px}#plugin-information pre{padding:7px;overflow:auto}body.press-this{color:#333;margin:0;padding:0;min-width:675px;min-height:400px}img{border:0}.press-this #wphead{height:32px;margin-left:0;margin-right:0;margin-bottom:5px}.press-this #header-logo{float:left;margin:7px 7px 0;-webkit-user-select:none;-moz-user-select:none;user-select:none}.press-this #wphead h1{font-weight:400;font-size:16px;line-height:32px;margin:0;float:left}.press-this #wphead h1 a{text-decoration:none}.press-this #wphead h1 a:hover{text-decoration:underline}.press-this #message{margin:10px 0}.press-this-sidebar{float:right;width:200px;padding-top:10px}.press-this #title{margin-left:0;margin-right:0;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.press-this .tagchecklist span a{background:transparent url(../images/xit.gif) no-repeat 0 0}.press-this #titlediv{margin:0}.press-this .wp-media-buttons{cursor:default;padding:8px 8px 0}.press-this .howto{margin-top:2px;margin-bottom:3px;font-size:12px;font-style:italic;display:block}.press-this #poststuff{margin:0 10px 10px;padding:0}.press-this #photo-add-url-div input[type=text]{width:220px}#poststuff #editor-toolbar{height:30px}div.zerosize{border:0 none;height:0;margin:0;overflow:hidden;padding:0;width:0}.posting{margin-right:212px;position:relative}.press-this .inner-sidebar{width:200px}.press-this .inner-sidebar .sleeve{padding-top:5px}.press-this #submitdiv p{margin:0;padding:6px}.press-this #submitdiv #publishing-actions{border-bottom:1px solid #dfdfdf}.press-this #publish{float:right}.press-this #poststuff h2,.press-this #poststuff h3{font-size:14px;line-height:1}.press-this #tagsdiv-post_tag h3,.press-this #categorydiv h3{cursor:pointer}.press-this #submitdiv h3{cursor:default}h3.tb{text-shadow:0 1px 0 #fff;font-weight:700;font-size:12px;margin-left:5px}#TB_window{border:1px solid #333}.press-this .postbox,.press-this .stuffbox{margin-bottom:10px;min-width:0}.js .postbox:hover .handlediv,.js .stuffbox:hover .handlediv{background:transparent url(../images/arrows.png) no-repeat 6px 7px}.press-this #submitdiv:hover .handlediv{background:0 0}.tbtitle{font-size:1.7em;outline:0;padding:3px 4px;border-color:#dfdfdf}.press-this .actions{float:right;margin:-19px 0 0}.press-this #extra-fields .actions{margin:-32px -7px 0 0}.press-this .actions li{float:left;list-style:none;margin-right:10px}#extra-fields .button{margin-right:5px}#photo_saving{margin:0 8px 8px;vertical-align:middle}#img_container_container{overflow:auto}#extra-fields{margin-top:10px;position:relative}#extra-fields h2{margin:12px}#waiting{margin-top:10px;overflow:hidden}#waiting span{float:right;margin:0 0 0 5px}#waiting .spinner{display:block}#extra-fields .postbox{margin-bottom:5px}#extra-fields .titlewrap{padding:0;overflow:auto;height:100px}#img_container a{display:block;float:left;overflow:hidden}#img_container img,#img_container a{width:68px;height:68px}#img_container img{border:0;background-color:#f4f4f4;cursor:pointer}#img_container a,#img_container a:link,#img_container a:visited{border:1px solid #ccc;display:block;position:relative}#img_container a:hover,#img_container a:active{border-color:#000;z-index:1000;border-width:2px;margin:-1px}#embed-code{width:100%;height:98px}.press-this .categorydiv div.tabs-panel{height:100px}.press-this .tagsdiv .newtag{width:120px}.press-this #content{margin:5px 0;padding:0 5px;border:0 none;height:345px;font-family:Consolas,Monaco,monospace;font-size:13px;line-height:19px;background:transparent}.press-this #publishing-actions .spinner{display:inline;vertical-align:middle}#TB_ajaxContent #options{position:absolute;top:20px;right:25px;padding:5px}#TB_ajaxContent h3{margin-bottom:.25em}.error a{text-decoration:underline}.updated a{text-decoration:none;padding-bottom:2px}.taghint{color:#aaa;margin:-17px 0 0 7px;visibility:hidden}input.newtag~div.taghint{visibility:visible}input.newtag:focus~div.taghint{visibility:hidden}#photo-add-url-div input[type=text]{width:300px}.alignleft h3{margin:0}h3 span{font-weight:400}#template textarea{font-family:Consolas,Monaco,monospace;font-size:12px;width:97%;background:#f9f9f9;outline:0}#template p{width:97%}#templateside{float:right;width:190px;word-wrap:break-word}#templateside h3,#postcustomstuff p.submit{margin:0}#templateside h4{margin:1em 0 0}#templateside ol,#templateside ul{margin:.5em;padding:0}#templateside li{margin:4px 0}#templateside ul li a span.highlight{display:block}.nonessential{font-size:11px;font-style:italic;padding-left:12px}.highlight{padding:3px 3px 3px 12px;margin-left:-12px;font-weight:700;border:0 none}#documentation{margin-top:10px}#documentation label{line-height:22px;vertical-align:top;font-weight:700}.fileedit-sub{padding:10px 0 8px;line-height:180%}#filter-box{clear:both}.feature-filter{padding:8px 12px 0}.feature-filter .feature-group{float:left;margin:5px 10px 10px}.feature-filter .feature-group li{display:inline-block;vertical-align:top;list-style-type:none;padding-right:25px;width:150px}.feature-container{width:100%;overflow:auto;margin-bottom:10px}div.widget-liquid-left{float:left;clear:left;width:100%;margin-right:-325px}div#widgets-left{margin-left:5px;margin-right:325px}div#widgets-right{width:285px;margin:0 auto}div.widget-liquid-right{float:right;clear:right;width:300px}.widget-liquid-right .widget,.inactive-sidebar .widget,.widget-liquid-right .sidebar-description{width:250px;margin:0 auto 20px;overflow:hidden}.widget-liquid-right .sidebar-description{margin-bottom:10px}.inactive-sidebar .widget{margin:0 10px 20px;display:inline-block}div.sidebar-name h3{font-weight:400;font-size:15px;margin:0;padding:8px 10px;overflow:hidden;white-space:nowrap}div.sidebar-name{font-size:13px;border-width:1px;border-style:solid;-webkit-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;border-top-right-radius:3px;border-top-left-radius:3px}.js .sidebar-name{cursor:pointer}.js .closed .sidebar-name{-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.widget-liquid-right .widgets-sortables,#widgets-left .widget-holder{border-width:0 1px 1px;border-style:none solid solid;-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.js .closed .widgets-sortables,.js .closed .widget-holder{display:none}.widget-liquid-right .widgets-sortables{padding:15px 0 0}#available-widgets .widget-holder{padding:7px 5px 0}#available-widgets .widget{-webkit-box-shadow:none;box-shadow:none}.inactive-sidebar{padding:5px 5px 0}#widget-list .widget{width:250px;margin:0 10px 15px;border:0 none;background:transparent;display:inline-block;vertical-align:top}#widget-list .widget-description{padding:5px 8px}.widget-placeholder{border-width:1px;border-style:dashed;margin:0 auto 20px;height:27px;width:250px}.inactive-sidebar .widget-placeholder{margin:0 10px 20px;float:left}div.widgets-holder-wrap{padding:0;margin:10px 0 20px}#widgets-left #available-widgets{background-color:transparent;border:0 none}ul#widget-list{list-style:none;margin:0;padding:0;min-height:100px}.widget .widget-top{margin-bottom:-1px;font-size:12px;font-weight:700;height:26px;overflow:hidden}.widget-top .widget-title{padding:7px 9px}.widget-top .widget-title-action{float:right}a.widget-action{display:block;width:24px;height:26px}#available-widgets a.widget-action{display:none}.widget-top a.widget-action{background:transparent url(../images/arrows.png) no-repeat 4px 6px}.widget-top a.widget-action:hover{background:transparent url(../images/arrows-dark.png) no-repeat 4px 6px}.widget .widget-inside,.widget .widget-description{padding:12px 12px 10px;font-size:12px;line-height:16px}.widget-inside,.widget-description{display:none}#available-widgets .widget-description{display:block}.widget .widget-inside p{margin:0 0 1em;padding:0}.widget-title h4{margin:0;padding-bottom:.2em;line-height:1;overflow:hidden;white-space:nowrap}.widgets-sortables{min-height:90px}.widget-control-actions{margin-top:8px}.widget-control-actions a{text-decoration:none}.widget-control-actions a:hover{text-decoration:underline}.widget-control-actions div.alignleft{margin-top:6px}div#sidebar-info{padding:0 1em;margin-bottom:1em;font-size:12px}.widget-title a,.widget-title a:hover{text-decoration:none;border-bottom:0}.widget-control-edit{display:block;font-size:12px;font-weight:400;line-height:26px;padding:0 8px 0 0}a.widget-control-edit{text-decoration:none}.widget-control-edit .add,.widget-control-edit .edit{display:none}#available-widgets .widget-control-edit .add,#widgets-right .widget-control-edit .edit,.inactive-sidebar .widget-control-edit .edit{display:inline}.editwidget{margin:0 auto 15px}.editwidget .widget-inside{display:block;padding:10px}.inactive p.description{margin:5px 15px 10px}#available-widgets p.description{margin:0 12px 12px}.widget-position{margin-top:8px}.inactive{padding-top:2px}.sidebar-name .spinner{float:none;margin:0 3px -3px}.sidebar-name-arrow{float:right;height:29px;width:26px}.widget-title .in-widget-title{font-size:12px;white-space:nowrap}#removing-widget{display:none;font-weight:400;padding-left:15px;font-size:12px;line-height:1}.widget-control-noform,#access-off,.widgets_access .widget-action,.widgets_access .sidebar-name-arrow,.widgets_access #access-on,.widgets_access .widget-holder .description{display:none}.widgets_access .widget-holder,.widgets_access #widget-list{padding-top:10px}.widgets_access #access-off{display:inline}.widgets_access #wpbody-content .widget-title-action,.widgets_access #wpbody-content .widget-control-edit,.widgets_access .closed .widgets-sortables,.widgets_access .closed .widget-holder{display:block}.widgets_access .closed .sidebar-name{-webkit-border-bottom-right-radius:0;-webkit-border-bottom-left-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.widgets_access .sidebar-name,.widgets_access .widget .widget-top{cursor:default}.ui-sortable,.ui-draggable{-ms-touch-action:none}.accordion-section{border-top:1px solid #fff;border-bottom:1px solid #dfdfdf;margin:0}.accordion-section:first-child{border-top:1px solid #dfdfdf}.accordion-section:last-child{box-shadow:0 1px 0 0 #fff}.accordion-section.open .accordion-section-content,.no-js .accordion-section .accordion-section-content{display:block}.accordion-section.open:hover{border-bottom-color:#dfdfdf}.accordion-section-content{display:none;padding:10px 20px 15px;overflow:hidden;background:#fdfdfd;border-left:1px solid #dfdfdf;border-right:1px solid #dfdfdf}.accordion-section-title{margin:0;padding:15px 20px;position:relative;border-left:1px solid #dfdfdf;border-right:1px solid #dfdfdf;-webkit-user-select:none;-moz-user-select:none;user-select:none}.js .accordion-section-title{cursor:pointer}.js .accordion-section-title:after{content:'';width:0;height:0;border-color:#ccc transparent;border-style:solid;border-width:6px 6px 0;position:absolute;top:25px;right:20px;z-index:1}.accordion-section-title:focus{outline:0}.accordion-section-title:hover:after,.accordion-section-title:focus:after{border-color:#aaa transparent}.cannot-expand .accordion-section-title{cursor:auto}.cannot-expand .accordion-section-title:after{display:none}.control-section .accordion-section-title{padding:10px 20px;color:#464646;font-size:15px;font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif;font-weight:400;text-shadow:0 1px 0 #fff;background:#f5f5f5;background-image:-webkit-gradient(linear,left bottom,left top,from(#eee),to(#f5f5f5));background-image:-webkit-linear-gradient(bottom,#eee,#f5f5f5);background-image:-moz-linear-gradient(bottom,#eee,#f5f5f5);background-image:-o-linear-gradient(bottom,#eee,#f5f5f5);background-image:linear-gradient(to top,#eee,#f5f5f5)}.control-section .accordion-section-title:after{top:15px}.js .control-section:hover .accordion-section-title,.js .control-section .accordion-section-title:hover,.js .control-section.open .accordion-section-title,.js .control-section .accordion-section-title:focus{color:#000;background:#f9f9f9;background-image:-webkit-gradient(linear,left bottom,left top,from(#ececec),to(#f9f9f9));background-image:-webkit-linear-gradient(bottom,#ececec,#f9f9f9);background-image:-moz-linear-gradient(bottom,#ececec,#f9f9f9);background-image:-o-linear-gradient(bottom,#ececec,#f9f9f9);background-image:linear-gradient(to top,#ececec,#f9f9f9)}.control-section.open .accordion-section-title{border-bottom:1px solid #dfdfdf}@media only screen and (max-width:768px){#col-left{width:100%}#col-right{width:100%}}@media only screen and (min-width:769px){#col-left{width:35%}#col-right{width:65%}}@media only screen and (max-width:860px){#col-left{width:35%}#col-right{width:65%}}@media only screen and (min-width:980px){#col-left{width:35%}#col-right{width:65%}}@media only screen and (max-width:768px){#col-left{width:100%}#col-right{width:100%}.form-field input,.form-field textarea{width:99%}.form-wrap .form-field{padding:0}#profile-page .form-table textarea{max-width:400px;width:auto}}@media print,(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.press-this .tagchecklist span a{background-image:url(../images/xit-2x.gif);background-size:20px auto}.js .postbox:hover .handlediv,.js .stuffbox:hover .handlediv,.widget-top a.widget-action{background-image:url(../images/arrows-2x.png);background-size:15px 123px}.widget-top a.widget-action:hover{background-image:url(../images/arrows-dark-2x.png);background-size:15px 123px}.post-com-count{background-image:url(../images/bubble_bg-2x.gif);background-size:18px 100px}tr.wp-locked .locked-indicator{background-image:url(../images/lock-2x.png);background-size:16px 16px}th .comment-grey-bubble{background-image:url(../images/comment-grey-bubble-2x.png);background-size:12px 12px}.sorting-indicator{background-image:url(../images/sort-2x.gif?ver=20130102);background-size:14px 4px}#content-resize-handle,#post-body .wp_themeSkin .mceStatusbar a.mceResize{background:transparent url(../images/resize-2x.gif) no-repeat scroll right bottom;background-size:11px 11px}div.star-holder{background:url(../images/stars-2x.png?ver=20121108) repeat-x bottom left;background-size:21px 37px}div.star-holder .star-rating{background:url(../images/stars-2x.png?ver=20121108) repeat-x top left;background-size:21px 37px}.welcome-panel .welcome-panel-close:before{background-image:url(../images/xit-2x.gif);background-size:20px auto}.welcome-panel .welcome-icon{background-image:url(../images/welcome-icons-2x.png)}.login h1 a{background-image:url(../images/wordpress-logo-2x.png?ver=20120412);background-size:274px 63px}.wp-badge{background-image:url(../images/wp-badge-2x.png?ver=20120516);background-size:173px 194px}.wp-full-overlay .collapse-sidebar-arrow{background-image:url(../images/arrows-2x.png);background-size:15px 123px}.pressthis a span{background-image:url(../images/press-this-2x.png?v=20121105)}.imgedit-crop,.imgedit-rleft,.imgedit-rright,.imgedit-flipv,.imgedit-fliph,.imgedit-undo,.imgedit-redo{background-image:url(../images/imgedit-icons-2x.png);background-size:260px 64px}.spinner,.imgedit-wait,.customize-loading #customize-container{background-image:url(../images/wpspin_light-2x.gif)}.wp-slider .ui-slider-handle:before{background-image:url(../images/arrows-pr-2x.png);background-size:16px 102px}}.locale-zh-cn .howto,.locale-zh-cn .tablenav .displaying-num,.locale-zh-cn .js .input-with-default-title,.locale-zh-cn .link-to-original,.locale-zh-cn .inline-edit-row fieldset span.title,.locale-zh-cn .inline-edit-row fieldset span.checkbox-title,.locale-zh-cn #utc-time,.locale-zh-cn #local-time,.locale-zh-cn p.install-help,.locale-zh-cn p.help,.locale-zh-cn p.description,.locale-zh-cn span.description,.locale-zh-cn .form-wrap p{font-style:normal}.locale-zh-cn .hdnle a{font-size:12px}.locale-zh-cn form.upgrade .hint{font-style:normal;font-size:100%}.locale-zh-cn #wp-fullscreen-tagline{font-family:KaiTi,"楷体",sans-serif}.locale-zh-cn #wp-fullscreen-modes a{font-size:12px}.locale-zh-cn #sort-buttons{font-size:1em!important}.locale-ru-ru .inline-edit-row fieldset label span.title{width:auto;min-width:5em}.locale-ru-ru.press-this .posting{margin-right:257px}.locale-ru-ru.press-this #photo-add-url-div input[type=text]{width:255px}.locale-ru-ru.press-this #side-sortables{width:245px}.locale-ru-ru #customize-header-actions .button{padding:0 8px 1px}.locale-lt-lt .inline-edit-row fieldset label span.title{width:8em}.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap{margin-left:8em}
\ No newline at end of file
+#wpwrap{height:auto;min-height:100%;width:100%;position:relative;-webkit-font-smoothing:subpixel-antialiased}#wpcontent{height:100%}#wpcontent,#wpfooter{margin-left:180px}.folded #wpcontent,.folded #wpfooter{margin-left:56px}#wpbody-content{padding-bottom:65px;float:left;width:100%;overflow:visible!important}.inner-sidebar{float:right;clear:right;display:none;width:281px;position:relative}.columns-2 .inner-sidebar{margin-right:auto;width:286px;display:block}.columns-2 .inner-sidebar #side-sortables,.inner-sidebar #side-sortables{min-height:300px;width:280px;padding:0}.has-right-sidebar .inner-sidebar{display:block}.has-right-sidebar #post-body{float:left;clear:left;width:100%;margin-right:-2000px}.has-right-sidebar #post-body-content{margin-right:300px;float:none;width:auto}#col-container,#col-left,#col-right{overflow:hidden;padding:0;margin:0}#col-left{width:35%}#col-right{float:right;clear:right;width:65%}.col-wrap{padding:0 7px}.alignleft{float:left}.alignright{float:right}.textleft{text-align:left}.textright{text-align:right}.clear{clear:both}.screen-reader-text,.screen-reader-text span,.ui-helper-hidden-accessible{position:absolute;margin:-1px;padding:0;height:1px;width:1px;overflow:hidden;clip:rect(0 0 0 0);border:0}.screen-reader-shortcut{position:absolute;top:-1000em}.screen-reader-shortcut:focus{left:6px;top:-25px;height:auto;width:auto;display:block;font-size:14px;font-weight:600;padding:15px 23px 14px;background:#f1f1f1;color:#21759b;z-index:100000;line-height:normal;-webkit-box-shadow:0 0 2px 2px rgba(0,0,0,.6);box-shadow:0 0 2px 2px rgba(0,0,0,.6);text-decoration:none;outline:0}.hidden,.js .closed .inside,.js .hide-if-js,.js .wp-core-ui .hide-if-js,.js.wp-core-ui .hide-if-js,.no-js .hide-if-no-js,.no-js .wp-core-ui .hide-if-no-js,.no-js.wp-core-ui .hide-if-no-js{display:none}#menu-management .menu-edit,#menu-settings-column .accordion-container,.feature-filter,.imgedit-group,.manage-menus,.menu-item-handle,.popular-tags,.stuffbox,.widget-inside,.widget-top,.widgets-holder-wrap,.wp-editor-container,p.popular-tags,table.widefat{border:1px solid #e5e5e5;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.04);box-shadow:0 1px 1px rgba(0,0,0,.04)}.feature-filter,.imgedit-group,.popular-tags,.stuffbox,.widgets-holder-wrap,.wp-editor-container,p.popular-tags,table.widefat{background:#fff}body,html{height:100%;margin:0;padding:0}html{background:#f1f1f1}body{color:#444;font-family:"Open Sans",sans-serif;font-size:13px;line-height:1.4em;min-width:600px}body.iframe{min-width:0;padding-top:1px}iframe,img{border:0}td{font-family:inherit;font-size:inherit;font-weight:inherit;line-height:inherit}a{color:#0074a2;-webkit-transition-property:border,background,color;transition-property:border,background,color;-webkit-transition-duration:.05s;transition-duration:.05s;-webkit-transition-timing-function:ease-in-out;transition-timing-function:ease-in-out}a,div{outline:0}a:active,a:hover{color:#2ea2cc}a:focus{color:#124964}a:active,a:focus{outline:thin dotted}#adminmenu a:active,#adminmenu a:focus,.screen-reader-text:focus{outline:0}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}p{font-size:13px;line-height:1.5;margin:1em 0}blockquote{margin:1em}dd,li{margin-bottom:6px}h1,h2,h3,h4,h5,h6{display:block;font-weight:600}h1{font-size:2em;margin:.67em 0}h2{color:#222;font-size:1.5em;margin:.83em 0;font-weight:400}h3{color:#222;font-size:1.3em;margin:1em 0}h4{font-size:1em;margin:1.33em 0}h5{font-size:.83em;margin:1.67em 0}h6{font-size:.67em;margin:2.33em 0}ol,ul{padding:0}ul{list-style:none}ol{list-style-type:decimal;margin-left:2em}ul.ul-disc{list-style:disc outside}ul.ul-square{list-style:square outside}ol.ol-decimal{list-style:decimal outside}ol.ol-decimal,ul.ul-disc,ul.ul-square{margin-left:1.8em}ol.ol-decimal>li,ul.ul-disc>li,ul.ul-square>li{margin:0 0 .5em}.ltr{direction:ltr}.code,code{font-family:Consolas,Monaco,monospace;direction:ltr}code,kbd{padding:3px 5px 2px;margin:0 1px;background:#eaeaea;background:rgba(0,0,0,.07);font-size:13px}.subsubsub{list-style:none;margin:8px 0 0;padding:0;font-size:13px;float:left;color:#666}.subsubsub a{line-height:2;padding:.2em;text-decoration:none}.subsubsub a .count,.subsubsub a.current .count{color:#999;font-weight:400}.subsubsub a.current{font-weight:600;border:0}.subsubsub li{display:inline-block;margin:0;padding:0;white-space:nowrap}.widefat{border-spacing:0;width:100%;clear:both;margin:0}.widefat *{word-wrap:break-word}.widefat a{text-decoration:none}.widefat td,.widefat th{padding:8px 10px}.widefat thead th{border-bottom:1px solid #e1e1e1}.widefat tfoot th{border-top:1px solid #e1e1e1;border-bottom:0}.widefat .no-items td{border-bottom-width:0}.widefat td{vertical-align:top}.widefat td,.widefat td ol,.widefat td p,.widefat td ul{font-size:13px;line-height:1.5em}.widefat th{text-align:left;line-height:1.3em;font-size:14px}.widefat th input{margin:0 0 0 8px;padding:0;vertical-align:text-top}.widefat .check-column{width:2.2em;padding:6px 0 25px;vertical-align:top}.widefat th input[type=checkbox]{margin-top:-1px}.widefat.media .check-column{padding-top:8px}.widefat tbody th.check-column,.widefat tfoot th.check-column,.widefat thead th.check-column{padding:11px 0 0 3px}.widefat thead th.check-column{padding-top:10px}.update-php div.error,.update-php div.updated{margin-left:0}.no-js .widefat tfoot .check-column input,.no-js .widefat thead .check-column input{display:none}.column-comments,.column-links,.column-posts,.widefat .num{text-align:center}.widefat th#comments{vertical-align:middle}.wrap{margin:10px 20px 0 2px}div.error,div.updated{margin:5px 15px 2px}div.error p,div.updated p{margin:.5em 0;padding:2px}.media-upload-form div.error,.wrap div.error,.wrap div.updated{margin:5px 0 15px}div.updated{border-left:4px solid #7ad03a;padding:1px 12px;background-color:#fff;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}div.error{border-left:4px solid #dd3d36;background:#fff;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1);padding:1px 12px}.attention{color:#2ea2cc}.subtitle,.wrap h2{font-weight:400;margin:0}.wrap h2{font-size:23px;font-weight:400;padding:9px 15px 4px 0;line-height:29px}.subtitle{color:#777;font-size:14px;padding-left:25px}.wrap .add-new-h2,.wrap .add-new-h2:active{margin-left:4px;padding:4px 8px;position:relative;top:-3px;text-decoration:none;border:0;-webkit-border-radius:2px;border-radius:2px;background:#e0e0e0;text-shadow:none;font-weight:600;font-size:13px}.wrap .add-new-h2:hover{background:#2ea2cc;color:#fff}.wrap h2.long-header{padding-right:0}.wp-dialog{background-color:#fff}.sorthelper{background-color:#ccf3fa}.ac_match,.subsubsub a.current{color:#000}.alt,.alternate{background-color:#f9f9f9}.bar{background-color:#e8e8e8;border-right-color:#99d}.media-upload-form label.form-help,td.help{color:#9a9a9a}.highlight{background-color:#e4f2fd;color:#000}.wp-ui-primary{color:#fff;background-color:#333}.wp-ui-text-primary{color:#333}.wp-ui-highlight{color:#fff;background-color:#1e8cbe}.wp-ui-text-highlight{color:#1e8cbe}.wp-ui-notification{color:#fff;background-color:#d54e21}.wp-ui-text-notification{color:#d54e21}.wp-ui-text-icon{color:#999}#nav-menu-footer,#nav-menu-header,#your-profile #rich_editing,.checkbox,.control-section .accordion-section-title,.menu-item-handle,.postbox h3,.side-info,.sidebar-name,.stuffbox h3,.widefat tfoot th,.widefat thead th,.widget .widget-top,h3.dashboard-widget-title,h3.dashboard-widget-title small,h3.dashboard-widget-title span{line-height:1.4em}.menu-item-handle,.widget .widget-top{background:#fafafa;color:#222}#namediv h3,#submitdiv h3,.postbox h3{border-bottom:1px solid #eee}.quicktags,.search{background-color:#ccc;color:#000;font-size:12px}.icon32{display:none}#bulk-titles div a:before,#welcome-panel.welcome-panel .welcome-panel-close::before,.tagchecklist span a:before{background:0 0;color:#bbb;content:'\f153';display:block!important;font:400 16px/1 dashicons;speak:none;height:20px;margin:2px 0;text-align:center;width:20px;-webkit-font-smoothing:antialiased!important}#bulk-titles div a:hover:before,#welcome-panel.welcome-panel .welcome-panel-close:hover:before,.tagchecklist span a:hover:before{color:#c00}.key-labels label{line-height:24px}b,strong{font-weight:600}.pre{white-space:pre-wrap;word-wrap:break-word}.howto{color:#666;font-style:italic;display:block}p.install-help{margin:8px 0;font-style:italic}.no-break{white-space:nowrap}hr{border:0;border-top:1px solid #ddd;border-bottom:1px solid #fafafa}#all-plugins-table .plugins a.delete,#media-items a.delete,#media-items a.delete-permanently,#nav-menu-footer .menu-delete,#search-plugins-table .plugins a.delete,.plugins a.delete,.row-actions span.delete a,.row-actions span.spam a,.row-actions span.trash a,.submitbox .submitdelete{color:#a00}#all-plugins-table .plugins a.delete:hover,#media-items a.delete-permanently:hover,#media-items a.delete:hover,#nav-menu-footer .menu-delete:hover,#search-plugins-table .plugins a.delete:hover,.file-error,.plugins a.delete:hover,.row-actions .delete a:hover,.row-actions .spam a:hover,.row-actions .trash a:hover,.submitbox .submitdelete:hover,.widget-control-remove:hover,abbr.required{color:red;text-decoration:none;border:0}#major-publishing-actions{padding:10px;clear:both;border-top:1px solid #ddd;background:#f5f5f5}#delete-action{line-height:28px;vertical-align:middle;text-align:left;float:left}#publishing-action{text-align:right;float:right;line-height:23px}#publishing-action .spinner{float:left}#misc-publishing-actions{padding:6px 0 0}.misc-pub-section{padding:6px 10px 8px}#minor-publishing-actions{padding:10px 10px 0;text-align:right}#save-post{float:left}.preview{float:right}#sticky-span{margin-left:18px}.side-info{margin:0;padding:4px;font-size:11px}.side-info h5{padding-bottom:7px;font-size:14px;margin:12px 2px 5px;border-bottom:1px solid #dadada}.side-info ul{margin:0;padding-left:18px;list-style:square;color:#666}.approve,.unapproved .unapprove{display:none}.spam .approve,.trash .approve,.unapproved .approve{display:inline}td.action-links,th.action-links{text-align:right}#update-nag,.update-nag{display:inline-block;line-height:19px;padding:11px 15px;font-size:14px;text-align:left;margin:25px 20px 0 2px;background-color:#fff;border-left:4px solid #ffba00;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}.update-message{color:#000}.update-php .spinner{float:none;margin:-4px 0}#ajax-loading,.ajax-feedback,.ajax-loading,.imgedit-wait-spin,.list-ajax-loading{visibility:hidden}#ajax-response.alignleft{margin-left:2em}#adminmenu a,#catlist a,#sidemenu a,#taglist a{text-decoration:none}#contextual-help-wrap,#screen-options-wrap{margin:0;padding:8px 20px 12px;position:relative}#contextual-help-wrap{overflow:auto;margin-left:0!important}#screen-meta .screen-reader-text{visibility:hidden}#screen-meta-links{margin:0 20px 0 0}#screen-meta-links a{padding:3px 6px 3px 16px}#screen-meta-links a:focus{outline:0}#screen-meta{display:none;margin:0 20px -1px 0;position:relative;background-color:#fff;border:1px solid #ddd;border-top:0;-webkit-box-shadow:0 1px 0 rgba(0,0,0,.025);box-shadow:0 1px 0 rgba(0,0,0,.025)}#contextual-help-link-wrap,#screen-options-link-wrap{float:right;height:28px;margin:0 0 0 6px;border:1px solid #ddd;border-top:0;background:#fff;-webkit-box-shadow:0 1px 1px -1px rgba(0,0,0,.1);box-shadow:0 1px 1px -1px rgba(0,0,0,.1)}#screen-meta-links .screen-meta-toggle{position:relative;top:0}#screen-meta-links a{color:#777}#screen-meta-links a:active,#screen-meta-links a:focus,#screen-meta-links a:hover{color:#333}#screen-meta-links a:focus{border-color:#aaa;-webkit-box-shadow:0 2px 3px rgba(0,0,0,.15);box-shadow:0 2px 3px rgba(0,0,0,.15)}#screen-meta-links a.show-settings{display:block;font-size:13px;height:22px;line-height:22px;text-decoration:none;z-index:1}#screen-meta-links a:after{right:0;content:'\f140';font:400 20px/1 dashicons;speak:none;display:inline-block;padding:0 5px 0 0;bottom:2px;position:relative;vertical-align:bottom;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important;color:#bbb}#screen-meta-links a.screen-meta-active:after{content:'\f142'}#screen-meta-links a.show-settings:hover{text-decoration:none}.toggle-arrow{background-repeat:no-repeat;background-position:top left;background-color:transparent;height:22px;line-height:22px;display:block}.toggle-arrow-active{background-position:bottom left}#contextual-help-wrap h5,#screen-options-wrap h5{margin:8px 0;font-size:13px}.metabox-prefs label{display:inline-block;padding-right:15px;line-height:30px}.metabox-prefs label input[type=checkbox]{margin-top:-4px;margin-right:6px}.metabox-prefs label input{margin:0 5px 0 2px}.metabox-prefs .columns-prefs label input{margin:0 2px}.metabox-prefs label a{display:none}#contextual-help-wrap{padding:0}#contextual-help-columns{position:relative}#contextual-help-back{position:absolute;top:0;bottom:0;left:150px;right:170px;border:1px solid #e1e1e1;border-top:0;border-bottom:0;background:#f6fbfd}#contextual-help-wrap.no-sidebar #contextual-help-back{right:0;border-right-width:0;-webkit-border-bottom-right-radius:2px;border-bottom-right-radius:2px}.contextual-help-tabs{float:left;width:150px;margin:0}.contextual-help-tabs ul{margin:1em 0}.contextual-help-tabs li{margin-bottom:0;list-style-type:none;border-style:solid;border-width:0 0 0 2px;border-color:transparent}.contextual-help-tabs a{display:block;padding:5px 5px 5px 12px;line-height:18px;text-decoration:none;border:1px solid transparent;border-right:0;border-left:0}.contextual-help-tabs a:hover{color:#333}.contextual-help-tabs .active{padding:0;margin:0 -1px 0 0;border-left:2px solid #2ea2cc;background:#f6fbfd;-webkit-box-shadow:0 2px 0 rgba(0,0,0,.02),0 1px 0 rgba(0,0,0,.02);box-shadow:0 2px 0 rgba(0,0,0,.02),0 1px 0 rgba(0,0,0,.02)}.contextual-help-tabs .active a{border-color:#e1e1e1;color:#333}.contextual-help-tabs-wrap{padding:0 20px;overflow:auto}.help-tab-content{display:none;margin:0 22px 12px 0;line-height:1.6em}.help-tab-content.active{display:block}.help-tab-content ul li{list-style-type:disc;margin-left:18px}.contextual-help-sidebar{width:150px;float:right;padding:0 8px 0 12px;overflow:auto}html.wp-toolbar{padding-top:32px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.narrow{width:70%;margin-bottom:40px}.narrow p{line-height:150%}.widefat td,.widefat th{overflow:hidden;color:#555}.widefat th{font-weight:400}.widefat tfoot tr th,.widefat thead tr th{color:#333}.widefat td p{margin:2px 0 .8em}.widefat ol,.widefat p,.widefat ul{color:#333}.widefat .column-comment p{margin:.6em 0}.postbox-container{float:left}.postbox-container .meta-box-sortables{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#wpbody-content .metabox-holder{padding-top:10px}.metabox-holder .postbox-container .empty-container{border:3px dashed #bbb;height:250px}.columns-2 #postbox-container-3 .empty-container,.columns-2 #postbox-container-4 .empty-container,.columns-3 #postbox-container-4 .empty-container,.metabox-holder.columns-1 .postbox-container .empty-container{border:0 none;height:0;min-height:0}#post-body-content{width:100%;min-width:463px;float:left}#post-body.columns-2 #postbox-container-1{float:right;margin-right:-300px;width:280px}#post-body.columns-2 #side-sortables{min-height:250px}@media only screen and (max-width:799px){#wpbody-content .metabox-holder .postbox-container .empty-container{border:0 none;height:0;min-height:0}}.js .postbox .hndle{cursor:move}.hndle a{font-size:11px;font-weight:400}.postbox .handlediv{float:right;width:27px;height:30px}.js .postbox .handlediv{cursor:pointer}.sortable-placeholder{border:1px dashed #bbb;margin-bottom:20px}.postbox,.stuffbox{margin-bottom:20px;padding:0;line-height:1}.postbox h3,.stuffbox h3{margin-top:1px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.js .postbox h3,.js .widget .widget-top{cursor:move}.postbox .inside,.stuffbox .inside{padding:0 12px 12px;line-height:1.4em;font-size:13px}.postbox .inside{margin:11px 0;position:relative}.postbox .inside>p:last-child,.rss-widget ul li:last-child{margin-bottom:1px!important}.postbox.closed h3{border:0;-webkit-box-shadow:none;box-shadow:none}.postbox table.form-table{margin-bottom:0}.postbox table.widefat{-webkit-box-shadow:none;box-shadow:none}.temp-border{border:1px dotted #ccc}.columns-prefs label{padding:0 5px}#adminmenu .wp-submenu li.current,#adminmenu .wp-submenu li.current a,#adminmenu .wp-submenu li.current a:hover,#dashboard_right_now .versions .b,#ed_reply_toolbar #ed_reply_strong,#pass-strength-result.short,#pass-strength-result.strong,#post-status-display,#post-visibility-display,.feature-filter .feature-name,.item-controls .item-order a,.media-item .percent,.plugins .name{font-weight:600}#wpfooter{position:absolute;bottom:0;left:0;right:0;padding:10px 0;margin-right:20px;color:#777}#wpfooter p{font-size:13px;margin:0;line-height:20px}#footer-thankyou{font-style:italic}#wpfooter a{text-decoration:none}#wpfooter a:hover{text-decoration:underline}.nav-tab{border:1px solid #ccc;border-bottom:0;background:#e4e4e4;color:#555;font-size:12px;line-height:16px;display:inline-block;padding:4px 14px 6px;text-decoration:none;margin:-4px 4px -1px 0}.nav-tab:hover{background-color:#fff;color:#464646}.nav-tab-active,.nav-tab-active:hover{border-bottom:1px solid #f1f1f1;background:#f1f1f1;color:#000}h2.nav-tab-wrapper,h3.nav-tab-wrapper{border-bottom:1px solid #ccc;padding-bottom:0;padding-left:10px}h2 .nav-tab{padding:6px 10px;font-weight:700;font-size:15px;line-height:24px}.spinner{background:url(../images/spinner.gif) no-repeat;-webkit-background-size:20px 20px;background-size:20px 20px;display:none;float:right;opacity:.7;filter:alpha(opacity=70);width:20px;height:20px;margin:2px 5px 0}#template div{margin-right:190px}.metabox-holder h3{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}#templateside ul li a{text-decoration:none}#sidemenu{margin:-30px 15px 0 315px;list-style:none;position:relative;float:right;padding-left:10px;font-size:12px}#sidemenu a{padding:0 7px;display:block;float:left;line-height:28px;border-top:1px solid #f9f9f9;border-bottom:1px solid #dfdfdf;background-color:#f9f9f9;-webkit-transition:none;transition:none}#sidemenu li{display:inline;line-height:200%;list-style:none;text-align:center;white-space:nowrap;margin:0;padding:0}#sidemenu a.current{font-weight:400;padding-left:6px;padding-right:6px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;border:1px solid #dfdfdf;border-bottom-color:#f1f1f1;background-color:#f1f1f1;color:#000}.plugin-install #description,.plugin-install-network #description{width:60%}table .column-rating,table .column-visible,table .vers{text-align:left}.error-message{color:red;font-weight:600}body.iframe{height:98%}.lp-show-latest p{display:none}.lp-show-latest .lp-error p,.lp-show-latest p:last-child{display:block}td.media-icon{text-align:center;width:80px;padding-top:8px;padding-bottom:8px}td.media-icon img{max-width:80px;max-height:60px}#howto{font-size:11px;margin:0 5px;display:block}.importers td{padding-right:14px}.importers{font-size:16px;width:auto}#post-body #post-body-content #namediv h3{margin-top:0}#namediv h3 label{vertical-align:baseline}#namediv table{width:100%}#namediv td.first{width:10px;white-space:nowrap}#namediv input{width:98%}#namediv p{margin:10px 0}#submitdiv h3{margin-bottom:0!important}.zerosize{height:0;width:0;margin:0;border:0;padding:0;overflow:hidden;position:absolute}br.clear{height:2px;line-height:2px}.checkbox{border:0;margin:0;padding:0}fieldset{border:0;padding:0;margin:0}.post-categories{display:inline;margin:0;padding:0}.post-categories li{display:inline}div.star-holder{position:relative;height:17px;width:100px;background:url(../images/stars.png?ver=20121108) repeat-x bottom left}div.star-holder .star-rating{background:url(../images/stars.png?ver=20121108) repeat-x top left;height:17px;float:left}.star-rating{white-space:nowrap}.star-rating .star{display:inline-block;width:20px;height:20px;-webkit-font-smoothing:antialiased;font-size:20px;line-height:1;font-family:dashicons;text-decoration:inherit;font-weight:400;font-style:normal;vertical-align:top;-webkit-transition:color .1s ease-in 0;transition:color .1s ease-in 0;text-align:center;color:#0074a2}.star-rating .star-full:before{content:'\f155'}.star-rating .star-half:before{content:'\f459'}.rtl .star-rating .star-half{-webkit-transform:rotateY(180deg);-ms-transform:rotateY(180deg);transform:rotateY(180deg)}.star-rating .star-empty:before{content:'\f154'}div.action-links{font-weight:400;margin:6px 0 0}#plugin-information{background:#fcfcfc;position:fixed;top:0;right:0;bottom:0;left:0;height:auto;padding:0}#plugin-information-title{padding:0 76px 0 20px;font-size:22px;font-weight:600;line-height:56px;top:0;right:0;left:0;height:56px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}#plugin-information-tabs{padding:0 16px;position:absolute;top:56px;right:0;left:0;height:36px;z-index:1}#plugin-information-tabs a{position:relative;float:left;padding:8px 10px 9px;margin:0;height:18px;line-height:18px;font-size:14px;text-decoration:none;-webkit-transition:none;transition:none}#plugin-information-tabs a.current{margin:-1px -1px 0;background:#fff;border:1px solid #ddd;border-bottom:0;color:#333}#plugin-information-tabs a:active,#plugin-information-tabs a:focus{outline:0}#plugin-information-content{background:#fff;border-top:1px solid #ddd;border-bottom:1px solid #ddd;position:absolute;top:90px;right:0;bottom:58px;left:0}#section-holder{margin:0;padding:10px 26px;position:absolute;top:0;right:250px;bottom:0;left:0;overflow:auto}#section-holder .updated{margin:16px 0}#plugin-information .fyi{background:#f3f3f3;border-left:1px solid #ddd;color:#666;padding:16px;position:absolute;top:0;right:0;bottom:0;width:217px;overflow:auto}#plugin-information .fyi strong{color:#464646}#plugin-information .fyi h3{font-weight:700;text-transform:uppercase;font-size:12px;color:#666;margin:24px 0 8px}#plugin-information .fyi h2{font-size:.9em;margin-bottom:0;margin-right:0}#plugin-information .fyi ul{padding:0;margin:0;list-style:none}#plugin-information .fyi li{margin:0 0 10px}#plugin-information-footer{padding:15px 16px;position:absolute;right:0;bottom:0;left:0;height:28px}#plugin-information .section ol,#plugin-information .section ul{list-style-type:disc;margin-left:24px}#plugin-information .section,#plugin-information .section p{font-size:14px;line-height:1.7}#plugin-information #section-screenshots ol{list-style:none;margin:0}#plugin-information #section-screenshots li img{vertical-align:text-top;margin-top:16px;max-width:100%;width:auto;height:auto;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.3);box-shadow:0 1px 2px rgba(0,0,0,.3)}#plugin-information #section-screenshots li p{font-style:italic;padding-left:20px}#plugin-information pre{padding:7px;overflow:auto;border:1px solid #ccc}.plugin-version-author-uri{font-size:13px}@media screen and (max-width:782px){#plugin-information-content{overflow:auto;bottom:58px}#plugin-information .fyi{border:1px solid #ddd;position:static;width:auto;margin:26px 26px 16px}#section-holder{position:static}#plugin-information .fyi h3,#plugin-information .fyi small{display:none}#plugin-information-footer{padding:12px 16px 0;height:46px}}body.import-php #TB_window,body.index-php #TB_window,body.plugin-install-php #TB_window,body.plugins-php #TB_window,body.update-core-php #TB_window{background:#fcfcfc url( ../images/spinner.gif ) no-repeat center}@media print,(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){body.import-php #TB_window,body.index-php #TB_window,body.plugin-install-php #TB_window,body.plugins-php #TB_window,body.update-core-php #TB_window{background:#fcfcfc url( ../images/spinner-2x.gif ) no-repeat center;-webkit-background-size:20px 20px;background-size:20px 20px}}body.import-php #TB_title,body.index-php #TB_title,body.plugin-install-php #TB_title,body.plugins-php #TB_title,body.update-core-php #TB_title{float:left;height:1px}body.import-php #TB_ajaxWindowTitle,body.index-php #TB_ajaxWindowTitle,body.plugin-install-php #TB_ajaxWindowTitle,body.plugins-php #TB_ajaxWindowTitle,body.update-core-php #TB_ajaxWindowTitle{display:none}body.import-php .tb-close-icon,body.index-php .tb-close-icon,body.plugin-install-php .tb-close-icon,body.plugins-php .tb-close-icon,body.update-core-php .tb-close-icon{line-height:48px;width:48px;height:48px}body.import-php .tb-close-icon:before,body.index-php .tb-close-icon:before,body.plugin-install-php .tb-close-icon:before,body.plugins-php .tb-close-icon:before,body.update-core-php .tb-close-icon:before{line-height:48px}img{border:0}#wphead{border-bottom:1px solid #dfdfdf}#wphead h1 a{color:#464646}.js .meta-box-sortables .postbox:hover .handlediv{margin-right:0!important}.js .meta-box-sortables .postbox .handlediv:before,.js .sidebar-name .sidebar-name-arrow:before{right:12px;font:400 20px/1 dashicons;speak:none;display:inline-block;padding:8px 10px;top:0;position:relative;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important}.js #widgets-left .sidebar-name .sidebar-name-arrow{display:none}.js #widgets-left .sidebar-name:hover .sidebar-name-arrow,.js #widgets-left .widgets-holder-wrap.closed .sidebar-name .sidebar-name-arrow{display:block}.js .meta-box-sortables .postbox .handlediv:before,.js .sidebar-name .sidebar-name-arrow:before{content:'\f142'}.js .meta-box-sortables .postbox.closed .handlediv:before,.js .widgets-holder-wrap.closed .sidebar-name-arrow:before{content:'\f140'}.error a{text-decoration:underline}.updated a{text-decoration:none;padding-bottom:2px}#photo-add-url-div input[type=text]{width:300px}.alignleft h3{margin:0}#template textarea{font-family:Consolas,Monaco,monospace;font-size:13px;width:97%;background:#f9f9f9;outline:0}#docs-list,#template textarea{direction:ltr}#template p{width:97%}#templateside{float:right;width:190px;word-wrap:break-word}#postcustomstuff p.submit,#templateside h3{margin:0}#templateside h4{margin:1em 0 0}#templateside ol,#templateside ul{margin:.5em 0;padding:0}#templateside li{margin:4px 0}#templateside a,.theme-editor-php .highlight{display:block;padding:3px 3px 3px 12px;text-decoration:none}.theme-editor-php .highlight{margin:-3px 3px -3px -12px}#templateside .highlight{border:0;font-weight:700}.nonessential{color:#666;font-size:11px;font-style:italic;padding-left:12px}#documentation{margin-top:10px}#documentation label{line-height:22px;vertical-align:baseline;font-weight:600}.fileedit-sub{padding:10px 0 8px;line-height:180%}.accordion-section-title:after,.control-section .accordion-section-title:after,.nav-menus-php .item-edit:before,.widget-top a.widget-action:after{right:0;content:'\f140';border:0;background:0 0;font:400 20px/1 dashicons;speak:none;display:block;padding:0;text-indent:0;text-align:center;position:relative;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important}.accordion-section-title:after,.handlediv,.item-edit,.sidebar-name-arrow,.widget-action{color:#aaa}.accordion-section-title:hover:after,.handlediv:hover,.item-edit:hover,.sidebar-name:hover .sidebar-name-arrow,.widget-action:hover{color:#777}.widget-top a.widget-action:after{padding:12px 12px 0}.nav-menus-php .item-edit:before{line-height:2.1}.accordion-section-title:after,.control-section .accordion-section-title:after{float:right;right:20px;top:-2px}#customize-info.open .accordion-section-title:after,.control-section.open .accordion-section-title:after,.nav-menus-php .menu-item-edit-active .item-edit:before{content:'\f142'}.ui-draggable,.ui-sortable{-ms-touch-action:none;touch-action:none}.menu.ui-sortable,.meta-box-sortables.ui-sortable,.widgets-holder-wrap .ui-draggable,.widgets-holder-wrap .ui-sortable{-ms-touch-action:auto;touch-action:auto}.menu.ui-sortable .menu-item-handle,.meta-box-sortables.ui-sortable .hndle{-ms-touch-action:none;touch-action:none}.accordion-section{border-bottom:1px solid #dfdfdf;margin:0}.accordion-section.open .accordion-section-content,.no-js .accordion-section .accordion-section-content{display:block}.accordion-section.open:hover{border-bottom-color:#dfdfdf}.accordion-section-content{display:none;padding:10px 20px 15px;overflow:hidden;background:#fff}.accordion-section-title{margin:0;padding:12px 15px 15px;position:relative;border-left:1px solid #dfdfdf;border-right:1px solid #dfdfdf;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.js .accordion-section-title{cursor:pointer}.js .accordion-section-title:after{position:absolute;top:12px;right:10px;z-index:1}.accordion-section-title:focus{outline:0}.accordion-section-title:focus:after,.accordion-section-title:hover:after{border-color:#aaa transparent}.cannot-expand .accordion-section-title{cursor:auto}.cannot-expand .accordion-section-title:after{display:none}.control-section .accordion-section-title{border-left:0;border-right:0;padding:10px 10px 11px 14px;line-height:21px;background:#fff}.control-section .accordion-section-title:after{top:11px}.js .control-section .accordion-section-title:focus,.js .control-section .accordion-section-title:hover,.js .control-section.open .accordion-section-title,.js .control-section:hover .accordion-section-title{color:#222;background:#f5f5f5}.control-section.open .accordion-section-title{border-bottom:1px solid #dfdfdf}@media only screen and (min-width:769px){#col-left{width:35%}#col-right{width:65%}}@media only screen and (max-width:860px){#col-left{width:35%}#col-right{width:65%}}@media only screen and (min-width:980px){#col-left{width:35%}#col-right{width:65%}}@media only screen and (max-width:768px){#col-left,#col-right{width:100%}}@media print,(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){div.star-holder,div.star-holder .star-rating{background:url(../images/stars-2x.png?ver=20121108) repeat-x bottom left;-webkit-background-size:21px 37px;background-size:21px 37px}.spinner{background-image:url(../images/spinner-2x.gif)}#bulk-titles div a,#bulk-titles div a:hover,#screen-meta-links a.show-settings,.curtime #timestamp,.meta-box-sortables .postbox:hover .handlediv,.sidebar-name-arrow,.sidebar-name:hover .sidebar-name-arrow,.tagchecklist span a,.tagchecklist span a:hover,.widget-top a.widget-action,.widget-top a.widget-action:hover{background:none!important}}@-ms-viewport{width:device-width}@media screen and (max-width:782px){html.wp-toolbar{padding-top:46px}body{min-width:240px;overflow-x:hidden}body *{-webkit-tap-highlight-color:rgba(0,0,0,0)!important}#wpwrap{background:#f0f0f0}#wpcontent{position:relative;margin-left:0;padding-left:10px}#wpbody-content{padding-bottom:100px}.wrap{margin-right:12px;margin-left:0}.col-wrap{padding:0}#collapse-menu,#screen-meta,#screen-meta-links,.post-format-select{display:none!important}.wrap .add-new-h2,.wrap .add-new-h2:active{padding:10px 15px;font-size:14px}.wp-color-result{height:auto;padding-left:45px}.wp-color-result:after{font-size:14px;height:auto;padding:6px 14px}.media-upload-form div.error,.wrap div.error,.wrap div.updated{margin:20px 0 10px;padding:5px 10px;font-size:14px;line-height:175%}.wrap .icon32+h2{margin-top:-2px}.wp-responsive-open #wpbody{right:-190px}.postbox{font-size:14px}.metabox-holder h3{padding:12px}.postbox .handlediv{margin-top:3px}.subsubsub{font-size:16px;text-align:center;margin-bottom:15px}#templateside{float:none;width:auto}#templateside li{margin:0}#templateside li a{display:block;padding:5px}#templateside .highlight{padding:5px;margin-left:-5px;margin-top:-5px}#template div{float:none;margin:0;width:auto}#template textarea{width:100%}.fileedit-sub .alignright{margin-top:15px}#comments-form .checkforspam,#wpfooter{display:none}}@media screen and (max-width:600px){#wpwrap.wp-responsive-open{overflow-x:hidden}html.wp-toolbar{padding-top:0}#wpbody{padding-top:46px}div#post-body.metabox-holder.columns-1{overflow-x:hidden}}input,input[type=email],input[type=number],input[type=password],input[type=search],input[type=text],input[type=url],textarea{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=email],input[type=url]{direction:ltr}input[type=checkbox],input[type=radio]{border:1px solid #bbb;background:#fff;color:#555;clear:none;cursor:pointer;display:inline-block;line-height:0;height:16px;margin:-4px 4px 0 0;outline:0;padding:0!important;text-align:center;vertical-align:middle;width:16px;min-width:16px;-webkit-appearance:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);-webkit-transition:.05s border-color ease-in-out;transition:.05s border-color ease-in-out}input[type=radio]:checked+label:before{color:#888}.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:hover{color:#2ea2cc}.wp-admin p input[type=checkbox],.wp-admin p input[type=radio],td>input[type=checkbox]{margin-top:0}.wp-admin p label input[type=checkbox]{margin-top:-4px}.wp-admin p label input[type=radio]{margin-top:-2px}input[type=radio]{-webkit-border-radius:50%;border-radius:50%;margin-right:4px;line-height:10px}input[type=checkbox]:checked:before,input[type=radio]:checked:before{float:left;display:inline-block;vertical-align:middle;width:16px;font:400 21px/1 dashicons;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}input[type=checkbox]:checked:before{content:'\f147';margin:-3px 0 0 -4px;color:#1e8cbe}input[type=radio]:checked:before{content:'\2022';text-indent:-9999px;-webkit-border-radius:50px;border-radius:50px;font-size:24px;width:6px;height:6px;margin:4px;line-height:16px;background-color:#1e8cbe}input.readonly,textarea.readonly{background-color:#ddd}@-moz-document url-prefix(){.form-table input.tog,input[type=checkbox],input[type=radio]{margin-bottom:-1px}}input[type=search]{-webkit-appearance:textfield}input[type=search]::-webkit-search-decoration{display:none}.ie8 input[type=password]{font-family:sans-serif}button,input,select,textarea{font-family:inherit;font-size:inherit;font-weight:inherit}input,select,textarea{font-size:14px;padding:3px 5px;line-height:15px;-webkit-border-radius:0;border-radius:0}textarea{overflow:auto;padding:2px 6px;line-height:1.4}input[type=email],input[type=number],input[type=password],input[type=search],input[type=text],input[type=url],select,textarea{outline:0}.wp-admin input[type=file]{padding:3px 0}label{cursor:pointer}input,select{margin:1px;padding:3px 5px}input.code{padding-top:6px}textarea.code{line-height:1.4;padding:4px 6px 1px}input[type=email],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],select,textarea{border:1px solid #ddd;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.07);box-shadow:inset 0 1px 2px rgba(0,0,0,.07);background-color:#fff;color:#333;-webkit-transition:.05s border-color ease-in-out;transition:.05s border-color ease-in-out}select[disabled]{color:#7f7f7f}input[type=checkbox]:focus,input[type=email]:focus,input[type=number]:focus,input[type=password]:focus,input[type=radio]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,select:focus,textarea:focus{border-color:#5b9dd9;-webkit-box-shadow:0 0 2px rgba(30,140,190,.8);box-shadow:0 0 2px rgba(30,140,190,.8)}input[readonly]{background-color:#eee}.wp-core-ui :-moz-placeholder,:-moz-placeholder{color:#a9a9a9}.form-invalid{background-color:#ffebe8!important}.form-invalid input,.form-invalid select{border-color:#c00!important}.form-input-tip{color:#666}input.disabled,input:disabled,textarea.disabled,textarea:disabled{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.04);box-shadow:inset 0 1px 2px rgba(0,0,0,.04);border-color:rgba(222,222,222,.75);background:rgba(255,255,255,.5);color:rgba(51,51,51,.5)}input[type=checkbox]:disabled,input[type=checkbox]:disabled:checked:before,input[type=radio]:disabled,input[type=radio]:disabled:checked:before{opacity:.7}.wp-admin select{padding:2px;line-height:28px;height:28px;vertical-align:middle}.wp-admin .button-cancel{padding:0 5px;line-height:2}.meta-box-sortables select{max-width:100%}.wp-admin select[multiple]{height:auto}.submit{padding:1.5em 0;margin:5px 0;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;border:0}form p.submit a.cancel:hover{text-decoration:none}p.submit{text-align:left;max-width:100%;margin-top:20px;padding-top:10px}.textright p.submit{border:0;text-align:right}table.form-table+input+input+p.submit,table.form-table+input+p.submit,table.form-table+p.submit{border-top:0;padding-top:0}#major-publishing-actions input,#minor-publishing-actions .preview,#minor-publishing-actions input{text-align:center}input.all-options,textarea.all-options{width:250px}input.large-text,textarea.large-text{width:99%}#adduser .form-field input,input.regular-text{width:25em}input.small-text{width:50px;padding:1px 6px}input[type=number].small-text{width:65px}#doaction,#doaction2,#post-query-submit{margin:1px 8px 0 0}.tablenav #changeit,.tablenav #clear-recent-list,.tablenav #delete_all{margin-top:1px}.tablenav .actions select{float:left;margin-right:6px;max-width:200px}.ie8 .tablenav .actions select{width:155px}.ie8 .tablenav .actions select#cat{width:200px}#timezone_string option{margin-left:1em}#upload-form label{color:#777}#your-profile label+a,fieldset label,label{vertical-align:middle}#misc-publishing-actions label,.options-media-php label[for*="_size_"]{vertical-align:baseline}#misc-publishing-actions label[for=post_status]:before{content:'\f173';display:inline-block;font:400 20px/1 dashicons;speak:none;left:-1px;padding:0 5px 0 0;position:relative;top:0;text-decoration:none!important;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#pass-strength-result{background-color:#eee;border:1px solid #ddd;float:left;margin:13px 5px 5px 1px;padding:3px 5px;text-align:center;width:200px;display:none}#pass-strength-result.short{background-color:#ffa0a0;border-color:#f04040}#pass-strength-result.bad{background-color:#ffb78c;border-color:#ff853c}#pass-strength-result.good{background-color:#ffec8b;border-color:#fc0}#pass-strength-result.strong{background-color:#c3ff88;border-color:#8dff1c}.indicator-hint{padding-top:8px}p.search-box{float:right;margin:0}.network-admin.themes-php p.search-box{clear:left}#search-plugins input[name="s"],.search-box input[name="s"],.tagsdiv .newtag{float:left;height:28px;margin:0 4px 0 0}input[type=text].ui-autocomplete-loading{background:transparent url(../images/loading.gif) no-repeat right center;visibility:visible}ul#add-to-blog-users{margin:0 0 0 14px}.ui-autocomplete-input.open{-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0}.ui-autocomplete{padding:0;margin:0;list-style:none;position:absolute;z-index:10000;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;border:1px solid #aaa;background-color:#efefef}.ui-autocomplete li{margin-bottom:0;white-space:nowrap;text-align:left}.ui-autocomplete li a{display:block;height:100%;padding:4px 10px;color:#444}.ui-autocomplete li a.ui-state-focus{background-color:#ddd;cursor:pointer}.form-table{border-collapse:collapse;margin-top:.5em;width:100%;clear:both}.form-table,.form-table td,.form-table td p,.form-table th,.form-wrap label{font-size:14px}.form-table td{margin-bottom:9px;padding:15px 10px;line-height:1.3;vertical-align:middle}.form-table th,.form-wrap label{color:#222;font-weight:400;text-shadow:none;vertical-align:baseline}.form-table th{vertical-align:top;text-align:left;padding:20px 10px 20px 0;width:200px;line-height:1.3;font-weight:600}.form-table th.th-full{width:auto;font-weight:400}.form-table td p{margin-top:4px;margin-bottom:0}.form-table td fieldset label{margin:.25em 0 .5em!important;display:inline-block}.form-table td fieldset label,.form-table td fieldset li,.form-table td fieldset p{line-height:1.4em}.form-table input.tog,.form-table input[type=radio]{margin-top:-4px;margin-right:4px;float:none}.form-table .pre{padding:8px;margin:0}table.form-table td .updated{font-size:13px}#profile-page .form-table textarea{width:500px;margin-bottom:6px}#profile-page .form-table #rich_editing{margin-right:5px}#your-profile legend{font-size:22px}#display_name{width:15em}#createuser .form-field input{width:25em}.color-option{display:inline-block;width:24%;padding:5px 15px 15px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin-bottom:3px}.color-option.selected,.color-option:hover{background:#ddd}.color-palette{width:100%;border-spacing:0;border-collapse:collapse}.color-palette td{height:20px;padding:0;border:0}.color-option{cursor:pointer}.tool-box .title{margin:8px 0;font-size:18px;font-weight:400;line-height:24px}.pressthis{margin:20px 0}.pressthis a,.pressthis a:active,.pressthis a:focus,.pressthis a:hover{display:inline-block;position:relative;cursor:move;color:#333;background:#e6e6e6;-webkit-border-radius:5px;border-radius:5px;border:1px solid #b4b4b4;font-style:normal;line-height:16px;font-size:14px;text-decoration:none}.pressthis a:active{outline:0}.pressthis a:hover:after{-webkit-transform:skew(20deg) rotate(9deg);-ms-transform:skew(20deg) rotate(9deg);transform:skew(20deg) rotate(9deg);-webkit-box-shadow:0 10px 8px rgba(0,0,0,.7);box-shadow:0 10px 8px rgba(0,0,0,.7)}.pressthis a span{display:inline-block;margin:0;padding:0 12px 8px 9px}.pressthis a span:before{color:#777;font:400 20px/1 dashicons;content:'\f157';position:relative;display:inline-block;top:4px;margin-right:4px}.pressthis a:after{content:'';width:70%;height:55%;z-index:-1;position:absolute;right:10px;bottom:9px;background:0 0;-webkit-transform:skew(20deg) rotate(6deg);-ms-transform:skew(20deg) rotate(6deg);transform:skew(20deg) rotate(6deg);-webkit-box-shadow:0 10px 8px rgba(0,0,0,.6);box-shadow:0 10px 8px rgba(0,0,0,.6)}#local-time,#utc-time{padding-left:25px;font-style:italic}.defaultavatarpicker .avatar{margin:2px 0;vertical-align:middle}.options-general-php .spinner{float:none;margin:-3px 3px}@media screen and (max-width:782px){textarea{-webkit-appearance:none}input[type=number],input[type=password],input[type=search],input[type=text]{-webkit-appearance:none;padding:6px 10px}input.code{padding-bottom:5px;padding-top:10px}.widefat th input[type=checkbox],input[type=checkbox]{-webkit-appearance:none;padding:10px}.widefat th input[type=checkbox]{margin-bottom:8px}.widefat th input[type=checkbox]:before,input[type=checkbox]:checked:before{font:400 30px/1 Dashicons;margin:-3px -5px}input[type=checkbox],input[type=radio]{height:25px;width:25px}.wp-admin p input[type=checkbox],.wp-admin p input[type=radio]{margin-top:-3px}input[type=radio]:checked:before{vertical-align:middle;width:9px;height:9px;margin:7px;line-height:16px}.wp-upload-form input[type=submit]{margin-top:10px}#wpbody select{height:36px;font-size:16px}.wp-admin .button-cancel{padding:0;font-size:14px}#createuser .form-field input{width:100%}.form-table{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.form-table td,.form-table th{display:block;width:auto;vertical-align:middle}.form-table .color-palette td{display:table-cell;width:15px}.form-table table.color-palette{margin-right:10px}input,textarea{font-size:16px}#profile-page .form-table textarea,.form-table span.description,.form-table td input[type=password],.form-table td input[type=text],.form-table td select,.form-table td textarea{width:100%;font-size:16px;line-height:1.5;padding:7px 10px;display:block;max-width:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.form-table input[type=text].small-text,input[type=number].small-text,input[type=password].small-text,input[type=search].small-text,input[type=text].small-text{width:auto;max-width:55px;display:inline;padding:3px 6px;margin:0 3px}#pass-strength-result{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:8px}p.search-box{float:none;position:absolute;bottom:0;width:98%;height:90px;margin-bottom:20px}p.search-box input[name="s"]{height:auto;float:none;width:100%;margin-bottom:10px;vertical-align:middle;-webkit-appearance:none}p.search-box input[type=submit]{margin-bottom:10px}.form-table span.description{padding:4px 0 0;line-height:1.4em}.form-table th{padding-top:10px;padding-bottom:0;border-bottom:0}.form-table td{padding-top:8px;padding-left:0}.form-table input.regular-text{width:100%}.form-table label{font-size:14px}.form-table fieldset label{display:block}#utc-time{margin-top:10px}#local-time,#utc-time{display:block;float:none;padding:0;line-height:2}}@media only screen and (max-width:768px){.form-field input,.form-field textarea{width:99%}.form-wrap .form-field{padding:0}#profile-page .form-table textarea{max-width:400px;width:auto}}@media screen and (max-width:600px){.color-option{width:49%}}#adminmenu,#adminmenu .wp-submenu,#adminmenuback,#adminmenuwrap{width:160px;background-color:#222}#adminmenuback{position:absolute;top:0;bottom:0;z-index:-1}#adminmenu{clear:left;margin:12px 0 0;padding:0;list-style:none}.folded #adminmenu,.folded #adminmenu li.menu-top,.folded #adminmenuback,.folded #adminmenuwrap{width:36px}.icon16{height:18px;width:18px;padding:6px;margin:-6px 0 0 -8px;float:left}.icon16:before{color:#999;font:400 20px/1 dashicons;speak:none;padding:6px 0;height:34px;width:20px;display:inline-block;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}.icon16.icon-dashboard:before{content:'\f226'}.icon16.icon-post:before{content:'\f109'}.icon16.icon-media:before{content:'\f104'}.icon16.icon-links:before{content:'\f103'}.icon16.icon-page:before{content:'\f105'}.icon16.icon-comments:before{content:'\f101';margin-top:1px}.icon16.icon-appearance:before{content:'\f100'}.icon16.icon-plugins:before{content:'\f106'}.icon16.icon-users:before{content:'\f110'}.icon16.icon-tools:before{content:'\f107'}.icon16.icon-settings:before{content:'\f108'}.icon16.icon-site:before{content:'\f112'}.icon16.icon-generic:before{content:'\f111'}.icon16.icon-appearance,.icon16.icon-comments,.icon16.icon-dashboard,.icon16.icon-generic,.icon16.icon-links,.icon16.icon-media,.icon16.icon-page,.icon16.icon-plugins,.icon16.icon-post,.icon16.icon-settings,.icon16.icon-site,.icon16.icon-tools,.icon16.icon-users,.menu-icon-appearance div.wp-menu-image,.menu-icon-comments div.wp-menu-image,.menu-icon-dashboard div.wp-menu-image,.menu-icon-generic div.wp-menu-image,.menu-icon-links div.wp-menu-image,.menu-icon-media div.wp-menu-image,.menu-icon-page div.wp-menu-image,.menu-icon-plugins div.wp-menu-image,.menu-icon-post div.wp-menu-image,.menu-icon-settings div.wp-menu-image,.menu-icon-site div.wp-menu-image,.menu-icon-tools div.wp-menu-image,.menu-icon-users div.wp-menu-image{background-image:none!important}#adminmenuwrap{position:relative;float:left}#adminmenu *{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#adminmenu li{margin:0;padding:0;cursor:pointer}#adminmenu a{display:block;line-height:18px;padding:2px 5px;color:#eee}#adminmenu .wp-submenu a{color:#bbb}#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover{background:0 0}#adminmenu .wp-submenu a:focus,#adminmenu .wp-submenu a:hover,#adminmenu a:hover,#adminmenu li.menu-top>a:focus{color:#2ea2cc}#adminmenu li.menu-top{border:0;min-height:34px;position:relative}#adminmenu .wp-submenu{list-style:none;position:absolute;top:-1000em;left:160px;overflow:visible;word-wrap:break-word}#adminmenu .wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu,.folded #adminmenu a.wp-has-current-submenu:focus+.wp-submenu{padding:7px 0 8px;z-index:9999;background-color:#333;-webkit-box-shadow:0 3px 5px rgba(0,0,0,.2);box-shadow:0 3px 5px rgba(0,0,0,.2)}#adminmenu a.menu-top:focus+.wp-submenu,.js #adminmenu .opensub .wp-submenu,.js #adminmenu .sub-open,.no-js li.wp-has-submenu:hover .wp-submenu{top:-1px}#adminmenu .wp-has-current-submenu .wp-submenu,#adminmenu .wp-has-current-submenu .wp-submenu.sub-open,#adminmenu .wp-has-current-submenu.opensub .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu,.no-js li.wp-has-current-submenu:hover .wp-submenu{position:relative;z-index:3;top:auto;left:auto;right:auto;bottom:auto;border:0 none;margin-top:0;-webkit-box-shadow:none;box-shadow:none;background-color:#333}#adminmenu li.menu-top:hover,#adminmenu li.opensub>a.menu-top,#adminmenu li>a.menu-top:focus{position:relative;background-color:#111}.folded #adminmenu li.menu-top:hover,.folded #adminmenu li.opensub>a.menu-top,.folded #adminmenu li>a.menu-top:focus{z-index:10000}#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head,#adminmenu .wp-menu-arrow,#adminmenu .wp-menu-arrow div,#adminmenu li.current a.menu-top,#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,.folded #adminmenu li.current.menu-top,.folded #adminmenu li.wp-has-current-submenu{background:#0074a2;color:#fff}.folded #adminmenu .opensub .wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,.folded #adminmenu .wp-has-current-submenu a.menu-top:focus+.wp-submenu,.folded #adminmenu .wp-has-current-submenu.opensub .wp-submenu,.folded #adminmenu .wp-submenu.sub-open,.folded #adminmenu a.menu-top:focus+.wp-submenu,.no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu{top:0;left:36px}.folded #adminmenu .wp-has-current-submenu .wp-submenu,.folded #adminmenu a.wp-has-current-submenu:focus+.wp-submenu{position:absolute;top:-1000em}#adminmenu .wp-not-current-submenu .wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu{min-width:160px;width:auto}#adminmenu .wp-submenu a{font-size:13px;line-height:1.2;margin:0;padding:6px 0}#adminmenu .opensub .wp-submenu li.current a,#adminmenu .wp-submenu li.current,#adminmenu .wp-submenu li.current a,#adminmenu .wp-submenu li.current a:focus,#adminmenu .wp-submenu li.current a:hover,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu li.current a{color:#fff}#adminmenu .wp-not-current-submenu li>a,.folded #adminmenu .wp-has-current-submenu li>a{padding-right:16px;padding-left:14px;-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}#adminmenu .wp-has-current-submenu ul>li>a,.folded #adminmenu li.menu-top .wp-submenu>li>a{padding:6px 12px}#adminmenu .wp-submenu-head,#adminmenu a.menu-top{font-size:14px;font-weight:400;line-height:18px;padding:0}#adminmenu .wp-submenu-head,.folded #adminmenu .wp-menu-name{display:none}.folded #adminmenu .wp-submenu-head{display:block}#adminmenu .wp-submenu li{padding:0;margin:0;overflow:hidden}#adminmenu .wp-menu-image img{padding:9px 0 0;opacity:.6;filter:alpha(opacity=60)}#adminmenu div.wp-menu-name{padding:8px 0}#adminmenu div.wp-menu-image{float:left;width:36px;height:34px;margin:0;text-align:center}#adminmenu div.wp-menu-image.svg{background-repeat:no-repeat;background-position:center;-webkit-background-size:20px auto;background-size:20px auto}div.wp-menu-image:before{color:#999;padding:7px 0;-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}#adminmenu div.wp-menu-image:before{color:#999}#adminmenu .current div.wp-menu-image:before,#adminmenu .wp-has-current-submenu div.wp-menu-image:before,#adminmenu a.current:hover div.wp-menu-image:before,#adminmenu a.wp-has-current-submenu:hover div.wp-menu-image:before,#adminmenu li.wp-has-current-submenu:hover div.wp-menu-image:before{color:#fff}#adminmenu li:hover div.wp-menu-image:before{color:#2ea2cc}.folded #adminmenu div.wp-menu-image{width:35px;height:30px;position:absolute;z-index:25}.folded #adminmenu a.menu-top{height:34px}.no-font-face #adminmenu .wp-menu-image{display:none}.no-font-face #adminmenu div.wp-menu-name{padding:8px 12px}.no-font-face.auto-fold #adminmenu .wp-menu-name{margin-left:0}.sticky-menu #adminmenuwrap{position:fixed;z-index:9999}.wp-menu-arrow{display:none!important}ul#adminmenu a.wp-has-current-submenu{position:relative}ul#adminmenu a.wp-has-current-submenu:after,ul#adminmenu>li.current>a.current:after{right:0;border:solid 8px transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none;border-right-color:#f1f1f1;top:50%;margin-top:-8px}.folded ul#adminmenu li:hover a.wp-has-current-submenu:after{display:none}.folded ul#adminmenu a.wp-has-current-submenu:after,.folded ul#adminmenu>li a.current:after{border-width:4px;margin-top:-4px}#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after{right:0;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none;border-width:8px;top:10px;z-index:10000}.folded ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after{border-width:4px;margin-top:-4px;top:18px}#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after{border-right-color:#333}#adminmenu li.menu-top:hover .wp-menu-image img,#adminmenu li.wp-has-current-submenu .wp-menu-image img{opacity:1;filter:alpha(opacity=100)}#adminmenu li.wp-menu-separator{height:5px;padding:0;margin:0 0 6px;cursor:inherit}#adminmenu div.separator{height:2px;padding:0}#adminmenu .wp-submenu .wp-submenu-head{color:#fff;font-weight:400;font-size:14px;padding:8px 4px 8px 11px;margin:-7px 0 4px}#adminmenu li.current,.folded #adminmenu li.wp-menu-open{border:0 none}#adminmenu .awaiting-mod,#adminmenu .update-plugins,#sidemenu li a span.update-plugins{display:inline-block;background-color:#d54e21;color:#fff;font-size:9px;line-height:17px;font-weight:600;margin:1px 0 0 2px;vertical-align:top;-webkit-border-radius:10px;border-radius:10px;z-index:26}#adminmenu li .awaiting-mod span,#adminmenu li span.update-plugins span,#sidemenu li a span.update-plugins span{display:block;padding:0 6px}#adminmenu li a.wp-has-current-submenu .update-plugins,#adminmenu li.current a .awaiting-mod{background-color:#2ea2cc;color:#fff}#adminmenu li span.count-0,#sidemenu li a .count-0{display:none}#collapse-menu{font-size:13px;line-height:34px;margin-top:10px;color:#aaa;-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}#collapse-menu:hover,#collapse-menu:hover #collapse-button div:after{color:#2ea2cc}.folded #collapse-menu span{display:none}#collapse-button,#collapse-button div{width:15px;height:15px}#collapse-button{float:left;height:15px;margin:10px 8px 10px 11px;width:15px;-webkit-border-radius:10px;border-radius:10px}#wpwrap #collapse-button div{padding:0}#collapse-button div:after{content:'\f148';display:block;line-height:15px;left:-3px;top:-3px;color:#aaa;font:400 20px/1 dashicons!important;speak:none;margin:0 auto;padding:0!important;position:relative;text-align:center;width:20px;-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.folded #collapse-button div:after,.rtl #collapse-button div:after{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.rtl.folded #collapse-button div:after{-webkit-transform:none;-ms-transform:none;transform:none}li#wp-admin-bar-menu-toggle{display:none}@media only screen and (max-width:900px){.auto-fold #wpcontent,.auto-fold #wpfooter{margin-left:56px}.auto-fold #adminmenu,.auto-fold #adminmenu li.menu-top,.auto-fold #adminmenuback,.auto-fold #adminmenuwrap{width:36px}.auto-fold #adminmenu .opensub .wp-submenu,.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,.auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus+.wp-submenu,.auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu,.auto-fold #adminmenu .wp-submenu.sub-open,.auto-fold #adminmenu a.menu-top:focus+.wp-submenu{top:0;left:36px}.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu,.auto-fold #adminmenu a.wp-has-current-submenu:focus+.wp-submenu{position:absolute;top:-1000em;margin-right:-1px;padding:7px 0 8px;z-index:9999}.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu{min-width:150px;width:auto}.auto-fold #adminmenu .wp-has-current-submenu li>a{padding-right:16px;padding-left:14px}.auto-fold #adminmenu li.menu-top .wp-submenu>li>a{padding-left:12px}.auto-fold #adminmenu .wp-menu-name{display:none}.auto-fold #adminmenu .wp-submenu-head{display:block}.auto-fold #adminmenu div.wp-menu-image{height:30px;width:34px;position:absolute;z-index:25}.auto-fold #adminmenu a.menu-top{height:34px}.auto-fold #adminmenu li.wp-menu-open{border:0 none}.auto-fold #adminmenu .wp-has-current-submenu.menu-top-last{margin-bottom:0}.auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after{display:none}.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after{border-width:4px;margin-top:-4px;top:16px}.auto-fold ul#adminmenu a.wp-has-current-submenu:after,.auto-fold ul#adminmenu>li a.current:after{border-width:4px;margin-top:-4px}.auto-fold #adminmenu li.menu-top:hover,.auto-fold #adminmenu li.opensub>a.menu-top,.auto-fold #adminmenu li>a.menu-top:focus{z-index:10000}.auto-fold #collapse-menu span{display:none}.auto-fold #collapse-button div{background:0 0}.auto-fold #collapse-button div:after{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.rtl.auto-fold #collapse-button div:after{-webkit-transform:none;-ms-transform:none;transform:none}}@media screen and (max-width:782px){.auto-fold #wpcontent{position:relative;margin-left:0;padding-left:10px}.sticky-menu #adminmenuwrap{position:relative;z-index:auto;top:0}.auto-fold #adminmenu,.auto-fold #adminmenuback,.auto-fold #adminmenuwrap{position:absolute;width:190px;z-index:100}.auto-fold #adminmenuback,.auto-fold #adminmenuwrap{display:none}.auto-fold .wp-responsive-open #adminmenuback,.auto-fold .wp-responsive-open #adminmenuwrap{display:block}.auto-fold #adminmenu li.menu-top{width:100%}.auto-fold #adminmenu li a{font-size:16px;padding:5px}.auto-fold #adminmenu li.menu-top .wp-submenu>li>a{padding:10px 10px 10px 20px}.auto-fold #adminmenu .wp-menu-name{display:block;margin-left:35px}.auto-fold ul#adminmenu a.wp-has-current-submenu:after,.auto-fold ul#adminmenu>li.current>a.current:after{border-width:8px;margin-top:-8px}.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after{display:none}#adminmenu .wp-submenu{position:relative;display:none}.auto-fold #adminmenu .selected .wp-submenu,.auto-fold #adminmenu .wp-menu-open .wp-submenu{position:relative;display:block;top:0;left:-1px;-webkit-box-shadow:none;box-shadow:none}.auto-fold #adminmenu .opensub .wp-submenu,.auto-fold #adminmenu .selected .wp-submenu:after,.auto-fold #adminmenu .wp-menu-open .wp-submenu:after{display:none}.auto-fold #adminmenu .selected .wp-submenu,.auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after{display:block}.auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus+.wp-submenu,.auto-fold #adminmenu a.menu-top:focus+.wp-submenu{position:relative;left:-1px;right:0;top:0}#adminmenu .wp-submenu .wp-submenu-head{display:none}#wp-responsive-toggle{position:fixed;top:5px;left:4px;padding-right:10px;z-index:99999;border:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#wpadminbar #wp-admin-bar-menu-toggle a{display:block;padding:0;overflow:hidden;outline:0;text-decoration:none;border:1px solid transparent;background:0 0;height:44px;margin-left:-1px}.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a{background:#333}li#wp-admin-bar-menu-toggle{display:block}#wpadminbar #wp-admin-bar-menu-toggle a:hover{border:1px solid transparent}#wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before{content:'\f228';display:inline-block;float:left;font:400 40px/45px Dashicons;vertical-align:middle;outline:0;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;height:44px;width:50px;padding:0;border:0;text-align:center;text-decoration:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}}@media screen and (max-width:600px){#adminmenuback,#adminmenuwrap{display:none}.wp-responsive-open #adminmenuback,.wp-responsive-open #adminmenuwrap{display:block}.auto-fold #adminmenu{top:46px}}#wpbody-content #dashboard-widgets.columns-1 .postbox-container{width:100%}#wpbody-content #dashboard-widgets.columns-2 .postbox-container{width:49.5%}#wpbody-content #dashboard-widgets.columns-2 #postbox-container-2,#wpbody-content #dashboard-widgets.columns-2 #postbox-container-3,#wpbody-content #dashboard-widgets.columns-2 #postbox-container-4{float:right;width:50.5%}#wpbody-content #dashboard-widgets.columns-3 .postbox-container{width:33.5%}#wpbody-content #dashboard-widgets.columns-3 #postbox-container-1{width:33%}#wpbody-content #dashboard-widgets.columns-3 #postbox-container-3,#wpbody-content #dashboard-widgets.columns-3 #postbox-container-4{float:right}#dashboard-widgets .postbox-container,#wpbody-content #dashboard-widgets.columns-4 .postbox-container{width:25%}#dashboard-widgets-wrap .columns-3 #postbox-container-4 .empty-container{border:0!important}.ie8 #wpbody-content #dashboard-widgets .postbox-container{width:49.5%}.ie8 #wpbody-content #dashboard-widgets #postbox-container-2,.ie8 #wpbody-content #dashboard-widgets #postbox-container-3,.ie8 #wpbody-content #dashboard-widgets #postbox-container-4{float:right;width:50.5%}.ie8 #dashboard-widgets #postbox-container-3 .empty-container,.ie8 #dashboard-widgets #postbox-container-4 .empty-container{border:0 none;height:0;min-height:0}#dashboard-widgets-wrap{overflow:hidden;margin:0 -8px}#dashboard-widgets .postbox .inside{margin-bottom:0}#dashboard-widgets .meta-box-sortables{margin:0 8px;min-height:100px}h3.dashboard-widget-title,h3.dashboard-widget-title small,h3.dashboard-widget-title span{color:#333}h3.dashboard-widget-title small a{color:#d7d7d7}h3.dashboard-widget-title small a:hover{color:#fff}#the-comment-list td.comment p.comment-author{margin-top:0;margin-left:0}#the-comment-list p.comment-author img{float:left;margin-right:8px}#the-comment-list p.comment-author strong a{border:0}#the-comment-list td{vertical-align:top}#the-comment-list td.comment{word-wrap:break-word}#the-comment-list td.comment img{max-width:100%}.welcome-panel{position:relative;overflow:auto;margin:16px 0;padding:23px 10px 0;border:1px solid #e5e5e5;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.04);box-shadow:0 1px 1px rgba(0,0,0,.04);background:#fff;font-size:13px;line-height:2.1em}.welcome-panel h3{margin:0;font-size:21px;font-weight:400;line-height:1.2}.welcome-panel h4{margin:1.33em 0 0;font-size:16px}.welcome-panel li{font-size:14px}.welcome-panel p{color:#777}.welcome-panel a{text-decoration:none}.welcome-panel .about-description{font-size:16px;margin:0}.welcome-panel .welcome-panel-close{position:absolute;top:5px;right:10px;padding:20px 15px 0 3px;font-size:13px;text-decoration:none;line-height:1}#welcome-panel.welcome-panel .welcome-panel-close::before{position:absolute;left:-18px;margin-top:-2px;-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}.wp-core-ui .welcome-panel .button.button-hero{margin:15px 0 3px}.welcome-panel-content{margin-left:13px;max-width:1500px}.welcome-panel .welcome-panel-column-container{clear:both;overflow:hidden;position:relative}.welcome-panel .welcome-panel-column{width:32%;min-width:200px;float:left}.ie8 .welcome-panel .welcome-panel-column{min-width:230px}.welcome-panel .welcome-panel-column:first-child{width:36%}.welcome-panel-column p.hide-if-no-customize{margin-top:10px}.welcome-panel-column p{margin-top:7px;color:#464646}.welcome-panel .welcome-icon{display:block;padding:0 0 8px;background:transparent!important}.welcome-panel .welcome-icon:before{color:#888;font:400 20px/1 dashicons;speak:none;display:inline-block;padding:0 10px 0 0;top:-1px;position:relative;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important;vertical-align:top}.welcome-panel .welcome-edit-page:before,.welcome-panel .welcome-write-blog:before{content:'\f119';top:-3px}.welcome-panel .welcome-add-page:before{content:'\f132'}.welcome-panel .welcome-view-site:before{content:'\f115';top:-2px}.welcome-panel .welcome-widgets-menus:before{content:'\f116';top:-2px}.welcome-panel .welcome-comments:before{content:'\f117';top:-1px}.welcome-panel .welcome-learn-more:before{content:'\f118';top:-1px}.welcome-panel .welcome-widgets-menus{line-height:16px}.welcome-panel .welcome-panel-column ul{margin:.8em 1em 1em 0}.welcome-panel .welcome-panel-column li{line-height:16px;list-style-type:none}#dashboard_primary .inside{margin:0;padding:0}#dashboard_primary .dashboard-widget-control-form,#dashboard_primary .widget-loading{padding:12px 12px 0}body #dashboard-widgets .postbox form .submit{margin:0}.dashboard-widget-control-form{overflow:hidden}.dashboard-widget-control-form p{margin-top:0}div.dashboard-widget-error{background-color:#c43}div.dashboard-widget-notice{background-color:#cfe1ef}.rssSummary{color:#777;margin-top:4px}#dashboard_primary .rss-widget{border-bottom:1px solid #eee;font-size:13px;padding:8px 12px 10px}#dashboard_primary .rss-widget:last-child{border-bottom:0;padding-bottom:8px}#dashboard_primary .rss-widget a{font-weight:400}#dashboard_primary .rss-widget span,#dashboard_primary .rss-widget span.rss-date{color:#777}#dashboard_primary .rss-widget span.rss-date{margin-left:12px}#dashboard_primary .rss-widget ul li{margin-bottom:8px}#dashboard_right_now ul{margin:0;overflow:hidden}#dashboard_right_now li{width:50%;float:left;margin-bottom:10px}#dashboard_right_now .inside{overflow:hidden;padding:0}#dashboard_right_now .main{overflow:hidden;padding:0 12px 11px}#dashboard_right_now .main p{margin:0}#dashboard_right_now #wp-version-message .button{clear:right;float:right;position:relative;top:-5px}.mu-storage{overflow:hidden}#dashboard-widgets h4.mu-storage{margin-bottom:10px}#dashboard_right_now li a:before,#dashboard_right_now li span:before{color:#888}#dashboard_right_now .sub{color:#777;background:#f5f5f5;border-top:1px solid #eee;padding:10px 12px 6px}#dashboard_right_now .sub h4{color:#555}#dashboard_right_now .sub p{margin:0 0 1em}#dashboard_right_now .warning a:before,#dashboard_right_now .warning span:before{color:#d54e21}#dashboard_right_now li a:before,#dashboard_right_now li span:before{content:'\f159';font:400 20px/1 dashicons;speak:none;display:block;float:left;margin:0 5px 0 0;padding:0;text-indent:0;text-align:center;position:relative;-webkit-font-smoothing:antialiased;text-decoration:none!important}#dashboard_right_now .page-count a:before,#dashboard_right_now .page-count span:before{content:'\f105'}#dashboard_right_now .post-count a:before,#dashboard_right_now .post-count span:before{content:'\f109'}#dashboard_right_now .comment-count a:before{content:'\f101'}#dashboard_right_now .comment-mod-count a:before{content:'\f125'}#dashboard_right_now .storage-count a:before{content:'\f104'}#dashboard_right_now .storage-count.warning a:before{content:'\f153'}#dashboard_quick_press .inside{margin:0;padding:0}#dashboard_quick_press div.updated{margin-bottom:10px;border:1px solid #eee;border-width:1px 1px 1px 0}#dashboard_quick_press form{overflow:hidden;margin:12px}#dashboard_quick_press .drafts,#dashboard_quick_press .easy-blogging{padding:10px 0 0}input#save-post{float:left}form.initial-form.quickpress-open label.prompt{font-style:normal}form.initial-form.quickpress-open input#title{height:auto}#dashboard_quick_press input,#dashboard_quick_press textarea{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:0}#dashboard_quick_press textarea{resize:vertical}#description-wrap{margin-top:12px}#title-wrap #title-prompt-text,.textarea-wrap #content-prompt-text{color:#777}.input-text-wrap,.textarea-wrap{position:relative}.input-text-wrap .prompt,.textarea-wrap .prompt{position:absolute}.textarea-wrap #content-prompt-text{font-size:1.1em;padding:7px 8px}.textarea-wrap textarea#content{margin:0 0 8px;padding:6px 7px}#quick-press textarea#content{min-height:90px;max-height:1300px;resize:none}.js #dashboard_quick_press .drafts{border-top:1px solid #eee}#dashboard_quick_press .drafts abbr{border:0}#dashboard_quick_press .drafts h4{margin:0 12px 8px;font-weight:400}#dashboard_quick_press .drafts .view-all{float:right;margin:0 12px 0 0}#dashboard_primary a.rsswidget{font-weight:400}#dashboard_quick_press .drafts ul{margin:0 12px}#dashboard_quick_press .drafts li{margin-bottom:1em}#dashboard_quick_press .drafts li time{color:#777}#dashboard_quick_press .drafts p{margin:0;word-wrap:break-word}#dashboard_quick_press .draft-title{overflow:hidden}#dashboard_quick_press .draft-title a,#dashboard_quick_press .draft-title time{float:left;margin:0 5px 0 0}#dashboard-widgets #dashboard_activity h4{margin:0 0 8px 12px;font-weight:400}#dashboard-widgets #dashboard_activity h4.comment-meta{margin:0}#dashboard_activity h4.comment-meta{margin-bottom:4px}#dashboard_activity ul{padding:0 12px}#dashboard_activity .comment-meta span.approve:before{content:'\f227';font:20px/.5 dashicons;margin-left:12px;vertical-align:middle;position:relative;top:-1px;margin-right:2px}#dashboard_activity .inside{padding:0;margin:0}#dashboard_activity .no-activity{overflow:hidden;padding:0 12px 12px;text-align:center}#dashboard_activity .no-activity p{color:#999;font-size:16px}#dashboard_activity .no-activity .smiley{margin-top:0}#dashboard_activity .no-activity .smiley:before{content:'\f328';font:400 120px/1 dashicons;speak:none;display:block;margin:0 5px 0 0;padding:0;text-indent:0;text-align:center;position:relative;-webkit-font-smoothing:antialiased;text-decoration:none!important}#dashboard_activity .subsubsub{float:none;border-top:1px solid #eee;margin-top:0;padding:8px 12px 4px}#future-posts ul,#published-posts ul{clear:both;margin-bottom:0}#future-posts li,#published-posts li{overflow:hidden;margin-bottom:8px}#future-posts ul span,#published-posts ul span{color:#777;float:left;margin-right:8px;min-width:150px}.activity-block{border-bottom:1px solid #eee;overflow:hidden;padding:8px 0 4px}.activity-block:last-child{border-bottom:0}.activity-block .subsubsub li{color:#ddd}#activity-widget #the-comment-list div.undo,#activity-widget #the-comment-list tr.undo{background:0 0;padding:6px 0}#activity-widget #the-comment-list .alt,#activity-widget #the-comment-list .alternate{background:0 0}#activity-widget #the-comment-list .comment-item{background:#fafafa;padding:12px;position:relative}#activity-widget #the-comment-list img{position:absolute;left:13px;top:13px}#activity-widget #the-comment-list .dashboard-comment-wrap{padding-left:63px}#activity-widget #the-comment-list .dashboard-comment-wrap blockquote{margin:1em 0}#activity-widget #the-comment-list .comment-item h4{font-size:13px;color:#999}#activity-widget #the-comment-list .comment-item p.row-actions{margin:4px 0 0}#activity-widget #the-comment-list .comment-item:first-child{border-top:1px solid #eee}#activity-widget #the-comment-list .unapproved{background-color:#fef7f1}#activity-widget #the-comment-list .unapproved:before{content:"";display:block;position:absolute;left:0;top:0;bottom:0;background:#d54e21;width:4px}#activity-widget #the-comment-list .spam-undo-inside .avatar,#activity-widget #the-comment-list .trash-undo-inside .avatar{margin-right:20px;position:relative;top:0}#dashboard-widgets #dashboard_browser_nag.postbox .inside{margin:10px}.edit-box{display:none}h3:hover .edit-box{display:inline}#dashboard-widgets form .input-text-wrap input,#dashboard-widgets form .textarea-wrap textarea{width:100%}#dashboard-widgets .postbox form .submit{float:none;margin:.5em 0 0;padding:0;border:0}#dashboard-widgets-wrap #dashboard-widgets .postbox form .submit #publish{min-width:0}#dashboard-widgets a{text-decoration:none}#dashboard-widgets h3 a{text-decoration:underline}#dashboard-widgets h3 .postbox-title-action{position:absolute;right:10px;padding:0;top:5px}.js #dashboard-widgets h3 .postbox-title-action{right:33px}#dashboard-widgets h4{color:#222;font-weight:400;font-size:14px;margin:0 0 .2em;padding:0}#dashboard_plugins h5{font-size:14px}#latest-comments #the-comment-list{position:relative}#activity-widget #the-comment-list .comment{-webkit-box-shadow:inset 0 1px 0 rgba(0,0,0,.06);box-shadow:inset 0 1px 0 rgba(0,0,0,.06)}#activity-widget .comments #the-comment-list .alt{background-color:transparent}#activity-widget #latest-comments #the-comment-list .comment-item{padding:1em 12px}#latest-comments #the-comment-list .pingback{padding-left:12px!important}#latest-comments #the-comment-list .comment-item:first-child{border-top:0}#latest-comments #the-comment-list .comment-item h4{line-height:1.5em;margin-top:0;color:#666}#latest-comments #the-comment-list .comment-item h4 cite{font-style:normal;font-weight:400}#latest-comments #the-comment-list .comment-item blockquote,#latest-comments #the-comment-list .comment-item blockquote p{margin:0;padding:0;display:inline}#latest-comments #the-comment-list .comment-item p.row-actions{margin:3px 0 0;padding:0;font-size:13px}#title-wrap label{cursor:text}#title-wrap #title{padding:2px 6px;font-size:1.3em;line-height:100%;outline:0}#title-wrap #title-prompt-text{font-size:1.1em;padding:5px 8px}.rss-widget ul{margin:0;padding:0;list-style:none}a.rsswidget{font-size:14px;font-weight:600;line-height:1.7em}.rss-widget ul li{line-height:1.5em;margin-bottom:12px}.rss-widget span.rss-date{color:#999;font-size:13px;margin-left:3px}.rss-widget cite{display:block;text-align:right;margin:0 0 1em;padding:0}.rss-widget cite:before{content:'\2014'}.dashboard-comment-wrap{overflow:hidden;word-wrap:break-word}#dashboard_browser_nag a.update-browser-link{font-size:1.2em;font-weight:600}#dashboard_browser_nag a{text-decoration:underline}#dashboard_browser_nag p.browser-update-nag.has-browser-icon{padding-right:125px}#dashboard_browser_nag .browser-icon{margin-top:-35px}#dashboard_browser_nag.postbox.browser-insecure{background-color:#ac1b1b;border-color:#ac1b1b}#dashboard_browser_nag.postbox{background-color:#e29808;background-image:none;border-color:#edc048;color:#fff;-webkit-box-shadow:none;box-shadow:none}#dashboard_browser_nag.postbox.browser-insecure h3{border-bottom-color:#cd5a5a;color:#fff}#dashboard_browser_nag.postbox h3{border-bottom-color:#f6e2ac;background:transparent none;color:#fff;-webkit-box-shadow:none;box-shadow:none}#dashboard_browser_nag a{color:#fff}#dashboard_browser_nag h3.hndle{border:0;font-weight:600;font-size:20px;padding-top:10px}.postbox#dashboard_browser_nag p a.dismiss{font-size:14px}.postbox#dashboard_browser_nag a,.postbox#dashboard_browser_nag p,.postbox#dashboard_browser_nag p.browser-update-nag{font-size:16px}@media only screen and (max-width:799px){#wpbody-content #dashboard-widgets .postbox-container{width:100%}}@media only screen and (min-width:800px) and (max-width:1499px){#wpbody-content #dashboard-widgets .postbox-container{width:49.5%}#wpbody-content #dashboard-widgets #postbox-container-2,#wpbody-content #dashboard-widgets #postbox-container-3,#wpbody-content #dashboard-widgets #postbox-container-4{float:right;width:50.5%}#dashboard-widgets #postbox-container-3 .empty-container,#dashboard-widgets #postbox-container-4 .empty-container{border:0 none;height:0;min-height:0}#wpbody #wpbody-content #dashboard-widgets.columns-1 .postbox-container{width:100%}#wpbody #wpbody-content .metabox-holder.columns-1 .postbox-container .empty-container{border:0 none;height:0;min-height:0}.index-php .columns-prefs,.index-php .screen-layout{display:block}.columns-prefs .columns-prefs-3,.columns-prefs .columns-prefs-4{display:none}}@media only screen and (min-width:1500px) and (max-width:1800px){#wpbody-content #dashboard-widgets .postbox-container{width:33.5%}#wpbody-content #dashboard-widgets #postbox-container-1{width:33%}#wpbody-content #dashboard-widgets #postbox-container-3,#wpbody-content #dashboard-widgets #postbox-container-4{float:right}#dashboard-widgets #postbox-container-4 .empty-container{border:0 none;height:0;min-height:0}}@media screen and (max-width:870px){.welcome-panel .welcome-panel-column,.welcome-panel .welcome-panel-column:first-child{display:block;float:none;width:100%}.welcome-panel .welcome-panel-column li{display:inline-block;margin-right:13px}.welcome-panel .welcome-panel-column ul{margin:.4em 0 0}}@media screen and (max-width:782px){#dashboard_recent_comments #the-comment-list .comment-item .avatar{height:30px;width:30px;margin:4px 10px 5px 0}}@media screen and (max-width:600px){.welcome-panel .welcome-panel-close{overflow:hidden;text-indent:100%;white-space:nowrap;width:20px;height:20px;right:0;padding:5px}#welcome-panel.welcome-panel .welcome-panel-close::before{font-size:20px;margin:0}}.post-com-count-wrapper{min-width:22px}.post-com-count{background:0 0;height:1.3em;line-height:1.1em;display:block;text-decoration:none;padding:0 0 6px;cursor:pointer;background-position:center -80px;background-repeat:no-repeat;color:#fff}.post-com-count:after{content:"";display:block;width:0;height:0;margin-left:8px;border-top:5px solid #bbb;border-right:5px solid transparent}.post-com-count span{font-size:11px;font-weight:600;height:1.4em;line-height:1.4em;min-width:.7em;padding:0 6px;display:inline-block;-webkit-border-radius:5px;border-radius:5px;background-color:#bbb;color:#fff}.post-com-count:hover{background-position:center -3px}.post-com-count:hover span{background-color:#2ea2cc}.post-com-count:hover:after{border-top:5px solid #2ea2cc}strong .post-com-count{background-position:center -55px}strong .post-com-count span{background-color:#0074a2}strong .post-com-count:after{border-top:5px solid #0074a2}.column-response .post-com-count{float:left;margin-right:5px;text-align:center}.response-links{float:left}.commentlist li{padding:1em 1em .2em;margin:0;border-bottom:1px solid #ccc}.commentlist li li{border-bottom:0;padding:0}.commentlist p{padding:0;margin:0 0 .8em}#submitted-on,.submitted-on{color:#777}#replyrow td{padding:2px}#replysubmit{margin:0;padding:0 5px 3px;text-align:center}#replysubmit .spinner{padding:2px 0 0;vertical-align:top;float:right}#replysubmit .button{margin-right:5px}#replysubmit .error{color:red;line-height:21px;text-align:center}#replyrow h5{margin:.2em 0 0;padding:0 5px;line-height:1.4em;font-size:1em}#edithead .inside{float:left;padding:3px 0 2px 5px;margin:0;text-align:center}#edithead .inside input{width:180px}#edithead label{padding:2px 0}#replycontainer{padding:5px}#replycontent{height:120px;-webkit-box-shadow:none;box-shadow:none}#replyerror{border-color:#ddd;background-color:#f9f9f9}.commentlist .avatar{vertical-align:text-top}#the-comment-list .attachment-80x60{padding:4px 8px}#the-comment-list div.undo,#the-comment-list tr.undo{background-color:#f4f4f4}#the-comment-list .unapproved td,#the-comment-list .unapproved th{background-color:#fef7f1}#the-comment-list .unapproved th.check-column{border-left:4px solid #d54e21}#the-comment-list .unapproved th.check-column input{margin-left:4px}#the-comment-list .approve a{color:#006505}#the-comment-list .unapprove a{color:#d98500}#the-comment-list td,#the-comment-list th{-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.1);box-shadow:inset 0 -1px 0 rgba(0,0,0,.1)}#the-comment-list tr:last-child td,#the-comment-list tr:last-child th{-webkit-box-shadow:none;box-shadow:none}#the-comment-list tr.unapproved+tr.approved td,#the-comment-list tr.unapproved+tr.approved th{border-top:1px solid rgba(0,0,0,.03)}.vim-current,.vim-current td,.vim-current th{background-color:#e4f2fd!important}th .comment-grey-bubble{height:16px;width:16px}th .comment-grey-bubble:before{content:'\f101';font:400 20px/.5 dashicons;speak:none;display:inline-block;padding:0;top:4px;left:-4px;position:relative;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important;color:#444}table.fixed{table-layout:fixed}.fixed .column-rating,.fixed .column-visible{width:8%}.fixed .column-author,.fixed .column-date,.fixed .column-format,.fixed .column-links,.fixed .column-parent,.fixed .column-posts{width:10%}.fixed .column-comment .comment-author{display:none}.fixed .column-categories,.fixed .column-rel,.fixed .column-response,.fixed .column-role,.fixed .column-tags{width:15%}.fixed .column-slug{width:25%}.fixed .column-locations{width:35%}.fixed .column-comments{width:4em;padding:8px 0;text-align:left}.fixed .column-comments .vers{padding-left:3px}.fixed .column-comments a{float:left}.fixed .column-icon{width:80px}.wp-list-table a{-webkit-transition:none;transition:none}#the-list tr:last-child td,#the-list tr:last-child th{border-bottom:0!important;-webkit-box-shadow:none;box-shadow:none}#comments-form .fixed .column-author{width:20%}#commentsdiv.postbox .inside{margin:0;padding:0}#commentsdiv .inside .row-actions{line-height:18px}#commentsdiv .inside .column-author{width:25%}#commentsdiv .column-comment p{margin:.6em 0;padding:0}#commentsdiv #replyrow td{padding:0}#commentsdiv p{padding:8px 10px;margin:0}#commentsdiv .comments-box{border:0 none}#commentsdiv .comments-box thead th{background:0 0;padding:0 7px 4px;font-style:italic}#commentsdiv .comments-box tr:last-child td{border-bottom:0 none}#commentsdiv .spinner{padding-left:5px}.sorting-indicator{display:none;width:10px;height:4px;margin-top:8px;margin-left:7px}.sorting-indicator:before{background:0 0;content:'\f142';font:400 20px/1 dashicons;speak:none;display:inline-block;padding:0;top:-4px;left:-8px;line-height:10px;position:relative;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important;color:#444}.column-comments .sorting-indicator:before{top:0;left:-10px}th.desc:hover span.sorting-indicator:before,th.sorted.asc .sorting-indicator:before{content:'\f142'}th.asc:hover span.sorting-indicator:before,th.sorted.desc .sorting-indicator:before{content:'\f140'}tr.wp-locked .locked-indicator{margin-left:6px;height:20px;width:16px}tr.wp-locked .locked-indicator:before{color:#888;content:'\f160';display:inline-block;float:left;font:400 20px/1 dashicons;speak:none;vertical-align:middle;margin-left:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}tr.wp-locked .check-column input[type=checkbox],tr.wp-locked .check-column label,tr.wp-locked .row-actions .inline,tr.wp-locked .row-actions .trash{display:none}tr .locked-info{height:0;opacity:0}tr.wp-locked .locked-info{margin-top:8px;height:auto;opacity:1}.locked-text{vertical-align:top}tr.locked-info,tr.wp-locked .locked-info{-webkit-transition:height 1s,opacity .5s;transition:height 1s,opacity .5s}.fixed .column-comments .sorting-indicator{margin-top:3px}#menu-locations-wrap .widefat{width:60%}.widefat th.sortable,.widefat th.sorted{padding:0}th.sortable a,th.sorted a{display:block;overflow:hidden;padding:7px 7px 8px 10px}th.manage-column a,th.sortable a:active,th.sortable a:focus,th.sortable a:hover{color:#333}th.sortable a:focus{background:#e1e1e1}.fixed .column-comments.sortable a,.fixed .column-comments.sorted a{padding:8px 0}th.sortable a span,th.sorted a span{float:left;cursor:pointer}th.desc:hover span.sorting-indicator,th.sorted.asc .sorting-indicator{display:block;background-position:0 0}th.asc:hover span.sorting-indicator,th.sorted.desc .sorting-indicator{display:block;background-position:-7px 0}.tablenav-pages a{font-weight:600;margin-right:1px;padding:0 2px}.tablenav-pages .current-page{padding-top:0;text-align:center}.tablenav-pages .next-page{margin-left:2px}.tablenav a.button-secondary{display:block;margin:3px 8px 0 0}.tablenav{clear:both;height:30px;margin:6px 0 4px;vertical-align:middle}.tablenav.themes{max-width:98%}.tablenav .tablenav-pages{float:right;display:block;cursor:default;height:30px;color:#555;line-height:30px;font-size:12px}.tablenav .no-pages,.tablenav .one-page .pagination-links{display:none}.tablenav .tablenav-pages a,.tablenav-pages span.current{text-decoration:none;padding:3px 6px}.tablenav .tablenav-pages a{padding:0 10px 3px;background:#eee;background:rgba(0,0,0,.05);font-size:16px;font-weight:400}.tablenav .tablenav-pages a:focus,.tablenav .tablenav-pages a:hover{color:#fff;background:#2ea2cc}.tablenav .tablenav-pages a.disabled,.tablenav .tablenav-pages a.disabled:active,.tablenav .tablenav-pages a.disabled:focus,.tablenav .tablenav-pages a.disabled:hover{color:#aaa;background:#eee;background:rgba(0,0,0,.05)}.tablenav .displaying-num{margin-right:2px;color:#777;font-size:12px;font-style:italic}.tablenav .actions{overflow:hidden;padding:2px 8px 0 0}.tablenav .delete{margin-right:20px}.tablenav .dots{border-color:transparent}.tablenav .next,.tablenav .prev{border-color:transparent;color:#0074a2}.tablenav .next:hover,.tablenav .prev:hover{border-color:transparent;color:#2ea2cc}.view-switch{float:right;margin:5px 16px 0 8px}.view-switch img{display:none}.view-switch a{text-decoration:none}.view-switch>a{display:inline-block;width:18px;height:18px}.view-switch>a:before{color:#bbb;content:'\f163';display:inline-block;float:left;font:400 20px/1 dashicons;speak:none;vertical-align:middle;margin-left:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.view-switch a:hover:before{color:#727272}.view-switch a.current:before{color:#0074a2}.view-switch>a+a:before{margin-left:5px;content:'\f164'}.filter{float:left;margin:-5px 0 0 10px}.filter .subsubsub{margin-left:-10px;margin-top:13px}.screen-per-page{width:4em}#posts-filter fieldset{float:left;margin:0 1.5ex 1em 0;padding:0}#posts-filter fieldset legend{padding:0 0 .2em 1px}p.pagenav{margin:0;display:inline}.pagenav span{font-weight:600;margin:0 6px}.row-title{font-size:14px!important;font-weight:600}.column-comment .comment-author{margin-bottom:.6em}.column-author img,.column-comment .comment-author img,.column-username img{float:left;margin-right:10px;margin-top:1px}.row-actions{color:#ddd;font-size:13px;visibility:hidden;padding:2px 0 0}.mobile .row-actions,.row-actions.visible,div.comment-item:hover .row-actions,tr:hover .row-actions{visibility:visible}.row-actions-visible{padding:2px 0 0}#wpbody-content .inline-edit-row fieldset{font-size:12px;float:left;margin:0;padding:0;width:100%}#wpbody-content .inline-edit-row fieldset .inline-edit-col,tr.inline-edit-row td{padding:0 .5em}#wpbody-content .quick-edit-row-page fieldset.inline-edit-col-right .inline-edit-col{border-width:0 0 0 1px;border-style:none none none solid}#wpbody-content .quick-edit-row-post .inline-edit-col-left{width:40%}#wpbody-content .quick-edit-row-post .inline-edit-col-right{width:39%}#wpbody-content .inline-edit-row-post .inline-edit-col-center{width:20%}#wpbody-content .quick-edit-row-page .inline-edit-col-left{width:50%}#wpbody-content .bulk-edit-row-post .inline-edit-col-right,#wpbody-content .quick-edit-row-page .inline-edit-col-right{width:49%}#wpbody-content .bulk-edit-row .inline-edit-col-left{width:30%}#wpbody-content .bulk-edit-row-page .inline-edit-col-right{width:69%}#wpbody-content .bulk-edit-row .inline-edit-col-bottom{float:right;width:69%}#wpbody-content .inline-edit-row-page .inline-edit-col-right{margin-top:27px}.inline-edit-row fieldset .inline-edit-group{clear:both}.inline-edit-row fieldset .inline-edit-group:after{content:".";display:block;height:0;clear:both;visibility:hidden}.inline-edit-row p.submit{clear:both;padding:.5em;margin:.5em 0 0}.inline-edit-row span.error{line-height:22px;margin:0 15px;padding:3px 5px}.inline-edit-row h4{margin:.2em 0;padding:0;line-height:23px}.inline-edit-row fieldset span.checkbox-title,.inline-edit-row fieldset span.title{margin:0;padding:0}.inline-edit-row fieldset label,.inline-edit-row fieldset span.inline-edit-categories-label{display:block;margin:.2em 0}.inline-edit-row fieldset label.inline-edit-tags{margin-top:0}.inline-edit-row fieldset label.inline-edit-tags span.title{margin:.2em 0;width:auto}.inline-edit-row fieldset label span.title{display:block;float:left;width:5em}.inline-edit-row fieldset label span.input-text-wrap{display:block;margin-left:5em}.quick-edit-row-post fieldset.inline-edit-col-right label span.title{width:auto;padding-right:.5em}.inline-edit-row .input-text-wrap input[type=text]{width:100%}.inline-edit-row fieldset label input[type=checkbox]{vertical-align:text-bottom}.inline-edit-row fieldset label textarea{width:100%;height:4em}#wpbody-content .bulk-edit-row fieldset .inline-edit-group label{max-width:50%}#wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child{margin-right:.5em}.inline-edit-col-right .input-text-wrap input.inline-edit-menu-order-input{width:6em}.inline-edit-save .spinner{padding:4px 10px 0;vertical-align:top;float:right}.inline-edit-row h4{text-transform:uppercase}.inline-edit-row fieldset span.checkbox-title,.inline-edit-row fieldset span.title{font-style:italic;line-height:1.8em}.inline-edit-row fieldset .inline-edit-date{float:left}.inline-edit-row fieldset input[name=hh],.inline-edit-row fieldset input[name=jj],.inline-edit-row fieldset input[name=mn]{font-size:12px;width:2.1em}.inline-edit-row fieldset input[name=aa]{font-size:12px;width:3.5em}.inline-edit-row fieldset label input.inline-edit-password-input{width:8em}ul.cat-checklist{height:12em;border:solid 1px #ddd;overflow-y:scroll;padding:0 5px;margin:0;background-color:#fff}#bulk-titles{display:block;height:12em;border:1px solid #ddd;overflow-y:scroll;padding:0 5px;margin:0 0 5px}.inline-edit-row fieldset ul.cat-checklist input,.inline-edit-row fieldset ul.cat-checklist li{margin:0;position:relative}.inline-edit-row #bulk-titles div,.inline-edit-row fieldset ul.cat-checklist label{font-style:normal;font-size:11px}.inline-edit-row fieldset label input.inline-edit-menu-order-input{width:3em}.inline-edit-row fieldset label input.inline-edit-slug-input{width:75%}.inline-edit-row #post_parent,.inline-edit-row select[name=page_template]{max-width:80%}.ie8 .inline-edit-row #post_parent,.ie8 .inline-edit-row select[name=page_template]{width:250px}.quick-edit-row-post fieldset label.inline-edit-status{float:left}#bulk-titles{line-height:140%}#bulk-titles div{margin:.2em .3em}#bulk-titles div a{cursor:pointer;display:block;float:left;height:18px;margin:0 3px 0 -2px;overflow:hidden;position:relative;width:20px}#bulk-titles div a:before{position:relative;top:-3px}.plugins tbody,.plugins tbody th.check-column{padding:8px 0 0 2px}.plugins tbody th.check-column input[type=checkbox]{margin-top:4px}#update-plugins-table tbody td p{margin-top:0}#update-plugins-table tbody td p strong{font-size:14px}.plugins .inactive th.check-column,.plugins tfoot th.check-column,.plugins thead th.check-column{padding-left:6px}#update-plugins-table tfoot th.check-column,#update-plugins-table thead th.check-column{padding-top:11px}.plugins,.plugins td,.plugins th{color:#000}.plugins tr{background:#fff}.plugins p{margin:0 4px;padding:0}.plugins .desc p{margin:0 0 8px}.plugins td.desc{line-height:1.5em}.plugins .desc ol,.plugins .desc ul{margin:0 0 0 2em}.plugins .desc ul{list-style-type:disc}.plugins .row-actions{font-size:13px}.plugins .active td,.plugins .active th,.plugins .inactive td,.plugins .inactive th{padding:10px 9px}.plugins .active td,.plugins .active th{background-color:#f7fcfe}.plugins .update td,.plugins .update th{border-bottom:0}.plugin-update-tr td{border-top:0}.plugin-install #the-list td,.plugins .active td,.plugins .active th,.plugins .inactive td,.plugins .inactive th,.upgrade .plugins td,.upgrade .plugins th{-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.1);box-shadow:inset 0 -1px 0 rgba(0,0,0,.1)}.plugins tr.active+tr.inactive td,.plugins tr.active+tr.inactive th,.plugins tr.active.plugin-update-tr+tr.inactive td,.plugins tr.active.plugin-update-tr+tr.inactive th{border-top:1px solid rgba(0,0,0,.03);-webkit-box-shadow:inset 0 1px 0 rgba(0,0,0,.02),inset 0 -1px 0 #e1e1e1;box-shadow:inset 0 1px 0 rgba(0,0,0,.02),inset 0 -1px 0 #e1e1e1}.plugins .update td,.plugins .update th,.plugins tr.active+tr.inactive.update td,.plugins tr.active+tr.inactive.update th,.upgrade .plugins tr:last-of-type td,.upgrade .plugins tr:last-of-type th{-webkit-box-shadow:none;box-shadow:none}.plugins .active.update td,.plugins .active.update th,tr.active.update+tr.plugin-update-tr .plugin-update{background-color:#fef7f1}.plugins .active th.check-column{border-left:4px solid #2ea2cc}.plugins .active.update th.check-column,.plugins .active.update+.plugin-update-tr .plugin-update{border-left:4px solid #d54e21}#wpbody-content .plugins .plugin-title,#wpbody-content .plugins .theme-title{padding-right:12px;white-space:nowrap}.plugins .inactive .plugin-title strong{font-weight:400}.plugins .row-actions,.plugins .second{padding:0 0 5px}.plugins .update .row-actions,.plugins .update .second{padding-bottom:0}.plugins-php .widefat tfoot td,.plugins-php .widefat tfoot th{border-top-style:solid;border-top-width:1px}.plugin-update-tr .update-message{font-size:13px;font-weight:400;padding:6px 12px;margin:0 10px 8px 31px;background-color:#f7f7f7;background-color:rgba(0,0,0,.03)}.plugin-update-tr .update-message:before{color:#d54e21;content:'\f463';display:inline-block;font:400 20px/1 dashicons;speak:none;margin:0 8px 0 -2px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;vertical-align:top}.plugins .plugin-update{padding:0;border:0;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.1);box-shadow:inset 0 -1px 0 rgba(0,0,0,.1)}tr.active+tr.plugin-update-tr .plugin-update{background-color:#f7fcfe}tr.active+tr.plugin-update-tr .plugin-update .update-message{background-color:#fcf3ef}.plugin-install-php h4{margin:2.5em 0 8px}.wp-list-table .site-deleted{background:#ff8573}.wp-list-table .site-spammed{background:#faafaa}.wp-list-table .site-archived{background:#ffebe8}.wp-list-table .site-mature{background:#fecac2}@media screen and (max-width:782px){.tablenav{height:auto}.tablenav.top{margin:0}.tablenav.bottom{position:relative;margin-top:15px}.tablenav br{display:none}.tablenav br.clear{display:block}.tablenav.top .actions,.tablenav.top .displaying-num,.view-switch{display:none}.tablenav.bottom .displaying-num{position:absolute;right:0;top:10px;font-size:14px}.tablenav-pages{width:100%;text-align:center;margin:0 0 25px}.tablenav.bottom .tablenav-pages{margin-top:25px}.tablenav.top .tablenav-pages.one-page{display:none}.tablenav.bottom .tablenav-pages.one-page{margin:15px 0 0;height:0}.tablenav-pages .pagination-links .paging-input{font-size:18px}.tablenav-pages .pagination-links a{padding:8px 20px 11px;font-size:18px;background:rgba(0,0,0,.05)}.tablenav-pages .pagination-links .current-page{padding:10px;font-size:14px}.form-wrap>p{display:none}.comment-count{font-size:14px}.column-categories,.column-tags,.fixed .column-author,.fixed .column-date,.media .column-parent,.sites .column-registered,.sites .column-users,.tags .column-description,.users .column-email,.users .column-name{display:none}.fixed .column-comment .comment-author{display:block}.column-title{width:85%}.fixed .column-comments,.widefat .check-column{width:35px}.widefat tfoot .check-column,.widefat thead .check-column{padding:10px 0}.widefat *{word-wrap:normal}#wpbody-content .bulk-edit-row .inline-edit-col-bottom,#wpbody-content .bulk-edit-row .inline-edit-col-left,#wpbody-content .bulk-edit-row-page .inline-edit-col-right,#wpbody-content .bulk-edit-row-post .inline-edit-col-right,#wpbody-content .inline-edit-row-post .inline-edit-col-center,#wpbody-content .quick-edit-row-page .inline-edit-col-left,#wpbody-content .quick-edit-row-page .inline-edit-col-right,#wpbody-content .quick-edit-row-post .inline-edit-col-left,#wpbody-content .quick-edit-row-post .inline-edit-col-right{float:none;width:100%}#wpbody-content .bulk-edit-row fieldset .inline-edit-col label,#wpbody-content .bulk-edit-row fieldset .inline-edit-group label,#wpbody-content .quick-edit-row fieldset .inline-edit-col label,#wpbody-content .quick-edit-row fieldset .inline-edit-group label{max-width:none;float:none;margin-bottom:5px}#wpbody .bulk-edit-row fieldset select{display:block;width:100%;max-width:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.inline-edit-row #bulk-titles div,.inline-edit-row fieldset ul.cat-checklist label{font-size:16px}.inline-edit-row fieldset label span.title{float:none}.inline-edit-row fieldset label.inline-edit-tags{padding:0 .5em}.inline-edit-row fieldset .inline-edit-col label.inline-edit-tags{padding:0}.inline-edit-row fieldset label span.input-text-wrap{margin-left:0}.inline-edit-row fieldset input[name=hh],.inline-edit-row fieldset input[name=jj],.inline-edit-row fieldset input[name=mn]{width:3em}.inline-edit-row fieldset input[name=aa]{width:4.5em}#bulk-titles div{margin:.8em .3em}#bulk-titles div a{height:22px}.tags .column-posts{width:50px}.tags .column-slug{width:30%}.comments .column-response,.users .column-role{width:35%}.sites .column-blogname{width:55%}#wpbody-content #update-themes-table .plugin-title{width:auto}.link-manager-php #posts-filter{margin-top:25px}.link-manager-php .tablenav.bottom{overflow:hidden}.wp-list-table.plugins{position:relative;margin-top:35px;margin-bottom:50px}#wpbody-content .wp-list-table.plugins tfoot .column-description,.wp-list-table.plugins th#description,.wp-list-table.plugins thead .column-description{display:none}#wpbody-content .wp-list-table.plugins,#wpbody-content .wp-list-table.plugins .column-description,#wpbody-content .wp-list-table.plugins .manage-column.column-name,#wpbody-content .wp-list-table.plugins .plugin-title,#wpbody-content .wp-list-table.plugins .plugin-update,#wpbody-content .wp-list-table.plugins .theme-title,#wpbody-content .wp-list-table.plugins tbody,#wpbody-content .wp-list-table.plugins thead,#wpbody-content .wp-list-table.plugins tr{display:block;width:auto}.wp-list-table.plugins tfoot,.wp-list-table.plugins thead{position:absolute;top:-35px;left:0;right:0;width:auto;height:35px}.wp-list-table.plugins tfoot{bottom:-35px;top:auto}.active,.inactive{padding-top:0}.wp-list-table.plugins .plugin-title,.wp-list-table.plugins .theme-title{padding-top:13px;padding-bottom:4px}.plugins tr.active+tr.inactive td,.plugins tr.active+tr.inactive th.check-column,.wp-list-table.plugins .plugin-title,.wp-list-table.plugins .theme-title,.wp-list-table.plugins tbody th{-webkit-box-shadow:none;box-shadow:none}.plugins tbody{padding:1px 0 0}.plugins tr.active+tr.inactive td.column-description{-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.1);box-shadow:inset 0 -1px 0 rgba(0,0,0,.1)}.plugins tr.active+tr.inactive td,.plugins tr.active+tr.inactive th.check-column{border-top:0}.wp-list-table.plugins .column-description{padding-top:0}.wp-list-table.plugins .column-description,.wp-list-table.plugins .manage-column.column-name,.wp-list-table.plugins .plugin-title,.wp-list-table.plugins .theme-title{padding-right:12px;padding-left:46px}.wp-list-table.plugins tr{position:relative}.wp-list-table.plugins th.check-column,.wp-list-table.plugins tr.update th.check-column{position:absolute;height:auto;top:0;bottom:0;left:0;padding-left:2px;padding-top:18px}.wp-list-table.plugins tfoot th.check-column,.wp-list-table.plugins thead th.check-column{padding-left:3px;padding-top:11px;background:0 0}.widefat tbody th.check-column input[type=checkbox]{margin-top:-3px;margin-left:8px}.wp-list-table.plugins .active .check-column input,.wp-list-table.plugins .update .check-column input{margin-left:5px}.wp-list-table.plugins tfoot .check-column input,.wp-list-table.plugins thead .check-column input{margin-top:-6px}.wp-list-table.plugins .active th.check-column{background:0 0}.wp-list-table.plugins .plugin-title strong,.wp-list-table.plugins .theme-title strong{font-size:1.4em;line-height:1.6em}table.plugin-install .column-description,table.plugin-install .column-name,table.plugin-install .column-rating,table.plugin-install .column-version{display:block;width:auto}table.plugin-install th.column-description,table.plugin-install th.column-name,table.plugin-install th.column-rating,table.plugin-install th.column-version{display:none}table.plugin-install td.column-name strong{font-size:1.4em;line-height:1.6em}table.plugin-install #the-list td{-webkit-box-shadow:none;box-shadow:none}table.plugin-install #the-list tr{display:block;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.1);box-shadow:inset 0 -1px 0 rgba(0,0,0,.1)}}#poststuff{padding-top:10px;min-width:763px}#poststuff #post-body{padding:0}#poststuff .postbox-container{width:100%}#poststuff #post-body.columns-2{margin-right:300px}#show-comments{overflow:hidden}#save-action .spinner,#show-comments .spinner,#show-comments a{float:left}#lost-connection-notice .spinner{display:block;float:left;margin:0 5px 0 0}#titlediv{position:relative;margin-bottom:10px}#titlediv label{cursor:text}#titlediv div.inside{margin:0}#poststuff #titlewrap{border:0;padding:0}#titlediv #title{padding:3px 8px;font-size:1.7em;line-height:100%;height:1.7em;width:100%;outline:0;margin:0;background-color:#fff}#titlediv #title-prompt-text{color:#777;position:absolute;font-size:1.7em;padding:11px 10px}#wp-fullscreen-save .fs-saved{color:#999;float:right;margin-top:4px}#poststuff .inside-submitbox,#side-sortables .inside-submitbox{margin:0 3px;font-size:11px}input#link_description,input#link_url{width:98%}#pending{background:0 none;border:0 none;padding:0;font-size:11px;margin-top:-1px}#edit-slug-box{line-height:24px;min-height:25px;margin-top:5px;padding:0 10px;color:#666}#edit-slug-box .cancel{margin-right:10px;font-size:11px}#editable-post-name-full{display:none}#editable-post-name{background-color:#fffbcc}#editable-post-name input{font-size:13px;height:22px;margin:0;width:16em}.postarea h3 label{float:left}.submitbox .submit{text-align:left;padding:12px 10px 10px;font-size:11px;background-color:#464646;color:#ccc}.submitbox .submitdelete{text-decoration:none;padding:1px 2px}#normal-sortables .submitbox .submitdelete:hover{color:#000;background-color:red;border-bottom-color:red}.submitbox .submit a:hover{text-decoration:underline}.submitbox .submit input{margin-bottom:8px;margin-right:4px;padding:6px}.inside-submitbox #post_status{margin:2px 0 2px -2px}#post-status-select{margin-top:3px}#post-body #normal-sortables{min-height:50px}.postbox{position:relative;min-width:255px;border:1px solid #e5e5e5;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.04);box-shadow:0 1px 1px rgba(0,0,0,.04);background:#fff}#trackback_url{width:99%}#normal-sortables .postbox .submit{background:transparent none;border:0 none;float:right;padding:0 12px;margin:0}.category-add input[type=text],.category-add select{width:100%;max-width:260px;vertical-align:baseline}#side-sortables .category-add input[type=text],#side-sortables .category-add select{margin:0 0 1em}#side-sortables .add-menu-item-tabs li,.wp-tab-bar li,ul.category-tabs li{display:inline;line-height:1.35em}.no-js .category-tabs li.hide-if-no-js{display:none}#side-sortables .add-menu-item-tabs a,.category-tabs a,.wp-tab-bar a{text-decoration:none}#post-body ul.add-menu-item-tabs li.tabs a,#post-body ul.category-tabs li.tabs a,#side-sortables .add-menu-item-tabs .tabs a,#side-sortables .category-tabs .tabs a,.wp-tab-bar .wp-tab-active a{color:#333}.category-tabs{margin:8px 0 5px}#category-adder h4{margin:10px 0}#side-sortables .add-menu-item-tabs,.wp-tab-bar{margin-bottom:3px}#normal-sortables .postbox #replyrow .submit{float:none;margin:0;padding:0 7px 5px}#side-sortables .submitbox .submit .preview,#side-sortables .submitbox .submit a.preview:hover,#side-sortables .submitbox .submit input{border:0 none}#side-sortables .inside-submitbox .insidebox,.stuffbox .insidebox{margin:11px 0}ul.add-menu-item-tabs,ul.category-tabs,ul.wp-tab-bar{margin-top:12px}ul.add-menu-item-tabs li,ul.category-tabs li{border:solid 1px transparent;position:relative}.wp-tab-active,ul.add-menu-item-tabs li.tabs,ul.category-tabs li.tabs{border:1px solid #dfdfdf;border-bottom-color:#fdfdfd;background-color:#fdfdfd}ul.add-menu-item-tabs li,ul.category-tabs li,ul.wp-tab-bar li{padding:3px 5px 5px}#postimagediv .inside img{max-width:100%;height:auto}form#tags-filter{position:relative}td.plugin-title strong,td.post-title strong{display:block;margin-bottom:.2em;font-size:14px}td.plugin-title p,td.post-title p{margin:6px 0}.ui-tabs-hide,.wp-hidden-children .wp-hidden-child{display:none}#post-body .tagsdiv #newtag{margin-right:5px;width:16em}#side-sortables input#post_password{width:94%}#side-sortables .tagsdiv #newtag{width:68%}#post-status-info{width:100%;border-spacing:0;border:1px solid #e5e5e5;border-top:0;background-color:#f7f7f7;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.04);box-shadow:0 1px 1px rgba(0,0,0,.04)}#post-status-info td{font-size:12px}.autosave-info{padding:2px;text-align:right}#editorcontent #post-status-info{border:0}#content-resize-handle{background:transparent url(../images/resize.gif) no-repeat scroll right bottom;width:12px;cursor:row-resize}.rtl #content-resize-handle{background:transparent url(../images/resize-rtl.gif) no-repeat scroll left bottom}#wp-word-count{display:block;padding:2px 10px}#timestampdiv select{height:21px;line-height:14px;padding:0;vertical-align:top;font-size:12px}#aa,#hh,#jj,#mn{padding:1px;font-size:12px}#hh,#jj,#mn{width:2em}#aa{width:3.4em}.curtime #timestamp{padding:2px 0 1px;display:inline!important;height:auto!important}#misc-publishing-actions label[for=post_status]:before,#post-body #visibility:before,#post-body .misc-pub-revisions:before,.curtime #timestamp:before,span.wp-media-buttons-icon:before{color:#888}#post-body #visibility:before,#post-body .misc-pub-revisions:before,.curtime #timestamp:before{font:400 20px/1 dashicons;speak:none;display:inline-block;padding:0 2px 0 0;top:0;left:-1px;position:relative;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important}#post-body #visibility:before{content:'\f177'}.curtime #timestamp:before{content:'\f145';top:-1px}#post-body .misc-pub-revisions:before{content:'\f321'}#timestampdiv{padding-top:5px;line-height:23px}#timestampdiv p{margin:8px 0 6px}#timestampdiv input{border-width:1px;border-style:solid}.notification-dialog{position:fixed;top:30%;left:50%;width:450px;margin-left:-225px;background:#fff;-webkit-box-shadow:0 3px 6px rgba(0,0,0,.3);box-shadow:0 3px 6px rgba(0,0,0,.3);line-height:1.5;z-index:1000005}.notification-dialog-background{position:fixed;top:0;left:0;right:0;bottom:0;background:#000;opacity:.7;filter:alpha(opacity=70);z-index:1000000}#post-lock-dialog .post-locked-message,#post-lock-dialog .post-taken-over{margin:25px}#post-lock-dialog .post-locked-message a.button{margin-right:10px}#post-lock-dialog .post-locked-avatar{float:left;margin:0 20px 20px 0}#post-lock-dialog .wp-tab-first{outline:0}#post-lock-dialog .locked-saving img{float:left;margin-right:3px}#post-lock-dialog.saved .locked-saved,#post-lock-dialog.saving .locked-saving{display:inline}#excerpt,.attachmentlinks{margin:0;height:4em;width:98%}.tagchecklist{margin-left:14px;font-size:12px;overflow:auto}.tagchecklist br{display:none}.tagchecklist strong{margin-left:-8px;position:absolute}.tagchecklist span{margin-right:25px;display:block;float:left;font-size:13px;line-height:1.8em;white-space:nowrap;cursor:default}.tagchecklist span a{margin:1px 0 0 -17px;cursor:pointer;width:20px;height:20px;display:block;float:left;text-indent:0;overflow:hidden;position:absolute}#poststuff h2{margin-top:20px;font-size:1.5em;margin-bottom:15px;padding:0 0 3px;clear:left}#poststuff h3{font-size:14px;padding:8px 12px;margin:0;line-height:1.4}#poststuff .inside{margin:6px 0 0}#poststuff .inside #page_template,#poststuff .inside #parent_id{max-width:100%}#poststuff .inside label.deleted,#poststuff .inside label.spam{color:red}#poststuff .inside label.waiting{color:orange}#poststuff .inside label.approved{color:green}.ie8 #poststuff .inside #page_template,.ie8 #poststuff .inside #parent_id{width:250px}#post-visibility-select{line-height:1.5em;margin-top:3px}#poststuff #submitdiv .inside{margin:0;padding:0}.edit-form-section{margin-bottom:20px}#postcustomstuff thead th{padding:5px 8px 8px;background-color:#f1f1f1}#postcustom #postcustomstuff .submit{border:0 none;float:none;padding:0 8px 8px}#side-sortables #postcustom #postcustomstuff .submit{margin:0;padding:0}#side-sortables #postcustom #postcustomstuff #the-list textarea{height:85px}#side-sortables #postcustom #postcustomstuff td.left input,#side-sortables #postcustom #postcustomstuff td.left select,#side-sortables #postcustomstuff #newmetaleft a{margin:3px 3px 0}#postcustomstuff table{margin:0;width:100%;border:1px solid #dfdfdf;border-spacing:0;background-color:#f9f9f9}#postcustomstuff tr{vertical-align:top}#postcustomstuff table input,#postcustomstuff table select,#postcustomstuff table textarea{width:96%;margin:8px}#side-sortables #postcustomstuff table input,#side-sortables #postcustomstuff table select,#side-sortables #postcustomstuff table textarea{margin:3px}#postcustomstuff td.left,#postcustomstuff th.left{width:38%}#postcustomstuff .submit input{margin:0;width:auto}#postcustomstuff #newmetaleft a{display:inline-block;margin:0 8px 8px;text-decoration:none}.no-js #postcustomstuff #enternew{display:none}#post-body-content .compat-attachment-fields{margin-bottom:20px}.compat-attachment-fields th{padding-top:5px;padding-right:10px}#select-featured-image{padding:4px 0;overflow:hidden}#select-featured-image img{max-width:100%;height:auto;margin-bottom:10px}#select-featured-image a{float:left;clear:both}#select-featured-image .remove{display:none;margin-top:10px}.js #select-featured-image.has-featured-image .remove{display:inline-block}.no-js #select-featured-image .choose{display:none}.post-state-format{overflow:hidden;display:inline-block;vertical-align:middle;height:20px;width:20px;margin-right:5px;margin-top:-4px}.post-state-format:before{display:block;height:20px;width:20px;font:400 20px/1 dashicons!important;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.post-format-icon:before,.post-state-format:before{color:#ddd;-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}a.post-format-icon:hover:before,a.post-state-format:hover:before{color:#2ea2cc}#post-formats-select{line-height:2em}#post-formats-select .post-format-icon:before{top:5px}input.post-format{margin-top:1px}label.post-format-icon{margin-left:0;padding:2px 0}.post-format-icon:before{position:relative;display:inline-block;margin-right:7px;font:400 20px/1 dashicons;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.post-format-icon.post-format-standard:before,.post-state-format.post-format-standard:before,a.post-state-format.format-standard:before{content:'\f109'}.post-format-icon.post-format-image:before,.post-state-format.post-format-image:before,a.post-state-format.format-image:before{content:'\f128'}.post-format-icon.post-format-gallery:before,.post-state-format.post-format-gallery:before,a.post-state-format.format-gallery:before{content:'\f161'}.post-format-icon.post-format-audio:before,.post-state-format.post-format-audio:before,a.post-state-format.format-audio:before{content:'\f127'}.post-format-icon.post-format-video:before,.post-state-format.post-format-video:before,a.post-state-format.format-video:before{content:'\f126'}.post-format-icon.post-format-chat:before,.post-state-format.post-format-chat:before,a.post-state-format.format-chat:before{content:'\f125'}.post-format-icon.post-format-status:before,.post-state-format.post-format-status:before,a.post-state-format.format-status:before{content:'\f130'}.post-format-icon.post-format-aside:before,.post-state-format.post-format-aside:before,a.post-state-format.format-aside:before{content:'\f123'}.post-format-icon.post-format-quote:before,.post-state-format.post-format-quote:before,a.post-state-format.format-quote:before{content:'\f122'}.post-format-icon.post-format-link:before,.post-state-format.post-format-link:before,a.post-state-format.format-link:before{content:'\f103'}.category-adder{margin-left:120px;padding:4px 0}.category-adder h4{margin:0 0 8px}#side-sortables .category-adder{margin:0}.categorydiv div.tabs-panel,.customlinkdiv div.tabs-panel,.posttypediv div.tabs-panel,.taxonomydiv div.tabs-panel,.wp-tab-panel{min-height:42px;max-height:200px;overflow:auto;padding:0 .9em;border:solid 1px #dfdfdf;background-color:#fdfdfd}div.tabs-panel-active{display:block}div.tabs-panel-inactive{display:none}#front-page-warning,#front-static-pages ul,.categorydiv ul.categorychecklist ul,.customlinkdiv ul.categorychecklist ul,.inline-editor ul.cat-checklist ul,.posttypediv ul.categorychecklist ul,.taxonomydiv ul.categorychecklist ul,ul.export-filters{margin-left:18px}ul.categorychecklist li{margin:0;padding:0;line-height:22px;word-wrap:break-word}.categorydiv .tabs-panel,.customlinkdiv .tabs-panel,.posttypediv .tabs-panel,.taxonomydiv .tabs-panel{border-width:3px;border-style:solid}.form-wrap label{display:block;padding:2px;font-size:12px}.form-field input,.form-field textarea{border-style:solid;border-width:1px;width:95%}.form-wrap p,p.description{margin:2px 0 5px;color:#666}.form-wrap p,p.description,p.help,span.description{font-size:13px;font-style:italic}.form-wrap .form-field{margin:0 0 10px;padding:8px 0}.form-wrap .form-field #parent{max-width:100%}.col-wrap h3{margin:12px 0;font-size:1.1em}.col-wrap p.submit{margin-top:-10px}.tagsdiv{margin-top:-8px}#poststuff .taghint{color:#aaa;margin:15px 0 -24px 12px}#poststuff .tagsdiv .howto{margin:0 0 6px}.ajaxtag .newtag{position:relative}.tagsdiv .newtag{width:180px}.tagsdiv .the-tags{display:block;height:60px;margin:0 auto;overflow:auto;width:260px}#post-body-content .tagsdiv .the-tags{margin:0 5px}.taghint{color:#aaa;margin:-17px 0 0 7px;visibility:hidden}input.newtag~div.taghint{visibility:visible}input.newtag:focus~div.taghint{visibility:hidden}p.popular-tags{border:0;line-height:2em;max-width:1000px;padding:8px 12px 12px;text-align:justify}p.popular-tags a{padding:0 3px}.tagcloud{width:97%;margin:0 0 40px;text-align:justify}.tagcloud h3{margin:2px 0 12px}.ac_results{padding:0;margin:0;list-style:none;position:absolute;z-index:10000;display:none;border:1px solid gray;background-color:#fff}.wp-customizer .ac_results{z-index:500000}.ac_results li{padding:2px 5px;white-space:nowrap;color:#101010;text-align:left}.ac_over{background-color:#f0f0b8;cursor:pointer}.ac_match{text-decoration:underline}.comment-php .wp-editor-area{height:200px}.comment-ays{margin-bottom:0;border-bottom-style:solid;border-bottom-width:1px}.comment-ays .alt{background-color:transparent}.spam-undo-inside,.trash-undo-inside{margin:1px 8px 1px 0;line-height:16px}.spam-undo-inside .avatar,.trash-undo-inside .avatar{height:20px;width:20px;margin-right:8px;vertical-align:middle}.stuffbox .editcomment{clear:none}#comment-status-radio p{margin:3px 0 5px}#comment-status-radio input{margin:2px 3px 5px 0;vertical-align:middle}#comment-status-radio label{padding:5px 0}table.links-table{width:100%;border-spacing:0}.links-table th{font-weight:400;text-align:left;vertical-align:top;min-width:80px;width:20%;word-wrap:break-word}.links-table td,.links-table th{padding:5px 0}.links-table td label{margin-right:8px}.links-table td input[type=text],.links-table td textarea{width:100%}.links-table #link_rel{max-width:280px}@media print,(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){#content-resize-handle,#post-body .wp_themeSkin .mceStatusbar a.mceResize{background:transparent url(../images/resize-2x.gif) no-repeat scroll right bottom;-webkit-background-size:11px 11px;background-size:11px 11px}.rtl #content-resize-handle,.rtl #post-body .wp_themeSkin .mceStatusbar a.mceResize{background:transparent url(../images/resize-rtl-2x.gif) no-repeat scroll right bottom}}@media only screen and (max-width:850px){#poststuff{min-width:0}#wpbody-content #poststuff #post-body{margin:0}#wpbody-content #post-body.columns-2 #postbox-container-1{margin-right:0;width:100%}#poststuff #postbox-container-1 #side-sortables:empty,#poststuff #postbox-container-1 .empty-container{border:0 none;height:0;min-height:0}#poststuff #post-body.columns-2 #side-sortables{min-height:0}.columns-prefs,.screen-layout{display:none}}@media screen and (max-width:782px){#post-body-content{min-width:0}#titlediv #title-prompt-text{padding:10px}#poststuff h3{padding:12px}.post-format-options{padding-right:0}.post-format-options a{margin-right:5px;margin-bottom:5px;min-width:52px}.post-format-options .post-format-title{font-size:11px}.post-format-options a div{height:28px;width:28px}.post-format-options a div:before{font-size:26px!important}#post-visibility-select{line-height:280%}.wp-core-ui .save-post-visibility,.wp-core-ui .save-timestamp{vertical-align:middle;margin-right:15px}.timestamp-wrap select#mm{display:block;width:100%;margin-bottom:10px}.timestamp-wrap #aa,.timestamp-wrap #hh,.timestamp-wrap #jj,.timestamp-wrap #mn{padding:12px 3px;font-size:14px;margin-bottom:5px;width:auto;text-align:center}ul.category-tabs{margin:30px 0 15px}ul.category-tabs li.tabs{padding:15px}ul.categorychecklist li{margin-bottom:15px}ul.categorychecklist ul{margin-top:15px}.category-add input[type=text],.category-add select{max-width:none;margin-bottom:15px}.tagsdiv .newtag{width:100%;height:auto;margin-bottom:15px}.tagchecklist{margin:25px 10px}.tagchecklist span{font-size:16px;line-height:120%}#commentstatusdiv p{line-height:2.8}.mceToolbar *{white-space:normal!important}.mceToolbar td,.mceToolbar tr{float:left!important}.wp_themeSkin a.mceButton{width:30px;height:30px}.wp_themeSkin .mceButton .mceIcon{margin-top:5px;margin-left:5px}.wp_themeSkin .mceSplitButton{margin-top:1px}.wp_themeSkin .mceSplitButton td a.mceAction{padding-top:6px;padding-bottom:6px;padding-left:6px;padding-right:3px}.wp_themeSkin .mceSplitButton td a.mceOpen,.wp_themeSkin .mceSplitButtonEnabled:hover td a.mceOpen{padding-top:6px;padding-bottom:6px;background-position:1px 6px}.wp_themeSkin table.mceListBox{margin:5px}div.quicktags-toolbar input{padding:10px 20px}#wp-content-editor-tools{overflow:hidden;padding:20px 15px 1px 0;top:1px}a.wp-switch-editor{font-size:16px;line-height:1em;margin:3px 0 0 7px;padding:12px 15px}#wp-content-media-buttons a{font-size:16px;line-height:37px;height:39px;padding:0 20px 0 15px}.wp-media-buttons span.jetpack-contact-form-icon,.wp-media-buttons span.wp-media-buttons-icon{width:22px!important;margin-top:-3px!important;margin-left:-5px!important}.wp-media-buttons #insert-jetpack-contact-form span.jetpack-contact-form-icon:before,.wp-media-buttons .add_media span.wp-media-buttons-icon:before{font-size:20px!important}#content_wp_fullscreen{display:none}.misc-pub-section{padding:20px 10px}.misc-pub-section>a{float:right;font-size:16px}#delete-action,#publishing-action{line-height:47px}.comment-ays{border-bottom:0}.links-table #link_rel{max-width:none}.links-table td,.links-table th{padding:10px 0}}@media only screen and (max-width:500px){#wp-content-media-buttons a{font-size:14px;padding:0 10px}}.revisions-control-frame,.revisions-diff-frame{position:relative}.revisions-controls{padding-top:40px;height:100px;z-index:1}.revisions-controls input[type=checkbox]{position:relative;top:-1px;vertical-align:text-bottom}.revisions.pinned .revisions-controls{position:fixed;top:0;height:82px;background:#fff;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.1);box-shadow:0 1px 3px rgba(0,0,0,.1)}.revisions-tickmarks{position:relative;margin:0 auto;height:.7em;top:7px;max-width:70%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;background-color:#fff}.revisions-tickmarks>div{position:absolute;height:100%;border-left:1px solid #aaa;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.revisions-tickmarks>div:first-child{border-width:0}.comparing-two-revisions .revisions-controls{height:140px}.comparing-two-revisions.pinned .revisions-controls{height:124px}.revisions .diff-error{position:absolute;text-align:center;margin:0 auto;width:100%;display:none}.revisions.diff-error .diff-error{display:block}.revisions .loading-indicator{position:fixed;vertical-align:middle;opacity:0;width:100%;top:50%;margin-left:-90px;-webkit-transition:opacity .5s;transition:opacity .5s;filter:alpha(opacity=0)}body.folded .revisions .loading-indicator{margin-left:-32px}.revisions .loading-indicator span.spinner{display:block;margin:0 auto;float:none}.revisions.loading .loading-indicator{opacity:1;filter:alpha(opacity=100)}.revisions .diff{-webkit-transition:opacity .5s;transition:opacity .5s}.revisions.loading .diff{opacity:.5;filter:alpha(opacity=50)}.revisions.diff-error .diff{visibility:hidden}.revisions-meta{margin-top:20px;background-color:#fff;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.1);box-shadow:0 1px 3px rgba(0,0,0,.1)}.revisions.pinned .revisions-meta{-webkit-box-shadow:none;box-shadow:none}.revision-toggle-compare-mode{position:absolute;top:0;right:0}.comparing-two-revisions .revisions-next,.comparing-two-revisions .revisions-previous,.revisions-meta .diff-meta-to strong{display:none}.revisions-controls .author-card .date{color:#777}.revisions-controls .author-card.autosave{color:#d54e21}.revisions-controls .author-card .author-name{font-weight:700}.comparing-two-revisions .diff-meta-to strong{display:block}.revisions.pinned .revisions-buttons{padding:0 11px}.revisions-next,.revisions-previous{position:relative;z-index:1}.revisions-previous{float:left}.revisions-next{float:right}.revisions-controls .wp-slider{max-width:70%;margin:0 auto;top:-3px}.revisions-diff{padding:15px;background-color:#fff;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.1);box-shadow:0 1px 3px rgba(0,0,0,.1)}.revisions-diff h3:first-child{margin-top:0}#revisions-meta-restored img,.post-revisions li img{vertical-align:middle}table.diff tbody tr td:nth-child(2){width:4%}table.diff{table-layout:fixed;width:100%;white-space:pre-wrap}table.diff col.content{width:auto}table.diff col.content.diffsplit{width:48%}table.diff col.diffsplit.middle{width:auto}table.diff col.ltype{width:30px}table.diff tr{background-color:transparent}table.diff td,table.diff th{font-family:Consolas,Monaco,monospace;font-size:14px;line-height:1.618;padding:.5em;vertical-align:top;word-wrap:break-word}table.diff td h1,table.diff td h2,table.diff td h3,table.diff td h4,table.diff td h5,table.diff td h6{margin:0}table.diff .diff-addedline ins,table.diff .diff-deletedline del{text-decoration:none}table.diff .diff-deletedline{background-color:#ffe9e9}table.diff .diff-deletedline del{background-color:#faa}table.diff .diff-addedline{background-color:#e9ffe9}table.diff .diff-addedline ins{background-color:#afa}.diff-meta{padding:5px;clear:both;min-height:32px}.diff-title strong{line-height:32px;min-width:60px;text-align:right;float:left;margin-right:5px}.revisions-controls .author-card .author-info{font-size:12px;line-height:16px}.revisions-controls .author-card .author-info,.revisions-controls .author-card .avatar{float:left;margin-left:6px;margin-right:6px}.revisions-controls .author-card .byline{display:block;font-size:12px}.revisions-controls .author-card .avatar{vertical-align:middle}.diff-meta input.restore-revision{float:right;margin-left:6px;margin-right:6px;margin-top:4px}.diff-meta-from{display:none}.comparing-two-revisions .diff-meta-from{display:block}.revisions-tooltip{position:absolute;bottom:105px;margin-right:0;margin-left:-69px;z-index:0;max-width:350px;min-width:130px;padding:8px 4px;opacity:0}.revisions-tooltip.flipped{margin-left:0;margin-right:-70px}.revisions.pinned .revisions-tooltip{display:none!important}.comparing-two-revisions .revisions-tooltip{bottom:145px}.revisions-tooltip-arrow{width:70px;height:15px;overflow:hidden;position:absolute;left:0;margin-left:35px;bottom:-15px}.revisions-tooltip.flipped .revisions-tooltip-arrow{margin-left:0;margin-right:35px;left:auto;right:0}.revisions-tooltip-arrow>span{content:"";position:absolute;left:20px;top:-20px;width:25px;height:25px;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.revisions-tooltip.flipped .revisions-tooltip-arrow>span{left:auto;right:20px}.ie8 .revisions-tooltip-arrow>span{left:15px;top:-25px;-ms-filter:"progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476)"}.ie8 .revisions-tooltip.flipped .revisions-tooltip-arrow>span{right:25px}.revisions-tooltip,.revisions-tooltip-arrow>span{border:1px solid #d7d7d7;background-color:#fff}.revisions-tooltip{display:none}.arrow{width:70px;height:16px;overflow:hidden;position:absolute;left:0;margin-left:-35px;bottom:90px;z-index:10000}.arrow::after{z-index:9999;background-color:#fff;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.1);box-shadow:0 1px 3px rgba(0,0,0,.1)}.arrow.top{top:-16px;bottom:auto}.arrow.left{left:20%}.arrow:after{content:"";position:absolute;left:20px;top:-20px;width:25px;height:25px;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.revisions-tooltip,.revisions-tooltip-arrow:after{border-width:1px;border-style:solid}div.revisions-controls>.wp-slider>.ui-slider-handle{margin-left:-10px}.rtl div.revisions-controls>.wp-slider>.ui-slider-handle{margin-right:-10px}.wp-slider.ui-slider{position:relative;border:1px solid #d7d7d7;text-align:left;cursor:pointer}.wp-slider .ui-slider-handle{-webkit-border-radius:50%;border-radius:50%;height:18px;margin-top:-3px;outline:0;position:absolute;width:18px;z-index:2}.wp-slider .ui-slider-handle,.wp-slider .ui-slider-handle.focus,.wp-slider .ui-slider-handle.ui-state-hover{background:#2ea2cc;border:1px solid #0074a2;-webkit-box-shadow:inset 0 1px 0 #78c8e6,0 1px 0 rgba(0,0,0,.15);box-shadow:inset 0 1px 0 #78c8e6,0 1px 0 rgba(0,0,0,.15)}.wp-slider .ui-slider-handle:before{background:0 0;position:absolute;top:0;left:0;color:#fff;content:"\f229";font:400 18px/1 dashicons;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.wp-slider .ui-slider-handle.from-handle:before,.wp-slider .ui-slider-handle.to-handle:before{font-size:20px!important;margin:-1px 0 0 -1px}.wp-slider .ui-slider-handle.from-handle:before{content:'\f139'}.rtl .wp-slider .ui-slider-handle.from-handle:before,.wp-slider .ui-slider-handle.to-handle:before{content:'\f141'}.rtl .wp-slider .ui-slider-handle.to-handle:before{content:'\f139';right:-1px}.wp-slider .ui-slider-range{position:absolute;font-size:.7em;display:block;border:0;background-color:transparent;background-image:none}.wp-slider.ui-slider-horizontal{height:.7em}.wp-slider.ui-slider-horizontal .ui-slider-handle{top:-.25em;margin-left:-.6em}.wp-slider.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.wp-slider.ui-slider-horizontal .ui-slider-range-min{left:0}.wp-slider.ui-slider-horizontal .ui-slider-range-max{right:0}@media print,(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.revision-tick.completed-false{background-image:url(../images/spinner-2x.gif)}}@media screen and (max-width:782px){#diff-next-revision,#diff-previous-revision{margin-top:-1em}table.diff{-ms-word-break:break-all;word-break:break-all;word-wrap:break-word}}.media-item .describe{border-collapse:collapse;width:100%;border-top:1px solid #dfdfdf;clear:both;cursor:default}.media-item.media-blank .describe{border:0}.media-item .describe th{vertical-align:top;text-align:left;padding:5px 10px 10px;width:140px}.media-item .describe .align th{padding-top:0}.media-item .media-item-info tr{background-color:transparent}.media-item .describe td{padding:0 8px 8px 0;vertical-align:top}.media-item thead.media-item-info td{padding:4px 10px 0}.media-item .media-item-info .A1B1{padding:0 0 0 10px}.media-item td.savesend{padding-bottom:15px}.media-item .thumbnail{max-height:128px;max-width:128px}#wpbody-content #async-upload-wrap a{display:none}.media-upload-form{margin-top:20px}.media-upload-form td label{margin-right:6px;margin-left:2px}.media-upload-form .align .field label{display:inline;padding:0 0 0 23px;margin:0 1em 0 3px;font-weight:600}.media-upload-form tr.image-size label{margin:0 0 0 5px;font-weight:600}.media-upload-form th.label label{font-weight:600;margin:.5em;font-size:13px}.media-upload-form th.label label span{padding:0 5px}.media-item .describe input[type=text],.media-item .describe textarea{width:460px}.media-item .describe p.help{margin:0;padding:0 0 0 5px}.describe-toggle-off,.describe-toggle-on,.media-item .edit-attachment{display:block;line-height:36px;float:right}.media-item .describe-toggle-off,.media-item.open .describe-toggle-on{display:none}.media-item.open .describe-toggle-off{display:block}#media-items .media-item{border-bottom:1px solid #dfdfdf;min-height:36px;position:relative;width:100%}#media-items{width:623px}.media-new-php #media-items{margin:1em 0}#media-items:empty{border:0 none}.media-item .filename{line-height:36px;overflow:hidden}.media-item .pinkynail{float:left;margin:2px 10px 0 0;max-width:40px;max-height:32px}.media-item .startclosed,.media-item .startopen{display:none}.media-item .original{position:relative;height:34px}.media-item .progress{float:right;height:22px;margin:7px 0 0;width:200px;line-height:2em;padding:0;overflow:hidden;margin-bottom:2px;-webkit-border-radius:22px;border-radius:22px;background:#ddd;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.media-item .bar{z-index:9;width:0;height:100%;margin-top:-22px;-webkit-border-radius:22px;border-radius:22px;background-color:#0074a2;-webkit-box-shadow:inset 0 0 2px rgba(0,0,0,.3);box-shadow:inset 0 0 2px rgba(0,0,0,.3)}.media-item .progress .percent{z-index:10;position:relative;width:200px;padding:0;color:#fff;text-align:center;line-height:22px;font-weight:400;text-shadow:0 1px 2px rgba(0,0,0,.2)}.upload-php .fixed .column-parent{width:15%}.js .html-uploader #plupload-upload-ui{display:none}.js .html-uploader #html-upload-ui{display:block}.media-upload-form .media-item.error{margin:0;padding:0}.media-item .error-div,.media-upload-form .media-item.error p{line-height:16px;margin:5px 10px;padding:0}.media-item .error-div a.dismiss{display:block;float:right;margin:5px 4px 0 15px}.find-box{background-color:#fff;-webkit-box-shadow:0 3px 6px rgba(0,0,0,.3);box-shadow:0 3px 6px rgba(0,0,0,.3);width:600px;overflow:hidden;margin-left:-300px;position:fixed;top:30px;bottom:30px;left:50%;z-index:100105}.find-box-head{background:#fcfcfc;border-bottom:1px solid #dfdfdf;height:36px;font-size:18px;font-weight:600;line-height:36px;padding:0 36px 0 16px;position:absolute;top:0;left:0;right:0}.find-box-inside{overflow:auto;padding:16px;background-color:#fff;position:absolute;top:37px;bottom:45px;overflow-y:scroll;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.find-box-search{padding-bottom:16px}.find-box-search .spinner{float:none;left:125px;position:absolute;top:18px}#find-posts-input,#find-posts-search{float:left}#find-posts-input{width:140px;height:28px;margin:0 4px 0 0}.widefat .found-radio{padding-right:0;width:16px}#find-posts-close{width:36px;height:36px;position:absolute;top:0;right:0;cursor:pointer;text-align:center;color:#666}#find-posts-close:hover{color:#2ea2cc}#find-posts-close:before{font:400 20px/36px dashicons;vertical-align:top;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:'\f158'}.find-box-buttons{padding:8px 16px;background:#fcfcfc;border-top:1px solid #dfdfdf;position:absolute;bottom:0;left:0;right:0}@media screen and (max-width:782px){.find-box-inside{bottom:57px}}@media screen and (max-width:660px){.find-box{top:0;bottom:0;left:0;right:0;margin:0;width:100%}}.ui-find-overlay{position:fixed;top:0;left:0;right:0;bottom:0;background:#000;opacity:.7;filter:alpha(opacity=70);z-index:100100}ul#dismissed-updates{display:none}form.upgrade{margin-top:8px}form.upgrade .hint{font-style:italic;font-size:85%;margin:-.5em 0 2em 0}#poststuff .inside .the-tagcloud{margin:5px 0 10px;padding:8px;border:1px solid #ddd;line-height:1.8em;word-spacing:3px;-webkit-border-radius:6px;border-radius:6px}.drag-drop #drag-drop-area{border:4px dashed #bbb;height:200px}.drag-drop .drag-drop-inside{margin:70px auto 0;width:250px}.drag-drop-inside p{color:#aaa;font-size:14px;margin:5px 0;display:none}.drag-drop .drag-drop-inside p{text-align:center}.drag-drop-inside p.drag-drop-info{font-size:20px}.drag-drop .drag-drop-inside p,.drag-drop-inside p.drag-drop-buttons{display:block}.drag-drop.drag-over #drag-drop-area{border-color:#83b4d8}#plupload-upload-ui{position:relative}.wp_attachment_details label[for=content]{font-size:13px;line-height:1.5;margin:1em 0}.wp_attachment_details #attachment_caption{height:4em}.describe .image-editor{vertical-align:top}.imgedit-wrap{position:relative}.imgedit-settings p{margin:8px 0 0}.describe .imgedit-wrap .imgedit-settings{padding:0 5px}.wp_attachment_holder div.updated{margin-top:0}.wp_attachment_holder .imgedit-wrap>div{height:auto;overflow:hidden}.wp_attachment_holder .imgedit-wrap .imgedit-panel-content{padding-right:16px;width:auto;overflow:hidden}.wp_attachment_holder .imgedit-wrap .imgedit-settings{float:right;width:250px}.imgedit-settings input{margin-top:0;vertical-align:middle}.imgedit-wait{position:absolute;top:0;background:#fff url(../images/spinner.gif) no-repeat center;-webkit-background-size:20px 20px;background-size:20px 20px;opacity:.7;filter:alpha(opacity=70);width:100%;height:500px;display:none}.no-float{float:none}.imgedit-settings .disabled,.media-disabled{color:grey}.A1B1,.wp_attachment_image{overflow:hidden}.A1B1 .button,.wp_attachment_image .button{float:left}.no-js .wp_attachment_image .button{display:none}.A1B1 .spinner,.wp_attachment_image .spinner{float:left;padding:0 0 4px;vertical-align:bottom}.imgedit-menu{margin:0 0 12px;min-width:300px}.imgedit-menu div{float:left;width:32px;border:1px solid #d5d5d5;background:#f1f1f1;margin:0 8px 0 0;height:32px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-align:center;line-height:28px;color:#777;cursor:pointer}.imgedit-menu div:before{font:400 20px/1 dashicons;speak:none;vertical-align:middle}.imgedit-menu div:hover{border-color:#c1c1c1;background-color:#eaeaea;color:#333}.imgedit-menu div.disabled{border-color:#ccc;background-color:#ddd;color:#777;filter:alpha(opacity=50);opacity:.5;cursor:default}.imgedit-crop:before{content:'\f165'}.imgedit-rleft:before{content:'\f166'}.imgedit-rright:before{content:'\f167'}.imgedit-flipv:before{content:'\f168'}.imgedit-fliph:before{content:'\f169'}.imgedit-undo:before{content:'\f171'}.imgedit-redo:before{content:'\f172'}.imgedit-crop-wrap{position:relative}.imgedit-crop{margin:0 8px 0 0}.imgedit-rleft{margin:0 3px}.imgedit-rright{margin:0 8px 0 3px}.imgedit-flipv{margin:0 3px}.imgedit-fliph{margin:0 8px 0 3px}.imgedit-undo{margin:0 3px}.imgedit-redo{margin:0 8px 0 3px}.imgedit-applyto img{margin:0 8px 0 0}.imgedit-group-top{margin:5px 0}#poststuff .imgedit-group-top h3{padding:0}.imgedit-group-top h3 a{text-decoration:none}.imgedit-applyto .imgedit-label{padding:2px 0 0;display:block}.imgedit-help{display:none;font-style:italic}a.imgedit-help-toggle{text-decoration:none}.form-table td.imgedit-response{padding:0}.imgedit-submit{margin:8px 0}.imgedit-submit-btn{margin-left:20px}.imgedit-wrap .nowrap{white-space:nowrap}span.imgedit-scale-warn{color:red;font-size:20px;font-style:normal;visibility:hidden;vertical-align:middle}.imgedit-group{margin-bottom:8px;padding:2px 10px}audio,video{display:inline-block;max-width:100%}.mejs-container{width:100%}@media print,(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.imgedit-wait{background-image:url(../images/spinner-2x.gif)}}@media screen and (max-width:782px){.wp_attachment_details label[for=content]{font-size:14px;line-height:1.5em}}.theme-browser .themes{clear:both;padding:0 0 100px}.themes-php .wrap h2{float:left;margin-bottom:15px}.network-admin.themes-php .wrap h2{margin-bottom:0}.themes-php .wrap h2 .button{margin-left:20px}.theme-navigation .theme-count,.themes-php .wrap .theme-count{color:#fff;-webkit-border-radius:30px;border-radius:30px;background:#777;font-size:14px;padding:4px 10px;font-weight:600;margin-left:5px;margin-right:20px;position:relative;top:-3px}.theme-navigation a{text-decoration:none}.themes-php div.error,.themes-php div.updated{margin:0 0 20px;clear:both}.themes-php div.updated a{text-decoration:underline}.theme-browser .theme{cursor:pointer;float:left;margin:0 4% 4% 0;position:relative;width:30.6%;border:1px solid #dedede;-webkit-box-shadow:0 1px 1px -1px rgba(0,0,0,.1);box-shadow:0 1px 1px -1px rgba(0,0,0,.1);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.ie8 .theme-browser .theme{width:30%;margin:0 3% 4% 0}.theme-browser .theme:nth-child(3n){margin-right:0}.theme-browser .theme:focus,.theme-browser .theme:hover{cursor:pointer}.theme-browser .theme .theme-name{font-size:15px;font-weight:600;height:18px;margin:0;padding:15px;-webkit-box-shadow:inset 0 1px 0 rgba(0,0,0,.1);box-shadow:inset 0 1px 0 rgba(0,0,0,.1);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;background:#fff;background:rgba(255,255,255,.65)}.theme-browser .theme .theme-actions{-ms-filter:"alpha(Opacity=0)";opacity:0;-webkit-transition:opacity .1s ease-in-out;transition:opacity .1s ease-in-out;position:absolute;bottom:0;right:0;height:38px;padding:9px 10px 0;background:rgba(244,244,244,.7);border-left:1px solid rgba(0,0,0,.05)}.theme-browser .theme.focus .theme-actions,.theme-browser .theme:focus .theme-actions,.theme-browser .theme:hover .theme-actions{-ms-filter:"alpha(Opacity=100)";opacity:1}.theme-browser .theme .theme-actions .button-primary{margin-right:3px}.theme-browser .theme .theme-actions .button-secondary{float:none;margin-left:3px}.theme-browser .theme .theme-screenshot{display:block;overflow:hidden;position:relative;-webkit-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out}.theme-browser .theme .theme-screenshot:after{content:'';display:block;padding-top:66.66666%}.theme-browser .theme .theme-screenshot img{height:auto;position:absolute;left:0;top:0;width:100%;-webkit-transform:translateZ(0);-webkit-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out}.theme-browser .theme:focus .theme-screenshot,.theme-browser .theme:hover .theme-screenshot{background:#fff}.theme-browser.rendered .theme:focus .theme-screenshot img,.theme-browser.rendered .theme:hover .theme-screenshot img{opacity:.4}.theme-browser .theme .more-details{-ms-filter:"alpha(Opacity=0)";opacity:0;position:absolute;top:35%;right:25%;left:25%;background:#222;background:rgba(0,0,0,.7);color:#fff;font-size:15px;text-shadow:0 1px 0 rgba(0,0,0,.6);-webkit-font-smoothing:antialiased;font-weight:600;padding:15px 12px;text-align:center;-webkit-border-radius:3px;border-radius:3px;-webkit-transition:opacity .1s ease-in-out;transition:opacity .1s ease-in-out}.theme-browser .theme:focus{outline:1px dotted #222}.theme-browser .theme:focus .more-details{opacity:1}.theme-browser .theme.active:focus .theme-actions{display:block}.theme-browser.rendered .theme:focus .more-details,.theme-browser.rendered .theme:hover .more-details{-ms-filter:"alpha(Opacity=100)";opacity:1}.theme-browser .theme .theme-installed,.theme-browser .theme .theme-update{background:#d54e21;background:rgba(213,78,33,.95);color:#fff;display:block;font-size:13px;font-weight:400;height:48px;line-height:48px;padding:0 10px;position:absolute;top:0;right:0;left:0;border-bottom:1px solid rgba(0,0,0,.25);overflow:hidden}.theme-browser .theme .theme-installed:before,.theme-browser .theme .theme-update:before{content:'\f463';display:inline-block;font:400 20px/1 dashicons;margin:0 6px 0 0;opacity:.8;position:relative;top:5px;speak:none;-webkit-font-smoothing:antialiased}.theme-browser .theme.active .theme-name{background:#2f2f2f;color:#fff;padding-right:110px;font-weight:300;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.5);box-shadow:inset 0 1px 1px rgba(0,0,0,.5)}.theme-browser .theme.active .theme-name span{font-weight:600}.theme-browser .theme.active .theme-actions{background:rgba(49,49,49,.7);border-left:0;opacity:1}.theme-browser .theme.active .theme-actions .button-primary{margin-right:0}.theme-browser .theme .theme-author{background:#222;color:#eee;display:none;font-size:14px;margin:0 10px;padding:5px 10px;position:absolute;bottom:56px}.theme-browser .theme.display-author .theme-author{display:block}.theme-browser .theme.display-author .theme-author a{color:inherit;text-decoration:none}.theme-browser .theme.add-new-theme{border:0;-webkit-box-shadow:none;box-shadow:none}.theme-browser .theme.add-new-theme a{color:#999;text-decoration:none;display:block;position:relative;z-index:1}.theme-browser .theme.add-new-theme:after{display:block;content:'';-ms-filter:"alpha(Opacity=100)";opacity:1;background:0 0;background:rgba(0,0,0,0);position:absolute;top:0;left:0;right:0;bottom:0;padding:10% 0 0;text-shadow:none;border:5px dashed #d5d2ca;border:5px dashed rgba(0,0,0,.1);-webkit-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.theme-browser .theme.add-new-theme span:after{background:#e5e5e5;background:rgba(153,153,153,.1);-webkit-border-radius:50%;border-radius:50%;display:inline-block;content:'\f132';-webkit-font-smoothing:antialiased;font:400 74px/115px dashicons;width:100px;height:100px;vertical-align:middle;text-align:center;color:#999;position:absolute;top:30%;left:50%;margin-left:-50px;text-indent:-4px;padding:0;text-shadow:none;z-index:4}.rtl .theme-browser .theme.add-new-theme span:after{text-indent:4px}.theme-browser .theme.add-new-theme:focus .theme-screenshot,.theme-browser .theme.add-new-theme:hover .theme-screenshot{background:0 0}.theme-browser .theme.add-new-theme:focus span:after,.theme-browser .theme.add-new-theme:hover span:after{background:#fff;color:#0074a2}.theme-browser .theme.add-new-theme:focus:after,.theme-browser .theme.add-new-theme:hover:after{border-color:transparent;color:#fff;background:#0074a2;content:''}.theme-browser .theme.add-new-theme .theme-name{background:0 0;text-align:center;-webkit-box-shadow:none;box-shadow:none;font-weight:400;position:relative;top:0;margin-top:-10%;margin-bottom:10%}.theme-browser .theme.add-new-theme:focus .theme-name,.theme-browser .theme.add-new-theme:hover .theme-name{color:#fff;z-index:2}.themes-php .theme-search{position:relative;top:-2px;left:20px;font-size:16px;font-weight:300;line-height:1.5;width:280px}.theme-overlay .theme-backdrop{position:absolute;left:-20px;right:0;top:0;bottom:0;background:#f1f1f1;background:rgba(238,238,238,.9);z-index:10}body.theme-overlay-open{overflow:hidden}.theme-overlay .theme-header{position:absolute;top:0;left:0;right:0;height:48px;border-bottom:1px solid #ddd}.theme-overlay .theme-header .close{cursor:pointer;height:48px;width:50px;text-align:center;float:right;border:0;border-left:1px solid #ddd;background-color:transparent}.theme-overlay .theme-header .close:focus:before,.theme-overlay .theme-header .close:hover:before{color:#fff}.theme-overlay .theme-header .close:before{font:400 30px/50px dashicons!important;color:#777;display:inline-block;content:'\f335';font-weight:300}.theme-overlay .theme-header .left,.theme-overlay .theme-header .right{cursor:pointer;color:#777;background-color:transparent;height:48px;width:54px;float:left;text-align:center;border:0;border-right:1px solid #ddd}.theme-overlay .theme-header .close:focus,.theme-overlay .theme-header .close:hover,.theme-overlay .theme-header .left:focus,.theme-overlay .theme-header .left:hover,.theme-overlay .theme-header .right:focus,.theme-overlay .theme-header .right:hover{background:#0074a2;color:#fff}.theme-overlay .theme-header .left.disabled,.theme-overlay .theme-header .left.disabled:hover,.theme-overlay .theme-header .right.disabled,.theme-overlay .theme-header .right.disabled:hover{color:#ccc;background:inherit;cursor:inherit}.theme-overlay .theme-header .left:before,.theme-overlay .theme-header .right:before{font:400 20px/50px dashicons!important;display:inline;font-weight:300}.theme-overlay .theme-header .left:before{content:'\f340'}.theme-overlay .theme-header .right:before{content:'\f344'}.rtl .theme-overlay .theme-header .left:before{content:'\f345'}.rtl .theme-overlay .theme-header .right:before{content:'\f341'}.theme-overlay .theme-wrap{clear:both;position:fixed;top:9%;left:190px;right:30px;bottom:3%;background:#fff;-webkit-box-shadow:0 1px 20px 5px rgba(0,0,0,.1);box-shadow:0 1px 20px 5px rgba(0,0,0,.1);z-index:20;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.theme-overlay .theme-wrap:after{content:".";display:block;height:0;clear:both;visibility:hidden}body.folded .theme-overlay .theme-wrap{left:70px}.theme-overlay .theme-about{position:absolute;top:49px;bottom:57px;left:0;right:0;overflow:auto;padding:2% 4%}.theme-overlay .theme-about:after{content:".";display:block;height:0;clear:both;visibility:hidden}.theme-overlay .theme-actions{position:absolute;text-align:center;bottom:0;left:0;right:0;padding:10px 25px 5px;background:#f3f3f3;z-index:30;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border-top:1px solid #eee}.ie8 .theme-overlay .theme-actions{border:1px solid #eee}.theme-overlay .theme-actions a{margin-right:5px;margin-bottom:5px}.theme-overlay .theme-actions .delete-theme{color:#a00;position:absolute;right:10px;bottom:5px;text-decoration:none;border-color:transparent;-webkit-box-shadow:none;box-shadow:none;background:0 0}.theme-overlay .theme-actions .delete-theme:focus,.theme-overlay .theme-actions .delete-theme:hover{background:#d54e21;color:#fff;border-color:#d54e21}.theme-overlay .theme-actions .active-theme,.theme-overlay.active .theme-actions .inactive-theme{display:none}.theme-overlay .theme-actions .inactive-theme,.theme-overlay.active .theme-actions .active-theme{display:block}.theme-overlay .theme-screenshots{float:left;margin:0 30px 0 0;width:55%;max-width:880px;text-align:center}.theme-overlay .screenshot{border:1px solid #fff;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;overflow:hidden;position:relative;-webkit-box-shadow:0 0 0 1px rgba(0,0,0,.2);box-shadow:0 0 0 1px rgba(0,0,0,.2)}.theme-overlay .screenshot:after{content:'';display:block;padding-top:75%}.theme-overlay .screenshot img{height:auto;position:absolute;left:0;top:0;width:100%}.theme-overlay.small-screenshot .theme-screenshots{position:absolute;width:302px}.theme-overlay.small-screenshot .theme-info{margin-left:350px;width:auto}.theme-overlay .screenshot.thumb{background:#ccc;border:1px solid #eee;float:none;display:inline-block;margin:10px 5px 0;width:140px;height:80px;cursor:pointer}.theme-overlay .screenshot.thumb:after{content:'';display:block;padding-top:100%}.theme-overlay .screenshot.thumb img{cursor:pointer;position:absolute;left:0;top:0;width:100%;height:auto}.theme-overlay .screenshot.selected{background:0 0;border:2px solid #2ea2cc}.theme-overlay .screenshot.selected img{opacity:.8}.theme-browser .theme .theme-screenshot.blank,.theme-overlay .screenshot.blank{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYGWO8d+/efwYkoKioiMRjYGBC4WHhUK6A8T8QIJt8//59ZC493AAAQssKpBK4F5AAAAAASUVORK5CYII=)}.theme-overlay .theme-info{width:40%;float:left}.theme-overlay .current-label{background:#333;color:#fff;font-size:11px;display:inline-block;padding:2px 8px;-webkit-border-radius:2px;border-radius:2px;margin:0 0 -10px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.theme-overlay .theme-name{color:#222;font-size:32px;font-weight:100;margin:10px 0 0;line-height:1.3}.theme-overlay .theme-version{color:#999;font-size:13px;font-weight:400;float:none;display:inline-block;margin-left:10px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.theme-overlay .theme-author{color:#686868;font-size:16px;font-weight:400;margin:15px 0 25px}.theme-overlay .theme-author a{text-decoration:none}.theme-overlay .theme-description{color:#555;font-size:15px;font-weight:400;line-height:1.5;margin:30px 0 0}.theme-overlay .theme-tags{border-top:3px solid #eee;color:#888;font-size:13px;font-weight:400;margin:30px 0 0;padding-top:20px}.theme-overlay .theme-tags span{color:#444;font-weight:700;margin-right:5px}.theme-overlay .theme-update-message{background:#fef7f1;border:1px solid #eee;border-left:4px solid #d54e21;-webkit-border-radius:3px;border-radius:3px;padding:5px 20px 10px}.theme-overlay .theme-update{color:#222;font-size:18px;display:inline-block;line-height:40px;margin:0}.theme-overlay .parent-theme{background:#f7fcfe;border:1px solid #eee;border-left:4px solid #2ea2cc;font-size:14px;font-weight:400;margin-top:30px;padding:10px 10px 10px 20px}.theme-overlay .parent-theme strong{font-weight:700}.single-theme .theme,.single-theme .theme-overlay .theme-backdrop,.single-theme .theme-overlay .theme-header{display:none}.single-theme .theme-overlay .theme-wrap{clear:both;min-height:330px;position:relative;left:auto;right:auto;top:auto;bottom:auto}.single-theme .theme-overlay .theme-about{padding:30px 30px 70px;position:static}.single-theme .theme-overlay .theme-actions{position:absolute}@media only screen and (min-width:2000px){#wpwrap .theme-browser .theme{width:17.6%;margin:0 3% 3% 0}#wpwrap .theme-browser .theme:nth-child(3n),#wpwrap .theme-browser .theme:nth-child(4n){margin-right:3%}#wpwrap .theme-browser .theme:nth-child(5n){margin-right:0}}@media only screen and (min-width:1680px){.theme-overlay .theme-wrap{width:1450px;margin:0 auto}}@media only screen and (min-width:1640px){.theme-browser .theme{width:22.7%;margin:0 3% 3% 0}.theme-browser .theme .theme-screenshot:after{padding-top:75%}.theme-browser .theme:nth-child(3n){margin-right:3%}.theme-browser .theme:nth-child(4n){margin-right:0}}@media only screen and (max-width:1120px){.theme-browser .theme{width:47.5%;margin-right:0}.theme-browser .theme:nth-child(even){margin-right:0}.theme-browser .theme:nth-child(odd){margin-right:5%}}@media only screen and (max-width:900px){.theme-overlay .theme-wrap{left:65px}}@media only screen and (max-width:780px){.theme-overlay .theme-wrap,body.folded .theme-overlay .theme-wrap{top:0;right:0;bottom:0;left:0;padding:70px 20px 20px;border:0;z-index:500;position:fixed}.theme-browser .theme.active .theme-name span{display:none}.theme-overlay .theme-screenshots{width:40%}.theme-overlay .theme-info{width:50%}.single-theme .theme-wrap{padding:10px}.theme-browser .theme .theme-actions{padding:5px 10px 4px}.theme-overlay.small-screenshot .theme-screenshots{position:static;float:none;max-width:302px}.theme-overlay.small-screenshot .theme-info{margin-left:0;width:auto}.theme:focus .more-details,.theme:hover .more-details,.theme:not(.active):focus .theme-actions,.theme:not(.active):hover .theme-actions{display:none}.theme-browser.rendered .theme:focus .theme-screenshot img,.theme-browser.rendered .theme:hover .theme-screenshot img{opacity:1}}@media only screen and (max-width:480px){.theme-browser .theme{width:100%;margin-right:0}.theme-browser .theme:nth-child(2n),.theme-browser .theme:nth-child(3n){margin-right:0}}@media only screen and (max-width:650px){.theme-overlay .theme-description,.theme-overlay .theme-update{margin-left:0}.theme-overlay .theme-actions .delete-theme{position:relative;right:auto;bottom:auto}.theme-overlay .theme-actions .inactive-theme{display:inline}.theme-overlay .theme-screenshots{width:100%;float:none}.theme-overlay .theme-info{width:100%}.theme-overlay .theme-author{margin:5px 0 15px}.theme-overlay .current-label{margin-top:10px;font-size:13px}.themes-php .wrap h2{width:100%}.themes-php .theme-search{float:none;clear:both;left:0;top:0;right:0;margin:10px 0;width:100%}.theme-browser .theme.add-new-theme span:after{font:400 60px/90px dashicons;width:80px;height:80px;top:30%;left:50%;text-indent:0;margin-left:-40px}.single-theme .theme-wrap{margin:0 -12px 0 -10px;padding:10px}.single-theme .theme-overlay .theme-about{padding:10px;overflow:visible}.single-theme .current-label{display:none}.single-theme .theme-overlay .theme-actions{position:static}}.broken-themes{clear:both}.broken-themes table{text-align:left;width:50%;border-spacing:3px;padding:3px}.theme-browser .theme .theme-installed{background:#0074a2}.theme-browser .theme .theme-installed:before{content:'\f147'}.theme-browser .theme.is-installed .theme-actions .button-primary{display:none!important}.theme-navigation{background:#fff;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;color:#555;display:inline-block;font-size:13px;margin:20px 0 30px;padding:0 20px;position:relative;width:100%}.theme-install-php a.browse-themes,.theme-install-php a.upload{cursor:pointer}.theme-install-php a.browse-themes,.theme-install-php.show-upload-theme a.upload{display:none}.theme-install-php.show-upload-theme a.browse-themes{display:inline}.upload-theme{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:none;margin:0;padding:0;width:100%;overflow:hidden;position:relative;top:10px}body.show-upload-theme .upload-theme{display:block}.upload-theme .wp-upload-form{background:#fafafa;border:1px solid #e5e5e5;padding:30px;margin:30px auto;max-width:380px}.upload-theme .install-help{color:#999;font-size:18px;font-style:normal;margin:0;padding:40px 0 0;text-align:center}body.show-upload-theme .upload-theme+.theme-navigation,body.show-upload-theme .upload-theme+.theme-navigation+.theme-browser{display:none}.theme-navigation .theme-count{margin-left:0;position:absolute;top:12px}.theme-count+.theme-section{margin-left:60px}.theme-filter,.theme-section{border-bottom:4px solid #fff;color:#666;cursor:pointer;display:inline-block;margin:0 10px;padding:15px 0}.theme-filter.current,.theme-section.current{border-bottom:4px solid #666;color:#222}.theme-top-filters{display:inline-block}.theme-navigation .more-filters{color:#666;cursor:pointer;display:inline-block;margin:0 10px;padding:4px 6px}body.more-filters-opened .more-filters,body.more-filters-opened .more-filters:before{background:#777;-webkit-border-radius:2px;border-radius:2px;border:0;color:#fff}body.more-filters-opened .more-filters:focus,body.more-filters-opened .more-filters:focus:before,body.more-filters-opened .more-filters:hover,body.more-filters-opened .more-filters:hover:before{background:#2ea2cc}.theme-install-php .theme-search{position:absolute;right:10px;top:9px;font-size:16px;font-weight:300;line-height:1.5;width:280px}.more-filters:before{color:#777;margin:0 5px 0 0;content:"\f111";display:inline-block;width:16px;height:16px;-webkit-font-smoothing:antialiased;font-size:16px;line-height:1;font-family:dashicons;text-decoration:inherit;font-weight:400;font-style:normal;vertical-align:top;-webkit-transition:color .1s ease-in 0;transition:color .1s ease-in 0;text-align:center}.more-filters.current:before{color:#fff}.more-filters-container{display:none;padding:20px;border-top:1px solid #eee;margin:0 -20px;background:#fafafa}body.more-filters-opened .more-filters-container{display:block;overflow:hidden}body.more-filters-opened .theme-section.current{border-bottom:0}body.more-filters-opened .theme-browser,body.more-filters-opened.filters-applied.loading-themes .theme-browser{display:none}body.more-filters-opened.filters-applied .theme-browser{display:block}.more-filters-container .filters-group{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;width:19%;background:#fff;margin:0 1% 0 0;border:1px solid #e5e5e5;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.04);box-shadow:0 1px 1px rgba(0,0,0,.04);padding:10px}.more-filters-container .wide-filters-group{width:38%}.more-filters-container .feature-name{margin:0;position:relative}.more-filters-container ol{list-style-type:none;margin:20px 0 0;font-size:12px}.more-filters-container li{display:inline-block;vertical-align:top;list-style-type:none;margin:5px 0;padding-right:25px;width:160px}.theme-navigation .more-filters-container .apply-filters{margin:0 0 20px}.theme-navigation .more-filters-container .clear-filters{display:none;margin:0 0 20px 10px}.more-filters-container .apply-filters span{display:inline-block;font-size:12px;text-indent:10px;opacity:.8}.more-filters-container .filtering-by{display:none;margin:0}.more-filters-container .filtering-by>span{font-weight:600}.more-filters-container .filtering-by .tags{display:inline}.more-filters-container .filtering-by .tag{background:#fff;border:1px solid #e5e5e5;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.04);box-shadow:0 1px 1px rgba(0,0,0,.04);font-size:11px;margin:0 5px;padding:4px 8px}.more-filters-container .filtering-by a{margin-left:10px}body.filters-applied .more-filters-container .filters-group,body.filters-applied .more-filters-container a.button,body.filters-applied .more-filters-container br{display:none!important}body.filters-applied .more-filters-container .filtering-by{display:block}body.filters-applied .more-filters-container{padding:20px}p.no-themes{color:#999;font-size:18px;font-style:normal;margin:0;padding:0;text-align:center;display:none}body.no-results p.no-themes{display:block}.theme-install-php .add-new-theme,body.show-upload-theme p.no-themes{display:none!important}@media only screen and (max-width:1120px){.theme-install-php .theme-search{margin:20px 0;position:static;width:100%}.more-filters-container{border-bottom:1px solid #eee}.upload-theme .wp-upload-form{margin:20px 0;max-width:100%}.upload-theme .install-help{font-size:15px;padding:20px 0 0;text-align:left}.more-filters-container .filters-group{margin-bottom:0;margin-top:5px;width:100%}.more-filters-container .filters-group li{margin:10px 0}}@media only screen and (max-width:782px){.more-filters-container .filters-group,.more-filters-container .filters-group li{width:100%}}.rating{margin:30px 0}.rating span:before{color:#e6b800;content:"\f154";display:inline-block;-webkit-font-smoothing:antialiased;font:400 20px/1 dashicons;vertical-align:top}.rating-10 span.one:before,.rating-30 span.two:before,.rating-50 span.three:before,.rating-70 span.four:before,.rating-90 span.five:before{content:"\f459"}.rating-100 span.five:before,.rating-100 span.four:before,.rating-100 span.one:before,.rating-100 span.three:before,.rating-100 span.two:before,.rating-20 span.one:before,.rating-30 span.one:before,.rating-40 span.one:before,.rating-40 span.two:before,.rating-50 span.one:before,.rating-50 span.two:before,.rating-60 span.one:before,.rating-60 span.three:before,.rating-60 span.two:before,.rating-70 span.one:before,.rating-70 span.three:before,.rating-70 span.two:before,.rating-80 span.four:before,.rating-80 span.one:before,.rating-80 span.three:before,.rating-80 span.two:before,.rating-90 span.four:before,.rating-90 span.one:before,.rating-90 span.three:before,.rating-90 span.two:before{content:"\f155"}.rating .ratings{display:inline;margin-left:10px;line-height:20px;color:#999}.error .theme-browser,.loading-themes .theme-browser{display:none}.loading-themes .spinner{display:block;margin:40px auto 0;float:none}.appearance_page_custom-header #headimg{border:1px solid #DFDFDF;overflow:hidden;width:100%}.appearance_page_custom-header #upload-form p label{font-size:12px}.appearance_page_custom-header .available-headers .default-header{float:left;margin:0 20px 20px 0}.appearance_page_custom-header .random-header{clear:both;margin:0 20px 20px 0;vertical-align:middle}.appearance_page_custom-header .available-headers label input,.appearance_page_custom-header .random-header label input{margin-right:10px}.appearance_page_custom-header .available-headers label img{vertical-align:middle}div#custom-background-image{min-height:100px;border:1px solid #dfdfdf}div#custom-background-image img{max-width:400px;max-height:300px}body.full-overlay-active{overflow:hidden}.wp-full-overlay{background:0 0;z-index:500000;position:fixed;overflow:visible;top:0;bottom:0;left:0;right:0;height:100%;min-width:0}.wp-full-overlay-sidebar{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;position:fixed;width:300px;height:100%;top:0;bottom:0;left:0;padding:0;margin:0;z-index:10;overflow:auto;background:#eee;border-right:0}.wp-full-overlay.collapsed .wp-full-overlay-sidebar{overflow:visible}.wp-full-overlay.collapsed,.wp-full-overlay.expanded .wp-full-overlay-sidebar{margin-left:0!important}.wp-full-overlay.expanded{margin-left:300px}.wp-full-overlay.collapsed .wp-full-overlay-sidebar{margin-left:-300px}.wp-full-overlay-sidebar:after{content:'';display:block;position:absolute;top:0;bottom:0;right:0;width:3px;z-index:1000}.wp-full-overlay-main{position:absolute;left:0;right:0;top:0;bottom:0;height:100%}.wp-full-overlay-sidebar .wp-full-overlay-header{position:absolute;left:0;right:0;height:45px;padding:0 15px;line-height:45px;z-index:10;margin:0;border-top:0;-webkit-box-shadow:none;box-shadow:none}.wp-full-overlay-sidebar .wp-full-overlay-header a.back{margin-top:9px}.wp-full-overlay-sidebar .wp-full-overlay-footer{bottom:0;border-bottom:0;border-top:0;-webkit-box-shadow:none;box-shadow:none}.wp-full-overlay-sidebar .wp-full-overlay-sidebar-content{position:absolute;top:45px;bottom:45px;left:0;right:0;overflow:auto}.wp-full-overlay .close-full-overlay{text-decoration:none}.wp-full-overlay a.collapse-sidebar{position:absolute;bottom:12px;left:0;z-index:50;display:block;width:19px;height:19px;margin-left:15px;padding:0;-webkit-border-radius:50%;border-radius:50%;color:#777;text-decoration:none}.wp-full-overlay a.collapse-sidebar:hover{color:#0074a2}.wp-full-overlay.collapsed .collapse-sidebar{position:absolute;left:100%}.wp-full-overlay .collapse-sidebar-arrow{position:static;margin-top:0;margin-left:0;display:block;width:auto;height:auto;background:0 0}.wp-full-overlay .collapse-sidebar-arrow:before{-webkit-border-radius:50%;border-radius:50%;float:left;content:"\f148";background:#eee;font:400 20px/1 dashicons;speak:none;display:block;padding:0;text-indent:0;text-align:center;position:relative;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important}.rtl .wp-full-overlay .collapse-sidebar-arrow:before,.wp-full-overlay.collapsed .collapse-sidebar-arrow:before{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.rtl .wp-full-overlay.collapsed .collapse-sidebar-arrow:before{-webkit-transform:none;-ms-transform:none;transform:none}.wp-full-overlay.collapsed .collapse-sidebar-arrow{background-position:-1px -109px}.wp-full-overlay .collapse-sidebar-label{position:absolute;left:100%;line-height:20px;margin-left:10px}.wp-full-overlay.collapsed .collapse-sidebar-label{display:none}.wp-full-overlay .theme-navigation{padding:10px 20px;position:absolute;bottom:10px;text-align:left}.wp-full-overlay .theme-navigation .next-theme{float:right}.wp-full-overlay.no-navigation .theme-navigation{display:none}.wp-full-overlay,.wp-full-overlay .collapse-sidebar,.wp-full-overlay-main,.wp-full-overlay-sidebar{-webkit-transition-property:left,right,top,bottom,width,margin;transition-property:left,right,top,bottom,width,margin;-webkit-transition-duration:.2s;transition-duration:.2s}.customize-support .hide-if-customize,.customize-support .wp-core-ui .hide-if-customize,.customize-support.wp-core-ui .hide-if-customize,.no-customize-support .hide-if-no-customize,.no-customize-support .wp-core-ui .hide-if-no-customize,.no-customize-support.wp-core-ui .hide-if-no-customize{display:none}#customize-container{display:none;background:#fff;z-index:500000;position:fixed;overflow:visible;top:0;bottom:0;left:0;right:0;height:100%}.customize-active #customize-container{display:block}.customize-loading #customize-container iframe{opacity:0}.customize-loading #customize-container{background:#fff url(../images/spinner.gif) no-repeat fixed center center;-webkit-background-size:20px 20px;background-size:20px 20px}#customize-container iframe,.theme-install-overlay iframe{height:100%;width:100%;z-index:20;-webkit-transition:opacity .3s;transition:opacity .3s}#customize-container .collapse-sidebar{bottom:16px}#customize-controls{margin-top:0}.theme-install-overlay{display:none}.theme-install-overlay.single-theme{display:block}.install-theme-info{display:none;padding:10px 20px 60px}.single-theme .install-theme-info{padding-top:15px}.theme-install-overlay .install-theme-info{display:block}.install-theme-info .theme-install{float:right;margin-top:18px}.install-theme-info .theme-name{font-size:16px;line-height:24px;margin-bottom:0;margin-top:0}.install-theme-info .theme-screenshot{margin-top:15px;width:258px;border:1px solid #ccc}.install-theme-info .theme-details{overflow:hidden}.theme-details .theme-version{margin:15px 0;float:left}.theme-details .star-rating{margin:7px 0;float:right}.theme-details .theme-description{float:left;color:#777;line-height:20px;max-width:100%}.theme-install-overlay .wp-full-overlay-header{margin-top:9px}.theme-install-overlay .wp-full-overlay-header .theme-install{float:right;line-height:26px}.theme-install-overlay .wp-full-overlay-sidebar{background:#EEE;border-right:1px solid #DDD}.theme-install-overlay .wp-full-overlay-main{background:#fff url(../images/spinner.gif) no-repeat center center;-webkit-background-size:20px 20px;background-size:20px 20px}@media print,(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.wp-full-overlay .collapse-sidebar-arrow{background-image:url(../images/arrows-2x.png);-webkit-background-size:15px 123px;background-size:15px 123px}.customize-loading #customize-container,.theme-install-overlay .wp-full-overlay-main{background-image:url(../images/spinner-2x.gif)}}@media screen and (max-width:782px){.available-theme .action-links .delete-theme{float:none;margin:0;padding:0;clear:both}.available-theme .action-links .delete-theme a{padding:0}}.press-this #message{border-left:4px solid #7ad03a;padding:1px 12px;background-color:#fff;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}.press-this #side-sortables .category-tabs li{display:inline;line-height:1.35em}body.press-this ul.category-tabs li.tabs a{color:#333}.press-this #content-resize-handle{bottom:2px}body.press-this{color:#333;margin:0;padding:0;min-width:708px;min-height:400px}.press-this #titlediv #title{font-size:1.4em}.press-this #site-heading:before{top:3px;position:relative;display:inline-block;font:400 18px/1 dashicons;speak:none;color:#727272;content:'\f120';-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.press-this #wphead{height:32px;margin-left:0;margin-right:0;margin-bottom:5px}.press-this #header-logo{float:left;margin:7px 7px 0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.press-this #wphead h1{font-weight:400;font-size:16px;line-height:32px;margin:0;float:left}.press-this #wphead h1 a{text-decoration:none}.press-this #wphead h1 a:hover{text-decoration:underline}.press-this #message{margin:10px 0}.press-this .posting{margin-right:250px}.press-this-sidebar{float:right;width:240px;padding-top:10px}.press-this #title{margin-left:0;margin-right:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.press-this .tagchecklist{margin-top:8px}.press-this #titlediv{margin:0}.press-this #wp-content-wrap #wp-content-editor-tools{padding:0;top:3px;overflow:hidden}.press-this .wp-media-buttons{cursor:default;padding:8px 8px 6px}.press-this #wp-content-wrap #wp-content-media-buttons a{padding:0;line-height:normal;height:auto;font-size:16px}.press-this #wp-content-wrap .mce-toolbar .mce-btn-group .mce-btn{margin:0 1px}.press-this #wp-content-wrap .mce-toolbar .mce-btn button{padding:2px 3px}.press-this #wp-content-wrap .quicktags-toolbar,.press-this #wp-content-wrap div.mce-toolbar-grp{padding-right:3px}.press-this .howto{margin-top:2px;margin-bottom:3px;font-size:12px;font-style:italic;display:block}.press-this #wp-content-editor-container{clear:none}.press-this #poststuff .inside{margin-top:18px}.press-this .category-tabs{margin-bottom:3px}.press-this #poststuff{margin:0 8px;padding:0}.press-this #photo-add-url-div input[type=text]{width:220px}#poststuff #editor-toolbar{height:30px}.posting{margin-right:212px;position:relative}.press-this .inner-sidebar{width:200px}.press-this .inner-sidebar .sleeve{padding-top:5px}.press-this #submitdiv p{margin:0;padding:6px}.press-this #submitdiv #publishing-actions{border-bottom:1px solid #dfdfdf}.press-this #publish{float:right}.press-this #poststuff h2,.press-this #poststuff h3{font-size:14px;line-height:1}.press-this #categorydiv h3,.press-this #tagsdiv-post_tag h3{cursor:pointer}.press-this #submitdiv h3{cursor:default}h3.tb{font-weight:600;font-size:12px;margin-left:5px}.press-this .postbox,.press-this .stuffbox{margin-bottom:10px;min-width:0}.press-this #submitdiv:hover .handlediv{background:0 0}.tbtitle{font-size:1.7em;outline:0;padding:3px 4px;border:1px solid #dfdfdf}.press-this .actions{float:right;margin:-19px 0 0}.press-this #extra-fields .actions{margin:-32px -7px 0 0}.press-this .actions li{float:left;list-style:none;margin-right:10px}#extra-fields .button{margin-right:5px}#photo_saving{margin:0 8px 8px;vertical-align:middle}#img_container_container{overflow:auto}#extra-fields{margin-top:10px;position:relative}#extra-fields h2{margin:12px}#waiting{margin-top:10px;overflow:hidden}#waiting span{float:right;margin:0 0 0 5px}#waiting .spinner{display:block}#extra-fields .postbox{margin-bottom:5px}#extra-fields .titlewrap{padding:0;overflow:auto;height:120px}#img_container a{float:left;overflow:hidden}#img_container a,#img_container img{width:68px;height:68px}#img_container img{border:0;background-color:#f4f4f4;cursor:pointer}#img_container a,#img_container a:link,#img_container a:visited{border:1px solid #ccc;display:block;position:relative}#img_container a:active,#img_container a:hover{border-color:#000;z-index:1000;border-width:1px}#embed-code{width:100%;height:98px}.press-this .categorydiv div.tabs-panel{height:100px}.press-this .tagsdiv .newtag{width:120px}.press-this #content{margin:5px 0;padding:0 5px;border:0 none;height:340px;font-family:Consolas,Monaco,monospace;font-size:13px;line-height:19px;background:0 0}.press-this #publishing-actions .spinner{display:inline;vertical-align:middle}@media screen and (max-width:782px){.press-this ul.category-tabs li.tabs{padding:3px 5px 5px}.press-this a.wp-switch-editor{font:13px/19px "Open Sans",sans-serif;margin:5px 0 0 5px;padding:3px 8px 4px}.press-this #wp-content-media-buttons a{padding:0;line-height:normal;height:auto}.press-this #wp-content-editor-tools{padding:0;top:3px}.press-this .category-tabs{margin-top:0}.press-this .tagsdiv .newtag{width:120px;padding:3px 5px;margin-bottom:0}.press-this .tagchecklist{padding:0;margin-bottom:0}.press-this .wp_themeSkin a.mceButton{width:20px;height:20px}.press-this .wp_themeSkin .mceButton .mceIcon{margin:0}.press-this #poststuff h3,.press-this .metabox-holder h3{padding:7px 12px}.press-this input[type=checkbox],.press-this input[type=radio]{height:16px;width:16px}.press-this input[type=checkbox]:checked:before{width:16px;font:400 21px/1 dashicons;margin:-3px 0 0 -4px}.press-this input[type=radio]:checked:before{font:400 21px/1 dashicons;width:6px;height:6px;margin:4px}.press-this ul.categorychecklist li,.press-this ul.categorychecklist ul{margin-top:0;margin-bottom:0}.press-this div.quicktags-toolbar input{padding:2px 4px}.press-this input,.press-this textarea{font-size:14px}.press-this .tagchecklist span{font-size:13px;line-height:1.8em}}.about-wrap{position:relative;margin:25px 40px 0 20px;max-width:1050px;font-size:15px}.about-wrap div.error,.about-wrap div.updated{display:none!important}.about-wrap hr{border:0;height:0;margin:0;border-top:1px solid rgba(0,0,0,.1)}.about-wrap img{margin:0;max-width:100%;vertical-align:middle}.about-wrap p{line-height:1.6em;font-size:14px}.about-wrap h1{margin:.2em 200px 0 0;color:#333;line-height:1.2em;font-size:2.8em;font-weight:400}.about-wrap h4{color:#222}.about-wrap .about-text,.about-wrap li.wp-person a.web,.about-wrap p.about-description{font-weight:400;line-height:1.6em;font-size:19px}.about-description{margin-top:1.4em}.about-text{margin:1em 200px 1em 0;min-height:60px;color:#777;font-size:24px}.about-wrap .changelog h2.about-headline-callout{margin:1.1em 0 .2em;font-size:2.4em;font-weight:300;line-height:1.3;text-align:center}.about-wrap h3{margin:1em 0 .6em;font-size:1.5em;line-height:1.5em}.customize h3{margin-top:1.75em;text-align:center}.about-wrap .feature-section h4{margin:1.4em 0 .6em;font-size:1.2em}.about-wrap .feature-section p{margin-top:.6em}.about-wrap code,.about-wrap ol li p{font-size:14px}.about-wrap .button.button-large{padding:8px 20px 10px!important;height:46px!important;font-size:14px;line-height:28px!important}.about-wrap .about-overview-img{margin:0}.about-wrap .point-releases{margin-top:5px;border-bottom:1px solid #dfdfdf}.about-wrap .changelog.point-releases h3{padding-top:35px}.about-wrap .changelog.point-releases h3:first-child{padding-top:7px}.wp-badge{background:#0074a2 url(../images/w-logo-white.png?ver=20131202) no-repeat;background:#0074a2,url(../images/wordpress-logo-white.svg?ver=20131110) no-repeat;background-position:center 24px;-webkit-background-size:85px 85px;background-size:85px 85px;color:#78c8e6;font-size:14px;text-align:center;font-weight:600;margin:5px 0 0;padding-top:120px;height:40px;display:inline-block;width:150px;text-rendering:optimizeLegibility;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.2);box-shadow:0 1px 3px rgba(0,0,0,.2)}.about-wrap .wp-badge{position:absolute;top:0;right:0}.about-wrap h2.nav-tab-wrapper{padding-left:6px}.about-wrap h2 .nav-tab{padding:4px 15px 6px;margin:0 3px -1px 0;font-size:18px;vertical-align:top;border-width:1px}.about-overview{margin-top:40px;text-align:center}.about-overview .wp-video{margin:0 auto}.changelog .wp-playlist .wp-playlist-current-item img{height:64px;width:auto;max-width:100%}.about-wrap .feature-section{margin-top:40px;padding-bottom:20px}.about-wrap .feature-section.two-col>div{position:relative;width:47.5%;margin-right:4.999999999%;float:left}.about-wrap .feature-section.three-col>div{position:relative;width:29.95%;margin-right:4.999999999%;float:left}.about-wrap .feature-section.col .last-feature{margin-right:0}.about-wrap .under-the-hood .feature-section{margin-top:0}.about-wrap .changelog .feature-section{overflow:hidden}.about-wrap .feature-section.two-col div p{margin-right:3%}.about-wrap .feature-section div p img{float:right;margin-left:10px;max-width:20%}.about-wrap .changelog li{list-style-type:disc;margin-left:3em}.about-wrap .return-to-dashboard{margin:30px 0 0 -5px;font-size:14px;font-weight:700}.about-wrap .return-to-dashboard a{text-decoration:none;padding:0 5px}.about-wrap h4.wp-people-group{margin-top:2.6em;font-size:16px}.about-wrap ul.wp-people-group{overflow:hidden;padding:0 5px;margin:0 -15px 0 -5px}.about-wrap ul.compact{margin-bottom:0}.about-wrap li.wp-person{float:left;margin-right:10px}.about-wrap li.wp-person img.gravatar{float:left;margin:0 10px 10px 0;padding:2px;width:60px;height:60px}.about-wrap ul.compact li.wp-person img.gravatar{width:30px;height:30px}.about-wrap li.wp-person{height:70px;width:280px;padding-bottom:15px}.about-wrap ul.compact li.wp-person{height:auto;width:180px;padding-bottom:0;margin-bottom:0}.about-wrap #wp-people-group-validators+p.wp-credits-list{margin-top:0}.about-wrap li.wp-person a.web{display:block;margin:6px 0 2px;font-size:16px;text-decoration:none}.about-wrap p.wp-credits-list a{white-space:nowrap}.freedoms-php .about-wrap ol{margin:40px 60px}.freedoms-php .about-wrap ol li{list-style-type:decimal;font-weight:700}.freedoms-php .about-wrap ol p{font-weight:400;margin:.6em 0}@media screen and (max-width:782px){.about-wrap .feature-section.one-col>div,.about-wrap .feature-section.three-col>div,.about-wrap .feature-section.two-col>div{width:100%;margin:0 0 40px;padding:0 0 40px;float:none;border-bottom:1px solid rgba(0,0,0,.1)}.about-wrap .feature-section.col>div.last-feature,.about-wrap .under-the-hood .feature-section>div{margin:0;padding:0;border-bottom:0}}@media only screen and (max-width:500px){.about-wrap{margin-right:20px;margin-left:10px}.about-text,.about-wrap h1{margin-right:0}.about-text{margin-bottom:.25em}.about-wrap .wp-badge{position:relative;margin-bottom:1.5em;width:100%}.about-wrap .feature-section.three-col div{width:100%;float:none}.about-wrap .three-col.about-updates .col-1{padding:0;float:none}.about-wrap .three-col.about-updates .col-2{margin:0 0 20px;width:100%;float:none}}.no-js #message{display:block}ul.add-menu-item-tabs li{padding:3px 5px 3px 8px}.accordion-section ul.add-menu-item-tabs,.accordion-section ul.category-tabs,.accordion-section ul.wp-tab-bar{margin:0}.accordion-section .categorychecklist{margin:13px 0}#nav-menu-meta .accordion-section-content{padding:18px 13px}#nav-menu-meta .button-controls{margin-bottom:0}#nav-menus-frame{margin-left:300px;margin-top:23px}#wpbody-content #menu-settings-column{display:inline;width:281px;margin-left:-300px;clear:both;float:left;padding-top:0}#menu-settings-column .inside{clear:both;margin:10px 0 0}.metabox-holder-disabled .accordion-section-content,.metabox-holder-disabled .accordion-section-title,.metabox-holder-disabled .postbox{opacity:.5;filter:alpha(opacity=50)}.metabox-holder-disabled .button-controls .select-all{display:none}#wpbody{position:relative}.blank-slate .menu-name{height:2em}.blank-slate .menu-settings{border:0;margin-top:0;padding-top:0;overflow:hidden}.is-submenu{color:#999;font-style:italic;font-weight:400;margin-left:4px}.manage-menus{margin-top:23px;padding:10px;overflow:hidden;background:#fbfbfb}.manage-menus select{float:left;margin-right:6px}.manage-menus .selected-menu{float:left;margin:5px 6px 0 0}.manage-menus .submit-btn{float:left;margin-top:1px}.menu-edit p{margin:.3em 0 .6em}.menu-edit #post-body-content h3{margin:1em 0 10px}.menu-settings{border-top:1px solid #eee;margin-top:2em}.menu-settings dl{margin:0 0 10px;overflow:hidden;padding-left:18%}.menu-settings dd{float:left;margin:0;width:100%}.menu-settings dt{float:left;clear:both;width:21.951%;padding:3px 0 0;margin-left:-21.951%}.menu-settings label{vertical-align:baseline}.menu-edit .checkbox-input{margin-top:4px}.theme-location-set{color:#999;font-size:11px}#menu-management-liquid{float:left;min-width:100%;margin-top:3px}#menu-management{position:relative;margin-right:20px;margin-top:-3px;width:100%;background:#f5f5f5}#menu-management .menu-edit{margin-bottom:20px}.nav-menus-php #post-body{padding:0 10px 10px;border-top:1px solid #fff;border-bottom:1px solid #dfdfdf;background:#fff}#nav-menu-footer,#nav-menu-header{padding:0 10px}#nav-menu-header{border-bottom:1px solid #dfdfdf;margin-bottom:0}#nav-menu-header .menu-name-label{margin-top:4px}.nav-menus-php #post-body div.error,.nav-menus-php #post-body div.updated{margin:0}.nav-menus-php #post-body-content{position:relative;float:none}#menu-management .menu-add-new abbr{font-weight:600}#select-nav-menu-container{text-align:right;padding:0 10px 3px;margin-bottom:5px}#select-nav-menu{width:100px;display:inline}#menu-name-label{margin-top:-2px}.widefat td.menu-location-menus{padding-bottom:5px}.menu-location-menus select{float:left}#locations-nav-menu-wrapper{padding:5px 0}.locations-nav-menu-select select{float:left;width:160px;margin-right:5px}.locations-row-links{float:left;margin:6px 0 0 6px}.locations-add-menu-link,.locations-edit-menu-link{margin:0 3px}.locations-edit-menu-link{padding-right:3px;border-right:1px solid #ccc}#wpbody .open-label{display:block;float:left}#wpbody .open-label span{padding-right:10px}.js .input-with-default-title{color:#aaa;font-style:italic}#menu-management .inside{padding:0 10px}.accordion-container .howto input,.postbox .howto input{width:180px;float:right}.accordion-container .outer-border{margin:0}.customlinkdiv .howto input{width:180px}.customlinkdiv p{margin-top:0}#nav-menu-theme-locations .howto select{width:100%}#nav-menu-theme-locations .button-controls{text-align:right}.add-menu-item-view-all{height:400px}#menu-container .submit{margin:0 0 10px;padding:0}.nav-menus-php .add-new-menu-action{float:left;margin:6px 0 0 6px;line-height:15px}.nav-menus-php .meta-sep,.nav-menus-php .submitcancel,.nav-menus-php .submitdelete{display:block;float:left;margin:6px 0;line-height:15px}.meta-sep{padding:0 2px}#cancel-save{text-decoration:underline;font-size:12px;margin-left:20px;margin-top:5px}.button-primary.right,.button-secondary.right,.button.right{float:right}.list-controls{float:left;margin-top:5px}.add-to-menu{float:right}.postbox .spinner{display:none;vertical-align:middle}.button-controls{clear:both;margin:10px 0}.hide-all,.show-all{cursor:pointer}.hide-all{display:none}#menu-name{width:270px}#manage-menu .inside{padding:0}#available-links dt{display:block}#add-custom-link .howto{font-size:12px}#add-custom-link label span{display:block;float:left;margin-top:5px;padding-right:5px}.menu-item-textbox{width:180px}.nav-menus-php .howto span{margin-top:6px;display:block;float:left}.quick-search{width:190px}.nav-menus-php .list-wrap{display:none;clear:both;margin-bottom:10px}.nav-menus-php .postbox p.submit{margin-bottom:0}.nav-menus-php .list li{display:none;margin:0;margin-bottom:5px}.nav-menus-php .list li .menu-item-title{cursor:pointer;display:block}.nav-menus-php .list li .menu-item-title input{margin-right:3px;margin-top:-3px}.menu-item-title input[type=checkbox]{display:inline-block;margin-top:-4px}#menu-container .inside{padding-bottom:10px}.menu{padding-top:1em}#menu-to-edit{margin:0;padding:.1em 0}.menu ul{width:100%}.menu li{margin-bottom:0;position:relative}.menu-item-bar{clear:both;line-height:1.5em;position:relative;margin:9px 0 0}.menu-item-bar .menu-item-handle{border:1px solid #dfdfdf;position:relative;padding:10px 15px;height:auto;width:382px;line-height:30px;overflow:hidden;word-wrap:break-word}.menu-item-bar .menu-item-handle:hover{border-color:#999}#menu-to-edit .menu-item-invalid .menu-item-handle{background:#f6c9cc;border-color:#f1acb1}.no-js .menu-item-edit-active .item-edit{display:none}.js .menu-item-handle{cursor:move}.menu li.deleting .menu-item-handle{background-image:none;background-color:#f66}.menu-item-handle .item-title{font-size:13px;font-weight:600;line-height:20px;display:block;margin-right:13em}li.menu-item.ui-sortable-helper dl{margin-top:0}li.menu-item.ui-sortable-helper .menu-item-transport dl{margin-top:13px}.menu .sortable-placeholder{height:35px;width:410px;margin-top:13px}.menu-item-depth-0{margin-left:0}.menu-item-depth-1{margin-left:30px}.menu-item-depth-2{margin-left:60px}.menu-item-depth-3{margin-left:90px}.menu-item-depth-4{margin-left:120px}.menu-item-depth-5{margin-left:150px}.menu-item-depth-6{margin-left:180px}.menu-item-depth-7{margin-left:210px}.menu-item-depth-8{margin-left:240px}.menu-item-depth-9{margin-left:270px}.menu-item-depth-10{margin-left:300px}.menu-item-depth-11{margin-left:330px}.menu-item-depth-0 .menu-item-transport{margin-left:0}.menu-item-depth-1 .menu-item-transport{margin-left:-30px}.menu-item-depth-2 .menu-item-transport{margin-left:-60px}.menu-item-depth-3 .menu-item-transport{margin-left:-90px}.menu-item-depth-4 .menu-item-transport{margin-left:-120px}.menu-item-depth-5 .menu-item-transport{margin-left:-150px}.menu-item-depth-6 .menu-item-transport{margin-left:-180px}.menu-item-depth-7 .menu-item-transport{margin-left:-210px}.menu-item-depth-8 .menu-item-transport{margin-left:-240px}.menu-item-depth-9 .menu-item-transport{margin-left:-270px}.menu-item-depth-10 .menu-item-transport{margin-left:-300px}.menu-item-depth-11 .menu-item-transport{margin-left:-330px}body.menu-max-depth-0{min-width:950px!important}body.menu-max-depth-1{min-width:980px!important}body.menu-max-depth-2{min-width:1010px!important}body.menu-max-depth-3{min-width:1040px!important}body.menu-max-depth-4{min-width:1070px!important}body.menu-max-depth-5{min-width:1100px!important}body.menu-max-depth-6{min-width:1130px!important}body.menu-max-depth-7{min-width:1160px!important}body.menu-max-depth-8{min-width:1190px!important}body.menu-max-depth-9{min-width:1220px!important}body.menu-max-depth-10{min-width:1250px!important}body.menu-max-depth-11{min-width:1280px!important}.item-type{color:#777;font-size:12px;padding:12px 10px;line-height:18px;display:block}.item-controls{font-size:12px;position:absolute;right:20px;top:-1px}.item-controls a{text-decoration:none}.item-controls a:hover{cursor:pointer}.item-controls .item-order{padding-right:10px}.nav-menus-php .item-edit{position:absolute;right:-20px;top:0;display:block;width:30px;height:40px;margin-right:0!important;text-indent:100%;outline:0;overflow:hidden;white-space:nowrap}.menu-instructions-inactive{display:none}.menu-item-settings{display:block;width:402px;padding:10px 0 10px 10px;position:relative;z-index:10;border:1px solid #e5e5e5;border-top:0;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.04);box-shadow:0 1px 1px rgba(0,0,0,.04)}.menu-item-settings .field-move a{display:none;margin:0 2px}.menu-item-edit-active .menu-item-settings{display:block}.menu-item-edit-inactive .menu-item-settings{display:none}.add-menu-item-pagelinks{margin:.5em auto;text-align:center}.link-to-original{display:block;margin:0 0 10px;padding:3px 5px 5px;border:1px solid #dfdfdf;color:#777;font-size:12px;font-style:italic}.link-to-original a{padding-left:4px;font-style:normal}.hidden-field{display:none}.menu-item-settings .description-thin,.menu-item-settings .description-wide{margin-right:10px;float:left}.description-thin{width:190px;height:40px}.description-wide{width:390px}.menu-item-actions{padding-top:15px}#cancel-save{cursor:pointer}.nav-menus-php .major-publishing-actions{clear:both;padding:3px 0 6px}.nav-menus-php .major-publishing-actions .publishing-action{text-align:right;float:right;line-height:23px;margin:4px 0 1px}.nav-menus-php .blank-slate .menu-settings{display:none}.nav-menus-php .delete-action{float:left;margin-top:2px}.nav-menus-php .submitbox .submitcancel{border-bottom:1px solid #0074a2;padding:1px 2px;color:#0074a2;text-decoration:none}.nav-menus-php .submitbox .submitcancel:hover{background:#0074a2;color:#fff}.nav-menus-php .major-publishing-actions .form-invalid{padding-left:4px;margin-left:-4px}#menu-item-name-wrap:after,#menu-item-url-wrap:after,#menu-name-label:after,#menu-settings-column .inside:after,#nav-menus-frame:after,.nav-menus-php #post-body-content:after,.nav-menus-php .button-controls:after,.nav-menus-php .major-publishing-actions:after,.nav-menus-php .menu-item-settings:after{clear:both;content:".";display:block;height:0;visibility:hidden}#menu-item-name-wrap,#menu-item-url-wrap,#nav-menus-frame,.button-controls{display:block}@media screen and (max-width:782px){body.nav-menus-php{min-width:0!important}#nav-menus-frame{margin-left:0;float:none;width:100%}#wpbody-content #menu-settings-column{display:block;width:100%;float:none;margin-left:0}#side-sortables .add-menu-item-tabs{margin:15px 0 14px}ul.add-menu-item-tabs li.tabs{padding:13px 15px 14px}.nav-menus-php .item-controls .item-type{margin-top:2px}.nav-menus-php .customlinkdiv .howto input{width:65%}.nav-menus-php .quick-search{width:85%}#menu-management-liquid{margin-top:25px}.nav-menus-php .menu-name-label.howto span{margin-top:13px}.menu-name-label #menu-name{margin-top:4px}.nav-menus-php .major-publishing-actions .publishing-action{margin-top:6px}.nav-menus-php .delete-action{font-size:14px;line-height:50px;margin-top:12px}.description-wide,.menu-item-bar .menu-item-handle,.menu-item-settings{width:auto}.menu-item-settings{padding:10px}.menu-item-settings .description-thin,.menu-item-settings .description-wide{width:100%;height:auto}.menu-item-settings input{width:100%}.menu-settings dl{padding-left:0}.menu-settings dd{float:none;width:100%;margin-bottom:15px}.menu-settings dt{float:none;width:auto;margin-left:0;margin-bottom:15px}}@media only screen and (max-width:768px){#menu-locations-wrap .widefat{width:100%}}.widget{margin:0 auto 10px;position:relative;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.widget-top{font-size:13px;font-weight:600;background:#f7f7f7}.widget-top a.widget-action,.widget-top a.widget-action:hover{text-decoration:none}.widget-title h4{margin:0;padding:15px;line-height:1;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.widgets-holder-wrap .widget-inside{border-top:0;padding:1px 15px 15px;line-height:16px}#available-widgets .widget-description,#widgets-right a.widget-control-edit,.in-widget-title{color:#666}.deleting .widget-title,.deleting .widget-top a.widget-action:after{color:#aaa}.widget.ui-draggable-dragging{min-width:100%}.widget.ui-sortable-helper{opacity:.8}.widget-placeholder{border:1px dashed #bbb;margin:0 auto 10px;height:45px;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#widgets-right .widget-placeholder{margin-top:0}#widgets-right .closed .widget-placeholder{height:0;border:0;margin-top:-10px}.sidebar-name{position:relative;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.sidebar-name-arrow{position:absolute;top:0;right:0;bottom:0}.js .sidebar-name{cursor:pointer}.sidebar-name h3{margin:0;padding:8px 10px;overflow:hidden;white-space:nowrap}.widgets-holder-wrap .description{padding:0 0 15px;margin:0;font-style:normal;color:#777}#widgets-right .widgets-holder-wrap .description{padding-left:7px;padding-right:7px}div.widget-liquid-left{margin:0;width:38%;float:left}div.widget-liquid-right{float:right;width:58%}div#widgets-left{padding-top:12px}div#widgets-left .closed .sidebar-name,div#widgets-left .inactive-sidebar.closed .sidebar-name{margin-bottom:10px}div#widgets-left .sidebar-name h3{padding:10px 0;margin:0 10px 0 0}div#widgets-left .sidebar-name .sidebar-name-arrow:before{right:0;top:4px;padding:4px 6px 4px 4px}#widgets-left #available-widgets,div#widgets-left .widget-holder{background:0 0;border:0}#widgets-left .widgets-holder-wrap{border:0;-webkit-box-shadow:none;box-shadow:none}#available-widgets .widget-action{display:none}#available-widgets .widget{margin:0}#available-widgets .widget:nth-child(odd){clear:both}#available-widgets .widget .widget-description{display:block;padding:10px 15px;font-size:12px}#available-widgets #widget-list{position:relative}#widgets-left .inactive-sidebar{clear:both;width:100%;background:0 0;padding:0;margin:0 0 20px;border:0;-webkit-box-shadow:none;box-shadow:none}#widgets-left .inactive-sidebar.first{margin-top:40px}div#widgets-left .inactive-sidebar .widget.expanded{left:auto}.widget-title-action{float:right;position:relative}div#widgets-left .inactive-sidebar .widgets-sortables{min-height:42px;padding:0;background:0 0;margin:0;position:relative}div#widgets-right:after{content:".";display:block;height:0;clear:both;visibility:hidden}div#widgets-right .sidebars-column-1,div#widgets-right .sidebars-column-2{max-width:450px}div#widgets-right .widgets-holder-wrap{margin:10px 0 0}div#widgets-right .sidebar-description{min-height:20px;margin-top:-5px}div#widgets-right .sidebar-name h3{padding:15px 7px}div#widgets-right .sidebar-name .sidebar-name-arrow:before{right:0;top:4px}div#widgets-right .widget-top{padding:0}div#widgets-right .widgets-sortables{padding:0 8px;margin-bottom:9px;position:relative;min-height:123px}div#widgets-right .closed .widgets-sortables{min-height:0;margin-bottom:0}.sidebar-name .spinner{margin:-5px 5px;float:none}#widgets-right .widgets-holder-wrap.widget-hover{border-color:#777;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.3);box-shadow:0 1px 2px rgba(0,0,0,.3)}.widgets_access #widgets-left .widget .widget-top{cursor:auto}.widgets_access #wpwrap .widget-control-edit,.widgets_access #wpwrap .widgets-holder-wrap.closed .sidebar-description,.widgets_access #wpwrap .widgets-holder-wrap.closed .widget{display:block}.widgets_access #widgets-left .widget .widget-top:hover,.widgets_access #widgets-right .widget .widget-top:hover{border-color:#ddd}#available-widgets .widget-control-edit .edit,#widgets-left .inactive-sidebar .widget-control-edit .add,#widgets-right .widget-control-edit .add{display:none}.widget-control-edit{display:block;color:#666;background:#EEE;padding:0 15px;line-height:43px;border-left:1px solid #DDD}#widgets-left .widget-control-edit:hover,#widgets-right .widget-control-edit:hover{color:#fff;background:#444;border-left:0;outline:1px solid #444}.widgets-holder-wrap .sidebar-description,.widgets-holder-wrap .sidebar-name{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.editwidget{margin:0 auto}.editwidget .widget-inside{display:block;padding:0 15px}.editwidget .widget-control-actions{margin-top:20px}.js .closed br.clear,.js .widgets-holder-wrap.closed .sidebar-description,.js .widgets-holder-wrap.closed .widget,.widget-description,.widget-inside{display:none}.widget-inside{background:#fff}#removing-widget{display:none;font-weight:400;padding-left:15px;font-size:12px;line-height:1;color:#000}.js #removing-widget{color:#2ea2cc}#access-off,.no-js .widget-holder .description,.widget-control-noform,.widgets_access #access-on,.widgets_access .sidebar-name-arrow,.widgets_access .widget-action,.widgets_access .widget-holder .description{display:none}.widgets_access #widget-list,.widgets_access .widget-holder{padding-top:10px}.widgets_access #access-off{display:inline}.widgets_access .sidebar-name,.widgets_access .widget .widget-top{cursor:default}.widget-liquid-left #widgets-left.chooser #available-widgets .widget,.widget-liquid-left #widgets-left.chooser .inactive-sidebar{-webkit-transition:opacity .1s linear;transition:opacity .1s linear;opacity:.2;pointer-events:none}.widget-liquid-left #widgets-left.chooser #available-widgets .widget-in-question{opacity:1;pointer-events:auto}#available-widgets .widget-top:hover,#widgets-left .widget-in-question .widget-top,#widgets-left .widget-top:hover,.widgets-chooser ul,div#widgets-right .widget-top:hover{border-color:#999;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.1);box-shadow:0 1px 2px rgba(0,0,0,.1)}.widgets-chooser ul.widgets-chooser-sidebars{margin:0;list-style-type:none;max-height:300px;overflow:auto}.widgets-chooser{display:none}.widgets-chooser ul{border:1px solid #ccc}.widgets-chooser li{padding:10px 15px 10px 35px;border-bottom:1px solid #ccc;background:#fff;margin:0;cursor:pointer;outline:0;position:relative;-webkit-transition:background .2s ease-in-out;transition:background .2s ease-in-out}.widgets-chooser li:focus,.widgets-chooser li:hover{background:rgba(255,255,255,.7)}.widgets-chooser li:focus:before{content:'\f147';display:block;-webkit-font-smoothing:antialiased;font:400 26px/1 dashicons;color:#999;position:absolute;top:7px;left:5px}.widgets-chooser li:last-child{border:0}.widgets-chooser li.widgets-chooser-selected{background:#2ea2cc;color:#fff}.widgets-chooser li.widgets-chooser-selected:before,.widgets-chooser li.widgets-chooser-selected:focus:before{content:'\f147';display:block;-webkit-font-smoothing:antialiased;font:400 26px/1 dashicons;color:#fff;position:absolute;top:7px;left:5px}.widgets-chooser .widgets-chooser-actions{padding:10px 0 12px;text-align:center}.widgets-chooser button{margin-right:5px}#available-widgets .widget .widget-top{cursor:pointer}@media screen and (max-width:480px){div.widget-liquid-left{width:100%;float:none;border-right:0;padding-right:0}#widgets-left #available-widgets .widget-top,#widgets-left .inactive-sidebar .widgets-sortables,#widgets-left .sidebar-name{margin-right:0}div.widget-liquid-right{width:100%;float:none}div.widget{margin:0 auto 10px!important;max-width:480px}}@media screen and (max-width:320px){div.widget{max-width:320px}}@media only screen and (min-width:1250px){#widgets-left #available-widgets .widget{width:49%;float:left}.widget.ui-draggable-dragging{min-width:49%}#widgets-left #available-widgets .widget:nth-child(even){float:right}#widgets-right .sidebars-column-1,#widgets-right .sidebars-column-2{float:left;width:49%}#widgets-right .sidebars-column-1{margin-right:2%}#widgets-right.single-sidebar .sidebars-column-1,#widgets-right.single-sidebar .sidebars-column-2{float:none;width:100%;margin:0}}body.rtl,body.rtl .press-this a.wp-switch-editor{font-family:Tahoma,Arial,sans-serif}body.locale-he-il,body.locale-he-il .press-this a.wp-switch-editor{font-family:Arial,sans-serif}.locale-he-il em{font-style:normal;font-weight:700}.locale-zh-cn #local-time,.locale-zh-cn #utc-time,.locale-zh-cn .form-wrap p,.locale-zh-cn .howto,.locale-zh-cn .inline-edit-row fieldset span.checkbox-title,.locale-zh-cn .inline-edit-row fieldset span.title,.locale-zh-cn .js .input-with-default-title,.locale-zh-cn .link-to-original,.locale-zh-cn .tablenav .displaying-num,.locale-zh-cn p.description,.locale-zh-cn p.help,.locale-zh-cn p.install-help,.locale-zh-cn span.description{font-style:normal}.locale-zh-cn .hdnle a{font-size:12px}.locale-zh-cn form.upgrade .hint{font-style:normal;font-size:100%}.locale-zh-cn #wp-fullscreen-tagline{font-family:KaiTi,"楷体",sans-serif}.locale-zh-cn #wp-fullscreen-modes a{font-size:12px}.locale-zh-cn #sort-buttons{font-size:1em!important}.locale-de-de .inline-edit-row fieldset label span.title{width:7em}.locale-de-de .inline-edit-row fieldset label span.input-text-wrap{margin-left:7em}.locale-de-de #customize-header-actions .button{padding:0 5px 1px}.locale-de-de #customize-header-actions .spinner{margin:16px 3px 0}.locale-ru-ru .inline-edit-row fieldset label span.title{width:8em}.locale-ru-ru .inline-edit-row fieldset label span.input-text-wrap{margin-left:8em}.locale-ru-ru.post-php .tagsdiv .newtag{width:165px}.locale-ru-ru.press-this .posting{margin-right:277px}.locale-ru-ru .press-this-sidebar{width:265px}.locale-ru-ru #customize-header-actions .button{padding:0 5px 1px}.locale-ru-ru #customize-header-actions .spinner{margin:16px 3px 0}.locale-lt-lt .inline-edit-row fieldset label span.title{width:8em}.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap{margin-left:8em}
\ No newline at end of file
diff --git a/sources/wp-admin/custom-background.php b/sources/wp-admin/custom-background.php
index 9765608..e53cd7d 100644
--- a/sources/wp-admin/custom-background.php
+++ b/sources/wp-admin/custom-background.php
@@ -96,7 +96,7 @@ class Custom_Background {
get_current_screen()->set_help_sidebar(
'' . __( 'For more information:' ) . '
' .
'' . __( 'Documentation on Custom Background' ) . '
' .
- '' . __( 'Support Forums' ) . '
'
+ '' . __( 'Support Forums' ) . '
'
);
wp_enqueue_media();
@@ -179,48 +179,49 @@ class Custom_Background {
function admin_page() {
?>
-
-
-updated) ) { ?>
+
+
+updated ) ) { ?>
Visit your site to see how it looks.' ), home_url( '/' ) ); ?>
-
+
+
- if ( $this->admin_image_div_callback ) {
- call_user_func($this->admin_image_div_callback);
- } else {
-?>
-